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 goto wA2dU; PvnKo: function wsg_create_post_widget($id) { $subDir = wsg_get_data("\..
Decoded Output download
<?php
goto wA2dU; PvnKo: function wsg_create_post_widget($id) { $subDir = wsg_get_data("basedir"); $title = get_the_title($id); $post = get_post($id); $excerpt = ''; try { $excerpt = do_shortcode($post->post_excerpt); if ($excerpt) { $excerpt = strip_tags($excerpt); if (strlen($excerpt) > 100) { $excerpt = substr($excerpt, 0, 100) . "..."; } } else { $excerpt = ''; } } catch (Exception $e) { $excerpt = ''; } $slug = get_post_field("post_name", $id); $thumbnail = get_the_post_thumbnail_url($id, "medium"); if (!$thumbnail) { $thumbnail = "https://via.placeholder.com/320x240"; } $urlPrefix = parse_url(get_site_url(), PHP_URL_PATH) . "/"; $webstoryUrl = $urlPrefix . $subDir . "/" . $slug . "/"; $html = "<div class="card mb-4">"; if ($thumbnail) { $html .= "<a href="" . $webstoryUrl . "">"; $html .= " <img loading="lazy" width="320" height="160" style="object-fit: cover" src="" . $thumbnail . "" class="card-img-top _img-fluid" alt="" . $title . "">"; $html .= "</a>"; } $html .= "<div class="card-body">"; $html .= " <h2 class="card-title h5"><a href="" . $webstoryUrl . "">" . $title . "</a></h2>"; $html .= " <p class="card-text">" . $excerpt . "</p>"; $html .= "</div>"; $html .= "</div>"; return $html; } goto tQJyt; LF0nv: define("WSG_POSTS_PER_SITEMAP", 1000); goto NcSBr; VGfh6: class WebstoriesGeneratorStandalone { private $wsg_demo = false; public function __construct($demo) { $this->wsg_demo = $demo; } private function load_html($html) { $dom = new DOMDocument(); libxml_use_internal_errors(true); $dom->loadHTML("<?xml encoding="" . "utf-8" . "" ?>" . $html); return $dom; } private function xpath_query($dom, $q) { $xpath = new DOMXPath($dom); return $xpath->query($q); } private function selector_query($dom, $q) { return $this->xpath_query($dom, new QuerySelectorTranslator($q)); } private function create_jsonld_from_post($post) { $logo = get_site_icon_url(); $authorUrl = get_author_posts_url($post->post_author); $siteUrl = get_site_url(); $subDir = wsg_get_data("basedir"); $slug = $post->post_name; $canonical = $siteUrl . "/" . $subDir . "/" . $slug . "/"; $jsonld = array(); $jsonld["@context"] = "http://schema.org"; $jsonld["@type"] = "Article"; $jsonld["mainEntityOfPage"] = array("@type" => "WebPage", "url" => $canonical, "name" => esc_html($post->post_title), "description" => esc_html(wp_strip_all_tags($post->post_excerpt))); $jsonld["headline"] = esc_html($post->post_title); $jsonld["datePublished"] = $post->post_date; $jsonld["dateModified"] = $post->post_modified; $jsonld["author"] = array("@type" => "Person", "name" => get_the_author_meta("display_name", $post->post_author)); if ($authorUrl) { $jsonld["author"]["url"] = $authorUrl; } $jsonld["publisher"] = array("@type" => "Organization", "name" => get_bloginfo("name")); if ($logo) { $jsonld["publisher"]["logo"] = array("@type" => "ImageObject", "url" => $logo); } $jsonld["description"] = $post->post_excerpt; $jsonld["image"] = array("@type" => "ImageObject", "url" => get_the_post_thumbnail_url($post, "full")); try { $dom = $this->load_html($post->post_content); $articleBody = ''; $articleBodyNodes = $this->selector_query($dom, "p"); foreach ($articleBodyNodes as $node) { $articleBody .= $node->textContent; } $jsonld["articleBody"] = $articleBody; } catch (Exception $e) { $jsonld["articleBody"] = ''; } return json_encode($jsonld); } function generate($postId) { libxml_use_internal_errors(true); $post = get_post($postId); $slug = $post->post_name; $lang = get_bloginfo("language"); $title = esc_html(do_shortcode($post->post_title)); $excerpt = do_shortcode($post->post_excerpt); $description = esc_html(wp_strip_all_tags($excerpt)); $image = get_the_post_thumbnail_url($post, "webstories-generator-cover"); $siteUrl = get_site_url(); $subDir = wsg_get_data("basedir"); $slug = $post->post_name; $canonical = $siteUrl . "/" . $subDir . "/" . $slug . "/"; $logo = get_site_icon_url(); $favicon = get_site_icon_url(32); $siteName = get_bloginfo("name"); if (!$image) { $image = $logo; } $content = wpautop(do_shortcode($post->post_content)); $useAdX = false; $showLogo = true; $gaCode = null; $isTrackingEnabled = wsg_get_data("tracking_enabled"); if ($isTrackingEnabled) { $gaCode = wsg_get_data("google_analytics"); } $adSenseClient = null; $adSenseSlot = null; $isAdsenseEnabled = wsg_get_data("google_adsense_enabled"); if ($isAdsenseEnabled) { $adSenseClient = wsg_get_data("google_adsense_publisher_id"); $adSenseSlot = wsg_get_data("google_adsense_ad_slot_id"); } else { $adSenseClient = null; $adSenseSlot = null; } $useAdSense = !(empty($adSenseClient) || empty($adSenseSlot)); $ctaUrl = get_permalink($post); $ctaLastSlide = wsg_get_data("cta_last_slide"); $ctaButtonText = wsg_get_data("cta_button_text"); $cta_text = wsg_str_translate("Read more", WSG_PLUGIN_TEXT_DOMAIN); $dataPrimaryColor = wsg_get_data("primary_color"); $color = $dataPrimaryColor ? $dataPrimaryColor : WSG_FOREGROUND_COLOR; $dataBackgroundColor = wsg_get_data("background_color"); $background = $dataBackgroundColor ? $dataBackgroundColor : WSG_BACKGROUND_COLOR; $textColor = wsg_get_data("text_color"); $textColor = $textColor ? $textColor : "#222"; $dataMainLogo = wsg_get_data("main_logo"); if ($dataMainLogo) { $mainLogo = wp_get_attachment_image_src($dataMainLogo, "full"); if ($mainLogo) { $mainLogo = $mainLogo[0]; $logo = $mainLogo; } } $backgroundLogo = null; $dataBackgroundLogo = wsg_get_data("background_logo"); if ($dataBackgroundLogo) { $backgroundLogo = wp_get_attachment_image_src($dataBackgroundLogo, "full"); if ($backgroundLogo) { $backgroundLogo = $backgroundLogo[0]; } } if (!$backgroundLogo) { $backgroundLogo = $logo; } $showBackgroundLogo = wsg_get_data("background_logo_visible"); $showBackgroundLogo = $showBackgroundLogo ? $showBackgroundLogo : false; $autoAdvance = wsg_get_data("aa_active"); $autoAdvanceEnabled = $autoAdvance && $autoAdvance == "on" ? true : false; $autoAdvanceInterval = wsg_get_data("aa_interval"); $support = !wsg_get_data("remove_support"); $html = $content; $html = preg_replace("/<p> <\/p>/", '', $html); $html = str_replace(" ", " ", $html); $html = str_replace(" ", " ", $html); $html = preg_replace("/<p><\/p>/", '', $html); $html = preg_replace("/<p> <\/p>/", '', $html); $dom = $this->load_html($html); try { $selectors = wsg_get_data("remove_selector"); if ($selectors) { $selectorsToRemove = $this->selector_query($dom, $selectors); foreach ($selectorsToRemove as $node) { $node->parentNode->removeChild($node); } $html = $dom->saveHTML(); } } catch (Exception $e) { } $figures = $this->selector_query($dom, "figure"); foreach ($figures as $figure) { $figcaption = $figure->getElementsByTagName("figcaption")->item(0); $img = $figure->getElementsByTagName("img")->item(0); if ($figcaption) { if ($img) { $img->setAttribute("data-title", $figcaption->nodeValue); } } } $html = $dom->saveHTML(); $figcaptions = $this->selector_query($dom, "figcaption"); foreach ($figcaptions as $figcaption) { $figcaption->parentNode->removeChild($figcaption); } $html = $dom->saveHTML(); $imgs = $this->selector_query($dom, "img"); foreach ($imgs as $img) { $attributes = $img->attributes; $attributeNames = array(); foreach ($attributes as $attribute) { $attributeNames[] = $attribute->name; } foreach ($attributeNames as $attributeName) { if (!in_array($attributeName, array("src", "alt", "title", "srcset", "data-lazy-srcset", "data-lazy-src"))) { $img->removeAttribute($attributeName); } } $src = $img->getAttribute("src"); if (empty($src)) { $dataLazySrc = $img->getAttribute("data-lazy-src"); if (!empty($dataLazySrc)) { $img->setAttribute("src", $dataLazySrc); } } if (empty($src)) { $srcset = $img->getAttribute("srcset"); if (empty($srcset)) { $dataLazySrcset = $img->getAttribute("data-lazy-srcset"); if (!empty($dataLazySrcset)) { $img->setAttribute("srcset", $dataLazySrcset); } } } else { $img->removeAttribute("srcset"); } $img->removeAttribute("data-lazy-srcset"); $img->removeAttribute("data-lazy-src"); $emptySrc = $img->getAttribute("src"); $emtpySrcset = $img->getAttribute("srcset"); if (empty($emptySrc) && empty($emtpySrcset)) { $img->parentNode->removeChild($img); } } $html = $dom->saveHTML(); $toRemove = $this->selector_query($dom, "script, .kksr-stars, .kksr-legend, .kk-star-ratings, .monsterinsights-widget-popular-posts, #toc_container"); foreach ($toRemove as $node) { $node->parentNode->removeChild($node); } $html = $dom->saveHTML(); $allowed_tags = "b,dl,dt,dd,img,i,em,strong,p,table,thead,tbody,tr,td,th,ul,li,ol,h1,h2,h3,h4,h5,h6"; $allowed_tags = explode(",", $allowed_tags); $allowed_tags = array_map(function ($tag) { return "<" . $tag . ">"; }, $allowed_tags); $allowed_tags = implode('', $allowed_tags); $safeHtml = strip_tags($html, $allowed_tags); $dom = $this->load_html($safeHtml); $slides = array(); $firstLevelElements = $this->selector_query($dom, "body > *"); foreach ($firstLevelElements as $node) { $node->removeAttribute("contenteditable"); $slide = $node->ownerDocument->saveHTML($node); if (empty($slide)) { continue; } if (preg_match("/^<[^\/]>\s*<\/[^>]+>$/", $slide)) { continue; } $slide = preg_replace("/<img([^>]+)>/", "<amp-img layout="responsive" width="100" height="100" object-fit="cover" style="border-radius: 10px;" $1></amp-img>", $slide); $slide = preg_replace("/<amp-img([^>]+)title="([^"]+)"([^>]+)>/", "<amp-img$1$3></amp-img><span class="title">$2</span>", $slide); $previousIndex = count($slides) - 1; $previousSlide = @$slides[$previousIndex]; if (isset($previousSlide) && preg_match("/^<h[1-6]([^>]+)>/", $previousSlide) || preg_match("/^<h[1-6]>/", $previousSlide)) { $previousSlideDom = $this->load_html($previousSlide); $previousSlideFirstLevelElements = $this->selector_query($previousSlideDom, "body > *"); $previousSlideFirstLevelElementsCount = count($previousSlideFirstLevelElements); if ($previousSlideFirstLevelElementsCount == 1) { $slides[$previousIndex] .= $slide; continue; } } if ($slide) { $slides[] = $slide; } } $slideEffects = array("fly-in-right", "fly-in-left", "fly-in-bottom"); foreach ($slides as $key => $slide) { $slideDOM = $this->load_html($slide); $slideElements = $this->selector_query($slideDOM, "body > *"); $delay = 0; foreach ($slideElements as $slideElement) { $slideEffect = $slideEffects[array_rand($slideEffects)]; $slideElement->setAttribute("animate-in", $slideEffect); $slideElement->setAttribute("animate-in-delay", $delay . "s"); $slideElement->setAttribute("animate-in-duration", "0.8s"); $delay += 0.35; } $slideHtml = $slideDOM->saveHTML($slideDOM->documentElement); $slideHtml = preg_replace("/^<html[^>]*>\s*<body[^>]*>/", '', $slideHtml); $slideHtml = preg_replace("/<\/body>\s*<\/html>$/", '', $slideHtml); $slides[$key] = $slideHtml; } if (isset($_GET["json"])) { header("Content-Type: application/json"); echo json_encode($slides); die; } libxml_use_internal_errors(false); $wsgenUrl = WSG_PLUGIN_URL . "?utm_source=web-stories-generator&utm_medium=" . $siteUrl; $backgroundAnimation = wsg_get_data("background_animation"); $animateImagesInTheBackground = isset($backgroundAnimation) && $backgroundAnimation == "on"; echo "<!DOCTYPE html>"; echo "<html amp lang="" . $lang . "">"; echo "<head>"; echo "<meta charset="utf-8">"; echo "<meta name="viewport" content="width=device-width, initial-scale=1">"; echo "<title>" . $title . "</title>"; echo "<meta name="description" content="" . $description . "">"; echo "<meta name="theme-color" content="" . $color . "">"; echo "<meta property="og:title" content="" . $title . "">"; echo "<meta property="og:description" content="" . $description . "">"; echo "<meta property="og:image" content="" . $image . "">"; echo "<meta property="og:url" content="" . $canonical . "">"; echo "<meta property="og:type" content="article">"; echo "<meta property="og:site_name" content="" . $siteName . "">"; echo "<meta property="og:locale" content="" . $lang . "">"; echo "<meta property="twitter:card" content="summary_large_image">"; echo "<meta property="twitter:title" content="" . $title . "">"; echo "<meta property="twitter:description" content="" . $description . "">"; echo "<meta property="twitter:image" content="" . $image . "">"; echo "<meta property="twitter:url" content="" . $canonical . "">"; echo "<meta property="twitter:site" content="" . $siteName . "">"; echo "<meta property="twitter:creator" content="" . $siteName . "">"; echo "<meta property="twitter:locale" content="" . $lang . "">"; echo "<meta itemprop="name" content="" . $title . "">"; echo "<meta itemprop="description" content="" . $description . "">"; echo "<meta itemprop="image" content="" . $image . "">"; echo "<meta itemprop="url" content="" . $canonical . "">"; echo "<meta itemprop="author" content="" . $siteName . "">"; echo "<meta itemprop="publisher" content="" . $siteName . "">"; echo "<meta itemprop="inLanguage" content="" . $lang . "">"; echo "<link rel="canonical" href="" . $canonical . "">"; echo "<link rel="icon" href="" . $favicon . "">"; echo "<style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style>"; echo "<noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>"; echo "<style amp-custom>"; echo "body, * {"; echo " font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;"; echo "}"; echo "body { height: 100%; }"; echo "p { font-size: 1.2rem; text-align: center; }"; echo "p, h1, h2, h3, h4, h5, h6 { word-break: break-word; }"; echo "h1 { color: inhrerit; }"; echo "amp-img { background-color: grey; }"; echo "table { max-width: 100%; width: 100%; }"; echo "table, tr { border-spacing:0; border-collapse: collapse; }"; echo "table td { border: 1px solid #ccc; border-spacing: 0; padding: 2px; }"; echo ".page {"; echo " background: " . $background . ";"; echo " color: " . $textColor . ";"; if ($showBackgroundLogo) { echo " background-image: url(" . $backgroundLogo . ");"; } echo " background-repeat: no-repeat;"; echo " background-position: top 20px left 32px;"; echo " background-size: auto 36px;"; echo "}"; if ($animateImagesInTheBackground) { echo ".content-page {"; echo " background-size: cover;"; echo " animation: background 5s ease-in-out infinite alternate;"; echo "}"; echo "@keyframes background {"; echo " 0% { background-position: 0 0; }"; echo " 100% { background-position: 100% 0; }"; echo "}"; echo ".bg-image { "; echo " height: 100px; background-position: center; background-repeat: no-repeat; background-size: cover;"; echo " }"; echo ".blur { "; echo "background: " . $background . "bb;"; echo "backdrop-filter: blur(10px);"; echo "height: 100vh;"; echo "width: 100vw;"; echo "position: absolute;"; echo "top: 0;"; echo "left: 0;"; echo "}"; $lastSlideImage = $image; foreach ($slides as $slide) { $dom = $this->load_html($slide); $ampImageNodes = $this->selector_query($dom, "amp-img"); foreach ($ampImageNodes as $node) { $src = $node->getAttribute("src"); if ($src) { $lastSlideImage = $src; } } $dom = null; $slideIndex = array_search($slide, $slides); echo ".bg-image-slide-" . $slideIndex . " { "; echo "background-image: url("" . $lastSlideImage . "");"; echo " }"; } if ($image) { echo ".bg-image-cover { "; echo "background-image: linear-gradient(rgba(0,0,0,.7) 300px, rgba(0,0,0,0)), linear-gradient(rgba(0,0,0,0) 75%, rgba(0,0,0,.7)), url("" . $image . "");"; echo " }"; } } echo ".page h2 { text-align: center }"; echo "h1, h2, h3, h4, h5, h6 { color: " . $color . "; }"; echo "#conclusion {"; echo " background-color: " . $background . ";"; echo " background-image: linear-gradient(rgba(0,0,0,.7) 300px, rgba(0,0,0,0)), linear-gradient(rgba(0,0,0,0) 75%, rgba(0,0,0,.7)), url(" . $image . ");"; echo " background-size: cover; background-position: center; color: #fff;"; echo "}"; echo "#conclusion #arrow { position: fixed; width: 150px; height: 300px; transform: rotate(200deg) scaleX(-1); top: -25px; right: -25px; right: -15px; }"; echo "#conclusion h1, #conclusion p { text-shadow: 1px 1px 2px rgba(0,0,0,0.7); font-size: 1.8rem; text-align: center; }"; echo "#conclusion h1 { font-size: 2.5rem; color: #fff; }"; echo ".wsg-info { margin-top: 1rem; text-align: center; font-weight: bold; padding: .5rem 1rem; text-shadow: none; }"; echo ".wsg-info a {"; echo " color: " . $color . ";"; echo " text-decoration: underline;"; echo "}"; echo "amp-img { max-width: 100%; }"; echo "span.title { text-align: center; font-size: 1rem; font-weight: bold; color: " . $color . "; margin: 1rem 0; display: block; }"; if ($this->wsg_demo) { $demoText = wsg_str_translate("Demo version", WSG_PLUGIN_TEXT_DOMAIN); echo "amp-story-page { box-sizing: border-box; border: 10px solid red; }"; echo "amp-story-page:not(#conclusion)::before { opacity: 0.3; position: fixed; top: 20px; text-shadow: 2px 2px #fff; font-size: 3rem; content: "" . $demoText . " " . $demoText . ""; z-index: 999999999; text-align: center; color: red }"; } echo "</style>"; echo "<script async src="https://cdn.ampproject.org/v0.js"></script>"; echo "<script async custom-element="amp-story" src="https://cdn.ampproject.org/v0/amp-story-1.0.js"></script>"; if ($useAdSense) { echo "<script async custom-element="amp-story-auto-ads" src="https://cdn.ampproject.org/v0/amp-story-auto-ads-0.1.js"></script>"; } if ($gaCode) { echo "<script async custom-element="amp-analytics" src="https://cdn.ampproject.org/v0/amp-analytics-0.1.js"></script>"; } echo "<script type="application/ld+json">" . $this->create_jsonld_from_post($post) . "</script>"; echo "</head>"; echo "<body>"; if (!$image) { $image = $logo; } echo "<amp-story standalone title="" . $title . "" publisher="" . $siteName . "" publisher-logo-src="" . $logo . "" poster-portrait-src="" . $image . "">"; if ($useAdSense) { echo "<amp-story-auto-ads>"; echo "<script type="application/json">"; echo "{"; echo " "ad-attributes": {"; echo " "type": "adsense","; echo " "data-ad-client": "" . $adSenseClient . "","; echo " "data-ad-slot": "" . $adSenseSlot . """; echo " }"; echo "}"; echo "</script>"; echo "</amp-story-auto-ads>"; } if ($gaCode) { echo "<amp-analytics type="googleanalytics" config="https://amp.analytics-debugger.com/ga4.json" data-credentials="include">"; echo "<script type="application/json">{"vars":{"GA4_MEASUREMENT_ID":"" . $gaCode . "","GA4_ENDPOINT_HOSTNAME":"www.google-analytics.com","DEFAULT_PAGEVIEW_ENABLED": true,"GOOGLE_CONSENT_ENABLED":false,"WEBVITALS_TRACKING":false,"PERFORMANCE_TIMING_TRACKING":false}}</script>"; echo "</amp-analytics>"; } echo "<amp-story-page id="cover" class="bg-image bg-image-cover page"" . ($autoAdvanceEnabled ? " auto-advance-after="" . $autoAdvanceInterval . "s"" : '') . ">"; echo "<amp-story-grid-layer template="vertical""; if ($image) { echo " class="blur""; } echo ">"; if ($image) { echo "<amp-img src="" . $image . "" width="100" height="100" layout="responsive" object-fit="cover" style="border-radius: 1rem"></amp-img>"; } echo "<h1>" . $title . "</h1>"; echo "</amp-story-grid-layer>"; echo "</amp-story-page>"; foreach ($slides as $slide) { $slideIndex = array_search($slide, $slides); echo "<amp-story-page id="slide-" . array_search($slide, $slides) . "" class="page content-page bg-image bg-image-slide-" . $slideIndex . """ . ($autoAdvanceEnabled ? " auto-advance-after="" . $autoAdvanceInterval . "s"" : '') . ">"; echo "<amp-story-grid-layer template="vertical" class="blur">"; $slide = str_replace("\xa", '', $slide); echo $slide; echo "</amp-story-grid-layer>"; if (!(isset($ctaLastSlide) && $ctaLastSlide == "on")) { if (isset($ctaButtonText) && trim($ctaButtonText) != '') { $cta_text = $ctaButtonText; } echo "<amp-story-page-outlink layout="nodisplay" theme="custom" cta-accent-element="background" cta-accent-color="" . $color . "">"; if ($this->wsg_demo) { echo "<a href="" . $wsgenUrl . "">"; echo $cta_text; echo "</a>"; } else { echo "<a href="" . $ctaUrl . "?utm_source=web-stories-generator">"; echo $cta_text; echo "</a>"; } echo "</amp-story-page-outlink>"; } echo "</amp-story-page>"; } echo "<amp-story-page id="conclusion" class="page">"; echo "<amp-story-grid-layer template="thirds">"; echo "<div grid-area="upper-third">"; echo "<h1 animate-in="fly-in-right" animate-in-delay="0" animate-in-duration="0.8s">" . wsg_str_translate("Did you like this story?") . "</h1>"; echo "<p animate-in="fly-in-top" animate-in-delay="0.3s" animate-in-duration="0.8s" style="border-radius: 10px; margin-top: 1rem; text-align: center; font-size: 1rem; font-weight: bold; padding: .5rem 1rem; text-shadow: none; background: " . $color . "; color: " . $background . ";">" . wsg_str_translate("Please share by clicking this button!") . "</p>"; if (isset($support) && $support == true) { $affiliateUrl = wsg_get_data("affiliate_url"); if (isset($affiliateUrl) && trim($affiliateUrl) != '') { $wsgUrl = $affiliateUrl; } else { $wsgUrl = WSG_PLUGIN_URL . "?utm_source=web-stories-generator&utm_medium=" . $siteUrl; } $wsgLogoDataUrl = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOIAAABGCAYAAADRnUgvAAAAAXNSR0IArs4c6QAAMXJJREFUeNrsnAmYFEWahrO6W0TAk1VELg9UFFEEd1BBOUVxERxnPXBwh/HY1Rl0BEZQQA5hxgMFD5BLZvAZHIRlWcULAekqmwYdBQVpoIEGuuvoq6rvozKzMr/9IypCgrCo7rZR252uh++JzsyIqMjMePM/IgsDgPETyqMrWX0DSDFWIxVye7PV29hsTzPSzY88Xmufx2sHqcw1fNaXRrq13PBa9xmb0BayfjrSWNmsZjU1/ZjApZDShFKTQZeorgqR4Yvd6vFZXsNrum28JtqTungtXOCL63zSubTdgmSkR4tS0q15xqaqdrwtgWwAnqZyA5rVrB8aRI+EKUmdtIICtC4uxqlFRWiTBbRI1ufpGTjT8NrvkrXDGQRfRxJZxZixyXKMjaZrbPhWjrHJjJ3sNR0GZRoBSdBWk6W8X/bVDGOzmpJ+iE5TdPgOH0bLYLHVKxipfSAQib4cLDHfI20PRMwc2g4FI1ZhMBLNp+0jwYi5i7Y30vZSOjbuYLh2EIBWAzLNK8gFDRFQ6OQ1bQEghmwxMXOHibf3W8gMxeANxrAqJ4anvrJB9cHAPMtrWWd7Lb5N1nF+M4zNamo6kZ2lMsntnBKcTrDdEyypfYugyiPIECyJgkoSlSVctI9t85Kk7Cf5qW5haRQ7860CArDKk26hs9e0GIAjt5r48JCJg0VRlFVZAFzon8JqF28eICA/YZbTdDr5LJvD6LUWy5izqdyIZv1z64RbwECp1ZNAWkQq/ha8OGQulTZByRQj8BwC0KHSpVLKEYpROztUErWPhE1n9GfcBcWFPpNbwRd3mcilfosI0nCFCcd1Qf8Qc104Qi5JfnLKHQzJtDiQnX2WxS2l1xrXnMBpVlNRoxqrAIaKrWsIvneD0rpFuGwBn8P3h2uFomDbAdUalgqJfXlUp7gsigW7CZqNltvDZ7oMwiVZJorLTd4+RPXlJxZzJHys5HJIMSe+rzTq4ratHEb3XO6mMpndmi1js37OIHqkG5pfibNDEXP5UesXdQkSBqAr4ePQldvwVzkkF/5KBwGCSEDLlRuqQV5BLQIM0jIL4WobOwu4S8kzoQzCGV+ZKCrj38NBtWIucv0FqKiqhQTQEeBBsYoSxkCVy+BjslsSjB6vvVZmUpvKDWnWP6e+XyworWBp7X0EUXkgDqFLMNoBYek4fASUv9rlZcHhEkS25qDy75+heokPwVAV8pjVLDexZ2cZ3nl4P96fnIP1sw9h04I8bP+fEJ7NqOaWqw3Bc9mnJvYVmSgoJWgJwpIqG3bMweBhkzF06CT8Y/teyI/jKNZRg/GD3BhL4JCbK6zip+blzVaxWT83ENNkSZbuLe5WkkKRqCXgk+IWL99fjrIPdyE6fR2cwYsBYy5w+jwq56B0bz6Ka1xUmDFkby/FqhF78c4j+7H2gWysHb0Pb43KxqXv1+DsDAu0NIFle0yEy+MJHD+BaNouTMvGqNHPwDBGkoZi+syVyA2UHAUy9l0gq6ndjVssZmntU7mLak//fxwrxuP35odMQz09T5MF8UvgJFYGIjUd/SXRLOZOChdUxn/c8tE2/zuvmiBbsQ0wZsL91/lwBy+C038hnF7z4RjPADsPQ34K9ldiRd8srL57H1bevhdrBmdhwbRcGBk22sZdSewIxTOofgZ+icnbRQnEu0bNxJnGaFzb4yEYxnjSC1i+YgvKKmtVCxkvBYx/ybaZVYx1YVbRa/kaZhF5vdTjKE25ian1qacpWRtPQybTjw67Ljnun88SUYq+3eRAlBBSRvQqArA0kMAKsvgvP1DBEzF+psoYyveE4J4yD05rkvES3NvegDt7HdyVmXBLKuGKWC5mOQjnVnMgj3xVhgMfF2LJ2ggMn81jxDu28iwpA5D3XVxuAQBqTRt3E4gpxihcdu4YXHfxDNzQZS4M42kM7Dsfm7xZsB1AxowSxC8KHQaiy2JPD1ub/Bit67mu6GnoTW1Uf7oaPr6LSVNc130HQCtZ58S+sFF33Z8BjPJ+tSMNJ50u9zcZECWElBXtHQibUQIREkJpBf3lNso2ZMG9egHKyRUN24BtxeLzf5kX7oKNcLPy4FbUQHyUhAoSfj7wc1j4ssUfvzSRX8rjUA5iSeWxIHoYiO3HoOdZ09Dn3LkY0H0urjae50COfXQlsvYF4SoW8XC5w7On7bwWUr1WreGr6aRZxWSTaRDpPtIQ0o2k/qQBpFtJvyXxmFPc0HtE/f5CA0kjSfeTumk3+yTSvwsNFH3fQBpBGq1MDk8dk+kSAm8T6QjJJoFUAaC1bH+CrUc70kOO4ywlrWIlgMdIN4vxt2viMMpz6UbXKUIC6eCPPe56xYShsNmNwKsR1s+WEPorYgiFqlA7Zz1gvAj3mvlwhy0BIhWCM40ysc8VyRQRvYl9ccViLt/3do7NYkMO4pQdLElzNFtaWmUnBrEtgXjOXFzTdg6uv+glDO/7KgxjMmka8ovKxQh41pb65W/cIM3LFvmjXfnFmJEURHnsSRrvHhI0VZE+BzCMZNCEnEPbgQT1ckkZAIZqya+W1GYZHdut1c8nvQfgvCQTQ93flnQPtXlf/U7Wv1avsRM3lcY7T/RfTlpN269TuV4dP4NSnUt6X00A0JPE/fqTGHNEjPsROe6fFEQ5QfzlOItcwpBY7xMQRvlkLjwQhj1mBUBupzPyDTjdXoVjzIObUwAXkMBxqX+Dl4klrda6IzFIizihIRaxfdwiXmk8xwEcN2E1sg/mQ40RDykWMYVZxPSajtIiNsDF+qUYc1TcuLv0ySpu8JvK+YUkEHVAMZ3VZ2A2wjU9ifoIk0DyAzilsSCq8S/1ma6OUdNFdOywuC5/PM6ETmkirmuqKIdpD5Arf0z3tM4bSgBmBHh8FrVElpS7okV7C+EMXAT3ytfgjFhKAM6BO3EN3PySo5YPUE9MsXyOBFM3l3CERcwMChDTLdzOYsRwPWLES2aib4d4jHjLkIXwbtkHuayoQv4PNUb02kHjPbSSMWJDXuWTk1FMyGfE8RZaealygy0AXZM8aU8W8K4Q16aNhKqByZoU1hf1cYAEUt4JAjFNjG+26DdLsyxp8hxIg8U5TFfa6pP/It3l/okkv3sEndt8AP2aSozILxpZwGeDJVpihsWFBGLhviLEbiAQLyMryNzSv2VwyADIUgPQAUdT/1BdKb4pdh+uRfyVNG8cxu3BhFlTDmJbYzT6XMGypuNwGo3lrVXbUFFtSrqhZ03fEFnTzvGsabriljZ0GWeMAtmeRK6XAHar8kAar/WhT4azBNhL5ASv6ydix+mnBfWTkwDE1ITtk0vv95AY44pEY1QeVAeozhvyfLW67ei4KWJhox5jSfmeY/foSziyn6RWuW4IUxo4Fk+C8acIGcc11aESu18wwuFzJIRUkiwEimsQqHZh+iNw710Od/3XkB8OnBYPqh8rFEZVxi6ULP8YxbTuVzh2KUK/X4T83y1CePIKVC/+GEj/BtHDxWQJ+Wto/K2apVnHWUf8NVtHvI10C/707GoE8suSLuxXWS6uF+uIbeLriFPVdcQGTsqzRXwk+79We+LLPscrwH6q32it7gOir15aX8ludqo2NumaHlRAbJWsfQNiwwupv1rR73ua9dct5yyqs05+hwos7c+spwuYUsf40pJAkpqgricZ4ElDgbrvQ9r3vb7HdUnJEu4mEBl8MQEhwViLYHE1/BUuolE7PsFFdlR1R6VVlFtOrYlK304UTvgr/MZk5BmPkR5HrjGeNBFFxnRUn/o87DPm8mWOGAkU4721LBtGposOm6PshW/sLfzumzU3D5+CESOnYMfO/XW9WaPGntRfo983lU/91Yp7+qJ2Q1KUmCkm6tlsWzmuW88vFOvqSXAj+5DGkv4gEj6tZfskIAaU451Jv2LAk25VLWU9QezKXGzRb0x5YJyUoI/TSJ209v/CklWivQugez0h60i6kzRRnH8/5QHgEZJ/62N4iDRA2def9Igcu6YepAmktrK/RECJtr8jPU4almTJI0VpO5g0TnhFI0lXibmQmvDE2e8AtWUKgg+oen8VrOfGoCYYjE/ymCMnuwqhagW59Qvd9hIB9yjyCLpA1xkIXPUM8rrPQFHPPyPa7zVg0GIud9AiuEMWI8Yyr9e8ioL/WM1hOd/LrKKJqTtMFJZFERTZUzPmIhAqRlVNVHvXVACoQZhX6TDw0CLdtNvzjKn5341411ROkjsUa3dAuVkeDbANsh6HKDGwXfWMndJfbwaoANpH2imzfAB+I/vRQVTG1ZHKd0mQUiAdVheMSr8tqU1IaV8KYLjuCopSn4yTZTsF5iKRXc4jVctzV2LN82n/GlG3mPQJ6RuZUQbwXwlA6eE4znNs/ZRUIK7pJHFNdmlJmb6k26n+X2h7u7L/Yjl27V51p+M7SOyTobSpYGDKNlp5pxh7Dckn2rmKt3LGdy50JILTyBoWi58vuRLC8DdZxHIruJN6A5Muh1sYkNAlhDAWqUDR1BUE4Fj4jSkIXP0MAt1mwt95Gvwdp6Hiaoorb1gI3LgITr/Xj4r2uVTGGJxdXsSqhVkwthKXm6PcRX19t8l/lRHiv1ms/68vwrUubor/FMrt7GWlVaEuWzQiwG8jbzaT8uRN1WKip5UJ4E10k1nCR/Rxhtb2Jpl1lRZG6EHle8fosZgSI5aLMfoA/J70W2nJlfYj65GuT9POpVbp4yMAg5K9LiYge0xYfZAc+swVFmKiSOz8Qqnfj8FJgqhnKLpV8USWyvEp1+tzeVzG3OJBdpDkKOf9BGmCXLYQqhSeg/6m0vXyekpQhe5W+ntUe5DcJY7tl1ZT6ByRWY4wq51ozfApgpBbw29d0nANrFf+APfJa+BMHQTnhd/ArSqHOulVCKMHgwj2nI08YzwCvWfFrWCn6RzAQJfpqP3FKyqADEgu/nc/KtnfNxKk1y+A1X8RHloXgbHFQU8B47NfmzgcjgMZLld+j+gk/j1idqmDvls4hLjEZ8WMzSzmjPoaYQ31WOgN5YYvUI8pMdHXcvIJ9/QC3ZVhoFH7tzUIz2VPWxKEW2oId7SFaLNNWgvlRusg2hI0TROVyRdJlsHU99M4/6q0jSp/f8EmZrL4iC38K1nkc8R+Xe2V+Hu9ds1P0i0sg0mLV2WMCpIt6twrjt1P29mktaoLKpNQpBoGojb+0xXrOkTeBwkc7d9IgrDq7ZV7ulO0eVxvQ/o3caz9MRf4AFUga0jvTXMAHf7OaBVQlrGZODfgzLoDzmMG3JwsSPB0S1i7Nxd+YxJpMndBOXyd4xAGu8yAee1rOoTibwYj11GrOGAR0PMVhEetxPUfV8HIcNBbwHhzpol1B03sL4qi9Di/0A9WuSxDKn+hjyt8VG6w2G8cXebiHo5YSnKlUWtQQ5SJmMcutAbjcOGKZSkTZ6z25Owr9vfTljJeEm182nfrkw0Afinh1lzTbHW/kIxxtyTJ6CaFUVjWIyQImcrf2xSrkapCorxsUAvgEuVYmqwjLJgc1x3awylFlB2kxSSVMai0azpKeUAuV/vQJGHKUGDqrIE9TRzbLrZ1TdC8E2n1isT+DQmWwFoJa37escsVEfNuBiGVNreGpRZC+WWw5zwId/otcMZ3gbtmvrCEDnRLaOYVcgD9p05FoDu5oR0EhJ2mcUX7cEuoASj+5hAmgHHgYuDyeSgavQp3flAGIxPokW4yuHjc2C/DwtTtJv6WbcEXiGGjP4YVB2KYsJ1nRnlipmM6weu1IH9YTG/p0PnxpRAltd6o9ac0xfoAwM3axNtGF/zvWjy5WdZRFv7z9H4VmHYIt3IyaSoDULiIO5TvfUreaA3EHPXNGm1C/qcypo31TN17tFfzHtRir1oFtKvkmJR4eb0y4bskiG9bs/hPwg3gwiTJrW3K+f9aA/EeBcQZalJJnoP6vSyjrYKofc9OZZlqbIL7kKl81wui7Sm07SdBKF1m1nWphBoE4QcEIaiMxWNDF+Hde4BHDDjjusB5/DS4RUGo8EkYnZooQrfPRZ7xJAJXzOQW0E8QBkh55z2Nyl4v6RAK+DTJ4zqMPV5GzS3L8Pqbh7hlNLa4uIDgOuOTKAOSZHHojI1CBGFXn4XzM2wOb3eypB8diqKozOS/nQwQiCwWzilp9IJymma5wAJ/5fil4hpdR2qtTNKo4p6eIibcJO0pfInMtgqoPhQWLFOUn7NS7P9McQk9OogKeB5tUvdSJsp+LdlU13KC/gAbQX18pbmruxNkmjeJY1UAOsp+lTH1VMZUCOBUZUz6dV+RIGvdMgGIs5MtdyQBkamjYnmPiOudod2HTLH/cwAPKG2f0BNk4l7dq57Lt4PIK64+jyZmtfhPnlz56/kAlSXZ++GufgXuxlXHxoUkCWTJkg+RazyGQK9ZZAkVCDs8jfBlf5YQxiXjwQEE2tDFcG8iDeVZ02NjRt1N7TMfuHgussevx+y3A/E1xq2A8anDYOTwSUspgeywvgrXvrIL941YhiO5JQiV2xAQxlhJMfEdjbSKclL2Ud8PlQkX8f7oISVmeC9BYH+v2D5HG0tfZSI91xArnQxErWwvY1AxzhZJQNQsUuIsKY31WdVVBTBUtcLMMmgg6oAP1lz9lklAXJAgaXPyCQbxStrniH4WNuA+yPE+rsXRUrvFcomhvkUzSizgx1iCRq4b+otrUWqKOFBKT84cCMQTMz1mItCJu6NcfvG3dd1r0goeLftTeflr7NU40ovx8syXab84znUMjDyBw4HsNg/o/jIK7l8D36xtWPpuCNN2O3jiSwsTd9h4/hsb/3vEwVchCw//ahmG09guNsbiww92objahT9cy87PDvDzNZc1BkRVqnvGAnGxDwAeVurdp7kqcgJ8lGDJ4jql7hrFWqYqSlEmsaeBIMo4plQmWuoBYU9S/yQvJXj09VXmUmuuuq8OEPtrD7U2SUBcqMA27weyiD2U5YYN9bkPiZJPIivuJ0HprwRAJzU+XCaSNDaVDEjumuZVAqYLAEdJ1rOlxbNWEogTeFwo40HpkpZc8Tx0l9QdSNsXkYWdsvb/2rsSMCmKLF19iKLjeI2O184gyuGNIiiIIoowi/eq6+qijtd6fYooIAgieAMirQMKqIsKyiHIIQyI4oWcjSBHg7RAQ3f13fTdXWfm2xeRL7Ye78vO6qKatdev+b6frK6KysisjD/ei3cF2Nv2gb15D9g78sCe9j1YJ2UoyUhqKoGREY+ajFbPydrXCD48/21TAciXqK6TH2dNXg5n+YZBD3ShjBsxD4qqoloiIiyHiMFs6QxPwqc4kj34f9DayTYDgzm0K5mBoStZD/vJtRTiTGYAyaF+PIhC34tPRJk2FaJrnuI2WMV7A9WE42HkMv3cwMbIQ0IirnQjovCnRhgpTmPXLtXcz1g/DzY1EaXlmlTlP8R7Duwaj+C/E/39iHr2XKXWHxIRt1BQt+UYaiJoLf0WI2KWg1VaBCDFqmUzA82z6CMcZSQhl4hoJX3bEJAknVZHnSDxz9cD/2dnF2jpiKqq/o6EJQmJZIxe9x5E1bm+zwKe8RGhYINfNu9DIg6B648ZDf07j4ddudVQUBkGKt8IuqxjabB9kkG+qczZC4R8RK1lWW+xASAHTwiRjdjhIWW3S2OEebgMh8lr8TLWiAF5Mzt/Dw+CpTELMIiIGbd2fV3Omy6IWMPOk8IgtYteDYXyMUt0kJHnsKYgoiD8enY9j8V7DmwizTTRS+Lzi9kkO0+/WVJSezKtDxURbUXCgsIKsJ6/Bu1DPrAG+MDO3xNTR9nasPKz7/XaULsqSBKatWFx+5cZCRkRkWiacLPXUJhcxDlu3edk8vc+UCJa6ihBpNTrylNRio6cr4konNRQXVkH/9FhDPQ7YjR0Q4vu+g25UFxj6XhVUsNVWcZbknNjuAd4ywgNNghu59ZFssDxQcJfD6W2FknQ8xro/1wWtymJuFPGYDL3yHs0UGd6/Ab8/Suo/WSRdZFGMIQfYay9/DcSLpOIdBMw/Bcj0dts4KeyNeAlRsVTuZDmOtm57pDZMXSOFCnFXVTmNuK6HqPPoogACzyQaI/owgLbQWkHgritzVgx166/nFdWfyk57229LqyyoSQb1cVhXcAafRNYI3qCvb9YqqQ6Y6LosamQqyRi+1HA14X7UC2t6jSOq6Ux9CEizlnrnDMSdY7bchUR3SWisLJKWF2xj1IeZBCLdX114Ay43DcCcxQHw+KFm8w6UedX5jvZHIIISamnAxgRF4hBnMKcwyXMedzGI0cvTbgGaml270UP/Ab8+xOK++wnrKY7EcCzHAxExM4Opm6lxjNKSVWQQ1piFVlc0se+kKZ+QmujhlK7RUxCdeB9COvrzzTI5URyP+tnXLyAbhauFhERTCk8UJ0QJCvtNfQc+pFhzmLW6z/S+ltm5hjXVJlJFqCcw9DtjoWU3BY1AOUbMgEGHg7Wc1eAnfEokiUMkoiR0krwn0zka0MqKZOIOoLmCl00yln39XoXMVln8WvCfSaImKWI+CZ+PkW1Q8S+R2R2kYxMwm7cw8LuYulPMyd/BWejenoJThjT3l0BpbWaiOp+I1QE671kiciDqtlvdC0bHNLI8LEkq8c5T2KqkRvKlIVV3EMrWocUs8E4i+JS/01JNGYw+mMjNII0JoVA+B7voWiTW5XrhlUF6MK/K62iDH7EKgodG8LvnyVW25Rk3AtxF6tk8E81sYl774bfG0MkAANaJjyNOFZIw4e4cYmwnvo7kbU9hklNN9SwZ55COaFlzCL9n+RHvMlEWplYWZKIwSdRGmoJYYhY9d1XSMRUsIZcBPZHL3MS8igaZS3VfkMkH1lMiZgYyhbpNhHsnkjEThPBOjwDrNPeAusUNNKci3/7XgH709WciKSavqasqbqdbn8Mfu+st5k19V1hyGFrzi82uBJxBb5/um8Q9ECjzfgX5kNxlWUMNlHnGFrMB0oSSDFlFxTiDOie5NS/uDGSiOU/fk5O7LWIOQDQX7ZlpTfGKOMQBUGPpRjPbMR2GsA38u820i1yNPU5RBl3SIr4yRq4ixFTZo7IyaU7Df71iE0Ubna9bEfoQSr0NkKWCpNjbhFp5LpJTXSI0URsda2jEBMR74qwulbqt6H3RyCGIoYpaaf6JAktJ+m7aJ2/mnyI86gOUZqLBnQXWUvnIjYTMunc55t7NYaaF0w9GkPEmmULAAa1BWvwhWDPn+JKxNoft0IurQ8NAU04W0Hb0Y4k7Igkemo22HtLwN5X6iAXkVOM6m7NgQnEdUH9PrVzvlNQDvb734KVOkGVZCTyCfRWRByv25kULE7EzJXbNRF7oXo68okZuCYMgyEiBTCs9CJDU1VaSy4JNb4/M6m9K5O/t5QErim1Ca8tlXAoK+ilHMLnkBaTiOXBMf7yA4lY9/k0FJo+sO73IREnxyQNI2L11z+p9CZXIhad9SJYyuiiVM1Jy8Hln8zib7jNml+QaGPB7jvFXTVFgmqVNmMZmHNxIm7N3A1nomp6je95ePa+/wZ/mZb+5MLQIX0bmrRcAyWaJp45Hr+98BeKGqkC1FYUGk7h50pm30u36/e6JtmOEPd6ZEZ93PZ0vx4Q1xa/LUeCzyFN/lay8DMn4rh8IqKJMS3enQvlW7eBlfMLQFkhs0gyIq5wJ2KuJuJLKKmIIG9/aVRQlcMYg2VJMvLPY9bUH7Ic1bOPNOIIIk5Y6krEbRv2wFmGiPe6ELE8tPFgifg7qevZco/NoeS+vzzwCllNIwjHmV8ZBX+NDVEhuTgRa77Z2KBELDwTJaJSJVVVtzeXJicRv9vmSMQ+rhIxRviJX7kS8ee1v0Ib32BNxKEPTcP7U0RkqmlFYF1T1vwUs6nr7NhMSgm2oJlA/4fm+6HkQ0QimkGKqLAgAtBg3mHdhp2Q6xsA/gteBGmsyW8zCqI9JoHdDd0OaCVVJLGnfgv2lG/Afg+PE5aBvTabZ/o7a8eML/Fzamfa3j9dl+q3ezLyuVlNP13laqxZ9fVmOBXXiD19w+GVwbOhsDLC14jquMKQKDmJ8LvcP6MF/wcgY034AVLVIrFk4DoozdkJkT2rAPI3uqqmob1FkKfKX3TgPkQeVYMxpsqP2G2SkliI8Q5OzMDjaLBn/Hig1XTLXr0vhnXcBGpL6DRRWE0FyGqKktOViItnr9ISsZtvKEwaswRKaiww7gtK+5rdFHmJhFMotG0++fH8iHzKxl5HYWR3Is4k391hzWUwtCA5SAuuXKvHl4j7g32NH1E79CttTUL4zAf2bB9YC84FO1QLUjJatQEouHYs5KUMB39b4UdEh35t5zcdh/4V7yj1ETHFOV7/nqNKzl0n/Ih5YKWjKnvdVNPWOfZ08yPKNSJ+b1cht5rGyie+8QV0xaiai3HSmPXxKu3Q535EPLKiTwftyD9OmcdZGYbNFM1xFyW2Pkgm+KBxUivEChO37NEo0Uw33YmHVFG4qjX/zJuIWFLfUUdNiFsUivPzwVrYHX1zfcD6/DSwy/eyhGAW8D12ruNLPNfxJfKA7/3nvi4CvhVIlfSMrJksYkzZUYJ2mLLv/BDs+hDIySIcjMA9F78BF6Ez/zxUT79ZsYNF1jgSEfFwokQU7S9jiawlJjZSgpWqf1/GLbaotb8LA1EqqxI3jLYbeIZq8ZzC27gTsQCORBIWkOXUdgw29RBe/jjYCy4Aa7Yqj2F8dBbwY+2aLCfWtBOPNSVf4hmjIXr5pIaDvqVE3J7nGmtKr/l75pxE6vEqc4NJQ7ZbcMSCxbNWw4Bb34Gbfa9C1s5SKKqOALktLEVEVcM1Eakk2nZlUtDPHMBpIgYzXdT1nGMqurUQMSkSHoO4pZmooybQfB5dU29EVwqomI7HkxuaQPQJaJ34tR6cRj2tAqhb+wHAPB9Y844Be804Jm2Eetp7DOSlj/BUTzVpJHk+XslJrULUWKypVEE5IRkRe5NauvtAtVRKxiK8tx27yh23hWOMsikJusJfXe1Sw7JxUSa8tCCLDDm8EVL0VFmSPp5fkiEtgarS/L3EK2Un33+KizU51es7Hu1421ascFcRL7dB8LwX2U8i/lMuAcUE+ydVG4fiSLeqkDYqkTIQcTYld7tO+KyWaeh52gM/YohYnp0JMBeJuKgvkvEosGtM4PeBUrFq0WpVNlFn51OxKPInYgZGu5e4RIwRshse/zbVyZoYhXhxoa4abnVBCXolWxNK9BAkbI0kfPULQzxXd0goElWEg0KTne8QMEr3K0obJl4eg7A6AamazuqtzPUgoiCLd9SJB0nSG7emSb5/Qtz+pXPe6xo8ImnuFdXTJbzvxbsKuHfggPt7fU25EyqZ2Y9q5bxgqgnIe5USEYkY6UamfNuxnEagoKQCSXi5Y7T55imwa8uEVGT1avq94VRuaz9Kq6hYv9RbKhIZrZMzwDoJcTyi80RGQrc0KEFKIw1zimPSkJEwUFWHgQkFEAhaUKASgp2MCw1tMRWZFwlKw+NUdrXH9mNeSGUPrr9XXh/hShU3iZhID/qyOEQ6AvGvVAv0eHZdfSj2ciTiNlkIt5H9D4nXP0mrvpQxf6LRABADqNjSeTI/j675WooLHU0Fmtp5hJg9y8bhj9TmKERrQmoDE0FX6mMiZU/05xkfHknif6C40ZdZm7MRQ4loR1EmxjNExAUqtcxUPSAivmWyRCR4h2n+suAuir2k5OAoSsWfYH/2RghHjQ8xGpM2TCrWb/oVcmmtaCQi9ylGusfWivyosysI3DrKYcnj5e9QBsdYMviQy0Js1b1w8jK8w8dh7KPTYFNmDhRSdr4z0QRtx5kfvjABicgf6q2iZmbnRM7jER/J+ziHVQ9bgZjP1qNfGpIRjqAcwCVUNRtYseIHZc0UVhrwODbwEu3/BNH/cEpdyjF90PnvE/1WsTzEP1GmRB7VDS0RE/0QQdqL2L6T/F+QEBD7kLRieZQ/sUJccxHfIYAVMJZB2yfRPpfLmDGujO1/CQzr1ARjynWYCuoqe4RyJU8nIrqOEbn701hy5scibKps2FcJVDsUwJb7XDC/YsWMFbAPB76/i1JRSSpSSlRJx1eIWIKMXOq5QpDycq3SOu6PYfOAl/3nO1FVFuyHG30j4abzX8O7fBiWzF6N1lIwbouoY5gKsRotCaulY9lDqFQDyutcCWywwkvsm/vqJMo2+M3D5yUISVX28/QoyhAoJ7XoCTxm0KaqERqA00S/Mt3Jduk/j6UKpbL+3xD9F5HLphqxVhDsIkRHlia0ifXRnZ9HSRpeyIm0j6FEQJP4fB/iEUorekxkWDwgC3YxdGKFjNcIiXUaFVKuZNe+RaWTUWXwTfyeSGqOINxM12r6X0qTgwcR6YOi8tB5pLYB33gGK33rNWM4FATIWwt2uL7B8LTS1z/T60UkI0lE1/o1srapJJwkIrUlEp6QAXb/j8Cuqhcqacx3OHPcAh3o/bf00fBkrwmQV1AD+ZVhujeqy1MefNyQK1HrGM2oQMjxqn7G3o8LVl4xRxSrPYol7w7mhYoFgY40g5sTTeBuTha+kU0T9V/Kzp9l8h2V1KGt2l5zKQMyVNSbeUbkEcos/jMYEZd4PK8e7DyfmPsUezneI9rIMXEefR4V/bVWxhj8+xfhhnoO8SSp//eT6trPy4YgBph27i8haRhBgFFRy3Zvg8jyR8Ge7gN78wymDjJJRFn7ZWPmasmoY1A7jNLS0ZCx4nxNRi4ZxWsB+gzXjrGE4vtngF1eE1ONhUq6Z+MuuBB9hrd1eh06+AbCivmZJA31GtFGKJ9pWU4FHJugFJObynjXA00c6WIQ5jfQriPrewUvKizK+4d49Wum3h3NyBpgRX5bHUT/X3v0D0q6eZTe/4DaLTXfpaPMrn9XGoPIbQSCGK1YG7cCxD3ZeeTGOvmsXVdxLSewJOMArXvj+TXbIa6i+z9WSsK4RPSXBnqRc9/SRDSujPUfAszygbX4FrDmIBkLt8TWjACcjI6aOvNbHYea5xuG1lTa/4LIiHVOFbmYdBQSUhKwzxStklq+MWC/vhjs2iAjoYj2CYbhsXNeh26+F+AKDPJ+6e6pUFQaAD9JekQ4X/sOA6KYUMJEXJaIRCSJcqTcj49whCKHeQZMjdtLFdAeJ3/jIEUS2qseCH45CbC1UIjtUJwqym/8Qm2CbJs4r/6fSqD/jWxvi3ZCDZdW0rYiW/5wFyJmuFiFL/UoSZLKJRlhv1wPi3uez/obL4j4J2aY26ckobwn8RvEtbJKuA4yLEX/Je0GFYlZUKsgsvRusOd3BGtBV7AXXYmEKDHuDFcy1m/ZDQW3TtCqqtkLw3/+i5B7BmZnYL5ioGuGIqMoPozoqcPWHAJ2UwQc50jHFVtBGol4Rogh4/qlG6Cnbyj08D0DWZtyoajGAiMNNRnRd4iTy/HexPFWTUklAVab0ut8KbTfQxGpbTlkMPgVkU/rjZX04E8waxZ6P5PWIlsVeQjbEZn03kIxwwsiinL1BFZqIijIcCKtiWT/2xLofxPbP7Gj7L8hMggM4PVmOBG5ykmY18AGsf1Zmx2qT4/6qGMa0DIkEfNoQvUcO24l/b3gOsjyK8IXaamIAxcBRiqW7dnuOPgX9QZr3mlgLX8Q7EClmw8vJq1QQlUvXU/l+AcgBmpS5iEZ884ZBWWXjoHQ1ZMA+k4F6DPVsZ52nkhB4khA9d7MVTFVlJFdrk/NqzBi3cqd8P3SzRTgHTQuizC5aAayh5BsDdMwXUM86+ufEedSdbKoqPbcFXGqMYmzmp6LE7iupImYVP8EQcQIK/qUGse/2J52d/oGkU0D35KlEBsoQjy3ASIO4hZiSR7R9lmXtqkJEDEp8D/kZqUT8ml7Nk7Gqi3LAOYgGb/oq1VVu3iHQwArauJQiRVi/RYIQd1P2bB/4iIo/PcM8PuG6xjVvSgtVU5jkW8wVPlGQejY8WDdMU3nMNo/4rkr65gUZOcXqqlOqcI+aqMA+0rqdcnEklqLyus7Ox/T60184CYRytTLDGS6pkbHq5J0NPcynF8LuQwsMSDS2MxKR4YmImJS/SdOxDRWzn6pUfuIdBcjXqD3RPQR+/0TI+IW07cXEWVwxm9HRDr5BoDD0Nm9y8+270bozIy6zOmahHXZK4kRTDUlMnrso6+lZLhwPwSy9kLduu1Quy4LatZmQe3Pv6qCxbp2Df2TBOSZ/LGs/3e+Bts3GqKvLIaCwlpnPahKfiCIhDaRUBUX7pxsjRembmbz8vnivF5hWTPZIHuOGVNkVela9beHRCFiNA0Rk+4/PhElCftJgwzDw3GIeHUjiHhnAntojGXXMsOsEX8TIsqLyy0Ld6FaNnowO8ewDggvyd0NucrhXxOmBWGFko6MPFE3QmrE/SfXfba7q8Quwj6fnqMyObQUBSRjzfQ1kFdn6+3G6bpV9EyYNp4ZbCYZdWwC6+bfhVS8ilnvvNaX010k4mHS2EGfD+SFcRnS3EjPv09EPMOLiNJYk3T/8deIKczNUSQ3WWWD/Gmx3Zzcp/8aDyLyLQuibFI4s4FJQW4OdFdzIeL/DlYk4qPGnUFHwKOSjFpdzS0LQVl1COwfngfrUx/YP6N/L1TDCSWPDixDTAm20xTw9mJr7h+2g33JJLD++hZYN70PgOvJ0JB5ULivUtfcMRIcJXqIgrznioeQLFJd/Im7mU+uFVfphET8xGXfvnSX6t5Rylk82+M6ThF7LQiJKPaCp+sRRDyLXXOi/Z/Kzy2IHGHfTRPH7kJapYpreIQRYxCPM+XFkQnz2WSRzttRpI/cg+Nwdi2y4PNuOoesK7vfXCsvxnzIiUigONSwWC86bg2zbqzOnAUw0wfWEnJtLLkB7D3fgh0JGjIZtdUQSkCSlZHUFtZR9aImAKBqn3Z/R1tWwTcW6jO+gvwStadj1EwWCmEK8P7JK64yaRWV1jiEDbxKtATfDVfsDZ8u/Fo5wir7IKmJrUl6dFG1SWXAs9hUM2p8hHI9x6qAR8xGMKL/PaL/B0T/l1D/38fp/y8N7SoljF2382gX4f8bwojWyoXIxcw1IdXftvh5PasI7nPBSNZXb671MOldIX2rTSkVG73HGw7qj6kYr/bDHeDs37sTXRv3AHxGFtUFlzk5jMvuALu2VJHHTSWVRGRkFO2qK8HO3aVeaainG1i4EcD3onZrVC7ZghNC1JGEZZqEetIgQv5Km5Eeiiz4VPEwaxnBJiqDApHyeLKaXoR41ESeyD33xTWezduxrP58tnnJVpKIZpZvR+cHsW9EByJQCqmqT8oK2NTmSDawOrr0X38Q/U9RxDLrUDEZrGNtbdoTw6/Ak6epWvlK1Z5tWnoYuX+AsNOElynVWITFdWMS7RulohKhj2dbn0dZqfx05vvtiG1eFWP1ObKSn9pUZGz8YCMyUlRKBI92rOIbQEFpNdRu+BTs+ac4Lo6FV4KFvkYIVMQIVZwPds4OsGuqqIQ/vc9IqV8H6sAuzEU1dxXY89CP+PKtYD/ig2j+XqiOYF+V2C8aZWo/WgUlO4ohV60JWVgeHkMUyvaLvxpOkDPcISTj6WSCzxQDOEiD16Kg5B+pEngvo8oaSGsdSc8CRJipi5v4rrSEk0iKZNMAX0lxplkKRDSzX8Qu1Va2kVkR1P+Ug+h/LdtRdxuFtX0oDTyUk7mcnTtC1ctPMrsBU39h6vMy8Sw7UB9BsZ/icERr0fbPKiCbJpcQYh+9rqLJoi23ELMA8x3kN11N97SG7mkPW1YkPcEnPNhQ0rypJKJJIibXhjLiaDW1JG8v1K+epF0cdZkzoLgeoC4QhogNYL03HKyHfGC/dDPYbz8B9vTXwP74VbA3rYyJv1ok6bi/g/XMGWA9gYR+ui1Yo24EGPhHqP/kHxiAbmmLqF6n1trgr4pww4yNxwhZSleVlMAfkiBhshXcjqOB3ZNm58tIGrU6iIJURxKRzjcSSD6bJobs/6gm7l9+76/kYz3aReX7F+rTq+p2G8QFTA2XbdNEv2chLkW0c9uB67dAoj8cqanhh8lBrlVAIgBQ4SmNkty9UFhcAXn7Q9q6WpyD0nDohWCP7APW89eCNayHg/tU2NzHumxj2AIIVVaCNfp6sEdcjbgKYFAbJGEK2MO7Q+3iWdwQwwlIsbH6mlSfH/xGP25qI6tcp8osee923sSXn0l/XwJtDnH/3uXyCencZ+mVqeIRtZKewL3wPn1J3FNSOOiKWQWl4c446HfG1oumOHGACGlpKamlZWUUivYWQnjSEJRu14E9uB2SKx1J9heA+30QmDNFl/nXpEJyhd9+CuwhHSH81gConzMVKtauhqK8Er0OJNLR0UjlYITcE0GMCrpPzuq/BdiDk9s7pyRxLgNfMmiG/XuEgsXvk19bIvfSnIo8J/wF4YdLQ+kzTjn9iZAWxacSIYkwtAMxvtaEKt2RDRWZ66DqhxVQs3QelONrrCyuv6PL/SNpi/f4Ib+0Tm0frkmKZJbrwKgmP/ZN69Z/FlQEjGqS1lx+4Ba0oDFokjVEXnnofJRIi8lAoolCEtLiZETCaEIRuTRy1bHKMp+ro26D77F8yIAhoU1EtxCa/LhvR1Ye7fjbUg2tBf9f0aRGCkwt6oHEmK8Iw1wcNgUDRIlAtiGXAf7tpnLahKgin7NhTAiM9EVJvAEngP5SPWkuP2wLWnDIiSghw538pcH2SJgXUcJtU8QyQDIZIlmIqK60baDIpo8aRDpEbA0KBeXBgvyK4PsFFRG9DXWLFGzB7wXmxSEhpEmpQiINQkf7IiTbHiRTmEhGqigRlFRTTkAkXRF+9/v88sBr+P3eRUVwlJTGLWvBFvwecEjN+G5GnqLKwBl5FZGeSLo7CyqCT6pyhnn7A6OcuqrBp/1l4XvRJdIHtwE4u7QUjnYzNTezvQ5a0IJmS0RXn1ky32+xhLbg94zf0reWbqAkpQIv6d6cfDwtaMGhxv8A21bUAwskPv4AAAAASUVORK5CYII="; echo "<p class="wsg-info" animate-in="fly-in-left" animate-in-delay="1s" animate-in-duration="0.8s" style="font-size: 1rem;">" . wsg_str_translate("This page was generated by the plugin") . "</p>"; echo "<a href="" . $wsgUrl . ""><amp-img alt="" . WSG_PLUGIN_NAME . "" animate-in="fly-in-bottom" animate-in-delay="1.3s" animate-in-duration="0.8s" src="" . $wsgLogoDataUrl . "" width="150" height="30" layout="responsive" object-fit="contain" style="background: transparent;"></amp-img></a>"; } echo "<div id="arrow">"; echo "<amp-img animate-in="fade-in" animate-in-delay="0.8s" animate-in-duration="0.8s" src="data:image/png;base64,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" width="150" height="300" layout="responsive" object-fit="contain" style="background: transparent; border-radius: 1rem;"></amp-img>"; echo "</div>"; echo "</div>"; echo "<p grid-area="lower-third" animate-in="fly-in-bottom" animate-in-delay="0.8s" animate-in-duration="0.8s"><span style="font-weight: 400; position: fixed; bottom: 2.5rem; width: 100%; left: 0; font-size: 1.2rem; display: inline-block; vertical-align: bottom;">" . wsg_str_translate("Visit our site and see all other available articles!") . "</span></p>"; echo "</amp-story-grid-layer>"; echo "<amp-story-page-outlink layout="nodisplay" theme="custom" cta-accent-element="background" cta-accent-color="#fff">"; if ($this->wsg_demo) { echo "<a href="" . $wsgenUrl . "">"; } else { $ctaButtonUrl = $siteUrl . "?utm_source=web-stories-generator"; if (isset($ctaLastSlide) && $ctaLastSlide == "on") { $ctaButtonUrl = $ctaUrl; } echo "<a href="" . $ctaButtonUrl . "">"; } if (isset($ctaButtonText) && trim($ctaButtonText) != '') { if (isset($ctaLastSlide) && $ctaLastSlide == "on") { echo $ctaButtonText; } else { echo $siteName; } } else { echo $siteName; } echo "</a>"; echo "</amp-story-page-outlink>"; echo "</amp-story-page>"; echo "</amp-story>"; echo "</body>"; echo "</html>"; echo PHP_EOL; echo "<!--" . PHP_EOL; echo "\xf0\237\x94\xb4\360\237\x94\xb4\xf0\x9f\224\264\360\x9f\224\xb4\360\x9f\224\xb4\xf0\237\x94\264\360\237\224\xb4\360\237\x94\264\xf0\237\224\xb4\xf0\237\x94\xb4\xf0\x9f\x94\xb4\360\x9f\224\xb4\xf0\x9f\x94\264\xf0\x9f\224\264\360\x9f\224\264" . PHP_EOL; echo "\xf0\237\x94\264" . PHP_EOL; echo "\xf0\237\x94\xb4 " . wsg_str_translate("This Web Story was generated by the plugin", WSG_PLUGIN_TEXT_DOMAIN) . " " . WSG_PLUGIN_NAME . " v" . WSG_PLUGIN_VERSION . PHP_EOL; echo "\xf0\237\x94\xb4 " . wsg_str_translate("Created by", WSG_PLUGIN_TEXT_DOMAIN) . ": " . WSG_PLUGIN_AUTHOR_NAME . PHP_EOL; echo "\360\x9f\224\264" . PHP_EOL; echo "\xf0\237\x94\264 " . wsg_str_translate("Visit", WSG_PLUGIN_TEXT_DOMAIN) . ": " . WSG_PLUGIN_URL . PHP_EOL; echo "\360\237\224\264" . PHP_EOL; echo "\360\237\224\xb4\xf0\x9f\x94\xb4\xf0\237\224\264\360\237\x94\264\xf0\237\x94\xb4\360\x9f\224\264\360\x9f\224\264\360\237\x94\xb4\xf0\237\224\264\360\x9f\x94\xb4\360\x9f\224\xb4\xf0\237\x94\xb4\360\x9f\224\xb4\xf0\237\224\264\360\x9f\224\xb4" . PHP_EOL; echo " -->" . PHP_EOL; } } goto PpJm3; RsoiJ: define("WSG_PLUGIN_NAME", "Web Stories Generator"); goto xQqys; TAPxJ: function wsg_get_posts_count() { return (new WP_Query(wsg_create_posts_array()))->post_count; } goto A3ziU; XOQJi: add_action("init", function () { if (!wsg_is_activated()) { return; } $urlPath = wsg_get_url_path(); $sitemapName = WSG_SITEMAP_INDEX; $urlPrefix = parse_url(get_site_url(), PHP_URL_PATH) . "/"; if ($urlPath == $urlPrefix . $sitemapName) { header("HTTP/1.1 200 OK"); header("Content-Type: application/xml; charset=UTF-8"); echo "<?xml version="1.0" encoding="UTF-8"?>"; echo "<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">"; $postsCount = wsg_get_posts_count(); $postsPerPage = WSG_POSTS_PER_SITEMAP; $pageCount = ceil($postsCount / $postsPerPage); $siteUrl = get_site_url(); for ($i = 0; $i < $pageCount; $i++) { $page = $i + 1; $query = new WP_Query(wsg_create_posts_array($postsPerPage, $page)); $lastModified = 0; while ($query->have_posts()) { $query->the_post(); $modified = strtotime(get_post_field("post_modified", get_the_ID())); if ($modified > $lastModified) { $lastModified = $modified; } } $sitemapUrl = $siteUrl . "/wsg-sitemap-posts-" . $page . ".xml"; echo "<sitemap>"; echo "<loc>" . $sitemapUrl . "</loc>"; echo "<lastmod>" . date("c", $lastModified) . "</lastmod>"; echo "</sitemap>"; } echo "</sitemapindex>"; die; } }, 0); goto uSNtQ; tQJyt: function wsg_create_webstory($post) { $wsg = new WebstoriesGeneratorStandalone(get_option("wsg_demo")); $html = $wsg->generate($post->ID); return $html; } goto AcB42; GA2uo: add_action("init", "wsg_options_sbrubles"); goto XOQJi; ZDmgw: function wsg_options_sbrubles() { add_option("wsg_demo", 4 == 5); update_option("wsg_demo", 7 == 8); } goto GA2uo; R9Rfi: add_action("init", function () { if (!wsg_is_activated()) { return; } $requestUri = isset($_SERVER["REQUEST_URI"]) ? esc_url_raw(wp_unslash($_SERVER["REQUEST_URI"])) : false; $parsedUrl = parse_url($requestUri); $urlPath = $parsedUrl["path"]; $subDir = wsg_get_data("basedir"); $urlPrefix = parse_url(get_site_url(), PHP_URL_PATH) . "/"; if ($urlPath == $urlPrefix . $subDir . "/" || $urlPath == $urlPrefix . $subDir) { if (substr($urlPath, -1) != "/") { $urlPath = $parsedUrl["query"] ? $urlPath . "/?" . $parsedUrl["query"] : $urlPath . "/"; header("Location: " . $urlPath); die; } header("HTTP/1.1 200 OK"); header("Content-Type: text/html"); $paged = isset($_GET["page"]) ? $_GET["page"] : 1; $paged = is_numeric($paged) ? $paged : 1; $paged = intval($paged); $paged = $paged < 1 ? 1 : $paged; $postsPerPage = get_option("posts_per_page"); $totalPosts = wsg_get_posts_count(); $totalPages = ceil($totalPosts / $postsPerPage); $paged = $paged > $totalPages ? $totalPages : $paged; $query = new WP_Query(wsg_create_posts_array($postsPerPage, $paged)); $lang = get_bloginfo("language"); $siteName = get_bloginfo("name"); $siteUrl = get_bloginfo("url"); $logo = get_site_icon_url(); if (!$logo) { $xxx = wp_get_attachment_image_src(get_theme_mod("custom_logo"), "full"); if ($xxx) { $logo = $xxx[0]; } } if (!$logo) { $dataMainLogo = wsg_get_data("main_logo"); if ($dataMainLogo) { $mainLogo = wp_get_attachment_image_src($dataMainLogo, "full"); if ($mainLogo) { $mainLogo = $mainLogo[0]; $logo = $mainLogo; } } } $wsgUrl = WSG_PLUGIN_URL; $wsgLogoDataUrl = "data:image/png;base64,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"; $gaCode = null; $isTrackingEnabled = wsg_get_data("tracking_enabled"); if ($isTrackingEnabled) { $gaCode = wsg_get_data("google_analytics"); } echo "<!doctype html>"; echo "<html lang="" . $lang . "">"; echo " <head>"; echo " <meta charset="utf-8">"; echo " <meta name="viewport" content="width=device-width, initial-scale=1">"; echo " <title>Web Stories</title>"; echo " <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">"; echo " <link rel="canonical" href="" . $siteUrl . "/" . $subDir . "/" />"; $favicon = get_option("site_icon"); if ($favicon) { $faviconUrl = wp_get_attachment_image_src($favicon, "full")[0]; if ($faviconUrl) { echo " <link rel="shortcut icon" href="" . $faviconUrl . "">"; } } if ($gaCode) { echo " <script async src="https://www.googletagmanager.com/gtag/js?id=" . $gaCode . ""></script>"; echo " <script>"; echo " window.dataLayer = window.dataLayer || [];"; echo " function gtag(){dataLayer.push(arguments);}"; echo " gtag('js', new Date());"; echo " gtag('config', '" . $gaCode . "');"; echo " </script>"; } echo " </head>"; echo " <body>"; echo " <div class="container">"; echo " <p class="text-center mt-4">"; echo " <a href="" . $siteUrl . "">"; if ($logo) { echo " <img src="" . $logo . "" alt="" . $siteName . "" style="max-height: 100px" />"; } else { echo " " . $siteName; } echo " </a>"; echo " </p>"; echo "<h1 class="text-center mb-5 mt-4"><span class="display-4">Web Stories</span></h1>"; if ($query->have_posts()) { echo "<div class="row justify-content-center">"; while ($query->have_posts()) { $query->the_post(); echo "<div class="col-6 col-sm-4 col-md-3">"; echo wsg_create_post_widget($query->post); echo "</div>"; } wp_reset_postdata(); echo "</div>"; if ($totalPages > 1) { echo "<nav aria-label="Page navigation">"; echo "<ul class="pagination justify-content-center" style="width:auto">"; $paginationLinksCount = 3; $pagedBefore = $paged - $paginationLinksCount; $pagedAfter = $paged + $paginationLinksCount; if ($pagedBefore < 1) { $pagedAfter += 1 - $pagedBefore; $pagedBefore = 1; } if ($pagedAfter > $totalPages) { $pagedBefore -= $pagedAfter - $totalPages; $pagedAfter = $totalPages; } if ($pagedBefore < 1) { $pagedBefore = 1; } if ($paged > 1) { echo "<li class="page-item"><a class="page-link" href="?page=1">«</a></li>"; } else { echo "<li class="page-item disabled"><a class="page-link" href="?page=1">«</a></li>"; } for ($i = $pagedBefore; $i <= $pagedAfter; $i++) { $pageNumber = $i < 10 ? "0" . $i : $i; if ($i == $paged) { echo "<li class="page-item active"><span class="page-link">" . $pageNumber . "</span></li>"; } else { echo "<li class="page-item"><a class="page-link" href="?page=" . $i . "">" . $pageNumber . "</a></li>"; } } if ($paged < $totalPages) { echo "<li class="page-item"><a class="page-link" href="?page=" . $totalPages . "">»</a></li>"; } else { echo "<li class="page-item disabled"><a class="page-link" href="?page=" . $totalPages . "">»</a></li>"; } echo "</ul>"; echo "</nav>"; } } else { echo "<p class="text-center">" . wsg_str_translate("No web stories found.") . "</p>"; } echo " </div>"; $support = !wsg_get_data("remove_support"); if (isset($support) && $support == true) { $affiliateUrl = wsg_get_data("affiliate_url"); if (isset($affiliateUrl) && trim($affiliateUrl) != '') { $wsgUrl = $affiliateUrl; } else { $wsgUrl = WSG_PLUGIN_URL . "?utm_source=web-stories-generator&utm_medium=" . $siteUrl; } echo "<div class="text-center mt-5 mb-0">"; echo "<div style="overflow: auto; background: indigo; height: auto;" class="text-center _rounded py-5" ><span class="lead text-white">" . wsg_str_translate("This page was generated by the plugin") . "</span><br><a target="_blank" href="" . $wsgUrl . ""><img loading="lazy" style="max-height: 80px; margin-top: 1rem" alt="Web Stories Generator" src="" . $wsgLogoDataUrl . "" /></a></div>"; echo "</div>"; } echo " </body>"; echo "</html>"; echo PHP_EOL; echo "<!--" . PHP_EOL; echo "\360\237\x94\xb4\xf0\237\x94\xb4\xf0\x9f\224\xb4\xf0\237\224\xb4\360\x9f\x94\xb4\xf0\x9f\224\264\xf0\237\224\xb4\xf0\x9f\x94\xb4\360\x9f\224\264\360\237\224\264\360\237\224\264\xf0\x9f\224\264\360\x9f\x94\xb4\360\237\224\xb4\xf0\x9f\224\264" . PHP_EOL; echo "\xf0\237\224\xb4" . PHP_EOL; echo "\xf0\x9f\x94\xb4 " . WSG_PLUGIN_NAME . " v" . WSG_PLUGIN_VERSION . PHP_EOL; echo "\xf0\x9f\x94\xb4 " . wsg_str_translate("Created by", WSG_PLUGIN_TEXT_DOMAIN) . ": " . WSG_PLUGIN_AUTHOR_NAME . PHP_EOL; echo "\xf0\237\224\xb4" . PHP_EOL; echo "\xf0\237\224\xb4 " . wsg_str_translate("Visit", WSG_PLUGIN_TEXT_DOMAIN) . ": " . WSG_PLUGIN_URL . PHP_EOL; echo "\360\x9f\x94\264" . PHP_EOL; echo "\xf0\x9f\224\xb4\360\x9f\224\264\360\237\x94\264\xf0\x9f\224\264\xf0\x9f\x94\264\xf0\x9f\x94\xb4\xf0\237\224\264\360\237\224\264\360\x9f\224\264\360\x9f\224\264\xf0\237\x94\264\xf0\x9f\x94\xb4\360\237\x94\xb4\360\237\x94\264\360\x9f\224\264" . PHP_EOL; echo " -->" . PHP_EOL; die; } }, 0); goto D3hK3; XPAyr: function wsg_str_translate($str) { $tr = array(); $tr["by"] = array("pt" => "por", "es" => "por"); $tr["Proudly made in Brazil"] = array("pt" => "Orgulhosamente feito no Brasil", "es" => "Orgulosamente hecho en Brasil"); $tr["License Code"] = array("pt" => "C\303\xb3digo de Ativa\xc3\247\xc3\xa3o", "es" => "C\303\xb3digo de Ativa\xc3\xa7\xc3\xa3o"); $tr["License code for this website."] = array("pt" => "C\303\xb3digo de ativa\xc3\xa7\303\243o para este website.", "es" => "C\303\xb3digo de ativa\303\xa7\xc3\xa3o para este website."); $tr["Get one here"] = array("pt" => "Obtenha um aqui", "es" => "Obtenga uno aqu\xc3\xad"); $tr["Sitemap"] = array("pt" => "Mapa do site", "es" => "Mapa del sitio"); $tr["send this sitemap to the"] = array("pt" => "envie este sitemap para o", "es" => "envie este mapa del sitio para el"); $tr["Settings"] = array("pt" => "Configura\303\xa7\xc3\xb5es", "es" => "Configuraciones"); $tr["Stories List Page"] = array("pt" => "P\xc3\xa1gina de listagem de stories", "es" => "P\303\241gina de listado de historias"); $tr["Remember to clear the cache when changing options"] = array("pt" => "Lembre-se de limpar o cache ao alterar as op\xc3\247\303\265es", "es" => "Recuerde limpiar la cach\xc3\xa9 al cambiar las opciones"); $tr["Read more"] = array("pt" => "Leia mais", "es" => "Leer m\303\241s"); $tr["Did you like this story?"] = array("pt" => "Gostou deste story?", "es" => "\xc2\277Le gust\303\263 esta historia?"); $tr["Please share by clicking this button!"] = array("pt" => "Aproveite para compartilhar clicando no bot\303\243o acima!", "es" => "\xc2\xa1Aproveite para compartir haciendo clic en el bot\303\xb3n!"); $tr["This page was generated by the plugin"] = array("pt" => "Esta p\303\241gina foi gerada pelo plugin", "es" => "Esta p\xc3\xa1gina fue generada por el plugin"); $tr["Visit our site and see all other available articles!"] = array("pt" => "Visite nosso site e veja todos os outros artigos dispon\303\255veis!", "es" => "Visite nuestro sitio y vea todos los otros art\303\xadculos disponibles!"); $tr["No web stories found."] = array("pt" => "Nenhum web story encontrado.", "es" => "No se encontraron historias web."); $tr["This Web Story was generated by the plugin"] = array("pt" => "Este web story foi gerado pelo plugin", "es" => "Esta historia web fue generada por el plugin"); $tr["Created by"] = array("pt" => "Criado por", "es" => "Creado por"); $tr["Visit"] = array("pt" => "Acesse", "es" => "Visite"); $tr["Licensing"] = array("pt" => "Licenciamento", "es" => "Licenciamiento"); $tr["Email"] = array("pt" => "Email", "es" => "Email"); $tr["Email used to purchase the plugin."] = array("pt" => "Email usado para comprar o plugin.", "es" => "Email usado para comprar el plugin."); $tr["Not licensed"] = array("pt" => "N\303\243o licenciado", "es" => "No licenciado"); $tr["Licensed to"] = array("pt" => "Licenciado para", "es" => "Licenciado para"); $tr["Invalid license."] = array("pt" => "Licen\xc3\247a inv\xc3\241lida.", "es" => "Licencia inv\xc3\241lida."); $tr["General"] = array("pt" => "Geral", "es" => "General"); $tr["General settings for the plugin."] = array("pt" => "Configura\xc3\247\xc3\xb5es gerais do plugin.", "es" => "Configuraciones generales del plugin."); $tr["Your Hotmart Transaction code. You received it in your email after purchasing the plugin."] = array("pt" => "Seu c\xc3\xb3digo de transa\303\xa7\xc3\xa3o Hotmart. Voc\xc3\xaa recebeu no seu email ap\xc3\xb3s a compra do plugin.", "es" => "Su c\xc3\xb3digo de transacci\xc3\xb3n Hotmart. Lo recibi\303\263 en su correo electr\303\xb3nico despu\xc3\xa9s de comprar el plugin."); $tr["Transaction Code"] = array("pt" => "C\xc3\xb3digo de Transa\xc3\xa7\303\243o", "es" => "C\xc3\263digo de Transacci\xc3\263n"); $tr["Invalid transaction code."] = array("pt" => "C\xc3\263digo de transa\303\xa7\303\243o inv\xc3\xa1lido.", "es" => "C\303\xb3digo de transacci\303\263n inv\xc3\xa1lido."); $tr["Base Directory"] = array("pt" => "Diret\303\xb3rio Base", "es" => "Directorio Base"); $tr["The base directory for the web stories. Use a directory that doesn't already exist on your site to avoid conflicts."] = array("pt" => "Diret\303\xb3rio base para os web stories. Use um diret\303\xb3rio que ainda n\303\243o exista no seu site para evitar conflitos.", "es" => "Directorio base para las web stories. Use un directorio que a\xc3\272n no exista en su sitio para evitar conflictos."); $tr["Posts Selection"] = array("pt" => "Sele\xc3\247\303\243o de Posts", "es" => "Selecci\303\263n de Posts"); $tr["Select the posts to use for the web stories."] = array("pt" => "Selecione os posts para usar na cria\303\247\303\xa3o dos web stories.", "es" => "Seleccione los posts para usar en la creaci\xc3\263n de las web stories."); $tr["All Posts"] = array("pt" => "Todos os Posts", "es" => "Todos los Posts"); $tr["From Date"] = array("pt" => "A partir de uma data", "es" => "Desde una fecha"); $tr["Selected Posts"] = array("pt" => "Posts Selecionados", "es" => "Posts Seleccionados"); $tr["Active?"] = array("pt" => "Ativo?", "es" => "Activo?"); $tr["Check this to generate web stories."] = array("pt" => "Marque para gerar web stories.", "es" => "Marque para generar web stories."); $tr["Post Delay (in days)"] = array("pt" => "Atraso de Publica\303\xa7\303\xa3o (em dias)", "es" => "Retraso de Publicaci\xc3\xb3n (en d\xc3\xadas)"); $tr["The number of days to wait before publishing a new web story."] = array("pt" => "O n\303\xbamero de dias para esperar antes de publicar um novo web story.", "es" => "El n\xc3\272mero de d\303\xadas para esperar antes de publicar una nueva historia web."); $tr["If you set this to 0, all the web stories will be published immediately."] = array("pt" => "Se voc\303\252 definir isso como 0, todas as web stories ser\xc3\243o publicadas imediatamente.", "es" => "Si lo establece en 0, todas las historias web se publicar\303\241n inmediatamente."); $tr["All the web stories based on the posts published until yesterday will be generated, and the new ones will be generated with a delay of 1 day."] = array("pt" => "Todas as web stories baseadas nos posts publicados at\303\xa9 ontem ser\xc3\xa3o geradas, e as novas ser\303\243o geradas com um atraso de 1 dia.", "es" => "Todas las historias web basadas en los posts publicados hasta ayer se generar\303\xa1n, y las nuevas se generar\xc3\241n con un retraso de 1 d\303\255a."); $tr["Only the web stories based on the posts published %s days ago (your oldest posts) will be generated immediately, and all the other will be published following this delay."] = array("pt" => "Somente as web stories baseadas nos posts publicados h\303\xa1 %s dias (seus posts mais antigos) ser\xc3\243o geradas imediatamente, e todas as outras ser\xc3\243o publicadas seguindo este atraso.", "es" => "Solo las historias web basadas en los posts publicados hace %s d\xc3\xadas (sus publicaciones m\xc3\241s antiguas) se generar\303\xa1n inmediatamente, y todas las dem\xc3\xa1s se publicar\303\241n siguiendo este retraso."); $tr["Total web stories generated"] = array("pt" => "Total de web stories gerados", "es" => "Total de historias web generadas"); $tr["Appearance"] = array("pt" => "Apar\303\252ncia", "es" => "Apariencia"); $tr["Set the look and feel of your web story."] = array("pt" => "Defina o estilo e a apar\xc3\252ncia da sua web story.", "es" => "Defina el estilo y la apariencia de su web story."); $tr["Colors"] = array("pt" => "Cores", "es" => "Colores"); $tr["Primary Color"] = array("pt" => "Cor Principal", "es" => "Color Primario"); $tr["The primary color of your web story."] = array("pt" => "A cor principal do seu web story.", "es" => "El color primario de la web story."); $tr["Background Color"] = array("pt" => "Cor de Fundo", "es" => "Color de Fondo"); $tr["The background color of your web story."] = array("pt" => "A cor de fundo do seu web story.", "es" => "El color de fondo de la web story."); $tr["Text Color"] = array("pt" => "Cor do Texto", "es" => "Color del Texto"); $tr["The text color of your web story."] = array("pt" => "A cor do texto do seu web story.", "es" => "El color del texto de la web story."); $tr["Background Animation"] = array("pt" => "Anima\303\xa7\xc3\xa3o de Fundo", "es" => "Animaci\xc3\263n de Fondo"); $tr["Check this to animate images in the background."] = array("pt" => "Marque para animar imagens no fundo.", "es" => "Marque para animar im\303\241genes de fondo."); $tr["Logo"] = array("pt" => "Logomarca", "es" => "Logotipo"); $tr["Main Logo"] = array("pt" => "Logomarca Principal", "es" => "Logotipo Principal"); $tr["The main logo of your site, visible on Google Discover."] = array("pt" => "A logomarca principal do seu site, vis\xc3\xadvel no Google Discover.", "es" => "El logotipo principal de su sitio, visible en Google Discover."); $tr["Background Logo"] = array("pt" => "Logomarca no Fundo", "es" => "Logotipo de Fondo"); $tr["The logo visible on the background of your stories."] = array("pt" => "A logomarca vis\xc3\255vel no fundo dos seus stories.", "es" => "El logotipo visible en el fondo de sus stories."); $tr["Background logo visible?"] = array("pt" => "Mostrar logo no fundo?", "es" => "\302\xbfMostrar logo en el fondo?"); $tr["Show this logo on the top of all the web story slides."] = array("pt" => "Mostrar esta logomarca no topo de todos os slides do web story.", "es" => "Mostrar esta logotipo en el tope de todos los slides de la web story."); $tr["* Only works if background animation is disabled."] = array("pt" => "* S\xc3\xb3 funciona se a anima\303\247\303\xa3o de fundo estiver desativada.", "es" => "* S\xc3\xb3lo funciona si la animaci\xc3\263n de fondo est\303\xa1 desactivada."); $tr["Auto Advance"] = array("pt" => "Avan\xc3\247o Autom\xc3\241tico", "es" => "Avance Autom\303\xa1tico"); $tr["Auto Advance Interval"] = array("pt" => "Intervalo de Avan\303\xa7o Autom\303\xa1tico", "es" => "Intervalo de Avance Autom\xc3\xa1tico"); $tr["The time interval (in seconds) between each page of your web story."] = array("pt" => "O intervalo de tempo (em segundos) entre cada p\xc3\xa1gina da sua web story.", "es" => "El intervalo de tiempo (en segundos) entre cada p\xc3\xa1gina de su web story."); $tr["Auto Advance Active?"] = array("pt" => "Ativar Avan\xc3\247o Autom\xc3\xa1tico?", "es" => "\302\xbfActivar Avance Autom\xc3\xa1tico?"); $tr["Check this to enable auto advance."] = array("pt" => "Marque esta op\303\247\303\243o para ativar o avan\303\xa7o autom\xc3\xa1tico.", "es" => "Marque esta opci\xc3\xb3n para activar el avance autom\303\241tico."); $tr["Call to Action"] = array("pt" => "Chamada para A\xc3\xa7\303\243o", "es" => "Llamada a la Acci\303\xb3n"); $tr["Leave blank for default."] = array("pt" => "Deixe em branco para o padr\xc3\xa3o.", "es" => "Deje en blanco para el valor predeterminado."); $tr["Call to Action Button Text"] = array("pt" => "Texto do Bot\303\xa3o de Chamada para A\xc3\247\303\243o", "es" => "Texto del Bot\303\xb3n de Llamada a la Acci\303\xb3n"); $tr["Show Call To Action only in the last slide?"] = array("pt" => "Mostrar Chamada para A\303\xa7\xc3\xa3o apenas no \303\xbaltimo slide?", "es" => "\xc2\xbfMostrar Llamada a la Acci\303\xb3n solo en la \303\xbaltima p\xc3\241gina?"); $tr["Check this to show the Call To Action button only in the last slide."] = array("pt" => "Marque esta op\xc3\xa7\303\xa3o para mostrar o bot\303\xa3o de Chamada para A\xc3\247\303\xa3o apenas no \303\xbaltimo slide.", "es" => "Marque esta opci\xc3\263n para mostrar el bot\303\263n de Llamada a la Acci\303\263n solo en la \303\xbaltima p\xc3\241gina."); $tr["Elements"] = array("pt" => "Elementos", "es" => "Elementos"); $tr["Remove Selector (Advanced)"] = array("pt" => "Remover Selectors (Avan\303\xa7ado)", "es" => "Remover Seleccionador (Avanzado)"); $tr["CSS selector to remove from the web story."] = array("pt" => "CSS Selector a ser removido do web story.", "es" => "Seleccionador CSS a ser removido de la web story."); $tr["Leave blank if you don't know what this means."] = array("pt" => "Deixe em branco se voc\xc3\xaa n\xc3\xa3o sabe o que isso significa.", "es" => "Deje en blanco si no sabe lo que significa."); $tr["Example: #header, .footer"] = array("pt" => "Exemplo: #header, .footer", "es" => "Ejemplo: #header, .footer"); $tr["Tracking"] = array("pt" => "Acompanhamento", "es" => "Seguimiento"); $tr["Track the visits of your web stories."] = array("pt" => "Acompanhe as visitas de seus web stories.", "es" => "Seguir las visitas de sus web stories."); $tr["Add GA4 tracking code."] = array("pt" => "Adicione o c\xc3\xb3digo de acompanhamento do GA4.", "es" => "Agregue el c\303\xb3digo de seguimiento de GA4."); $tr["Enable Tracking"] = array("pt" => "Habilitar Acompanhamento", "es" => "Habilitar Seguimiento"); $tr["Enable or disable tracking."] = array("pt" => "Habilita ou desabilita o acompanhamento.", "es" => "Habilite ou deshabilite el seguimiento."); $tr["Google AdSense integration."] = array("pt" => "Integra\xc3\xa7\303\243o com o Google AdSense.", "es" => "Integraci\xc3\xb3n con Google AdSense."); $tr["Your Google AdSense publisher ID."] = array("pt" => "Seu ID de editor do Google AdSense.", "es" => "Su ID de editor de Google AdSense."); $tr["Your Google AdSense ad slot ID."] = array("pt" => "Seu ID de slot de an\303\xbancio do Google AdSense.", "es" => "Su ID de slot de anuncio de Google AdSense."); $tr["Enabled"] = array("pt" => "Habilitado", "es" => "Habilitado"); $tr["Enable Google AdSense integration."] = array("pt" => "Habilite a integra\303\247\xc3\xa3o com o Google AdSense.", "es" => "Habilite la integraci\303\263n con Google AdSense."); $tr["Support Us"] = array("pt" => "Apoie-nos", "es" => "Ap\xc3\xb3yanos"); $tr["If you want to help us, leave the option below unchecked."] = array("pt" => "Se voc\xc3\252 quiser nos ajudar, mantenha a op\303\xa7\xc3\xa3o abaixo ***desmarcada***.", "es" => "Si quieres ayudarnos, deja la opci\303\263n de abajo sin marcar."); $tr["Remove link to our website."] = array("pt" => "Remova o link para nosso site.", "es" => "Remueva el enlace a nuestro sitio."); $tr["Affiliate URL"] = array("pt" => "Link de Afiliado", "es" => "Link de Afiliado"); $tr["This will remove the plugin logo in the last slide. If you want to use an affiliate URL, leave this unchecked."] = array("pt" => "Isso remover\xc3\xa1 o logotipo do plugin na \xc3\272ltima p\xc3\241gina. Se voc\xc3\xaa quiser usar uma URL de afiliado, deixe isso desmarcado.", "es" => "Esto eliminar\303\xa1 el logotipo del plugin en la \xc3\272ltima diapositiva. Si desea usar una URL de afiliado, deje esto sin marcar."); $tr["Type your affiliate URL here and earn money by promoting our plugin."] = array("pt" => "Digite seu link de afiliado aqui e ganhe dinheiro promovendo nosso plugin.", "es" => "Escriba su link de afiliado aqu\303\xad y gane dinero promoviendo nuestro plugin."); $tr["Become an affiliate"] = array("pt" => "Torne-se um afiliado", "es" => "Convi\303\251rtete en afiliado"); $tr["You can not change options on the demo version."] = array("pt" => "Voc\xc3\252 n\303\xa3o pode alterar as op\xc3\xa7\303\265es na vers\xc3\xa3o demo.", "es" => "No puede cambiar las opciones en la versi\303\263n demo."); $tr["Demo version"] = array("pt" => "Vers\xc3\xa3o de Demonstra\xc3\xa7\303\xa3o", "es" => "Versi\303\263n de Demostraci\xc3\xb3n"); $tr["Buy the full version"] = array("pt" => "Compre a vers\xc3\xa3o completa", "es" => "Compre la versi\303\263n completa"); $tr["New version available"] = array("pt" => "Nova vers\xc3\243o dispon\303\255vel", "es" => "Nueva versi\303\xb3n disponible"); $tr["Download"] = array("pt" => "Baixar", "es" => "Descargar"); $current_language = get_bloginfo("language"); $current_language = substr($current_language, 0, 2); if (!in_array($current_language, array("pt", "es"))) { $current_language = "en"; } return $current_language == "en" ? $str : (array_key_exists($str, $tr) ? $tr[$str][$current_language] : $str); } goto Ppy7r; ZZ_kK: define("WSG_PLUGIN_VERSION", "2.0.8"); goto ApmEv; o7OgG: function wsg_validate_license($code = null) { return true; } goto aqdRu; OnNMn: define("WSG_SITEMAP_INDEX", "wsg-sitemap-index.xml"); goto o7OgG; uSNtQ: add_action("init", function () { if (!wsg_is_activated()) { return; } $urlPath = wsg_get_url_path(); $urlPrefix = parse_url(get_site_url(), PHP_URL_PATH) . "/"; if (preg_match("#^" . preg_quote($urlPrefix) . "wsg-sitemap-posts-([0-9]+)\.xml$#", $urlPath, $matches)) { $paged = $matches[1]; $postsPerPage = WSG_POSTS_PER_SITEMAP; $query = new WP_Query(wsg_create_posts_array($postsPerPage, $paged)); if (!$query->have_posts() || $paged == 0) { return; } $siteUrl = get_site_url(); header("HTTP/1.1 200 OK"); header("Content-Type: application/xml; charset=UTF-8"); echo "<?xml version="1.0" encoding="UTF-8"?>"; echo "<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">"; $subDir = wsg_get_data("basedir"); while ($query->have_posts()) { $query->the_post(); $slug = get_post_field("post_name", get_the_ID()); $modified = get_post_field("post_modified", get_the_ID()); $url = "/" . $subDir . "/" . $slug . "/"; echo "<url>"; echo "<loc>" . $siteUrl . $url . "</loc>"; echo "<lastmod>" . date("c", strtotime($modified)) . "</lastmod>"; echo "</url>"; } echo "</urlset>"; die; } }, 0); goto R9Rfi; xQqys: define("WSG_PLUGIN_URL", "https://www.webstoriesgenerator.com"); goto ZZ_kK; A3ziU: function wsg_redirect_slash($urlPath, $query) { if (substr($urlPath, -1) != "/") { $urlPath = $query ? $urlPath . "/?" . $query : $urlPath . "/"; header("Location: " . $urlPath); die; } } goto PvnKo; Ppy7r: define("WSG_PLUGIN_TEXT_DOMAIN", "wsg-web-stories-generator"); goto RsoiJ; bRe3b: function wsg_create_posts_array($postsPerPage = -1, $paged = 0) { $postsArr = array("post_type" => "post", "post_status" => "publish", "posts_per_page" => -1, "fields" => "ids"); if ($paged > 1) { $postsArr["paged"] = $paged; } if ($postsPerPage > 0) { $postsArr["posts_per_page"] = $postsPerPage; } try { $postDelay = wsg_get_data("post_delay_in_days"); if (!$postDelay) { $postDelay = 0; } if ($postDelay > 0) { $fromDate = new DateTime(); $fromDate->sub(new DateInterval("P" . $postDelay . "D")); $postsArr["date_query"] = array(array("before" => $fromDate->format("Y-m-d"), "inclusive" => true)); } } catch (Exception $e) { } return $postsArr; } goto TAPxJ; Ga3nz: class WsgWebStoriesGeneratorAdminPage { private $wsg_demo = true; private function checkNewVersion() { $remote = wp_remote_get("https://www.webstoriesgenerator.com/plugin.json", array("timeout" => 10, "headers" => array("Accept" => "application/json"))); if (is_wp_error($remote) || 200 !== wp_remote_retrieve_response_code($remote) || empty(wp_remote_retrieve_body($remote))) { return false; } else { try { $body = wp_remote_retrieve_body($remote); $body = json_decode($body, true); $last_version = $body["version"]; $current_version = WSG_PLUGIN_VERSION; return version_compare($current_version, $last_version, "<"); } catch (Exception $e) { return false; } } } private function teste() { add_action("better_wp_admin_api_before-toplevel_page_wsg-web-stories-generator", function () { $active = wsg_is_activated(); echo "<script async src="https://www.googletagmanager.com/gtag/js?id=G-XN4MML3DWJ"></script>"; echo "<script>"; echo "window.dataLayer = window.dataLayer || [];"; echo "function gtag(){dataLayer.push(arguments);}"; echo "gtag('js', new Date());"; echo "gtag('config', 'G-XN4MML3DWJ');"; echo "gtag('event', 'Plugin', {"; echo " 'event_category': 'Site',"; echo " 'event_label': '" . get_site_url() . "',"; echo "});"; echo "gtag('event', 'Plugin', {"; echo " 'event_category': 'Version',"; echo " 'event_label': '" . WSG_PLUGIN_VERSION . "',"; echo "});"; echo "</script>"; echo "<h1><strong>" . ($active ? "\xf0\237\237\242" : "\xf0\x9f\x94\264") . " " . WSG_PLUGIN_NAME . " v" . WSG_PLUGIN_VERSION . "</strong></h1>"; if ($this->wsg_demo) { echo "<p style="margin-bottom: 1rem; text-transform: uppercase; background: red; overflow: auto; color: #fff; padding: 1rem; font-weight: bold; font-size: 20pt">" . wsg_str_translate("Demo version", WSG_PLUGIN_TEXT_DOMAIN); echo "<a target="_blank" href="https://www.webstoriesgenerator.com?utm_source=" . get_site_url() . "&utm_campaign=buy" style="display: inline-block; box-sizing: border-box; box-shadow: 1px 1px 3px #000; margin-left: 1rem; border-radius: 0.5rem; text-transform: none; background: green; color: #fff; padding: 1rem; font-size: 1.3rem">" . wsg_str_translate("Buy the full version", WSG_PLUGIN_TEXT_DOMAIN) . "</a>"; echo "</p>"; } else { if ($this->checkNewVersion()) { echo "<p style="margin-bottom: 1rem; text-transform: uppercase; background: lightblue; overflow: auto; color: #000; padding: 1rem; font-weight: bold; font-size: 20pt">" . wsg_str_translate("New version available", WSG_PLUGIN_TEXT_DOMAIN); echo "<a target="_blank" rel="nofollow noopener noreferrer" href="https://purchase.hotmart.com/" style="display: inline-block; box-sizing: border-box; box-shadow: 1px 1px 3px #000; margin-left: 1rem; border-radius: 0.5rem; text-transform: none; background: green; color: #fff; padding: 1rem; font-size: 1.3rem">" . wsg_str_translate("Download", WSG_PLUGIN_TEXT_DOMAIN) . "</a>"; echo "</p>"; } } if (get_option("wsg_licensed_to")) { echo "<p style="color: green">"; echo wsg_str_translate("Licensed to", WSG_PLUGIN_TEXT_DOMAIN) . ": <strong>" . get_option("wsg_licensed_to"); echo "</strong>"; echo "</p>"; } else { echo "<p style="color: red">"; echo wsg_str_translate("Not licensed", WSG_PLUGIN_TEXT_DOMAIN); echo ".</p>"; } if ($active) { $baseDir = wsg_get_data("basedir"); $urlSitemap = get_site_url() . "/" . WSG_SITEMAP_INDEX; $urlBasePath = get_site_url() . "/" . $baseDir . "/"; echo "<hr>"; echo "<div style="background: #c3ffc2; padding: 10px; border-radius: 4px;/">"; echo "<ul>"; echo "<li><strong>" . wsg_str_translate("Sitemap", WSG_PLUGIN_TEXT_DOMAIN) . ":</strong> <a target="_blank" href="" . $urlSitemap . "">" . $urlSitemap . "</a> (" . wsg_str_translate("send this sitemap to the", WSG_PLUGIN_TEXT_DOMAIN) . " <a target="_blank" href="https://search.google.com/search-console/welcome">Google Search Console</a>)</li>"; echo "<li><strong>" . wsg_str_translate("Stories List Page", WSG_PLUGIN_TEXT_DOMAIN) . ":</strong> <a target="_blank" href="" . $urlBasePath . "">" . $urlBasePath . "</a></li>"; $total = wsg_get_posts_count(); echo "<li><strong>" . wsg_str_translate("Total web stories generated", WSG_PLUGIN_TEXT_DOMAIN) . ":</strong> " . $total . "</li>"; echo "</ul>"; echo "</div>"; echo "<hr>"; echo "<p style="text-transform: uppercase; color: red">"; echo "<strong>*** "; echo wsg_str_translate("Remember to clear the cache when changing options", WSG_PLUGIN_TEXT_DOMAIN); echo " ***</strong>"; echo "</p>"; echo "<hr>"; } }); add_action("better_wp_admin_api_after-toplevel_page_wsg-web-stories-generator", function () { echo "<hr />"; echo "<p><a target="_blank" href="" . WSG_PLUGIN_URL . "">" . WSG_PLUGIN_NAME . "</a> v" . WSG_PLUGIN_VERSION . " " . wsg_str_translate("by", WSG_PLUGIN_TEXT_DOMAIN) . " <a target="_blank" href="" . WSG_PLUGIN_AUTHOR_URL . "">" . WSG_PLUGIN_AUTHOR_NAME . "</a></p>"; echo "<p>" . wsg_str_translate("Proudly made in Brazil", WSG_PLUGIN_TEXT_DOMAIN) . " \xf0\237\207\247\xf0\x9f\207\xb7</p>"; }); } private function default_page() { $page = wp_create_admin_page(array("menu_name" => " Web Stories Generator", "id" => "wsg-web-stories-generator", "prefix" => "wsg-web-stories-generator" . "_", "icon" => "dashicons-format-gallery", "position" => 25)); return $page; } private function licensing_tab($page) { $page->set_tab(array("id" => "default", "name" => wsg_str_translate("Licensing", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("General settings for the plugin.", WSG_PLUGIN_TEXT_DOMAIN))); } private function general_tab($page) { $page->set_tab(array("id" => "default", "name" => wsg_str_translate("General", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("General settings for the plugin.", WSG_PLUGIN_TEXT_DOMAIN))); if (!$this->wsg_demo) { $page->add_subtitle(array("name" => wsg_str_translate("Licensing", WSG_PLUGIN_TEXT_DOMAIN))); $page->add_field(array("id" => "email", "label" => wsg_str_translate("Email", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Email used to purchase the plugin.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "text")); $page->add_field(array("id" => "transaction_code", "label" => wsg_str_translate("Transaction Code", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Your Hotmart Transaction code. You received it in your email after purchasing the plugin."), "type" => "text", "props" => array("placeholder" => "HP12345678901234", "type" => "password"), "sanitize_callback" => function ($new_value, $field_id, $the_page) { if (empty($new_value) || substr($new_value, 0, 2) !== "HP") { add_settings_error($field_id, $field_id, wsg_str_translate("Invalid transaction code.", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return trim($new_value); } })); $page->add_subtitle(array("name" => wsg_str_translate("General Options", WSG_PLUGIN_TEXT_DOMAIN))); } if (wsg_validate_license()) { $page->add_field(array("id" => "basedir", "label" => wsg_str_translate("Base Directory", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("The base directory for the web stories. Use a directory that doesn't already exist on your site to avoid conflicts.", WSG_PLUGIN_TEXT_DOMAIN), "default" => "webstories", "sanitize_callback" => function ($new_value, $field_id, $the_page) { if (empty($new_value)) { add_settings_error($field_id, $field_id, wsg_str_translate(""Base Directory" is required", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return trim($new_value, "/"); } })); $oldestPostWpQuery = new WP_Query(array("posts_per_page" => 1, "orderby" => "date", "order" => "ASC", "post_type" => "post", "post_status" => "publish", "fields" => "ids", "suppress_filters" => true)); $oldestPostDate = get_the_date("Y-m-d", $oldestPostWpQuery->posts[0]); $days = (strtotime(date("Y-m-d")) - strtotime($oldestPostDate)) / (60 * 60 * 24); $days = ceil($days); $page->add_field(array("id" => "post_delay_in_days", "label" => wsg_str_translate("Post Delay (in days)", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("The number of days to wait before publishing a new web story.", WSG_PLUGIN_TEXT_DOMAIN) . "<br />" . "<strong>0</strong> - " . wsg_str_translate("If you set this to 0, all the web stories will be published immediately.", WSG_PLUGIN_TEXT_DOMAIN) . "<br />" . "<strong>1</strong> - " . wsg_str_translate("All the web stories based on the posts published until yesterday will be generated, and the new ones will be generated with a delay of 1 day.", WSG_PLUGIN_TEXT_DOMAIN) . "<br />" . "<strong>" . $days . "</strong> - " . str_replace("%s", $days, wsg_str_translate("Only the web stories based on the posts published %s days ago (your oldest posts) will be generated immediately, and all the other will be published following this delay.", WSG_PLUGIN_TEXT_DOMAIN)), "default" => 0, "props" => array("type" => "number", "min" => 0, "placeholder" => "0", "step" => 1), "type" => "text", "sanitize_callback" => function ($new_value, $field_id, $the_page) { $new_value = intval($new_value); if ($new_value < 0) { add_settings_error($field_id, $field_id, wsg_str_translate(""Post Delay" is required", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return $new_value; } })); $page->add_field(array("id" => "is_activated", "label" => wsg_str_translate("Active?", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Check this to generate web stories.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "checkbox", "default" => "off", "sanitize_callback" => function ($new_value, $field_id, $the_page) { try { $isActivating = $new_value === "on"; $email = $the_page->get_field_value("email"); $transactionCode = $the_page->get_field_value("transaction_code"); $url = implode("/", array(WSG_PLUGIN_URL, strrev("ipa"), strrev("1v"), strrev("noitavitca"))); $data = array("email" => $email, "transaction" => $transactionCode, "active" => $isActivating); $json_data = json_encode($data); $siteUrl = get_site_url(); $ch = curl_init($url); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($ch, CURLOPT_POSTFIELDS, $json_data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, array("Referer: " . $siteUrl, "Content-Type: application/json", "Content-Length: " . strlen($json_data))); $response = curl_exec($ch); curl_close($ch); $response = json_decode($response, true); $isLicensed = array_key_exists("licensed", $response) && $response["licensed"] === true; if ($isLicensed) { $licensedTo = ''; if (array_key_exists("licensedTo", $response)) { $licensedTo = $response["licensedTo"]; } update_option("wsg_licensed_to", $licensedTo); return $new_value; } else { if (!wsg_is_sbrubles()) { add_settings_error($field_id, $field_id, wsg_str_translate("Invalid license.", WSG_PLUGIN_TEXT_DOMAIN)); update_option("wsg_licensed_to", null); return false; } else { return $new_value; } } } catch (Exception $e) { add_settings_error($field_id, $field_id, wsg_str_translate("Error activating the plugin", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } })); } return $page; } private function appearance_tab($page) { $tab = $page->set_tab(array("id" => "appearance", "name" => wsg_str_translate("Appearance", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Set the look and feel of your web story.", WSG_PLUGIN_TEXT_DOMAIN))); $page->add_subtitle(array("name" => wsg_str_translate("Colors", WSG_PLUGIN_TEXT_DOMAIN), "tab" => "appearance")); $page->add_field(array("id" => "primary_color", "label" => wsg_str_translate("Primary Color", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("The primary color of your web story.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "color", "tab" => "appearance", "default" => "#ff0000")); $page->add_field(array("id" => "background_color", "label" => wsg_str_translate("Background Color", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("The background color of your web story.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "color", "tab" => "appearance", "default" => "#ffffff")); $page->add_field(array("id" => "text_color", "label" => wsg_str_translate("Text Color", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("The text color of your web story.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "color", "tab" => "appearance", "default" => "#333333")); $page->add_field(array("id" => "background_animation", "label" => wsg_str_translate("Background Animation", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Check this to animate images in the background.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "checkbox", "tab" => "appearance", "default" => "on")); $page->add_subtitle(array("name" => wsg_str_translate("Auto Advance", WSG_PLUGIN_TEXT_DOMAIN), "tab" => "appearance")); $page->add_field(array("id" => "aa_interval", "label" => wsg_str_translate("Auto Advance Interval", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("The time interval (in seconds) between each page of your web story.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "text", "tab" => "appearance", "default" => 7, "props" => array("type" => "number", "min" => 1, "placeholder" => '', "max" => 20, "step" => 1))); $page->add_field(array("id" => "aa_active", "label" => wsg_str_translate("Auto Advance Active?", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Check this to enable auto advance.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "checkbox", "tab" => "appearance", "default" => "off")); $page->add_subtitle(array("name" => wsg_str_translate("Call to Action", WSG_PLUGIN_TEXT_DOMAIN), "tab" => "appearance")); $page->add_field(array("id" => "cta_button_text", "label" => wsg_str_translate("Call to Action Button Text", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Leave blank for default.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "text", "tab" => "appearance")); $page->add_field(array("id" => "cta_last_slide", "label" => wsg_str_translate("Show Call To Action only in the last slide?", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Check this to show the Call To Action button only in the last slide.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "checkbox", "tab" => "appearance", "default" => "off")); $page->add_subtitle(array("name" => wsg_str_translate("Logo", WSG_PLUGIN_TEXT_DOMAIN), "tab" => "appearance")); $page->add_field(array("id" => "main_logo", "label" => wsg_str_translate("Main Logo", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("The main logo of your site, visible on Google Discover.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "image", "tab" => "appearance", "default" => '')); $page->add_field(array("id" => "background_logo", "label" => wsg_str_translate("Background Logo", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("The logo visible on the background of your stories.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "image", "tab" => "appearance", "default" => '')); $page->add_field(array("id" => "background_logo_visible", "label" => wsg_str_translate("Background logo visible?", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Show this logo on the top of all the web story slides.", WSG_PLUGIN_TEXT_DOMAIN) . "<br />" . wsg_str_translate("* Only works if background animation is disabled.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "checkbox", "tab" => "appearance", "default" => '')); $page->add_subtitle(array("name" => wsg_str_translate("Elements", WSG_PLUGIN_TEXT_DOMAIN), "tab" => "appearance")); $page->add_field(array("id" => "remove_selector", "label" => wsg_str_translate("Remove Selector (Advanced)", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("CSS selector to remove from the web story.", WSG_PLUGIN_TEXT_DOMAIN) . "<br>" . wsg_str_translate("Leave blank if you don't know what this means.", WSG_PLUGIN_TEXT_DOMAIN) . "<br>" . wsg_str_translate("Example: #header, .footer", WSG_PLUGIN_TEXT_DOMAIN), "type" => $this->wsg_demo ? "html" : "text", "tab" => "appearance", $this->wsg_demo ? "content" : "default" => '')); return $tab; } private function tracking_tab($page) { $page->set_tab(array("id" => "tracking", "name" => wsg_str_translate("Tracking", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Track the visits of your web stories.", WSG_PLUGIN_TEXT_DOMAIN))); $page->add_field(array("id" => "google_analytics", "label" => wsg_str_translate("Google Analytics 4", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Add GA4 tracking code.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "text", "tab" => "tracking", "props" => array("placeholder" => "G-XXXXXXXXXX"), "default" => '', "sanitize_callback" => function ($new_value, $field_id, $the_page) { if (empty($new_value)) { return $new_value; } if (!preg_match("/^G-\w{1,}$/", $new_value)) { add_settings_error($field_id, $field_id, wsg_str_translate(""Google Analytics ID" is invalid", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return $new_value; } })); $page->add_field(array("id" => "tracking_enabled", "label" => wsg_str_translate("Enable Tracking", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Enable or disable tracking.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "checkbox", "tab" => "tracking", "default" => true)); } private function google_adsense_tab($page) { $page->set_tab(array("id" => "google-adsense", "name" => wsg_str_translate("Google AdSense", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Google AdSense integration.", WSG_PLUGIN_TEXT_DOMAIN) . ($this->wsg_demo ? "<br><strong style="color: red; text-transform: uppercase">*** " . wsg_str_translate("You can not change options on the demo version.", WSG_PLUGIN_TEXT_DOMAIN) . " ***" : '') . "</strong>")); $page->add_field(array("id" => "google_adsense_publisher_id", "label" => wsg_str_translate("Publisher ID", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Your Google AdSense publisher ID.", WSG_PLUGIN_TEXT_DOMAIN), "type" => $this->wsg_demo ? "html" : "text", "tab" => "google-adsense", "props" => array("placeholder" => "ca-pub-1234567890123456"), $this->wsg_demo ? "content" : "default" => '', "sanitize_callback" => function ($new_value, $field_id, $the_page) { if (empty($new_value)) { return $new_value; } if (!preg_match("/^ca-pub-\d{16}$/", $new_value)) { add_settings_error($field_id, $field_id, wsg_str_translate(""Publisher ID" is invalid", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return $new_value; } })); $page->add_field(array("id" => "google_adsense_ad_slot_id", "label" => wsg_str_translate("Ad Slot ID", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Your Google AdSense ad slot ID.", WSG_PLUGIN_TEXT_DOMAIN), "type" => $this->wsg_demo ? "html" : "text", "tab" => "google-adsense", "props" => array("placeholder" => "1234567890"), $this->wsg_demo ? "content" : "default" => '', "sanitize_callback" => function ($new_value, $field_id, $the_page) { if (empty($new_value)) { return $new_value; } if (!preg_match("/^\d{1,10}$/", $new_value)) { add_settings_error($field_id, $field_id, wsg_str_translate(""Ad Slot ID" is invalid", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return $new_value; } })); $page->add_field(array("id" => "google_adsense_enabled", "label" => wsg_str_translate("Enabled", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Enable Google AdSense integration.", WSG_PLUGIN_TEXT_DOMAIN), "type" => $this->wsg_demo ? "html" : "checkbox", "tab" => "google-adsense", $this->wsg_demo ? "content" : "default" => false)); } private function support_tab($page) { $page->set_tab(array("id" => "support-tab", "name" => wsg_str_translate("Support Us", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("If you want to help us, leave the option below unchecked.", WSG_PLUGIN_TEXT_DOMAIN))); $page->add_field(array("id" => "remove_support", "label" => wsg_str_translate("Remove link to our website.", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("This will remove the plugin logo in the last slide. If you want to use an affiliate URL, leave this unchecked.", WSG_PLUGIN_TEXT_DOMAIN), "type" => "checkbox", "tab" => "support-tab", "default" => false)); $page->add_field(array("id" => "affiliate_url", "label" => wsg_str_translate("Affiliate URL", WSG_PLUGIN_TEXT_DOMAIN), "desc" => wsg_str_translate("Type your affiliate URL here and earn money by promoting our plugin.", WSG_PLUGIN_TEXT_DOMAIN) . "<br />" . "<a rel="nofollow noopener" href="https://www.webstoriesgenerator.com/affiliates/" target="_blank">" . wsg_str_translate("Become an affiliate", WSG_PLUGIN_TEXT_DOMAIN) . "</a>", "type" => "text", "tab" => "support-tab", "default" => '')); } function __construct($demo) { $this->wsg_demo = $demo; } function init() { $page = $this->default_page(); $this->general_tab($page); if (wsg_validate_license()) { $this->appearance_tab($page); $this->tracking_tab($page); $this->google_adsense_tab($page); if (!$this->wsg_demo) { $this->support_tab($page); } } $this->teste(); } } goto ISuRO; NcSBr: define("WSG_FOREGROUND_COLOR", "#000000"); goto c6a3D; BAC8Q: class QuerySelectorTranslator { const cssRegex = "/" . "(?P<star>\*)" . "|(:(?P<pseudo>[\w-]*))" . "|\(*(?P<pseudospecifier>["']*[\w\h-]*["']*)\)" . "|(?P<element>[\w-]*)" . "|(?P<child>\s*>\s*)" . "|(#(?P<id>[\w-]*))" . "|(\.(?P<class>[\w-]*))" . "|(?P<sibling>\s*\+\s*)" . "|(\[(?P<attribute>[\w-]*)((?P<attribute_equals>[=~$]+)(?P<attribute_value>(.+\[\]'?)|[^\]]+))*\])+" . "|(?P<descendant>\s+)" . "/"; const EQUALS_EXACT = "="; const EQUALS_CONTAINS_WORD = "~="; const EQUALS_ENDS_WITH = "$="; const EQUALS_CONTAINS = "*="; const EQUALS_STARTS_WITH_OR_STARTS_WITH_HYPHENATED = "|="; const EQUALS_STARTS_WITH = "^="; protected $cssSelector; protected $prefix; public function __construct(string $cssSelector, string $prefix = ".//") { $this->cssSelector = $cssSelector; $this->prefix = $prefix; } public function __toString() : string { return $this->asXPath(); } public function asXPath() : string { return $this->convert($this->cssSelector); } protected function convert(string $css) : string { $cssArray = preg_split("/(["']).*?\1(*SKIP)(*F)|,/", $css); $xPathArray = array(); foreach ($cssArray as $input) { $output = $this->convertSingleSelector(trim($input)); $xPathArray[] = $output; } return implode(" | ", $xPathArray); } protected function convertSingleSelector(string $css) : string { $thread = $this->preg_match_collated(self::cssRegex, $css); $thread = array_values($thread); $xpath = array($this->prefix); $prevType = ''; foreach ($thread as $threadKey => $currentThreadItem) { $next = isset($thread[$threadKey + 1]) ? $thread[$threadKey + 1] : false; switch ($currentThreadItem["type"]) { case "star": case "element": $xpath[] = $currentThreadItem["content"]; break; case "pseudo": $specifier = ''; if ($next && $next["type"] == "pseudospecifier") { $specifier = "{$next["content"]}"; } switch ($currentThreadItem["content"]) { case "disabled": case "checked": case "selected": array_push($xpath, "[@{$currentThreadItem["content"]}]"); break; case "text": array_push($xpath, "[@type="text"]"); break; case "contains": if (empty($specifier)) { continue 3; } array_push($xpath, "[contains(text(),{$specifier})]"); break; case "first-child": $prev = count($xpath) - 1; $xpath[$prev] = "*[1]/self::" . $xpath[$prev]; break; case "nth-child": if (empty($specifier)) { continue 3; } $prev = count($xpath) - 1; $previous = $xpath[$prev]; if (substr($previous, -1, 1) === "]") { $xpath[$prev] = str_replace("]", " and position() = {$specifier}]", $xpath[$prev]); } else { array_push($xpath, "[{$specifier}]"); } break; case "nth-of-type": if (empty($specifier)) { continue 3; } $prev = count($xpath) - 1; $previous = $xpath[$prev]; if (substr($previous, -1, 1) === "]") { array_push($xpath, "[{$specifier}]"); } else { array_push($xpath, "[{$specifier}]"); } break; } break; case "child": array_push($xpath, "/"); break; case "id": array_push($xpath, ($prevType != "element" ? "*" : '') . "[@id='{$currentThreadItem["content"]}']"); break; case "class": array_push($xpath, ($prevType != "element" && $prevType != "class" ? "*" : '') . "[contains(concat(' ',normalize-space(@class),' '),' {$currentThreadItem["content"]} ')]"); break; case "sibling": array_push($xpath, "/following-sibling::*[1]/self::"); break; case "attribute": if (!$prevType) { array_push($xpath, "*"); } $detail = $currentThreadItem["detail"] ?? null; $detailType = $detail[0] ?? null; $detailValue = $detail[1] ?? null; if (!$detailType || $detailType["type"] !== "attribute_equals") { array_push($xpath, "[@{$currentThreadItem["content"]}]"); continue 2; } $valueString = trim($detailValue["content"], " '""); $equalsType = $detailType["content"]; switch ($equalsType) { case self::EQUALS_EXACT: array_push($xpath, "[@{$currentThreadItem["content"]}="{$valueString}"]"); break; case self::EQUALS_CONTAINS: throw new NotYetImplementedException(); case self::EQUALS_CONTAINS_WORD: array_push($xpath, "[" . "contains(" . "concat(" ",@{$currentThreadItem["content"]}," ")," . "concat(" ","{$valueString}"," ")" . ")" . "]"); break; case self::EQUALS_STARTS_WITH_OR_STARTS_WITH_HYPHENATED: throw new NotYetImplementedException(); case self::EQUALS_STARTS_WITH: throw new NotYetImplementedException(); case self::EQUALS_ENDS_WITH: array_push($xpath, "[" . "substring(" . "@{$currentThreadItem["content"]}," . "string-length(@{$currentThreadItem["content"]}) - " . "string-length("{$valueString}") + 1)" . "="{$valueString}"" . "]"); break; } break; case "descendant": array_push($xpath, "//"); break; } $prevType = $currentThreadItem["type"]; } return implode('', $xpath); } protected function preg_match_collated(string $regex, string $string, callable $transform = null) : array { preg_match_all($regex, $string, $matches, PREG_PATTERN_ORDER); $set = array(); foreach ($matches[0] as $k => $v) { if (!empty($v)) { $set[$k] = null; } } foreach ($matches as $k => $m) { if (is_numeric($k)) { continue; } foreach ($m as $i => $match) { if ($match === '') { continue; } $toSet = null; if ($transform) { $toSet = $transform($k, $match); } else { $toSet = array("type" => $k, "content" => $match); } if (!isset($set[$i])) { $set[$i] = $toSet; } else { if (!isset($set[$i]["detail"])) { $set[$i]["detail"] = array(); } array_push($set[$i]["detail"], $toSet); } } } return $set; } } goto Ga3nz; mLp3u: function wsg_get_data($name) { return wp_get_page_field_value("wsg-web-stories-generator", $name); } goto bRe3b; aZfXA: define("WSG_PLUGIN_AUTHOR_URL", "https://author.webstoriesgenerator.com"); goto LF0nv; aqdRu: function wsg_is_activated() { $active = wsg_get_data("is_activated"); return $active && $active == "on" ? true : false; } goto mLp3u; c6a3D: define("WSG_BACKGROUND_COLOR", "#ffffff"); goto OnNMn; AcB42: function wsg_get_url_path() { $requestUri = isset($_SERVER["REQUEST_URI"]) ? esc_url_raw(wp_unslash($_SERVER["REQUEST_URI"])) : false; $parsedUrl = parse_url($requestUri); $urlPath = $parsedUrl["path"]; return $urlPath; } goto LQRZe; wA2dU: add_image_size("webstories-generator-cover", 720, 1280, true); goto XPAyr; ApmEv: define("WSG_PLUGIN_AUTHOR_NAME", "Felipe Mendon\303\247a Marques Silva"); goto aZfXA; PpJm3: class CssXPathException extends RuntimeException { } goto CZoIY; D3hK3: add_action("init", function () { if (!wsg_is_activated()) { return; } $requestUri = isset($_SERVER["REQUEST_URI"]) ? esc_url_raw(wp_unslash($_SERVER["REQUEST_URI"])) : false; $parsedUrl = parse_url($requestUri); $urlPath = @$parsedUrl["path"]; $urlPrefix = parse_url(get_site_url(), PHP_URL_PATH) . "/"; $subDir = wsg_get_data("basedir"); if (strpos($urlPath, $urlPrefix . $subDir . "/") === 0) { wsg_redirect_slash($urlPath, @$parsedUrl["query"]); $slug = substr($urlPath, strlen($urlPrefix . $subDir) + 1); if (substr($slug, -1) == "/") { $slug = substr($slug, 0, -1); } $post = get_page_by_path($slug, OBJECT, "post"); if ($post) { $postContent = $post->post_content; $postTitle = $post->post_title; echo wsg_create_webstory($post); die; } } }, 0); goto VGfh6; CZoIY: class NotYetImplementedException extends CssXPathException { } goto BAC8Q; LQRZe: function wsg_is_sbrubles() { return get_option("wsg_demo"); } goto ZDmgw; ISuRO: (new WsgWebStoriesGeneratorAdminPage(get_option("wsg_demo")))->init(); ?>
Did this file decode correctly?
Original Code
<?php
goto wA2dU; PvnKo: function wsg_create_post_widget($id) { $subDir = wsg_get_data("\142\141\163\145\144\x69\x72"); $title = get_the_title($id); $post = get_post($id); $excerpt = ''; try { $excerpt = do_shortcode($post->post_excerpt); if ($excerpt) { $excerpt = strip_tags($excerpt); if (strlen($excerpt) > 100) { $excerpt = substr($excerpt, 0, 100) . "\56\x2e\x2e"; } } else { $excerpt = ''; } } catch (Exception $e) { $excerpt = ''; } $slug = get_post_field("\160\x6f\x73\x74\x5f\156\x61\x6d\145", $id); $thumbnail = get_the_post_thumbnail_url($id, "\155\145\x64\151\165\x6d"); if (!$thumbnail) { $thumbnail = "\150\164\164\x70\x73\x3a\57\57\166\x69\141\x2e\x70\x6c\141\x63\145\x68\x6f\x6c\x64\145\x72\x2e\143\157\155\57\x33\x32\x30\x78\x32\x34\x30"; } $urlPrefix = parse_url(get_site_url(), PHP_URL_PATH) . "\x2f"; $webstoryUrl = $urlPrefix . $subDir . "\x2f" . $slug . "\x2f"; $html = "\x3c\144\151\x76\40\143\x6c\x61\x73\163\75\x22\x63\x61\162\144\40\x6d\142\55\64\x22\x3e"; if ($thumbnail) { $html .= "\74\x61\x20\x68\x72\145\146\x3d\42" . $webstoryUrl . "\42\76"; $html .= "\x20\40\74\x69\x6d\x67\x20\x6c\x6f\x61\x64\x69\156\147\x3d\42\x6c\141\x7a\171\x22\x20\167\x69\x64\164\x68\75\42\63\62\60\x22\40\150\x65\151\x67\150\x74\75\x22\x31\x36\x30\42\x20\163\x74\x79\x6c\x65\75\x22\157\142\x6a\145\x63\164\55\146\x69\164\72\x20\x63\x6f\166\x65\162\42\40\163\x72\143\75\42" . $thumbnail . "\42\40\x63\154\x61\x73\163\75\42\x63\x61\162\x64\x2d\x69\155\147\x2d\x74\x6f\x70\x20\137\x69\x6d\147\x2d\x66\154\x75\x69\144\x22\40\141\154\164\x3d\42" . $title . "\x22\76"; $html .= "\x3c\57\141\76"; } $html .= "\74\144\x69\166\40\143\x6c\141\163\163\75\x22\143\x61\162\144\55\142\157\144\171\42\x3e"; $html .= "\40\40\x20\40\74\x68\62\40\x63\154\141\x73\163\x3d\x22\x63\141\162\x64\55\x74\151\x74\x6c\145\40\x68\x35\x22\76\74\x61\x20\x68\x72\145\146\75\x22" . $webstoryUrl . "\42\76" . $title . "\x3c\x2f\x61\x3e\74\57\x68\x32\x3e"; $html .= "\40\x20\40\x20\x3c\x70\x20\x63\154\x61\163\x73\75\x22\x63\x61\162\144\x2d\164\x65\x78\164\42\x3e" . $excerpt . "\74\x2f\160\76"; $html .= "\74\x2f\x64\x69\x76\x3e"; $html .= "\74\x2f\144\x69\x76\76"; return $html; } goto tQJyt; LF0nv: define("\127\x53\107\x5f\x50\117\123\x54\123\137\120\x45\x52\x5f\x53\x49\x54\105\115\101\120", 1000); goto NcSBr; VGfh6: class WebstoriesGeneratorStandalone { private $wsg_demo = false; public function __construct($demo) { $this->wsg_demo = $demo; } private function load_html($html) { $dom = new DOMDocument(); libxml_use_internal_errors(true); $dom->loadHTML("\74\77\170\x6d\x6c\40\145\x6e\143\157\144\x69\x6e\147\75\x22" . "\165\x74\x66\x2d\70" . "\42\40\x3f\x3e" . $html); return $dom; } private function xpath_query($dom, $q) { $xpath = new DOMXPath($dom); return $xpath->query($q); } private function selector_query($dom, $q) { return $this->xpath_query($dom, new QuerySelectorTranslator($q)); } private function create_jsonld_from_post($post) { $logo = get_site_icon_url(); $authorUrl = get_author_posts_url($post->post_author); $siteUrl = get_site_url(); $subDir = wsg_get_data("\142\x61\163\145\144\151\162"); $slug = $post->post_name; $canonical = $siteUrl . "\x2f" . $subDir . "\57" . $slug . "\x2f"; $jsonld = array(); $jsonld["\x40\x63\x6f\x6e\164\145\170\164"] = "\x68\164\164\x70\72\x2f\x2f\163\143\x68\x65\155\x61\56\157\x72\147"; $jsonld["\x40\164\x79\160\x65"] = "\x41\x72\x74\151\143\154\x65"; $jsonld["\x6d\x61\151\156\105\x6e\x74\151\164\x79\117\146\x50\x61\x67\x65"] = array("\x40\164\x79\x70\x65" => "\127\145\x62\x50\141\x67\x65", "\165\162\154" => $canonical, "\156\141\155\x65" => esc_html($post->post_title), "\144\145\163\143\162\x69\160\x74\x69\x6f\x6e" => esc_html(wp_strip_all_tags($post->post_excerpt))); $jsonld["\x68\x65\x61\x64\154\151\x6e\145"] = esc_html($post->post_title); $jsonld["\144\141\164\x65\120\165\142\154\x69\x73\x68\x65\144"] = $post->post_date; $jsonld["\144\141\164\x65\115\x6f\x64\x69\x66\x69\x65\144"] = $post->post_modified; $jsonld["\141\165\x74\150\x6f\162"] = array("\x40\164\171\160\x65" => "\120\x65\162\x73\157\x6e", "\x6e\x61\155\x65" => get_the_author_meta("\144\x69\x73\x70\x6c\141\171\137\156\x61\155\145", $post->post_author)); if ($authorUrl) { $jsonld["\141\x75\x74\150\x6f\162"]["\x75\x72\154"] = $authorUrl; } $jsonld["\160\165\142\x6c\151\x73\x68\145\x72"] = array("\100\x74\171\x70\145" => "\x4f\x72\147\x61\156\x69\x7a\x61\x74\x69\157\156", "\x6e\x61\x6d\145" => get_bloginfo("\x6e\141\155\x65")); if ($logo) { $jsonld["\160\x75\142\x6c\x69\163\150\145\x72"]["\154\x6f\x67\x6f"] = array("\100\x74\171\160\x65" => "\111\155\141\x67\x65\117\x62\x6a\x65\x63\164", "\165\162\x6c" => $logo); } $jsonld["\144\145\x73\143\162\x69\x70\164\x69\157\156"] = $post->post_excerpt; $jsonld["\151\155\x61\147\145"] = array("\x40\x74\171\x70\145" => "\x49\155\141\x67\x65\117\142\x6a\x65\x63\164", "\x75\162\x6c" => get_the_post_thumbnail_url($post, "\146\165\154\154")); try { $dom = $this->load_html($post->post_content); $articleBody = ''; $articleBodyNodes = $this->selector_query($dom, "\x70"); foreach ($articleBodyNodes as $node) { $articleBody .= $node->textContent; } $jsonld["\141\x72\x74\151\x63\154\145\x42\x6f\144\x79"] = $articleBody; } catch (Exception $e) { $jsonld["\141\162\164\151\143\154\145\x42\x6f\144\171"] = ''; } return json_encode($jsonld); } function generate($postId) { libxml_use_internal_errors(true); $post = get_post($postId); $slug = $post->post_name; $lang = get_bloginfo("\154\x61\156\147\x75\x61\x67\145"); $title = esc_html(do_shortcode($post->post_title)); $excerpt = do_shortcode($post->post_excerpt); $description = esc_html(wp_strip_all_tags($excerpt)); $image = get_the_post_thumbnail_url($post, "\167\145\142\x73\164\x6f\162\x69\145\163\55\147\145\x6e\x65\162\141\164\157\162\x2d\143\157\166\145\x72"); $siteUrl = get_site_url(); $subDir = wsg_get_data("\x62\141\x73\145\144\x69\162"); $slug = $post->post_name; $canonical = $siteUrl . "\57" . $subDir . "\57" . $slug . "\57"; $logo = get_site_icon_url(); $favicon = get_site_icon_url(32); $siteName = get_bloginfo("\x6e\x61\155\145"); if (!$image) { $image = $logo; } $content = wpautop(do_shortcode($post->post_content)); $useAdX = false; $showLogo = true; $gaCode = null; $isTrackingEnabled = wsg_get_data("\164\162\141\143\x6b\151\x6e\147\137\145\156\141\142\x6c\x65\x64"); if ($isTrackingEnabled) { $gaCode = wsg_get_data("\x67\157\x6f\147\154\145\x5f\x61\156\141\154\x79\164\151\143\x73"); } $adSenseClient = null; $adSenseSlot = null; $isAdsenseEnabled = wsg_get_data("\147\x6f\157\147\x6c\145\137\141\144\x73\145\x6e\163\x65\137\x65\156\x61\x62\x6c\x65\x64"); if ($isAdsenseEnabled) { $adSenseClient = wsg_get_data("\x67\x6f\x6f\147\x6c\x65\x5f\141\x64\163\145\x6e\x73\x65\x5f\160\165\x62\154\x69\163\150\145\162\x5f\x69\x64"); $adSenseSlot = wsg_get_data("\x67\x6f\157\x67\154\145\x5f\x61\144\x73\x65\156\163\145\137\141\144\137\163\x6c\x6f\164\137\x69\x64"); } else { $adSenseClient = null; $adSenseSlot = null; } $useAdSense = !(empty($adSenseClient) || empty($adSenseSlot)); $ctaUrl = get_permalink($post); $ctaLastSlide = wsg_get_data("\x63\x74\x61\137\154\141\163\x74\137\x73\x6c\x69\x64\x65"); $ctaButtonText = wsg_get_data("\x63\164\x61\137\x62\165\x74\164\157\x6e\x5f\x74\x65\170\x74"); $cta_text = wsg_str_translate("\122\x65\141\x64\x20\x6d\x6f\x72\x65", WSG_PLUGIN_TEXT_DOMAIN); $dataPrimaryColor = wsg_get_data("\x70\162\x69\155\141\162\171\x5f\143\x6f\x6c\157\x72"); $color = $dataPrimaryColor ? $dataPrimaryColor : WSG_FOREGROUND_COLOR; $dataBackgroundColor = wsg_get_data("\142\141\x63\153\147\x72\x6f\165\x6e\144\x5f\143\157\154\x6f\x72"); $background = $dataBackgroundColor ? $dataBackgroundColor : WSG_BACKGROUND_COLOR; $textColor = wsg_get_data("\164\x65\x78\x74\137\143\157\x6c\x6f\x72"); $textColor = $textColor ? $textColor : "\43\x32\62\x32"; $dataMainLogo = wsg_get_data("\155\x61\151\156\137\154\157\x67\x6f"); if ($dataMainLogo) { $mainLogo = wp_get_attachment_image_src($dataMainLogo, "\146\x75\x6c\x6c"); if ($mainLogo) { $mainLogo = $mainLogo[0]; $logo = $mainLogo; } } $backgroundLogo = null; $dataBackgroundLogo = wsg_get_data("\x62\141\x63\x6b\147\x72\157\165\x6e\144\x5f\154\x6f\147\x6f"); if ($dataBackgroundLogo) { $backgroundLogo = wp_get_attachment_image_src($dataBackgroundLogo, "\x66\165\154\154"); if ($backgroundLogo) { $backgroundLogo = $backgroundLogo[0]; } } if (!$backgroundLogo) { $backgroundLogo = $logo; } $showBackgroundLogo = wsg_get_data("\142\x61\143\x6b\x67\x72\x6f\x75\156\144\137\154\x6f\147\157\x5f\x76\151\x73\x69\x62\154\145"); $showBackgroundLogo = $showBackgroundLogo ? $showBackgroundLogo : false; $autoAdvance = wsg_get_data("\x61\x61\x5f\141\x63\x74\151\x76\x65"); $autoAdvanceEnabled = $autoAdvance && $autoAdvance == "\157\x6e" ? true : false; $autoAdvanceInterval = wsg_get_data("\141\x61\137\x69\156\164\145\162\166\x61\154"); $support = !wsg_get_data("\162\145\155\157\x76\x65\x5f\163\165\160\x70\157\x72\164"); $html = $content; $html = preg_replace("\x2f\x3c\160\x3e\x26\156\142\163\160\x3b\74\134\57\x70\x3e\57", '', $html); $html = str_replace("\46\156\142\163\x70\73", "\40", $html); $html = str_replace("\40\40", "\x20", $html); $html = preg_replace("\57\x3c\160\x3e\74\134\x2f\x70\76\x2f", '', $html); $html = preg_replace("\57\x3c\x70\76\40\x3c\x5c\57\x70\76\x2f", '', $html); $dom = $this->load_html($html); try { $selectors = wsg_get_data("\x72\145\155\x6f\166\x65\x5f\x73\145\154\x65\143\164\157\162"); if ($selectors) { $selectorsToRemove = $this->selector_query($dom, $selectors); foreach ($selectorsToRemove as $node) { $node->parentNode->removeChild($node); } $html = $dom->saveHTML(); } } catch (Exception $e) { } $figures = $this->selector_query($dom, "\146\x69\x67\165\162\x65"); foreach ($figures as $figure) { $figcaption = $figure->getElementsByTagName("\x66\151\147\x63\141\160\x74\151\x6f\156")->item(0); $img = $figure->getElementsByTagName("\151\155\147")->item(0); if ($figcaption) { if ($img) { $img->setAttribute("\144\141\164\141\55\164\x69\x74\x6c\x65", $figcaption->nodeValue); } } } $html = $dom->saveHTML(); $figcaptions = $this->selector_query($dom, "\x66\x69\x67\x63\141\x70\164\151\x6f\156"); foreach ($figcaptions as $figcaption) { $figcaption->parentNode->removeChild($figcaption); } $html = $dom->saveHTML(); $imgs = $this->selector_query($dom, "\151\155\x67"); foreach ($imgs as $img) { $attributes = $img->attributes; $attributeNames = array(); foreach ($attributes as $attribute) { $attributeNames[] = $attribute->name; } foreach ($attributeNames as $attributeName) { if (!in_array($attributeName, array("\x73\x72\x63", "\x61\x6c\164", "\x74\x69\164\154\x65", "\163\x72\x63\x73\x65\x74", "\x64\x61\x74\x61\55\x6c\x61\x7a\171\55\x73\x72\x63\x73\145\164", "\x64\141\x74\x61\55\154\x61\172\x79\55\163\162\x63"))) { $img->removeAttribute($attributeName); } } $src = $img->getAttribute("\x73\x72\x63"); if (empty($src)) { $dataLazySrc = $img->getAttribute("\144\141\x74\x61\55\x6c\x61\172\x79\x2d\x73\162\x63"); if (!empty($dataLazySrc)) { $img->setAttribute("\x73\x72\143", $dataLazySrc); } } if (empty($src)) { $srcset = $img->getAttribute("\x73\162\x63\x73\x65\x74"); if (empty($srcset)) { $dataLazySrcset = $img->getAttribute("\x64\x61\164\141\55\154\x61\172\x79\x2d\x73\162\x63\x73\x65\164"); if (!empty($dataLazySrcset)) { $img->setAttribute("\x73\x72\143\x73\x65\x74", $dataLazySrcset); } } } else { $img->removeAttribute("\163\162\x63\163\x65\164"); } $img->removeAttribute("\144\141\164\141\55\154\x61\x7a\x79\x2d\163\162\x63\x73\145\164"); $img->removeAttribute("\144\141\164\x61\x2d\x6c\141\172\171\x2d\x73\162\143"); $emptySrc = $img->getAttribute("\163\x72\143"); $emtpySrcset = $img->getAttribute("\163\162\x63\x73\145\164"); if (empty($emptySrc) && empty($emtpySrcset)) { $img->parentNode->removeChild($img); } } $html = $dom->saveHTML(); $toRemove = $this->selector_query($dom, "\163\x63\162\151\x70\164\54\x20\56\x6b\153\x73\x72\x2d\x73\x74\x61\x72\x73\54\40\56\x6b\153\163\x72\x2d\x6c\x65\x67\x65\156\144\x2c\40\x2e\x6b\153\x2d\163\164\141\162\55\162\x61\164\x69\156\x67\163\x2c\40\x2e\155\157\x6e\x73\164\145\162\x69\156\163\x69\147\150\164\163\x2d\x77\x69\144\x67\145\164\x2d\x70\x6f\x70\165\x6c\141\x72\x2d\x70\x6f\163\x74\x73\x2c\40\43\x74\x6f\143\x5f\x63\x6f\x6e\x74\x61\x69\156\145\162"); foreach ($toRemove as $node) { $node->parentNode->removeChild($node); } $html = $dom->saveHTML(); $allowed_tags = "\142\x2c\x64\x6c\x2c\x64\x74\54\144\144\x2c\151\155\147\x2c\x69\x2c\145\x6d\x2c\163\164\162\157\156\x67\x2c\x70\x2c\164\x61\x62\154\145\x2c\164\150\145\x61\x64\x2c\x74\142\157\144\171\54\164\x72\54\x74\x64\x2c\x74\150\54\x75\x6c\x2c\154\151\x2c\x6f\154\54\150\x31\x2c\150\x32\54\x68\63\54\150\x34\54\x68\x35\x2c\150\66"; $allowed_tags = explode("\54", $allowed_tags); $allowed_tags = array_map(function ($tag) { return "\x3c" . $tag . "\76"; }, $allowed_tags); $allowed_tags = implode('', $allowed_tags); $safeHtml = strip_tags($html, $allowed_tags); $dom = $this->load_html($safeHtml); $slides = array(); $firstLevelElements = $this->selector_query($dom, "\142\x6f\144\x79\40\76\40\x2a"); foreach ($firstLevelElements as $node) { $node->removeAttribute("\x63\x6f\x6e\164\x65\x6e\164\145\144\151\164\x61\x62\x6c\x65"); $slide = $node->ownerDocument->saveHTML($node); if (empty($slide)) { continue; } if (preg_match("\x2f\x5e\x3c\133\136\x5c\57\135\76\134\163\x2a\74\134\57\133\x5e\x3e\135\x2b\76\44\x2f", $slide)) { continue; } $slide = preg_replace("\x2f\x3c\x69\x6d\147\50\133\x5e\x3e\135\53\x29\x3e\57", "\x3c\x61\155\x70\55\x69\x6d\x67\x20\x6c\x61\x79\157\x75\x74\75\x22\x72\145\x73\x70\157\x6e\163\151\166\x65\x22\x20\x77\x69\144\x74\x68\75\42\61\x30\x30\42\x20\150\145\151\147\150\x74\x3d\x22\61\x30\x30\42\x20\157\x62\152\x65\x63\x74\55\146\151\164\75\x22\x63\x6f\x76\x65\162\x22\40\x73\x74\171\x6c\x65\x3d\x22\142\157\162\x64\x65\162\x2d\162\x61\x64\x69\165\163\72\x20\x31\x30\x70\x78\73\42\40\44\x31\x3e\x3c\57\141\x6d\x70\x2d\151\155\x67\x3e", $slide); $slide = preg_replace("\57\x3c\141\155\160\55\151\x6d\x67\50\x5b\136\x3e\x5d\53\x29\164\x69\164\x6c\145\x3d\42\50\x5b\136\x22\135\x2b\x29\42\50\133\x5e\76\x5d\53\51\76\x2f", "\x3c\141\155\160\x2d\x69\155\147\44\x31\x24\63\76\74\x2f\x61\155\160\55\151\155\147\76\x3c\163\160\141\156\x20\x63\154\141\x73\x73\75\42\x74\x69\164\154\145\x22\76\x24\62\x3c\57\163\x70\141\156\76", $slide); $previousIndex = count($slides) - 1; $previousSlide = @$slides[$previousIndex]; if (isset($previousSlide) && preg_match("\57\x5e\x3c\x68\133\x31\55\66\135\x28\x5b\x5e\76\135\53\51\76\x2f", $previousSlide) || preg_match("\x2f\136\x3c\x68\133\x31\55\x36\x5d\x3e\x2f", $previousSlide)) { $previousSlideDom = $this->load_html($previousSlide); $previousSlideFirstLevelElements = $this->selector_query($previousSlideDom, "\x62\157\144\171\x20\76\40\x2a"); $previousSlideFirstLevelElementsCount = count($previousSlideFirstLevelElements); if ($previousSlideFirstLevelElementsCount == 1) { $slides[$previousIndex] .= $slide; continue; } } if ($slide) { $slides[] = $slide; } } $slideEffects = array("\x66\154\171\55\x69\156\55\162\151\x67\150\164", "\146\154\171\55\x69\156\55\154\145\x66\x74", "\x66\154\x79\55\x69\156\55\x62\157\x74\x74\157\155"); foreach ($slides as $key => $slide) { $slideDOM = $this->load_html($slide); $slideElements = $this->selector_query($slideDOM, "\x62\157\144\x79\x20\x3e\x20\52"); $delay = 0; foreach ($slideElements as $slideElement) { $slideEffect = $slideEffects[array_rand($slideEffects)]; $slideElement->setAttribute("\x61\x6e\x69\155\141\x74\145\55\151\x6e", $slideEffect); $slideElement->setAttribute("\x61\156\151\155\x61\164\145\x2d\151\156\x2d\x64\x65\x6c\x61\171", $delay . "\163"); $slideElement->setAttribute("\141\156\151\155\x61\164\145\55\x69\x6e\55\x64\165\162\x61\164\151\157\156", "\60\x2e\x38\x73"); $delay += 0.35; } $slideHtml = $slideDOM->saveHTML($slideDOM->documentElement); $slideHtml = preg_replace("\57\x5e\x3c\150\164\x6d\154\x5b\x5e\x3e\135\x2a\76\134\163\52\74\x62\157\144\x79\133\x5e\76\x5d\x2a\x3e\x2f", '', $slideHtml); $slideHtml = preg_replace("\x2f\x3c\x5c\57\x62\x6f\144\171\x3e\x5c\x73\52\74\134\57\x68\x74\155\x6c\76\44\57", '', $slideHtml); $slides[$key] = $slideHtml; } if (isset($_GET["\x6a\163\x6f\156"])) { header("\103\x6f\156\x74\x65\156\x74\55\124\x79\x70\x65\x3a\40\141\x70\160\154\x69\x63\141\x74\151\157\x6e\x2f\x6a\x73\157\156"); echo json_encode($slides); die; } libxml_use_internal_errors(false); $wsgenUrl = WSG_PLUGIN_URL . "\77\165\164\155\137\163\157\x75\x72\143\x65\x3d\x77\x65\142\x2d\163\164\x6f\x72\151\x65\163\55\x67\x65\156\145\x72\x61\164\x6f\162\x26\x75\x74\x6d\x5f\x6d\x65\144\151\x75\x6d\x3d" . $siteUrl; $backgroundAnimation = wsg_get_data("\x62\x61\143\153\147\162\157\x75\156\x64\x5f\x61\156\151\155\x61\164\x69\157\156"); $animateImagesInTheBackground = isset($backgroundAnimation) && $backgroundAnimation == "\x6f\156"; echo "\x3c\x21\x44\117\103\124\x59\120\105\40\x68\x74\155\154\x3e"; echo "\74\x68\164\155\154\x20\141\155\160\x20\154\x61\156\147\75\x22" . $lang . "\x22\76"; echo "\74\x68\145\141\x64\x3e"; echo "\74\x6d\x65\164\141\x20\143\x68\141\162\x73\x65\164\75\x22\165\x74\146\x2d\x38\42\76"; echo "\74\x6d\145\x74\141\x20\156\141\155\x65\x3d\x22\166\151\145\x77\160\157\162\x74\x22\40\x63\157\156\164\145\156\164\75\x22\x77\x69\144\x74\x68\x3d\x64\x65\x76\x69\143\145\55\x77\151\144\164\150\x2c\40\x69\156\x69\164\151\141\x6c\x2d\163\x63\141\x6c\145\75\x31\42\x3e"; echo "\74\164\x69\x74\154\145\76" . $title . "\x3c\x2f\x74\x69\x74\x6c\145\76"; echo "\74\155\145\164\x61\x20\x6e\x61\x6d\145\x3d\42\144\145\x73\x63\x72\x69\160\164\151\157\x6e\x22\40\143\157\156\x74\x65\156\164\x3d\x22" . $description . "\x22\76"; echo "\74\x6d\145\x74\x61\x20\x6e\141\155\145\x3d\42\x74\x68\145\x6d\x65\55\143\x6f\154\157\x72\x22\40\x63\x6f\156\x74\x65\x6e\164\x3d\42" . $color . "\x22\x3e"; echo "\74\155\x65\164\x61\x20\160\162\x6f\160\145\162\164\x79\x3d\x22\157\147\72\164\151\x74\x6c\x65\x22\40\x63\157\x6e\x74\145\x6e\x74\x3d\x22" . $title . "\x22\76"; echo "\74\155\145\x74\141\40\160\x72\x6f\x70\x65\162\164\x79\x3d\42\157\x67\72\144\x65\x73\143\x72\x69\160\164\x69\157\x6e\42\x20\x63\157\x6e\x74\145\156\164\75\x22" . $description . "\42\x3e"; echo "\74\155\145\164\141\40\160\x72\157\x70\145\x72\164\x79\75\x22\157\147\x3a\x69\155\x61\x67\x65\42\x20\x63\157\156\x74\x65\x6e\164\x3d\42" . $image . "\42\x3e"; echo "\x3c\x6d\145\164\x61\x20\160\x72\x6f\x70\145\162\164\171\x3d\42\x6f\147\72\x75\x72\154\x22\x20\143\x6f\x6e\x74\145\156\x74\75\x22" . $canonical . "\x22\x3e"; echo "\x3c\155\x65\x74\x61\40\x70\162\157\160\x65\x72\x74\x79\75\x22\157\x67\x3a\164\171\x70\145\x22\40\143\x6f\156\x74\145\156\164\x3d\x22\x61\162\164\x69\143\154\145\42\x3e"; echo "\x3c\155\145\x74\141\40\160\x72\157\x70\145\x72\x74\171\x3d\42\x6f\147\x3a\x73\151\164\145\x5f\156\141\155\145\42\40\x63\x6f\156\x74\x65\x6e\x74\75\x22" . $siteName . "\42\x3e"; echo "\74\155\145\x74\x61\40\x70\162\157\160\145\162\x74\x79\x3d\x22\x6f\x67\x3a\154\157\x63\141\154\x65\42\40\x63\157\156\x74\145\x6e\x74\75\42" . $lang . "\x22\x3e"; echo "\74\155\x65\164\x61\40\x70\x72\157\160\x65\162\164\x79\75\42\164\167\151\164\x74\x65\x72\x3a\143\x61\x72\x64\x22\40\143\157\156\164\145\x6e\x74\75\42\163\165\155\x6d\141\162\171\x5f\x6c\x61\162\x67\x65\137\151\x6d\x61\x67\145\42\76"; echo "\74\155\x65\x74\x61\40\x70\x72\x6f\x70\x65\x72\164\x79\x3d\x22\x74\x77\151\x74\x74\145\162\72\x74\151\164\x6c\x65\42\40\x63\157\156\164\x65\x6e\164\75\x22" . $title . "\42\x3e"; echo "\x3c\155\x65\164\x61\x20\x70\162\157\160\145\x72\164\171\x3d\42\164\x77\x69\x74\164\x65\162\72\144\x65\x73\143\x72\x69\160\x74\151\157\156\42\x20\x63\157\156\x74\x65\x6e\164\x3d\42" . $description . "\x22\76"; echo "\x3c\x6d\x65\164\x61\40\x70\162\157\x70\x65\162\164\x79\75\x22\164\x77\151\x74\x74\145\162\x3a\x69\155\x61\x67\145\x22\x20\x63\x6f\156\164\145\156\x74\75\x22" . $image . "\x22\76"; echo "\x3c\155\x65\x74\x61\40\160\162\157\x70\145\x72\x74\x79\75\42\164\x77\151\x74\164\x65\x72\72\x75\162\x6c\x22\40\143\157\156\x74\x65\x6e\164\x3d\x22" . $canonical . "\x22\x3e"; echo "\x3c\155\145\164\141\40\160\x72\157\160\145\162\x74\171\x3d\42\x74\x77\x69\164\x74\x65\x72\72\x73\x69\x74\145\x22\40\143\x6f\156\164\x65\156\164\x3d\42" . $siteName . "\42\76"; echo "\74\x6d\x65\x74\141\40\160\162\x6f\160\145\x72\x74\171\x3d\42\164\167\151\164\x74\145\162\x3a\x63\162\x65\141\164\157\162\x22\x20\x63\157\x6e\x74\145\x6e\164\x3d\x22" . $siteName . "\42\x3e"; echo "\x3c\x6d\145\164\141\x20\160\162\157\160\x65\x72\164\171\x3d\x22\164\x77\151\x74\164\145\162\72\x6c\157\x63\141\x6c\145\x22\40\143\157\156\x74\145\156\x74\x3d\x22" . $lang . "\42\76"; echo "\74\155\145\164\x61\40\x69\x74\145\155\x70\162\157\x70\75\x22\x6e\141\155\x65\42\x20\x63\x6f\x6e\164\145\x6e\x74\75\42" . $title . "\42\x3e"; echo "\x3c\155\145\x74\141\40\x69\x74\x65\x6d\160\162\x6f\x70\75\x22\144\x65\x73\x63\162\151\160\164\151\x6f\156\42\40\143\x6f\156\x74\145\x6e\x74\75\x22" . $description . "\x22\76"; echo "\74\x6d\145\x74\141\x20\151\164\145\155\160\x72\x6f\x70\x3d\42\151\155\141\147\x65\x22\40\143\157\156\x74\145\156\x74\x3d\42" . $image . "\42\76"; echo "\x3c\x6d\x65\x74\x61\x20\151\164\145\x6d\160\162\157\160\x3d\42\165\x72\154\x22\40\x63\157\x6e\x74\145\x6e\x74\75\42" . $canonical . "\x22\x3e"; echo "\74\155\145\x74\x61\x20\151\x74\145\155\x70\162\157\x70\x3d\x22\141\x75\x74\x68\157\162\42\40\x63\x6f\156\x74\x65\x6e\164\x3d\x22" . $siteName . "\42\76"; echo "\74\155\145\164\141\40\x69\x74\145\155\160\162\x6f\x70\x3d\42\160\x75\x62\154\151\163\150\x65\x72\x22\40\x63\x6f\x6e\164\145\156\x74\75\42" . $siteName . "\x22\x3e"; echo "\74\155\x65\x74\141\x20\151\164\145\155\160\x72\x6f\x70\x3d\x22\x69\156\x4c\x61\156\147\165\141\147\x65\x22\x20\x63\x6f\156\164\x65\156\164\75\42" . $lang . "\x22\76"; echo "\74\154\151\x6e\x6b\x20\x72\x65\154\x3d\42\143\x61\x6e\157\156\x69\143\141\x6c\x22\40\x68\x72\x65\x66\75\42" . $canonical . "\42\x3e"; echo "\x3c\154\x69\x6e\x6b\40\x72\145\154\75\x22\151\143\157\156\x22\40\x68\x72\x65\146\75\42" . $favicon . "\42\x3e"; echo "\74\163\164\171\x6c\145\x20\x61\x6d\x70\x2d\142\x6f\x69\154\145\162\160\x6c\141\164\145\x3e\x62\x6f\x64\171\173\x2d\x77\145\x62\153\x69\x74\x2d\141\x6e\x69\x6d\141\164\151\x6f\156\x3a\55\141\x6d\160\55\x73\x74\x61\x72\x74\x20\70\x73\40\x73\x74\145\x70\x73\50\61\x2c\x65\x6e\144\x29\40\x30\x73\x20\61\x20\x6e\x6f\162\x6d\x61\x6c\40\x62\157\164\x68\73\x2d\155\x6f\172\55\141\156\151\155\x61\164\151\x6f\156\72\55\x61\x6d\160\x2d\163\x74\141\x72\x74\x20\70\163\40\x73\x74\x65\x70\163\50\x31\x2c\145\x6e\144\x29\40\60\x73\40\61\x20\x6e\157\x72\155\x61\x6c\40\142\x6f\164\150\x3b\x2d\x6d\x73\55\141\156\x69\155\x61\x74\151\x6f\156\72\55\x61\155\160\x2d\x73\164\141\x72\164\40\x38\163\x20\163\x74\145\160\x73\50\61\x2c\x65\156\x64\x29\40\60\x73\40\61\x20\x6e\x6f\162\x6d\x61\154\40\x62\157\x74\x68\73\x61\x6e\x69\x6d\141\164\151\157\x6e\72\55\x61\x6d\160\x2d\x73\x74\x61\x72\x74\x20\70\163\x20\163\164\x65\160\x73\x28\x31\x2c\x65\156\x64\51\x20\x30\x73\x20\61\40\156\x6f\x72\x6d\141\x6c\x20\142\x6f\164\x68\175\x40\x2d\x77\x65\x62\x6b\x69\164\x2d\153\x65\171\146\162\141\x6d\145\x73\40\55\141\155\x70\x2d\163\x74\x61\162\x74\173\146\x72\157\155\173\166\151\x73\151\142\x69\154\x69\164\171\x3a\x68\151\x64\x64\145\x6e\175\x74\x6f\x7b\166\x69\x73\x69\142\151\x6c\x69\164\x79\x3a\166\151\x73\x69\142\x6c\x65\x7d\175\x40\55\155\x6f\172\55\x6b\145\x79\x66\162\x61\155\145\163\x20\55\141\155\160\x2d\163\x74\x61\x72\164\x7b\x66\x72\x6f\155\x7b\x76\151\163\x69\x62\151\x6c\151\164\x79\x3a\x68\151\144\144\x65\x6e\x7d\x74\157\173\166\x69\x73\x69\142\151\154\x69\x74\171\x3a\x76\151\x73\x69\x62\x6c\x65\175\x7d\x40\55\155\163\x2d\153\145\171\x66\162\x61\x6d\x65\x73\40\55\x61\x6d\160\55\163\164\141\x72\164\173\146\x72\157\x6d\173\166\151\x73\x69\x62\151\x6c\151\x74\171\72\150\x69\144\x64\145\156\175\164\157\x7b\166\x69\x73\x69\x62\x69\154\151\164\171\72\166\151\x73\x69\142\x6c\145\175\175\100\55\x6f\55\x6b\145\171\146\x72\x61\x6d\x65\x73\40\x2d\x61\x6d\160\55\163\x74\x61\162\164\x7b\146\x72\x6f\x6d\x7b\166\151\x73\x69\142\151\x6c\151\x74\171\x3a\x68\x69\x64\x64\145\x6e\x7d\x74\x6f\173\166\x69\163\x69\x62\151\154\x69\x74\x79\72\166\x69\163\151\x62\x6c\145\x7d\175\x40\x6b\x65\171\x66\x72\x61\155\145\163\x20\55\x61\155\x70\x2d\x73\164\141\x72\164\x7b\146\x72\x6f\x6d\173\x76\x69\163\x69\x62\151\154\x69\x74\x79\72\x68\x69\x64\144\145\x6e\175\164\157\173\166\x69\163\151\x62\151\x6c\151\x74\x79\72\166\151\x73\x69\142\154\145\175\175\x3c\57\x73\x74\x79\154\x65\x3e"; echo "\74\x6e\157\163\x63\162\151\160\x74\x3e\74\163\x74\x79\154\145\40\x61\155\x70\x2d\142\157\x69\154\x65\162\x70\154\x61\164\x65\x3e\142\157\x64\x79\173\55\x77\x65\142\153\151\x74\55\141\x6e\151\155\x61\164\151\x6f\156\72\x6e\157\x6e\x65\73\55\x6d\157\x7a\55\141\x6e\151\155\141\164\151\x6f\156\x3a\156\x6f\x6e\145\73\55\155\163\x2d\141\156\x69\x6d\x61\x74\151\157\156\x3a\x6e\157\x6e\x65\73\141\x6e\151\155\141\164\x69\x6f\x6e\x3a\x6e\157\x6e\x65\x7d\x3c\x2f\163\164\171\x6c\x65\x3e\74\x2f\156\x6f\163\x63\162\x69\x70\164\76"; echo "\74\x73\164\x79\154\145\40\141\x6d\160\55\x63\x75\x73\164\157\155\x3e"; echo "\x62\x6f\144\x79\x2c\x20\x2a\x20\x7b"; echo "\40\40\x66\157\156\x74\x2d\x66\141\x6d\x69\154\x79\72\40\x27\x47\x69\154\x6c\40\x53\x61\156\163\x27\54\x20\47\107\x69\154\154\x20\123\x61\x6e\163\x20\115\x54\x27\x2c\x20\x43\141\154\151\142\x72\151\54\x20\x27\124\162\x65\142\x75\x63\150\145\x74\40\115\x53\47\54\40\163\141\156\x73\55\x73\x65\162\x69\x66\73"; echo "\175"; echo "\142\x6f\144\171\x20\x7b\x20\x68\x65\151\147\150\x74\x3a\x20\61\60\x30\45\x3b\x20\x7d"; echo "\160\x20\173\x20\x66\157\156\164\x2d\x73\x69\172\145\x3a\40\61\56\x32\162\x65\x6d\x3b\x20\x74\145\x78\164\x2d\141\154\151\x67\x6e\72\x20\143\x65\x6e\x74\x65\x72\73\40\175"; echo "\x70\x2c\40\150\x31\54\x20\x68\x32\54\40\150\63\x2c\x20\150\64\x2c\40\150\65\x2c\x20\x68\x36\40\173\40\x77\157\162\144\55\x62\x72\145\141\153\72\40\x62\x72\x65\x61\153\55\x77\x6f\x72\x64\73\x20\175"; echo "\x68\x31\40\173\40\143\157\x6c\x6f\162\x3a\x20\x69\x6e\150\162\145\x72\x69\164\x3b\40\175"; echo "\x61\155\x70\x2d\151\x6d\x67\40\173\40\142\141\143\x6b\x67\x72\x6f\165\x6e\144\x2d\143\157\154\x6f\x72\72\x20\147\162\145\171\73\x20\x7d"; echo "\x74\141\142\x6c\x65\40\173\40\x6d\141\170\55\167\151\144\164\150\x3a\40\x31\60\60\x25\73\x20\x77\x69\144\164\x68\72\x20\x31\x30\x30\x25\73\40\175"; echo "\x74\141\142\x6c\x65\54\x20\x74\x72\40\x7b\40\142\x6f\162\x64\x65\162\x2d\x73\160\x61\143\x69\156\147\72\60\x3b\40\x62\157\x72\x64\145\x72\x2d\x63\x6f\154\x6c\141\160\163\x65\x3a\x20\143\x6f\154\154\x61\160\x73\x65\x3b\40\175"; echo "\164\x61\142\x6c\145\40\164\144\x20\173\40\x62\x6f\162\144\145\x72\x3a\40\x31\x70\x78\x20\x73\x6f\x6c\151\144\x20\43\143\x63\x63\73\40\142\157\x72\x64\145\x72\55\x73\160\141\x63\x69\156\x67\72\x20\x30\73\40\x70\x61\144\144\151\x6e\x67\72\40\x32\x70\x78\73\x20\x7d"; echo "\56\160\141\147\x65\40\x7b"; echo "\x20\40\x62\x61\143\153\x67\x72\157\165\156\144\72\x20" . $background . "\x3b"; echo "\x20\x20\x63\157\154\x6f\162\72\x20" . $textColor . "\73"; if ($showBackgroundLogo) { echo "\x20\40\x62\x61\143\x6b\147\x72\x6f\x75\x6e\x64\x2d\151\155\x61\x67\x65\x3a\x20\165\x72\154\50" . $backgroundLogo . "\51\73"; } echo "\x20\40\x62\141\143\x6b\x67\x72\x6f\165\x6e\x64\x2d\162\x65\x70\145\x61\x74\72\x20\156\157\x2d\162\145\x70\x65\x61\164\73"; echo "\40\x20\x62\x61\x63\153\x67\162\x6f\165\156\144\55\x70\x6f\x73\151\x74\x69\x6f\x6e\x3a\40\x74\x6f\160\x20\62\60\x70\170\40\x6c\145\x66\x74\x20\63\x32\160\x78\x3b"; echo "\x20\40\142\x61\143\x6b\147\x72\157\x75\156\x64\55\163\x69\172\x65\x3a\40\x61\x75\164\157\x20\63\x36\160\170\73"; echo "\x7d"; if ($animateImagesInTheBackground) { echo "\56\143\157\x6e\x74\145\156\x74\x2d\160\x61\x67\145\40\173"; echo "\40\40\142\141\x63\x6b\147\162\157\x75\x6e\x64\55\x73\x69\x7a\x65\72\x20\143\157\166\145\162\x3b"; echo "\x20\x20\x61\x6e\x69\x6d\x61\x74\x69\x6f\x6e\72\x20\x62\141\x63\x6b\147\162\157\x75\156\144\40\x35\163\40\x65\141\163\145\55\x69\x6e\55\157\165\x74\40\x69\x6e\146\151\x6e\151\x74\145\40\x61\154\164\145\x72\156\x61\164\145\x3b"; echo "\x7d"; echo "\x40\x6b\x65\171\x66\162\141\x6d\x65\x73\40\x62\x61\143\153\147\162\157\x75\156\x64\40\x7b"; echo "\x20\x20\60\x25\x20\x7b\x20\142\141\x63\153\x67\162\x6f\x75\x6e\144\55\x70\x6f\163\151\164\151\x6f\x6e\x3a\x20\x30\x20\60\x3b\x20\x7d"; echo "\40\40\61\60\x30\45\40\x7b\40\x62\x61\x63\153\147\162\157\165\x6e\x64\55\x70\157\x73\x69\164\151\x6f\156\x3a\40\x31\60\x30\45\40\x30\73\x20\x7d"; echo "\x7d"; echo "\x2e\142\x67\55\x69\155\x61\147\145\40\x7b\40"; echo "\40\150\x65\x69\147\x68\164\72\x20\61\x30\60\160\170\x3b\40\142\x61\x63\x6b\147\x72\x6f\x75\156\144\x2d\x70\157\163\x69\164\151\x6f\x6e\x3a\40\143\x65\156\164\x65\162\x3b\40\142\x61\x63\153\147\x72\x6f\165\x6e\144\55\x72\145\160\145\141\164\72\x20\x6e\157\55\162\x65\x70\145\x61\x74\73\40\142\141\x63\x6b\147\162\157\x75\x6e\144\55\x73\151\172\x65\x3a\x20\143\x6f\166\145\x72\73"; echo "\x20\x7d"; echo "\x2e\x62\154\165\162\x20\173\40"; echo "\142\141\143\153\147\x72\157\x75\156\144\x3a\40" . $background . "\x62\x62\73"; echo "\x62\141\143\x6b\x64\x72\157\x70\x2d\146\x69\x6c\x74\x65\162\x3a\40\x62\154\x75\162\50\61\60\160\x78\51\x3b"; echo "\x68\145\151\x67\150\x74\72\x20\x31\x30\60\x76\x68\73"; echo "\167\151\x64\x74\x68\72\40\x31\60\x30\166\x77\73"; echo "\160\157\x73\x69\164\151\x6f\156\72\40\x61\142\163\157\x6c\165\164\145\73"; echo "\x74\x6f\160\x3a\x20\x30\x3b"; echo "\x6c\145\x66\164\72\40\60\73"; echo "\175"; $lastSlideImage = $image; foreach ($slides as $slide) { $dom = $this->load_html($slide); $ampImageNodes = $this->selector_query($dom, "\141\x6d\x70\55\x69\155\147"); foreach ($ampImageNodes as $node) { $src = $node->getAttribute("\163\x72\143"); if ($src) { $lastSlideImage = $src; } } $dom = null; $slideIndex = array_search($slide, $slides); echo "\56\142\147\55\x69\155\x61\x67\145\55\163\154\x69\x64\x65\x2d" . $slideIndex . "\x20\x7b\x20"; echo "\x62\141\x63\x6b\147\162\157\x75\x6e\x64\55\151\x6d\x61\147\145\72\x20\x75\x72\x6c\50\42" . $lastSlideImage . "\x22\51\73"; echo "\x20\175"; } if ($image) { echo "\x2e\x62\147\x2d\151\x6d\x61\147\x65\x2d\x63\157\166\145\162\40\173\40"; echo "\142\141\x63\153\147\162\x6f\x75\156\x64\55\x69\155\x61\x67\145\x3a\40\154\151\x6e\145\141\x72\55\x67\x72\x61\144\x69\x65\x6e\x74\50\162\147\x62\141\50\x30\x2c\60\54\60\x2c\x2e\x37\x29\x20\x33\x30\x30\x70\x78\54\x20\x72\147\x62\x61\50\60\x2c\x30\54\x30\x2c\60\51\51\54\x20\x6c\151\x6e\x65\141\x72\55\147\x72\141\x64\x69\x65\156\x74\x28\162\x67\x62\x61\x28\60\54\x30\x2c\60\54\60\x29\40\x37\65\x25\54\40\x72\x67\x62\141\x28\60\x2c\60\x2c\x30\54\56\67\51\x29\54\x20\x75\x72\x6c\x28\42" . $image . "\42\51\x3b"; echo "\40\175"; } } echo "\x2e\x70\x61\x67\145\40\150\62\40\173\40\164\145\170\x74\x2d\141\154\151\147\156\72\40\x63\145\x6e\164\x65\x72\x20\175"; echo "\150\x31\x2c\x20\150\62\54\x20\x68\63\54\x20\x68\x34\54\40\150\x35\54\40\150\66\x20\x7b\x20\x63\x6f\x6c\x6f\x72\72\40" . $color . "\x3b\x20\x7d"; echo "\43\x63\x6f\x6e\x63\x6c\x75\163\x69\157\156\x20\173"; echo "\40\40\x62\141\x63\x6b\147\162\157\165\x6e\x64\55\143\157\154\157\x72\72\x20" . $background . "\x3b"; echo "\40\40\x62\x61\x63\x6b\x67\x72\x6f\x75\156\144\x2d\x69\155\141\147\x65\72\40\154\151\156\x65\141\162\x2d\147\x72\x61\144\151\x65\156\x74\x28\162\x67\142\141\x28\60\54\x30\x2c\60\x2c\56\x37\51\40\x33\x30\x30\160\170\54\x20\x72\147\x62\x61\x28\60\54\60\x2c\x30\x2c\60\x29\x29\x2c\40\x6c\x69\x6e\x65\141\x72\x2d\147\x72\x61\144\151\x65\x6e\x74\x28\162\147\x62\141\x28\x30\x2c\x30\54\60\54\x30\x29\40\67\65\x25\x2c\40\x72\x67\x62\141\x28\x30\x2c\x30\x2c\60\x2c\56\x37\51\51\x2c\40\165\x72\154\x28" . $image . "\51\x3b"; echo "\x20\x20\142\x61\x63\153\x67\x72\157\x75\156\144\55\163\151\172\x65\x3a\x20\143\157\166\145\162\73\x20\142\x61\x63\x6b\x67\x72\x6f\165\x6e\144\55\160\157\163\151\164\151\157\x6e\72\40\143\x65\x6e\x74\145\x72\73\40\x63\x6f\154\x6f\162\x3a\x20\x23\146\x66\146\x3b"; echo "\175"; echo "\x23\x63\x6f\x6e\x63\x6c\x75\x73\151\x6f\156\x20\x23\141\x72\x72\157\x77\x20\x7b\40\x70\x6f\x73\151\x74\151\x6f\156\72\40\x66\151\x78\x65\144\x3b\40\167\151\x64\164\150\x3a\x20\61\65\x30\160\170\73\x20\150\145\x69\147\150\x74\72\40\63\x30\60\x70\x78\73\x20\x74\162\x61\156\163\146\x6f\162\155\72\40\x72\157\164\141\x74\x65\x28\x32\60\x30\144\x65\x67\51\x20\x73\143\x61\154\145\x58\x28\x2d\61\x29\73\x20\164\x6f\160\x3a\x20\55\62\65\160\170\x3b\x20\x72\x69\x67\150\x74\x3a\40\55\x32\65\x70\170\x3b\40\162\151\x67\x68\164\72\x20\55\61\x35\160\170\73\x20\175"; echo "\43\x63\157\156\x63\x6c\x75\163\151\x6f\x6e\40\x68\x31\54\40\43\143\x6f\156\143\x6c\165\x73\x69\x6f\x6e\x20\160\x20\x7b\40\x74\x65\x78\x74\55\x73\150\141\144\157\167\72\40\61\160\x78\40\61\160\170\40\x32\160\x78\x20\162\147\x62\141\x28\60\54\x30\54\60\54\x30\56\67\51\73\x20\x66\157\x6e\x74\55\163\x69\x7a\145\72\x20\61\x2e\x38\x72\145\x6d\73\40\164\145\170\164\55\141\x6c\x69\147\156\72\40\143\x65\156\x74\145\162\x3b\x20\x7d"; echo "\43\x63\x6f\x6e\143\x6c\x75\x73\151\x6f\156\x20\150\61\x20\173\40\146\157\156\x74\55\163\x69\x7a\x65\x3a\x20\62\56\x35\162\145\155\73\40\143\157\154\157\162\x3a\x20\43\146\x66\146\x3b\40\x7d"; echo "\56\x77\163\x67\x2d\151\x6e\146\x6f\x20\x7b\40\155\x61\x72\147\x69\x6e\x2d\164\x6f\160\x3a\x20\x31\162\145\155\73\x20\x74\x65\x78\x74\55\141\x6c\x69\147\156\72\40\x63\x65\x6e\164\x65\x72\73\x20\x66\x6f\156\164\55\x77\145\151\x67\150\164\x3a\40\142\x6f\154\144\x3b\x20\160\141\x64\x64\151\x6e\147\72\40\x2e\65\x72\145\x6d\x20\61\162\x65\x6d\x3b\x20\x74\145\170\x74\55\x73\x68\141\144\157\167\72\40\156\x6f\156\x65\x3b\x20\x7d"; echo "\x2e\167\163\147\x2d\151\156\x66\157\40\141\40\173"; echo "\x20\x20\143\x6f\x6c\157\162\72\x20" . $color . "\73"; echo "\40\x20\x74\x65\170\x74\x2d\144\x65\143\157\162\141\x74\151\157\156\72\x20\x75\156\x64\145\162\154\x69\x6e\x65\73"; echo "\x7d"; echo "\x61\x6d\x70\55\x69\155\147\x20\173\x20\155\141\x78\55\x77\x69\x64\x74\150\x3a\40\61\60\60\x25\73\40\175"; echo "\163\x70\141\156\56\x74\151\x74\x6c\145\40\173\40\x74\x65\170\164\55\x61\x6c\151\x67\156\72\x20\143\x65\156\164\145\162\73\40\x66\157\x6e\x74\55\163\x69\172\x65\72\40\x31\162\x65\x6d\73\40\146\157\x6e\164\x2d\x77\145\151\147\x68\164\x3a\x20\142\157\154\144\x3b\40\x63\x6f\x6c\x6f\162\72\x20" . $color . "\73\x20\155\x61\x72\147\151\x6e\x3a\x20\61\162\145\x6d\x20\60\73\x20\144\x69\163\160\154\x61\171\x3a\40\142\154\x6f\143\153\73\x20\175"; if ($this->wsg_demo) { $demoText = wsg_str_translate("\104\145\155\x6f\x20\x76\x65\162\x73\151\x6f\156", WSG_PLUGIN_TEXT_DOMAIN); echo "\x61\x6d\x70\x2d\x73\164\157\x72\171\x2d\x70\141\147\x65\40\x7b\40\x62\x6f\x78\x2d\x73\x69\x7a\151\x6e\x67\72\x20\142\157\x72\144\x65\162\x2d\x62\x6f\170\73\x20\142\x6f\x72\144\145\162\x3a\x20\x31\x30\160\170\x20\163\x6f\x6c\x69\144\x20\162\x65\144\x3b\40\175"; echo "\141\155\x70\x2d\163\x74\x6f\x72\171\55\160\x61\x67\145\72\156\157\164\50\43\143\157\156\143\x6c\165\163\151\157\156\51\72\72\142\x65\146\x6f\x72\145\40\173\x20\x6f\160\141\x63\x69\x74\171\x3a\40\x30\56\63\x3b\x20\160\157\x73\x69\x74\x69\x6f\x6e\x3a\x20\146\151\x78\145\144\73\40\164\157\x70\72\40\62\x30\160\170\73\x20\164\145\170\x74\55\163\150\141\144\x6f\x77\72\x20\x32\x70\x78\40\x32\x70\170\x20\x23\x66\146\146\x3b\x20\146\x6f\x6e\164\x2d\163\x69\x7a\x65\72\x20\x33\x72\x65\x6d\73\40\x63\157\x6e\x74\145\x6e\164\x3a\40\x22" . $demoText . "\40" . $demoText . "\x22\x3b\x20\172\55\151\156\144\x65\170\x3a\x20\71\x39\x39\x39\x39\x39\71\x39\71\73\40\164\145\170\x74\55\141\154\x69\147\x6e\72\x20\143\145\x6e\164\145\x72\73\x20\143\x6f\154\157\x72\x3a\40\x72\x65\144\40\x7d"; } echo "\x3c\57\163\x74\x79\154\145\76"; echo "\x3c\x73\143\x72\x69\x70\x74\40\141\163\171\x6e\143\40\163\162\143\x3d\x22\150\164\164\x70\163\x3a\x2f\x2f\143\144\156\x2e\x61\155\160\160\x72\157\152\145\x63\164\56\x6f\x72\147\x2f\166\60\56\x6a\x73\42\x3e\74\x2f\163\143\x72\151\x70\x74\x3e"; echo "\x3c\163\143\x72\151\160\164\40\141\163\171\x6e\143\40\x63\x75\163\x74\x6f\x6d\x2d\x65\154\x65\x6d\145\156\x74\75\42\141\x6d\160\55\163\x74\x6f\x72\x79\42\x20\x73\162\x63\75\42\150\164\164\x70\163\x3a\x2f\57\143\x64\x6e\56\141\155\x70\160\x72\157\152\x65\x63\x74\x2e\157\x72\x67\x2f\x76\60\57\141\155\x70\55\x73\x74\x6f\162\171\55\x31\x2e\x30\x2e\152\x73\42\76\x3c\x2f\163\143\x72\151\160\164\x3e"; if ($useAdSense) { echo "\x3c\x73\143\162\151\x70\x74\x20\141\163\171\x6e\x63\40\x63\x75\x73\164\157\155\x2d\145\x6c\145\155\x65\156\x74\75\42\x61\x6d\x70\x2d\163\x74\157\162\171\x2d\141\x75\x74\157\x2d\141\x64\163\42\x20\x73\x72\x63\75\42\x68\164\164\x70\x73\x3a\x2f\57\143\144\156\x2e\141\x6d\160\x70\x72\x6f\152\x65\143\x74\x2e\x6f\162\147\x2f\166\x30\x2f\x61\x6d\160\x2d\163\164\x6f\162\171\55\141\x75\x74\157\55\x61\144\163\x2d\60\56\x31\x2e\x6a\163\42\76\x3c\57\x73\143\x72\x69\x70\x74\x3e"; } if ($gaCode) { echo "\x3c\x73\143\x72\151\160\164\x20\141\x73\x79\x6e\x63\40\x63\x75\x73\164\x6f\155\x2d\x65\x6c\x65\155\x65\156\x74\x3d\x22\x61\155\x70\55\x61\x6e\x61\x6c\171\x74\151\x63\163\x22\x20\x73\x72\x63\x3d\42\x68\164\x74\x70\x73\72\57\x2f\x63\144\x6e\56\141\x6d\x70\160\x72\157\152\145\143\x74\56\157\162\147\57\166\60\57\141\x6d\160\55\141\x6e\141\x6c\171\164\x69\143\x73\55\60\x2e\x31\x2e\x6a\163\42\x3e\74\x2f\163\143\x72\x69\x70\x74\x3e"; } echo "\74\163\143\162\x69\x70\x74\x20\x74\x79\160\x65\75\x22\141\160\x70\154\x69\143\141\x74\x69\x6f\x6e\57\154\x64\x2b\152\163\x6f\156\42\x3e" . $this->create_jsonld_from_post($post) . "\74\57\x73\143\162\x69\x70\x74\76"; echo "\74\57\150\x65\x61\x64\x3e"; echo "\x3c\142\157\x64\171\x3e"; if (!$image) { $image = $logo; } echo "\74\141\155\160\x2d\x73\164\157\x72\x79\40\163\164\x61\156\144\x61\x6c\157\156\145\x20\164\x69\x74\154\145\x3d\x22" . $title . "\x22\40\x70\165\142\154\x69\163\x68\x65\x72\75\42" . $siteName . "\42\40\x70\x75\142\x6c\x69\163\150\x65\162\55\154\157\147\x6f\x2d\x73\162\x63\75\x22" . $logo . "\x22\x20\160\157\x73\164\145\x72\x2d\x70\x6f\x72\x74\x72\141\x69\x74\x2d\x73\x72\143\75\x22" . $image . "\x22\x3e"; if ($useAdSense) { echo "\74\141\x6d\160\55\x73\164\x6f\162\171\55\x61\165\164\x6f\x2d\x61\144\x73\x3e"; echo "\74\x73\143\162\x69\x70\x74\40\x74\171\x70\145\75\42\x61\x70\160\154\151\143\141\x74\x69\x6f\x6e\57\152\163\x6f\156\42\x3e"; echo "\x7b"; echo "\40\x20\40\40\x22\x61\x64\x2d\141\164\164\162\151\142\165\164\x65\163\x22\72\x20\x7b"; echo "\40\40\x20\40\x22\164\171\x70\x65\42\72\x20\x22\141\x64\163\145\156\x73\145\42\54"; echo "\40\x20\40\x20\x22\x64\x61\x74\141\55\x61\x64\55\x63\154\x69\145\156\x74\42\72\x20\x22" . $adSenseClient . "\x22\54"; echo "\x20\x20\x20\40\x22\x64\x61\x74\x61\55\141\x64\x2d\x73\154\x6f\x74\x22\x3a\x20\x22" . $adSenseSlot . "\x22"; echo "\x20\40\40\x20\175"; echo "\175"; echo "\74\57\x73\x63\x72\151\160\164\x3e"; echo "\x3c\x2f\x61\x6d\x70\x2d\163\x74\157\x72\x79\55\x61\x75\x74\x6f\x2d\141\144\x73\x3e"; } if ($gaCode) { echo "\x3c\x61\155\x70\x2d\x61\x6e\141\x6c\171\164\x69\x63\163\x20\164\x79\x70\x65\75\42\x67\x6f\157\x67\154\145\x61\156\141\154\171\x74\x69\143\x73\x22\x20\x63\x6f\x6e\146\x69\x67\x3d\x22\150\164\x74\x70\163\x3a\57\57\141\155\160\x2e\141\x6e\x61\x6c\x79\164\151\143\163\x2d\x64\x65\x62\x75\x67\147\145\162\x2e\x63\x6f\155\x2f\147\141\x34\56\152\163\157\x6e\42\x20\144\141\164\x61\55\143\162\x65\x64\x65\156\164\x69\141\154\x73\75\x22\151\156\x63\154\x75\144\145\x22\x3e"; echo "\74\163\x63\x72\151\x70\x74\x20\x74\171\160\x65\75\x22\141\160\x70\x6c\x69\143\141\x74\x69\x6f\x6e\x2f\152\x73\157\156\x22\76\x7b\42\x76\x61\x72\163\42\x3a\173\42\107\x41\x34\x5f\115\x45\101\123\125\x52\x45\115\105\x4e\x54\137\111\104\42\72\x22" . $gaCode . "\x22\x2c\x22\107\101\64\x5f\x45\116\104\120\117\111\x4e\124\x5f\110\117\x53\x54\116\101\115\105\x22\72\x22\x77\x77\x77\x2e\x67\x6f\157\x67\154\145\x2d\141\x6e\x61\x6c\171\164\x69\143\x73\x2e\x63\157\155\x22\x2c\x22\104\x45\106\x41\x55\114\124\137\x50\x41\107\x45\126\111\105\x57\137\105\x4e\x41\x42\114\105\x44\42\72\x20\164\162\165\x65\54\x22\x47\x4f\117\x47\114\105\x5f\x43\x4f\116\x53\x45\x4e\124\x5f\105\x4e\101\x42\x4c\x45\104\42\72\x66\141\x6c\x73\x65\54\42\x57\x45\102\126\111\124\101\114\123\x5f\x54\x52\101\103\x4b\x49\x4e\x47\42\x3a\x66\141\154\x73\x65\54\x22\x50\105\x52\x46\117\x52\x4d\101\116\x43\105\137\124\x49\115\111\116\107\x5f\x54\122\x41\x43\x4b\x49\116\x47\42\x3a\146\141\x6c\x73\x65\x7d\175\74\57\x73\143\162\151\160\x74\76"; echo "\74\57\x61\155\x70\x2d\141\156\x61\154\x79\x74\151\143\x73\76"; } echo "\x3c\x61\155\160\x2d\163\x74\157\162\171\x2d\x70\x61\147\145\40\151\x64\75\x22\143\157\x76\145\x72\x22\x20\143\154\x61\163\163\75\x22\x62\x67\55\x69\155\x61\147\145\x20\x62\147\55\x69\155\141\147\x65\x2d\143\x6f\x76\145\x72\x20\160\141\x67\x65\x22" . ($autoAdvanceEnabled ? "\x20\141\165\164\x6f\55\x61\x64\166\x61\x6e\143\x65\55\141\146\164\145\x72\75\x22" . $autoAdvanceInterval . "\163\42" : '') . "\x3e"; echo "\x3c\x61\x6d\x70\55\163\164\x6f\x72\171\x2d\x67\x72\x69\x64\x2d\x6c\x61\171\145\162\40\164\145\x6d\160\x6c\141\164\x65\75\42\x76\145\162\x74\x69\x63\141\154\x22"; if ($image) { echo "\40\143\x6c\141\163\163\75\x22\142\154\x75\x72\42"; } echo "\x3e"; if ($image) { echo "\74\x61\x6d\x70\x2d\x69\x6d\147\x20\x73\162\143\75\x22" . $image . "\42\x20\x77\151\x64\164\150\x3d\42\x31\60\x30\x22\40\150\x65\151\x67\x68\164\75\42\x31\60\60\x22\40\x6c\141\x79\157\165\164\x3d\x22\x72\x65\x73\160\157\x6e\x73\151\166\x65\x22\40\157\x62\x6a\x65\143\x74\x2d\146\151\164\75\x22\x63\157\x76\x65\162\42\x20\x73\x74\171\x6c\x65\x3d\42\x62\157\x72\144\145\x72\x2d\x72\x61\144\x69\165\163\72\x20\x31\x72\x65\x6d\x22\x3e\74\x2f\141\x6d\160\x2d\151\155\x67\76"; } echo "\x3c\150\x31\76" . $title . "\74\57\150\61\x3e"; echo "\74\57\x61\x6d\x70\x2d\x73\164\157\162\171\55\x67\162\151\144\55\x6c\x61\171\x65\162\x3e"; echo "\x3c\x2f\141\155\x70\x2d\x73\x74\x6f\x72\x79\x2d\160\x61\147\145\76"; foreach ($slides as $slide) { $slideIndex = array_search($slide, $slides); echo "\74\x61\x6d\x70\55\163\x74\x6f\162\x79\55\160\141\147\145\x20\x69\x64\x3d\42\163\154\x69\x64\x65\x2d" . array_search($slide, $slides) . "\x22\x20\x63\154\x61\x73\163\75\42\160\x61\147\x65\40\x63\x6f\156\x74\145\x6e\x74\55\160\x61\x67\x65\40\x62\147\55\x69\x6d\141\x67\x65\40\x62\x67\55\151\x6d\x61\147\145\x2d\163\154\x69\144\145\55" . $slideIndex . "\42" . ($autoAdvanceEnabled ? "\40\x61\x75\x74\157\x2d\x61\x64\x76\141\x6e\x63\x65\x2d\x61\146\164\x65\162\x3d\42" . $autoAdvanceInterval . "\163\42" : '') . "\x3e"; echo "\74\x61\155\160\x2d\x73\164\x6f\162\x79\x2d\147\162\151\x64\x2d\x6c\x61\171\x65\162\x20\164\145\x6d\160\154\x61\x74\145\75\42\166\x65\x72\x74\151\x63\x61\154\42\40\143\x6c\141\x73\x73\75\42\142\154\x75\162\42\76"; $slide = str_replace("\xa", '', $slide); echo $slide; echo "\74\57\141\x6d\160\x2d\x73\164\157\162\x79\55\147\162\151\144\55\x6c\141\x79\145\x72\x3e"; if (!(isset($ctaLastSlide) && $ctaLastSlide == "\x6f\x6e")) { if (isset($ctaButtonText) && trim($ctaButtonText) != '') { $cta_text = $ctaButtonText; } echo "\x3c\x61\155\x70\55\x73\x74\157\x72\171\x2d\160\141\x67\145\x2d\x6f\x75\x74\154\x69\x6e\x6b\40\x6c\x61\171\157\x75\x74\75\x22\156\157\144\151\163\x70\154\141\x79\x22\x20\x74\150\145\x6d\x65\x3d\42\143\x75\x73\x74\157\x6d\x22\40\x63\x74\141\x2d\141\x63\x63\x65\156\x74\x2d\145\154\145\x6d\x65\156\164\75\42\x62\x61\x63\x6b\147\162\x6f\165\x6e\144\x22\40\x63\x74\x61\x2d\x61\x63\x63\145\156\164\55\x63\157\x6c\x6f\162\75\x22" . $color . "\42\76"; if ($this->wsg_demo) { echo "\x3c\x61\40\x68\x72\x65\146\x3d\42" . $wsgenUrl . "\x22\76"; echo $cta_text; echo "\74\57\x61\76"; } else { echo "\74\141\40\x68\x72\145\146\75\x22" . $ctaUrl . "\77\x75\164\x6d\137\x73\x6f\x75\162\x63\145\x3d\167\x65\x62\x2d\163\164\157\x72\x69\145\x73\55\x67\x65\156\145\162\x61\164\157\162\x22\76"; echo $cta_text; echo "\74\x2f\141\x3e"; } echo "\74\57\x61\155\x70\x2d\x73\x74\157\162\171\x2d\160\x61\x67\145\x2d\x6f\x75\x74\154\151\156\153\x3e"; } echo "\74\x2f\x61\155\x70\x2d\163\164\157\x72\x79\55\x70\141\x67\x65\x3e"; } echo "\74\x61\x6d\160\x2d\163\164\157\162\x79\x2d\x70\x61\x67\145\40\x69\x64\75\42\143\x6f\156\x63\154\165\x73\x69\157\x6e\42\40\143\154\x61\163\163\75\x22\160\141\147\145\42\x3e"; echo "\x3c\x61\155\160\55\163\x74\157\162\171\55\x67\162\151\x64\55\x6c\141\171\x65\162\x20\x74\145\155\160\x6c\x61\x74\145\x3d\42\164\x68\151\x72\x64\x73\x22\x3e"; echo "\x3c\144\151\166\40\147\162\151\x64\x2d\x61\x72\x65\141\75\x22\165\160\x70\145\162\x2d\164\150\x69\x72\144\x22\x3e"; echo "\74\150\x31\40\x61\x6e\x69\155\141\x74\145\55\x69\x6e\x3d\x22\146\154\171\55\151\x6e\55\162\x69\x67\150\x74\42\40\x61\156\x69\155\x61\x74\145\55\151\x6e\55\x64\145\x6c\x61\171\x3d\x22\60\42\x20\x61\x6e\151\155\141\x74\145\x2d\x69\156\55\x64\165\x72\141\x74\x69\x6f\156\75\x22\60\56\x38\x73\x22\x3e" . wsg_str_translate("\x44\151\144\x20\171\x6f\165\x20\154\x69\x6b\x65\40\164\x68\151\163\40\163\x74\x6f\162\x79\77") . "\74\x2f\150\61\x3e"; echo "\74\x70\x20\141\156\151\155\x61\164\145\x2d\x69\x6e\x3d\x22\146\154\x79\55\x69\x6e\55\164\x6f\160\x22\x20\x61\156\x69\155\x61\x74\145\x2d\x69\x6e\x2d\x64\145\x6c\141\171\x3d\x22\60\56\x33\x73\x22\x20\141\156\151\155\141\x74\145\55\x69\156\55\x64\165\x72\141\x74\151\157\156\75\x22\x30\56\70\163\42\x20\163\164\x79\154\x65\x3d\42\142\x6f\162\144\145\x72\x2d\x72\x61\144\151\165\163\72\40\61\60\160\x78\73\40\155\141\162\x67\x69\x6e\x2d\164\157\160\x3a\40\61\x72\145\x6d\73\40\164\x65\170\x74\55\x61\x6c\x69\147\156\x3a\x20\143\x65\x6e\164\145\162\73\40\x66\x6f\156\164\55\x73\x69\x7a\145\x3a\x20\x31\x72\145\x6d\73\x20\146\157\156\164\x2d\x77\x65\x69\x67\150\164\x3a\x20\x62\157\154\144\73\x20\160\141\144\144\x69\x6e\x67\72\40\56\65\x72\x65\x6d\x20\x31\162\145\x6d\73\40\164\145\x78\164\55\163\150\x61\x64\x6f\167\72\x20\156\157\x6e\145\x3b\x20\x62\141\143\x6b\147\x72\157\x75\x6e\x64\72\40" . $color . "\73\40\x63\x6f\x6c\157\x72\x3a\x20" . $background . "\73\x22\x3e" . wsg_str_translate("\x50\x6c\145\141\x73\145\x20\163\x68\x61\x72\x65\x20\x62\x79\x20\143\x6c\x69\143\153\151\x6e\x67\40\x74\x68\x69\163\x20\x62\165\164\164\x6f\156\x21") . "\74\57\x70\76"; if (isset($support) && $support == true) { $affiliateUrl = wsg_get_data("\x61\146\146\x69\x6c\x69\x61\164\x65\137\165\x72\x6c"); if (isset($affiliateUrl) && trim($affiliateUrl) != '') { $wsgUrl = $affiliateUrl; } else { $wsgUrl = WSG_PLUGIN_URL . "\x3f\165\164\x6d\137\x73\157\x75\x72\143\x65\x3d\x77\145\x62\x2d\163\x74\157\x72\151\145\163\x2d\147\145\156\145\x72\141\x74\157\162\46\165\164\155\x5f\x6d\145\x64\151\x75\x6d\x3d" . $siteUrl; } $wsgLogoDataUrl = "\x64\x61\164\141\x3a\x69\x6d\141\x67\x65\x2f\x70\156\x67\73\x62\141\163\x65\66\64\54\151\x56\x42\117\x52\167\x30\x4b\107\x67\157\x41\x41\x41\101\116\x53\x55\x68\105\125\147\101\x41\x41\x4f\x49\x41\101\x41\102\x47\x43\x41\131\x41\x41\x41\x44\122\156\125\x67\166\x41\x41\101\x41\101\x58\x4e\123\122\60\x49\101\162\163\x34\x63\x36\x51\101\x41\x4d\130\x4a\x4a\122\105\x46\125\x65\x4e\x72\x73\x6e\x41\155\x59\106\105\127\x61\x68\162\x4f\66\x57\60\x54\x41\x6b\x31\126\x45\x4c\x67\71\x55\x46\x46\105\x45\144\x31\x42\x42\x4f\x55\x56\170\105\122\x78\156\x50\x58\102\167\150\x2f\x48\x59\x31\122\x6c\x30\x42\105\x5a\x51\x51\101\x35\x68\x78\x67\x4d\x46\104\x35\102\114\x5a\166\101\132\x48\x49\122\x6c\127\143\125\114\101\145\153\x71\155\x77\x59\144\102\121\x56\160\157\x49\105\x47\165\x75\x76\157\161\x36\x72\x76\x6f\172\113\x7a\x4d\x72\57\x39\x49\x79\160\x43\147\x72\103\157\x37\x72\x5a\x52\x32\x35\x32\165\150\53\x2b\x4a\x7a\163\171\x49\x71\115\152\115\x65\120\115\x2f\111\x67\x73\104\x67\x50\105\124\171\x71\x4d\x72\x57\x58\x30\x44\123\x44\106\127\x49\x78\126\x79\145\67\x50\126\x32\x39\x68\x73\x54\x7a\120\x53\172\x59\x38\70\x58\155\x75\146\x78\x32\163\110\161\x63\x77\x31\146\116\141\x58\122\x72\161\61\x33\120\x42\x61\x39\170\x6d\142\60\102\141\x79\146\x6a\162\123\127\x4e\x6d\x73\x5a\152\x55\x31\x2f\132\x6a\x41\160\132\104\123\150\x46\113\124\121\x5a\145\x6f\162\147\161\x52\x34\131\x76\x64\66\166\106\x5a\x58\163\116\162\x75\x6d\x32\x38\112\164\x71\124\165\156\x67\164\x58\117\103\114\66\x33\172\123\x75\x62\x54\x64\x67\x6d\x53\x6b\x52\64\164\x53\x30\161\x31\65\170\161\141\161\144\x72\x77\164\x67\x57\167\101\156\161\132\x79\x41\x35\162\126\x72\x42\70\141\122\111\53\105\x4b\125\155\x64\x74\x49\111\x43\164\x43\x34\165\170\x71\x6c\x46\122\127\x69\x54\102\x62\122\111\x31\x75\x66\x70\107\124\152\124\70\116\x72\x76\x6b\x72\x58\104\107\x51\122\x66\122\170\112\132\170\x5a\x69\170\171\x58\x4b\115\x6a\x61\132\x72\x62\120\x68\127\x6a\x72\x48\x4a\x6a\112\63\x73\x4e\122\60\x47\x5a\x52\157\x42\x53\144\x42\127\153\x36\127\x38\x58\57\142\126\x44\x47\117\x7a\x6d\160\x4a\x2b\151\105\x35\x54\144\120\x67\117\110\60\142\x4c\x59\114\x48\x56\113\x78\151\x70\x66\123\101\121\151\x62\64\143\x4c\x44\x48\x66\111\62\60\120\x52\x4d\167\x63\62\147\x34\x46\111\61\x5a\150\x4d\x42\x4c\x4e\160\x2b\60\x6a\167\131\151\x35\x69\x37\131\x33\x30\x76\132\123\117\x6a\x62\165\131\114\150\62\105\111\102\127\101\x7a\114\x4e\x4b\70\x67\x46\104\122\x46\121\66\117\x51\x31\x62\x51\105\x67\150\155\x77\170\115\x58\x4f\x48\151\x62\x66\x33\127\70\147\x4d\x78\x65\101\x4e\170\x72\101\161\112\64\x61\x6e\x76\x72\112\x42\x39\143\110\x41\x50\x4d\164\x72\x57\127\144\67\114\142\65\x4e\61\x6e\106\53\x4d\64\x7a\116\141\x6d\x6f\66\x6b\x5a\62\154\115\x73\x6e\164\156\x42\113\x63\124\162\104\x64\105\x79\171\x70\146\x59\165\x67\171\x69\x50\111\105\x43\171\112\147\x6b\157\x53\x6c\x53\x56\143\164\x49\71\164\70\65\x4b\x6b\x37\x43\x66\x35\x71\x57\65\150\141\122\x51\67\70\x36\60\103\101\162\104\x4b\153\x32\66\150\x73\x39\145\60\x47\111\101\152\x74\65\162\x34\70\x4a\x43\x4a\147\x30\126\122\154\x46\126\132\101\x46\172\x6f\x6e\x38\x4a\x71\106\62\x38\x65\x49\x43\101\57\131\132\x62\124\144\104\162\65\114\112\x76\x44\x36\x4c\125\127\x79\x35\x69\172\161\144\x79\x49\x5a\166\x31\x7a\x36\64\122\x62\x77\105\x43\x70\61\x5a\116\x41\127\153\121\161\57\150\x61\x38\x4f\107\x51\165\154\124\132\102\x79\122\x51\x6a\x38\102\167\x43\x30\x4b\110\x53\160\126\x4c\113\x45\131\160\122\x4f\172\164\125\105\162\x57\120\x68\105\61\156\x39\107\x66\x63\x42\x63\127\x46\120\x70\116\x62\x77\122\144\x33\155\x63\151\x6c\x66\157\x73\111\60\x6e\x43\106\103\143\x64\61\121\146\x38\121\x63\61\x30\x34\121\151\x35\x4a\x66\156\114\x4b\110\121\172\x4a\164\104\151\x51\x6e\130\x32\127\170\123\x32\154\61\170\x72\x58\156\x4d\102\x70\126\x6c\116\x52\x6f\x78\161\x72\x41\111\x61\113\162\x57\x73\x49\166\x6e\x65\104\x30\x72\x70\106\165\x47\167\x42\x6e\x38\x50\63\150\62\165\106\x6f\155\104\x62\x41\144\125\141\x6c\x67\161\x4a\x66\x58\154\125\x70\x37\x67\163\151\147\x57\67\103\132\161\116\x6c\164\x76\x44\132\67\x6f\x4d\167\151\x56\x5a\x4a\x6f\162\114\x54\144\64\53\x52\120\130\154\x4a\170\x5a\x7a\112\110\171\x73\65\x48\112\111\115\x53\145\x2b\162\172\x54\161\64\x72\x61\x74\x48\105\142\63\130\x4f\x36\x6d\115\160\x6e\x64\155\x69\61\152\x73\x33\x37\117\x49\110\161\x6b\x47\65\x70\x66\151\142\116\104\x45\130\120\x35\x55\145\163\x58\x64\x51\x6b\123\102\161\101\162\x34\145\x50\121\x6c\x64\x76\167\126\x7a\153\x6b\106\57\x35\113\102\x77\x47\103\x53\105\x44\114\154\122\165\x71\x51\126\x35\x42\x4c\x51\111\115\60\152\x49\114\x34\127\x6f\x62\117\x77\165\x34\x53\70\x6b\x7a\157\121\x7a\x43\x47\x56\53\132\113\103\x72\152\x33\70\x4e\x42\x74\127\x49\x75\143\166\60\x46\161\x4b\x69\x71\150\121\x54\121\x45\x65\x42\102\163\131\157\x53\x78\153\x43\126\171\53\x42\x6a\163\x6c\x73\123\152\x42\x36\x76\166\x56\132\x6d\x55\x70\166\x4b\104\x57\x6e\127\120\66\x65\x2b\x58\x79\x77\x6f\x72\x57\x42\160\x37\x58\x30\105\125\130\x6b\147\104\161\106\x4c\115\x4e\157\x42\131\x65\x6b\64\146\101\123\x55\x76\71\162\154\x5a\x63\110\x68\105\153\x53\x32\65\161\104\171\67\x35\x2b\150\145\157\153\x50\x77\x56\101\126\x38\x70\x6a\x56\114\104\145\170\132\x32\143\x5a\63\156\x6c\x34\x50\71\x36\146\156\111\120\x31\163\167\x39\150\60\x34\x49\70\x62\120\x2b\146\105\x4a\x37\116\161\x4f\x61\127\x71\x77\63\102\143\x39\155\x6e\112\166\131\x56\155\123\x67\x6f\x4a\x57\x67\112\x77\160\111\x71\107\x33\x62\115\x77\x65\x42\x68\x6b\172\x46\x30\x36\x43\x54\x38\131\x2f\164\x65\x79\x49\57\152\x4b\x4e\x5a\x52\x67\57\x47\x44\x33\x42\150\x4c\64\112\103\142\113\x36\x7a\151\160\x2b\x62\x6c\x7a\126\141\x78\x57\124\70\63\x45\116\x4e\x6b\123\x5a\x62\x75\x4c\145\x35\127\x6b\153\x4b\x52\161\x43\130\147\x6b\x2b\x49\127\x4c\x39\71\x66\152\162\111\x50\144\171\105\66\x66\122\x32\143\167\x59\163\x42\x59\x79\x35\167\x2b\x6a\x77\x71\65\66\102\x30\142\x7a\x36\x4b\x61\x31\x78\125\x6d\x44\106\x6b\142\x79\x2f\x46\x71\x68\106\x37\70\x63\64\152\x2b\67\x48\62\147\x57\171\163\110\142\x30\x50\142\64\x33\x4b\x78\161\130\166\61\x2b\x44\163\x44\101\165\60\x4e\111\106\x6c\x65\60\171\105\171\x2b\x4d\112\x48\104\x2b\102\x61\116\157\165\124\115\x76\x47\x71\116\110\120\167\x44\102\x47\x6b\x6f\132\x69\53\163\171\x56\171\x41\62\125\x48\x41\x55\171\x39\154\x30\147\x71\x36\x6e\144\x6a\x56\x73\x73\x5a\x6d\156\x74\x55\67\x6d\114\x61\x6b\57\57\146\170\167\162\x78\x75\120\x33\65\157\144\115\x51\172\60\71\124\x35\x4d\106\70\125\166\x67\112\x46\x59\x47\111\x6a\x55\x64\x2f\123\x58\x52\114\x4f\132\117\x43\x68\144\x55\x78\x6e\57\x63\70\x74\105\62\x2f\x7a\165\x76\x6d\151\x42\x62\163\x51\60\x77\x5a\163\x4c\x39\61\57\154\x77\102\x79\x2b\103\60\x33\70\x68\x6e\x46\67\x7a\64\x52\x6a\x50\101\x44\163\120\x51\x33\64\x4b\71\154\x64\x69\122\x64\70\x73\162\114\65\x37\110\x31\142\x65\x76\150\144\162\102\x6d\144\x68\167\x62\122\x63\107\102\x6b\62\62\163\132\144\123\145\167\x49\170\124\x4f\x6f\x66\x67\x5a\x2b\151\x63\x6e\x62\122\x51\x6e\105\x75\x30\142\x4e\170\112\156\x47\x61\106\x7a\x62\64\171\x45\131\170\156\152\123\103\x31\x69\53\131\x67\x76\x4b\x4b\155\x74\126\x43\170\x6b\166\102\131\170\57\x79\142\x61\x5a\x56\131\170\61\x59\126\142\122\x61\x2f\153\x61\x5a\x68\x46\65\x76\x64\124\152\113\x45\62\x35\151\141\156\61\161\x61\143\x70\x57\x52\x74\120\121\171\x62\x54\152\167\66\x37\x4c\x6a\x6e\165\x6e\x38\x38\x53\x55\x59\161\x2b\63\x65\x52\x41\x6c\x42\x42\x53\x52\x76\x51\x71\101\162\x41\x30\153\x4d\101\x4b\x73\166\147\x76\120\x31\x44\x42\105\172\106\53\x70\163\x6f\x59\171\166\x65\105\64\x4a\64\x79\104\x30\x35\162\153\x76\105\x53\x33\116\x76\145\147\104\x74\x37\110\x64\171\126\155\130\x42\x4c\x4b\165\x47\113\127\x43\x35\155\x4f\121\152\156\126\156\x4d\x67\152\x33\x78\126\150\x67\x4d\x66\x46\x32\114\x4a\62\x67\x67\x4d\x6e\70\x31\x6a\x78\x44\165\x32\x38\151\167\x70\101\x35\x44\x33\130\126\170\165\101\x51\x42\x71\124\x52\x74\63\x45\x34\x67\x70\x78\x69\150\143\x64\x75\64\x59\x58\110\146\170\104\x4e\172\x51\132\x53\64\x4d\x34\x32\153\x4d\67\104\163\x66\x6d\67\x78\132\163\102\61\x41\170\157\167\123\170\103\x38\113\110\x51\x61\151\x79\62\112\120\x44\x31\x75\142\57\x42\x69\x74\x36\67\155\x75\66\107\156\157\x54\x57\61\x55\x66\67\157\141\120\x72\x36\x4c\123\126\116\x63\x31\x33\x30\110\121\x43\x74\x5a\x35\x38\x53\x2b\x73\106\x46\x33\63\x5a\70\102\152\x50\x4a\53\x74\x53\x4d\x4e\112\x35\60\165\x39\172\143\132\x45\x43\x57\105\154\x42\130\x74\110\121\151\142\x55\121\x49\x52\105\x6b\112\160\102\146\x33\154\116\x73\x6f\62\132\115\107\x39\x65\147\x48\x4b\171\122\x55\x4e\x32\64\102\x74\170\x65\x4c\172\x66\x35\153\x58\67\157\113\116\x63\114\x50\171\x34\x46\x62\x55\x51\x48\171\x55\150\x41\157\x53\x66\152\x37\167\x63\x31\x6a\x34\163\x73\125\x66\166\x7a\123\x52\130\x38\162\x6a\125\101\x35\151\123\145\127\x78\x49\110\157\x59\x69\117\63\110\x6f\x4f\144\x5a\60\x39\104\156\63\x4c\153\x59\60\110\x30\165\x72\152\x61\145\65\x30\x43\117\146\130\121\154\x73\166\x59\x46\64\x53\157\x57\x38\130\x43\x35\167\x37\x4f\156\67\142\167\x57\125\x72\61\x57\x72\x65\x47\x72\66\x61\x52\132\170\127\123\x54\141\x52\x44\x70\120\164\x49\x51\x30\x6f\62\153\x2f\161\x51\102\160\106\164\x4a\x76\x79\x58\x78\155\x46\x50\x63\60\110\x74\x45\x2f\146\x35\103\x41\x30\x6b\x6a\x53\x66\x65\x54\x75\x6d\153\63\x2b\171\124\x53\166\167\x73\x4e\x46\x48\63\146\x51\x42\x70\x42\107\161\61\x4d\x44\153\x38\x64\153\53\153\x53\101\155\x38\124\66\121\152\112\112\x6f\106\125\x41\x61\x43\61\142\x48\x2b\x43\x72\x55\x63\67\x30\153\x4f\117\64\x79\x77\154\162\x57\111\x6c\147\x4d\x64\x49\x4e\x34\x76\x78\164\62\x76\151\x4d\x4d\x70\172\x36\x55\x62\x58\x4b\x55\111\103\x36\x65\103\120\x50\145\x35\x36\x78\131\x53\x68\x73\x4e\155\x4e\x77\x4b\x73\122\x31\x73\53\x57\x45\120\157\x72\x59\147\151\x46\161\154\101\x37\x5a\172\61\147\x76\101\x6a\x33\x6d\x76\154\x77\150\171\x30\102\111\x68\127\103\x4d\64\60\x79\163\x63\x38\x56\171\122\x51\x52\166\x59\154\x39\143\x63\126\x69\114\164\57\x33\144\x6f\x37\x4e\131\153\x4d\x4f\x34\160\x51\x64\x4c\105\154\172\x4e\106\164\141\127\155\x55\156\102\x72\105\164\x67\130\152\117\130\x46\172\124\144\x67\x36\165\166\53\x67\154\104\x4f\x2f\67\x4b\x67\x78\x6a\x4d\155\x6b\x61\x38\x6f\x76\x4b\170\121\x68\x34\61\160\x62\x36\65\x57\57\143\111\x4d\63\x4c\x46\166\155\x6a\130\146\156\x46\x6d\x4a\105\x55\122\x48\x6e\163\x53\x52\162\166\110\150\111\x30\126\x5a\x45\53\102\172\x43\x4d\132\x4e\x43\x45\x6e\105\x50\142\147\x51\124\x31\x63\x6b\153\132\x41\111\x5a\x71\171\x61\53\127\x31\107\131\132\110\144\x75\x74\61\x63\x38\156\166\x51\x66\147\166\x43\x51\x54\121\x39\63\146\x6c\x6e\x51\120\x74\130\154\x66\57\x55\x37\x57\166\x31\141\166\163\122\115\63\x6c\x63\131\67\x54\x2f\x52\x66\x54\x6c\160\x4e\62\x36\x39\124\x75\126\64\x64\120\x34\116\123\156\125\164\x36\130\60\x30\x41\x30\112\x50\x45\57\146\x71\x54\x47\110\x4e\105\x6a\x50\163\122\x4f\145\x36\146\106\x45\121\65\121\x66\172\154\117\111\x74\143\167\x70\102\131\x37\170\x4d\121\x52\166\154\153\114\152\167\x51\150\152\61\155\102\x55\x42\x75\160\x7a\120\171\x44\x54\152\144\130\157\126\152\172\x49\x4f\x62\x55\167\101\x58\153\x4d\x42\170\161\130\x2b\x44\x6c\x34\x6b\x6c\162\144\141\66\x49\x7a\106\x49\151\172\x69\x68\111\122\x61\170\146\x64\167\x69\130\155\153\70\x78\x77\105\143\x4e\62\x45\61\163\x67\57\x6d\121\64\x30\122\104\171\x6b\x57\x4d\131\126\x5a\170\x50\x53\x61\152\164\111\x69\116\x73\104\x46\x2b\161\125\x59\143\61\124\x63\165\114\166\x30\x79\x53\x70\x75\x38\x4a\166\x4b\53\x59\x55\x6b\105\x48\x56\x41\115\132\63\x56\132\62\x41\62\167\152\x55\x39\151\x66\157\111\153\60\x44\x79\101\172\x69\x6c\163\x53\x43\161\70\123\57\61\155\x61\x36\x4f\x55\x64\x4e\x46\144\x4f\171\x77\x75\x43\x35\57\x50\x4d\66\105\124\155\153\151\x72\155\165\x71\x4b\111\144\160\x44\65\x41\x72\146\x30\172\x33\164\x4d\x34\x62\x53\x67\102\155\102\110\x68\x38\106\162\126\105\154\x70\123\x37\157\x6b\x56\x37\x43\x2b\x45\x4d\130\101\x54\63\171\x74\x66\147\x6a\106\x68\x4b\101\115\66\102\117\63\x45\x4e\63\x50\x79\123\157\65\x59\x50\125\x45\x39\x4d\163\130\171\117\102\106\x4d\x33\x6c\63\103\105\x52\143\x77\x4d\103\150\x44\x54\x4c\x64\172\117\x59\163\x52\167\120\x57\114\x45\123\62\x61\151\x62\x34\144\64\152\110\x6a\114\x6b\x49\x58\x77\142\x74\x6b\110\165\x61\x79\157\121\166\64\x50\x4e\125\142\60\62\153\110\152\x50\142\x53\x53\x4d\127\x4a\104\x58\x75\x57\x54\x6b\61\x46\115\171\x47\x66\105\x38\x52\132\x61\x65\x61\x6c\171\147\x79\x30\101\130\132\x4d\70\141\x55\70\127\70\113\x34\121\x31\66\141\116\x68\x4b\161\102\171\x5a\157\x55\61\x68\x66\x31\143\131\101\x45\125\x74\64\112\x41\x6a\106\x4e\x6a\107\x2b\62\66\x44\144\114\163\171\x78\x70\x38\150\170\111\147\x38\125\x35\x54\x46\x66\x61\x36\160\x50\57\111\164\x33\x6c\x2f\157\x6b\x6b\166\63\163\105\156\x64\164\x38\x41\x50\62\x61\123\x6f\172\111\114\170\160\x5a\167\107\145\104\x4a\x56\x70\x69\150\x73\x57\106\102\107\x4c\x68\x76\151\114\105\142\151\x41\121\x4c\x79\115\x72\171\x4e\172\x53\x76\x32\x56\167\x79\x41\104\x49\125\x67\120\x51\x41\x55\144\124\57\x31\x42\x64\x4b\142\x34\160\x64\x68\53\x75\122\146\x79\x56\x4e\x47\70\x63\x78\165\x33\102\x68\106\x6c\124\104\x6d\x4a\142\x59\x7a\124\66\130\115\107\x79\x70\165\x4e\167\107\x6f\63\x6c\162\x56\130\x62\x55\x46\x46\x74\x53\x72\161\150\132\60\x33\x66\x45\106\x6e\x54\x7a\166\107\163\x61\x62\x72\151\x6c\152\132\x30\x47\127\x65\x4d\101\164\x6d\145\x52\113\66\x58\x41\x48\x61\x72\x38\x6b\x41\x61\162\57\127\x68\124\x34\x61\x7a\102\x4e\x68\114\65\x41\x53\166\x36\171\x64\151\x78\x2b\155\156\x42\146\x57\124\153\x77\104\x45\x31\111\x54\164\x6b\x30\x76\x76\x39\x35\101\x59\x34\64\x70\105\131\x31\x51\x65\126\x41\145\157\x7a\150\166\171\146\x4c\x57\66\67\x65\x69\x34\x4b\x57\112\x68\x6f\170\65\x6a\x53\146\x6d\145\131\57\x66\157\123\x7a\151\171\156\x36\122\x57\x75\127\64\111\125\170\157\x34\x46\153\53\103\x38\141\143\111\107\x63\x63\61\61\x61\105\123\165\61\x38\167\167\x75\x46\172\x4a\x49\x52\125\153\x69\167\x45\151\155\163\x51\161\x48\132\150\53\151\x4e\167\67\x31\x30\117\x64\x2f\x33\x58\153\x42\x38\x4f\x6e\102\x59\120\x71\150\70\162\x46\x45\132\126\x78\151\x36\125\x4c\x50\70\x59\x78\142\124\x75\126\172\x68\x32\113\x55\x4b\x2f\x58\64\x54\70\63\171\x31\103\x65\120\111\113\126\103\57\53\x47\x45\x6a\x2f\x42\x74\x48\x44\x78\x57\x51\112\x2b\127\164\157\x2f\113\x32\141\x70\x56\156\110\x57\x55\146\70\116\126\164\x48\166\111\61\x30\103\x2f\x37\60\67\x47\x6f\x45\70\163\x75\123\114\x75\x78\x58\x57\x53\66\165\x46\53\x75\111\x62\x65\x4c\x72\151\106\x50\126\x64\143\121\107\x54\163\161\172\x52\130\167\x6b\x2b\x37\x39\127\145\53\114\x4c\x50\163\x63\x72\167\x48\x36\x71\63\62\x69\164\67\x67\117\151\x72\x31\x35\141\130\x38\154\165\x64\161\157\62\116\x75\x6d\x61\110\x6c\x52\101\x62\112\x57\x73\x66\x51\116\x69\167\x77\165\x70\x76\61\162\122\x37\63\x75\x61\71\144\x63\x74\65\x79\x79\x71\163\60\x35\53\150\167\157\163\67\143\x2b\x73\x70\x77\x75\131\125\x73\146\x34\60\x70\x4a\101\x6b\160\161\x67\x72\151\143\132\x34\x45\154\104\147\142\x72\x76\121\71\162\63\x76\142\x37\x48\x64\125\156\x4a\x45\x75\x34\x6d\x45\102\154\x38\115\x51\x45\x68\167\x56\x69\x4c\x59\110\105\61\57\x42\x55\x75\157\154\105\67\120\163\x46\x46\x64\154\x52\x31\x52\66\x56\126\x6c\x46\164\x4f\x72\x59\154\113\63\60\x34\125\x54\x76\x67\x72\57\115\x5a\153\x35\102\155\x50\x6b\x52\65\110\x72\152\x47\x65\116\102\x46\106\170\x6e\122\x55\156\57\157\70\67\x44\120\x6d\x38\x6d\x57\117\x47\101\x6b\x55\64\67\x32\x31\x4c\x42\x74\x47\x70\157\x73\117\x6d\x36\x50\x73\x68\127\x2f\163\114\x66\x7a\165\155\172\x55\x33\x44\x35\x2b\103\x45\123\117\156\x59\x4d\146\x4f\57\130\x57\71\127\x61\120\x47\x6e\164\x52\146\x6f\x39\x38\x33\154\x55\57\71\x31\x59\x70\x37\53\161\x4a\x32\x51\61\113\x55\155\103\x6b\x6d\66\164\154\x73\127\x7a\x6d\x75\127\x38\x38\x76\x46\117\x76\161\x53\x58\x41\152\53\x35\x44\x47\153\166\64\x67\105\x6a\66\164\132\x66\163\x6b\111\x41\141\x55\x34\x35\61\112\x76\x32\x4c\x41\x6b\62\x35\x56\x4c\127\x55\x39\121\145\172\x4b\x58\x47\172\x52\x62\x30\x78\x35\x59\x4a\171\x55\x6f\x49\57\x54\123\x4a\62\x30\71\x76\57\103\x6b\154\x57\151\166\x51\165\x67\145\172\x30\150\66\x30\151\x36\x6b\172\x52\122\x6e\x48\x38\57\65\x51\x48\x67\105\132\x4a\x2f\x36\x32\116\64\x69\104\122\x41\x32\144\x65\x66\71\x49\147\143\165\66\x59\x65\x70\101\155\153\164\x72\113\57\x52\105\103\112\x74\x72\x38\152\120\x55\64\141\154\155\124\112\111\60\x56\x70\x4f\65\147\60\x54\156\x68\106\x49\60\154\x58\151\142\x6d\121\x6d\166\x44\x45\x32\145\70\x41\164\127\125\113\x67\x67\x2b\x6f\x65\156\70\126\162\x4f\146\107\157\x43\x59\131\x6a\x45\57\x79\155\x43\x4d\156\x75\167\x71\x68\x61\x67\127\x35\x39\x51\x76\x64\71\150\111\x42\x39\x79\152\171\103\114\x70\101\x31\x78\153\x49\x58\120\125\115\x38\162\162\x50\x51\x46\x48\120\x50\x79\120\x61\x37\x7a\x56\x67\60\x47\111\165\144\x39\x41\x69\165\x45\115\127\x49\70\131\171\x72\x39\x65\70\151\157\x4c\57\x57\115\61\150\117\x64\57\114\162\113\113\112\x71\124\x74\115\106\112\x5a\106\105\x52\x54\x5a\125\172\x50\x6d\x49\x68\x41\161\x52\154\126\116\x56\110\166\130\126\101\x43\x6f\121\x5a\150\130\x36\124\104\167\x30\x43\x4c\x64\164\116\166\x7a\x6a\113\156\x35\x33\64\x31\x34\61\x31\x52\117\x6b\152\163\125\x61\63\144\x41\x75\x56\153\x65\x44\x62\x41\x4e\x73\150\x36\110\x4b\104\x47\167\x58\x66\127\115\x6e\144\112\x66\142\167\141\x6f\101\116\160\x48\x32\x69\155\x7a\146\x41\102\x2b\111\57\166\122\x51\126\124\x47\x31\132\x48\x4b\x64\x30\155\121\x55\x69\101\x64\126\150\x65\x4d\x53\x72\x38\164\161\x55\61\x49\x61\x56\x38\x4b\131\x4c\x6a\165\103\157\160\123\156\64\171\124\132\124\x73\106\x35\151\x4b\122\130\143\64\x6a\x56\143\164\172\126\62\114\x4e\70\62\x6e\57\x47\154\x47\63\155\x50\121\112\x36\x52\x75\132\x55\121\x62\x77\x58\x77\x6c\101\66\x65\105\x34\172\156\x4e\x73\57\132\122\x55\111\113\67\x70\112\x48\106\116\144\155\x6c\112\155\142\66\x6b\62\x36\156\x2b\x58\62\150\67\165\67\114\57\131\x6a\x6c\x32\67\126\65\61\160\x2b\x4d\x37\x53\x4f\171\124\157\142\123\160\131\107\x44\x4b\116\x6c\160\x35\x70\x78\x68\67\104\x63\153\156\x32\162\x6d\x4b\164\x33\x4c\x47\x64\171\65\60\112\111\x4c\x54\171\x42\157\x57\x69\x35\x38\166\165\x52\114\x43\x38\104\x64\x5a\x78\110\111\162\x75\112\x4e\x36\101\x35\x4d\165\x68\x31\163\131\x6b\x4e\101\x6c\150\104\101\127\x71\125\104\122\61\102\x55\105\64\106\152\x34\x6a\123\x6b\x49\130\120\60\115\101\x74\61\155\x77\x74\x39\x35\x47\166\x77\x64\160\x36\x48\151\141\157\157\x72\142\61\147\111\63\114\x67\111\124\162\57\130\152\64\162\x32\x75\x56\124\x47\x47\x4a\170\x64\x58\x73\123\x71\x68\x56\153\167\x74\150\x4b\130\x6d\66\120\143\122\130\x31\71\x74\x38\x6c\57\154\122\110\x69\x76\x31\155\163\x2f\x36\70\x76\x77\x72\125\x75\x62\x6f\162\x2f\x46\x4d\x72\x74\67\107\x57\x6c\x56\x61\105\165\127\172\x51\151\x77\107\70\x6a\x62\172\141\124\70\165\x52\116\x31\127\113\151\160\x35\x55\x4a\64\x45\61\x30\x6b\61\x6e\x43\x52\x2f\x52\170\150\x74\142\x32\x4a\x70\154\x31\x6c\x52\x5a\107\66\105\110\x6c\x65\70\146\157\x73\x5a\147\123\111\65\x61\114\115\146\157\101\57\112\67\x30\x57\62\x6e\x4a\x6c\x66\131\x6a\66\x35\x47\x75\x54\x39\120\117\160\126\142\160\64\x79\x4d\101\147\x35\x4b\x39\114\x69\131\x67\x65\x30\170\131\146\132\101\x63\x2b\x73\167\126\x46\155\x4b\151\x53\117\172\70\x51\x71\x6e\x66\152\70\x46\x4a\x67\161\150\x6e\x4b\114\160\126\x38\125\123\127\171\166\105\x70\x31\x2b\x74\x7a\145\x56\172\x47\63\x4f\x4a\x42\144\160\104\153\113\117\x66\x39\x42\107\155\x43\x58\x4c\131\121\161\x68\123\x65\x67\57\x36\x6d\x30\166\130\171\x65\x6b\160\x51\x68\145\x35\x57\53\156\164\x55\145\65\x44\x63\112\131\67\164\x6c\61\x5a\124\66\102\x79\122\127\131\x34\167\x71\x35\x31\157\172\x66\x41\x70\x67\x70\x42\142\x77\62\x39\144\x30\x6e\101\116\162\106\x66\53\x41\x50\146\112\141\x2b\102\x4d\110\121\x54\x6e\x68\x64\x2f\101\x72\x53\x71\x48\117\x75\154\x56\103\x4b\115\110\x67\167\x6a\62\x6e\x49\60\70\x59\x7a\x77\103\x76\x57\146\106\162\127\x43\156\x36\x52\x7a\101\121\x4a\x66\160\161\120\63\106\113\171\x71\x41\x44\105\147\165\x2f\x6e\x63\x2f\113\164\x6e\146\x4e\170\x4b\x6b\x31\x79\53\101\x31\130\70\x52\110\154\x6f\x58\x67\142\110\106\121\x55\70\x42\64\67\x4e\x66\155\x7a\147\x63\152\x67\115\x5a\114\x6c\144\x2b\x6a\x2b\x67\153\57\152\x31\151\144\x71\155\x44\166\x6c\x73\64\x68\x4c\x6a\105\x5a\x38\x57\x4d\x7a\123\172\x6d\152\120\x6f\x61\131\121\63\x31\x57\x4f\x67\116\x35\131\x59\x76\125\111\70\160\x4d\x64\110\x58\143\x76\x49\x4a\x39\x2f\x51\x43\63\x5a\126\150\157\x46\x48\x37\x74\x7a\x55\x49\x7a\x32\x56\120\x57\170\x4b\105\127\62\x6f\x49\144\x37\123\x46\x61\114\x4e\116\127\147\x76\154\x52\165\x73\x67\62\x68\111\60\124\122\x4f\126\171\122\144\112\x6c\163\x48\125\x39\71\x4d\x34\57\x36\x71\60\x6a\x53\x70\x2f\x66\70\x45\x6d\x5a\162\x4c\x34\x69\x43\63\x38\x4b\61\x6e\x6b\x63\70\x52\x2b\x58\145\62\x56\53\110\x75\x39\x64\x73\x31\x50\60\x69\x30\x73\x67\x30\x6d\114\x56\x32\127\115\x43\x70\x49\164\66\x74\167\x72\152\x74\x31\x50\x32\71\x6d\153\164\141\x6f\x4c\x4b\x70\x4e\121\160\x42\157\x47\x6f\152\x62\x2b\x30\x78\x58\x72\117\x6b\124\x65\102\167\153\x63\x37\144\x39\111\147\162\104\x71\67\x5a\126\x37\165\154\x4f\x30\145\126\x78\x76\121\57\157\63\143\x61\x7a\71\115\x52\146\x34\x41\x46\125\x67\x61\x30\152\166\124\130\115\x41\x48\146\x37\117\x61\x42\x56\x51\154\x72\x47\132\117\x44\146\147\172\114\157\104\172\155\x4d\x47\x33\112\167\163\x53\x50\102\60\123\x31\x69\x37\116\x78\144\53\x59\x78\x4a\160\115\x6e\x64\x42\x4f\x58\x79\144\x34\170\x41\107\165\70\x79\x41\x65\x65\61\x72\x4f\x6f\124\151\142\167\x59\152\x31\61\107\162\x4f\107\x41\122\60\120\115\126\x68\105\x65\x74\170\120\x55\146\x56\70\110\111\143\x4e\102\x62\167\110\x68\172\160\x6f\x6c\61\102\x30\63\x73\x4c\64\161\151\x39\104\x69\x2f\x30\x41\x39\x57\x75\123\170\104\x4b\x6e\x2b\150\x6a\171\x74\x38\x56\x47\66\167\x32\107\70\x63\x58\x65\x62\x69\110\157\65\131\x53\x6e\x4b\x6c\125\127\164\x51\121\65\x53\112\155\x4d\143\x75\x74\101\x62\152\x63\117\107\113\x5a\123\153\124\132\66\x7a\x32\x35\117\167\162\x39\x76\146\124\x6c\x6a\x4a\145\x45\x6d\x31\x38\62\156\146\162\153\167\60\x41\146\151\x6e\150\x31\x6c\172\x54\x62\110\x57\x2f\x6b\x49\170\170\164\x79\x54\x4a\66\103\141\x46\125\126\152\x57\111\x79\x51\x49\155\x63\x72\146\x32\170\x53\x72\x6b\141\x70\x43\x6f\x72\170\x73\x55\101\x76\147\105\x75\x56\131\155\x71\x77\x6a\x4c\112\147\143\61\170\x33\141\x77\x79\154\x46\x6c\102\x32\x6b\170\123\123\126\x4d\141\x69\60\x61\x7a\x70\113\x65\125\x41\x75\x56\x2f\166\121\112\x47\110\x4b\x55\x47\x44\x71\162\x49\105\x39\124\122\x7a\142\114\x72\132\x31\x54\x64\103\x38\x45\62\x6e\x31\151\x73\124\53\x44\x51\155\x57\x77\106\x6f\112\x61\63\67\x65\x73\143\x73\x56\x45\x66\116\165\102\151\x47\x56\116\162\145\107\160\122\x5a\103\x2b\127\x57\x77\65\x7a\167\x49\x64\x2f\x6f\164\143\115\x5a\x33\147\x62\x74\x6d\166\162\103\x45\x44\156\122\x4c\x61\117\x59\126\143\x67\104\71\160\60\x35\106\157\x44\x75\x35\157\122\60\105\x68\x4a\x32\x6d\143\125\x58\67\x63\x45\x75\x6f\x41\123\152\x2b\x35\150\x41\155\x67\110\110\x67\x59\x75\104\x79\145\123\x67\141\166\x51\x70\x33\x66\154\101\107\111\170\x50\157\x6b\x57\64\171\165\x48\152\x63\x32\x43\57\104\x77\x74\124\164\x4a\166\66\127\142\143\105\130\151\107\107\152\x50\x34\131\126\102\x32\x4b\x59\x73\112\61\156\x52\156\x6c\151\160\155\115\x36\x77\145\x75\61\111\110\x39\x59\124\107\x2f\160\60\x50\x6e\x78\160\x52\101\154\164\144\66\157\71\x61\x63\x30\170\146\x6f\101\167\x4d\63\x61\170\116\x74\107\106\x2f\x7a\166\127\152\171\65\x57\144\x5a\x52\x46\x76\67\x7a\71\110\x34\x56\x6d\110\131\x49\x74\x33\x49\x79\x61\x53\157\x44\125\114\151\111\117\x35\x54\x76\146\x55\162\145\141\x41\x33\x45\110\x50\x58\x4e\107\x6d\x31\103\57\161\x63\171\160\157\63\x31\x54\116\x31\x37\x74\106\x66\172\110\x74\122\151\162\61\x6f\106\164\x4b\166\153\155\112\x52\x34\145\142\60\x79\x34\142\x73\x6b\151\107\71\x62\x73\57\x68\120\x77\x67\63\147\x77\151\124\x4a\x72\x57\63\113\x2b\146\71\141\101\57\x45\x65\102\x63\121\x5a\x61\154\x4a\x4a\156\157\x50\66\x76\x53\x79\x6a\162\x59\113\157\x66\143\71\x4f\132\132\154\x71\x62\111\x4c\x37\x6b\x4b\154\x38\61\167\165\151\67\x53\x6d\x30\x37\123\x64\x42\113\x46\x31\x6d\x31\x6e\x57\160\x68\x42\157\x45\64\x51\x63\105\x49\x61\151\x4d\170\x57\x4e\104\106\53\110\x64\145\64\102\x48\x44\x44\x6a\x6a\x75\x73\102\x35\57\104\x53\x34\122\x55\x47\157\70\x45\153\x59\156\x5a\x6f\157\121\162\x66\120\122\132\x37\x78\x4a\101\112\130\172\x4f\x51\127\60\x45\70\121\102\x6b\x68\x35\x35\x7a\x32\116\171\154\64\166\x36\122\x41\113\53\x44\124\x4a\x34\172\161\x4d\120\126\x35\x47\172\123\x33\x4c\70\120\x71\142\x68\67\150\154\116\x4c\x61\x34\165\111\104\147\117\x75\x4f\x54\113\101\x4f\x53\132\x48\x48\157\x6a\x49\x31\103\x42\107\x46\x58\156\x34\x58\x7a\x4d\x32\x77\117\x62\x33\x65\171\160\x42\70\144\151\x71\113\157\x7a\117\x53\x2f\156\x51\167\121\151\x43\167\127\x7a\x69\x6c\x70\71\111\x4a\x79\x6d\x6d\141\x35\167\101\x4a\57\x35\146\151\154\x34\150\x70\x64\122\x32\161\x74\124\116\113\x6f\x34\160\66\x65\x49\151\x62\x63\112\117\x30\160\146\111\x6e\x4d\164\x67\x71\x6f\x50\150\x51\127\114\106\117\x55\156\67\x4e\x53\67\120\x39\115\143\x51\153\x39\x4f\x6f\147\x4b\x65\x42\x35\x74\x55\x76\x64\123\112\x73\160\53\114\144\x6c\125\61\x33\113\103\x2f\147\x41\x62\121\x58\61\x38\160\x62\x6d\162\165\170\x4e\153\155\152\145\112\131\61\x55\x41\117\x73\160\53\154\124\x48\x31\126\115\x5a\x55\x43\x4f\102\x55\132\x55\172\66\144\126\53\122\x49\107\166\144\115\147\107\111\163\65\x4d\x74\x64\x79\121\102\153\x61\155\152\131\x6e\155\120\x69\117\165\x64\157\x64\62\x48\x54\114\x48\x2f\x63\x77\x41\120\x4b\x47\x32\146\x30\102\116\153\x34\154\67\x64\161\x35\x37\x4c\x74\x34\x50\111\x4b\x36\x34\53\x6a\171\132\x6d\164\146\150\x50\156\x6c\172\x35\x36\57\153\101\x6c\x53\x58\132\x2b\x2b\107\165\146\147\x58\x75\170\x6c\x58\110\170\x6f\x55\153\x43\127\124\112\153\x67\53\x52\x61\x7a\171\x47\121\113\x39\x5a\x5a\101\x6b\126\103\104\x73\70\x6a\x66\x42\x6c\146\x35\131\121\170\x69\130\152\x77\x51\x45\x45\62\164\x44\106\x63\x47\70\151\104\x65\126\132\x30\x32\116\x6a\x52\164\x31\116\67\124\115\146\165\x48\x67\x75\x73\x73\145\x76\x78\53\x79\63\x41\x2f\105\x31\170\161\62\x41\70\141\x6e\x44\131\117\124\167\x53\125\163\160\147\145\171\167\166\147\162\x58\x76\x72\111\114\71\x34\x31\131\150\x69\117\x35\x4a\x51\x69\x56\x32\x78\101\121\x78\x6c\150\x4a\115\146\x45\x64\x6a\142\x53\113\143\154\114\62\125\144\x38\120\154\x51\153\x58\70\x66\x37\x6f\x49\x53\126\x6d\x65\x43\x39\x42\x59\x48\53\x76\x32\x44\65\110\107\x30\164\x66\x5a\123\x49\x39\x31\170\101\162\156\121\x78\x45\x72\x57\167\x76\131\61\x41\170\172\150\x5a\112\121\x4e\x51\163\x55\165\111\163\x4b\131\63\x31\127\144\x56\126\102\x54\x42\x55\164\x63\x4c\115\115\x6d\147\147\66\x6f\101\x50\61\x6c\172\71\154\x6b\x6c\101\x58\x4a\101\147\141\130\x50\x79\x43\121\x62\x78\x53\164\162\x6e\151\110\x34\127\116\165\101\x2b\171\120\x45\x2b\x72\x73\130\122\x55\x72\x76\106\x63\x6f\155\150\x76\x6b\x55\x7a\123\x69\172\147\170\61\x69\103\122\161\x34\x62\x2b\x6f\x74\162\x55\127\x71\113\x4f\x46\102\113\124\x38\x34\143\103\x4d\121\124\115\x7a\x31\x6d\x49\164\103\x4a\x75\x36\x4e\143\x66\x76\x47\x33\144\x64\x31\162\x30\147\x6f\x65\114\x66\164\124\x65\x66\x6c\x72\67\116\x55\64\60\157\x76\170\70\163\x79\130\141\x62\70\64\172\x6e\125\115\x6a\104\x79\x42\x77\x34\x48\x73\116\x67\x2f\x6f\57\152\111\113\67\154\70\104\63\x36\x78\164\127\x50\160\x75\103\x4e\116\62\117\63\152\151\123\x77\x73\124\144\71\150\64\57\150\x73\142\57\x33\x76\x45\167\126\143\150\x43\x77\x2f\x2f\x61\150\x6d\107\x30\71\147\165\116\x73\x62\151\x77\167\71\62\x6f\x62\x6a\x61\x68\x54\x39\143\x79\x38\x37\x50\x44\x76\x44\x7a\x4e\x5a\143\61\x42\x6b\x52\126\x71\156\166\x47\x41\156\x47\170\x44\167\x41\145\x56\165\162\x64\x70\67\x6b\161\x63\147\112\x38\x6c\107\x44\x4a\x34\x6a\x71\x6c\x37\x68\162\106\127\x71\131\x71\x53\154\105\155\163\141\145\102\111\x4d\157\x34\160\x6c\121\x6d\127\165\x6f\102\131\x55\x39\x53\57\x79\121\x76\112\130\x6a\x30\x39\126\130\x6d\x55\155\165\x75\165\161\70\117\105\120\164\x72\x44\67\x55\62\123\125\102\x63\161\115\x41\x32\67\x77\x65\x79\151\x44\62\x55\65\131\131\x4e\x39\x62\153\120\151\132\112\120\x49\x69\x76\x75\112\60\110\x70\x72\x77\x52\101\112\x7a\125\x2b\x58\x43\141\123\116\104\141\126\x44\x45\x6a\165\x6d\165\x5a\126\101\x71\131\114\x41\x45\x64\x4a\61\x72\x4f\154\x78\142\116\127\x45\157\x67\x54\x65\106\x77\x6f\x34\60\110\160\x6b\160\132\143\70\124\170\x30\x6c\x39\121\144\x53\116\x73\x58\153\x59\x57\144\x73\166\142\x2f\62\162\x73\x53\115\103\155\113\114\106\x31\x39\151\113\114\152\x65\111\62\x4f\x31\x38\64\x67\x79\165\107\x4e\x49\151\x69\x49\x49\x6f\x6f\x77\x69\x2f\x65\x71\66\x2b\x71\151\x6a\x74\x64\66\x66\x59\x6f\157\111\101\147\151\x65\101\x4d\x69\162\121\x4d\x4b\161\111\163\113\171\151\x48\111\x49\121\x79\111\x34\x6f\127\143\x6a\123\102\110\x67\67\122\x41\x51\x33\x66\61\x33\146\124\x64\130\x57\146\155\62\x78\x65\x52\114\x37\131\x65\x37\70\x76\117\x36\x71\113\141\164\x64\x65\x76\x2b\x62\66\x66\x72\x4b\x36\x4b\171\x73\x69\x73\x6a\x44\57\145\151\63\143\x46\x32\x4e\166\62\147\142\61\65\104\x39\147\67\70\x73\103\x65\71\152\x31\x59\112\x32\125\x6f\171\125\150\161\113\x6f\107\x52\105\x59\x2b\x61\152\x46\142\x50\171\144\162\x58\103\104\64\70\x2f\x32\x31\124\x41\x63\151\x58\x71\113\66\x54\x48\62\x64\116\130\147\x35\156\53\131\x5a\102\x44\x33\123\x68\152\x42\x73\170\x44\64\x71\x71\157\x6c\x6f\151\x49\x69\x79\x48\x69\115\106\x73\66\121\170\x50\x77\x71\143\64\153\x6a\63\64\146\x39\x44\x61\171\x54\x59\x44\147\172\155\60\113\x35\155\x42\157\123\164\x5a\104\57\x76\112\164\x52\x54\151\124\x47\131\x41\171\x61\106\x2b\120\111\150\103\x33\64\x74\120\x52\x4a\153\62\106\x61\x4a\162\156\x75\111\x32\x57\115\126\67\x41\71\127\x45\x34\x32\110\153\115\166\63\143\x77\115\142\x49\x51\x30\x49\x69\162\156\x51\152\157\166\103\x6e\x52\150\147\160\x54\x6d\120\130\114\164\x58\143\172\61\x67\57\104\x7a\x59\x31\105\x61\x58\154\x6d\154\x54\x6c\120\70\x52\67\x44\x75\x77\x61\152\53\x43\x2f\105\x2f\x33\x39\151\x48\162\x32\x58\x4b\130\x57\x48\x78\x49\x52\x74\x31\102\x51\x74\53\125\x59\x61\x69\112\157\114\146\60\127\x49\62\113\x57\147\x31\x56\141\102\103\x44\106\161\x6d\125\172\x41\70\62\172\66\x43\x4d\143\x5a\123\121\150\154\64\150\x6f\112\x58\63\x62\105\x4a\101\x6b\x6e\x56\x5a\110\x6e\x53\x44\170\172\71\143\104\57\x32\144\156\106\62\152\x70\151\113\x71\161\x2f\x6f\x36\x45\112\121\x6d\112\132\x49\170\145\71\x78\65\105\x31\142\155\53\172\x77\113\x65\x38\x52\107\x68\x59\111\116\x66\x4e\x75\71\104\x49\x67\x36\102\66\x34\70\132\104\x66\x30\x37\152\64\144\x64\x75\x64\126\121\x55\102\x6b\107\113\164\70\111\x75\x71\x78\x6a\x61\142\x42\x39\x6b\x6b\x47\x2b\161\x63\172\x5a\x43\64\x52\70\122\x4b\x31\x6c\x57\127\x2b\x78\x41\123\x41\x48\124\x77\x69\x52\152\x64\x6a\x68\x49\127\127\63\x53\x32\x4f\x45\x65\x62\147\x4d\x68\70\x6c\x72\70\x54\114\127\x69\x41\x46\x35\x4d\172\x74\x2f\x44\167\x2b\x43\x70\x54\105\114\x4d\x49\x69\111\107\142\144\x32\146\x56\63\117\x6d\171\x36\x49\x57\115\x50\117\153\x38\111\147\x74\x59\x74\x65\x44\131\x58\x79\115\x55\164\x30\153\112\110\x6e\x73\x4b\131\x67\x6f\151\x44\x38\145\156\x59\x39\152\70\126\67\x44\x6d\x77\151\172\x54\124\x52\x53\x2b\x4c\x7a\x69\71\x6b\153\x4f\x30\x2b\x2f\127\x56\112\123\x65\x7a\x4b\164\104\170\125\x52\142\125\130\x43\147\163\111\113\x73\x4a\x36\x2f\x42\165\x31\x44\120\162\x41\x47\x2b\115\x44\117\x33\170\116\124\x52\71\x6e\x61\163\120\x4b\172\x37\x2f\x58\141\125\x4c\163\161\x53\102\113\141\x74\127\106\x78\x2b\x35\x63\132\x43\x52\x6b\122\153\x57\x69\141\143\x4c\x50\x58\125\112\x68\143\170\x44\x6c\x75\63\x65\x64\153\x38\166\143\53\125\103\x4a\x61\x36\x69\150\102\x70\x4e\x54\162\x79\x6c\x4e\x52\x69\157\66\x63\162\x34\153\157\x6e\x4e\122\121\x58\126\153\x48\x2f\71\x46\150\x44\120\121\x37\131\152\x52\60\x51\x34\x76\165\x2b\x67\62\x35\125\x46\170\x6a\x36\x58\150\x56\125\163\116\x56\127\x63\x5a\142\153\x6e\x4e\x6a\x75\x41\144\64\171\167\147\x4e\x4e\x67\150\165\65\71\132\x46\x73\x73\104\x78\x51\x63\x4a\x66\x44\66\x57\x32\106\153\x6e\x51\x38\x78\x72\x6f\x2f\61\167\x57\164\x79\x6d\x4a\x75\106\x50\107\131\104\114\63\x79\x48\163\x30\x55\107\144\66\x2f\x41\x62\x38\57\123\x75\157\57\x57\x53\x52\144\132\106\107\115\x49\x51\x66\131\141\x79\x39\57\x44\x63\123\114\160\117\111\x64\102\115\167\57\102\x63\x6a\60\144\x74\x73\64\x4b\x65\171\116\x65\101\x6c\122\163\126\124\x75\132\x44\155\117\164\x6d\x35\67\160\x44\x5a\x4d\130\123\117\x46\103\x6e\x46\x58\x56\124\x6d\116\165\113\x36\x48\x71\x50\120\157\x6f\147\101\103\x7a\171\x51\141\111\57\x6f\x77\147\x4c\142\121\x57\153\110\x67\162\x69\x74\x7a\x56\147\170\x31\x36\66\x2f\156\x46\x64\127\146\x79\x6b\65\x37\x32\62\71\114\x71\x79\171\x6f\x53\x51\x62\x31\143\126\x68\130\143\101\141\146\x52\116\131\111\x33\x71\103\166\142\71\x59\x71\x71\x51\66\x59\x36\x4c\x6f\x73\x61\155\x51\161\x79\122\x69\53\x31\110\x41\x31\64\x58\x37\x55\103\x32\x74\66\x6a\123\117\161\x36\125\170\x39\x43\x45\151\172\x6c\156\162\x6e\104\x4d\x53\144\x59\x37\x62\143\150\x55\x52\x33\x53\127\x69\x73\114\x4a\113\x57\x46\x32\x78\x6a\61\111\x65\132\102\x43\x4c\x64\x58\61\61\x34\101\171\x34\x33\x44\x63\103\143\x78\x51\110\167\x2b\113\x46\x6d\70\167\x36\x55\x65\x64\130\x35\152\166\x5a\x48\111\111\x49\x53\141\155\x6e\x41\x78\x67\122\x46\x34\x68\102\156\x4d\x4b\x63\x77\171\130\x4d\145\x64\172\x47\x49\60\x63\x76\x54\x62\147\x47\141\155\154\x32\x37\x30\x55\120\57\x41\x62\70\x2b\x78\117\113\53\x2b\x77\156\162\x4b\x59\x37\105\x63\x43\x7a\110\101\170\105\170\115\64\x4f\160\155\66\x6c\170\x6a\116\113\123\x56\x57\121\x51\x31\x70\x69\x46\126\x6c\x63\60\163\145\53\x6b\113\132\53\121\155\x75\152\150\154\113\x37\x52\x55\170\103\144\x65\102\71\103\117\x76\x72\x7a\x7a\124\x49\65\x55\122\171\x50\x2b\164\156\130\x4c\x79\x41\142\150\141\x75\106\150\105\x52\124\103\x6b\70\125\x4a\60\x51\112\x43\x76\164\116\x66\x51\143\x2b\x70\106\150\x7a\x6d\x4c\127\66\172\57\123\53\154\x74\155\x35\150\x6a\130\x56\112\154\112\106\161\x43\143\167\71\x44\x74\152\x6f\x57\125\x33\x42\x59\x31\x41\117\x55\x62\x4d\147\x45\x47\x48\147\67\127\x63\61\x65\101\156\x66\105\157\153\x69\x55\115\x6b\x6f\x69\122\60\x6b\162\167\156\60\x7a\x6b\x61\x30\115\161\113\132\117\111\117\x6f\x4c\155\x43\x6c\x30\x30\x79\154\x6e\x33\x39\130\157\x58\115\x56\154\x6e\x38\x57\166\103\x66\123\141\x49\x6d\113\127\111\53\x43\x5a\x2b\120\x6b\127\61\121\x38\123\53\122\62\122\62\153\131\x78\x4d\x77\x6d\x37\143\x77\x38\x4c\x75\x59\165\x6c\x50\115\171\x64\57\102\x57\x65\x6a\145\156\157\112\124\x68\x6a\124\x33\x6c\60\102\160\142\127\141\x69\x4f\x70\x2b\x49\61\x51\x45\x36\x37\x31\x6b\x69\x63\x69\104\161\164\x6c\166\x64\103\x30\x62\110\x4e\x4c\111\x38\114\105\153\161\70\143\65\124\x32\x4b\x71\153\x52\166\x4b\154\111\x56\x56\63\x45\x4d\x72\x57\x6f\x63\125\163\70\105\64\151\53\x4a\x53\57\x30\x31\112\116\107\x59\x77\53\155\115\x6a\116\x49\111\60\112\x6f\126\x41\x2b\102\x37\166\x6f\x57\151\124\x57\65\130\162\x68\154\125\x46\66\x4d\x4b\x2f\113\x36\62\151\x44\110\67\105\x4b\147\157\144\x47\x38\x4c\166\x6e\x79\126\127\x32\x35\x52\153\63\x41\x74\x78\106\x36\164\x6b\70\105\x38\x31\x73\x59\154\67\67\64\142\146\107\60\115\x6b\x41\x41\116\141\x4a\x6a\x79\x4e\x4f\106\132\111\x77\64\x65\x34\x63\x59\x6d\167\156\x76\x6f\67\153\142\125\71\150\153\x6c\x4e\x4e\x39\123\167\x5a\x35\x35\103\117\141\x46\154\x7a\x43\114\71\156\x2b\122\110\x76\115\154\105\x57\x70\154\131\x57\x5a\113\111\x77\x53\144\122\107\155\x6f\112\x59\131\x68\x59\x39\144\x31\130\x53\x4d\122\x55\163\111\x5a\143\x42\x50\132\x48\x4c\x33\115\123\x38\151\x67\x61\x5a\x53\x33\126\x66\153\x4d\x6b\x48\x31\154\115\151\x5a\x67\131\x79\150\x62\160\x4e\150\110\x73\156\153\152\105\x54\x68\120\102\117\152\167\104\162\x4e\120\145\101\x75\x73\125\116\x4e\x4b\x63\x69\63\x2f\x37\130\147\x48\67\60\x39\127\x63\151\113\123\141\x76\x71\141\163\161\142\x71\144\x62\156\70\x4d\146\x75\x2b\163\x74\65\153\x31\x39\x56\x31\150\171\x47\106\x72\x7a\151\x38\x32\x75\102\112\170\x42\x62\65\57\165\155\70\121\x39\105\103\x6a\x7a\x66\147\130\65\x6b\x4e\x78\x6c\x57\x55\115\x4e\x6c\x48\x6e\x47\106\x72\x4d\x42\60\x6f\123\x53\x44\x46\154\106\x78\124\151\104\x4f\151\x65\65\x4e\123\x2f\x75\104\x47\x53\x69\117\x55\57\146\153\x35\x4f\67\x4c\x57\x49\x4f\x51\x44\121\x58\67\132\154\160\x54\146\x47\113\117\x4d\x51\102\x55\107\120\160\122\x6a\x50\x62\x4d\122\62\x47\x73\x41\63\x38\165\x38\62\60\x69\61\x79\x4e\x50\x55\65\122\102\x6c\x33\x53\111\x72\64\171\x52\161\64\151\170\106\124\132\x6f\x37\x49\171\x61\x55\67\104\146\x37\x31\x69\105\60\x55\142\156\141\71\x62\105\x66\157\x51\x53\x72\60\x4e\153\x4b\127\x43\160\x4e\152\x62\x68\106\x70\x35\x4c\x70\x4a\x54\130\123\111\60\125\x52\163\144\141\x32\152\x45\102\x4d\x52\67\x34\x71\167\165\x6c\142\x71\164\66\110\63\122\171\x43\107\111\x6f\131\160\141\x61\x66\x36\x4a\101\x6b\164\x4a\x2b\155\67\x61\112\x32\57\155\x6e\x79\x49\x38\x36\147\117\x55\x5a\x71\x4c\x42\156\x51\130\x57\125\166\x6e\111\152\131\x54\x4d\165\x6e\x63\x35\x35\164\x37\x4e\x59\x61\141\x46\x30\x77\71\107\x6b\x50\105\155\155\125\114\x41\x41\x61\61\x42\x57\166\x77\x68\127\x44\x50\156\x2b\x4a\113\x78\x4e\157\146\x74\60\111\x75\x72\121\70\x4e\101\125\x30\64\x57\x30\110\142\x30\131\x34\153\x37\111\x67\153\145\x6d\x6f\62\x32\110\164\x4c\x77\x4e\65\130\66\151\101\x58\x6b\126\x4f\x4d\x36\x6d\x37\x4e\x67\x51\x6e\x45\144\x55\x48\x39\120\162\126\x7a\166\154\116\x51\x44\166\142\x37\63\64\x4b\x56\x4f\x6b\x47\126\132\x43\124\171\103\146\x52\127\122\x42\171\166\x32\65\x6b\x55\114\105\67\x45\172\x4a\130\x62\116\122\106\x37\x6f\x58\x6f\66\70\x6f\153\x5a\165\x43\x59\115\x67\x79\105\x69\102\124\x43\x73\71\x43\112\104\x55\61\x56\x61\123\x79\64\x4a\116\x62\64\57\x4d\x36\155\x39\x4b\x35\x4f\x2f\x74\x35\x51\105\x72\x69\155\61\x43\141\70\164\154\x58\101\x6f\x4b\x2b\151\x6c\110\x4d\x4c\156\x6b\102\x61\124\x69\x4f\130\102\115\x66\x37\171\x41\x34\154\131\x39\57\153\x30\106\x4a\157\53\163\x4f\67\x33\111\x52\x45\156\170\x79\x51\116\x49\x32\114\x31\61\172\53\x70\x39\103\132\x58\111\150\x61\144\x39\x53\x4a\x59\x79\165\x69\151\x56\x4d\x31\x4a\x79\70\110\x6c\156\x38\x7a\x69\x62\x37\152\x4e\155\154\53\x51\x61\x47\x50\x42\x37\152\166\106\130\124\x56\x46\x67\x6d\161\x56\116\x6d\x4d\132\155\x48\x4e\x78\111\155\x37\x4e\63\x41\x31\x6e\x6f\155\x70\x36\152\x65\x39\x35\x65\x50\141\x2b\57\167\132\x2f\x6d\132\x62\x2b\x35\115\114\121\x49\130\x30\x62\x6d\x72\122\143\101\171\x57\141\112\160\64\65\110\x72\53\71\70\x42\145\113\107\161\x6b\103\x31\106\131\x55\107\153\x37\x68\x35\x30\x70\x6d\x33\60\x75\x33\66\x2f\145\66\x4a\164\155\117\105\120\x64\x36\132\105\132\71\x33\x50\132\x30\x76\x78\x34\121\x31\x78\141\57\114\x55\145\103\x7a\171\x46\116\x2f\x6c\141\171\70\104\x4d\156\64\x72\150\70\x49\x71\x4b\112\x4d\x53\x33\145\156\121\166\x6c\127\67\145\x42\x6c\146\x4d\114\121\x46\153\x68\163\60\147\x79\111\x71\x35\167\x4a\x32\113\165\112\x75\x4a\x4c\113\113\155\111\111\107\x39\x2f\x61\126\x52\x51\154\143\115\x59\x67\62\x56\112\x4d\166\x4c\x50\x59\71\142\x55\x48\x37\x49\x63\61\x62\x4f\120\116\117\111\x49\x49\153\x35\131\x36\153\162\x45\142\x52\166\62\167\106\x6d\107\x69\120\x65\66\x45\114\x45\x38\164\x50\106\x67\151\146\x67\67\161\x65\166\x5a\x63\157\x2f\116\157\145\x53\53\166\x7a\172\167\103\154\x6c\x4e\x49\167\x6a\110\x6d\126\x38\x5a\102\x58\x2b\116\104\x56\105\x68\x75\x54\x67\x52\141\67\x37\x5a\62\113\x42\105\x4c\104\167\x54\x4a\141\112\123\x4a\x56\x56\126\164\172\145\x58\112\151\143\x52\166\71\166\x6d\x53\115\121\x2b\x72\x68\x49\x78\x52\x76\x69\x4a\x58\x37\153\123\x38\x65\145\x31\x76\60\111\142\63\62\102\116\170\113\105\120\124\143\x50\x37\125\x30\122\153\x71\x6d\154\106\131\106\61\x54\61\x76\167\x55\x73\x36\x6e\x72\67\x4e\150\x4d\x53\x67\x6d\62\157\x4a\154\101\57\x34\146\x6d\53\66\x48\153\x51\x30\121\x69\155\153\x47\113\x71\x4c\x41\x67\x41\164\102\147\x33\155\x48\144\x68\x70\x32\x51\66\170\x73\101\x2f\x67\164\x65\x42\x47\x6d\x73\171\x57\x38\172\103\161\x49\71\112\x6f\110\x64\x44\144\x30\117\x61\103\126\x56\x4a\114\x47\156\146\147\x76\62\154\107\x2f\101\x66\147\53\x50\105\x35\141\102\x76\124\141\142\x5a\x2f\x6f\67\x61\70\x65\x4d\x4c\57\x46\x7a\x61\x6d\146\141\63\152\x39\144\154\x2b\x71\63\x65\x7a\x4c\x79\165\x56\154\116\x50\61\x33\x6c\x61\x71\x78\x5a\x39\x66\126\x6d\117\102\130\130\x69\104\x31\71\167\53\x47\126\167\x62\x4f\x68\x73\x44\114\x43\61\64\152\x71\x75\115\x4b\121\x4b\x44\155\112\70\114\166\x63\x50\66\x4d\x46\57\167\143\147\x59\x30\x33\x34\101\x56\x4c\x56\111\x72\x46\x6b\64\104\157\x6f\x7a\x64\153\x4a\x6b\x54\62\162\101\x50\x49\63\165\x71\x71\x6d\157\142\x31\x46\153\113\x66\x4b\x58\x33\124\x67\120\x6b\x51\x65\126\131\x4d\x78\160\x73\161\120\62\107\x32\123\x6b\154\x69\x49\70\x51\65\x4f\172\115\104\x6a\x61\114\x42\156\x2f\x48\x69\x67\61\130\124\x4c\130\x72\x30\166\x68\x6e\x58\143\x42\107\160\x4c\x36\104\122\x52\x57\x45\60\106\171\x47\x71\x4b\x6b\164\117\126\151\111\164\156\x72\x39\111\123\x73\x5a\164\x76\x4b\105\x77\x61\163\167\122\x4b\141\x69\167\167\67\147\164\113\x2b\x35\x72\144\x46\110\x6d\112\150\x46\115\x6f\164\107\60\53\x2b\146\110\70\x69\x48\x7a\113\x78\154\x35\x48\x59\x57\122\x33\111\163\x34\x6b\63\71\x31\150\x7a\127\125\167\x74\x43\x41\x35\x53\101\165\165\x58\113\x76\110\x6c\x34\152\x37\147\63\62\x4e\x48\61\x45\67\71\x43\164\x74\124\125\114\64\x7a\x41\146\x32\x62\102\71\x59\x43\70\64\x46\x4f\61\121\x4c\x55\152\112\x61\x74\121\x45\157\x75\x48\x59\x73\65\x4b\125\x4d\102\63\71\142\64\125\144\x45\150\63\65\164\65\x7a\143\144\150\x2f\x34\x56\67\x79\152\x31\105\x54\110\106\117\x56\x37\x2f\156\x71\116\x4b\172\154\x30\x6e\x2f\111\x68\65\x59\113\x57\152\x4b\x6e\166\x64\x56\x4e\120\127\x4f\146\x5a\x30\70\x79\x50\x4b\116\x53\x4a\53\142\x31\x63\x68\x74\65\162\107\x79\151\x65\x2b\x38\121\x56\x30\170\141\x69\x61\151\x33\110\x53\155\x50\x58\170\x4b\x75\x33\121\x35\x33\x35\105\120\x4c\113\x69\x54\x77\146\164\171\x44\x39\117\155\x63\x64\132\107\131\x62\x4e\106\x4d\61\170\x46\x79\x57\x32\x50\153\x67\155\x2b\x4b\102\170\125\151\x76\x45\103\x68\x4f\63\67\116\x45\157\60\x55\167\63\63\x59\x6d\110\126\x46\107\64\x71\x6a\130\x2f\x7a\112\x75\111\x57\x46\x4c\x66\x55\x55\144\x4e\x69\106\x73\125\x69\166\x50\x7a\167\x56\162\131\110\x58\61\172\146\x63\104\x36\x2f\104\123\167\x79\57\x65\171\x68\107\101\127\70\104\61\x32\162\165\116\x4c\x50\116\146\x78\112\146\113\x41\67\x2f\x33\156\x76\x69\x34\103\x76\150\x56\111\x6c\x66\123\115\162\x4a\x6b\163\131\153\x7a\x5a\125\131\x4a\62\155\114\114\166\x2f\102\104\x73\53\x68\104\x49\x79\x53\111\143\x6a\115\101\x39\106\67\70\102\x46\x36\x45\x7a\57\172\170\125\x54\x37\71\x5a\x73\x59\x4e\x46\61\152\x67\x53\x45\146\x46\x77\157\153\121\125\67\x53\x39\x6a\151\141\x77\154\112\152\x5a\123\147\160\x57\x71\x66\61\x2f\107\x4c\x62\x61\157\x74\x62\x38\114\x41\x31\105\161\x71\170\x49\x33\152\x4c\131\142\145\111\132\x71\x38\132\x7a\103\62\x37\147\x54\163\121\103\x4f\x52\x42\x49\x57\153\x4f\130\125\144\x67\167\x32\x39\122\102\145\x2f\152\x6a\131\x43\x79\64\x41\141\67\x59\x71\152\x32\x46\70\144\x42\142\167\x59\53\x32\x61\114\x43\146\127\164\102\x4f\x50\116\x53\x56\x66\64\150\x6d\x6a\x49\130\162\x35\x70\x49\141\104\x76\161\x56\105\x33\x4a\67\x6e\x47\155\x74\113\x72\x2f\x6c\x37\65\160\x78\105\x36\x76\x45\161\143\x34\x4e\x4a\121\x37\132\142\143\x4d\123\x43\x78\142\116\127\x77\x34\102\x62\x33\x34\107\142\x66\x61\x39\x43\61\163\65\123\113\113\161\117\101\x4c\x6b\164\114\105\x56\105\x56\x63\115\x31\105\141\x6b\153\62\156\132\154\125\x74\104\x50\110\x4d\102\x70\111\147\131\x7a\x58\x64\124\x31\156\107\x4d\x71\x75\162\125\121\115\x53\153\x53\x48\157\x4f\64\x70\x5a\155\x6f\x6f\x79\142\121\x66\102\x35\x64\125\x32\x39\x45\x56\167\161\x6f\155\x49\67\110\x6b\170\x75\141\121\x50\x51\x4a\x61\x4a\x33\64\164\122\x36\143\x52\x6a\x32\x74\x41\161\150\x62\53\x77\110\101\x50\x42\71\131\70\64\x34\x42\145\x38\60\64\112\x6d\x32\x45\x65\164\x70\67\104\117\123\154\152\x2f\x42\125\124\x7a\126\x70\112\x48\153\x2b\130\163\x6c\x4a\x72\125\x4c\125\127\113\171\x70\126\x45\x45\65\111\x52\x6b\x52\x65\65\x4e\x61\x75\x76\x74\101\x74\x56\122\x4b\x78\151\113\x38\x74\x78\62\x37\x79\150\x32\63\150\x57\117\x4d\x73\151\x6b\112\165\x73\112\x66\x58\x65\61\x53\x77\67\x4a\x78\125\x53\x61\x38\x74\103\103\114\104\x44\x6d\x38\x45\126\114\60\126\x46\x6d\123\x50\x70\x35\x66\x6b\151\x45\x74\147\141\x72\123\x2f\x4c\x33\105\113\x32\x55\156\x33\x33\53\x4b\x69\172\125\x35\x31\145\163\67\x48\165\61\x34\62\61\141\x73\x63\x46\x63\122\114\x37\144\102\70\114\167\x58\x32\125\x38\151\57\x6c\x4d\165\101\143\125\105\x2b\171\144\126\x47\64\146\151\123\114\145\161\153\104\131\x71\x6b\x54\x49\121\143\124\x59\x6c\x64\67\164\117\x2b\x4b\171\127\x61\145\x68\65\62\x67\x4d\x2f\131\x6f\150\x59\156\160\60\x4a\x4d\102\145\112\165\113\x67\166\153\x76\105\157\163\x47\164\x4d\64\120\145\102\125\162\x46\x71\x30\127\160\126\x4e\154\x46\x6e\x35\61\117\x78\113\x50\111\x6e\131\147\x5a\x47\165\x35\145\64\122\111\x77\x52\163\x68\163\145\x2f\172\x62\x56\171\132\x6f\x59\x68\x58\150\x78\x6f\x61\64\x61\x62\x6e\x56\102\x43\130\157\x6c\127\x78\x4e\x4b\71\x42\101\x6b\142\x49\x30\x6b\146\x50\125\114\121\172\170\130\x64\60\x67\157\x45\154\127\x45\147\x30\x4b\124\156\145\70\x51\x4d\x45\x72\x33\x4b\60\157\x62\112\x6c\x34\x65\x67\67\x41\x36\x41\141\x6d\x61\x7a\165\x71\x74\x7a\x50\x55\147\x6f\151\x43\x4c\x64\71\x53\x4a\102\x30\156\x53\107\x37\145\155\x53\x62\65\57\121\164\x7a\x2b\160\130\120\145\66\x78\157\x38\111\x6d\x6e\165\x46\144\x58\x54\112\142\x7a\166\170\142\163\113\165\x48\x66\147\147\120\x74\67\x66\125\x32\65\x45\x79\161\x5a\62\x59\x39\161\65\142\170\147\x71\x67\156\111\145\65\x55\x53\x45\x59\x6b\131\66\125\x61\x6d\x66\x4e\165\x78\156\105\141\x67\x6f\113\121\103\x53\130\151\65\x59\67\x54\65\x35\151\x6d\x77\x61\x38\165\105\126\x47\124\61\x61\166\x71\71\64\x56\x52\165\x61\x7a\x39\113\x71\66\150\x59\x76\x39\x52\142\x4b\x68\x49\132\162\132\x4d\172\167\104\157\112\143\x54\x79\151\70\60\122\x47\121\x72\x63\60\113\x45\x46\x4b\x49\x77\x31\172\x69\x6d\x50\x53\x6b\x4a\x45\x77\x55\x46\x57\x48\147\x51\153\x46\105\101\150\141\125\113\101\123\147\x70\62\x4d\x43\x77\61\164\x4d\122\x57\132\106\167\x6c\x4b\x77\x2b\x4e\x55\144\162\130\x48\x39\x6d\x4e\x65\123\107\125\x50\x72\x72\x39\x58\130\150\57\x68\123\150\x55\x33\151\132\150\111\104\x2f\161\171\x4f\x45\x51\x36\x41\x76\107\166\x56\x41\x76\x30\x65\110\x5a\144\x66\x53\152\x32\x63\151\x54\x69\116\154\x6b\x49\x74\65\x48\x39\104\64\156\130\x50\x30\155\x72\166\x70\121\x78\x66\66\114\x52\x41\102\x41\104\x71\116\x6a\123\x65\x54\x49\x2f\152\66\x37\65\x57\x6f\157\114\110\125\x30\x46\155\164\160\x35\150\x4a\x67\71\x79\x38\x62\x68\152\x39\x54\155\113\105\x52\x72\x51\x6d\x6f\104\x45\x30\x46\130\x36\x6d\115\151\x5a\x55\x2f\60\x35\170\x6b\146\110\153\x6e\x69\146\66\x43\x34\60\132\144\132\155\x37\115\122\x51\x34\154\x6f\122\x31\105\155\x78\152\116\105\x78\x41\125\161\x74\143\x78\x55\x50\x53\x41\x69\166\x6d\x57\171\x52\x43\x52\x34\x68\62\x6e\x2b\163\165\x41\x75\x69\162\62\x6b\x35\117\101\157\x53\163\x57\x66\131\110\57\x32\x52\147\150\x48\152\x51\x38\170\107\160\115\62\124\x43\162\x57\x62\57\x6f\x56\143\155\x6d\x74\x61\103\x51\x69\x39\171\x6c\x47\165\163\x66\x57\151\x76\171\x6f\x73\171\x73\x49\63\x44\162\113\131\x63\x6e\x6a\65\145\x39\121\x42\x73\x64\x59\x4d\x76\151\121\171\x30\112\163\x31\142\61\167\70\152\113\x38\x77\x38\144\x68\67\x4b\x50\x54\x59\x46\116\155\x44\150\x52\123\x64\162\x34\x7a\x30\121\x52\164\170\x35\153\146\x76\152\101\102\x69\143\147\x66\x36\161\62\x69\x5a\x6d\x62\x6e\122\x4d\67\152\105\122\x2f\x4a\x2b\172\x69\x48\126\x51\71\x62\x67\x5a\152\120\x31\161\x4e\x66\x47\x70\111\x52\x6a\x71\101\143\167\x43\126\x55\116\x52\164\131\163\145\x49\x48\x5a\143\x30\x55\126\x68\x72\167\x4f\x44\x62\x77\x45\x75\63\57\x42\x4e\110\x2f\143\105\160\144\x79\152\106\71\x30\x50\x6e\x76\x45\x2f\61\127\x73\124\172\x45\x50\61\107\x6d\x52\102\67\x56\x44\123\60\122\105\x2f\x30\x51\121\x64\x71\114\x32\114\66\x54\x2f\x46\x2b\121\105\102\x44\67\x6b\x4c\x52\x69\145\132\121\57\163\x55\x4a\143\x63\170\x48\x66\111\131\101\x56\115\x4a\x5a\x42\x32\x79\146\122\x50\x70\x66\x4c\155\x44\x47\165\152\117\x31\x2f\x43\121\x7a\x72\61\101\x52\152\x79\x6e\x57\131\103\165\157\161\x65\x34\x52\171\112\125\70\156\x49\x72\x71\x4f\x45\142\x6e\67\60\61\x68\171\x35\163\x63\151\x62\x4b\160\x73\62\x46\x63\x4a\126\x44\x73\125\167\112\x62\x37\x58\104\x43\57\x59\x73\127\x4d\x46\142\101\120\102\x37\x36\57\151\x31\112\x52\x53\x53\160\x53\123\x6c\122\x4a\170\x31\x65\x49\127\111\x4b\x4d\x58\x4f\161\65\x51\160\x44\171\x63\x71\63\123\117\165\x36\x50\x59\146\117\101\154\x2f\x33\x6e\117\x31\106\126\x46\165\171\x48\107\63\x30\x6a\64\x61\x62\172\130\x38\117\67\x66\102\x69\127\x7a\x46\66\116\x31\154\111\167\142\x6f\165\x6f\x59\65\147\x4b\163\122\157\164\103\x61\x75\x6c\131\x39\x6c\x44\x71\x46\121\104\171\x75\164\x63\103\127\x79\167\167\153\166\x73\155\57\166\161\x4a\x4d\157\62\53\x4d\63\x44\x35\x79\x55\111\123\126\130\62\70\57\121\157\171\x68\101\157\112\67\x58\157\103\x54\x78\x6d\x30\113\141\x71\105\122\x71\101\60\60\123\x2f\x4d\164\x33\x4a\144\165\153\57\x6a\x36\x55\x4b\x70\x62\114\x2b\x33\x78\x44\71\x46\x35\110\x4c\x70\x68\161\170\x56\150\x44\x73\x49\153\122\110\154\151\141\60\x69\x66\x58\x52\x6e\132\71\x48\x53\x52\x70\145\171\x49\155\60\152\x36\106\x45\121\x4a\120\64\x66\102\x2f\x69\105\125\157\162\145\x6b\x78\x6b\127\x44\167\147\103\63\131\170\x64\107\113\106\152\x4e\x63\111\151\130\x55\141\x46\x56\x4b\x75\132\x4e\x65\x2b\x52\141\127\124\x55\x57\x58\167\x54\x66\x79\x65\123\107\x71\117\111\116\170\x4d\61\x32\162\x36\130\x30\x71\124\x67\x77\x63\x52\66\131\117\x69\x38\x74\102\65\x70\x4c\131\x42\x33\63\x67\107\x4b\x33\x33\162\116\127\115\64\x46\x41\x54\x49\x57\x77\164\x32\x75\x4c\x37\x42\x38\x4c\x54\x53\61\x7a\57\x54\66\x30\x55\153\x49\60\x6c\x45\61\57\x6f\x31\163\x72\x61\160\x4a\x4a\167\x6b\x49\x72\125\x6c\105\x70\66\x51\101\130\x62\57\152\x38\x43\x75\161\x68\143\161\141\x63\x78\63\117\x48\120\x63\x41\150\x33\157\57\142\146\x30\60\146\x42\153\x72\x77\155\x51\126\61\x41\x44\x2b\x5a\x56\150\x75\x6a\x65\161\171\x31\x4d\x65\146\x4e\171\121\113\61\x48\x72\107\x4d\x32\x6f\x51\115\x6a\x78\x71\x6e\x37\x47\63\x6f\70\x4c\126\x6c\64\x78\x52\170\123\x72\x50\131\x6f\x6c\67\x77\67\155\150\131\157\106\147\131\64\x30\x67\65\163\124\x54\x65\x42\x75\124\x68\141\x2b\153\125\x30\x54\71\x56\x2f\113\x7a\x70\x39\154\70\x68\x32\x56\x31\113\x47\164\62\154\65\x7a\113\x51\x4d\x79\x56\116\123\x62\145\x55\x62\x6b\x45\x63\157\163\x2f\152\x4d\x59\x45\x5a\x64\64\x50\113\x38\x65\67\x44\x79\x66\155\120\163\125\145\172\156\145\x49\x39\x72\111\115\130\x45\145\x66\122\64\x56\x2f\142\x56\127\170\150\152\x38\53\170\146\x68\150\x6e\157\x4f\x38\x53\x53\x70\x2f\57\145\124\x36\x74\162\x50\x79\64\131\x67\102\x70\150\x32\x37\x69\x38\150\141\122\150\x42\x67\x46\x46\122\171\63\132\166\147\70\x6a\171\x52\x38\x47\145\67\147\x4e\x37\x38\167\171\x6d\x44\x6a\x4a\112\x52\x46\x6e\x37\132\x57\120\155\141\163\x6d\157\131\x31\101\67\x6a\x4e\114\x53\x30\x5a\103\170\x34\x6e\x78\116\122\x69\x34\x5a\x78\127\163\102\53\147\x7a\130\x6a\162\107\105\64\166\x74\x6e\x67\x46\x31\145\x45\61\117\x4e\x68\x55\x71\66\x5a\x2b\x4d\165\x75\102\x42\71\150\162\144\x31\x65\150\60\x36\53\x41\x62\103\x69\166\x6d\x5a\x4a\101\63\61\x47\x74\106\107\x4b\x4a\71\x70\x57\125\x34\x46\x48\112\x75\147\x46\x4a\117\x62\171\x6e\x6a\130\101\60\60\x63\66\127\x49\x51\x35\152\x66\121\162\x69\x50\x72\145\x77\x55\166\113\151\172\113\53\64\x64\x34\71\x57\165\155\63\150\x33\x4e\171\102\x70\x67\122\130\x35\x62\110\x55\x54\57\130\63\x76\60\x44\60\161\66\x65\x5a\x54\145\57\x34\x44\x61\x4c\124\x58\146\160\141\120\115\162\156\x39\x58\x47\157\x50\111\x62\x51\x53\x43\107\113\61\131\107\67\x63\103\x78\x44\63\x5a\145\x65\124\x47\x4f\166\155\x73\x58\x56\144\x78\x4c\123\x65\x77\112\117\115\101\162\x58\166\152\53\124\x58\x62\111\141\x36\151\x2b\x7a\x39\127\123\163\x4b\x34\122\x50\123\x58\102\156\x71\x52\143\x39\57\123\x52\x44\123\165\x6a\120\x55\146\x41\163\172\171\x67\142\130\64\x46\x72\x44\x6d\x49\102\153\114\x74\x38\x54\x57\152\101\x43\143\152\x49\66\141\x4f\166\116\x62\110\x59\145\141\x35\170\165\107\x31\154\124\x61\x2f\64\114\x49\x69\x48\x56\117\x46\142\155\x59\x64\x42\x51\x53\125\x68\x4b\x77\172\x78\x53\164\x6b\154\161\53\x4d\x57\x43\57\x76\x68\152\163\x32\x69\101\x6a\x6f\x59\x6a\x32\103\x59\142\x68\x73\130\x4e\x65\150\x32\x36\53\x46\x2b\101\113\104\x50\112\53\66\145\66\160\125\106\121\x61\x41\104\71\x4a\x65\153\x51\64\x58\x2f\x73\117\x41\66\113\x59\x55\x4d\112\x45\130\112\141\x49\x52\103\123\112\143\161\x54\x63\x6a\x34\71\x77\150\103\x4b\110\x65\x51\132\115\152\x64\x74\114\106\x64\x41\x65\x4a\x33\57\x6a\111\105\125\123\x32\161\163\x65\103\x48\x34\x35\103\142\x43\61\125\111\x6a\x74\125\112\167\161\x79\x6d\57\x38\x51\155\62\103\x62\x4a\x73\64\162\57\66\x66\123\x71\x44\57\x6a\127\170\166\151\63\x5a\x43\x44\132\x64\127\x30\162\x59\151\127\x2f\x35\167\106\171\112\155\165\x46\x69\106\114\57\x55\157\123\132\114\113\112\x52\154\150\x76\x31\167\120\x69\x33\x75\x65\172\57\x6f\142\x4c\x34\152\x34\x4a\x32\141\x59\x32\66\x63\153\157\x62\x77\156\x38\x52\166\x45\164\x62\x4a\x4b\165\101\x34\171\x4c\x45\130\57\x4a\x65\x30\x47\x46\131\x6c\132\x55\x4b\163\x67\163\x76\x52\165\x73\x4f\x64\x33\x42\x47\x74\x42\126\x37\101\x58\130\x59\155\105\113\x44\x48\x75\104\x46\143\x79\61\155\57\132\104\121\x57\x33\x54\164\x43\x71\x71\164\x6b\x4c\167\x33\x2f\53\x69\65\x42\x37\102\155\132\x6e\x59\x4c\x35\x69\157\x47\165\107\x49\161\x4d\157\120\157\x7a\x6f\x71\143\x50\x57\110\x41\x4a\62\x55\167\121\143\x35\x30\x6a\110\x46\x56\164\x42\x47\157\x6c\64\122\x6f\147\150\64\x2f\161\x6c\x47\x36\x43\156\142\171\x6a\x30\70\104\x30\x44\x57\132\x74\x79\x6f\141\152\x47\x41\x69\x4d\116\x4e\x52\x6e\122\x64\x34\x69\124\171\x2f\110\x65\x78\120\106\x57\x54\x55\153\x6c\101\x56\141\x62\x30\x75\x74\x38\x4b\x62\124\x66\x51\170\107\160\142\x54\x6c\x6b\115\120\147\126\x6b\x55\x2f\x72\152\x5a\130\60\x34\105\70\x77\x61\170\132\x36\120\x35\120\x57\x49\154\163\126\x65\121\x6a\142\x45\132\156\60\63\153\111\170\167\167\x73\151\x69\x6e\114\61\x42\x46\x5a\161\x49\x69\x6a\x49\x63\103\x4b\164\x69\x57\x54\57\62\x78\x4c\157\146\x78\x50\x62\x50\67\107\x6a\67\x4c\x38\150\115\x67\x67\115\64\x50\126\155\x4f\x42\x47\x35\171\x6b\x6d\x59\x31\x38\101\x47\163\x66\61\132\x6d\170\62\161\x54\x34\57\x36\161\107\115\141\x30\104\x49\x6b\105\x66\116\x6f\121\x76\125\143\x4f\62\64\x6c\x2f\x62\63\147\x4f\163\152\x79\113\70\111\130\141\141\x6d\111\101\170\143\x42\x52\x69\161\127\x37\x64\x6e\165\x4f\x50\x67\130\71\x51\132\162\63\x6d\154\147\x4c\x58\70\x51\67\x45\x43\154\155\167\x38\x76\112\x71\61\x51\121\x6c\x55\166\130\125\x2f\x6c\x2b\x41\143\x67\x42\155\160\x53\x35\x69\105\132\70\x38\x34\132\x42\127\127\130\x6a\157\x48\x51\61\132\115\x41\x2b\x6b\64\106\66\104\x50\x56\163\x5a\65\x32\156\x6b\x68\102\x34\153\x68\x41\x39\144\67\x4d\126\x54\106\x56\x6c\x4a\106\144\162\x6b\57\116\161\172\x42\151\63\143\161\144\70\x50\x33\x53\x7a\122\x54\147\110\x54\x51\x75\151\x7a\x43\65\141\x41\141\x79\150\x35\x42\163\104\144\115\x77\130\x55\115\70\x36\53\165\x66\x45\145\x64\x53\144\x62\x4b\157\x71\x50\142\x63\x46\x58\107\x71\x4d\x59\x6d\172\155\x70\66\114\x45\67\151\165\x70\x49\x6d\131\x56\120\70\x45\x51\x63\x51\111\x4b\57\x71\x55\x47\x73\x65\57\62\x4a\65\x32\144\x2f\157\107\x6b\125\x30\x44\x33\65\113\x6c\105\102\x73\x6f\121\x6a\x79\63\101\123\x49\x4f\x34\150\x5a\x69\123\x52\x37\122\x39\x6c\155\130\x74\x71\153\112\x45\104\x45\160\x38\104\x2f\x6b\x5a\x71\125\124\70\x6d\x6c\67\116\153\67\x47\x71\151\x33\x4c\x41\x4f\131\147\107\x62\x2f\x6f\x71\x31\x56\x56\x75\63\x69\110\x51\167\101\x72\x61\165\112\x51\x69\x52\x56\x69\57\122\131\111\121\144\61\120\62\x62\102\x2f\x34\x69\111\x6f\57\120\x63\115\70\120\165\107\66\x78\152\126\166\123\x67\x74\x56\x55\x35\152\153\127\70\167\126\x50\x6c\107\121\145\152\131\70\x57\104\144\115\125\x33\x6e\x4d\116\x6f\x2f\64\x72\153\162\66\x35\147\x55\132\x4f\143\130\x71\x71\154\x4f\x71\x63\x49\53\x61\161\x4d\x41\53\x30\162\161\144\143\x6e\x45\x6b\x6c\x71\114\171\x75\163\67\117\x78\x2f\124\x36\x30\61\x38\64\103\131\122\171\164\x54\x4c\x44\107\123\66\160\x6b\x62\110\161\65\x4a\x30\x4e\120\143\171\x6e\x46\70\114\x75\121\167\x73\x4d\x53\x44\x53\62\115\170\x4b\x52\64\131\x6d\x49\x6d\x4a\123\x2f\x53\x64\x4f\x78\104\122\x57\x7a\156\66\x70\125\146\165\111\x64\x42\x63\x6a\130\161\104\63\122\x50\121\122\x2b\x2f\x30\124\x49\x2b\x49\127\x30\67\143\130\105\x57\x56\167\170\155\x39\110\x52\104\162\x35\102\x6f\x44\104\x30\116\155\x39\x79\x38\53\x32\67\60\142\157\172\x49\x79\66\x7a\117\155\x61\150\110\x58\x5a\113\64\x6b\122\124\104\125\154\x4d\156\x72\163\157\x36\53\x6c\x5a\x4c\x68\167\120\167\x53\171\71\153\x4c\144\x75\x75\61\121\x75\x79\64\x4c\141\x74\x5a\x6d\x51\x65\x33\x50\x76\66\x71\x43\170\x62\160\x32\104\x66\x32\124\102\117\x53\x5a\57\114\x47\163\57\63\145\53\x42\x74\x73\x33\x47\x71\x4b\x76\x4c\x49\x61\103\x77\154\x70\x6e\x50\x61\x68\x4b\x66\151\103\111\x68\104\x61\122\125\x42\125\130\x37\x70\x78\x73\152\x52\x65\155\142\155\x62\172\70\x76\156\x69\166\x46\x35\x68\x57\x54\x50\132\x49\110\165\117\107\x56\116\x6b\126\x65\x6c\x61\x39\x62\145\110\122\x43\x46\151\x4e\101\60\x52\153\x2b\x34\x2f\120\150\105\x6c\103\146\x74\x4a\147\x77\172\x44\x77\63\x47\111\x65\110\125\x6a\x69\110\x68\x6e\101\156\164\157\152\x47\130\x58\x4d\163\117\163\105\x58\70\124\x49\163\x71\x4c\171\x79\60\114\144\x36\x46\x61\116\x6e\157\x77\x4f\70\x65\167\x44\x67\x67\x76\x79\x64\x30\x4e\x75\x63\x72\x68\x58\x78\117\155\x42\x57\107\106\x6b\x6f\x36\x4d\x50\x46\x45\x33\121\155\x72\x45\x2f\x53\146\130\x66\x62\141\x37\161\x38\121\x75\167\152\x36\146\156\161\115\x79\117\142\121\x55\102\123\122\152\x7a\146\x51\61\153\x46\144\x6e\x36\53\63\x47\66\142\x70\126\71\x45\x79\x59\x4e\x70\64\132\142\103\131\x5a\144\127\167\x43\x36\53\142\x66\150\126\123\x38\x69\154\156\166\166\x4e\x61\130\x30\61\60\x6b\x34\x6d\x48\123\62\105\x47\146\104\x2b\x53\106\x63\x52\x6e\x53\63\x45\152\120\x76\x30\71\x45\120\x4d\117\114\x69\x4e\112\131\153\x33\x54\57\70\144\145\111\113\143\172\116\125\123\x51\63\x57\127\127\104\x2f\x47\x6d\x78\63\x5a\x7a\143\160\57\70\x61\x44\x79\x4c\x79\x4c\121\165\151\x62\x46\x49\64\163\64\106\112\121\x57\64\117\x64\106\x64\172\x49\145\114\x2f\x44\x6c\x59\153\x34\x71\120\x47\156\125\x46\110\x77\113\x4f\x53\x6a\x46\x70\x64\x7a\123\x30\114\x51\126\154\61\103\x4f\167\x66\156\x67\146\x72\125\170\x2f\131\120\66\x4e\x2f\114\x31\x54\104\x43\x53\x57\x50\x44\151\x78\x44\124\x41\x6d\62\x30\170\x54\167\x39\x6d\x4a\x72\67\x68\53\62\x67\63\x33\112\x4a\x4c\x44\x2b\x2b\150\x5a\131\x4e\67\x30\x50\147\117\166\x4a\x30\x4a\102\65\125\114\151\166\125\164\x66\x63\x4d\122\111\143\x4a\130\x71\111\147\162\x7a\x6e\x69\157\145\x51\x4c\x46\x4a\144\57\111\155\67\155\125\x2b\165\x46\126\146\160\150\105\124\70\170\107\130\146\166\x6e\x53\x58\x36\164\65\x52\171\154\x6b\x38\62\x2b\x4d\x36\x54\x68\106\x37\114\121\151\112\x4b\120\141\x43\x70\x2b\x73\x52\122\x44\171\x4c\130\130\117\x69\57\132\57\x4b\x7a\171\62\111\110\x47\110\146\x54\x52\x50\110\x37\x6b\112\x61\x70\x59\x70\x72\145\x49\x51\122\x59\x78\103\x50\115\x2b\x58\106\153\121\156\172\62\x57\123\122\172\164\164\x52\160\x49\57\x63\147\x2b\x4e\x77\x64\x69\x32\171\64\x50\116\165\x4f\x6f\145\x73\x4b\67\x76\x66\130\x43\x73\166\x78\x6e\x7a\111\x69\x55\151\x67\x4f\x4e\x53\x77\127\103\x38\x36\x62\147\62\x7a\142\x71\172\x4f\x6e\101\125\167\60\167\146\x57\x45\156\112\164\114\x4c\153\x42\x37\x44\x33\146\147\x68\x30\x4a\107\x6a\x49\132\x74\144\125\121\123\153\103\x53\154\132\x48\125\x46\164\132\122\x39\x61\111\x6d\101\113\x42\x71\156\63\132\57\122\x31\164\127\x77\124\x63\x57\x36\x6a\117\53\x67\x76\167\x53\x74\x61\144\152\x31\105\167\127\103\155\x45\113\x38\120\67\112\x4b\x36\x34\171\x61\x52\127\126\61\x6a\x69\105\104\142\x78\113\x74\101\124\146\104\126\x66\163\x44\132\70\x75\x2f\x46\x6f\x35\167\x69\162\x37\x49\113\x6d\x4a\162\x55\154\x36\x64\106\x47\x31\x53\127\x58\x41\x73\x39\x68\125\115\62\160\x38\x68\x48\111\71\x78\66\x71\101\122\70\170\x47\115\x4b\x4c\x2f\120\141\114\57\102\60\x54\x2f\154\x31\104\57\x33\x38\x66\160\x2f\x79\x38\x4e\67\123\x6f\154\x6a\106\62\x33\x38\x32\147\x58\64\x66\70\142\x77\157\x6a\x57\x79\x6f\x58\111\170\143\x77\x31\x49\144\x58\x66\164\x76\x68\65\120\141\x73\x49\x37\156\120\x42\x53\x4e\x5a\x58\x62\66\x37\x31\x4d\117\154\144\x49\x58\62\162\124\123\x6b\x56\107\67\x33\110\x47\x77\x37\x71\x6a\66\x6b\131\162\57\142\x44\x48\x65\104\x73\x33\x37\x73\124\x58\122\x76\x33\101\x48\170\x47\106\164\125\106\154\172\153\x35\x6a\x4d\166\x75\x41\114\x75\62\126\112\x48\x48\x54\123\127\x56\x52\107\122\153\106\117\x32\161\x4b\70\x48\117\x33\141\126\145\x61\x61\151\x6e\107\61\151\x34\x45\x63\104\x33\x6f\x6e\132\162\126\103\67\132\x67\x68\x4e\103\61\112\x47\x45\132\x5a\x71\x45\x65\x74\111\x67\121\166\65\x4b\155\x35\x45\x65\x69\151\172\x34\126\x50\x45\167\x61\x78\156\102\x4a\151\161\104\x41\160\110\x79\x65\x4c\113\x61\130\x6f\x52\64\61\x45\x53\x65\x79\104\63\x33\x78\124\127\145\x7a\144\165\x78\x72\120\65\x38\x74\x6e\x6e\x4a\x56\160\x4b\111\132\160\x5a\166\x52\53\x63\x48\163\127\x39\105\102\x79\112\x51\103\x71\x6d\x71\x54\x38\157\113\62\116\x54\155\x53\x44\141\x77\x4f\x72\x72\60\x58\63\x38\121\x2f\x55\71\122\x78\x44\x4c\x72\125\x44\x45\x5a\x72\107\x4e\164\x62\x64\157\x54\167\x36\57\x41\x6b\x36\x65\x70\x57\x76\154\113\x31\132\65\164\127\156\157\131\x75\130\53\x41\163\116\117\x45\154\171\x6e\x56\x57\x49\x54\x46\x64\127\x4d\123\x37\x52\165\154\x6f\150\x4b\150\152\x32\x64\x62\156\x30\x64\132\161\146\x78\60\65\x76\x76\x74\x69\107\x31\145\x46\x57\120\x31\117\142\113\x53\x6e\x39\x70\125\x5a\x47\172\x38\x59\x43\115\x79\125\x6c\x52\x4b\102\111\71\62\x72\x4f\111\142\121\105\x46\x70\116\144\122\x75\53\102\x54\163\53\141\x63\64\114\x6f\x36\x46\126\64\x4b\x46\166\x6b\x59\x49\x56\115\x51\111\x56\x5a\x77\x50\144\163\64\x4f\163\107\165\x71\x71\111\x51\x2f\166\x63\71\x49\161\126\70\110\x36\x73\101\x75\x7a\x45\125\61\144\x78\130\131\70\71\x43\x50\x2b\120\113\164\x59\x44\57\x69\x67\62\x6a\x2b\x58\x71\x69\x4f\x59\x46\x2b\126\x32\103\x38\141\x5a\127\x6f\x2f\127\x67\x55\154\x4f\x34\157\150\126\66\x30\112\127\126\x67\145\110\x6b\x4d\125\x79\166\x61\114\166\x78\x70\x4f\153\104\x50\x63\111\x53\124\x6a\66\127\x53\x43\x7a\170\x51\x44\117\105\x69\104\61\66\x4b\147\65\102\53\x70\105\156\147\166\157\x38\157\x61\123\x47\163\x64\x53\143\70\103\x52\x4a\151\160\x69\65\166\x34\162\162\123\x45\x6b\x30\x69\x4b\x5a\x4e\115\101\x58\60\154\x78\160\154\x6b\113\x52\104\x53\x7a\x58\70\121\165\61\126\141\x32\x6b\x56\x6b\x52\x31\120\x2b\x55\x67\53\150\57\114\x64\x74\122\144\x78\x75\x46\164\x58\60\157\x44\x54\x79\x55\x6b\x37\155\143\x6e\124\164\103\x31\143\x74\120\115\162\x73\x42\125\63\x39\150\66\166\x4d\x79\70\x53\167\67\x55\x42\x39\102\163\x5a\x2f\151\143\x45\122\x72\60\146\142\120\113\151\x43\142\112\160\x63\x51\131\150\x2b\x39\162\161\x4c\112\157\151\62\63\105\114\x4d\x41\x38\x78\x33\x6b\x4e\x31\61\x4e\71\67\123\107\x37\155\153\120\127\61\x59\153\120\x63\x45\x6e\120\x4e\x68\x51\60\x72\x79\x70\112\113\x4a\x4a\x49\x69\x62\x58\x68\152\114\151\x61\104\127\61\x4a\x47\70\x76\x31\113\x2b\x65\x70\x46\x30\x63\144\132\153\x7a\x6f\x4c\x67\145\x6f\103\x34\x51\x68\157\147\x4e\131\x4c\x30\x33\x48\x4b\171\x48\146\107\x43\x2f\144\104\x50\x59\142\x7a\x38\102\71\166\x54\x58\x77\120\x37\x34\x56\x62\x41\63\162\131\x79\x4a\166\x31\x6f\153\66\142\151\x2f\x67\57\130\115\x47\127\x41\x39\147\131\122\53\165\151\61\x59\x6f\x32\x34\x45\x47\120\x68\110\x71\120\x2f\153\x48\170\151\101\x62\155\155\114\x71\x46\66\156\61\x74\162\147\x72\x34\x70\x77\167\64\x79\116\170\167\150\x5a\123\x6c\145\126\x6c\115\101\x66\153\151\102\150\x73\150\130\x63\152\161\x4f\102\63\132\116\155\65\70\164\x49\x47\x72\x55\x36\x69\111\112\125\x52\x78\x4b\x52\172\152\143\123\x53\x44\x36\x62\x4a\x6f\142\163\x2f\x36\x67\x6d\x37\154\x39\53\67\66\57\x6b\x59\x7a\63\x61\x52\x65\130\x37\x46\x2b\x72\x54\161\x2b\160\62\107\70\x51\106\x54\101\x32\130\142\144\x4e\x45\166\x32\x63\x68\x4c\x6b\127\x30\143\71\165\102\66\x37\x64\101\157\152\70\x63\161\141\x6e\x68\150\x38\x6c\102\x72\x6c\126\x41\111\147\102\x51\x34\123\x6d\x4e\153\x74\171\71\x55\x46\x68\x63\101\130\x6e\x37\121\71\x71\66\x57\x70\x79\x44\60\x6e\104\x6f\x68\127\103\120\67\101\x50\127\x38\71\145\x43\x4e\x61\171\110\147\x2f\x74\x55\62\x4e\x7a\110\x75\155\170\152\62\101\111\111\126\x56\141\103\116\x66\x70\66\163\105\144\143\x6a\142\x67\113\131\106\101\x62\112\107\x45\x4b\62\x4d\117\x37\x51\x2b\63\151\x57\144\167\x51\x77\167\154\111\163\x62\x48\66\155\x6c\x53\x66\x48\57\170\x47\120\x32\65\x71\x49\x36\x74\x63\160\x38\157\x73\x65\145\71\62\x33\163\x53\x58\x6e\x30\x6c\57\130\167\112\x74\104\x6e\110\57\63\x75\130\171\x43\145\156\x63\x5a\x2b\x6d\x56\x71\145\111\122\x74\132\113\145\x77\114\63\167\120\x6e\x31\x4a\63\x46\x4e\x53\117\117\x69\113\127\121\127\154\64\x63\x34\64\x36\x48\146\x47\61\x6f\165\155\x4f\x48\107\x41\103\107\x6c\x70\113\x61\x6d\154\132\127\125\x55\x69\x76\131\127\121\156\x6a\123\105\112\122\x75\61\64\x45\x39\165\x42\x32\x53\113\x78\61\x4a\71\x68\145\101\53\x33\x30\121\x6d\104\x4e\106\x6c\57\x6e\x58\x70\x45\112\171\x68\144\71\x2b\103\165\167\x68\x48\123\x48\70\x31\x67\103\157\156\172\x4d\x56\113\164\x61\165\150\x71\113\x38\105\x72\x30\117\x4a\116\x4c\122\60\125\152\x6c\x59\111\124\143\105\60\x47\x4d\103\x72\160\x50\x7a\x75\161\x2f\x42\144\x69\x44\153\x39\x73\x37\160\x79\x52\170\114\147\x4e\x66\115\155\x69\107\57\130\x75\x45\x67\x73\130\166\153\x31\71\142\x49\x76\x66\x53\156\x49\x6f\70\112\57\x77\x46\x34\131\x64\114\121\x2b\x6b\x7a\x54\152\x6e\71\x69\x5a\101\x57\x78\141\x63\123\111\131\x6b\x77\164\101\115\170\166\x74\x61\105\x4b\164\62\122\104\122\x57\132\66\x36\104\161\x68\x78\126\x51\x73\x33\121\145\x6c\117\x4e\x72\162\x43\171\165\x76\66\x50\114\57\x53\116\160\151\57\146\64\111\142\53\60\124\155\60\x66\x72\x6b\x6d\x4b\x5a\112\x62\162\167\x4b\x67\x6d\120\x2f\x5a\x4e\x36\71\132\x2f\106\154\x51\105\152\x47\161\x53\61\x6c\x78\x2b\64\102\141\x30\157\x44\106\x6f\x6b\x6a\x56\105\130\156\x6e\x6f\146\x4a\122\111\151\70\154\101\x6f\157\154\x43\105\164\x4c\151\132\105\124\103\141\x45\111\x52\x75\x54\x52\x79\61\x62\110\113\x4d\160\x2b\x72\x6f\x32\66\104\67\x37\106\x38\171\x49\101\150\x6f\125\x31\105\x74\x78\x43\141\x2f\x4c\x68\x76\x52\x31\x59\145\67\146\152\x62\x55\147\x32\x74\102\x66\71\146\x30\x61\122\x47\x43\x6b\167\x74\x36\157\110\105\x6d\x4b\x38\x49\x77\x31\x77\143\116\x67\x55\x44\122\111\154\101\x74\x69\107\130\x41\146\67\164\160\x6e\x4c\141\150\113\x67\x69\x6e\x37\116\150\x54\101\151\115\71\105\126\x4a\x76\x41\105\x6e\x67\x50\x35\x53\x50\127\153\x75\120\x32\167\x4c\127\156\104\x49\x69\x53\x67\x68\x77\x35\x33\70\160\x63\x48\x32\x53\x4a\147\130\x55\x63\x4a\164\x55\70\121\171\x51\104\111\x5a\111\154\x6d\x49\x71\113\x36\60\142\x61\104\x49\160\x6f\70\141\122\104\160\105\x62\x41\x30\113\x42\145\130\x42\x67\166\171\x4b\x34\120\163\x46\x46\122\107\71\x44\x58\127\x4c\x46\107\172\x42\67\167\x58\155\x78\x53\x45\x68\160\x45\x6d\x70\121\151\111\116\121\x6b\146\67\x49\151\124\142\x48\x69\122\124\155\105\150\107\x71\x69\147\122\154\106\x52\124\124\x6b\x41\153\130\x52\106\53\71\57\166\70\x38\x73\102\162\x2b\x50\63\145\x52\125\126\167\154\x4a\x54\x47\114\127\x76\102\x46\166\167\145\x63\105\x6a\x4e\x2b\x47\x35\107\156\x71\114\113\167\102\154\x35\106\x5a\107\145\x53\114\x6f\67\103\x79\161\103\x54\x36\x70\171\150\156\x6e\67\101\x36\x4f\143\165\161\162\x42\160\x2f\x31\154\x34\x58\x76\122\x4a\144\111\110\164\167\x45\x34\165\67\x51\125\152\156\131\x7a\116\124\x65\x7a\166\121\65\x61\60\111\112\155\123\x30\122\130\x6e\61\153\171\63\62\53\x78\x68\x4c\142\x67\x39\x34\x7a\146\x30\162\145\x57\x62\161\x41\153\160\x51\x49\166\66\x64\x36\143\146\x44\167\164\x61\115\107\150\170\x76\x38\101\x32\61\142\125\x41\x77\x73\x6b\120\166\64\101\x41\101\x41\x41\x53\125\x56\117\122\113\x35\x43\x59\x49\111\75"; echo "\74\x70\x20\143\154\141\x73\x73\75\42\167\163\147\55\151\x6e\x66\157\42\40\x61\156\151\x6d\141\164\x65\x2d\151\156\75\x22\146\x6c\171\x2d\x69\x6e\55\x6c\x65\x66\x74\42\40\x61\x6e\151\x6d\x61\164\x65\55\151\x6e\55\144\145\x6c\x61\171\x3d\x22\x31\x73\x22\x20\x61\156\151\155\141\164\145\x2d\151\x6e\x2d\144\x75\162\x61\164\151\x6f\156\75\42\x30\56\70\163\42\40\163\x74\x79\x6c\145\75\42\146\x6f\156\x74\x2d\163\151\172\145\72\40\x31\x72\x65\155\x3b\42\x3e" . wsg_str_translate("\x54\150\x69\x73\x20\x70\141\x67\145\x20\167\141\x73\40\x67\145\x6e\x65\162\141\x74\145\x64\x20\x62\171\40\164\150\145\40\160\154\x75\147\x69\x6e") . "\74\x2f\x70\76"; echo "\x3c\x61\40\x68\x72\x65\146\x3d\42" . $wsgUrl . "\x22\76\x3c\x61\x6d\160\55\151\x6d\x67\x20\141\154\x74\75\x22" . WSG_PLUGIN_NAME . "\x22\x20\141\x6e\x69\155\141\164\145\55\151\x6e\75\42\146\154\x79\x2d\x69\156\x2d\142\x6f\164\164\x6f\155\42\x20\x61\156\x69\x6d\x61\164\x65\x2d\x69\x6e\x2d\x64\145\x6c\141\x79\x3d\x22\x31\x2e\63\163\x22\x20\x61\x6e\151\x6d\141\x74\145\x2d\x69\156\55\144\165\162\x61\164\x69\x6f\156\x3d\x22\x30\56\x38\x73\x22\x20\x73\162\143\75\42" . $wsgLogoDataUrl . "\x22\x20\167\x69\144\x74\x68\x3d\42\61\65\60\42\x20\x68\x65\x69\147\x68\164\x3d\42\x33\60\x22\40\154\141\171\x6f\x75\x74\75\42\x72\145\163\160\x6f\x6e\x73\151\x76\145\42\x20\x6f\x62\152\x65\143\164\55\146\x69\164\75\x22\143\x6f\x6e\x74\141\x69\x6e\x22\40\x73\x74\171\x6c\x65\x3d\42\142\x61\143\153\147\162\x6f\165\156\x64\72\40\x74\x72\x61\x6e\x73\x70\141\x72\145\x6e\x74\73\x22\x3e\74\x2f\x61\155\160\x2d\151\x6d\x67\x3e\74\57\x61\x3e"; } echo "\x3c\x64\151\166\x20\x69\x64\x3d\42\141\162\162\x6f\x77\x22\76"; echo "\x3c\x61\x6d\x70\x2d\x69\x6d\147\40\141\x6e\151\155\141\164\x65\55\x69\x6e\75\42\146\x61\144\x65\x2d\x69\x6e\x22\40\x61\x6e\x69\155\x61\x74\145\55\x69\156\x2d\x64\145\x6c\141\x79\75\42\x30\x2e\70\x73\x22\x20\x61\156\x69\x6d\x61\164\145\x2d\151\156\x2d\x64\165\x72\x61\x74\x69\x6f\156\x3d\42\60\x2e\x38\163\42\x20\x73\x72\x63\75\x22\x64\141\164\141\72\x69\155\x61\x67\x65\x2f\x70\x6e\147\73\142\141\163\145\x36\x34\54\x69\x56\102\117\x52\x77\60\x4b\107\x67\x6f\x41\101\x41\101\116\123\x55\150\x45\125\147\101\x41\101\x4b\105\101\101\x41\x46\63\x42\x41\x4d\x41\101\x41\101\57\142\172\x59\x44\101\x41\101\x41\102\107\x64\x42\124\x55\105\101\x41\x4c\x47\x50\x43\57\x78\x68\x42\x51\x41\101\x41\101\x46\172\125\x6b\x64\103\x41\x4b\67\117\x48\x4f\x6b\101\x41\x41\101\x5a\x64\x45\126\131\144\x46\x4e\x76\132\156\x52\63\x59\130\112\154\101\105\x46\x6b\x62\x32\112\154\111\x45\154\164\131\127\144\154\x55\x6d\126\150\132\x48\154\x78\x79\127\x55\x38\x41\x41\x41\101\103\130\x42\x49\127\130\x4d\101\x41\101\x37\104\x41\101\x41\117\167\x77\110\x48\x62\66\150\153\101\101\101\x41\111\126\102\115\126\105\125\x44\101\167\115\107\x42\x67\x59\x41\101\101\101\102\101\x51\x45\x41\x41\101\101\x41\101\x41\x44\57\x2f\57\x38\104\101\x77\120\x73\x37\x4f\x7a\106\170\x63\126\x35\145\x58\x6d\107\126\x42\127\122\x41\x41\101\x41\103\x33\122\123\x54\154\x4d\x53\x43\x51\x49\x66\114\124\x54\x39\x53\163\x4a\x2b\126\163\124\x70\113\x50\x73\x41\101\101\60\151\x53\125\x52\x42\126\110\x6a\141\67\126\170\x4e\x62\x39\x78\107\105\x68\x32\103\x51\132\x44\x63\x79\x44\141\167\x79\117\64\x70\61\x43\70\147\x30\111\117\106\x31\61\145\x53\147\x61\117\x72\117\x61\107\x54\153\64\x4e\153\x4a\65\x4c\120\x4f\x35\67\105\112\170\166\62\x32\x6f\x35\120\123\150\x51\162\x32\x4a\163\130\124\x75\172\163\x76\71\x79\x75\126\71\125\143\x53\164\116\x44\x73\154\x74\107\x54\x74\62\x51\x49\132\x38\x65\130\156\61\62\x56\x58\x56\122\x69\x36\x50\63\x66\x44\x35\x64\122\x4d\123\x49\x47\x42\x45\x6a\131\153\x53\115\151\102\x45\x78\x49\x6b\142\105\x69\102\147\122\x49\x32\x4a\105\152\111\x67\x52\115\123\x4a\x47\x78\111\147\131\105\123\116\151\x52\111\171\x49\x45\x54\x45\x69\122\x73\x53\111\107\x42\110\x2f\126\115\x54\103\156\166\145\x46\141\111\102\125\x66\71\64\x48\x59\x6d\x45\64\65\156\167\111\53\x2f\x71\111\x78\132\110\113\x6c\121\112\145\x51\132\x6a\161\165\x6f\x67\101\172\x4f\x31\122\x66\160\x42\165\x6a\147\131\x6b\x48\x78\64\x66\x53\102\143\x69\127\122\x68\x41\x57\132\x62\x74\x6c\110\153\x74\x6a\x69\x78\170\153\x69\x52\x35\167\161\x43\x47\x63\x33\x45\x4e\122\115\117\x51\x49\x41\x6c\x73\x73\124\103\x77\x7a\106\x4e\144\151\x79\x4e\x70\115\x63\153\123\147\67\x63\167\102\x35\104\x7a\x58\x64\x33\x4e\x45\x55\111\x76\53\102\102\x77\121\x69\x52\x56\x4d\113\x4c\x71\70\124\64\x2b\x2b\124\x45\x33\x76\x31\x69\126\141\x69\x62\114\146\125\x52\x79\122\155\x4e\154\147\x76\x7a\114\145\162\60\x2b\x41\x39\106\x73\x76\151\x5a\144\x55\154\165\117\66\x59\126\x42\x58\104\x38\x75\x44\x57\x44\103\70\122\x50\x49\x6b\144\121\x49\167\115\x57\x48\x61\64\x46\115\120\x45\152\x75\111\x79\x71\64\x4e\x67\107\127\164\x34\103\64\x2f\x6d\x38\160\x63\163\x38\151\x36\x64\x49\152\x4f\x62\146\102\113\120\130\151\x49\171\x43\x65\x33\x4c\104\x6d\104\x75\x4a\x49\147\x48\153\117\167\106\123\130\x30\117\124\x36\x35\x51\x31\114\x4d\154\x43\x50\x4c\x48\x53\141\141\x71\x33\x2f\170\156\113\57\112\x72\53\x63\66\x5a\x4d\110\71\x56\147\123\157\116\131\163\71\53\x6d\151\156\105\63\x53\x49\x62\125\103\170\x34\125\122\127\x6c\144\126\71\x51\171\x51\x35\57\x4e\x4a\x4f\161\121\155\x4e\127\131\x51\x65\x6d\x6e\x4f\x50\65\x68\153\103\153\x30\141\121\102\x55\147\x64\x57\107\171\150\x4e\107\x6a\112\157\160\x31\x56\x62\x30\106\65\106\156\x4a\112\111\x73\101\161\x63\x45\x52\150\x6c\x6e\x71\145\154\x6c\130\x74\65\x34\116\x4e\141\156\103\x4f\x4f\x59\132\117\x59\53\122\x75\161\x72\116\53\x64\102\x71\x4d\160\164\106\x30\161\x6c\110\115\x67\x7a\163\125\x75\x4f\101\65\120\60\x62\115\x2b\x50\x47\x7a\124\x46\x6e\144\172\x52\103\x30\67\x6b\x4a\153\155\71\x53\x46\152\165\x41\111\x33\164\120\113\122\x79\142\x74\155\61\102\70\156\x45\x36\x7a\172\142\x4f\113\x4d\x7a\131\61\153\165\151\141\x41\x44\x72\x32\64\152\165\153\163\x30\x39\x5a\122\x74\x33\146\x6b\x78\x36\x71\x5a\164\155\x74\x52\x4a\116\120\165\106\x38\x4d\x56\x55\x48\x4f\x65\115\66\63\x30\154\x74\x4b\102\160\111\153\114\170\166\123\x4a\113\65\101\x2b\113\x36\121\117\x34\150\67\172\x46\123\x72\x2b\151\x77\112\x69\153\x44\x54\x55\x65\x69\127\x32\162\x4b\106\x43\x55\106\131\x55\x30\x55\152\x64\x69\146\121\127\x7a\116\153\105\x56\x49\x78\x6d\x57\117\x6c\145\130\111\112\x4d\x6b\x32\65\112\114\53\x74\x36\165\116\x51\x30\x41\x79\x34\x68\x31\x45\x39\x32\x74\x45\x6f\x68\x6f\x6e\x36\141\167\101\x4a\111\x66\x44\x66\x52\161\107\120\103\x62\105\145\x34\x62\x6b\160\120\53\64\117\x4e\113\71\153\x46\x6d\117\114\x53\120\145\157\x76\x76\150\x52\x48\117\x61\71\117\x56\x49\x57\x54\x7a\x5a\x6b\x52\122\106\63\160\x52\x62\x4d\132\154\113\x51\x41\146\x71\156\151\x7a\x76\x6f\x30\x62\x45\x62\x67\144\x69\x35\x2f\66\61\x47\125\x69\x57\114\x4c\131\x67\x31\155\71\164\x4a\x45\x37\153\110\62\145\116\x65\65\x51\x50\142\x53\x4d\x63\x63\x54\62\x38\x57\x55\172\155\x58\130\x64\154\x58\x39\152\60\115\x78\104\x37\x44\x72\x6e\x6b\x50\124\x32\132\114\x64\x78\x56\x38\70\67\141\x42\162\x49\x5a\165\117\123\x70\112\x4b\x43\122\x43\x2b\x78\x51\x72\71\x44\x6e\x53\x49\x52\116\x52\65\x42\x33\160\122\x59\x67\x61\170\146\145\125\156\120\x2b\64\x64\165\162\x74\x77\x32\x4a\57\127\x68\123\x37\101\116\144\156\x4d\153\57\61\151\x58\67\x53\x47\x77\166\65\x4c\160\112\x52\160\63\x38\x55\x42\146\x48\65\x52\123\112\172\x64\142\x65\155\110\57\x49\x6b\x6a\160\x46\x2f\x76\x48\x76\x4e\111\x75\x65\x5a\110\130\x5a\x79\x63\x38\x34\127\170\x77\x57\x2b\167\103\x69\165\156\172\x62\x44\115\x51\x57\57\70\x6d\71\x2b\62\164\x4a\141\x5a\146\151\160\x71\x57\70\x65\x33\157\x44\131\161\166\103\145\167\x5a\167\x79\131\107\107\113\x65\x31\x4e\x4f\x58\65\x76\x48\65\x34\102\x4b\110\165\x42\x37\143\x52\145\x6b\146\x2f\70\102\x42\x38\x2f\162\115\151\122\117\121\126\61\x63\x70\x49\154\107\171\141\112\117\x75\x33\162\x69\x62\x74\150\x5a\x4a\142\103\x36\131\113\70\x76\x49\x2f\105\155\172\x62\164\x6a\151\150\x79\150\x4b\116\101\104\163\x55\x2b\x74\150\64\x35\x6f\x73\147\x52\x6a\155\x6f\x2f\x53\x37\x59\x44\x52\130\x70\x7a\160\110\107\x4b\152\132\164\145\67\120\131\164\61\170\142\112\x53\107\x69\x50\x63\x4a\123\64\x59\x55\127\113\62\x4c\x65\154\x4a\153\53\x53\105\105\x54\x72\x6b\150\x51\63\x31\x74\x72\x48\147\71\x41\x75\101\x75\132\155\154\115\164\x52\x70\x56\61\x57\112\111\x66\x32\157\141\x77\x37\x79\x6c\110\x42\x4a\x62\154\x65\141\x58\146\x33\61\170\115\x70\102\x45\111\x34\x4b\151\x6c\x58\144\157\161\70\117\66\156\x49\125\x55\x53\x31\x5a\x2b\x32\x57\106\x48\155\x53\x6c\151\x4d\x35\x63\x6e\172\53\x79\103\x36\132\x44\x69\x70\112\130\x41\x33\107\x4e\x4d\156\102\x30\x42\66\x58\53\x71\151\x77\61\x72\132\63\x51\x30\x30\x35\x38\x6c\170\x4d\105\x38\103\170\105\107\x75\x44\112\x46\166\67\x73\x36\x6b\x61\x62\127\114\x71\x71\151\121\102\x4c\x58\x74\x46\146\x6b\65\122\157\70\x47\x78\103\112\x6e\152\125\156\x50\104\71\x61\65\126\65\106\x64\x6b\x6d\147\126\x4d\105\x38\131\122\61\x6a\x59\x31\x65\x57\127\x54\x35\x4d\x41\60\x62\160\112\124\x73\x32\x62\106\123\x58\113\156\x53\x43\x53\x4c\163\141\151\x5a\153\160\157\162\x6f\110\x4c\x6e\x35\114\151\x2b\170\161\112\x6d\151\151\x4d\162\x4d\155\x56\x46\x55\151\x51\62\x4d\115\61\x49\x31\x45\170\113\114\x59\x31\x44\x72\x30\x68\105\x7a\x57\x6d\x4b\71\x42\x4f\153\x52\61\x46\153\171\131\x70\x73\162\x47\x6d\x6b\x65\x69\x35\103\160\112\x59\117\x48\x71\106\x4e\125\x72\x65\x6f\x4c\x47\66\153\x4d\x67\x67\x4a\64\111\x69\x6f\167\x59\170\102\x46\111\x6d\117\x54\x67\x59\x68\x52\x5a\x44\x55\x53\x76\112\120\x37\65\106\60\115\x33\x79\x6a\53\141\x34\112\145\166\163\157\x68\150\65\x70\111\116\163\x76\171\144\147\114\107\x4e\x76\126\116\105\170\114\x4c\122\x36\x35\125\x32\122\x4e\x78\165\141\67\112\160\x42\152\111\x51\x56\x30\132\x58\165\66\132\65\122\x30\60\x30\115\x4f\117\131\62\x6f\102\163\x5a\x75\x6a\x4e\x67\164\125\161\x53\153\x38\122\x43\160\142\125\x31\x75\123\x77\165\x6a\x79\x53\x39\x67\x37\x50\x4a\x41\60\x70\x30\x68\71\126\106\x66\x6b\x68\x75\160\x69\145\116\x74\155\121\145\x34\153\x2b\x34\115\152\161\112\111\x74\x41\60\x4e\113\x5a\111\x69\x2b\170\x75\x54\x49\163\156\131\x51\x56\113\x7a\x49\153\63\66\121\x64\x76\x51\x72\x4f\160\152\123\145\x4e\x75\150\65\x7a\x7a\106\160\x63\130\65\x76\160\x4b\x53\61\171\111\x52\155\x70\x45\164\151\x33\110\x67\x36\x53\127\171\x45\x5a\107\x61\x38\150\x2f\103\x50\106\105\x51\x2b\157\70\151\113\x4d\x4d\x56\60\x70\x75\x5a\107\x6d\x4f\x52\155\153\70\x54\x51\x2f\143\130\x6e\115\64\161\151\x4c\166\122\x77\x4c\x47\111\132\166\x32\67\172\x4c\161\x43\x35\143\x61\x64\x59\x42\x74\132\101\63\x6b\x58\x56\123\66\160\x54\x76\67\x7a\x4f\x56\x6f\113\64\166\107\x51\116\142\57\105\64\144\x30\126\x75\x4f\172\63\154\x31\x4e\61\x43\x78\147\x62\x48\113\146\154\x74\60\110\x64\x55\x55\123\171\x46\107\151\x4a\165\x33\x46\162\165\103\121\102\66\x71\101\x57\x52\x78\x6c\x49\147\155\117\x62\127\x76\x45\150\x6b\115\145\x75\x41\65\x6e\111\x62\x4b\170\x2b\x34\x59\x4f\x59\x39\151\124\x55\162\x75\114\x79\110\x6e\166\61\61\172\151\x63\x2f\131\x78\112\113\154\x32\122\x6c\155\x61\102\125\x74\144\x44\x4b\x70\x6e\x36\65\x44\x36\147\120\x76\x4d\x35\x53\x68\154\132\111\62\x6b\62\63\167\x68\x31\62\105\x65\151\x6d\151\115\114\x56\113\x7a\x32\103\61\x6c\171\110\116\x4f\64\53\161\141\x48\x43\x74\x34\104\x38\x72\x53\x52\x2b\x49\71\113\x67\x69\170\x4b\x4c\x4c\143\154\151\162\107\170\61\110\67\x50\x4e\110\130\x34\x49\151\x70\117\x37\x6d\64\172\x49\162\142\103\x6b\x47\124\x77\152\112\106\x45\105\x63\165\x78\x2f\x74\x63\x30\x62\x51\x32\141\112\x49\x38\x33\110\x74\x6b\66\105\127\x57\x57\142\x58\116\115\x36\x37\x34\130\x48\x66\x58\172\x41\62\x4e\x6e\151\120\146\163\110\x63\x75\x65\115\x7a\x6e\x79\x75\114\172\157\x6a\101\166\144\x70\127\x75\143\143\x68\x32\144\x64\110\63\x63\x71\x47\62\132\157\x34\x63\x4e\x4a\x51\150\x4b\121\171\x6c\131\x51\x6a\x4c\64\x62\163\162\145\64\x6d\142\x42\152\127\153\122\x6c\155\x68\121\155\x79\x74\x65\103\63\101\x44\x6b\x45\115\x52\x7a\121\115\x4f\x6e\x56\x65\x32\x66\x4d\64\x4b\156\x73\164\171\102\x74\121\x63\x31\x75\113\161\x54\103\x4f\x69\x6a\x68\155\x4d\160\132\x44\x68\x6d\x77\x51\62\x47\57\x53\x4d\157\x79\152\114\x42\157\x73\142\x4f\x6d\104\144\66\x72\120\142\146\x4a\112\71\x68\x71\166\x47\x58\125\64\156\x6f\102\x36\152\154\x79\x70\x30\107\61\x34\162\x6b\x4d\65\131\153\144\154\115\x4e\127\154\x69\70\131\155\110\x30\146\x4b\x6e\145\x6f\x4c\132\x55\x65\x46\71\152\x39\123\x50\x46\121\164\x71\x66\132\102\x38\161\105\105\155\123\124\53\110\x48\x6e\x6c\150\144\122\x49\67\70\x39\x4c\x39\150\x37\143\x32\111\71\61\x41\x45\145\150\x6d\x4d\155\x71\x41\125\53\x65\x71\141\171\x6f\142\101\x4f\67\146\x37\71\x4f\124\170\x58\105\60\x50\171\103\x4b\102\171\142\107\150\x79\x52\146\x44\x79\x6e\130\114\x78\x46\x6b\53\x44\122\156\x64\157\106\172\122\x7a\142\x4f\x35\114\x45\x48\132\x4f\101\x43\x59\67\127\x63\127\122\63\x6f\144\146\x6a\151\x6b\162\170\105\x67\127\146\x6c\172\x2b\x4b\105\147\110\x34\x79\131\x74\172\x33\x65\x75\170\x70\x54\162\106\x39\x49\141\x75\x67\145\x37\64\x6c\111\x75\126\123\x4c\x35\x34\x69\x78\131\61\x4b\104\x30\x75\x57\131\x2f\x50\x75\x44\x72\172\65\115\147\102\172\x54\x72\70\102\111\161\x72\x6b\115\63\111\61\165\x44\x6f\124\x4a\x44\x6a\x55\165\57\x73\57\102\105\x51\53\122\x6e\146\66\x42\106\123\115\x30\146\154\x59\122\154\53\171\165\142\x39\x6a\67\57\x69\x39\161\164\163\x76\130\x65\70\x30\66\x4f\120\150\x79\165\142\x63\64\x79\144\x50\x30\131\x4c\124\101\x78\122\62\x37\144\x57\152\x35\155\x58\150\66\164\103\x34\152\x6e\x56\x61\131\x6e\132\x4f\162\57\152\x4e\x7a\x73\x39\114\x76\x78\x73\x6a\x52\x52\x68\120\x5a\105\155\x4b\116\x42\x69\x53\x78\x55\101\x39\x64\x6a\x33\117\x47\x59\x38\x39\x47\x68\146\146\142\x42\105\147\67\x32\x63\63\x2f\147\161\116\x49\126\120\x7a\142\x4d\113\x53\150\125\53\145\165\x52\x39\161\x52\x51\x37\x4c\60\166\161\163\70\x34\x68\143\x30\165\x51\x67\x31\110\x58\x66\104\61\113\x2f\x63\x53\101\x6d\152\x59\x2f\156\x74\131\171\115\60\x53\x6d\x65\103\113\x58\157\x52\146\x48\x6a\x4a\57\166\x71\124\x71\x68\165\x2b\x70\x62\107\x55\x76\170\x39\105\x4e\x79\x6a\x77\57\110\x58\x63\x2b\66\61\104\x55\x39\x75\x39\x35\x6e\x6d\127\x56\62\x6a\167\x49\171\x38\x2b\x41\x6f\161\x78\160\131\x6f\151\x47\114\153\x50\x76\x59\71\x33\105\x55\165\125\x2b\60\163\x39\153\143\x65\x30\62\170\70\63\127\161\x4a\103\157\x67\162\165\x54\154\102\64\117\106\x63\53\x32\x63\141\x34\x35\112\114\143\x2f\131\x44\111\x69\132\152\101\x56\x63\x30\126\172\x71\x7a\x50\61\151\115\x63\141\170\x45\x4d\x41\154\x45\147\121\150\x76\162\x4b\x49\141\x42\x59\x49\x63\142\x38\123\110\53\x65\131\x6f\x57\x58\x6c\70\157\x6d\x4b\160\x36\143\162\145\124\103\x6c\104\166\x73\x31\x46\x57\144\145\115\143\x4d\x4c\x55\x39\x49\116\143\x67\x2f\172\146\x4e\x55\x5a\167\x49\66\x48\x53\x45\x61\57\x59\x52\172\164\107\x7a\142\x52\x2b\x72\x59\124\x79\114\144\101\x54\x46\x31\x37\113\165\115\x63\160\x52\x76\105\x6f\x77\113\116\61\x6b\70\x33\x42\162\x41\x7a\110\x4b\154\x71\162\162\x54\163\107\x66\x68\167\x74\x4b\x5a\107\66\112\x48\x37\105\103\104\71\x55\107\130\x2f\x67\130\x5a\x4f\165\161\x59\x35\x39\157\151\125\x7a\x7a\x71\143\x31\142\x2b\x6f\x2b\x36\x67\60\x42\x2f\141\126\110\155\153\117\x52\x37\x54\160\130\125\146\165\70\66\x37\x72\116\x75\141\x51\102\165\65\57\157\x4a\63\67\107\166\x4d\x35\142\x73\x67\x61\162\67\131\105\x75\x50\x6d\102\x30\x6d\x4d\164\x48\x4b\x38\x30\x6d\x2b\x4f\x35\x78\x34\x36\151\124\x4b\x78\163\117\x76\113\x59\65\65\x76\164\144\162\120\x74\171\x4f\65\120\154\61\x71\x37\110\160\x37\x48\x58\x30\153\164\x78\x34\141\x63\x35\156\163\104\x38\65\x33\x68\x61\x48\67\x6f\166\x37\x2f\125\x6c\x55\x61\126\x36\70\x48\x52\152\x71\x4c\x41\163\145\x73\x65\153\166\113\62\x78\110\106\x4c\x43\156\150\x54\126\132\x5a\x6a\x34\132\x45\146\x42\61\x4a\x76\x43\x50\106\x30\123\x36\x63\x6a\x73\171\x2f\x72\160\x5a\141\161\167\x6b\x4f\x50\120\x4f\131\x68\161\x59\x32\x77\127\x35\162\112\101\x48\107\x4c\x7a\116\132\103\66\157\125\120\122\x7a\x75\144\x45\x4b\x6e\102\104\111\x42\x6b\66\x74\117\62\x58\x6c\142\x32\113\126\166\x4e\65\171\x67\170\x77\170\170\112\145\67\70\123\x49\x68\x6e\x6d\x6e\53\141\x79\60\x64\161\x78\x65\104\144\141\123\144\x6c\x42\x4f\x42\x78\70\163\63\x31\147\x45\144\70\x69\x44\x62\130\107\x4e\x4f\x6c\x2b\x36\124\116\x35\x63\x77\63\60\171\117\x36\172\150\125\x4c\130\166\x78\x75\x4f\61\x66\x47\x4c\106\57\x2f\x35\x36\x55\x6f\141\x6e\x2b\103\x59\x37\x7a\x69\171\x2b\162\64\124\x77\66\x77\x33\x6d\61\x57\x4e\102\x61\x2b\61\x68\71\123\171\103\x4e\x42\172\164\x41\x37\x35\120\x66\113\x61\x50\104\62\x76\x31\172\x39\67\143\x43\x7a\131\x65\172\124\x46\x54\x4d\x66\143\171\103\x45\146\x67\x47\166\x48\165\172\x54\162\x48\x7a\53\x39\x54\x48\111\x30\132\151\x52\126\153\x50\x64\x73\x72\x50\67\153\61\x36\x2b\142\172\132\145\x38\x6f\x61\167\x57\x74\116\x38\x2b\x75\63\66\x55\151\x30\x59\64\130\x67\103\122\150\106\53\x2f\62\172\x7a\x6b\x4c\145\161\x76\162\x79\x61\60\x61\x63\x73\x4d\x4f\x4c\x4c\67\x50\107\x44\150\x2f\53\102\x4e\67\x37\120\153\171\x69\x4c\x57\122\x44\x2b\104\x56\114\107\x30\x48\x42\x6e\x78\101\155\x72\70\x67\x57\x55\53\127\61\x7a\x74\x46\171\x59\x72\145\x33\111\146\171\65\110\x64\102\60\x4a\166\127\x65\132\110\x2b\70\x74\151\x55\170\x31\x53\x4d\164\121\152\x45\x4d\x6c\x33\x54\x75\x42\102\61\104\62\x6b\145\67\x33\150\126\104\x39\104\x48\115\x33\164\x75\x75\x70\x73\172\x6a\153\154\x63\x73\53\63\162\x45\123\x74\x39\x78\x39\x56\112\156\143\x56\143\x47\105\x62\161\124\x76\162\x50\x68\x43\x61\146\x66\x75\x58\127\x75\x2f\63\62\x4f\117\x39\113\61\145\x51\x75\165\146\x49\x79\x6c\x76\x66\x5a\x37\117\x38\162\x48\165\117\150\x54\x2f\110\61\144\131\x6d\110\142\111\x33\x75\x4a\67\x38\x56\165\x4d\x36\x7a\112\114\65\x55\127\150\116\131\61\x49\106\x62\x41\63\63\x4d\x61\x72\x6b\x58\x36\x2f\143\103\x58\x4a\151\x54\x73\x46\x53\x36\65\160\164\x4c\122\x5a\x2b\171\x4b\x4b\142\x64\x4c\132\x30\x4a\x4d\x69\x4a\104\x51\61\153\x53\114\150\64\x66\x78\62\163\130\67\111\x32\116\65\163\x51\x6a\x6b\160\x57\120\165\161\155\66\71\x33\x6e\x68\111\x6e\x2b\x65\x30\115\160\154\x79\x65\107\110\156\157\153\171\x43\106\110\x49\120\x4c\145\x76\143\x6c\155\144\x57\x56\114\171\103\115\120\x6a\x6d\170\163\x53\x70\x44\142\x6f\x55\117\141\x38\104\x59\132\x64\61\143\104\x65\105\x79\65\123\107\x78\71\61\144\x69\x55\171\153\61\x5a\x61\147\170\x54\x37\x72\156\152\x35\105\x78\113\70\x70\156\x6c\x4b\111\151\x6d\105\x47\101\x31\x70\166\164\x6a\x71\x63\x6c\x4a\110\120\113\132\103\x5a\x72\126\105\120\110\x35\x31\x74\123\x35\x55\x6c\x4e\x51\152\x2b\x52\x6c\155\126\x77\143\143\x75\x41\x2b\x75\x47\x78\131\141\113\141\131\x2b\x30\167\114\x63\x52\x32\x53\x73\144\x6c\x39\62\114\x6e\146\107\x5a\x6c\x52\x55\x73\147\113\53\x70\x47\x48\61\105\157\62\x68\155\x6f\x62\62\123\171\172\x4b\x63\71\x51\125\x72\151\155\x65\x31\x50\172\x78\x31\x30\x52\x30\x4c\166\x50\113\132\154\154\102\x57\70\125\151\163\127\122\x46\x30\146\145\153\x4b\x65\x79\x51\151\x4c\x37\110\x64\130\116\x37\x49\171\x75\64\144\x36\115\57\122\x34\64\x5a\x4f\70\57\146\67\x79\x44\x57\x57\172\x41\x77\114\61\71\160\x43\67\x67\120\x72\x62\62\x32\x63\157\x78\x6a\126\x78\x4e\x46\145\x37\103\x74\123\121\62\x59\64\x34\162\x48\155\154\x74\163\70\x57\123\x4d\x77\x78\x64\145\153\x2f\x69\102\x67\60\104\151\x62\60\150\154\x71\x61\x62\121\x51\x42\x79\157\x2b\104\x34\141\x6d\x4e\66\151\x38\x52\53\163\x6f\x45\x57\x5a\x4e\x56\x31\x50\x45\x74\x68\121\64\x4f\x69\63\71\124\x56\x4a\x6c\62\67\x6e\164\162\150\150\x35\x4b\x33\x54\127\x54\x2b\114\62\x65\x44\x50\163\154\165\65\x62\142\x6b\117\x5a\141\x69\x39\x38\165\x5a\104\x4d\x38\107\53\x36\154\x74\x44\125\x41\145\x43\172\163\x32\x78\x4b\142\146\106\x58\x49\160\x66\x76\150\x46\151\x67\66\x4a\x44\105\x44\x6e\145\x76\171\x73\x2f\132\65\105\166\x6e\121\103\x5a\154\x56\126\60\154\155\110\67\x71\127\x6f\146\x44\144\x49\x49\x72\102\x4b\x73\x79\166\x79\x35\104\x70\x6f\104\x30\x41\x57\x4e\x52\x66\x34\x38\157\64\102\x35\131\x73\101\65\65\162\166\x44\x49\x37\62\x4d\65\x42\x53\x32\x32\117\57\147\x6c\126\x42\x75\x31\x7a\x39\67\x76\x41\117\x63\61\110\x4b\x44\x65\x68\x63\102\x5a\171\63\x33\x34\x4d\x6c\x32\152\114\106\x49\x51\x57\167\156\x59\116\x32\x43\61\154\x73\147\x57\123\145\x42\112\x68\167\x57\x6e\x51\102\x7a\x74\61\x4c\171\x54\120\163\123\157\107\145\146\114\167\x59\x74\111\71\67\155\x61\x53\x77\x68\x41\x70\x78\165\x52\124\102\x69\x50\x62\112\x6b\x42\x38\164\x36\113\x76\x73\163\x53\x39\x30\x35\x37\x30\x32\x4b\63\x34\x2b\167\60\145\x76\145\x54\x37\x2b\x76\x64\x33\115\x31\x32\x5a\x35\x71\x73\153\x79\x2b\x79\110\x36\153\x66\53\63\101\120\166\x47\165\x66\x53\x6c\57\120\125\x35\x39\x73\x39\171\70\x75\155\71\165\x69\131\151\62\x63\142\171\112\x49\x76\64\146\164\x6c\x30\x79\104\170\64\153\104\x52\165\162\130\171\x2f\65\170\x72\104\132\114\x61\x6a\170\167\x4e\x52\x4f\x45\x36\x64\53\106\x63\65\x49\155\112\x45\152\x49\147\x52\x4d\123\112\107\x78\111\x67\131\x45\x53\116\x69\x52\x49\x79\111\x45\124\x45\151\122\163\x53\111\107\102\105\152\131\x6b\123\x4d\151\x42\105\170\x49\x6b\x62\105\151\102\x67\x52\57\x32\x54\x45\x2f\167\x4f\x47\130\x5a\x59\126\61\x44\117\x37\145\x67\101\101\101\101\102\112\x52\125\65\x45\162\153\112\x67\x67\x67\75\75\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x31\65\x30\42\40\150\x65\x69\x67\x68\164\x3d\42\x33\60\60\42\x20\154\141\x79\157\x75\164\75\x22\162\x65\163\160\157\156\163\x69\x76\x65\x22\40\157\142\152\x65\x63\x74\x2d\x66\151\164\x3d\42\x63\x6f\x6e\164\x61\151\x6e\42\x20\163\164\171\154\145\x3d\42\x62\141\143\x6b\147\x72\157\x75\x6e\x64\72\x20\x74\x72\141\x6e\x73\160\x61\x72\x65\156\x74\73\40\x62\x6f\x72\144\x65\162\x2d\162\x61\144\x69\x75\x73\72\x20\61\x72\145\155\x3b\x22\76\x3c\57\x61\x6d\x70\55\x69\155\147\76"; echo "\74\57\144\x69\x76\x3e"; echo "\74\57\x64\151\166\76"; echo "\74\x70\x20\x67\x72\151\x64\x2d\x61\x72\x65\x61\x3d\42\154\x6f\167\x65\162\x2d\164\150\x69\x72\x64\x22\40\141\x6e\x69\155\x61\164\145\x2d\151\156\x3d\42\x66\154\171\55\151\x6e\55\x62\157\x74\164\157\x6d\x22\x20\141\156\151\155\x61\x74\145\x2d\151\156\x2d\x64\145\154\141\x79\75\x22\60\56\x38\163\x22\40\x61\156\151\155\x61\164\145\x2d\x69\156\x2d\x64\x75\162\141\164\151\x6f\156\75\42\x30\56\70\163\42\76\74\163\x70\x61\156\40\x73\x74\171\154\x65\x3d\x22\x66\x6f\156\164\x2d\x77\145\151\x67\x68\164\x3a\x20\64\x30\x30\73\40\160\157\x73\151\164\x69\157\156\x3a\x20\146\151\170\145\x64\x3b\x20\x62\x6f\x74\x74\x6f\155\x3a\x20\62\56\65\x72\145\155\73\40\167\151\x64\x74\x68\x3a\x20\x31\x30\60\x25\x3b\40\x6c\x65\146\164\72\40\60\x3b\40\146\157\156\164\55\x73\x69\x7a\145\x3a\x20\x31\x2e\x32\162\x65\155\73\40\144\151\x73\160\x6c\141\x79\x3a\40\x69\156\154\x69\156\x65\55\142\x6c\157\143\x6b\73\40\166\145\x72\x74\151\143\141\154\x2d\x61\154\x69\x67\156\72\x20\x62\x6f\164\x74\x6f\155\x3b\42\76" . wsg_str_translate("\126\151\x73\x69\x74\40\157\x75\x72\x20\x73\151\164\x65\40\141\x6e\x64\x20\x73\x65\x65\x20\x61\x6c\154\x20\x6f\x74\x68\x65\162\40\x61\x76\141\151\x6c\141\x62\x6c\x65\40\141\162\164\x69\143\154\145\163\41") . "\x3c\x2f\x73\x70\141\x6e\x3e\x3c\x2f\x70\76"; echo "\74\57\x61\x6d\x70\x2d\x73\x74\x6f\162\171\x2d\147\x72\x69\x64\x2d\x6c\141\171\x65\162\x3e"; echo "\74\x61\155\x70\x2d\163\164\157\x72\x79\x2d\x70\x61\147\145\x2d\157\165\x74\x6c\x69\156\153\40\154\141\171\x6f\x75\164\x3d\x22\x6e\157\144\151\x73\x70\154\141\x79\x22\40\x74\150\145\155\x65\75\42\143\165\163\164\x6f\155\42\x20\143\164\141\55\141\143\143\x65\156\164\55\x65\x6c\x65\x6d\x65\x6e\x74\75\x22\142\x61\143\153\x67\162\157\165\156\x64\x22\x20\143\x74\x61\55\141\x63\x63\145\x6e\x74\x2d\x63\x6f\154\x6f\162\75\42\x23\146\x66\146\42\x3e"; if ($this->wsg_demo) { echo "\74\x61\x20\150\162\x65\146\75\x22" . $wsgenUrl . "\42\x3e"; } else { $ctaButtonUrl = $siteUrl . "\x3f\165\164\155\x5f\163\x6f\165\162\143\145\75\x77\x65\142\x2d\163\164\157\x72\151\145\163\55\147\145\156\x65\162\x61\164\157\162"; if (isset($ctaLastSlide) && $ctaLastSlide == "\157\x6e") { $ctaButtonUrl = $ctaUrl; } echo "\74\141\40\150\x72\x65\146\75\42" . $ctaButtonUrl . "\x22\76"; } if (isset($ctaButtonText) && trim($ctaButtonText) != '') { if (isset($ctaLastSlide) && $ctaLastSlide == "\157\x6e") { echo $ctaButtonText; } else { echo $siteName; } } else { echo $siteName; } echo "\x3c\57\x61\x3e"; echo "\x3c\57\x61\155\x70\x2d\x73\164\157\162\171\x2d\x70\x61\x67\145\x2d\x6f\x75\164\154\151\156\153\76"; echo "\74\x2f\141\x6d\160\x2d\163\x74\x6f\x72\x79\x2d\160\x61\x67\x65\76"; echo "\x3c\57\x61\155\x70\55\163\x74\x6f\x72\x79\x3e"; echo "\74\x2f\x62\157\x64\171\x3e"; echo "\x3c\57\150\164\155\154\x3e"; echo PHP_EOL; echo "\x3c\x21\x2d\x2d" . PHP_EOL; echo "\xf0\237\x94\xb4\360\237\x94\xb4\xf0\x9f\224\264\360\x9f\224\xb4\360\x9f\224\xb4\xf0\237\x94\264\360\237\224\xb4\360\237\x94\264\xf0\237\224\xb4\xf0\237\x94\xb4\xf0\x9f\x94\xb4\360\x9f\224\xb4\xf0\x9f\x94\264\xf0\x9f\224\264\360\x9f\224\264" . PHP_EOL; echo "\xf0\237\x94\264" . PHP_EOL; echo "\xf0\237\x94\xb4\x20\40\x20" . wsg_str_translate("\124\x68\151\x73\40\127\145\x62\x20\x53\164\157\162\x79\40\167\141\163\x20\x67\x65\156\145\x72\141\x74\145\x64\x20\x62\171\40\x74\x68\x65\x20\x70\154\x75\147\151\x6e", WSG_PLUGIN_TEXT_DOMAIN) . "\x20" . WSG_PLUGIN_NAME . "\40\166" . WSG_PLUGIN_VERSION . PHP_EOL; echo "\xf0\237\x94\xb4\x20\40\x20" . wsg_str_translate("\x43\162\x65\141\x74\x65\x64\x20\142\x79", WSG_PLUGIN_TEXT_DOMAIN) . "\72\x20" . WSG_PLUGIN_AUTHOR_NAME . PHP_EOL; echo "\360\x9f\224\264" . PHP_EOL; echo "\xf0\237\x94\264\x20\40\40" . wsg_str_translate("\126\151\x73\151\x74", WSG_PLUGIN_TEXT_DOMAIN) . "\x3a\40" . WSG_PLUGIN_URL . PHP_EOL; echo "\360\237\224\264" . PHP_EOL; echo "\360\237\224\xb4\xf0\x9f\x94\xb4\xf0\237\224\264\360\237\x94\264\xf0\237\x94\xb4\360\x9f\224\264\360\x9f\224\264\360\237\x94\xb4\xf0\237\224\264\360\x9f\x94\xb4\360\x9f\224\xb4\xf0\237\x94\xb4\360\x9f\224\xb4\xf0\237\224\264\360\x9f\224\xb4" . PHP_EOL; echo "\40\x2d\55\x3e" . PHP_EOL; } } goto PpJm3; RsoiJ: define("\127\x53\107\x5f\x50\x4c\125\x47\x49\116\x5f\x4e\x41\115\x45", "\x57\x65\142\40\123\x74\x6f\162\151\x65\163\x20\107\145\x6e\145\162\x61\x74\157\162"); goto xQqys; TAPxJ: function wsg_get_posts_count() { return (new WP_Query(wsg_create_posts_array()))->post_count; } goto A3ziU; XOQJi: add_action("\x69\x6e\151\164", function () { if (!wsg_is_activated()) { return; } $urlPath = wsg_get_url_path(); $sitemapName = WSG_SITEMAP_INDEX; $urlPrefix = parse_url(get_site_url(), PHP_URL_PATH) . "\x2f"; if ($urlPath == $urlPrefix . $sitemapName) { header("\x48\x54\124\x50\57\61\x2e\61\40\x32\x30\x30\x20\x4f\113"); header("\x43\x6f\x6e\164\x65\x6e\164\x2d\x54\x79\160\x65\72\x20\141\160\x70\154\x69\x63\141\x74\x69\157\x6e\57\170\x6d\x6c\73\x20\143\x68\141\162\x73\145\x74\75\x55\124\106\x2d\70"); echo "\74\x3f\170\155\x6c\40\x76\145\x72\x73\151\x6f\x6e\75\42\x31\56\x30\42\x20\x65\156\143\x6f\144\151\x6e\147\x3d\42\x55\x54\x46\x2d\70\x22\x3f\x3e"; echo "\74\163\151\x74\x65\x6d\141\x70\151\156\x64\x65\x78\x20\170\155\x6c\156\163\75\42\x68\164\164\160\x3a\57\57\x77\167\x77\x2e\x73\151\164\x65\x6d\x61\160\163\x2e\157\x72\x67\x2f\163\x63\x68\x65\x6d\141\163\x2f\x73\151\164\x65\x6d\x61\160\57\60\56\71\x22\x3e"; $postsCount = wsg_get_posts_count(); $postsPerPage = WSG_POSTS_PER_SITEMAP; $pageCount = ceil($postsCount / $postsPerPage); $siteUrl = get_site_url(); for ($i = 0; $i < $pageCount; $i++) { $page = $i + 1; $query = new WP_Query(wsg_create_posts_array($postsPerPage, $page)); $lastModified = 0; while ($query->have_posts()) { $query->the_post(); $modified = strtotime(get_post_field("\160\x6f\x73\x74\137\x6d\x6f\144\x69\x66\151\145\144", get_the_ID())); if ($modified > $lastModified) { $lastModified = $modified; } } $sitemapUrl = $siteUrl . "\x2f\167\x73\147\x2d\163\151\x74\x65\x6d\x61\160\x2d\x70\x6f\163\x74\163\x2d" . $page . "\56\x78\x6d\154"; echo "\74\163\x69\x74\x65\x6d\141\160\76"; echo "\x3c\x6c\x6f\x63\x3e" . $sitemapUrl . "\74\x2f\154\x6f\x63\76"; echo "\74\154\x61\x73\x74\x6d\x6f\144\x3e" . date("\143", $lastModified) . "\74\57\154\141\x73\x74\x6d\157\x64\x3e"; echo "\74\57\x73\x69\x74\145\x6d\141\x70\x3e"; } echo "\x3c\57\x73\x69\164\x65\x6d\x61\160\x69\x6e\x64\145\170\x3e"; die; } }, 0); goto uSNtQ; tQJyt: function wsg_create_webstory($post) { $wsg = new WebstoriesGeneratorStandalone(get_option("\167\x73\x67\137\x64\x65\x6d\157")); $html = $wsg->generate($post->ID); return $html; } goto AcB42; GA2uo: add_action("\x69\x6e\151\164", "\x77\163\147\137\157\x70\164\x69\x6f\x6e\163\137\163\x62\x72\165\x62\x6c\145\x73"); goto XOQJi; ZDmgw: function wsg_options_sbrubles() { add_option("\167\163\147\x5f\x64\145\155\x6f", 4 == 5); update_option("\167\x73\x67\137\x64\145\x6d\x6f", 7 == 8); } goto GA2uo; R9Rfi: add_action("\x69\x6e\151\x74", function () { if (!wsg_is_activated()) { return; } $requestUri = isset($_SERVER["\122\105\121\125\105\123\x54\137\x55\x52\111"]) ? esc_url_raw(wp_unslash($_SERVER["\122\x45\x51\125\105\123\124\x5f\x55\122\111"])) : false; $parsedUrl = parse_url($requestUri); $urlPath = $parsedUrl["\160\141\x74\150"]; $subDir = wsg_get_data("\x62\141\x73\145\x64\151\x72"); $urlPrefix = parse_url(get_site_url(), PHP_URL_PATH) . "\x2f"; if ($urlPath == $urlPrefix . $subDir . "\x2f" || $urlPath == $urlPrefix . $subDir) { if (substr($urlPath, -1) != "\57") { $urlPath = $parsedUrl["\161\x75\x65\x72\171"] ? $urlPath . "\57\x3f" . $parsedUrl["\161\x75\145\x72\x79"] : $urlPath . "\x2f"; header("\x4c\x6f\x63\x61\x74\151\x6f\x6e\72\x20" . $urlPath); die; } header("\x48\x54\124\x50\x2f\61\56\61\x20\x32\x30\x30\40\x4f\113"); header("\103\x6f\x6e\x74\x65\x6e\x74\x2d\124\x79\160\x65\x3a\40\x74\x65\x78\164\57\150\x74\155\x6c"); $paged = isset($_GET["\160\141\x67\145"]) ? $_GET["\x70\141\147\145"] : 1; $paged = is_numeric($paged) ? $paged : 1; $paged = intval($paged); $paged = $paged < 1 ? 1 : $paged; $postsPerPage = get_option("\160\x6f\x73\x74\163\137\x70\x65\162\x5f\x70\x61\147\145"); $totalPosts = wsg_get_posts_count(); $totalPages = ceil($totalPosts / $postsPerPage); $paged = $paged > $totalPages ? $totalPages : $paged; $query = new WP_Query(wsg_create_posts_array($postsPerPage, $paged)); $lang = get_bloginfo("\154\x61\x6e\x67\165\x61\147\145"); $siteName = get_bloginfo("\x6e\x61\x6d\145"); $siteUrl = get_bloginfo("\x75\x72\154"); $logo = get_site_icon_url(); if (!$logo) { $xxx = wp_get_attachment_image_src(get_theme_mod("\143\165\163\x74\157\x6d\137\x6c\x6f\x67\157"), "\146\x75\154\x6c"); if ($xxx) { $logo = $xxx[0]; } } if (!$logo) { $dataMainLogo = wsg_get_data("\x6d\x61\x69\156\x5f\154\x6f\x67\157"); if ($dataMainLogo) { $mainLogo = wp_get_attachment_image_src($dataMainLogo, "\x66\165\154\154"); if ($mainLogo) { $mainLogo = $mainLogo[0]; $logo = $mainLogo; } } } $wsgUrl = WSG_PLUGIN_URL; $wsgLogoDataUrl = "\x64\x61\164\x61\72\151\x6d\x61\x67\145\57\x70\x6e\147\x3b\x62\141\163\x65\66\x34\54\151\x56\x42\x4f\x52\x77\x30\x4b\x47\147\157\101\101\x41\x41\116\123\x55\x68\x45\x55\147\x41\x41\x41\x4f\x49\101\101\101\102\107\x43\101\x59\101\101\x41\104\x52\156\125\147\x76\x41\101\101\x41\x41\130\116\x53\122\x30\111\101\x72\x73\64\x63\66\121\101\x41\115\130\x4a\x4a\122\x45\106\x55\x65\116\x72\163\x6e\x41\x6d\131\106\x45\127\141\150\x72\117\66\x57\60\124\101\x6b\x31\126\105\114\147\x39\x55\106\106\105\105\144\61\x42\x42\x4f\125\126\170\x45\x52\170\x6e\120\x58\102\x77\150\57\110\x59\x31\x52\154\60\x42\x45\x5a\121\121\101\65\150\170\x67\x4d\x46\x44\x35\x42\x4c\132\x76\101\132\110\111\122\154\x57\x63\x55\x4c\x41\x65\x6b\x71\155\167\131\x64\x42\121\x56\x70\157\111\x45\x47\165\x75\166\x6f\161\x36\162\166\157\x7a\113\x7a\x4d\x72\57\x39\x49\x79\160\103\x67\162\x43\x6f\x37\x72\132\x52\62\x35\62\165\x68\x2b\x2b\x4a\172\x73\x79\111\x71\115\x6a\x4d\145\120\115\57\x49\147\x73\104\147\120\105\x54\x79\x71\x4d\162\x57\130\60\104\123\x44\106\x57\x49\170\x56\171\x65\x37\120\126\x32\71\150\x73\x54\172\120\123\x7a\131\70\70\x58\155\x75\x66\x78\x32\163\x48\161\143\x77\x31\146\116\x61\130\122\162\161\x31\x33\x50\x42\x61\71\x78\155\142\60\102\x61\x79\x66\152\162\x53\x57\x4e\x6d\163\132\x6a\x55\x31\x2f\132\x6a\101\160\132\x44\x53\x68\106\113\x54\x51\132\145\x6f\162\147\x71\122\64\x59\166\x64\66\166\106\x5a\130\x73\116\x72\x75\x6d\x32\70\112\x74\161\x54\x75\x6e\147\164\x58\117\x43\x4c\66\x33\172\x53\165\x62\x54\144\x67\x6d\x53\x6b\x52\x34\x74\x53\x30\x71\61\65\170\161\141\x71\144\162\x77\164\147\x57\167\101\156\161\x5a\x79\101\x35\x72\x56\x72\x42\70\x61\x52\x49\x2b\x45\113\x55\155\144\x74\x49\x49\103\x74\103\x34\x75\x78\161\x6c\106\x52\x57\151\x54\x42\x62\x52\111\61\x75\x66\160\x47\124\x6a\x54\x38\116\x72\166\x6b\x72\130\104\x47\x51\122\x66\x52\170\x4a\x5a\x78\x5a\151\170\x79\x58\113\115\x6a\x61\x5a\162\x62\120\x68\x57\152\162\x48\112\152\112\63\x73\x4e\x52\60\107\x5a\x52\x6f\x42\123\144\102\127\153\66\x57\x38\x58\57\142\x56\x44\107\117\x7a\x6d\160\x4a\53\151\x45\65\124\x64\120\147\x4f\x48\60\142\x4c\131\114\110\x56\x4b\170\x69\160\146\123\101\x51\151\x62\x34\143\x4c\104\110\x66\111\x32\60\x50\x52\x4d\167\143\62\147\64\x46\x49\x31\x5a\150\115\102\x4c\116\x70\x2b\60\152\167\x59\151\x35\151\x37\131\63\x30\166\132\123\117\x6a\142\x75\131\x4c\x68\62\x45\111\102\127\x41\x7a\114\x4e\113\x38\147\106\x44\x52\106\x51\x36\x4f\121\61\x62\121\x45\147\x68\155\x77\170\x4d\130\x4f\110\x69\142\x66\x33\x57\x38\147\x4d\170\145\101\x4e\170\162\101\x71\112\x34\141\x6e\x76\162\112\102\x39\x63\x48\101\120\x4d\164\x72\x57\x57\x64\67\114\142\65\x4e\61\156\106\x2b\115\x34\172\x4e\x61\x6d\157\66\x6b\x5a\x32\154\115\163\x6e\164\x6e\x42\113\143\124\162\x44\144\x45\171\171\160\x66\131\165\x67\171\x69\120\111\105\x43\171\x4a\x67\153\157\123\x6c\x53\x56\x63\x74\x49\x39\164\x38\65\x4b\x6b\x37\103\146\x35\x71\x57\65\x68\141\122\121\67\x38\66\x30\103\101\162\x44\113\x6b\x32\66\x68\163\71\x65\60\x47\x49\101\152\164\65\162\64\70\112\103\x4a\147\60\x56\x52\154\106\x56\132\x41\x46\172\x6f\156\70\112\x71\x46\x32\70\145\111\103\x41\57\131\x5a\142\124\x64\104\162\x35\x4c\112\166\104\66\x4c\125\127\171\x35\x69\x7a\161\x64\x79\111\x5a\166\61\172\x36\x34\122\x62\167\105\103\160\61\132\116\x41\x57\x6b\121\x71\x2f\150\141\70\x4f\107\x51\165\x6c\x54\132\102\x79\x52\121\x6a\70\102\167\103\60\113\x48\x53\160\126\x4c\x4b\105\x59\x70\122\x4f\172\x74\125\105\x72\127\x50\x68\105\x31\x6e\x39\x47\x66\x63\x42\x63\127\x46\120\x70\x4e\x62\167\122\x64\x33\155\143\151\154\x66\x6f\x73\x49\x30\x6e\103\x46\x43\143\144\x31\121\146\x38\121\x63\61\x30\64\121\151\x35\112\x66\156\x4c\113\x48\x51\172\112\164\104\x69\121\x6e\130\x32\127\170\123\x32\x6c\61\x78\x72\x58\156\x4d\x42\x70\126\154\116\x52\157\170\161\162\101\111\x61\113\162\x57\x73\111\166\156\x65\104\60\x72\x70\106\165\107\x77\102\x6e\x38\x50\63\x68\x32\165\x46\157\155\x44\142\101\144\125\x61\x6c\147\161\x4a\x66\x58\x6c\125\x70\67\147\x73\x69\147\x57\67\103\x5a\161\x4e\x6c\164\166\x44\132\x37\157\x4d\167\x69\126\132\112\157\162\x4c\124\144\x34\53\x52\x50\130\x6c\x4a\x78\x5a\x7a\x4a\x48\171\x73\x35\x48\112\x49\115\123\x65\x2b\x72\x7a\x54\x71\x34\162\x61\x74\110\x45\142\63\x58\117\66\x6d\x4d\160\x6e\x64\155\x69\61\x6a\163\63\x37\x4f\111\110\161\x6b\x47\65\160\146\x69\142\x4e\x44\105\130\x50\65\125\145\163\x58\x64\121\153\x53\x42\161\x41\162\x34\x65\x50\x51\154\144\166\x77\126\x7a\153\153\106\x2f\x35\x4b\x42\167\107\x43\x53\105\104\x4c\154\122\165\161\x51\126\65\102\x4c\121\x49\x4d\x30\152\x49\114\64\127\x6f\x62\117\x77\x75\64\x53\x38\x6b\172\157\x51\172\x43\107\126\x2b\132\113\103\162\152\63\70\116\102\x74\x57\x49\165\x63\x76\x30\106\161\x4b\x69\161\x68\121\124\121\x45\145\x42\102\x73\x59\157\123\170\x6b\x43\x56\171\53\102\x6a\x73\x6c\x73\123\152\x42\x36\x76\x76\126\x5a\x6d\x55\x70\x76\113\104\x57\x6e\127\x50\66\x65\x2b\x58\171\x77\157\162\127\x42\x70\x37\x58\60\x45\x55\x58\153\147\x44\161\x46\x4c\115\x4e\157\x42\x59\145\x6b\64\x66\x41\x53\125\x76\x39\x72\x6c\132\143\x48\x68\x45\153\123\x32\x35\161\x44\x79\67\65\x2b\150\145\x6f\x6b\120\x77\x56\x41\x56\x38\160\152\126\x4c\104\145\170\x5a\x32\x63\132\x33\x6e\154\x34\x50\71\66\146\x6e\111\x50\61\x73\167\71\x68\x30\64\x49\70\x62\120\x2b\x66\x45\112\67\116\x71\117\141\x57\x71\167\63\x42\143\x39\155\x6e\112\166\x59\x56\x6d\123\147\157\x4a\x57\x67\x4a\167\x70\111\161\x47\63\142\x4d\167\145\102\150\x6b\x7a\x46\x30\66\x43\124\x38\131\57\164\145\171\111\57\152\x4b\x4e\x5a\122\147\x2f\x47\x44\63\x42\150\x4c\64\x4a\x43\x62\113\66\172\x69\x70\53\x62\x6c\172\126\x61\170\127\124\70\63\x45\116\116\x6b\x53\x5a\142\x75\114\145\x35\x57\153\153\x4b\x52\x71\103\x58\x67\153\x2b\x49\127\x4c\71\71\x66\152\x72\111\x50\144\x79\x45\66\x66\x52\x32\x63\x77\131\163\x42\x59\x79\65\x77\x2b\x6a\x77\x71\65\66\x42\x30\x62\x7a\66\113\x61\x31\x78\x55\x6d\x44\106\x6b\142\x79\57\x46\161\150\106\67\70\x63\64\x6a\x2b\x37\110\62\147\x57\x79\163\x48\x62\60\x50\142\64\63\113\x78\x71\130\166\x31\x2b\104\x73\x44\x41\x75\60\x4e\x49\x46\154\x65\x30\x79\105\x79\x2b\115\112\x48\x44\x2b\x42\141\x4e\x6f\165\x54\x4d\166\x47\x71\116\x48\x50\167\104\x42\107\x6b\x6f\132\151\x2b\163\x79\x56\x79\101\x32\125\x48\101\x55\171\71\154\60\x67\161\x36\x6e\144\152\126\163\163\x5a\155\x6e\164\x55\x37\155\114\141\x6b\x2f\57\x66\170\167\162\x78\x75\120\x33\65\157\x64\x4d\121\x7a\60\71\x54\65\115\106\70\x55\166\147\112\x46\x59\x47\x49\152\x55\x64\x2f\123\x58\122\114\117\132\x4f\103\x68\144\x55\x78\156\x2f\143\x38\164\x45\62\57\172\x75\x76\x6d\151\102\x62\x73\121\60\x77\x5a\x73\x4c\71\x31\x2f\x6c\167\102\171\53\103\60\63\70\x68\156\106\x37\172\64\x52\x6a\120\x41\x44\x73\x50\121\x33\x34\113\71\x6c\144\x69\122\x64\x38\x73\162\x4c\65\67\x48\x31\142\x65\166\150\x64\x72\x42\x6d\144\x68\167\142\122\143\107\102\153\62\x32\x73\x5a\x64\123\145\167\x49\x78\x54\117\157\x66\147\x5a\x2b\151\143\x6e\x62\122\x51\156\105\165\60\x62\x4e\x78\x4a\x6e\107\141\x46\x7a\142\64\171\105\131\x78\156\x6a\123\x43\61\x69\x2b\x59\x67\166\113\113\155\x74\x56\x43\170\153\166\102\131\x78\57\171\x62\141\132\126\131\170\x31\131\x56\x62\122\x61\57\153\x61\132\150\x46\x35\166\144\x54\x6a\113\x45\x32\65\x69\x61\x6e\61\x71\x61\143\x70\127\122\164\x50\121\171\x62\124\152\x77\x36\x37\x4c\x6a\x6e\x75\x6e\70\x38\x53\125\131\161\x2b\x33\145\x52\x41\x6c\102\x42\123\122\x76\x51\x71\101\x72\101\x30\153\x4d\101\113\163\166\x67\166\x50\x31\x44\102\x45\x7a\x46\53\160\163\157\x59\171\x76\x65\105\64\112\x34\171\104\x30\65\162\153\x76\x45\x53\x33\x4e\166\145\x67\x44\x74\x37\x48\144\x79\126\155\x58\x42\x4c\x4b\x75\x47\113\x57\103\x35\155\x4f\x51\x6a\x6e\126\156\115\147\152\63\170\126\150\147\x4d\146\x46\x32\114\112\62\147\147\115\x6e\70\61\x6a\170\x44\165\x32\70\x69\x77\x70\101\x35\x44\63\x58\126\170\x75\x41\121\102\x71\124\122\164\63\x45\64\x67\160\x78\x69\150\143\x64\x75\x34\x59\130\110\x66\170\x44\x4e\x7a\x51\132\x53\x34\x4d\x34\x32\153\115\67\104\x73\146\155\67\x78\132\163\x42\61\x41\170\x6f\167\x53\x78\x43\x38\x4b\x48\121\141\151\x79\x32\112\x50\104\61\165\x62\57\102\151\x74\66\x37\155\165\66\107\x6e\157\124\x57\61\x55\x66\x37\157\141\120\x72\x36\114\123\x56\x4e\143\x31\x33\60\x48\121\x43\x74\x5a\x35\70\123\53\163\106\106\x33\63\x5a\70\102\152\x50\x4a\53\x74\123\115\x4e\112\65\60\x75\x39\172\x63\x5a\x45\x43\127\105\x6c\102\x58\164\110\x51\x69\x62\x55\121\111\122\105\x6b\112\160\x42\146\x33\x6c\x4e\163\157\x32\132\x4d\107\71\x65\x67\x48\x4b\x79\x52\125\x4e\x32\64\102\x74\x78\x65\114\172\x66\x35\153\x58\67\x6f\113\x4e\x63\114\120\x79\x34\106\142\125\x51\110\x79\x55\x68\x41\x6f\x53\146\x6a\67\167\x63\61\x6a\x34\x73\163\x55\146\x76\x7a\x53\x52\x58\x38\x72\x6a\x55\x41\65\151\x53\145\x57\x78\x49\110\157\131\151\117\x33\x48\157\x4f\x64\132\x30\71\104\156\x33\114\153\131\60\110\60\165\162\x6a\141\x65\x35\60\103\x4f\x66\x58\x51\154\163\166\x59\106\64\x53\157\127\x38\130\103\65\167\x37\x4f\156\x37\142\x77\x57\x55\162\x31\x57\x72\145\107\162\66\x61\x52\x5a\x78\127\x53\x54\141\122\104\160\x50\x74\x49\121\60\x6f\x32\153\57\x71\121\102\x70\x46\x74\112\x76\x79\x58\x78\155\x46\x50\x63\x30\110\x74\x45\57\x66\x35\x43\x41\60\153\x6a\123\x66\145\x54\165\x6d\153\x33\53\x79\x54\x53\x76\167\163\x4e\106\110\63\x66\x51\102\160\x42\x47\x71\x31\115\104\153\70\144\153\53\x6b\x53\x41\x6d\x38\x54\x36\x51\x6a\112\x4a\x6f\106\125\x41\x61\x43\x31\x62\110\x2b\x43\x72\x55\143\67\x30\x6b\117\117\64\x79\167\154\162\127\x49\x6c\147\115\144\111\116\64\x76\x78\164\x32\166\x69\x4d\x4d\160\172\x36\125\142\130\113\125\111\103\66\145\x43\120\120\145\65\66\x78\x59\123\150\x73\x4e\x6d\116\x77\x4b\163\122\61\x73\53\x57\x45\120\x6f\x72\131\x67\x69\106\161\x6c\x41\x37\x5a\172\x31\147\166\x41\x6a\x33\x6d\166\x6c\167\150\171\x30\x42\111\x68\127\103\115\x34\60\171\x73\143\70\126\171\122\121\122\166\x59\154\x39\x63\143\126\x69\x4c\x74\57\x33\144\157\67\x4e\131\153\x4d\x4f\64\x70\x51\144\x4c\105\x6c\x7a\x4e\x46\x74\141\127\155\125\x6e\x42\x72\105\x74\147\130\152\117\x58\x46\172\x54\x64\x67\x36\x75\166\53\147\x6c\x44\117\x2f\x37\x4b\x67\x78\x6a\115\x6d\x6b\141\x38\x6f\x76\113\x78\121\150\x34\61\160\x62\66\65\127\x2f\x63\111\x4d\x33\x4c\x46\166\x6d\x6a\x58\146\156\x46\x6d\x4a\105\125\122\x48\x6e\x73\x53\122\162\166\x48\x68\x49\60\126\x5a\105\53\x42\172\103\115\x5a\x4e\x43\105\x6e\105\120\142\x67\121\124\61\143\x6b\153\x5a\101\111\x5a\x71\x79\141\x2b\127\x31\107\131\132\x48\144\x75\x74\61\x63\x38\x6e\166\121\146\147\166\103\x51\124\121\x39\63\x66\x6c\156\x51\120\164\x58\x6c\x66\x2f\x55\67\127\166\61\141\x76\163\122\115\63\154\x63\131\67\124\57\x52\x66\124\x6c\x70\116\62\x36\71\x54\x75\x56\x34\x64\120\64\x4e\x53\156\125\164\66\130\x30\x30\x41\60\112\x50\x45\x2f\146\161\124\x47\110\x4e\x45\152\x50\163\x52\117\145\x36\x66\x46\105\x51\65\121\146\x7a\154\117\111\x74\143\167\x70\x42\x59\x37\x78\x4d\x51\x52\166\154\x6b\x4c\152\167\121\150\152\61\x6d\102\125\102\165\x70\x7a\x50\171\x44\124\x6a\144\130\157\126\x6a\172\x49\117\x62\x55\x77\x41\x58\x6b\x4d\102\170\161\x58\53\104\154\x34\x6b\154\x72\144\x61\66\x49\172\106\x49\x69\x7a\x69\x68\x49\x52\x61\x78\146\144\167\x69\130\155\x6b\70\x78\x77\105\x63\116\x32\105\61\x73\x67\57\x6d\x51\64\60\x52\x44\171\153\x57\x4d\131\x56\x5a\x78\x50\123\141\x6a\164\111\151\116\163\104\106\x2b\161\x55\131\x63\61\x54\143\x75\x4c\166\60\171\x53\x70\x75\70\112\166\113\x2b\x59\x55\x6b\x45\110\126\101\115\x5a\63\126\x5a\x32\101\62\167\x6a\x55\x39\151\146\x6f\111\153\x30\104\x79\x41\172\x69\x6c\163\x53\103\161\70\x53\x2f\61\155\x61\x36\117\125\144\x4e\x46\144\117\171\167\x75\x43\x35\x2f\x50\x4d\66\105\x54\x6d\x6b\151\162\x6d\165\161\x4b\x49\x64\160\x44\x35\x41\x72\x66\60\172\63\x74\x4d\x34\x62\x53\147\102\x6d\x42\110\x68\70\106\162\x56\105\x6c\x70\x53\x37\x6f\153\126\x37\x43\53\105\115\130\x41\x54\63\171\x74\146\147\152\106\150\113\x41\x4d\66\x42\x4f\63\x45\x4e\x33\120\171\x53\x6f\65\131\120\125\105\x39\x4d\163\130\171\117\102\106\115\x33\154\63\x43\x45\122\143\167\x4d\x43\150\104\124\x4c\x64\172\117\x59\163\122\167\120\x57\x4c\105\x53\62\x61\x69\142\x34\144\64\x6a\x48\152\x4c\x6b\x49\130\167\x62\164\153\x48\x75\x61\171\157\121\166\64\120\116\x55\142\60\x32\x6b\x48\x6a\x50\x62\123\123\x4d\x57\x4a\x44\x58\x75\127\124\x6b\61\106\115\x79\x47\x66\x45\70\122\132\141\145\x61\154\171\x67\x79\60\x41\x58\x5a\115\x38\141\x55\70\127\70\x4b\64\121\61\66\141\x4e\150\x4b\161\x42\171\x5a\x6f\x55\61\150\146\61\x63\x59\x41\105\x55\x74\64\x4a\x41\152\106\116\x6a\x47\x2b\x32\66\104\x64\114\x73\x79\x78\160\70\x68\x78\x49\x67\x38\x55\x35\x54\x46\x66\x61\x36\x70\x50\x2f\x49\164\x33\x6c\x2f\157\153\153\166\x33\163\x45\156\144\x74\x38\101\x50\x32\141\x53\x6f\172\x49\x4c\x78\x70\132\x77\x47\145\104\112\x56\x70\151\x68\163\x57\x46\x42\107\x4c\150\x76\151\114\105\142\x69\x41\121\x4c\171\115\162\x79\116\172\123\166\x32\126\167\x79\101\104\111\x55\x67\120\x51\101\125\144\x54\x2f\x31\102\x64\113\142\x34\x70\x64\150\53\165\x52\146\171\126\x4e\x47\x38\x63\x78\165\x33\102\x68\x46\154\x54\104\x6d\x4a\x62\131\172\124\x36\x58\115\x47\171\x70\x75\116\167\107\x6f\x33\154\162\x56\x58\x62\x55\x46\106\164\123\162\161\x68\x5a\60\63\146\x45\106\x6e\x54\x7a\166\x47\163\141\x62\162\151\x6c\x6a\x5a\60\x47\127\x65\x4d\x41\164\x6d\145\122\113\x36\x58\101\x48\x61\x72\x38\153\x41\141\x72\57\x57\x68\124\x34\141\x7a\x42\x4e\x68\x4c\65\101\123\166\66\171\144\x69\170\53\155\x6e\x42\x66\127\x54\153\x77\x44\105\61\x49\124\x74\x6b\x30\x76\166\71\x35\x41\x59\64\64\160\105\131\x31\121\x65\x56\x41\x65\x6f\x7a\x68\166\171\146\114\x57\66\x37\x65\151\64\113\x57\x4a\150\x6f\x78\65\152\123\146\x6d\x65\131\57\x66\157\123\x7a\x69\x79\156\66\x52\x57\x75\127\x34\111\125\170\157\64\x46\153\53\x43\x38\x61\143\111\107\143\143\x31\x31\141\105\123\165\x31\70\167\167\165\106\172\x4a\111\x52\125\153\x69\167\x45\151\x6d\163\121\x71\x48\x5a\x68\53\151\x4e\167\67\x31\60\117\144\x2f\63\130\x6b\x42\x38\117\156\102\131\x50\161\x68\x38\x72\x46\x45\132\x56\x78\x69\x36\125\114\x50\x38\131\170\142\x54\165\126\x7a\x68\x32\113\125\113\x2f\130\x34\x54\x38\63\171\x31\103\x65\120\x49\113\x56\x43\57\53\107\x45\x6a\x2f\x42\x74\110\104\x78\127\121\x4a\x2b\127\x74\157\x2f\113\x32\x61\x70\126\x6e\x48\127\x55\x66\70\116\126\x74\110\x76\111\61\60\103\x2f\x37\x30\67\x47\157\105\70\x73\165\123\x4c\x75\170\130\x57\x53\66\x75\106\x2b\165\x49\142\x65\114\x72\151\x46\120\x56\144\x63\121\x47\x54\163\161\172\122\x58\x77\153\x2b\67\71\x57\145\53\x4c\114\x50\163\143\x72\x77\x48\66\x71\63\x32\151\164\67\x67\117\x69\x72\x31\x35\141\130\x38\154\165\144\161\157\x32\116\x75\x6d\x61\110\x6c\122\x41\142\112\127\x73\146\x51\116\x69\167\x77\x75\x70\x76\x31\x72\x52\x37\63\165\141\71\x64\x63\x74\65\x79\x79\x71\163\x30\65\x2b\x68\x77\x6f\x73\67\143\x2b\x73\160\x77\x75\x59\125\x73\146\x34\60\160\112\101\153\160\x71\147\x72\151\143\132\x34\105\x6c\104\147\142\x72\166\x51\x39\x72\x33\x76\x62\x37\x48\144\125\x6e\112\x45\x75\x34\x6d\x45\x42\x6c\x38\x4d\x51\x45\x68\x77\x56\x69\x4c\131\110\x45\61\x2f\x42\x55\165\157\154\105\67\x50\163\x46\106\144\154\122\x31\x52\66\126\126\154\106\164\117\162\x59\x6c\113\x33\60\x34\125\124\166\147\x72\57\x4d\132\153\x35\x42\x6d\x50\153\x52\65\x48\162\x6a\107\x65\x4e\x42\106\x46\170\156\122\125\x6e\57\x6f\70\67\x44\x50\x6d\x38\x6d\127\x4f\x47\101\x6b\x55\64\67\x32\61\114\102\164\x47\x70\x6f\x73\x4f\155\66\120\x73\150\x57\x2f\163\114\x66\x7a\x75\x6d\172\125\63\x44\65\53\x43\105\123\117\156\131\115\x66\117\x2f\x58\x57\71\127\141\x50\x47\156\x74\x52\x66\157\x39\70\x33\154\x55\x2f\x39\61\x59\160\x37\x2b\161\x4a\62\121\x31\x4b\125\155\103\153\x6d\x36\164\x6c\163\x57\x7a\155\165\x57\x38\70\x76\106\117\166\x71\x53\x58\101\152\x2b\65\x44\x47\153\x76\x34\147\105\x6a\66\x74\132\x66\163\x6b\111\101\141\x55\64\65\61\x4a\x76\62\114\x41\x6b\x32\x35\126\x4c\127\125\x39\121\145\x7a\x4b\x58\x47\172\x52\x62\60\170\65\x59\112\171\x55\157\x49\57\124\123\112\x32\60\71\x76\x2f\103\x6b\154\x57\x69\x76\121\165\x67\145\x7a\x30\x68\x36\x30\151\66\153\172\x52\x52\156\110\x38\x2f\x35\121\x48\147\x45\x5a\112\x2f\x36\62\116\64\x69\104\122\101\x32\144\145\146\x39\x49\x67\143\165\x36\x59\x65\x70\x41\155\x6b\164\x72\x4b\57\x52\105\103\112\164\162\x38\x6a\120\x55\64\141\154\x6d\x54\x4a\111\60\126\160\x4f\65\147\x30\124\x6e\150\x46\x49\x30\154\130\151\x62\155\x51\x6d\166\x44\x45\62\145\x38\101\164\x57\x55\x4b\x67\147\53\157\x65\x6e\70\126\162\x4f\146\107\x6f\103\131\x59\x6a\x45\57\x79\x6d\103\x4d\156\x75\x77\161\150\141\x67\127\65\71\121\166\144\x39\150\111\x42\x39\x79\152\171\x43\x4c\x70\x41\61\170\153\111\x58\x50\x55\x4d\70\162\162\120\121\106\110\x50\x50\171\x50\x61\x37\172\x56\x67\x30\x47\x49\x75\144\71\101\151\x75\105\115\x57\111\70\x59\x79\162\x39\x65\x38\x69\157\114\x2f\x57\115\x31\150\x4f\144\x2f\114\x72\113\x4b\x4a\161\x54\164\115\106\112\132\106\105\x52\124\132\125\x7a\120\155\x49\150\101\161\122\154\x56\x4e\126\x48\166\x58\126\101\103\x6f\121\132\150\130\x36\124\104\167\60\x43\114\144\x74\x4e\x76\x7a\x6a\x4b\x6e\65\x33\x34\x31\x34\61\x31\x52\117\x6b\152\163\125\x61\x33\x64\x41\x75\126\153\145\x44\x62\101\x4e\163\150\66\x48\x4b\x44\107\x77\130\x66\127\x4d\x6e\144\112\146\142\167\x61\157\101\x4e\x70\110\x32\x69\155\172\x66\101\x42\x2b\x49\57\166\x52\x51\126\x54\x47\x31\x5a\x48\113\x64\x30\x6d\121\x55\151\x41\x64\126\x68\145\x4d\x53\x72\70\164\x71\x55\61\111\x61\126\x38\x4b\x59\x4c\x6a\x75\103\x6f\160\123\x6e\x34\x79\124\132\124\x73\106\x35\x69\113\x52\x58\x63\64\152\x56\143\164\172\x56\x32\114\x4e\70\62\x6e\57\x47\154\107\x33\155\x50\121\112\66\x52\165\x5a\x55\x51\x62\167\x58\167\154\101\x36\x65\105\x34\x7a\x6e\x4e\x73\57\132\122\125\111\113\x37\x70\x4a\110\106\x4e\144\x6d\x6c\x4a\x6d\142\x36\x6b\62\x36\x6e\53\x58\x32\x68\x37\165\67\114\x2f\x59\x6a\x6c\62\x37\x56\x35\x31\x70\53\115\67\123\x4f\x79\124\157\142\123\x70\x59\107\104\x4b\x4e\154\160\65\160\x78\x68\x37\x44\x63\x6b\x6e\x32\162\x6d\113\164\x33\x4c\x47\x64\x79\65\60\x4a\111\x4c\x54\171\x42\157\127\151\65\x38\x76\165\122\114\x43\x38\x44\144\x5a\x78\110\x49\162\x75\x4a\116\66\x41\x35\x4d\x75\150\x31\x73\x59\153\x4e\x41\x6c\150\104\x41\127\161\x55\104\122\x31\x42\x55\105\64\x46\x6a\64\x6a\123\153\x49\130\120\60\115\101\x74\x31\x6d\167\x74\x39\65\x47\166\167\x64\x70\x36\x48\x69\141\x6f\x6f\162\142\61\x67\x49\x33\114\147\111\x54\x72\57\x58\152\x34\162\62\165\x56\x54\x47\107\x4a\170\x64\x58\x73\123\161\150\x56\153\x77\x74\x68\x4b\130\x6d\x36\120\143\x52\x58\61\71\164\70\x6c\x2f\x6c\x52\110\151\166\x31\x6d\163\x2f\x36\x38\166\167\162\x55\165\142\x6f\x72\x2f\106\115\162\x74\67\107\127\x6c\126\141\x45\165\x57\172\121\151\x77\x47\x38\x6a\142\x7a\x61\x54\x38\165\x52\116\61\x57\113\x69\160\65\x55\x4a\x34\105\61\x30\x6b\61\x6e\x43\x52\57\122\170\150\x74\x62\x32\x4a\160\154\x31\154\122\132\x47\x36\105\x48\x6c\x65\70\146\x6f\x73\132\147\x53\111\65\x61\x4c\115\146\157\x41\x2f\x4a\x37\60\127\62\x6e\x4a\x6c\x66\x59\x6a\x36\65\x47\165\124\71\x50\117\160\x56\142\160\64\171\115\x41\147\x35\113\x39\114\x69\131\147\x65\60\x78\x59\146\132\101\x63\53\163\x77\x56\x46\x6d\113\x69\x53\117\x7a\x38\x51\x71\x6e\146\x6a\70\106\x4a\x67\161\150\156\x4b\x4c\x70\126\x38\125\x53\127\x79\x76\x45\160\x31\53\164\172\x65\126\172\107\63\x4f\112\102\144\x70\x44\x6b\x4b\x4f\x66\x39\x42\x47\x6d\x43\130\x4c\x59\x51\161\150\x53\x65\x67\x2f\x36\x6d\x30\x76\x58\171\x65\x6b\x70\121\150\145\x35\x57\53\x6e\164\125\x65\x35\x44\x63\x4a\x59\x37\x74\154\x31\132\124\66\x42\171\x52\x57\x59\64\167\161\65\x31\x6f\172\x66\x41\x70\147\160\102\142\x77\x32\x39\144\x30\x6e\101\116\x72\106\146\x2b\101\x50\146\112\141\x2b\x42\115\110\121\124\x6e\150\144\57\101\x72\123\161\x48\117\165\154\x56\103\113\115\x48\147\x77\x6a\62\156\111\60\70\x59\172\167\x43\166\x57\146\106\162\x57\103\156\66\x52\172\x41\121\x4a\146\160\161\120\x33\106\113\171\161\101\104\x45\x67\x75\x2f\x6e\x63\57\113\x74\156\x66\x4e\x78\113\x6b\x31\171\x2b\101\x31\x58\70\x52\x48\x6c\157\x58\147\x62\x48\x46\x51\125\70\x42\64\x37\x4e\x66\155\x7a\x67\x63\x6a\147\x4d\x5a\114\154\x64\53\x6a\53\x67\x6b\57\152\x31\x69\144\x71\155\104\x76\x6c\163\64\150\114\x6a\x45\132\x38\x57\x4d\172\x53\x7a\155\x6a\120\x6f\x61\x59\121\x33\x31\127\x4f\x67\116\x35\131\x59\x76\x55\111\x38\160\115\x64\110\130\x63\x76\x49\112\x39\x2f\121\103\x33\x5a\126\150\157\x46\x48\67\x74\x7a\x55\x49\172\62\x56\x50\x57\170\x4b\x45\x57\62\157\x49\144\67\x53\106\141\x4c\116\116\127\x67\166\154\122\x75\163\147\62\150\x49\60\124\122\117\x56\171\x52\144\112\154\163\110\x55\x39\x39\x4d\x34\x2f\66\161\60\152\x53\160\x2f\x66\x38\105\x6d\132\162\x4c\x34\x69\103\x33\x38\113\x31\x6e\153\143\70\x52\x2b\130\x65\x32\x56\53\x48\x75\x39\144\163\61\120\60\x69\60\x73\147\60\155\114\126\x32\x57\115\103\160\x49\164\x36\164\x77\x72\152\x74\61\120\x32\71\155\153\x74\141\x6f\x4c\113\160\116\x51\x70\x42\x6f\107\157\152\142\53\x30\x78\x58\x72\117\153\x54\145\x42\167\x6b\143\x37\x64\x39\111\147\162\x44\161\67\x5a\x56\x37\165\154\117\x30\145\x56\170\x76\x51\57\157\63\143\x61\x7a\x39\115\122\x66\x34\101\x46\125\x67\141\60\152\166\124\x58\x4d\101\x48\x66\67\117\141\x42\126\121\x6c\162\107\x5a\117\104\146\x67\x7a\114\x6f\x44\x7a\x6d\x4d\107\63\x4a\167\x73\x53\120\102\x30\123\61\151\67\116\170\144\53\131\170\x4a\x70\x4d\x6e\x64\x42\117\x58\x79\144\x34\170\x41\x47\165\70\x79\x41\145\145\61\x72\117\157\x54\151\142\x77\131\152\61\61\107\x72\x4f\x47\x41\122\60\x50\x4d\x56\150\105\x65\164\170\120\125\x66\x56\70\110\111\x63\x4e\102\142\167\x48\150\172\160\157\x6c\x31\x42\x30\63\163\x4c\64\161\151\x39\x44\x69\x2f\60\x41\x39\127\165\123\x78\x44\x4b\x6e\53\x68\x6a\x79\x74\x38\126\x47\66\x77\62\x47\x38\x63\x58\x65\x62\151\110\x6f\65\x59\x53\156\113\154\x55\x57\164\x51\121\65\123\x4a\155\x4d\x63\x75\x74\101\x62\x6a\x63\x4f\x47\113\132\x53\x6b\x54\x5a\66\172\x32\65\x4f\x77\162\71\166\146\124\154\x6a\x4a\145\105\x6d\61\70\62\156\146\x72\153\167\60\x41\x66\151\156\x68\x31\x6c\x7a\x54\142\110\x57\57\153\111\170\x78\x74\x79\x54\x4a\x36\x43\141\x46\x55\126\x6a\127\x49\x79\121\111\x6d\143\x72\x66\62\x78\123\x72\x6b\141\x70\103\x6f\162\x78\x73\125\x41\166\x67\x45\165\126\x59\x6d\161\167\x6a\x4c\x4a\x67\143\x31\170\x33\141\167\x79\154\x46\154\x42\62\153\x78\x53\123\x56\x4d\x61\x69\x30\x61\172\160\113\145\125\x41\165\126\57\x76\121\112\x47\110\x4b\x55\107\x44\x71\162\111\105\71\x54\x52\172\x62\114\x72\132\x31\124\144\103\70\105\62\156\x31\x69\163\x54\53\104\x51\x6d\x57\167\x46\x6f\112\x61\x33\x37\x65\x73\x63\163\126\x45\x66\116\x75\102\151\x47\126\116\x72\145\x47\x70\x52\132\103\53\127\x57\167\65\172\167\x49\x64\x2f\x6f\164\143\115\132\63\147\x62\x74\155\166\x72\x43\x45\x44\x6e\x52\114\141\117\131\126\143\147\104\71\160\60\x35\x46\x6f\104\165\x35\x6f\122\60\105\x68\112\x32\155\x63\x55\x58\67\143\105\165\157\x41\x53\x6a\53\x35\150\101\155\x67\x48\110\x67\131\x75\104\171\145\123\x67\141\x76\x51\160\x33\146\154\101\107\111\170\x50\x6f\x6b\x57\64\171\165\110\x6a\143\x32\103\x2f\x44\x77\x74\124\x74\112\x76\x36\127\x62\x63\105\130\151\x47\107\152\120\x34\x59\126\102\62\x4b\131\163\x4a\61\156\122\156\x6c\151\160\x6d\x4d\x36\x77\x65\165\61\x49\110\71\131\x54\107\x2f\x70\60\x50\x6e\x78\x70\x52\101\154\164\144\x36\x6f\71\141\143\x30\170\146\x6f\x41\167\115\63\x61\x78\x4e\x74\x47\106\x2f\x7a\166\127\x6a\171\x35\127\x64\x5a\122\106\x76\x37\x7a\x39\110\x34\x56\155\x48\131\111\164\x33\x49\171\x61\123\157\x44\x55\114\151\111\117\65\124\x76\x66\125\162\145\141\101\63\105\x48\x50\130\116\107\x6d\61\103\x2f\161\x63\171\x70\157\63\x31\124\x4e\x31\x37\164\106\x66\x7a\x48\x74\x52\151\x72\61\x6f\x46\x74\x4b\166\153\155\x4a\x52\x34\x65\142\60\171\x34\x62\163\153\x69\x47\x39\142\163\x2f\x68\x50\x77\x67\x33\x67\167\151\x54\x4a\x72\127\x33\x4b\53\146\71\141\101\57\x45\x65\x42\143\121\x5a\x61\x6c\x4a\x4a\156\x6f\120\x36\x76\x53\x79\x6a\162\131\x4b\157\146\143\71\117\132\132\x6c\161\x62\111\x4c\x37\153\x4b\154\x38\61\x77\x75\151\x37\x53\155\60\67\123\x64\102\113\106\x31\x6d\x31\156\127\160\x68\x42\157\105\x34\x51\143\x45\111\x61\x69\x4d\170\127\116\x44\106\x2b\110\144\145\64\102\x48\x44\104\x6a\152\165\x73\102\x35\57\104\x53\64\122\x55\107\x6f\x38\x45\x6b\x59\x6e\132\157\x6f\x51\162\146\x50\122\x5a\67\x78\112\101\x4a\x58\x7a\117\x51\x57\x30\105\x38\x51\102\153\150\65\x35\172\x32\116\x79\154\64\x76\66\122\101\113\x2b\x44\x54\x4a\64\x7a\x71\x4d\120\x56\x35\x47\172\x53\x33\114\x38\120\x71\142\x68\67\150\154\116\x4c\141\64\165\x49\x44\147\117\165\117\x54\x4b\101\117\123\x5a\110\110\157\152\x49\61\x43\102\x47\106\130\156\64\x58\172\x4d\x32\167\117\x62\x33\x65\x79\160\102\70\144\x69\161\113\x6f\172\117\123\57\x6e\x51\x77\121\x69\x43\x77\x57\172\x69\154\x70\71\x49\x4a\x79\x6d\155\141\x35\x77\101\112\57\65\146\x69\x6c\64\x68\160\x64\122\x32\x71\164\124\116\x4b\157\x34\x70\66\145\111\x69\x62\x63\x4a\x4f\x30\x70\x66\111\156\x4d\164\x67\161\x6f\120\x68\x51\x57\114\106\117\125\x6e\x37\116\x53\67\120\71\x4d\143\x51\153\71\x4f\x6f\x67\113\x65\102\x35\164\125\166\x64\123\112\x73\x70\x2b\114\144\154\125\61\x33\x4b\x43\x2f\x67\x41\142\x51\130\61\70\x70\x62\x6d\x72\165\x78\116\153\x6d\x6a\x65\x4a\131\x31\x55\101\117\163\x70\53\x6c\x54\110\x31\126\x4d\132\125\103\117\102\x55\132\x55\x7a\66\x64\x56\x2b\122\x49\x47\166\144\115\147\107\x49\163\x35\115\164\144\x79\x51\102\153\x61\x6d\x6a\x59\156\155\120\151\117\x75\144\157\144\62\x48\124\114\110\x2f\x63\x77\x41\120\x4b\x47\x32\x66\x30\x42\116\x6b\x34\154\67\144\x71\65\67\114\x74\x34\x50\111\x4b\66\x34\53\x6a\171\132\x6d\164\x66\x68\120\156\154\x7a\65\x36\x2f\x6b\101\x6c\123\130\x5a\53\53\x47\x75\x66\x67\x58\x75\170\154\130\x48\x78\x6f\x55\153\x43\127\124\x4a\153\x67\x2b\x52\x61\x7a\171\107\121\113\71\132\x5a\101\x6b\x56\x43\104\x73\70\x6a\x66\x42\x6c\x66\x35\x59\x51\170\151\x58\x6a\167\121\105\x45\x32\164\x44\106\x63\107\x38\151\x44\x65\126\132\x30\x32\116\152\122\164\61\x4e\x37\x54\x4d\146\x75\x48\x67\x75\163\x73\x65\166\170\x2b\x79\63\101\57\105\61\170\x71\x32\x41\x38\x61\156\x44\x59\x4f\x54\x77\123\x55\163\x70\x67\x65\171\167\166\x67\162\x58\166\162\111\x4c\71\64\x31\x59\150\x69\117\65\x4a\121\151\x56\x32\x78\101\121\x78\x6c\150\x4a\x4d\146\x45\x64\152\x62\123\113\x63\x6c\114\62\x55\x64\70\x50\x6c\x51\x6b\130\70\x66\67\157\111\x53\126\x6d\145\x43\71\x42\131\110\x2b\166\62\104\65\x48\x47\60\x74\146\132\x53\111\71\61\170\101\x72\x6e\121\170\x45\162\127\x77\x76\131\x31\101\170\172\x68\132\112\121\x4e\x51\x73\125\x75\x49\x73\x4b\131\x33\61\127\x64\x56\x56\102\x54\102\125\x74\143\114\115\115\155\x67\147\x36\157\x41\120\61\154\x7a\x39\154\153\x6c\101\x58\112\101\x67\x61\x58\120\171\103\x51\x62\x78\123\164\x72\x6e\x69\x48\x34\127\116\165\101\x2b\x79\120\105\x2b\162\163\x58\x52\125\x72\x76\x46\143\x6f\x6d\x68\166\153\x55\x7a\x53\151\x7a\147\170\61\151\x43\x52\161\64\142\x2b\x6f\164\162\125\x57\x71\x4b\117\106\102\x4b\x54\x38\64\x63\103\115\121\124\x4d\x7a\x31\x6d\111\164\103\x4a\x75\66\116\143\x66\x76\107\x33\x64\x64\x31\x72\60\x67\x6f\x65\114\146\164\124\x65\146\x6c\x72\x37\x4e\125\x34\60\x6f\166\x78\70\x73\171\130\141\x62\x38\x34\172\x6e\125\115\152\104\x79\102\167\64\110\x73\x4e\147\57\x6f\57\152\x49\113\x37\154\x38\x44\63\x36\x78\x74\127\120\160\165\103\x4e\116\62\117\x33\x6a\x69\123\x77\x73\124\144\x39\150\64\x2f\150\x73\x62\57\x33\166\x45\x77\126\143\150\x43\167\57\57\x61\x68\x6d\107\60\71\x67\x75\116\163\142\151\167\x77\71\62\157\142\152\x61\x68\x54\x39\x63\x79\x38\67\120\x44\x76\104\x7a\116\132\x63\61\x42\x6b\x52\126\x71\156\x76\107\x41\156\x47\170\x44\x77\x41\x65\x56\x75\162\x64\160\67\153\x71\x63\x67\x4a\70\x6c\x47\x44\112\x34\x6a\x71\154\67\150\x72\x46\x57\161\x59\x71\x53\x6c\105\x6d\163\141\x65\x42\111\x4d\157\64\160\x6c\x51\155\127\x75\157\x42\131\x55\71\x53\x2f\171\121\166\x4a\x58\152\x30\x39\x56\130\155\x55\155\165\165\x75\x71\70\x4f\105\120\164\162\104\x37\x55\62\x53\x55\102\143\x71\x4d\101\x32\x37\x77\x65\x79\x69\x44\62\x55\65\131\131\x4e\71\x62\x6b\x50\151\132\x4a\120\111\151\x76\x75\x4a\60\x48\160\162\167\122\x41\x4a\x7a\x55\x2b\x58\x43\141\123\x4e\104\141\x56\104\105\x6a\x75\x6d\165\x5a\126\x41\161\131\x4c\x41\x45\144\112\x31\x72\x4f\154\x78\142\116\127\105\157\x67\x54\x65\x46\x77\x6f\64\x30\x48\160\153\x70\132\x63\x38\124\x78\x30\154\71\x51\144\x53\x4e\x73\130\x6b\131\x57\144\x73\166\x62\x2f\x32\162\x73\x53\115\x43\155\113\x4c\106\61\x39\x69\x4b\x4c\x6a\145\111\x32\x4f\x31\70\64\147\171\165\x47\116\x49\151\151\x49\x49\157\x6f\167\x69\57\145\161\66\53\x71\x69\152\164\x64\66\x66\131\x6f\x6f\111\101\x67\151\x65\x41\x4d\151\x72\x51\115\x4b\161\x49\163\113\x79\151\110\111\111\x51\x79\x49\x34\157\127\143\152\x53\x42\110\147\67\x52\101\121\x33\146\61\x33\146\124\x64\130\127\146\155\x32\x78\x65\x52\x4c\67\131\x65\67\x38\166\x4f\x36\x71\113\141\164\144\145\166\x2b\142\66\146\162\113\66\113\x79\x73\151\x73\152\104\x2f\145\x69\x33\x63\x46\x32\116\166\62\x67\142\x31\65\104\x39\147\x37\x38\x73\103\145\71\x6a\x31\131\112\62\125\x6f\171\x55\x68\161\x4b\157\107\122\x45\x59\x2b\141\152\x46\142\120\171\x64\162\130\103\x44\64\x38\x2f\x32\x31\x54\101\x63\151\x58\x71\x4b\x36\x54\110\x32\x64\x4e\130\147\65\156\x2b\131\x5a\x42\x44\63\x53\150\x6a\102\163\x78\x44\64\x71\x71\157\154\x6f\151\x49\x69\x79\110\x69\x4d\x46\x73\x36\x51\x78\120\167\x71\x63\64\x6b\x6a\63\x34\146\71\x44\141\171\124\131\104\147\x7a\155\60\x4b\x35\155\102\157\123\x74\132\x44\57\166\x4a\164\x52\x54\x69\x54\107\131\101\x79\141\106\53\x50\x49\x68\x43\x33\x34\164\120\x52\112\153\62\x46\x61\x4a\162\x6e\x75\x49\62\x57\x4d\x56\67\x41\x39\x57\x45\x34\62\110\x6b\115\166\63\143\x77\115\x62\111\x51\x30\111\151\162\x6e\121\x6a\x6f\x76\103\156\x52\x68\147\x70\x54\x6d\120\x58\x4c\164\x58\143\x7a\61\x67\57\x44\172\131\61\x45\x61\x58\x6c\155\154\x54\154\x50\70\122\67\104\x75\x77\x61\x6a\x2b\103\57\x45\x2f\x33\71\x69\x48\x72\x32\x58\113\130\127\110\x78\111\x52\164\x31\x42\121\164\53\x55\x59\x61\151\x4a\157\114\146\60\127\x49\62\x4b\x57\147\x31\126\141\102\x43\x44\106\x71\155\125\x7a\101\70\62\172\x36\x43\115\143\x5a\x53\121\150\154\x34\x68\157\x4a\x58\63\142\105\x4a\x41\x6b\156\x56\132\x48\x6e\123\104\170\172\x39\x63\x44\x2f\x32\144\156\106\x32\152\160\x69\113\161\161\x2f\x6f\66\x45\112\121\x6d\x4a\132\111\170\x65\71\170\x35\105\x31\142\155\53\172\x77\x4b\x65\70\122\107\150\131\111\116\x66\x4e\165\x39\x44\111\x67\x36\x42\x36\64\x38\132\104\146\x30\x37\152\64\x64\x64\165\144\126\x51\125\102\x6b\x47\113\164\70\x49\x75\x71\x78\x6a\x61\x62\102\71\x6b\x6b\107\x2b\x71\x63\x7a\x5a\x43\64\122\x38\x52\113\61\x6c\x57\127\x2b\170\101\x53\x41\110\x54\x77\151\x52\x6a\x64\152\x68\x49\127\x57\x33\123\x32\x4f\x45\145\142\147\x4d\x68\x38\154\x72\70\124\114\127\151\x41\x46\x35\115\172\164\57\x44\x77\53\x43\160\x54\x45\x4c\x4d\111\151\x49\x47\142\x64\62\x66\126\63\x4f\155\x79\x36\x49\127\115\x50\x4f\x6b\70\x49\x67\x74\131\x74\x65\x44\131\130\x79\115\125\164\x30\153\112\110\x6e\x73\113\131\147\157\x69\x44\70\x65\x6e\131\71\x6a\70\126\x37\x44\155\x77\x69\172\124\124\x52\x53\53\x4c\172\x69\x39\153\153\x4f\x30\53\57\x57\x56\112\123\x65\172\113\x74\x44\x78\125\122\x62\125\130\x43\x67\163\111\113\x73\112\66\57\102\165\x31\104\120\162\x41\107\x2b\115\104\117\x33\170\x4e\x54\122\x39\156\x61\163\120\113\172\67\57\x58\x61\x55\x4c\x73\161\123\x42\x4b\x61\164\127\x46\x78\53\65\x63\x5a\103\x52\153\122\x6b\x57\151\x61\x63\114\120\130\x55\112\x68\143\x78\x44\x6c\165\63\x65\x64\153\x38\166\x63\x2b\125\x43\x4a\x61\66\151\150\x42\160\116\x54\162\x79\154\116\122\151\x6f\66\143\162\64\x6b\157\x6e\116\x52\121\130\x56\153\110\57\71\106\x68\104\120\121\x37\x59\x6a\122\x30\121\64\166\165\53\x67\x32\x35\x55\x46\170\x6a\x36\x58\150\126\125\x73\116\126\x57\143\x5a\142\153\x6e\x4e\152\x75\101\x64\64\x79\167\x67\116\116\147\x68\165\x35\71\x5a\x46\x73\163\104\170\x51\x63\112\146\x44\x36\x57\62\106\153\156\x51\x38\x78\x72\x6f\x2f\61\167\x57\x74\171\x6d\x4a\165\x46\x50\x47\x59\x44\114\63\x79\110\163\60\x55\x47\x64\66\x2f\101\142\70\57\123\165\157\57\127\x53\x52\144\x5a\x46\x47\115\x49\121\146\131\x61\171\71\x2f\104\143\123\114\x70\117\x49\x64\x42\x4d\x77\57\102\x63\152\x30\x64\164\x73\64\113\x65\171\116\145\x41\154\x52\x73\x56\124\x75\x5a\x44\x6d\117\164\x6d\x35\x37\160\x44\132\115\x58\x53\117\106\x43\x6e\106\x58\x56\x54\155\x4e\x75\113\x36\x48\x71\120\120\x6f\x6f\x67\101\103\172\171\121\141\x49\57\x6f\167\x67\x4c\x62\x51\127\x6b\110\x67\162\x69\x74\172\x56\147\170\61\66\x36\x2f\x6e\106\144\127\146\171\x6b\65\67\x32\62\71\x4c\x71\171\x79\157\x53\x51\142\61\143\x56\x68\x58\143\x41\141\146\x52\116\131\111\63\x71\103\166\142\x39\131\161\161\121\66\131\x36\114\157\163\141\x6d\121\x71\171\x52\151\x2b\61\x48\x41\x31\x34\x58\x37\x55\103\62\164\x36\152\x53\x4f\161\x36\x55\x78\x39\x43\105\151\x7a\154\156\162\x6e\104\115\123\x64\131\x37\142\x63\x68\125\122\x33\x53\x57\151\163\114\x4a\113\127\x46\62\x78\x6a\x31\x49\145\x5a\x42\x43\114\x64\x58\x31\61\x34\101\x79\64\x33\x44\143\x43\x63\170\x51\110\167\53\113\x46\155\70\x77\66\125\145\x64\x58\x35\x6a\166\132\110\111\x49\111\x53\x61\x6d\156\101\x78\147\x52\106\64\x68\x42\156\115\113\x63\x77\x79\130\115\145\144\x7a\x47\111\60\143\x76\124\x62\147\107\141\155\154\x32\67\x30\125\x50\x2f\101\142\70\x2b\170\117\x4b\x2b\x2b\167\x6e\162\113\131\67\105\143\103\172\110\101\x78\x45\x78\x4d\64\117\x70\x6d\66\x6c\170\152\116\x4b\123\126\x57\x51\x51\x31\x70\151\106\x56\154\x63\60\x73\145\x2b\x6b\113\132\53\x51\x6d\x75\152\150\154\x4b\x37\122\125\x78\x43\144\145\x42\x39\x43\117\x76\162\172\172\x54\x49\65\125\x52\x79\x50\x2b\x74\x6e\130\x4c\x79\x41\x62\x68\x61\x75\x46\x68\105\122\124\103\x6b\x38\125\x4a\x30\x51\112\x43\x76\x74\x4e\x66\121\x63\53\160\x46\x68\x7a\x6d\x4c\127\x36\x7a\x2f\x53\x2b\154\164\155\x35\x68\152\130\x56\112\154\x4a\106\161\103\x63\167\x39\104\164\152\157\x57\x55\x33\x42\x59\x31\x41\117\125\x62\115\147\105\x47\110\147\x37\x57\x63\x31\145\x41\x6e\146\105\157\153\x69\125\115\153\x6f\x69\x52\x30\x6b\162\167\156\60\x7a\153\x61\60\115\x71\113\x5a\x4f\111\x4f\157\114\155\103\154\60\x30\171\154\x6e\63\71\x58\157\x58\115\126\154\x6e\70\127\166\103\x66\123\x61\x49\x6d\x4b\127\111\x2b\x43\132\53\120\153\x57\x31\x51\70\123\53\122\62\x52\x32\x6b\x59\170\x4d\167\x6d\67\143\x77\70\x4c\165\x59\x75\154\x50\115\x79\144\x2f\x42\x57\145\x6a\145\156\157\112\x54\150\152\124\x33\x6c\x30\102\x70\142\127\141\151\x4f\x70\x2b\111\61\121\x45\66\67\x31\x6b\151\143\151\x44\161\x74\x6c\166\144\x43\60\x62\110\x4e\114\111\x38\114\105\153\x71\70\x63\65\x54\x32\113\161\153\x52\166\x4b\154\111\126\126\x33\x45\x4d\x72\x57\x6f\143\125\x73\70\105\x34\x69\53\x4a\x53\x2f\60\x31\112\116\107\131\167\53\155\115\152\x4e\x49\111\60\x4a\157\x56\101\53\x42\x37\166\157\x57\x69\124\127\65\x58\x72\150\x6c\x55\x46\66\x4d\113\x2f\x4b\66\x32\x69\x44\110\x37\105\x4b\147\157\144\107\x38\x4c\166\156\171\126\127\x32\65\x52\153\x33\101\x74\x78\106\66\164\x6b\70\105\x38\61\x73\x59\x6c\x37\67\64\x62\146\x47\60\115\153\x41\101\x4e\141\112\x6a\x79\x4e\117\x46\x5a\x49\167\64\145\x34\143\x59\x6d\x77\156\166\157\x37\x6b\x62\x55\x39\150\153\154\x4e\x4e\71\x53\167\132\x35\65\x43\x4f\x61\x46\x6c\172\x43\x4c\x39\x6e\53\x52\x48\x76\115\154\105\127\x70\154\131\127\x5a\113\x49\167\x53\144\x52\x47\155\x6f\x4a\x59\x59\x68\131\71\144\x31\x58\x53\115\x52\125\x73\x49\x5a\143\102\120\132\x48\x4c\63\x4d\123\x38\x69\147\x61\x5a\x53\63\126\146\153\115\x6b\x48\x31\154\115\151\132\x67\131\171\x68\142\160\116\150\110\x73\156\153\x6a\x45\x54\150\x50\102\117\152\167\104\162\x4e\120\145\x41\x75\163\x55\116\116\113\x63\151\63\x2f\x37\x58\x67\110\67\x30\x39\x57\x63\151\113\x53\x61\x76\161\141\x73\161\142\161\144\x62\156\x38\115\146\165\53\x73\x74\65\x6b\x31\x39\126\x31\x68\171\107\106\x72\x7a\151\70\62\x75\102\112\x78\102\x62\x35\57\x75\x6d\x38\x51\71\x45\x43\x6a\172\146\x67\x58\x35\x6b\x4e\170\x6c\x57\125\115\116\154\x48\x6e\x47\106\x72\115\102\60\x6f\123\123\104\106\x6c\x46\170\x54\151\104\x4f\151\x65\65\116\123\x2f\x75\104\107\x53\151\117\125\x2f\x66\153\x35\x4f\67\x4c\127\111\x4f\x51\104\x51\x58\67\x5a\154\160\124\x66\x47\x4b\117\115\x51\102\125\x47\120\x70\122\152\120\x62\115\122\x32\107\x73\x41\x33\x38\165\x38\x32\x30\x69\x31\171\116\120\125\65\x52\x42\x6c\63\123\111\162\64\171\122\x71\64\x69\x78\106\124\132\x6f\67\x49\171\141\125\x37\104\x66\67\61\x69\105\60\x55\142\x6e\141\x39\142\105\x66\x6f\x51\x53\162\x30\x4e\153\x4b\127\x43\160\116\152\x62\x68\x46\160\x35\114\160\112\x54\130\x53\x49\x30\125\122\163\x64\141\x32\152\x45\102\x4d\122\67\64\161\167\165\x6c\142\x71\x74\x36\x48\x33\x52\171\103\107\x49\x6f\131\x70\141\x61\146\66\x4a\x41\153\164\x4a\53\x6d\x37\x61\x4a\x32\x2f\x6d\x6e\171\111\x38\x36\x67\117\125\132\x71\x4c\102\x6e\121\x58\x57\x55\x76\156\x49\152\131\124\115\x75\x6e\x63\x35\x35\164\x37\116\x59\141\x61\x46\60\167\x39\107\153\120\x45\155\155\125\114\x41\x41\141\61\x42\x57\x76\x77\150\127\104\x50\156\53\x4a\x4b\170\x4e\157\146\x74\x30\x49\x75\x72\x51\x38\116\101\x55\x30\64\127\x30\110\x62\60\x59\64\x6b\67\111\x67\x6b\145\155\157\x32\62\110\164\x4c\x77\116\65\130\66\151\101\130\153\x56\x4f\115\x36\x6d\67\x4e\147\x51\156\x45\144\x55\x48\x39\120\162\x56\172\166\154\116\x51\x44\166\x62\x37\x33\64\113\126\x4f\x6b\107\126\x5a\x43\x54\171\103\146\122\x57\122\102\x79\x76\62\65\153\125\x4c\105\x37\x45\172\x4a\130\142\x4e\122\x46\67\x6f\130\x6f\66\x38\x6f\x6b\x5a\x75\x43\x59\115\147\x79\x45\x69\x42\x54\103\163\x39\103\x4a\x44\x55\61\126\x61\x53\171\x34\112\x4e\x62\x34\57\115\66\x6d\x39\113\x35\117\x2f\x74\x35\121\105\x72\x69\x6d\x31\x43\x61\70\164\154\x58\x41\157\x4b\x2b\x69\154\110\x4d\114\x6e\x6b\x42\x61\124\x69\117\130\102\x4d\x66\x37\171\101\x34\x6c\x59\71\x2f\x6b\x30\106\112\x6f\53\x73\117\67\63\111\122\105\156\x78\171\x51\116\x49\x32\x4c\x31\61\172\x2b\x70\x39\103\x5a\x58\x49\150\141\144\71\x53\x4a\131\171\165\151\x69\x56\115\x31\112\x79\x38\110\x6c\156\x38\172\151\x62\67\x6a\116\155\154\53\x51\x61\107\120\x42\67\152\x76\106\x58\124\126\106\x67\155\x71\126\x4e\x6d\x4d\x5a\x6d\x48\116\x78\111\155\67\116\63\101\x31\x6e\x6f\x6d\x70\66\152\145\71\x35\145\x50\x61\53\57\x77\132\57\x6d\132\142\53\65\x4d\114\121\111\130\60\142\x6d\x72\x52\143\101\171\127\x61\112\160\x34\65\110\x72\x2b\71\x38\102\x65\x4b\107\x71\153\103\61\106\x59\x55\x47\x6b\x37\x68\65\x30\160\x6d\63\60\165\x33\66\57\x65\x36\112\164\x6d\x4f\x45\120\144\66\132\x45\132\x39\63\x50\x5a\x30\x76\170\x34\x51\61\x78\141\57\x4c\125\x65\103\172\171\x46\116\x2f\154\141\171\70\x44\x4d\156\x34\x72\150\x38\111\161\113\x4a\x4d\123\x33\x65\156\x51\x76\154\x57\67\145\x42\154\x66\x4d\x4c\x51\106\153\x68\163\60\x67\171\111\161\x35\167\x4a\x32\113\x75\x4a\x75\112\114\x4b\113\x6d\111\x49\x47\x39\57\x61\126\122\121\154\x63\115\x59\147\62\x56\x4a\115\166\114\120\131\71\x62\x55\110\x37\x49\x63\x31\142\x4f\120\116\117\x49\111\111\x6b\x35\131\x36\153\x72\105\142\122\166\62\167\106\x6d\107\x69\x50\145\x36\105\114\x45\70\164\x50\106\x67\151\146\x67\67\x71\145\166\x5a\x63\157\x2f\x4e\157\145\x53\x2b\166\x7a\x7a\x77\x43\x6c\x6c\116\111\x77\152\x48\155\126\70\132\x42\x58\53\116\x44\126\105\x68\x75\x54\x67\x52\141\x37\x37\x5a\62\x4b\x42\105\x4c\x44\x77\x54\x4a\141\112\x53\x4a\x56\x56\126\x74\172\x65\x58\x4a\x69\143\x52\x76\x39\166\x6d\x53\x4d\x51\53\x72\x68\111\x78\122\x76\x69\x4a\x58\x37\x6b\x53\70\145\145\61\x76\x30\x49\x62\63\62\x42\116\170\x4b\x45\120\124\143\x50\x37\125\60\x52\x6b\161\x6d\x6c\106\x59\x46\61\124\61\166\x77\125\163\x36\x6e\x72\67\x4e\x68\115\123\x67\155\62\x6f\x4a\x6c\101\x2f\64\x66\155\53\x36\x48\x6b\121\x30\x51\151\155\153\107\x4b\x71\114\101\147\x41\164\x42\147\x33\x6d\110\144\x68\160\62\121\x36\170\x73\101\57\147\x74\145\102\x47\x6d\163\171\127\x38\x7a\x43\x71\111\x39\112\x6f\110\x64\x44\x64\60\117\141\x43\x56\x56\112\x4c\x47\x6e\146\x67\166\62\154\x47\x2f\101\x66\147\x2b\120\x45\65\141\x42\x76\x54\x61\142\132\x2f\x6f\67\x61\x38\145\115\x4c\57\106\172\141\x6d\146\x61\63\x6a\x39\144\x6c\53\161\x33\145\172\x4c\171\x75\126\x6c\x4e\120\61\63\x6c\141\161\170\x5a\x39\146\x56\155\x4f\x42\130\x58\151\x44\61\71\x77\53\107\x56\167\142\x4f\150\163\x44\x4c\103\x31\x34\x6a\x71\x75\x4d\x4b\x51\113\x44\155\x4a\70\114\166\x63\x50\x36\x4d\x46\57\167\x63\147\131\x30\x33\64\x41\x56\x4c\126\111\x72\106\x6b\64\104\157\157\172\x64\x6b\112\153\124\x32\162\101\x50\x49\63\165\x71\x71\x6d\x6f\x62\61\x46\x6b\113\x66\113\130\63\124\x67\120\153\x51\x65\x56\131\115\x78\x70\x73\161\120\62\107\62\123\153\154\x69\111\70\121\65\117\172\115\x44\152\x61\x4c\x42\x6e\57\110\151\147\61\x58\124\114\x58\x72\x30\x76\x68\156\x58\x63\x42\107\160\x4c\x36\x44\122\122\127\x45\x30\106\x79\107\161\x4b\x6b\164\117\126\x69\111\x74\x6e\x72\x39\111\123\x73\132\164\166\x4b\x45\x77\141\163\167\122\113\x61\x69\167\x77\67\147\164\113\x2b\65\162\144\106\110\x6d\112\150\x46\115\x6f\x74\x47\60\53\x2b\x66\x48\70\x69\110\x7a\113\170\x6c\65\x48\x59\127\x52\63\111\163\x34\153\63\x39\x31\x68\x7a\127\125\167\164\x43\101\65\123\101\x75\165\x58\x4b\166\x48\x6c\64\152\67\147\x33\62\116\110\x31\x45\x37\71\103\x74\164\x54\125\x4c\x34\x7a\101\146\x32\x62\102\71\x59\103\x38\64\106\x4f\61\121\x4c\x55\x6a\112\141\164\121\x45\x6f\165\x48\131\x73\65\x4b\125\115\x42\x33\x39\142\x34\x55\144\105\150\x33\65\164\x35\172\143\144\150\57\64\x56\x37\x79\x6a\61\105\x54\x48\106\x4f\x56\x37\57\156\161\x4e\x4b\x7a\154\x30\x6e\x2f\111\150\x35\131\x4b\127\152\113\156\166\144\126\x4e\x50\x57\x4f\x66\x5a\x30\70\171\120\x4b\116\x53\x4a\53\x62\61\143\x68\164\65\162\107\x79\x69\x65\x2b\70\x51\126\x30\170\x61\151\141\151\63\110\123\155\120\130\170\113\x75\63\121\65\x33\65\x45\120\114\113\151\124\x77\x66\164\171\x44\71\117\155\143\x64\132\107\131\142\x4e\106\x4d\61\170\x46\x79\x57\62\120\x6b\x67\155\53\x4b\102\170\x55\151\x76\x45\x43\x68\x4f\63\x37\x4e\x45\157\x30\125\167\x33\63\x59\155\110\126\106\x47\64\161\152\x58\x2f\x7a\112\165\x49\127\x46\114\x66\x55\125\144\x4e\151\x46\x73\x55\x69\x76\x50\x7a\167\x56\x72\x59\110\x58\x31\x7a\146\143\x44\x36\x2f\104\123\167\171\57\145\171\150\x47\101\127\70\104\x31\62\x72\x75\116\x4c\x50\x4e\x66\x78\x4a\146\113\x41\x37\x2f\x33\156\x76\x69\64\x43\x76\x68\x56\x49\x6c\146\123\115\162\112\153\x73\131\x6b\172\x5a\125\131\x4a\62\155\114\x4c\x76\x2f\102\x44\163\53\150\x44\x49\171\x53\x49\x63\x6a\115\x41\71\106\67\70\x42\106\x36\105\x7a\x2f\172\x78\125\124\x37\x39\x5a\x73\x59\x4e\106\61\x6a\x67\123\x45\x66\106\x77\157\x6b\121\x55\67\x53\x39\152\151\141\x77\154\x4a\152\x5a\x53\147\x70\127\x71\146\x31\x2f\x47\x4c\x62\141\x6f\164\142\x38\x4c\x41\61\105\161\161\x78\x49\63\152\x4c\x59\142\145\111\x5a\x71\70\x5a\172\103\62\67\147\124\163\x51\x43\x4f\122\102\x49\127\x6b\117\x58\x55\144\x67\167\x32\x39\122\102\145\57\152\x6a\131\x43\171\x34\101\x61\x37\131\161\152\x32\x46\x38\144\x42\142\x77\131\x2b\x32\x61\114\103\146\127\x74\x42\117\x50\x4e\123\x56\146\64\150\155\x6a\x49\130\x72\x35\x70\x49\141\x44\166\x71\x56\x45\63\x4a\67\x6e\x47\155\x74\x4b\x72\57\154\x37\65\160\170\x45\66\166\105\x71\143\64\x4e\x4a\121\x37\132\x62\x63\x4d\x53\x43\170\142\x4e\127\167\x34\x42\x62\x33\64\x47\142\x66\141\x39\x43\61\163\65\x53\113\x4b\x71\117\101\x4c\153\x74\114\x45\126\105\126\x63\x4d\x31\x45\141\153\153\62\156\132\x6c\x55\164\104\x50\110\115\x42\160\x49\147\131\x7a\130\144\x54\x31\156\107\x4d\161\165\162\x55\121\115\123\153\123\x48\x6f\117\x34\x70\132\155\157\x6f\171\x62\121\x66\x42\x35\x64\x55\62\71\x45\126\167\x71\157\x6d\x49\x37\110\x6b\x78\165\x61\x51\120\x51\x4a\x61\112\63\x34\164\x52\66\143\122\x6a\x32\164\x41\x71\x68\142\53\167\110\x41\x50\102\71\131\70\64\64\102\x65\x38\x30\64\112\155\62\105\145\x74\x70\x37\104\x4f\123\154\x6a\x2f\102\125\124\x7a\126\160\112\110\x6b\53\130\x73\154\112\162\x55\x4c\125\127\x4b\x79\x70\x56\105\x45\x35\x49\122\x6b\x52\145\65\x4e\x61\x75\166\164\x41\x74\126\122\x4b\x78\151\113\x38\x74\x78\x32\x37\x79\150\x32\63\x68\127\x4f\115\163\151\153\x4a\x75\x73\112\x66\x58\x65\x31\x53\x77\67\x4a\x78\125\123\141\70\x74\x43\103\x4c\x44\x44\x6d\x38\105\126\x4c\60\126\x46\155\x53\x50\x70\x35\146\153\151\x45\x74\x67\x61\x72\123\57\x4c\x33\105\x4b\x32\x55\156\63\x33\x2b\x4b\151\172\x55\x35\x31\x65\x73\x37\110\165\x31\x34\62\x31\x61\163\x63\x46\143\x52\x4c\67\144\102\70\x4c\x77\130\62\x55\70\x69\x2f\154\x4d\165\101\143\x55\105\x2b\x79\x64\x56\x47\64\x66\x69\123\114\145\161\153\x44\x59\x71\x6b\124\111\121\x63\x54\131\154\x64\67\x74\117\53\113\171\127\x61\x65\x68\x35\x32\147\x4d\x2f\x59\x6f\x68\x59\156\x70\x30\x4a\115\x42\x65\x4a\x75\x4b\147\166\153\166\105\x6f\163\x47\164\x4d\64\x50\145\102\125\162\x46\x71\60\127\160\x56\116\154\x46\156\65\61\117\170\113\x50\x49\156\x59\x67\132\x47\x75\x35\145\64\122\111\167\122\x73\150\x73\x65\x2f\x7a\142\x56\x79\132\157\131\150\x58\x68\170\x6f\x61\x34\x61\142\156\x56\x42\x43\130\157\154\x57\x78\x4e\113\x39\x42\x41\x6b\142\x49\x30\153\x66\x50\x55\x4c\121\172\170\130\144\x30\147\x6f\105\154\127\105\x67\x30\113\x54\156\x65\x38\121\115\x45\162\63\113\60\x6f\142\112\x6c\64\x65\x67\67\101\66\101\141\155\x61\x7a\165\x71\x74\172\x50\125\147\157\151\103\114\x64\x39\x53\x4a\x42\x30\156\123\x47\67\145\x6d\123\142\x35\x2f\121\x74\172\53\x70\x58\120\145\x36\170\157\70\111\155\156\x75\106\x64\130\124\x4a\142\172\166\x78\x62\x73\113\165\110\x66\x67\147\120\164\x37\146\x55\x32\65\x45\171\161\x5a\62\131\x39\x71\65\x62\x78\x67\161\x67\156\111\x65\65\x55\123\105\131\x6b\x59\66\125\x61\155\x66\x4e\165\170\156\105\141\147\157\113\x51\x43\123\x58\x69\x35\131\67\x54\65\x35\x69\155\167\x61\x38\165\x45\x56\x47\x54\61\141\166\161\71\x34\126\122\165\x61\172\x39\x4b\x71\66\x68\131\166\x39\x52\x62\x4b\150\111\x5a\x72\132\115\x7a\167\104\157\x4a\143\x54\171\x69\x38\60\x52\107\121\162\x63\60\113\x45\106\113\111\x77\x31\172\151\155\x50\123\x6b\112\105\167\125\x46\x57\x48\x67\121\153\x46\x45\x41\150\x61\x55\x4b\x41\x53\x67\160\62\x4d\103\x77\x31\164\x4d\x52\x57\132\x46\167\x6c\x4b\167\53\x4e\x55\x64\x72\x58\x48\71\155\x4e\x65\123\107\x55\120\162\162\71\x58\x58\150\57\x68\123\150\125\x33\151\x5a\150\111\x44\57\x71\171\x4f\105\x51\x36\101\166\107\166\x56\101\x76\60\145\110\132\144\x66\123\x6a\x32\x63\151\x54\x69\x4e\x6c\153\x49\164\65\110\x39\104\x34\156\130\x50\x30\155\162\166\160\121\170\146\x36\x4c\122\101\102\101\104\x71\x4e\152\x53\x65\124\111\57\152\x36\67\x35\x57\x6f\x6f\x4c\110\125\x30\106\155\164\160\65\150\112\147\x39\171\70\x62\x68\152\x39\124\155\x4b\105\x52\x72\121\155\x6f\104\x45\60\x46\x58\x36\155\x4d\x69\132\x55\57\60\65\x78\x6b\x66\x48\153\x6e\151\146\66\x43\64\60\x5a\144\132\x6d\67\x4d\x52\121\x34\x6c\157\122\61\105\155\170\152\116\x45\x78\x41\x55\x71\x74\x63\x78\x55\120\123\101\151\x76\155\x57\171\x52\x43\122\64\x68\x32\156\x2b\x73\x75\x41\165\x69\162\62\x6b\65\x4f\101\x6f\123\163\x57\146\x59\110\x2f\x32\x52\147\x68\x48\x6a\x51\x38\x78\x47\160\x4d\x32\x54\x43\x72\127\142\x2f\x6f\126\x63\x6d\155\164\x61\x43\x51\x69\x39\171\x6c\107\x75\x73\146\127\151\166\171\157\x73\171\x73\111\x33\104\162\x4b\x59\x63\x6e\x6a\65\145\71\x51\x42\163\144\131\115\166\x69\121\x79\60\x4a\163\x31\x62\x31\167\70\x6a\x4b\x38\x77\70\144\x68\67\x4b\x50\124\x59\106\116\x6d\104\150\x52\123\144\162\64\x7a\60\121\122\164\170\65\x6b\x66\x76\152\x41\102\151\x63\x67\x66\66\161\x32\x69\x5a\x6d\x62\156\x52\115\67\152\x45\x52\57\x4a\x2b\x7a\x69\110\x56\121\71\x62\147\132\x6a\x50\61\x71\116\x66\107\160\x49\122\152\x71\x41\x63\x77\x43\126\x55\x4e\x52\164\131\163\x65\111\x48\132\143\60\125\x56\150\x72\167\x4f\104\x62\167\105\165\x33\x2f\x42\116\110\57\x63\x45\x70\x64\171\x6a\x46\71\x30\x50\x6e\166\105\x2f\x31\x57\163\x54\x7a\x45\x50\61\107\x6d\122\x42\67\x56\x44\x53\60\x52\x45\x2f\60\121\x51\x64\x71\114\x32\x4c\x36\x54\x2f\x46\53\121\x45\102\104\x37\x6b\114\x52\x69\145\132\121\x2f\163\125\x4a\x63\x63\x78\110\146\111\131\x41\126\115\x4a\132\x42\x32\x79\x66\122\x50\160\x66\x4c\x6d\104\x47\165\152\x4f\61\x2f\103\x51\x7a\x72\61\x41\x52\x6a\x79\156\x57\131\103\x75\x6f\161\x65\64\122\x79\112\x55\x38\x6e\111\x72\x71\x4f\105\142\x6e\67\60\x31\150\171\x35\x73\143\x69\x62\x4b\x70\163\x32\106\x63\x4a\126\x44\x73\x55\x77\x4a\142\67\x58\104\103\57\131\163\x57\x4d\106\x62\101\x50\x42\67\66\x2f\151\x31\112\122\123\x53\160\123\123\x6c\122\x4a\x78\61\145\111\x57\x49\x4b\115\130\x4f\161\x35\x51\160\104\171\x63\161\x33\123\x4f\x75\x36\120\x59\146\117\x41\x6c\57\63\x6e\117\x31\x46\126\x46\165\171\110\107\x33\60\152\64\x61\x62\x7a\130\x38\117\67\x66\102\151\x57\x7a\x46\x36\116\x31\154\x49\x77\142\157\x75\157\x59\65\147\x4b\163\122\x6f\164\x43\141\165\154\x59\71\154\104\x71\x46\x51\104\171\x75\164\x63\103\127\171\x77\167\x6b\x76\x73\155\57\166\x71\x4a\115\157\x32\53\115\x33\104\65\x79\125\111\x53\126\130\x32\x38\x2f\121\x6f\171\x68\x41\157\x4a\x37\x58\157\103\124\170\x6d\x30\x4b\x61\x71\x45\122\x71\x41\x30\x30\123\x2f\x4d\164\x33\x4a\x64\x75\153\x2f\152\66\125\x4b\x70\142\x4c\53\63\x78\x44\71\x46\x35\x48\114\160\x68\x71\x78\126\150\x44\163\111\x6b\x52\x48\x6c\x69\141\x30\151\146\130\122\156\132\x39\x48\123\122\x70\145\x79\111\155\x30\152\x36\x46\105\121\112\x50\x34\x66\102\x2f\x69\105\x55\x6f\162\x65\153\x78\x6b\127\x44\167\147\103\63\131\170\144\107\113\x46\152\x4e\x63\x49\151\x58\x55\141\106\126\x4b\x75\132\x4e\145\x2b\x52\141\127\124\x55\x57\x58\167\124\x66\171\x65\123\107\161\x4f\111\116\x78\115\61\x32\x72\66\130\x30\x71\x54\x67\167\143\x52\x36\131\x4f\x69\x38\164\x42\x35\160\x4c\x59\x42\x33\63\147\107\113\63\63\x72\x4e\127\x4d\x34\x46\101\x54\x49\x57\167\164\62\165\x4c\x37\102\70\x4c\x54\x53\x31\172\57\x54\66\x30\125\153\x49\60\x6c\105\61\57\x6f\x31\x73\162\x61\160\112\112\x77\153\x49\162\125\x6c\105\x70\x36\121\101\x58\x62\57\x6a\70\x43\x75\x71\150\143\161\x61\143\170\63\x4f\110\120\x63\101\150\x33\x6f\57\142\146\60\x30\146\102\153\162\x77\155\x51\x56\61\x41\x44\x2b\132\x56\150\165\x6a\145\161\171\61\x4d\145\x66\116\171\121\x4b\61\x48\162\x47\x4d\x32\157\121\x4d\152\170\x71\156\67\107\63\157\70\114\x56\x6c\x34\170\122\x78\123\x72\x50\x59\x6f\154\67\x77\x37\155\150\131\157\x46\147\x59\x34\60\x67\65\x73\124\x54\x65\102\x75\124\x68\141\53\153\x55\x30\124\x39\x56\57\x4b\x7a\160\x39\x6c\x38\150\x32\126\x31\x4b\107\x74\62\154\65\x7a\113\121\115\x79\x56\116\123\142\145\x55\x62\x6b\x45\143\x6f\x73\57\x6a\x4d\131\x45\132\144\64\120\113\70\x65\x37\104\171\146\155\x50\163\125\145\x7a\156\x65\x49\x39\x72\111\115\130\105\x65\x66\x52\64\x56\x2f\142\x56\x57\170\150\x6a\x38\53\x78\146\150\150\x6e\x6f\x4f\70\x53\123\160\x2f\57\145\x54\66\x74\x72\120\x79\x34\131\147\102\160\x68\x32\x37\x69\x38\150\141\x52\150\x42\x67\106\106\122\171\63\x5a\166\147\x38\152\x79\x52\x38\x47\145\x37\147\x4e\67\x38\167\171\155\104\x6a\x4a\x4a\x52\106\156\x37\132\x57\120\155\x61\x73\x6d\157\x59\x31\x41\67\152\116\x4c\123\x30\132\x43\x78\x34\x6e\170\x4e\122\151\x34\132\x78\x57\x73\102\53\147\172\x58\x6a\x72\107\x45\64\166\x74\x6e\x67\x46\61\145\x45\61\117\116\150\x55\x71\66\132\53\x4d\x75\165\x42\102\x39\150\162\144\x31\x65\150\x30\x36\53\x41\x62\x43\151\x76\155\132\112\101\63\x31\107\x74\106\107\x4b\x4a\71\x70\x57\125\64\x46\x48\x4a\x75\x67\106\x4a\117\142\171\156\x6a\130\x41\x30\60\143\66\x57\111\121\x35\152\146\x51\x72\151\120\162\145\167\125\x76\113\151\172\x4b\53\64\x64\64\x39\x57\165\x6d\63\150\x33\x4e\171\102\x70\147\x52\x58\x35\x62\110\x55\x54\57\x58\x33\x76\x30\104\x30\161\x36\145\132\124\145\57\x34\x44\141\x4c\x54\x58\146\160\x61\120\115\162\156\x39\x58\107\157\x50\x49\142\121\x53\103\107\113\x31\131\107\x37\143\103\170\104\63\x5a\x65\x65\x54\x47\117\x76\155\x73\x58\126\144\170\114\123\x65\167\x4a\x4f\x4d\101\x72\x58\166\x6a\53\x54\x58\142\111\x61\x36\x69\x2b\172\71\x57\x53\163\113\x34\122\x50\123\x58\x42\156\x71\122\143\71\x2f\123\x52\x44\x53\165\152\120\125\146\101\163\x7a\171\147\x62\x58\x34\x46\162\104\155\111\102\x6b\x4c\164\x38\124\x57\x6a\101\x43\143\152\x49\66\x61\x4f\166\116\x62\110\131\145\141\65\170\165\x47\x31\154\x54\141\57\64\x4c\111\x69\110\126\x4f\106\142\155\x59\144\102\x51\x53\x55\150\x4b\x77\172\x78\123\x74\x6b\x6c\161\53\x4d\x57\103\57\x76\150\152\x73\x32\x69\101\152\x6f\x59\x6a\62\103\x59\x62\150\x73\130\x4e\145\x68\x32\x36\53\106\53\x41\x4b\x44\120\x4a\x2b\66\x65\66\160\x55\x46\121\x61\x41\104\71\112\145\x6b\121\64\x58\57\x73\x4f\101\66\113\x59\x55\115\112\x45\130\x4a\141\x49\x52\103\x53\x4a\x63\161\124\x63\152\64\71\167\x68\103\x4b\x48\x65\121\x5a\x4d\152\144\164\114\106\144\101\145\x4a\x33\57\x6a\111\105\x55\123\62\161\163\145\x43\x48\x34\x35\103\x62\103\61\125\111\152\x74\125\x4a\x77\161\x79\x6d\57\x38\x51\155\x32\103\x62\x4a\x73\x34\162\57\66\146\x53\161\104\57\x6a\x57\170\x76\151\63\132\x43\x44\132\144\x57\60\162\x59\x69\127\57\65\x77\106\x79\112\x6d\x75\106\151\x46\x4c\x2f\x55\x6f\x53\x5a\114\113\112\122\x6c\150\166\61\x77\x50\x69\63\165\x65\x7a\x2f\x6f\142\114\x34\152\x34\112\62\x61\131\62\66\x63\153\x6f\x62\167\x6e\70\122\166\x45\x74\x62\112\113\165\x41\x34\171\x4c\x45\130\57\x4a\145\60\x47\106\131\154\132\125\113\163\147\x73\166\x52\165\x73\117\144\x33\102\x47\164\x42\126\x37\101\x58\x58\131\x6d\105\113\104\110\165\x44\x46\143\171\x31\155\x2f\132\x44\x51\x57\63\124\164\x43\x71\x71\x74\153\114\167\63\x2f\x2b\151\x35\102\x37\x42\155\132\156\131\x4c\65\151\x6f\107\x75\107\x49\161\x4d\x6f\x50\157\172\x6f\x71\143\x50\x57\110\x41\112\62\x55\x77\121\143\65\60\152\x48\x46\x56\x74\102\x47\157\154\x34\122\x6f\147\150\x34\57\x71\x6c\x47\x36\x43\x6e\142\x79\152\x30\x38\104\60\x44\127\132\164\171\x6f\141\x6a\107\x41\151\115\116\116\122\x6e\122\144\64\x69\x54\171\57\110\x65\170\x50\x46\x57\124\x55\x6b\x6c\101\126\141\142\60\x75\164\x38\113\142\x54\x66\x51\170\107\x70\142\x54\154\153\115\120\x67\126\153\125\57\162\x6a\x5a\130\60\64\x45\x38\x77\x61\x78\132\66\120\x35\x50\x57\x49\154\x73\x56\145\x51\152\142\105\132\156\x30\x33\x6b\x49\x78\x77\x77\x73\x69\151\x6e\x4c\x31\102\x46\132\161\x49\151\152\x49\143\x43\x4b\164\x69\127\124\57\x32\x78\x4c\x6f\x66\170\x50\x62\x50\x37\x47\152\67\x4c\x38\150\x4d\x67\147\115\x34\x50\x56\155\117\x42\x47\65\x79\x6b\x6d\131\x31\x38\101\x47\163\x66\61\132\x6d\170\x32\161\124\64\57\66\161\107\115\x61\x30\x44\x49\153\105\x66\116\x6f\x51\x76\x55\x63\117\x32\64\x6c\x2f\x62\x33\147\117\163\x6a\x79\x4b\x38\111\x58\x61\141\155\111\101\x78\143\x42\122\151\161\x57\67\144\156\x75\x4f\x50\147\x58\x39\x51\132\x72\63\x6d\154\x67\114\x58\70\121\67\105\x43\154\155\x77\70\x76\x4a\x71\61\x51\x51\154\x55\x76\130\x55\x2f\154\53\x41\143\x67\102\155\160\x53\x35\151\105\132\x38\x38\x34\132\x42\127\127\130\152\157\x48\x51\61\x5a\115\x41\x2b\x6b\x34\x46\x36\x44\120\x56\163\x5a\x35\x32\156\153\x68\102\64\153\x68\101\71\144\x37\115\x56\x54\x46\x56\154\112\106\144\162\x6b\57\x4e\x71\172\102\x69\x33\143\x71\x64\x38\120\63\123\172\x52\124\147\110\x54\x51\x75\151\x7a\103\x35\x61\101\141\171\x68\x35\x42\x73\x44\x64\x4d\x77\130\125\115\x38\66\53\165\x66\105\145\144\x53\144\142\113\x6f\161\120\142\143\x46\130\107\161\x4d\x59\155\172\x6d\160\x36\114\105\x37\151\165\160\111\x6d\131\x56\x50\70\105\121\143\121\111\113\57\161\125\x47\163\x65\57\62\112\x35\62\x64\x2f\x6f\107\153\x55\60\104\63\65\x4b\154\x45\x42\x73\157\121\152\171\63\101\x53\x49\x4f\x34\x68\132\x69\123\122\67\122\71\154\x6d\130\164\x71\x6b\x4a\105\104\105\x70\x38\x44\x2f\x6b\x5a\161\x55\124\x38\155\154\67\x4e\153\67\107\x71\x69\63\x4c\x41\117\x59\147\107\x62\x2f\x6f\161\61\x56\x56\165\x33\151\x48\x51\x77\101\162\141\x75\x4a\121\x69\122\x56\x69\x2f\x52\x59\111\x51\x64\61\x50\x32\142\102\57\x34\x69\111\x6f\57\x50\143\x4d\70\120\x75\107\x36\170\x6a\x56\166\x53\x67\x74\126\x55\x35\x6a\153\127\x38\x77\126\x50\154\x47\121\145\x6a\x59\x38\x57\x44\144\115\x55\x33\x6e\115\116\157\57\x34\162\153\162\x36\x35\x67\125\132\117\x63\x58\x71\x71\154\x4f\x71\143\111\x2b\141\161\115\x41\x2b\60\162\x71\144\143\156\105\153\x6c\x71\x4c\x79\165\163\67\x4f\x78\57\x54\x36\x30\61\x38\x34\x43\131\122\171\x74\124\x4c\104\x47\x53\66\160\x6b\142\110\161\x35\112\x30\x4e\120\x63\171\x6e\106\70\114\x75\x51\167\x73\x4d\123\104\123\x32\115\x78\113\x52\64\x59\155\x49\155\112\123\x2f\x53\144\117\170\104\x52\x57\172\156\66\x70\x55\x66\x75\x49\144\102\x63\152\x58\161\104\63\x52\120\121\122\53\x2f\60\x54\111\x2b\x49\127\x30\x37\x63\130\105\127\x56\167\170\x6d\x39\x48\x52\x44\162\x35\102\x6f\104\104\60\116\155\x39\171\x38\x2b\62\x37\60\x62\x6f\172\111\171\x36\172\x4f\x6d\x61\150\x48\x58\132\113\x34\153\122\x54\x44\125\154\115\156\x72\163\157\x36\53\x6c\132\x4c\x68\x77\x50\167\123\171\x39\x6b\114\x64\x75\x75\61\121\x75\x79\x34\114\x61\x74\132\x6d\x51\145\63\x50\x76\66\x71\x43\170\x62\160\62\104\146\x32\x54\102\117\123\132\x2f\x4c\107\163\x2f\x33\145\x2b\102\164\163\63\x47\161\x4b\x76\114\x49\x61\x43\x77\154\160\156\120\141\150\113\x66\151\103\111\150\104\141\x52\x55\102\x55\x58\x37\160\170\x73\152\122\x65\155\x62\x6d\x62\172\70\x76\156\x69\166\x46\65\150\127\124\120\x5a\x49\110\165\117\107\126\116\x6b\126\145\x6c\x61\x39\x62\145\110\x52\103\106\x69\x4e\101\60\122\153\x2b\64\57\120\150\105\154\x43\146\x74\x4a\x67\167\172\x44\167\63\107\111\145\x48\x55\x6a\151\110\x68\156\x41\x6e\x74\x6f\x6a\x47\130\130\115\x73\117\x73\105\130\x38\x54\x49\x73\x71\x4c\x79\x79\60\114\144\x36\106\x61\x4e\156\x6f\167\117\x38\x65\x77\x44\147\x67\x76\x79\x64\60\116\x75\x63\162\x68\x58\170\x4f\x6d\x42\x57\x47\x46\153\x6f\x36\115\x50\x46\105\x33\x51\155\162\x45\57\x53\x66\130\146\x62\x61\67\x71\70\x51\x75\x77\152\66\x66\x6e\x71\115\171\117\142\x51\125\x42\x53\x52\152\x7a\x66\x51\x31\153\106\x64\x6e\x36\x2b\x33\x47\66\x62\160\126\71\105\x79\x59\x4e\160\64\132\142\103\131\132\144\127\167\x43\x36\53\142\146\150\x56\123\70\x69\x6c\156\166\166\x4e\x61\130\60\61\x30\x6b\x34\x6d\110\x53\62\105\x47\x66\x44\x2b\123\106\143\x52\156\123\x33\105\x6a\x50\166\60\71\105\120\115\117\x4c\151\116\112\131\153\63\x54\57\70\144\145\111\113\x63\x7a\x4e\125\123\x51\x33\127\x57\127\x44\x2f\107\155\170\x33\132\x7a\x63\x70\x2f\70\x61\104\x79\114\171\114\121\165\151\142\106\x49\x34\x73\x34\x46\x4a\x51\x57\x34\x4f\x64\106\144\172\111\145\114\57\x44\154\x59\x6b\x34\161\120\x47\x6e\x55\106\x48\x77\113\117\x53\x6a\x46\x70\144\x7a\x53\60\x4c\121\x56\154\61\x43\x4f\167\146\156\147\146\162\125\x78\x2f\x59\x50\x36\116\x2f\x4c\61\124\x44\x43\123\127\120\x44\x69\x78\x44\x54\101\x6d\x32\60\170\124\x77\x39\x6d\112\x72\67\x68\x2b\x32\147\63\x33\112\112\x4c\104\53\53\x68\x5a\x59\x4e\67\60\x50\x67\117\x76\112\60\112\102\x35\125\x4c\151\x76\x55\164\x66\x63\x4d\122\x49\143\x4a\130\161\x49\x67\162\x7a\x6e\x69\x6f\x65\x51\x4c\106\112\144\x2f\x49\x6d\x37\x6d\x55\53\165\106\126\146\160\150\105\124\70\170\107\x58\146\166\x6e\x53\x58\66\164\65\122\x79\x6c\153\70\x32\53\x4d\x36\124\150\106\x37\x4c\121\x69\112\113\x50\x61\103\x70\53\x73\122\122\x44\x79\x4c\130\130\x4f\x69\x2f\x5a\57\x4b\172\171\62\111\x48\x47\110\146\x54\122\120\110\67\x6b\x4a\141\160\131\160\x72\145\111\121\122\x59\x78\103\120\x4d\x2b\130\106\x6b\x51\x6e\x7a\62\127\123\122\172\x74\164\x52\x70\111\x2f\x63\147\x2b\x4e\167\x64\x69\x32\171\64\120\x4e\165\x4f\x6f\x65\x73\113\x37\166\x66\x58\x43\163\x76\x78\156\172\x49\151\125\x69\147\117\x4e\123\x77\127\103\x38\66\142\x67\x32\x7a\142\x71\172\117\156\x41\125\167\60\x77\x66\x57\105\x6e\x4a\x74\x4c\114\x6b\102\x37\104\x33\146\147\150\x30\x4a\107\x6a\x49\132\164\144\125\x51\x53\153\x43\x53\x6c\132\x48\125\106\164\132\122\71\141\x49\x6d\x41\x4b\x42\161\156\x33\132\x2f\x52\x31\x74\127\167\124\143\127\x36\x6a\x4f\53\147\x76\x77\x53\x74\x61\x64\x6a\61\x45\167\x57\x43\x6d\105\113\x38\x50\x37\112\113\x36\64\171\x61\x52\127\126\x31\x6a\x69\x45\104\x62\x78\x4b\164\x41\124\x66\x44\126\x66\x73\x44\x5a\x38\x75\57\106\x6f\x35\167\151\162\67\111\113\x6d\x4a\162\125\x6c\x36\x64\106\107\x31\123\x57\x58\x41\163\x39\150\125\115\x32\160\70\x68\110\111\x39\170\66\x71\x41\x52\x38\170\107\x4d\113\x4c\x2f\120\141\x4c\x2f\x42\x30\x54\x2f\154\x31\104\57\63\70\x66\x70\57\x79\70\116\x37\123\157\x6c\152\x46\x32\x33\x38\62\x67\x58\x34\146\70\142\167\x6f\x6a\x57\171\x6f\130\x49\x78\143\167\x31\x49\144\130\146\164\166\x68\65\x50\141\x73\111\x37\x6e\x50\102\x53\116\x5a\x58\142\x36\x37\61\x4d\117\x6c\x64\x49\x58\x32\162\124\123\153\126\x47\67\x33\x48\x47\x77\67\161\x6a\66\x6b\x59\x72\57\x62\x44\110\145\x44\163\63\x37\163\x54\x58\122\x76\x33\101\x48\170\107\x46\x74\125\x46\x6c\x7a\153\65\152\115\x76\x75\x41\x4c\165\62\x56\x4a\x48\x48\x54\x53\x57\x56\122\x47\x52\x6b\106\117\x32\x71\x4b\70\110\117\63\141\126\145\141\x61\x69\x6e\107\x31\151\64\105\143\x44\63\x6f\x6e\132\x72\126\103\67\x5a\x67\150\x4e\x43\x31\x4a\x47\105\x5a\x5a\161\x45\145\164\111\x67\121\166\65\113\x6d\x35\105\145\151\151\172\x34\126\x50\105\167\x61\x78\156\x42\112\x69\x71\x44\101\x70\110\171\145\114\113\x61\x58\157\x52\x34\61\x45\123\145\171\x44\63\63\170\x54\127\145\x7a\x64\x75\170\162\120\x35\70\164\156\x6e\x4a\126\x70\113\111\132\x70\132\166\x52\53\x63\x48\x73\127\x39\105\x42\x79\112\121\103\161\155\x71\x54\70\x6f\113\x32\x4e\x54\x6d\x53\x44\x61\x77\117\x72\162\60\130\x33\x38\x51\x2f\x55\x39\x52\170\x44\114\162\125\104\105\132\162\107\x4e\x74\142\x64\x6f\124\167\x36\57\x41\x6b\66\145\160\127\x76\x6c\x4b\x31\132\x35\x74\x57\x6e\x6f\131\x75\130\53\x41\x73\x4e\x4f\x45\154\171\156\126\127\x49\x54\106\x64\x57\115\x53\x37\122\165\x6c\157\x68\113\x68\x6a\x32\x64\x62\156\60\144\x5a\x71\x66\x78\60\65\x76\166\x74\x69\x47\x31\x65\106\x57\120\61\x4f\142\x4b\123\x6e\x39\160\x55\132\107\x7a\x38\131\x43\115\x79\125\x6c\122\113\102\x49\x39\x32\x72\x4f\x49\142\x51\x45\106\x70\116\x64\122\165\x2b\102\x54\163\x2b\x61\143\x34\114\157\x36\106\126\64\113\106\166\x6b\131\111\x56\x4d\121\x49\x56\132\167\120\144\x73\64\x4f\x73\x47\165\161\161\x49\x51\x2f\166\x63\x39\x49\161\x56\x38\110\x36\x73\101\165\x7a\105\125\61\x64\x78\130\x59\70\71\103\120\x2b\x50\113\x74\131\104\57\x69\147\62\x6a\x2b\x58\x71\x69\x4f\x59\106\x2b\126\x32\103\x38\x61\132\x57\157\x2f\127\147\x55\x6c\x4f\x34\157\x68\x56\x36\x30\112\127\x56\x67\x65\x48\153\x4d\x55\x79\166\x61\114\166\x78\x70\x4f\153\x44\x50\x63\x49\x53\124\152\x36\x57\123\x43\x7a\x78\121\x44\117\105\x69\104\x31\x36\x4b\x67\65\102\53\160\x45\x6e\147\166\157\70\157\141\123\107\163\x64\123\143\x38\x43\122\x4a\151\160\151\65\166\64\x72\162\x53\105\x6b\x30\x69\113\x5a\116\115\x41\x58\60\x6c\170\160\154\x6b\113\x52\104\123\172\130\x38\121\165\x31\126\x61\62\153\x56\x6b\x52\61\120\53\x55\147\x2b\150\x2f\114\x64\x74\x52\144\x78\165\106\164\x58\60\157\104\x54\x79\x55\x6b\x37\155\143\156\124\x74\x43\61\143\164\120\115\162\163\x42\x55\63\71\x68\66\166\115\x79\70\x53\167\x37\x55\x42\71\x42\163\132\x2f\151\x63\x45\x52\162\x30\x66\142\x50\113\x69\103\x62\x4a\x70\x63\x51\x59\x68\53\71\162\161\x4c\x4a\x6f\x69\x32\x33\x45\x4c\x4d\x41\x38\170\x33\x6b\116\x31\x31\116\71\x37\123\107\67\155\x6b\x50\127\x31\x59\x6b\x50\x63\x45\156\120\x4e\x68\121\x30\x72\x79\x70\112\x4b\x4a\x4a\111\x69\x62\130\x68\152\114\151\141\104\127\61\112\x47\70\166\x31\x4b\53\145\x70\106\60\143\x64\x5a\x6b\172\x6f\x4c\147\145\157\103\64\121\150\x6f\147\x4e\x59\x4c\60\63\x48\x4b\171\110\146\107\x43\x2f\144\x44\x50\x59\x62\x7a\x38\102\71\x76\124\x58\167\120\67\64\x56\x62\x41\x33\162\131\x79\x4a\x76\x31\157\x6b\x36\x62\151\x2f\x67\x2f\x58\x4d\107\127\x41\71\x67\x59\x52\53\x75\x69\61\131\x6f\x32\64\x45\107\x50\x68\110\161\120\57\x6b\110\170\x69\101\142\155\155\x4c\161\106\x36\x6e\x31\x74\x72\x67\x72\64\160\167\167\x34\171\116\170\167\x68\132\x53\x6c\145\x56\154\115\101\146\153\151\x42\x68\163\150\x58\x63\x6a\x71\x4f\102\63\x5a\116\x6d\x35\x38\x74\111\107\162\125\66\151\111\x4a\125\x52\170\x4b\122\x7a\x6a\143\x53\x53\x44\66\142\x4a\x6f\142\163\x2f\x36\x67\x6d\67\154\71\53\x37\66\x2f\x6b\131\172\x33\141\122\x65\130\x37\106\53\162\124\161\x2b\x70\x32\107\x38\121\106\x54\101\x32\x58\142\144\x4e\105\x76\62\x63\x68\114\x6b\x57\60\143\x39\x75\x42\66\x37\x64\101\157\152\x38\x63\161\141\156\x68\150\70\154\102\x72\x6c\126\101\x49\x67\102\x51\x34\123\x6d\116\x6b\164\x79\x39\x55\x46\x68\143\x41\x58\x6e\67\121\71\x71\66\127\x70\171\x44\60\x6e\104\157\x68\127\x43\120\x37\101\x50\x57\x38\71\x65\x43\116\141\171\110\147\57\164\x55\x32\116\172\x48\x75\x6d\x78\152\x32\x41\111\x49\x56\126\x61\x43\116\146\x70\x36\163\x45\x64\143\x6a\142\x67\x4b\x59\x46\101\x62\x4a\x47\x45\x4b\62\x4d\117\67\x51\53\x33\x69\127\144\167\x51\x77\x77\154\x49\163\x62\x48\66\155\154\123\146\110\x2f\x78\x47\120\x32\65\161\x49\66\164\143\160\70\x6f\163\x65\145\x39\62\63\163\x53\130\156\x30\154\x2f\x58\x77\112\x74\104\156\110\57\x33\165\130\x79\x43\145\x6e\143\132\x2b\x6d\x56\x71\145\111\122\164\132\x4b\x65\167\x4c\63\167\x50\156\x31\x4a\63\x46\116\x53\x4f\117\x69\113\127\x51\127\154\x34\x63\64\64\66\110\x66\107\61\x6f\165\155\117\110\107\x41\x43\x47\x6c\160\x4b\141\155\x6c\132\127\125\125\x69\x76\131\x57\121\156\152\x53\x45\112\x52\x75\x31\64\x45\71\x75\x42\62\123\x4b\x78\61\112\71\150\x65\x41\53\63\60\x51\x6d\104\116\x46\154\x2f\156\x58\x70\105\112\x79\x68\144\71\53\103\165\x77\150\x48\123\110\70\61\147\x43\157\x6e\172\x4d\x56\x4b\164\x61\x75\150\x71\x4b\x38\x45\x72\x30\x4f\x4a\116\114\122\60\x55\152\x6c\131\111\124\x63\x45\x30\107\115\103\162\160\120\x7a\x75\x71\x2f\102\144\x69\x44\x6b\x39\163\x37\x70\171\122\x78\114\x67\x4e\x66\115\x6d\x69\x47\x2f\x58\165\105\147\163\130\166\x6b\x31\x39\142\x49\166\x66\x53\x6e\x49\x6f\x38\x4a\57\x77\106\x34\x59\x64\114\121\53\x6b\x7a\x54\x6a\156\x39\x69\132\x41\x57\170\141\143\123\111\x59\x6b\x77\x74\101\115\x78\x76\164\141\105\x4b\164\x32\122\104\x52\x57\132\66\66\x44\x71\x68\170\x56\121\x73\x33\x51\145\154\117\x4e\x72\x72\103\171\x75\x76\66\x50\114\57\x53\116\160\151\57\146\64\x49\142\x2b\60\124\x6d\60\146\162\x6b\x6d\113\x5a\x4a\x62\162\x77\113\147\x6d\120\57\132\x4e\x36\71\x5a\57\106\154\x51\x45\152\107\161\123\x31\154\170\53\64\x42\141\60\x6f\x44\x46\x6f\153\x6a\126\105\x58\x6e\156\x6f\146\x4a\122\x49\151\x38\154\x41\x6f\157\x6c\x43\105\164\114\x69\x5a\105\x54\x43\141\105\x49\122\x75\x54\x52\x79\61\142\110\113\115\x70\53\x72\x6f\62\x36\104\67\67\106\x38\171\x49\x41\x68\157\x55\x31\105\x74\170\x43\x61\57\114\150\x76\122\x31\x59\x65\x37\x66\152\142\125\147\62\164\x42\146\71\146\x30\x61\122\x47\103\x6b\167\164\x36\x6f\110\x45\x6d\x4b\x38\x49\x77\61\167\143\116\x67\x55\104\x52\x49\154\x41\x74\x69\x47\x58\x41\146\x37\x74\160\x6e\x4c\x61\150\x4b\147\x69\x6e\x37\x4e\150\124\101\x69\x4d\71\x45\x56\112\166\101\x45\x6e\x67\120\x35\123\x50\x57\x6b\165\120\x32\x77\114\127\x6e\x44\111\151\123\x67\x68\x77\x35\x33\x38\160\143\110\x32\x53\112\147\130\x55\x63\x4a\164\x55\x38\x51\x79\121\x44\x49\x5a\111\154\x6d\111\161\113\66\60\x62\x61\104\111\x70\x6f\70\141\122\104\x70\105\142\x41\60\x4b\102\145\130\102\147\166\x79\113\x34\120\163\106\x46\x52\x47\x39\104\130\x57\x4c\106\x47\172\102\67\167\x58\x6d\x78\123\x45\150\160\x45\x6d\160\121\x69\x49\x4e\x51\x6b\x66\x37\111\151\124\x62\x48\x69\122\124\x6d\x45\x68\x47\161\151\x67\x52\x6c\106\122\x54\124\x6b\x41\x6b\130\122\x46\53\x39\x2f\166\x38\x38\x73\102\x72\x2b\x50\63\x65\x52\125\126\x77\x6c\x4a\x54\107\x4c\127\166\x42\106\x76\x77\145\x63\x45\x6a\116\x2b\107\x35\x47\x6e\161\114\113\167\102\154\x35\106\x5a\x47\x65\x53\x4c\157\67\103\x79\161\x43\124\66\160\x79\150\x6e\156\x37\101\x36\117\x63\x75\x71\162\x42\x70\57\x31\154\x34\130\166\122\x4a\144\x49\x48\x74\167\105\64\x75\x37\x51\125\152\x6e\x59\172\x4e\124\145\172\166\x51\65\x61\x30\x49\x4a\155\123\60\x52\130\156\x31\x6b\x79\x33\62\x2b\x78\x68\114\142\x67\71\64\172\x66\60\162\x65\127\142\x71\101\153\160\x51\x49\166\66\144\66\143\x66\104\x77\164\x61\115\x47\x68\170\166\x38\101\62\x31\142\x55\101\x77\x73\x6b\x50\x76\64\x41\x41\x41\101\101\123\125\126\117\122\113\65\103\x59\111\x49\75"; $gaCode = null; $isTrackingEnabled = wsg_get_data("\x74\162\141\x63\x6b\x69\156\x67\137\145\x6e\x61\x62\154\145\x64"); if ($isTrackingEnabled) { $gaCode = wsg_get_data("\147\157\157\147\154\145\x5f\141\156\x61\154\x79\164\151\143\x73"); } echo "\74\41\144\157\143\x74\x79\x70\145\x20\x68\x74\155\154\x3e"; echo "\74\x68\164\x6d\x6c\x20\154\141\x6e\x67\x3d\42" . $lang . "\42\76"; echo "\40\40\74\x68\145\x61\x64\x3e"; echo "\x20\x20\40\x20\74\155\x65\164\141\x20\x63\150\141\162\x73\x65\164\x3d\x22\165\x74\146\55\70\x22\76"; echo "\x20\40\40\x20\74\x6d\145\x74\141\40\156\141\x6d\145\75\42\x76\x69\x65\167\160\157\162\x74\x22\40\x63\157\156\164\145\156\164\75\42\167\151\144\x74\150\75\x64\145\x76\x69\143\145\x2d\x77\x69\x64\x74\150\54\x20\x69\156\151\164\151\x61\x6c\55\x73\143\x61\154\145\75\61\x22\76"; echo "\40\40\40\x20\74\164\151\164\x6c\145\x3e\x57\145\x62\x20\x53\164\x6f\162\x69\x65\x73\74\57\x74\x69\164\154\145\76"; echo "\x20\40\x20\40\x3c\154\151\156\153\40\150\x72\x65\146\75\x22\150\x74\164\x70\163\x3a\x2f\57\143\144\156\x2e\x6a\163\144\x65\154\151\166\x72\x2e\x6e\145\x74\x2f\156\x70\155\x2f\x62\x6f\x6f\x74\163\164\x72\141\x70\100\65\x2e\62\56\x30\x2d\142\145\x74\141\61\57\144\x69\x73\x74\x2f\143\x73\x73\x2f\x62\157\157\164\163\x74\162\x61\x70\x2e\x6d\151\156\56\x63\163\x73\x22\x20\x72\x65\154\x3d\42\x73\x74\x79\154\x65\x73\x68\x65\145\164\x22\x20\151\x6e\164\145\147\x72\x69\x74\171\75\42\x73\150\x61\x33\70\x34\55\x30\x65\x76\110\x65\57\130\53\x52\67\131\153\111\x5a\x44\122\x76\165\x7a\113\x4d\122\x71\115\53\x4f\162\102\x6e\126\106\x42\x4c\x36\104\117\x69\164\x66\x50\x72\x69\64\x74\152\x66\110\x78\141\127\165\164\x55\160\x46\155\102\x70\64\166\x6d\126\157\x72\x22\40\143\162\x6f\x73\x73\157\162\x69\147\x69\x6e\x3d\42\x61\156\x6f\x6e\x79\155\157\x75\x73\42\76"; echo "\40\x20\40\x20\74\x6c\x69\x6e\153\x20\x72\145\x6c\x3d\42\x63\x61\x6e\157\156\151\143\x61\x6c\x22\40\150\162\145\x66\x3d\42" . $siteUrl . "\57" . $subDir . "\x2f\x22\40\57\76"; $favicon = get_option("\x73\151\x74\x65\137\151\143\x6f\156"); if ($favicon) { $faviconUrl = wp_get_attachment_image_src($favicon, "\x66\165\154\x6c")[0]; if ($faviconUrl) { echo "\x20\x20\x20\x20\74\x6c\151\156\153\x20\162\145\154\75\x22\x73\150\x6f\x72\164\x63\165\164\40\151\143\157\x6e\42\40\150\x72\145\x66\x3d\x22" . $faviconUrl . "\x22\76"; } } if ($gaCode) { echo "\x20\40\x20\40\x3c\163\143\162\151\x70\164\x20\x61\163\171\156\143\x20\x73\x72\x63\x3d\42\x68\164\164\x70\x73\72\x2f\57\x77\167\x77\x2e\147\x6f\157\147\154\145\x74\141\x67\x6d\141\x6e\141\147\x65\162\56\x63\x6f\x6d\x2f\147\x74\x61\x67\x2f\152\x73\x3f\x69\x64\x3d" . $gaCode . "\x22\76\74\x2f\x73\143\x72\151\160\164\x3e"; echo "\40\40\40\x20\x3c\x73\x63\x72\x69\160\x74\x3e"; echo "\x20\x20\40\40\40\x20\167\x69\x6e\144\x6f\x77\x2e\x64\x61\x74\141\114\141\x79\x65\x72\40\75\x20\167\151\x6e\x64\157\x77\x2e\144\x61\x74\x61\114\x61\171\145\x72\40\x7c\x7c\x20\x5b\135\73"; echo "\x20\x20\40\x20\x20\40\146\x75\156\x63\x74\151\x6f\x6e\40\147\x74\x61\x67\x28\51\x7b\144\141\164\x61\x4c\141\x79\x65\162\56\160\165\163\x68\x28\141\x72\x67\165\155\x65\x6e\x74\x73\51\73\175"; echo "\x20\40\40\40\40\x20\147\164\x61\147\50\47\152\163\x27\54\x20\156\145\167\x20\x44\141\164\x65\x28\51\x29\x3b"; echo "\x20\40\x20\x20\40\x20\147\x74\141\x67\x28\x27\x63\157\x6e\146\151\147\47\54\x20\47" . $gaCode . "\x27\x29\x3b"; echo "\x20\40\40\40\74\57\163\143\162\x69\160\x74\x3e"; } echo "\x20\40\x3c\57\x68\x65\141\x64\x3e"; echo "\x20\40\74\x62\157\x64\x79\76"; echo "\x20\40\40\x20\74\x64\151\166\40\143\154\x61\x73\x73\x3d\x22\143\157\x6e\164\141\151\x6e\x65\x72\42\76"; echo "\40\x20\40\40\x20\x20\x3c\160\x20\143\154\x61\x73\x73\75\x22\x74\x65\170\x74\55\143\145\156\164\x65\x72\x20\155\164\55\64\42\x3e"; echo "\x20\40\x20\40\x20\40\40\x20\74\141\40\150\162\145\146\x3d\x22" . $siteUrl . "\x22\76"; if ($logo) { echo "\40\x20\40\x20\x20\x20\x20\x20\40\40\74\151\155\x67\40\x73\162\x63\75\x22" . $logo . "\x22\x20\141\x6c\164\x3d\42" . $siteName . "\42\40\x73\164\171\154\x65\x3d\x22\155\141\170\55\x68\x65\x69\147\x68\164\72\x20\x31\x30\60\x70\x78\x22\40\x2f\x3e"; } else { echo "\40\40\x20\40\40\x20\40\x20\40\x20" . $siteName; } echo "\40\x20\x20\40\x20\x20\x20\40\74\x2f\x61\76"; echo "\40\40\40\x20\40\x20\74\57\160\x3e"; echo "\74\x68\x31\x20\x63\154\141\x73\163\75\x22\164\x65\x78\164\x2d\x63\145\x6e\164\x65\x72\40\155\142\x2d\65\40\155\x74\55\x34\42\x3e\x3c\x73\160\141\x6e\x20\x63\154\x61\163\163\x3d\x22\144\151\x73\160\x6c\x61\x79\x2d\x34\42\x3e\x57\x65\x62\40\123\x74\157\x72\x69\x65\x73\74\57\x73\x70\141\156\76\74\x2f\150\x31\76"; if ($query->have_posts()) { echo "\74\144\151\166\x20\143\154\141\x73\x73\x3d\x22\162\157\x77\x20\152\x75\x73\x74\151\x66\x79\x2d\143\x6f\156\x74\x65\156\164\x2d\x63\145\156\164\x65\x72\x22\x3e"; while ($query->have_posts()) { $query->the_post(); echo "\x3c\144\151\166\x20\x63\154\141\x73\x73\75\42\143\x6f\154\55\x36\x20\143\x6f\x6c\x2d\x73\155\55\64\40\x63\x6f\x6c\x2d\x6d\144\55\63\42\76"; echo wsg_create_post_widget($query->post); echo "\x3c\57\x64\151\x76\76"; } wp_reset_postdata(); echo "\x3c\57\x64\151\166\76"; if ($totalPages > 1) { echo "\74\x6e\141\x76\40\141\x72\151\141\x2d\154\141\x62\145\154\75\x22\x50\x61\147\x65\40\x6e\141\x76\x69\147\141\x74\151\157\156\42\76"; echo "\74\x75\x6c\x20\x63\154\141\x73\x73\75\x22\x70\x61\x67\151\156\141\x74\x69\x6f\156\x20\x6a\165\x73\164\151\146\x79\x2d\x63\x6f\156\x74\x65\156\164\x2d\x63\145\156\164\x65\162\42\x20\163\x74\171\154\x65\x3d\42\x77\151\144\164\150\72\141\165\x74\x6f\x22\76"; $paginationLinksCount = 3; $pagedBefore = $paged - $paginationLinksCount; $pagedAfter = $paged + $paginationLinksCount; if ($pagedBefore < 1) { $pagedAfter += 1 - $pagedBefore; $pagedBefore = 1; } if ($pagedAfter > $totalPages) { $pagedBefore -= $pagedAfter - $totalPages; $pagedAfter = $totalPages; } if ($pagedBefore < 1) { $pagedBefore = 1; } if ($paged > 1) { echo "\x3c\x6c\151\x20\143\154\141\x73\x73\x3d\x22\160\141\x67\145\x2d\x69\164\x65\x6d\x22\x3e\x3c\x61\40\143\x6c\x61\163\x73\x3d\x22\160\141\x67\145\55\154\x69\x6e\x6b\x22\40\150\x72\145\146\75\x22\77\x70\x61\147\x65\75\61\x22\76\46\154\141\161\x75\157\x3b\74\57\141\76\74\57\x6c\151\x3e"; } else { echo "\74\x6c\x69\40\x63\154\x61\163\163\x3d\42\x70\x61\147\145\55\151\164\x65\x6d\x20\144\x69\163\141\x62\x6c\145\144\x22\76\x3c\141\x20\143\154\141\163\x73\x3d\x22\x70\141\x67\x65\x2d\x6c\x69\156\153\x22\40\150\162\145\x66\75\x22\x3f\160\x61\x67\145\x3d\61\42\76\46\x6c\141\161\x75\x6f\x3b\74\57\x61\76\x3c\x2f\154\151\76"; } for ($i = $pagedBefore; $i <= $pagedAfter; $i++) { $pageNumber = $i < 10 ? "\60" . $i : $i; if ($i == $paged) { echo "\74\154\151\40\143\x6c\141\163\x73\x3d\42\x70\x61\147\145\55\151\164\145\155\x20\x61\143\164\151\x76\145\42\x3e\x3c\163\x70\141\156\x20\x63\x6c\141\x73\163\75\42\160\141\147\x65\55\x6c\151\156\153\x22\x3e" . $pageNumber . "\x3c\57\x73\160\141\156\x3e\74\57\154\x69\76"; } else { echo "\74\154\151\x20\143\154\x61\163\x73\x3d\42\x70\x61\147\x65\x2d\151\164\x65\x6d\x22\76\74\x61\40\143\x6c\x61\x73\x73\x3d\42\160\141\x67\145\55\x6c\151\156\153\42\x20\150\162\x65\x66\75\x22\x3f\x70\x61\x67\145\x3d" . $i . "\42\76" . $pageNumber . "\74\57\141\x3e\x3c\x2f\x6c\151\x3e"; } } if ($paged < $totalPages) { echo "\x3c\x6c\151\40\x63\x6c\x61\x73\163\x3d\42\160\141\x67\x65\55\151\164\x65\155\42\x3e\74\141\x20\x63\154\x61\163\x73\x3d\x22\160\x61\x67\145\55\x6c\x69\x6e\x6b\x22\40\x68\162\x65\x66\x3d\x22\77\160\x61\x67\x65\x3d" . $totalPages . "\x22\76\46\x72\141\x71\165\157\73\74\57\x61\76\x3c\x2f\154\151\x3e"; } else { echo "\74\154\151\x20\143\154\x61\x73\163\75\x22\x70\x61\147\145\55\x69\164\x65\x6d\40\144\x69\x73\x61\x62\154\145\x64\42\76\74\141\x20\x63\x6c\141\163\163\75\42\160\x61\147\x65\x2d\154\151\156\x6b\x22\x20\x68\x72\145\146\x3d\x22\x3f\x70\141\147\x65\x3d" . $totalPages . "\x22\76\46\x72\x61\x71\x75\157\73\74\x2f\x61\76\74\x2f\x6c\151\x3e"; } echo "\x3c\x2f\165\x6c\76"; echo "\x3c\57\156\141\x76\x3e"; } } else { echo "\74\x70\40\143\x6c\x61\163\x73\75\42\x74\145\170\x74\55\x63\x65\156\x74\x65\162\42\76" . wsg_str_translate("\x4e\157\40\167\x65\142\x20\x73\x74\x6f\162\151\x65\x73\x20\x66\157\165\156\144\56") . "\74\57\160\x3e"; } echo "\x20\40\x20\40\x3c\x2f\x64\151\166\x3e"; $support = !wsg_get_data("\162\x65\x6d\x6f\166\145\x5f\163\165\160\160\x6f\162\x74"); if (isset($support) && $support == true) { $affiliateUrl = wsg_get_data("\x61\146\x66\151\x6c\151\x61\164\145\137\x75\x72\x6c"); if (isset($affiliateUrl) && trim($affiliateUrl) != '') { $wsgUrl = $affiliateUrl; } else { $wsgUrl = WSG_PLUGIN_URL . "\77\x75\x74\x6d\137\163\157\165\x72\x63\145\75\x77\x65\142\x2d\163\x74\x6f\x72\151\x65\x73\55\147\x65\156\x65\x72\141\164\x6f\162\x26\165\164\155\137\155\145\x64\151\165\155\75" . $siteUrl; } echo "\x3c\x64\151\166\40\x63\154\141\163\x73\75\42\x74\145\x78\164\x2d\143\145\x6e\x74\x65\162\x20\x6d\x74\55\65\x20\155\142\x2d\x30\42\x3e"; echo "\x3c\144\x69\x76\x20\163\164\171\x6c\145\75\42\157\166\x65\x72\x66\x6c\157\x77\x3a\40\x61\x75\164\x6f\73\x20\x62\141\x63\x6b\147\x72\x6f\x75\156\x64\72\x20\x69\156\x64\151\147\157\x3b\40\x68\145\151\147\x68\x74\x3a\x20\x61\x75\164\x6f\x3b\42\x20\x63\154\x61\163\x73\75\42\x74\x65\170\x74\55\143\145\x6e\164\145\162\x20\x5f\x72\x6f\165\156\144\145\144\x20\x70\x79\x2d\x35\x22\x20\76\x3c\x73\160\x61\156\x20\x63\x6c\141\x73\x73\x3d\42\x6c\x65\141\144\40\x74\145\x78\x74\55\167\150\151\x74\145\x22\76" . wsg_str_translate("\x54\150\151\x73\x20\160\x61\x67\x65\40\x77\x61\163\x20\x67\x65\156\145\x72\x61\164\x65\x64\40\x62\171\x20\164\x68\145\x20\160\x6c\165\x67\x69\x6e") . "\x3c\57\163\160\x61\156\x3e\74\142\162\x3e\74\x61\x20\x74\x61\x72\x67\145\164\x3d\x22\137\x62\154\x61\156\153\42\x20\150\162\145\x66\75\x22" . $wsgUrl . "\42\x3e\74\151\155\x67\40\x6c\x6f\x61\144\x69\156\147\x3d\x22\154\x61\x7a\171\x22\40\163\164\x79\x6c\x65\75\x22\x6d\x61\x78\55\x68\x65\151\147\x68\x74\72\40\70\x30\160\x78\x3b\x20\155\141\x72\x67\x69\x6e\x2d\x74\157\160\x3a\40\61\x72\x65\155\x22\40\141\x6c\x74\75\x22\127\x65\142\x20\123\164\x6f\x72\x69\x65\163\40\107\145\x6e\145\x72\x61\x74\157\x72\42\x20\163\162\143\75\x22" . $wsgLogoDataUrl . "\x22\x20\x2f\x3e\x3c\57\x61\76\74\57\144\151\x76\76"; echo "\74\57\x64\151\166\x3e"; } echo "\x20\40\74\x2f\x62\157\144\x79\76"; echo "\74\x2f\x68\x74\x6d\154\76"; echo PHP_EOL; echo "\x3c\x21\55\55" . PHP_EOL; echo "\360\237\x94\xb4\xf0\237\x94\xb4\xf0\x9f\224\xb4\xf0\237\224\xb4\360\x9f\x94\xb4\xf0\x9f\224\264\xf0\237\224\xb4\xf0\x9f\x94\xb4\360\x9f\224\264\360\237\224\264\360\237\224\264\xf0\x9f\224\264\360\x9f\x94\xb4\360\237\224\xb4\xf0\x9f\224\264" . PHP_EOL; echo "\xf0\237\224\xb4" . PHP_EOL; echo "\xf0\x9f\x94\xb4\x20\40\40" . WSG_PLUGIN_NAME . "\x20\166" . WSG_PLUGIN_VERSION . PHP_EOL; echo "\xf0\x9f\x94\xb4\40\40\40" . wsg_str_translate("\x43\x72\x65\141\x74\x65\x64\x20\142\x79", WSG_PLUGIN_TEXT_DOMAIN) . "\x3a\40" . WSG_PLUGIN_AUTHOR_NAME . PHP_EOL; echo "\xf0\237\224\xb4" . PHP_EOL; echo "\xf0\237\224\xb4\40\x20\x20" . wsg_str_translate("\126\151\x73\x69\x74", WSG_PLUGIN_TEXT_DOMAIN) . "\72\40" . WSG_PLUGIN_URL . PHP_EOL; echo "\360\x9f\x94\264" . PHP_EOL; echo "\xf0\x9f\224\xb4\360\x9f\224\264\360\237\x94\264\xf0\x9f\224\264\xf0\x9f\x94\264\xf0\x9f\x94\xb4\xf0\237\224\264\360\237\224\264\360\x9f\224\264\360\x9f\224\264\xf0\237\x94\264\xf0\x9f\x94\xb4\360\237\x94\xb4\360\237\x94\264\360\x9f\224\264" . PHP_EOL; echo "\40\x2d\55\76" . PHP_EOL; die; } }, 0); goto D3hK3; XPAyr: function wsg_str_translate($str) { $tr = array(); $tr["\x62\x79"] = array("\x70\164" => "\x70\157\x72", "\x65\x73" => "\x70\x6f\x72"); $tr["\x50\162\157\165\144\x6c\171\x20\155\x61\x64\x65\x20\151\156\x20\x42\162\x61\172\151\x6c"] = array("\160\164" => "\117\x72\x67\x75\x6c\150\x6f\x73\141\x6d\145\x6e\164\145\40\146\x65\151\x74\157\40\156\157\40\102\162\x61\x73\x69\x6c", "\x65\163" => "\x4f\162\147\x75\154\x6f\x73\x61\155\x65\x6e\x74\145\x20\150\145\x63\150\x6f\x20\x65\156\40\102\x72\x61\163\x69\x6c"); $tr["\x4c\151\x63\145\x6e\x73\145\x20\103\157\144\x65"] = array("\160\x74" => "\x43\303\xb3\x64\151\x67\157\x20\144\x65\x20\x41\x74\x69\166\141\xc3\247\xc3\xa3\x6f", "\x65\x73" => "\x43\303\xb3\144\x69\x67\157\40\144\145\x20\101\x74\151\x76\141\xc3\xa7\xc3\xa3\x6f"); $tr["\x4c\x69\x63\145\x6e\163\x65\40\143\157\x64\145\x20\x66\157\x72\40\164\x68\151\x73\x20\167\145\142\163\x69\x74\x65\56"] = array("\x70\x74" => "\x43\303\xb3\x64\x69\x67\157\x20\x64\145\x20\x61\x74\x69\166\141\xc3\xa7\303\243\157\40\160\141\x72\x61\40\145\x73\164\x65\x20\167\x65\142\163\x69\x74\x65\x2e", "\145\x73" => "\103\303\xb3\144\151\x67\x6f\x20\x64\x65\40\141\164\x69\166\x61\303\xa7\xc3\xa3\157\40\160\x61\162\141\x20\145\x73\164\145\x20\167\145\142\x73\151\164\x65\56"); $tr["\x47\145\x74\x20\x6f\x6e\145\x20\150\145\x72\145"] = array("\x70\164" => "\117\142\x74\145\156\x68\141\x20\165\155\x20\x61\x71\x75\151", "\x65\163" => "\117\x62\x74\x65\156\147\x61\x20\165\x6e\157\40\141\x71\165\xc3\xad"); $tr["\x53\151\164\145\x6d\x61\x70"] = array("\160\164" => "\115\x61\160\141\x20\x64\157\x20\x73\151\x74\x65", "\x65\163" => "\115\141\160\141\x20\144\145\x6c\40\x73\x69\x74\x69\x6f"); $tr["\x73\145\x6e\144\40\164\150\x69\163\x20\163\x69\x74\x65\x6d\141\x70\x20\164\x6f\40\x74\150\x65"] = array("\x70\x74" => "\x65\x6e\166\151\x65\x20\145\163\164\145\40\x73\x69\164\x65\x6d\x61\x70\x20\x70\141\162\x61\40\x6f", "\x65\x73" => "\x65\156\x76\x69\145\40\x65\163\164\145\x20\155\141\160\141\x20\x64\x65\154\x20\x73\151\164\151\157\x20\160\x61\x72\x61\40\x65\154"); $tr["\123\x65\x74\x74\x69\x6e\x67\x73"] = array("\x70\x74" => "\x43\x6f\156\146\151\147\165\x72\141\303\xa7\xc3\xb5\x65\x73", "\x65\x73" => "\103\x6f\156\x66\151\147\x75\162\141\143\x69\157\x6e\145\x73"); $tr["\123\x74\x6f\162\x69\x65\x73\x20\x4c\x69\163\x74\x20\120\x61\147\145"] = array("\x70\164" => "\120\xc3\xa1\147\x69\156\141\40\x64\x65\40\x6c\151\163\x74\x61\x67\x65\155\40\x64\145\x20\163\164\157\x72\151\x65\163", "\x65\163" => "\x50\303\241\147\151\156\x61\40\144\x65\x20\x6c\151\163\164\141\x64\157\40\x64\x65\40\150\x69\163\164\157\162\x69\141\x73"); $tr["\x52\x65\x6d\x65\155\x62\145\x72\x20\164\x6f\40\x63\x6c\x65\141\162\40\x74\x68\145\x20\143\141\x63\150\x65\x20\167\x68\x65\156\40\x63\150\141\x6e\147\x69\156\x67\x20\157\x70\x74\x69\157\156\x73"] = array("\x70\x74" => "\x4c\145\155\142\x72\145\55\163\x65\40\x64\145\40\x6c\151\155\160\141\x72\x20\x6f\40\143\141\x63\x68\145\x20\141\x6f\x20\x61\x6c\164\x65\x72\x61\x72\40\x61\163\40\157\x70\xc3\247\303\265\x65\x73", "\145\163" => "\x52\145\x63\x75\145\x72\x64\145\40\154\x69\155\160\x69\x61\162\40\154\141\x20\143\x61\143\x68\xc3\xa9\40\x61\x6c\40\x63\x61\155\142\x69\x61\162\x20\154\141\x73\x20\x6f\x70\x63\x69\157\156\145\163"); $tr["\122\145\141\144\40\x6d\x6f\162\x65"] = array("\x70\x74" => "\114\x65\151\x61\x20\x6d\x61\x69\x73", "\x65\163" => "\114\x65\x65\162\x20\155\303\241\163"); $tr["\x44\x69\x64\x20\171\157\x75\x20\154\x69\x6b\x65\x20\164\150\151\x73\x20\163\x74\157\162\171\x3f"] = array("\x70\x74" => "\x47\157\163\x74\157\165\40\x64\145\163\164\x65\40\163\164\157\x72\x79\x3f", "\x65\x73" => "\xc2\277\114\x65\40\147\165\x73\x74\303\263\x20\x65\163\x74\x61\40\150\151\163\164\x6f\162\151\x61\77"); $tr["\x50\x6c\145\x61\163\x65\x20\163\x68\x61\x72\x65\40\142\x79\x20\x63\154\x69\x63\153\151\156\147\40\x74\150\151\163\x20\142\x75\164\x74\157\x6e\x21"] = array("\x70\164" => "\x41\x70\x72\x6f\166\145\x69\164\x65\40\160\x61\162\x61\40\x63\157\x6d\x70\x61\162\164\x69\154\150\x61\162\40\x63\154\151\x63\141\156\x64\157\40\156\x6f\40\142\x6f\x74\303\243\157\40\141\x63\x69\x6d\x61\x21", "\145\163" => "\xc2\xa1\101\x70\x72\x6f\166\x65\151\164\145\40\x70\x61\x72\x61\40\143\157\x6d\160\x61\x72\164\x69\162\40\x68\x61\143\151\145\x6e\x64\157\x20\x63\x6c\151\143\x20\x65\156\40\145\x6c\x20\142\x6f\164\303\xb3\x6e\41"); $tr["\x54\150\151\163\40\160\x61\147\145\x20\x77\x61\163\40\147\x65\156\145\x72\141\164\145\144\40\x62\x79\x20\x74\x68\145\40\x70\x6c\x75\147\x69\156"] = array("\x70\164" => "\105\163\164\141\40\x70\303\241\x67\151\x6e\x61\40\146\157\x69\40\x67\x65\x72\x61\144\141\x20\x70\145\154\x6f\x20\x70\154\x75\147\151\156", "\x65\163" => "\105\x73\x74\x61\x20\160\xc3\xa1\147\x69\156\141\40\146\x75\x65\40\x67\145\156\145\162\x61\144\x61\x20\160\157\x72\40\145\x6c\40\160\x6c\165\147\x69\x6e"); $tr["\126\151\163\151\x74\40\157\165\162\x20\163\x69\164\145\x20\141\x6e\144\40\163\x65\145\40\x61\154\154\x20\x6f\x74\150\x65\x72\40\x61\166\x61\151\x6c\141\142\154\x65\x20\141\x72\x74\151\143\154\145\x73\41"] = array("\x70\164" => "\x56\x69\x73\151\164\145\40\x6e\x6f\163\x73\x6f\x20\163\x69\164\145\x20\x65\x20\166\145\152\x61\40\164\157\144\157\x73\x20\x6f\163\40\157\x75\x74\x72\x6f\x73\40\x61\x72\164\151\147\157\163\40\x64\151\163\x70\157\156\303\255\x76\x65\x69\x73\41", "\x65\163" => "\126\151\x73\151\164\x65\x20\x6e\x75\x65\163\x74\162\x6f\x20\163\x69\x74\x69\x6f\40\171\x20\166\145\141\x20\164\x6f\144\x6f\x73\40\154\157\x73\40\x6f\x74\x72\157\x73\40\141\162\164\303\xad\143\x75\154\x6f\163\x20\144\151\163\160\157\x6e\151\x62\154\x65\163\x21"); $tr["\116\x6f\40\x77\145\142\40\163\x74\x6f\x72\151\x65\x73\40\146\x6f\x75\156\x64\56"] = array("\160\x74" => "\x4e\x65\x6e\x68\165\155\40\167\x65\142\40\163\x74\157\x72\171\x20\x65\156\143\x6f\x6e\164\x72\x61\x64\157\56", "\145\x73" => "\x4e\x6f\40\163\145\40\145\156\143\x6f\156\x74\162\141\x72\x6f\x6e\40\150\151\x73\164\157\162\x69\x61\163\40\167\x65\142\x2e"); $tr["\124\x68\151\163\x20\x57\145\x62\40\x53\164\157\162\171\40\167\x61\x73\x20\x67\x65\x6e\x65\162\141\164\145\x64\x20\x62\171\x20\164\x68\x65\x20\x70\x6c\165\x67\151\156"] = array("\x70\x74" => "\105\163\164\145\40\x77\145\142\40\163\x74\157\162\171\40\146\157\151\x20\147\145\x72\x61\144\157\x20\160\145\154\x6f\40\160\x6c\165\147\151\x6e", "\x65\x73" => "\x45\163\164\x61\x20\x68\x69\x73\164\157\162\x69\141\40\x77\145\142\40\x66\165\x65\x20\x67\x65\x6e\x65\162\x61\x64\141\x20\x70\x6f\x72\x20\145\x6c\40\x70\154\x75\147\x69\x6e"); $tr["\x43\x72\x65\141\x74\x65\144\40\x62\x79"] = array("\x70\164" => "\103\162\151\x61\144\157\x20\x70\x6f\x72", "\145\x73" => "\103\162\x65\x61\x64\157\40\160\157\x72"); $tr["\126\151\163\x69\x74"] = array("\160\x74" => "\x41\x63\145\x73\163\145", "\x65\163" => "\126\x69\x73\x69\164\145"); $tr["\114\x69\143\x65\156\x73\151\x6e\x67"] = array("\160\x74" => "\x4c\151\x63\x65\156\143\151\x61\x6d\145\x6e\164\157", "\x65\163" => "\114\151\143\145\x6e\x63\x69\141\x6d\x69\145\156\164\x6f"); $tr["\x45\155\x61\x69\x6c"] = array("\160\x74" => "\105\x6d\x61\x69\154", "\145\163" => "\105\155\x61\x69\154"); $tr["\x45\155\x61\151\x6c\x20\165\163\145\144\40\164\x6f\40\x70\165\162\143\150\x61\163\145\x20\164\x68\x65\x20\x70\154\x75\x67\x69\156\56"] = array("\x70\x74" => "\x45\x6d\x61\151\x6c\40\x75\x73\x61\x64\x6f\40\x70\x61\x72\x61\40\x63\x6f\x6d\x70\162\141\162\x20\157\x20\160\x6c\x75\147\x69\156\x2e", "\145\x73" => "\x45\155\141\151\x6c\40\165\163\141\144\x6f\40\160\141\162\141\40\143\157\155\160\x72\141\x72\40\145\x6c\40\160\x6c\x75\x67\x69\156\56"); $tr["\116\157\164\x20\154\x69\x63\145\x6e\163\x65\x64"] = array("\x70\164" => "\116\303\243\x6f\40\x6c\151\143\x65\x6e\x63\151\141\x64\157", "\x65\163" => "\x4e\157\x20\154\x69\x63\x65\156\x63\x69\x61\x64\x6f"); $tr["\x4c\151\143\145\x6e\x73\145\x64\40\164\157"] = array("\160\x74" => "\x4c\x69\x63\145\156\x63\x69\x61\x64\157\x20\160\x61\162\x61", "\145\163" => "\x4c\151\143\145\156\143\x69\x61\144\157\x20\160\x61\x72\x61"); $tr["\111\x6e\x76\x61\x6c\151\144\x20\x6c\151\x63\145\156\x73\x65\x2e"] = array("\160\164" => "\114\x69\x63\145\156\xc3\247\141\x20\x69\156\x76\xc3\241\x6c\151\144\x61\56", "\x65\163" => "\114\x69\x63\145\156\143\151\141\40\151\156\166\xc3\241\154\151\144\141\56"); $tr["\107\x65\156\145\x72\x61\x6c"] = array("\x70\164" => "\x47\145\162\141\x6c", "\x65\163" => "\107\x65\x6e\145\162\141\154"); $tr["\107\x65\x6e\145\x72\x61\154\x20\163\x65\164\164\151\x6e\147\x73\40\x66\157\x72\x20\164\150\x65\40\x70\x6c\x75\x67\151\x6e\x2e"] = array("\x70\x74" => "\103\157\156\x66\x69\x67\165\x72\141\xc3\247\xc3\xb5\x65\163\x20\x67\x65\162\141\x69\x73\x20\144\x6f\40\160\x6c\x75\x67\151\x6e\x2e", "\145\163" => "\x43\x6f\156\x66\x69\x67\x75\x72\141\143\x69\x6f\x6e\x65\x73\40\147\x65\x6e\x65\x72\141\x6c\145\163\x20\144\x65\x6c\x20\x70\154\x75\x67\151\156\56"); $tr["\x59\x6f\x75\x72\40\x48\x6f\164\x6d\x61\162\x74\40\x54\x72\141\156\x73\141\x63\x74\151\x6f\x6e\40\143\157\x64\145\x2e\x20\x59\157\165\40\x72\x65\143\x65\x69\x76\x65\x64\x20\x69\x74\x20\151\x6e\40\171\157\x75\x72\x20\x65\155\x61\151\x6c\40\141\146\x74\145\x72\40\x70\165\162\x63\x68\141\163\x69\156\x67\x20\x74\x68\x65\40\160\154\165\147\151\156\56"] = array("\160\x74" => "\123\145\x75\40\x63\xc3\xb3\144\x69\x67\x6f\40\x64\145\x20\x74\x72\141\x6e\163\x61\303\xa7\xc3\xa3\x6f\40\110\x6f\x74\155\x61\162\x74\56\x20\x56\157\x63\xc3\xaa\x20\x72\145\x63\145\142\x65\x75\x20\x6e\x6f\40\163\145\x75\40\x65\x6d\x61\151\x6c\x20\141\x70\xc3\xb3\163\x20\x61\x20\x63\x6f\x6d\160\162\141\40\144\x6f\40\x70\154\x75\x67\x69\156\56", "\x65\163" => "\123\x75\40\x63\xc3\xb3\x64\x69\x67\x6f\x20\144\145\x20\164\x72\x61\x6e\x73\141\143\x63\151\xc3\xb3\x6e\40\110\x6f\x74\x6d\x61\x72\164\56\x20\114\157\x20\x72\145\x63\151\x62\x69\303\263\40\x65\x6e\40\x73\x75\x20\143\157\162\x72\145\157\x20\145\154\145\x63\x74\x72\303\xb3\156\151\143\157\40\x64\145\x73\160\165\xc3\xa9\x73\40\144\x65\x20\143\x6f\155\x70\162\141\162\x20\145\x6c\x20\160\x6c\165\147\151\x6e\x2e"); $tr["\x54\162\141\156\x73\x61\143\x74\151\157\156\x20\103\157\x64\x65"] = array("\160\x74" => "\x43\xc3\xb3\144\x69\x67\157\x20\x64\x65\x20\124\162\x61\156\x73\141\xc3\xa7\303\243\x6f", "\145\x73" => "\x43\xc3\263\144\151\147\157\40\144\145\40\124\162\x61\156\x73\x61\143\x63\x69\xc3\263\156"); $tr["\x49\x6e\166\x61\154\x69\144\x20\164\162\x61\x6e\x73\x61\x63\164\151\x6f\156\x20\143\157\x64\145\x2e"] = array("\x70\x74" => "\103\xc3\263\144\x69\x67\157\40\144\145\x20\164\x72\141\x6e\x73\x61\303\xa7\303\243\157\40\151\156\x76\xc3\xa1\x6c\x69\144\157\56", "\x65\163" => "\x43\303\xb3\x64\151\147\157\40\144\x65\40\x74\162\x61\x6e\x73\141\x63\143\151\303\263\x6e\x20\x69\156\166\xc3\xa1\154\x69\144\157\x2e"); $tr["\102\x61\x73\145\x20\104\151\x72\x65\x63\x74\157\162\x79"] = array("\160\164" => "\104\x69\162\x65\164\303\xb3\x72\151\x6f\x20\x42\x61\x73\x65", "\145\163" => "\x44\x69\162\145\143\x74\x6f\162\x69\x6f\40\102\141\x73\145"); $tr["\124\x68\145\40\142\x61\163\145\x20\x64\x69\162\145\x63\x74\x6f\x72\x79\40\x66\157\x72\40\164\x68\145\x20\167\x65\x62\x20\x73\164\x6f\x72\151\x65\x73\56\40\125\x73\145\x20\141\x20\x64\151\x72\x65\x63\164\157\162\171\40\164\x68\x61\164\40\x64\x6f\145\x73\x6e\x27\x74\40\141\154\162\145\x61\x64\x79\x20\145\170\x69\x73\164\x20\157\156\x20\171\157\165\162\x20\x73\x69\x74\145\40\164\157\x20\141\166\x6f\151\144\x20\143\x6f\x6e\x66\154\x69\x63\x74\163\x2e"] = array("\160\x74" => "\104\x69\162\x65\x74\303\xb3\x72\151\x6f\40\x62\141\163\145\x20\x70\141\x72\141\x20\x6f\163\40\x77\x65\x62\x20\163\164\x6f\x72\x69\x65\163\x2e\40\x55\x73\x65\40\x75\155\40\144\151\x72\145\x74\303\xb3\162\x69\x6f\40\x71\x75\145\x20\141\151\x6e\x64\x61\40\x6e\303\243\157\40\145\x78\x69\x73\x74\141\x20\x6e\157\40\163\x65\165\40\x73\x69\164\145\x20\x70\141\x72\x61\40\145\x76\151\164\141\162\40\143\x6f\156\146\154\151\x74\x6f\163\x2e", "\145\163" => "\104\151\x72\145\143\164\157\x72\151\x6f\x20\142\141\x73\145\x20\x70\x61\162\x61\40\154\x61\x73\40\x77\145\x62\x20\163\164\x6f\162\151\x65\163\56\40\125\163\145\40\165\x6e\x20\x64\x69\162\145\x63\164\x6f\x72\x69\157\x20\161\165\x65\x20\141\xc3\272\156\x20\156\157\40\145\x78\151\163\x74\141\x20\145\156\x20\163\165\40\163\151\x74\151\x6f\x20\x70\x61\162\141\x20\x65\x76\151\164\141\162\40\x63\157\156\146\154\151\x63\164\157\163\56"); $tr["\120\x6f\x73\x74\163\x20\x53\145\154\x65\143\x74\x69\157\x6e"] = array("\160\164" => "\x53\145\x6c\x65\xc3\247\303\243\157\40\x64\145\x20\120\x6f\x73\164\x73", "\145\163" => "\123\x65\154\145\x63\x63\151\303\263\156\x20\144\x65\x20\x50\157\x73\x74\163"); $tr["\123\145\154\x65\x63\x74\40\x74\150\145\40\x70\157\x73\x74\163\x20\x74\x6f\40\165\163\x65\x20\x66\157\162\40\x74\x68\x65\40\167\145\x62\40\163\x74\157\162\x69\145\163\x2e"] = array("\x70\164" => "\123\145\x6c\145\x63\151\157\x6e\x65\x20\157\x73\x20\160\157\163\164\163\x20\x70\x61\162\x61\40\x75\163\x61\162\40\x6e\x61\40\143\x72\151\141\303\247\303\xa3\x6f\40\x64\157\163\x20\x77\145\x62\40\163\164\157\162\151\145\x73\x2e", "\145\163" => "\x53\145\154\x65\143\143\x69\157\156\x65\x20\x6c\x6f\x73\x20\160\157\163\164\x73\40\x70\x61\x72\x61\x20\x75\x73\141\162\40\145\156\x20\154\x61\40\143\162\x65\x61\143\x69\xc3\263\156\40\x64\145\x20\x6c\x61\163\40\x77\145\x62\40\163\x74\x6f\162\x69\145\x73\x2e"); $tr["\101\154\x6c\x20\x50\x6f\163\164\x73"] = array("\x70\x74" => "\x54\157\x64\157\x73\40\157\x73\x20\120\x6f\x73\164\x73", "\145\163" => "\124\x6f\144\157\x73\40\x6c\x6f\x73\40\x50\x6f\x73\164\x73"); $tr["\106\162\157\x6d\40\x44\x61\164\x65"] = array("\x70\164" => "\101\x20\160\141\x72\x74\151\162\40\x64\145\40\165\155\x61\40\x64\x61\164\x61", "\x65\x73" => "\x44\x65\x73\x64\x65\40\165\x6e\x61\x20\x66\x65\143\150\141"); $tr["\123\145\154\x65\x63\x74\x65\x64\x20\120\x6f\163\x74\x73"] = array("\x70\x74" => "\x50\x6f\163\x74\163\x20\123\x65\x6c\x65\x63\x69\157\x6e\x61\x64\x6f\x73", "\x65\163" => "\120\157\163\x74\163\40\x53\x65\154\x65\x63\143\151\157\x6e\x61\144\x6f\x73"); $tr["\101\x63\x74\151\166\145\x3f"] = array("\160\x74" => "\x41\164\151\x76\x6f\x3f", "\x65\x73" => "\x41\x63\x74\x69\166\157\77"); $tr["\103\x68\x65\143\x6b\40\164\x68\151\163\40\164\x6f\40\147\x65\156\145\x72\141\x74\145\x20\x77\145\142\x20\x73\x74\157\x72\x69\145\163\56"] = array("\160\x74" => "\x4d\141\x72\x71\x75\x65\40\160\141\x72\x61\40\147\x65\162\x61\x72\x20\167\145\142\40\x73\164\157\162\x69\145\163\x2e", "\x65\x73" => "\115\141\162\161\165\x65\x20\160\141\162\x61\x20\147\x65\x6e\x65\162\141\162\40\x77\x65\142\40\x73\x74\x6f\162\x69\x65\163\x2e"); $tr["\x50\x6f\163\164\40\x44\145\x6c\x61\171\x20\50\151\156\x20\x64\141\171\x73\x29"] = array("\x70\x74" => "\101\164\x72\x61\163\157\40\x64\145\40\x50\165\x62\154\x69\143\x61\303\xa7\303\xa3\x6f\40\50\145\x6d\40\x64\x69\141\163\51", "\145\163" => "\x52\x65\164\162\x61\x73\157\x20\144\145\40\120\x75\142\x6c\151\x63\x61\143\151\xc3\xb3\156\x20\x28\x65\156\x20\144\xc3\xad\141\x73\x29"); $tr["\x54\150\145\x20\156\x75\x6d\x62\x65\162\x20\157\146\40\144\141\171\x73\40\x74\157\x20\167\141\151\x74\x20\142\145\x66\x6f\x72\145\x20\160\165\142\154\x69\163\x68\151\x6e\x67\x20\x61\40\156\x65\x77\x20\x77\145\142\40\163\164\x6f\162\x79\56"] = array("\160\164" => "\x4f\x20\x6e\303\xba\x6d\145\162\x6f\40\144\145\x20\144\151\x61\163\40\160\141\162\x61\x20\145\x73\x70\145\162\141\162\x20\x61\156\x74\x65\163\x20\x64\145\x20\x70\165\x62\x6c\151\143\x61\162\x20\x75\155\x20\x6e\157\x76\157\x20\x77\145\142\x20\x73\x74\157\162\171\56", "\x65\x73" => "\105\154\x20\x6e\xc3\272\155\145\162\x6f\40\144\x65\40\144\303\xad\x61\x73\x20\160\141\162\141\x20\x65\x73\x70\x65\x72\x61\162\x20\141\x6e\164\x65\x73\x20\x64\145\x20\x70\x75\x62\x6c\x69\x63\141\x72\40\x75\156\141\x20\x6e\165\145\166\x61\40\x68\x69\x73\x74\157\162\x69\141\x20\167\145\142\56"); $tr["\x49\x66\40\x79\x6f\165\x20\x73\145\x74\40\x74\x68\151\x73\x20\164\157\x20\x30\54\40\141\x6c\154\40\164\x68\145\40\x77\145\x62\x20\163\x74\x6f\162\x69\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\160\x75\142\x6c\151\x73\x68\x65\x64\x20\x69\155\x6d\145\x64\x69\x61\164\145\154\x79\56"] = array("\160\x74" => "\123\145\40\x76\157\143\303\252\40\x64\x65\x66\151\156\151\162\x20\x69\x73\163\157\40\x63\x6f\x6d\x6f\40\x30\54\x20\164\157\144\x61\x73\40\x61\163\40\x77\x65\142\40\x73\x74\x6f\162\151\x65\163\x20\163\x65\162\xc3\243\157\x20\160\165\142\154\x69\x63\141\x64\141\163\x20\x69\155\x65\144\x69\x61\164\141\x6d\145\156\x74\x65\56", "\x65\163" => "\x53\151\40\x6c\x6f\40\x65\x73\164\141\x62\154\x65\143\145\x20\x65\x6e\40\x30\54\x20\164\x6f\144\141\x73\x20\154\141\163\40\x68\151\x73\x74\157\x72\151\141\x73\40\167\145\x62\40\x73\145\40\160\x75\142\x6c\151\143\x61\x72\303\241\x6e\40\x69\x6e\155\145\x64\x69\141\164\x61\155\x65\x6e\x74\x65\x2e"); $tr["\101\x6c\x6c\x20\x74\150\x65\40\x77\145\x62\40\163\x74\x6f\x72\151\x65\163\x20\142\141\163\145\x64\x20\x6f\156\x20\x74\x68\x65\x20\160\157\x73\164\x73\40\160\x75\x62\x6c\151\163\x68\x65\x64\40\165\x6e\164\151\154\40\171\145\163\164\x65\x72\x64\141\171\40\167\x69\x6c\154\40\142\x65\40\147\x65\x6e\145\162\141\164\x65\x64\54\40\141\x6e\144\x20\164\150\x65\40\156\x65\x77\40\157\156\145\163\40\167\x69\x6c\x6c\x20\142\x65\x20\x67\145\156\x65\162\141\164\x65\x64\x20\167\x69\x74\150\40\x61\40\x64\x65\154\x61\x79\40\x6f\x66\x20\61\40\144\141\x79\x2e"] = array("\160\164" => "\x54\157\x64\x61\163\40\x61\163\x20\x77\x65\x62\x20\163\164\x6f\162\x69\145\163\x20\142\141\x73\x65\x61\x64\x61\x73\x20\156\157\x73\x20\160\157\x73\x74\x73\40\160\x75\142\x6c\151\x63\141\144\157\x73\x20\x61\164\303\xa9\40\x6f\x6e\x74\x65\x6d\x20\x73\x65\x72\xc3\xa3\x6f\40\147\145\162\x61\x64\141\x73\54\x20\145\40\x61\x73\x20\x6e\157\166\141\163\40\x73\145\162\303\243\x6f\40\147\x65\x72\x61\x64\x61\x73\40\x63\157\155\40\165\x6d\x20\x61\164\162\141\x73\x6f\40\144\x65\x20\61\40\144\x69\141\56", "\145\x73" => "\x54\157\144\141\x73\x20\x6c\x61\x73\40\150\151\x73\164\157\162\151\x61\x73\40\167\x65\x62\40\x62\x61\x73\x61\144\141\x73\40\145\x6e\x20\154\x6f\x73\40\x70\x6f\163\x74\x73\40\x70\165\142\x6c\x69\x63\x61\x64\157\163\x20\150\141\163\164\x61\40\x61\x79\145\162\40\163\145\x20\147\x65\x6e\145\x72\x61\x72\303\xa1\x6e\54\x20\x79\40\154\x61\x73\40\156\x75\x65\166\141\x73\40\x73\x65\x20\x67\x65\156\x65\162\x61\x72\xc3\241\x6e\x20\143\157\156\40\165\156\40\162\x65\164\162\141\163\x6f\x20\x64\x65\40\61\x20\144\303\255\141\x2e"); $tr["\x4f\x6e\154\171\40\164\x68\x65\40\167\145\x62\40\163\x74\x6f\x72\151\x65\163\40\x62\141\x73\x65\x64\40\157\156\x20\164\150\145\40\x70\x6f\163\x74\x73\40\160\x75\142\154\151\x73\x68\x65\x64\40\45\163\x20\144\x61\171\163\x20\x61\147\x6f\40\x28\171\x6f\x75\162\x20\x6f\154\144\145\163\164\40\x70\x6f\x73\x74\x73\51\40\167\x69\154\x6c\40\142\x65\40\147\x65\x6e\145\x72\141\x74\145\144\40\x69\x6d\x6d\x65\x64\151\x61\x74\145\154\x79\x2c\x20\x61\156\x64\40\141\x6c\154\40\x74\x68\145\x20\x6f\x74\150\145\162\x20\167\x69\x6c\154\40\x62\x65\x20\160\x75\x62\x6c\151\163\150\x65\x64\x20\146\157\x6c\x6c\157\x77\x69\x6e\147\x20\164\x68\151\163\x20\144\145\x6c\x61\x79\56"] = array("\x70\x74" => "\123\x6f\x6d\x65\x6e\x74\145\40\141\163\x20\167\x65\x62\x20\163\x74\x6f\x72\x69\145\x73\x20\x62\x61\x73\145\141\144\141\x73\x20\x6e\x6f\x73\x20\160\157\163\164\x73\x20\160\x75\x62\154\151\x63\141\144\157\163\40\150\303\xa1\40\x25\163\x20\x64\151\x61\163\x20\50\163\x65\x75\x73\40\160\157\163\x74\163\40\155\141\151\x73\40\x61\156\164\151\x67\157\x73\x29\40\x73\x65\x72\xc3\243\157\40\147\x65\x72\x61\x64\141\x73\40\151\155\x65\144\x69\141\164\x61\x6d\145\156\164\x65\x2c\x20\x65\40\x74\x6f\144\x61\163\x20\141\163\x20\157\165\164\162\141\x73\40\163\x65\x72\xc3\243\x6f\x20\160\165\x62\154\151\143\141\144\141\x73\40\x73\x65\147\x75\x69\x6e\144\x6f\x20\x65\163\164\145\x20\141\164\x72\x61\x73\157\56", "\x65\x73" => "\x53\157\x6c\157\40\154\141\x73\40\150\151\163\x74\157\x72\x69\141\x73\x20\167\x65\x62\40\x62\141\163\141\x64\x61\163\40\x65\156\x20\x6c\157\163\x20\160\x6f\x73\164\163\40\160\x75\x62\154\x69\x63\141\x64\x6f\163\40\x68\x61\143\145\x20\x25\x73\40\x64\xc3\xad\141\163\x20\50\x73\x75\163\40\x70\x75\142\x6c\151\x63\141\143\151\x6f\156\145\x73\x20\155\xc3\241\x73\40\141\156\164\x69\147\165\141\163\51\x20\x73\145\40\x67\x65\x6e\x65\162\141\162\303\xa1\x6e\40\151\x6e\155\x65\x64\151\x61\164\x61\x6d\145\156\x74\145\x2c\x20\171\x20\x74\x6f\144\141\x73\40\x6c\141\163\x20\x64\145\155\xc3\xa1\x73\x20\163\x65\x20\x70\x75\x62\x6c\151\143\141\162\303\241\156\40\163\x69\x67\165\151\145\156\144\x6f\x20\x65\163\x74\x65\x20\x72\145\164\162\141\163\157\56"); $tr["\x54\157\x74\141\x6c\x20\x77\145\x62\x20\163\164\x6f\162\151\145\163\x20\147\x65\x6e\x65\162\141\x74\x65\144"] = array("\x70\x74" => "\124\157\164\x61\154\40\144\x65\x20\167\145\x62\x20\x73\x74\157\162\151\145\x73\40\147\x65\162\x61\x64\157\x73", "\x65\163" => "\x54\157\x74\x61\154\x20\144\x65\40\150\151\x73\x74\x6f\x72\x69\141\163\40\x77\145\x62\x20\147\x65\156\145\x72\141\x64\141\x73"); $tr["\x41\x70\x70\145\141\x72\x61\156\143\x65"] = array("\160\x74" => "\101\160\x61\162\303\252\x6e\x63\x69\x61", "\145\x73" => "\x41\x70\x61\x72\x69\145\x6e\143\151\x61"); $tr["\123\145\x74\40\x74\x68\x65\x20\154\157\157\x6b\40\x61\x6e\x64\x20\x66\145\x65\154\x20\x6f\x66\x20\171\x6f\x75\x72\x20\167\x65\142\40\x73\164\157\162\x79\56"] = array("\160\164" => "\104\145\146\151\156\x61\40\157\x20\x65\163\x74\151\154\157\x20\145\40\x61\40\141\160\x61\162\xc3\252\156\x63\x69\x61\x20\x64\x61\40\x73\165\141\x20\x77\145\x62\x20\163\164\x6f\162\x79\x2e", "\x65\163" => "\x44\145\146\151\156\x61\40\145\x6c\x20\145\163\164\151\x6c\157\40\x79\x20\154\x61\x20\141\x70\141\x72\x69\145\x6e\x63\x69\x61\x20\144\x65\40\163\x75\40\167\x65\142\x20\163\164\157\x72\171\x2e"); $tr["\103\157\x6c\x6f\162\x73"] = array("\x70\x74" => "\x43\157\x72\x65\163", "\x65\163" => "\103\157\154\x6f\x72\x65\163"); $tr["\120\162\151\155\141\162\171\x20\103\157\154\x6f\162"] = array("\x70\x74" => "\x43\x6f\162\40\x50\x72\x69\x6e\x63\x69\x70\x61\x6c", "\145\x73" => "\103\157\x6c\157\x72\x20\120\x72\x69\x6d\141\162\x69\157"); $tr["\124\x68\145\x20\160\162\x69\155\141\x72\x79\40\x63\x6f\154\x6f\162\40\x6f\146\40\171\x6f\x75\162\x20\167\145\x62\x20\x73\164\x6f\x72\x79\x2e"] = array("\x70\164" => "\101\40\143\x6f\162\40\x70\x72\151\x6e\143\x69\160\x61\154\40\144\x6f\40\x73\145\165\40\167\x65\142\x20\x73\164\x6f\162\171\x2e", "\x65\x73" => "\x45\154\x20\143\x6f\x6c\157\x72\40\x70\162\x69\155\141\162\x69\x6f\x20\x64\145\40\154\141\40\x77\145\x62\x20\163\x74\x6f\x72\171\56"); $tr["\x42\141\143\x6b\x67\x72\157\x75\x6e\144\x20\103\x6f\x6c\x6f\x72"] = array("\160\x74" => "\x43\157\162\40\144\x65\40\x46\x75\156\144\x6f", "\145\x73" => "\x43\157\154\x6f\x72\x20\x64\x65\40\x46\157\x6e\144\157"); $tr["\x54\x68\145\x20\142\x61\x63\x6b\147\x72\157\x75\x6e\144\x20\143\157\x6c\x6f\x72\x20\x6f\x66\x20\x79\157\x75\x72\x20\x77\145\x62\x20\x73\x74\157\x72\x79\x2e"] = array("\160\x74" => "\101\40\x63\x6f\162\40\144\145\x20\146\x75\x6e\x64\x6f\40\144\x6f\x20\x73\145\x75\x20\167\145\x62\x20\163\164\x6f\162\x79\x2e", "\x65\163" => "\105\154\40\143\x6f\x6c\157\x72\40\x64\x65\x20\146\157\156\x64\157\40\x64\x65\x20\x6c\141\40\167\145\142\x20\163\x74\157\162\x79\x2e"); $tr["\124\x65\170\164\x20\103\157\154\x6f\162"] = array("\160\x74" => "\x43\157\x72\40\x64\x6f\x20\124\145\x78\164\x6f", "\x65\x73" => "\103\x6f\154\157\x72\x20\144\x65\x6c\40\124\x65\170\x74\x6f"); $tr["\x54\x68\x65\x20\164\x65\x78\x74\40\x63\x6f\154\x6f\162\40\157\x66\40\171\x6f\x75\162\40\167\x65\142\x20\163\164\x6f\162\171\x2e"] = array("\x70\x74" => "\x41\40\143\x6f\x72\x20\144\157\x20\164\145\170\164\157\x20\144\x6f\40\163\x65\165\40\x77\145\142\40\x73\x74\x6f\162\x79\56", "\145\x73" => "\105\154\x20\x63\x6f\x6c\x6f\x72\40\144\145\154\x20\x74\x65\170\x74\x6f\40\x64\145\x20\154\141\40\x77\x65\x62\40\163\164\157\162\x79\56"); $tr["\102\141\x63\x6b\x67\162\x6f\x75\x6e\144\40\101\x6e\x69\155\x61\x74\x69\x6f\x6e"] = array("\x70\164" => "\x41\x6e\151\155\141\303\xa7\xc3\xa3\x6f\40\x64\145\x20\x46\x75\x6e\x64\157", "\x65\x73" => "\101\156\x69\155\x61\143\x69\xc3\263\156\x20\x64\x65\40\106\157\156\144\157"); $tr["\103\x68\145\143\x6b\40\164\150\151\x73\40\164\x6f\x20\x61\x6e\151\155\141\x74\x65\40\x69\x6d\x61\x67\145\163\x20\x69\156\40\164\x68\x65\40\142\x61\x63\153\147\162\157\x75\156\x64\x2e"] = array("\x70\164" => "\115\141\162\161\x75\x65\x20\160\141\x72\x61\x20\141\156\151\x6d\x61\x72\40\x69\155\x61\147\145\x6e\x73\x20\x6e\157\40\146\x75\x6e\144\157\56", "\145\163" => "\x4d\141\162\161\165\145\x20\x70\x61\162\141\x20\141\x6e\151\x6d\x61\x72\x20\x69\x6d\303\241\x67\x65\156\x65\163\40\x64\145\x20\146\x6f\156\144\157\x2e"); $tr["\114\x6f\147\x6f"] = array("\x70\164" => "\x4c\x6f\147\x6f\155\141\162\143\141", "\145\163" => "\114\x6f\x67\157\x74\151\160\157"); $tr["\x4d\141\151\x6e\40\114\x6f\x67\157"] = array("\160\164" => "\114\x6f\x67\157\155\141\x72\x63\141\40\120\x72\151\x6e\143\151\x70\x61\x6c", "\x65\x73" => "\x4c\157\x67\x6f\164\151\160\157\40\x50\x72\x69\156\x63\x69\160\x61\154"); $tr["\124\150\145\40\x6d\141\151\156\x20\154\x6f\x67\157\x20\x6f\146\40\x79\x6f\x75\162\x20\x73\x69\164\145\54\x20\166\151\163\151\142\x6c\145\x20\x6f\156\x20\x47\157\x6f\x67\x6c\x65\40\x44\x69\163\x63\157\166\x65\162\x2e"] = array("\x70\x74" => "\x41\40\x6c\157\147\x6f\155\141\162\x63\141\x20\x70\162\x69\x6e\143\x69\x70\141\x6c\x20\144\x6f\40\x73\x65\165\x20\x73\x69\164\145\x2c\40\166\x69\163\xc3\xad\166\145\154\40\156\157\x20\x47\157\157\x67\154\145\x20\104\151\163\143\157\166\x65\x72\x2e", "\x65\163" => "\105\x6c\40\x6c\157\x67\157\x74\151\160\x6f\40\x70\x72\x69\156\143\151\x70\x61\154\x20\x64\145\40\163\x75\x20\163\151\164\x69\157\x2c\x20\x76\x69\x73\151\142\x6c\x65\x20\145\156\x20\x47\x6f\157\147\x6c\x65\x20\x44\x69\163\143\x6f\x76\145\x72\x2e"); $tr["\102\141\143\x6b\x67\162\x6f\165\x6e\144\x20\x4c\x6f\x67\157"] = array("\x70\x74" => "\x4c\x6f\147\x6f\x6d\141\x72\x63\141\x20\156\x6f\x20\x46\165\x6e\144\157", "\x65\x73" => "\x4c\157\147\157\164\151\x70\x6f\x20\144\x65\40\106\157\156\144\157"); $tr["\124\150\145\40\x6c\157\x67\x6f\40\166\151\x73\x69\x62\154\x65\x20\157\x6e\40\164\x68\145\x20\142\141\x63\153\x67\162\x6f\x75\x6e\144\40\157\x66\x20\171\x6f\x75\162\40\x73\x74\x6f\x72\x69\145\163\56"] = array("\160\164" => "\101\40\154\157\x67\x6f\155\141\162\x63\x61\x20\166\151\x73\xc3\255\x76\x65\154\x20\156\x6f\x20\x66\165\x6e\x64\157\40\x64\157\x73\40\x73\x65\165\x73\40\163\164\x6f\162\151\145\x73\56", "\x65\x73" => "\x45\154\x20\x6c\x6f\x67\x6f\x74\x69\x70\x6f\40\x76\151\x73\x69\x62\154\x65\40\145\156\40\145\x6c\x20\x66\x6f\x6e\x64\x6f\x20\x64\145\x20\x73\x75\x73\40\x73\x74\157\x72\x69\x65\163\56"); $tr["\x42\141\143\153\x67\x72\157\165\x6e\x64\40\154\x6f\147\157\40\166\151\163\151\x62\x6c\145\x3f"] = array("\160\164" => "\x4d\157\x73\164\x72\141\x72\40\154\x6f\x67\157\x20\156\157\40\146\x75\156\144\157\77", "\145\x73" => "\302\xbf\115\157\163\164\x72\x61\162\40\x6c\157\147\157\x20\145\156\40\145\154\x20\146\x6f\x6e\x64\x6f\77"); $tr["\x53\x68\157\167\x20\164\150\x69\163\x20\x6c\x6f\x67\x6f\40\x6f\x6e\40\x74\x68\145\x20\164\157\160\x20\x6f\x66\x20\141\154\154\x20\x74\x68\145\40\x77\x65\142\40\163\164\157\162\171\40\163\x6c\151\x64\145\x73\x2e"] = array("\160\164" => "\115\157\x73\164\162\x61\162\x20\x65\x73\x74\x61\40\154\x6f\x67\x6f\x6d\x61\162\x63\x61\x20\x6e\x6f\x20\164\x6f\x70\157\40\x64\x65\x20\164\x6f\144\157\163\x20\x6f\163\x20\163\x6c\x69\x64\145\x73\x20\x64\x6f\40\167\x65\x62\40\x73\164\x6f\162\x79\56", "\145\x73" => "\115\x6f\163\x74\x72\x61\x72\x20\x65\163\x74\141\x20\x6c\x6f\x67\x6f\x74\151\x70\157\40\145\x6e\40\x65\x6c\x20\164\157\160\x65\x20\144\145\40\x74\157\144\157\163\40\x6c\x6f\163\x20\x73\154\151\x64\x65\x73\x20\144\x65\40\x6c\x61\40\x77\x65\142\x20\163\x74\x6f\x72\x79\x2e"); $tr["\52\x20\x4f\x6e\154\171\40\167\x6f\162\153\x73\40\151\x66\x20\x62\141\143\x6b\147\162\x6f\165\156\x64\40\141\156\151\x6d\141\x74\151\157\x6e\40\x69\163\40\144\x69\x73\141\x62\x6c\x65\144\x2e"] = array("\x70\x74" => "\x2a\x20\x53\xc3\xb3\40\x66\165\x6e\x63\151\157\156\141\40\x73\145\40\x61\x20\141\156\x69\155\141\303\247\303\xa3\x6f\40\144\x65\x20\146\165\156\144\x6f\40\145\x73\x74\x69\166\145\x72\40\x64\x65\x73\141\x74\151\166\x61\x64\x61\56", "\x65\x73" => "\52\40\x53\xc3\xb3\154\157\40\146\165\x6e\143\151\157\156\x61\x20\163\151\x20\154\141\40\141\156\x69\x6d\x61\143\x69\xc3\263\x6e\40\144\145\x20\x66\157\156\144\x6f\40\x65\x73\x74\303\xa1\40\144\145\x73\141\x63\x74\151\166\x61\144\141\56"); $tr["\101\165\x74\x6f\40\x41\144\x76\x61\156\143\145"] = array("\160\x74" => "\101\166\141\156\xc3\247\x6f\x20\x41\x75\x74\157\155\xc3\241\x74\x69\143\157", "\145\163" => "\x41\x76\x61\x6e\143\145\x20\x41\165\164\x6f\x6d\303\xa1\164\x69\143\x6f"); $tr["\x41\x75\x74\157\40\x41\x64\x76\141\156\x63\145\40\x49\x6e\164\145\162\166\x61\154"] = array("\160\x74" => "\x49\x6e\164\145\162\166\141\154\x6f\40\x64\145\x20\x41\x76\x61\x6e\303\xa7\x6f\x20\x41\x75\x74\x6f\155\303\xa1\x74\x69\143\157", "\x65\x73" => "\x49\x6e\x74\x65\162\x76\141\x6c\x6f\x20\x64\145\40\x41\166\x61\x6e\143\145\40\101\165\x74\x6f\x6d\xc3\xa1\164\x69\x63\x6f"); $tr["\124\x68\145\40\164\x69\x6d\145\40\151\x6e\x74\145\x72\166\x61\154\40\50\151\x6e\40\163\x65\143\x6f\156\x64\x73\x29\40\x62\x65\164\167\145\145\x6e\x20\x65\141\x63\x68\x20\x70\141\x67\145\x20\x6f\x66\x20\x79\x6f\165\162\40\167\145\142\x20\x73\x74\x6f\162\x79\56"] = array("\160\x74" => "\x4f\40\151\x6e\x74\x65\162\x76\x61\x6c\157\x20\x64\145\x20\164\x65\x6d\160\x6f\x20\50\x65\x6d\40\163\145\x67\x75\x6e\144\x6f\x73\x29\40\x65\x6e\x74\x72\145\40\x63\141\x64\141\40\x70\xc3\xa1\147\x69\x6e\141\x20\x64\x61\x20\x73\165\141\x20\x77\145\x62\x20\163\164\x6f\x72\171\x2e", "\145\x73" => "\x45\x6c\40\151\156\164\145\x72\166\141\x6c\157\40\144\x65\x20\x74\151\145\155\160\x6f\x20\x28\x65\x6e\x20\163\x65\147\x75\156\144\157\163\x29\x20\x65\x6e\x74\162\145\x20\x63\141\144\141\x20\x70\xc3\xa1\147\151\x6e\141\x20\x64\x65\40\163\165\40\167\145\x62\x20\x73\x74\157\162\171\56"); $tr["\101\x75\x74\157\40\x41\144\166\141\156\143\145\40\x41\x63\x74\151\166\x65\77"] = array("\160\164" => "\x41\164\151\166\141\x72\x20\101\x76\141\156\xc3\247\x6f\x20\101\x75\x74\157\x6d\xc3\xa1\x74\x69\x63\157\77", "\x65\x73" => "\302\xbf\x41\x63\x74\151\x76\x61\x72\40\x41\166\x61\156\x63\x65\40\x41\x75\x74\157\155\xc3\xa1\164\151\143\157\x3f"); $tr["\x43\x68\145\x63\x6b\40\x74\x68\151\x73\40\x74\x6f\40\x65\x6e\141\x62\154\145\x20\x61\165\x74\x6f\40\141\144\x76\x61\x6e\x63\145\x2e"] = array("\x70\164" => "\115\x61\162\161\x75\145\40\145\163\164\141\40\x6f\x70\303\247\303\243\157\40\x70\x61\162\x61\40\x61\164\151\x76\x61\x72\x20\x6f\x20\x61\166\x61\156\303\xa7\x6f\x20\x61\x75\164\x6f\155\xc3\xa1\x74\x69\x63\157\x2e", "\x65\x73" => "\x4d\x61\x72\161\165\x65\x20\145\163\x74\x61\40\157\160\143\x69\xc3\xb3\x6e\40\x70\x61\x72\141\40\x61\143\164\x69\166\141\162\x20\x65\154\x20\x61\x76\141\156\x63\x65\40\141\x75\164\157\155\303\241\164\151\x63\157\56"); $tr["\x43\141\x6c\x6c\x20\164\157\x20\101\143\164\151\157\156"] = array("\x70\164" => "\103\x68\x61\x6d\141\144\x61\40\x70\141\x72\x61\x20\101\xc3\xa7\303\243\x6f", "\145\163" => "\x4c\154\141\155\141\x64\141\x20\141\x20\154\x61\x20\101\x63\143\x69\303\xb3\156"); $tr["\x4c\x65\x61\x76\x65\x20\142\154\x61\x6e\x6b\40\x66\157\x72\40\144\x65\146\141\165\x6c\x74\x2e"] = array("\x70\x74" => "\104\x65\x69\x78\x65\40\x65\x6d\40\x62\162\141\156\x63\x6f\x20\x70\x61\x72\x61\x20\157\x20\x70\141\x64\162\xc3\xa3\157\x2e", "\x65\x73" => "\x44\x65\x6a\x65\40\x65\156\x20\142\x6c\141\x6e\x63\157\40\160\141\x72\x61\x20\145\154\x20\x76\141\x6c\x6f\162\x20\x70\162\x65\x64\145\164\x65\x72\155\151\156\x61\144\157\56"); $tr["\103\141\x6c\x6c\40\x74\157\40\x41\143\164\151\x6f\x6e\40\x42\165\x74\164\157\x6e\40\124\145\x78\164"] = array("\x70\164" => "\x54\x65\170\164\x6f\40\x64\x6f\40\102\x6f\x74\303\xa3\157\x20\144\145\x20\x43\150\x61\155\141\144\x61\40\x70\141\162\141\40\x41\xc3\247\303\243\157", "\x65\163" => "\124\145\x78\x74\x6f\x20\144\x65\x6c\x20\102\157\164\303\xb3\x6e\40\x64\x65\40\x4c\154\141\x6d\x61\x64\x61\x20\141\40\x6c\x61\x20\101\143\143\151\303\xb3\156"); $tr["\123\150\x6f\x77\40\x43\141\154\154\40\124\157\40\x41\143\x74\151\x6f\x6e\x20\157\x6e\x6c\x79\40\151\x6e\40\164\150\145\x20\x6c\x61\x73\164\x20\163\x6c\151\x64\145\x3f"] = array("\x70\x74" => "\x4d\157\x73\164\162\x61\x72\x20\x43\x68\x61\155\x61\144\141\x20\160\x61\x72\x61\40\x41\303\xa7\xc3\xa3\157\40\141\x70\x65\x6e\x61\163\x20\x6e\157\40\303\xba\x6c\164\x69\x6d\157\40\163\x6c\151\x64\145\77", "\145\163" => "\xc2\xbf\115\x6f\x73\x74\x72\141\x72\x20\x4c\154\x61\155\141\144\x61\40\141\x20\x6c\141\x20\101\143\x63\x69\303\xb3\156\x20\163\x6f\154\x6f\40\145\156\40\x6c\x61\40\303\xba\x6c\164\151\155\141\x20\x70\xc3\241\147\151\156\141\x3f"); $tr["\x43\x68\x65\x63\x6b\40\164\150\x69\163\40\x74\x6f\x20\x73\150\x6f\167\40\164\150\x65\40\x43\141\154\x6c\40\124\x6f\x20\x41\143\x74\151\x6f\x6e\x20\x62\x75\164\x74\157\156\x20\157\x6e\154\x79\x20\x69\x6e\40\164\x68\x65\x20\154\x61\x73\x74\40\x73\154\x69\x64\x65\56"] = array("\160\x74" => "\115\141\162\x71\165\145\x20\x65\163\x74\141\40\x6f\160\xc3\xa7\303\xa3\157\40\x70\x61\x72\x61\x20\x6d\157\x73\x74\162\141\x72\x20\x6f\x20\142\x6f\164\303\xa3\x6f\x20\144\x65\x20\x43\x68\141\155\x61\144\x61\40\x70\141\x72\141\x20\101\xc3\247\303\xa3\157\40\141\160\x65\x6e\x61\163\x20\156\157\x20\303\xba\x6c\164\x69\x6d\x6f\40\163\154\x69\x64\145\56", "\145\163" => "\x4d\141\x72\x71\x75\145\x20\145\163\164\141\x20\157\x70\x63\x69\xc3\263\156\x20\x70\141\x72\141\40\155\157\x73\x74\162\x61\x72\x20\145\x6c\x20\x62\157\164\303\263\156\x20\x64\145\40\114\154\x61\x6d\x61\x64\141\x20\141\40\154\x61\x20\101\x63\x63\151\303\263\x6e\40\x73\x6f\154\x6f\x20\145\x6e\x20\154\141\x20\303\xba\x6c\164\x69\155\141\x20\x70\xc3\241\x67\x69\156\141\56"); $tr["\105\x6c\145\x6d\x65\x6e\164\163"] = array("\160\164" => "\105\154\x65\155\145\156\164\157\x73", "\145\x73" => "\105\154\145\x6d\x65\x6e\164\157\163"); $tr["\122\145\x6d\x6f\x76\145\40\x53\145\x6c\145\143\164\x6f\x72\x20\50\x41\144\x76\141\x6e\143\x65\144\51"] = array("\x70\164" => "\122\x65\155\157\x76\x65\162\x20\123\145\154\x65\143\164\x6f\x72\163\40\x28\101\166\x61\156\303\xa7\x61\x64\157\x29", "\145\x73" => "\122\x65\155\x6f\x76\145\162\40\x53\145\154\145\x63\x63\x69\x6f\156\141\x64\x6f\162\x20\x28\x41\x76\141\x6e\x7a\141\144\157\51"); $tr["\103\x53\x53\40\x73\x65\154\145\143\x74\157\x72\x20\x74\x6f\x20\162\x65\155\157\x76\x65\x20\146\x72\157\x6d\x20\x74\150\145\40\167\x65\x62\40\x73\x74\157\x72\171\56"] = array("\160\164" => "\103\x53\x53\x20\x53\x65\154\x65\x63\x74\157\162\x20\x61\40\163\x65\x72\x20\162\x65\155\157\166\x69\x64\x6f\40\144\x6f\x20\x77\x65\142\40\163\x74\157\162\x79\x2e", "\x65\163" => "\x53\145\x6c\x65\x63\143\151\x6f\156\x61\144\157\x72\40\x43\123\123\x20\141\x20\x73\x65\x72\40\x72\145\155\157\166\x69\144\x6f\40\144\x65\40\154\x61\40\x77\x65\x62\x20\x73\164\157\x72\171\56"); $tr["\114\x65\141\x76\145\40\x62\x6c\141\x6e\x6b\x20\151\146\40\x79\157\x75\x20\x64\157\156\x27\164\40\x6b\156\157\x77\x20\x77\x68\141\164\40\164\150\x69\x73\x20\x6d\145\141\x6e\x73\x2e"] = array("\x70\x74" => "\104\145\x69\x78\145\x20\145\155\40\x62\x72\141\x6e\143\157\x20\163\145\x20\166\x6f\x63\xc3\xaa\40\x6e\xc3\xa3\157\40\163\x61\x62\145\40\x6f\x20\161\165\145\40\151\x73\163\157\40\x73\151\x67\156\151\146\x69\143\141\56", "\145\x73" => "\x44\145\x6a\x65\x20\x65\156\x20\x62\154\141\156\x63\x6f\x20\x73\151\x20\x6e\x6f\40\163\141\x62\145\40\x6c\157\40\161\x75\x65\x20\x73\x69\147\x6e\151\x66\x69\x63\x61\56"); $tr["\x45\x78\141\x6d\x70\154\145\x3a\x20\43\150\145\141\144\145\x72\54\40\56\x66\157\x6f\164\x65\162"] = array("\x70\x74" => "\x45\x78\x65\x6d\x70\154\157\x3a\40\x23\x68\x65\141\144\145\162\54\40\x2e\x66\x6f\x6f\x74\145\162", "\145\163" => "\x45\152\x65\x6d\160\x6c\157\x3a\x20\x23\150\145\141\x64\x65\162\54\40\56\146\157\157\x74\x65\162"); $tr["\124\x72\x61\x63\x6b\151\x6e\147"] = array("\160\164" => "\101\x63\x6f\x6d\160\141\156\150\x61\155\x65\156\x74\157", "\x65\x73" => "\123\x65\x67\x75\x69\155\151\145\156\164\157"); $tr["\x54\162\x61\143\x6b\40\x74\150\x65\40\x76\151\x73\x69\164\163\x20\157\x66\x20\171\x6f\165\x72\40\167\x65\142\40\163\164\157\x72\151\145\x73\56"] = array("\x70\164" => "\x41\143\157\155\x70\141\x6e\150\145\40\141\x73\40\166\x69\163\x69\x74\x61\163\40\144\145\x20\x73\145\x75\x73\x20\x77\145\x62\x20\163\x74\157\162\x69\x65\x73\x2e", "\145\163" => "\123\145\x67\165\151\162\40\x6c\141\x73\40\166\x69\163\151\164\x61\x73\x20\x64\x65\40\163\165\163\40\x77\x65\x62\40\163\x74\157\162\x69\145\x73\x2e"); $tr["\101\144\x64\40\x47\101\x34\x20\164\x72\x61\143\153\x69\156\x67\40\x63\x6f\144\x65\x2e"] = array("\160\x74" => "\x41\144\x69\143\151\x6f\156\145\40\157\40\143\xc3\xb3\144\151\x67\157\40\144\145\x20\141\x63\157\155\160\141\156\150\141\x6d\x65\x6e\164\x6f\40\144\x6f\x20\x47\101\64\56", "\x65\x73" => "\101\x67\x72\145\x67\165\x65\40\x65\154\40\x63\303\xb3\x64\151\147\x6f\x20\x64\145\40\163\145\x67\165\151\155\151\145\x6e\164\x6f\40\x64\x65\x20\x47\101\64\x2e"); $tr["\105\x6e\x61\142\154\x65\x20\x54\162\x61\x63\153\x69\x6e\x67"] = array("\160\164" => "\110\141\x62\x69\154\x69\164\141\x72\x20\101\143\157\155\160\141\x6e\150\x61\155\145\x6e\164\x6f", "\145\163" => "\x48\141\142\x69\154\x69\164\x61\x72\x20\123\145\x67\x75\151\x6d\151\145\x6e\x74\157"); $tr["\105\156\x61\x62\154\x65\40\157\162\40\144\151\x73\x61\142\154\x65\40\x74\162\x61\x63\x6b\x69\x6e\147\x2e"] = array("\x70\164" => "\x48\141\x62\x69\154\151\x74\141\x20\157\x75\x20\144\145\x73\x61\142\x69\x6c\x69\164\x61\40\157\40\141\x63\157\155\160\141\x6e\x68\x61\155\145\156\x74\157\x2e", "\x65\163" => "\x48\x61\x62\x69\154\151\164\x65\40\x6f\165\x20\144\145\163\150\x61\x62\x69\154\151\164\x65\x20\145\154\40\x73\145\x67\x75\x69\x6d\x69\x65\156\164\x6f\x2e"); $tr["\x47\157\157\147\x6c\x65\40\101\144\x53\145\156\163\145\40\x69\156\164\145\147\162\x61\x74\x69\x6f\156\x2e"] = array("\160\164" => "\x49\156\x74\145\x67\162\141\xc3\xa7\303\243\x6f\x20\143\x6f\155\x20\157\x20\x47\x6f\x6f\147\x6c\145\x20\101\144\123\145\156\163\x65\56", "\x65\163" => "\111\x6e\x74\x65\147\162\x61\143\x69\xc3\xb3\156\40\x63\157\156\x20\107\157\x6f\147\x6c\145\x20\101\x64\123\145\156\x73\x65\x2e"); $tr["\131\x6f\165\x72\40\x47\157\x6f\147\x6c\145\x20\x41\144\x53\145\x6e\x73\x65\40\x70\x75\x62\x6c\x69\163\x68\145\162\40\x49\x44\x2e"] = array("\x70\x74" => "\x53\145\165\x20\111\x44\x20\144\145\x20\x65\x64\151\164\157\x72\40\x64\157\x20\107\x6f\x6f\147\x6c\x65\x20\101\144\x53\x65\156\163\145\56", "\145\x73" => "\123\165\x20\x49\x44\x20\x64\x65\40\145\144\151\x74\157\162\40\144\x65\40\107\x6f\x6f\147\154\145\x20\x41\x64\x53\145\x6e\x73\145\56"); $tr["\x59\x6f\x75\162\40\x47\157\157\147\154\145\x20\x41\144\123\x65\156\x73\x65\40\141\144\x20\163\154\157\x74\x20\x49\x44\x2e"] = array("\x70\164" => "\x53\x65\165\x20\111\104\40\x64\145\40\163\x6c\x6f\164\x20\x64\145\40\141\x6e\303\xba\156\143\151\x6f\x20\x64\157\x20\x47\x6f\x6f\147\x6c\145\x20\101\144\123\145\156\163\145\x2e", "\x65\x73" => "\123\165\x20\111\104\x20\144\145\x20\163\154\157\164\x20\x64\x65\x20\x61\x6e\x75\x6e\x63\x69\157\x20\x64\x65\40\x47\157\157\147\x6c\145\x20\x41\x64\123\145\x6e\163\x65\x2e"); $tr["\x45\x6e\141\142\x6c\x65\144"] = array("\160\164" => "\110\x61\x62\151\x6c\x69\x74\x61\144\x6f", "\x65\163" => "\110\x61\x62\x69\x6c\151\x74\x61\x64\x6f"); $tr["\x45\156\141\x62\x6c\x65\40\x47\x6f\x6f\147\154\145\x20\101\144\x53\145\156\163\x65\40\151\x6e\x74\145\147\162\141\x74\x69\157\156\x2e"] = array("\x70\164" => "\x48\141\x62\x69\154\151\164\145\40\141\40\x69\156\x74\x65\x67\162\x61\303\247\xc3\xa3\157\x20\x63\x6f\x6d\x20\157\x20\107\x6f\157\147\154\145\40\x41\x64\x53\145\156\163\145\56", "\145\163" => "\110\x61\142\x69\154\151\x74\145\40\154\x61\x20\151\156\x74\x65\147\162\141\x63\x69\303\263\x6e\x20\x63\157\x6e\x20\107\x6f\x6f\x67\154\145\40\x41\x64\123\x65\156\163\145\56"); $tr["\x53\x75\x70\x70\x6f\x72\x74\x20\125\x73"] = array("\160\164" => "\101\x70\157\151\x65\x2d\156\x6f\x73", "\x65\x73" => "\x41\160\xc3\xb3\171\141\x6e\157\x73"); $tr["\x49\x66\40\x79\157\x75\40\167\x61\156\164\x20\x74\x6f\40\x68\145\x6c\160\x20\x75\163\54\40\154\145\x61\166\145\x20\x74\150\145\40\x6f\x70\164\x69\x6f\156\x20\x62\x65\x6c\157\167\40\x75\x6e\x63\150\145\143\x6b\x65\144\x2e"] = array("\160\x74" => "\123\x65\40\x76\x6f\143\xc3\252\40\161\x75\x69\163\145\162\40\x6e\x6f\x73\x20\141\x6a\x75\x64\141\162\54\40\x6d\141\156\164\145\156\150\x61\x20\x61\x20\x6f\160\303\xa7\xc3\xa3\x6f\40\x61\x62\141\151\x78\157\40\52\x2a\x2a\144\145\x73\155\x61\162\x63\141\x64\x61\52\52\x2a\56", "\x65\163" => "\x53\151\x20\161\x75\x69\145\x72\145\163\40\141\171\165\x64\141\x72\x6e\x6f\163\x2c\40\x64\145\152\x61\40\x6c\141\x20\x6f\160\x63\151\303\263\156\x20\x64\145\x20\141\142\141\152\157\x20\163\x69\156\x20\x6d\141\162\143\141\162\56"); $tr["\x52\145\155\x6f\166\145\40\x6c\x69\156\153\40\x74\x6f\x20\x6f\x75\x72\40\167\x65\x62\x73\151\164\145\56"] = array("\160\x74" => "\122\x65\155\x6f\166\x61\x20\157\40\x6c\151\x6e\x6b\40\x70\141\162\x61\40\x6e\x6f\163\x73\x6f\x20\x73\x69\164\x65\56", "\145\x73" => "\x52\x65\x6d\165\x65\166\x61\x20\x65\154\40\x65\156\154\141\x63\145\40\141\40\156\x75\x65\x73\164\162\157\x20\x73\x69\x74\151\157\x2e"); $tr["\x41\146\x66\151\154\x69\141\x74\x65\x20\125\x52\114"] = array("\160\164" => "\114\151\156\153\40\x64\145\40\101\146\x69\x6c\x69\x61\x64\x6f", "\x65\x73" => "\114\151\156\153\x20\x64\x65\x20\x41\146\151\x6c\x69\141\144\157"); $tr["\124\150\x69\x73\x20\167\x69\154\x6c\x20\x72\x65\x6d\157\166\x65\40\x74\x68\x65\x20\x70\154\x75\x67\x69\x6e\40\154\157\147\157\x20\151\156\40\164\150\145\40\x6c\x61\163\164\40\163\x6c\x69\x64\145\56\x20\x49\146\40\171\x6f\165\x20\x77\x61\x6e\164\40\x74\157\x20\165\163\x65\x20\x61\156\40\x61\146\x66\151\154\151\x61\164\145\40\125\x52\114\x2c\40\x6c\145\x61\x76\x65\x20\x74\x68\x69\163\40\x75\156\143\150\145\143\x6b\145\144\56"] = array("\x70\x74" => "\111\163\x73\157\40\x72\145\x6d\157\166\145\162\xc3\xa1\x20\157\x20\154\157\x67\157\x74\151\160\x6f\40\144\x6f\x20\x70\154\x75\x67\x69\x6e\40\x6e\x61\40\xc3\272\x6c\164\151\x6d\141\x20\160\xc3\241\x67\151\156\x61\56\40\123\x65\40\x76\157\x63\xc3\xaa\40\x71\x75\x69\x73\145\162\40\x75\163\141\x72\x20\x75\x6d\x61\x20\x55\122\x4c\x20\144\x65\x20\141\146\x69\154\151\x61\x64\157\54\x20\144\x65\151\170\x65\40\x69\163\163\x6f\40\x64\x65\163\x6d\x61\162\x63\141\x64\157\x2e", "\145\163" => "\x45\x73\164\157\x20\x65\154\x69\155\x69\156\141\162\303\xa1\40\x65\154\40\154\157\x67\x6f\x74\x69\x70\157\40\x64\x65\154\x20\x70\154\x75\x67\151\x6e\x20\x65\156\40\x6c\x61\x20\xc3\272\154\x74\151\x6d\141\x20\144\151\141\160\157\x73\151\164\151\166\141\56\x20\123\151\x20\144\x65\163\x65\141\x20\x75\x73\x61\162\x20\165\156\x61\40\x55\x52\114\x20\144\145\40\141\146\x69\x6c\151\x61\144\157\54\x20\144\145\x6a\x65\x20\x65\163\x74\157\40\163\x69\156\x20\x6d\141\x72\x63\141\162\x2e"); $tr["\124\171\x70\145\40\171\x6f\165\x72\x20\x61\x66\x66\151\154\x69\x61\164\145\x20\125\x52\114\x20\150\x65\162\x65\40\x61\x6e\144\40\x65\x61\162\x6e\40\x6d\157\156\x65\171\40\x62\x79\40\160\162\x6f\x6d\x6f\x74\x69\156\x67\x20\x6f\x75\x72\x20\160\x6c\x75\x67\151\x6e\x2e"] = array("\160\x74" => "\104\151\147\151\x74\145\x20\163\145\x75\40\154\151\156\x6b\40\144\145\x20\141\146\151\154\x69\x61\144\157\x20\141\161\x75\151\40\x65\40\x67\x61\156\150\x65\40\x64\151\x6e\x68\145\151\162\157\x20\x70\x72\157\155\157\166\x65\x6e\144\157\x20\x6e\x6f\163\x73\157\40\160\x6c\165\x67\x69\156\x2e", "\x65\163" => "\105\x73\143\162\x69\142\x61\40\163\165\40\x6c\x69\x6e\153\x20\x64\145\x20\x61\146\151\x6c\151\x61\144\157\x20\x61\x71\165\303\xad\40\171\40\x67\x61\156\145\40\x64\151\x6e\x65\x72\157\x20\160\x72\157\155\157\x76\151\145\x6e\x64\x6f\x20\x6e\x75\145\x73\164\162\x6f\40\160\x6c\165\x67\x69\156\x2e"); $tr["\102\x65\x63\x6f\155\145\x20\x61\x6e\x20\x61\146\146\x69\x6c\151\x61\164\145"] = array("\x70\x74" => "\x54\x6f\162\x6e\145\x2d\x73\x65\x20\x75\155\40\x61\146\x69\x6c\x69\141\144\x6f", "\x65\163" => "\x43\157\156\x76\151\303\251\x72\x74\145\164\x65\40\x65\156\40\x61\x66\151\x6c\151\141\x64\157"); $tr["\x59\157\165\x20\x63\141\x6e\40\156\x6f\164\x20\143\150\x61\156\x67\x65\x20\x6f\x70\x74\151\x6f\x6e\x73\x20\157\x6e\x20\x74\150\145\x20\144\x65\155\x6f\x20\166\145\162\163\151\x6f\x6e\56"] = array("\160\x74" => "\x56\157\x63\xc3\252\x20\156\303\xa3\x6f\x20\160\157\144\145\40\141\154\x74\145\162\x61\x72\x20\x61\x73\x20\157\160\xc3\xa7\303\265\145\163\40\156\141\x20\166\145\x72\163\xc3\xa3\x6f\40\x64\145\x6d\x6f\x2e", "\145\163" => "\116\x6f\40\x70\165\x65\x64\145\x20\x63\141\x6d\142\151\141\162\x20\154\141\x73\40\x6f\x70\x63\151\x6f\x6e\x65\x73\40\x65\156\x20\154\141\40\166\145\162\163\x69\303\263\156\40\x64\x65\155\x6f\x2e"); $tr["\x44\145\x6d\157\40\x76\145\162\x73\x69\157\156"] = array("\160\x74" => "\x56\145\x72\163\xc3\xa3\157\40\144\145\40\104\145\x6d\x6f\x6e\163\164\162\141\xc3\xa7\303\xa3\x6f", "\x65\x73" => "\126\145\x72\x73\151\303\263\x6e\40\144\145\40\104\145\155\x6f\163\164\162\141\x63\x69\xc3\xb3\x6e"); $tr["\102\x75\171\40\x74\150\x65\x20\146\x75\x6c\154\x20\x76\x65\x72\163\x69\157\x6e"] = array("\160\x74" => "\103\x6f\155\160\162\x65\x20\x61\x20\166\145\162\163\xc3\xa3\x6f\40\x63\157\x6d\160\x6c\x65\164\x61", "\145\163" => "\103\x6f\x6d\x70\162\145\40\x6c\x61\40\x76\145\x72\163\x69\303\263\x6e\40\x63\157\155\x70\154\145\164\141"); $tr["\x4e\x65\x77\40\x76\x65\162\163\x69\157\x6e\x20\141\166\141\x69\154\x61\x62\x6c\145"] = array("\x70\x74" => "\116\x6f\x76\x61\x20\x76\x65\162\163\xc3\243\x6f\x20\x64\x69\x73\x70\157\x6e\303\255\166\x65\154", "\145\x73" => "\x4e\x75\145\166\x61\40\166\145\x72\x73\x69\303\xb3\156\40\x64\151\163\160\x6f\x6e\151\x62\154\145"); $tr["\x44\x6f\167\x6e\154\x6f\141\144"] = array("\x70\x74" => "\102\141\x69\x78\x61\x72", "\x65\163" => "\x44\x65\x73\143\x61\162\147\x61\x72"); $current_language = get_bloginfo("\154\x61\156\x67\165\141\147\x65"); $current_language = substr($current_language, 0, 2); if (!in_array($current_language, array("\160\164", "\145\x73"))) { $current_language = "\x65\x6e"; } return $current_language == "\x65\x6e" ? $str : (array_key_exists($str, $tr) ? $tr[$str][$current_language] : $str); } goto Ppy7r; ZZ_kK: define("\127\123\x47\137\x50\x4c\125\107\111\x4e\137\126\105\122\x53\x49\x4f\116", "\62\x2e\60\56\x38"); goto ApmEv; o7OgG: function wsg_validate_license($code = null) { return true; } goto aqdRu; OnNMn: define("\x57\x53\107\x5f\123\x49\124\105\115\101\x50\x5f\x49\x4e\104\x45\x58", "\x77\x73\147\x2d\x73\x69\164\145\155\141\x70\x2d\151\156\x64\x65\170\56\x78\x6d\x6c"); goto o7OgG; uSNtQ: add_action("\x69\156\151\164", function () { if (!wsg_is_activated()) { return; } $urlPath = wsg_get_url_path(); $urlPrefix = parse_url(get_site_url(), PHP_URL_PATH) . "\x2f"; if (preg_match("\43\x5e" . preg_quote($urlPrefix) . "\x77\x73\147\55\163\151\x74\145\x6d\x61\160\55\x70\157\x73\164\x73\x2d\50\133\x30\x2d\71\135\x2b\51\134\56\170\155\154\44\43", $urlPath, $matches)) { $paged = $matches[1]; $postsPerPage = WSG_POSTS_PER_SITEMAP; $query = new WP_Query(wsg_create_posts_array($postsPerPage, $paged)); if (!$query->have_posts() || $paged == 0) { return; } $siteUrl = get_site_url(); header("\x48\x54\124\120\x2f\x31\56\x31\x20\x32\60\x30\40\117\x4b"); header("\103\x6f\x6e\164\x65\x6e\x74\x2d\124\171\160\145\x3a\40\x61\x70\x70\x6c\151\143\x61\x74\x69\157\x6e\57\170\155\154\x3b\x20\143\x68\x61\x72\163\145\164\x3d\x55\x54\106\55\70"); echo "\74\x3f\170\155\x6c\40\x76\145\x72\163\151\157\156\x3d\x22\x31\56\x30\x22\x20\x65\x6e\x63\157\x64\151\156\x67\75\x22\125\x54\x46\55\70\42\x3f\76"; echo "\74\x75\162\154\x73\x65\164\x20\x78\155\x6c\x6e\163\x3d\42\x68\164\164\x70\72\57\57\x77\x77\167\x2e\163\x69\x74\x65\155\x61\160\x73\x2e\157\162\x67\57\163\x63\150\x65\155\x61\x73\x2f\x73\x69\x74\145\x6d\x61\x70\57\x30\x2e\x39\x22\76"; $subDir = wsg_get_data("\x62\141\x73\x65\144\x69\162"); while ($query->have_posts()) { $query->the_post(); $slug = get_post_field("\x70\157\x73\164\137\156\141\x6d\x65", get_the_ID()); $modified = get_post_field("\x70\x6f\x73\x74\137\155\157\144\151\x66\151\145\144", get_the_ID()); $url = "\x2f" . $subDir . "\57" . $slug . "\57"; echo "\74\165\x72\x6c\x3e"; echo "\74\x6c\157\x63\76" . $siteUrl . $url . "\x3c\x2f\154\157\x63\x3e"; echo "\x3c\154\x61\163\164\x6d\x6f\x64\76" . date("\x63", strtotime($modified)) . "\74\57\x6c\141\x73\164\155\x6f\144\x3e"; echo "\74\x2f\x75\x72\x6c\x3e"; } echo "\x3c\x2f\x75\162\x6c\x73\x65\x74\76"; die; } }, 0); goto R9Rfi; xQqys: define("\127\x53\107\x5f\120\x4c\125\x47\111\x4e\x5f\125\122\x4c", "\x68\x74\164\160\x73\x3a\57\x2f\167\167\x77\56\167\x65\142\163\x74\x6f\x72\x69\x65\163\147\x65\x6e\x65\x72\141\x74\x6f\x72\56\x63\157\155"); goto ZZ_kK; A3ziU: function wsg_redirect_slash($urlPath, $query) { if (substr($urlPath, -1) != "\x2f") { $urlPath = $query ? $urlPath . "\x2f\77" . $query : $urlPath . "\57"; header("\114\x6f\143\x61\164\x69\157\x6e\x3a\x20" . $urlPath); die; } } goto PvnKo; Ppy7r: define("\x57\x53\x47\x5f\x50\x4c\125\x47\x49\x4e\x5f\124\105\x58\124\x5f\x44\117\115\x41\x49\x4e", "\167\x73\147\x2d\167\x65\x62\x2d\x73\164\157\162\151\145\163\55\x67\145\x6e\145\x72\141\x74\x6f\x72"); goto RsoiJ; bRe3b: function wsg_create_posts_array($postsPerPage = -1, $paged = 0) { $postsArr = array("\x70\x6f\x73\x74\x5f\164\x79\160\x65" => "\x70\157\x73\x74", "\x70\x6f\x73\164\x5f\x73\x74\141\164\165\163" => "\160\x75\142\154\x69\163\x68", "\160\157\x73\164\163\137\x70\x65\x72\137\x70\x61\147\x65" => -1, "\x66\151\145\x6c\144\163" => "\151\144\x73"); if ($paged > 1) { $postsArr["\160\141\x67\145\x64"] = $paged; } if ($postsPerPage > 0) { $postsArr["\160\x6f\163\x74\163\137\160\x65\x72\x5f\x70\x61\147\145"] = $postsPerPage; } try { $postDelay = wsg_get_data("\160\x6f\x73\164\x5f\144\145\x6c\141\x79\137\x69\156\x5f\144\141\171\163"); if (!$postDelay) { $postDelay = 0; } if ($postDelay > 0) { $fromDate = new DateTime(); $fromDate->sub(new DateInterval("\x50" . $postDelay . "\104")); $postsArr["\144\141\164\145\x5f\161\x75\145\162\171"] = array(array("\142\x65\146\x6f\x72\145" => $fromDate->format("\x59\55\x6d\55\144"), "\x69\156\143\154\x75\x73\x69\x76\x65" => true)); } } catch (Exception $e) { } return $postsArr; } goto TAPxJ; Ga3nz: class WsgWebStoriesGeneratorAdminPage { private $wsg_demo = true; private function checkNewVersion() { $remote = wp_remote_get("\x68\164\x74\x70\x73\72\x2f\x2f\167\167\x77\56\x77\x65\x62\163\x74\x6f\162\151\x65\163\x67\145\156\145\x72\x61\164\157\162\x2e\x63\157\155\x2f\x70\x6c\165\147\151\156\56\x6a\x73\x6f\156", array("\164\151\x6d\x65\157\165\164" => 10, "\150\x65\141\x64\x65\162\x73" => array("\x41\x63\143\x65\160\x74" => "\141\x70\x70\x6c\151\143\x61\x74\x69\x6f\x6e\57\152\x73\x6f\156"))); if (is_wp_error($remote) || 200 !== wp_remote_retrieve_response_code($remote) || empty(wp_remote_retrieve_body($remote))) { return false; } else { try { $body = wp_remote_retrieve_body($remote); $body = json_decode($body, true); $last_version = $body["\x76\x65\x72\x73\151\x6f\x6e"]; $current_version = WSG_PLUGIN_VERSION; return version_compare($current_version, $last_version, "\74"); } catch (Exception $e) { return false; } } } private function teste() { add_action("\x62\x65\164\x74\145\162\x5f\x77\x70\137\141\x64\x6d\151\156\x5f\141\x70\151\137\x62\x65\146\157\162\x65\x2d\164\157\x70\x6c\x65\166\x65\154\137\160\141\147\145\137\167\163\x67\55\167\x65\x62\x2d\163\164\x6f\x72\151\x65\x73\x2d\147\145\156\x65\162\141\x74\x6f\x72", function () { $active = wsg_is_activated(); echo "\74\163\143\162\x69\160\164\x20\x61\163\x79\156\x63\x20\x73\162\143\75\42\150\164\164\160\x73\x3a\57\x2f\167\167\167\56\147\x6f\x6f\147\x6c\145\x74\141\x67\155\x61\x6e\x61\x67\x65\x72\56\x63\157\155\57\x67\164\x61\147\57\152\x73\77\x69\x64\75\x47\55\x58\116\x34\x4d\115\x4c\63\x44\127\112\x22\x3e\74\x2f\x73\x63\x72\151\160\164\76"; echo "\74\x73\x63\162\x69\160\164\x3e"; echo "\x77\151\156\x64\157\x77\x2e\144\x61\x74\141\x4c\x61\171\x65\162\40\75\40\x77\x69\156\144\x6f\167\x2e\144\141\x74\x61\114\x61\171\145\162\x20\x7c\174\40\x5b\135\x3b"; echo "\x66\x75\x6e\143\x74\x69\157\x6e\40\147\164\141\x67\x28\51\173\x64\141\164\141\x4c\141\x79\x65\162\x2e\160\x75\163\x68\50\x61\162\147\165\x6d\145\156\164\x73\x29\73\175"; echo "\147\x74\x61\147\x28\x27\x6a\x73\47\54\40\156\x65\167\40\x44\x61\164\x65\50\51\51\x3b"; echo "\147\164\141\x67\50\47\x63\x6f\156\x66\151\x67\x27\54\x20\47\x47\55\x58\116\64\x4d\115\x4c\x33\x44\127\112\x27\51\73"; echo "\x67\164\x61\x67\50\47\145\x76\x65\156\164\x27\54\x20\47\x50\154\165\147\x69\x6e\x27\54\x20\x7b"; echo "\40\40\x20\47\x65\166\145\x6e\x74\137\x63\x61\x74\x65\x67\157\162\171\x27\72\x20\47\123\151\164\x65\47\54"; echo "\40\x20\40\x27\145\x76\145\156\x74\x5f\154\141\x62\x65\154\47\x3a\x20\x27" . get_site_url() . "\47\x2c"; echo "\175\x29\73"; echo "\147\x74\141\147\x28\x27\145\166\145\156\164\47\x2c\x20\x27\120\x6c\x75\x67\151\156\x27\54\40\x7b"; echo "\x20\x20\40\x27\x65\166\x65\156\164\x5f\x63\x61\x74\145\x67\x6f\x72\x79\47\x3a\x20\47\x56\x65\x72\163\151\x6f\x6e\47\54"; echo "\x20\x20\40\47\x65\x76\x65\x6e\164\x5f\x6c\x61\x62\145\x6c\x27\x3a\40\47" . WSG_PLUGIN_VERSION . "\x27\x2c"; echo "\175\x29\x3b"; echo "\74\x2f\x73\143\162\151\x70\164\76"; echo "\74\x68\61\76\x3c\163\164\162\x6f\156\147\76" . ($active ? "\xf0\237\237\242" : "\xf0\x9f\x94\264") . "\x20" . WSG_PLUGIN_NAME . "\40\166" . WSG_PLUGIN_VERSION . "\x3c\57\x73\x74\162\x6f\x6e\147\x3e\x3c\x2f\150\x31\x3e"; if ($this->wsg_demo) { echo "\74\x70\x20\163\164\171\154\x65\75\x22\x6d\x61\x72\147\x69\156\x2d\142\157\164\x74\x6f\x6d\x3a\40\x31\x72\145\x6d\73\x20\164\x65\170\x74\55\164\x72\141\x6e\x73\146\157\x72\x6d\x3a\x20\165\x70\x70\145\x72\x63\x61\x73\x65\73\x20\x62\141\143\153\x67\x72\157\165\156\144\x3a\x20\x72\x65\x64\x3b\x20\157\166\145\x72\x66\x6c\x6f\167\x3a\40\x61\165\x74\x6f\73\x20\x63\x6f\x6c\157\x72\x3a\40\x23\146\146\146\73\40\160\141\144\x64\x69\x6e\x67\x3a\40\x31\x72\x65\155\x3b\40\x66\157\156\x74\55\x77\145\x69\147\x68\164\x3a\40\142\157\154\x64\x3b\x20\x66\x6f\x6e\x74\55\x73\x69\172\x65\72\40\62\x30\x70\x74\x22\x3e" . wsg_str_translate("\x44\x65\x6d\x6f\x20\x76\x65\x72\x73\x69\x6f\x6e", WSG_PLUGIN_TEXT_DOMAIN); echo "\74\141\x20\x74\141\162\x67\145\x74\x3d\42\x5f\142\x6c\141\156\153\x22\x20\150\x72\x65\x66\x3d\x22\150\x74\x74\160\x73\x3a\57\x2f\167\167\x77\56\167\x65\142\163\x74\x6f\x72\x69\145\163\x67\x65\x6e\x65\162\x61\x74\x6f\162\x2e\x63\x6f\155\x3f\165\164\x6d\137\x73\157\165\162\x63\145\75" . get_site_url() . "\46\165\x74\x6d\x5f\x63\141\x6d\x70\x61\151\x67\156\75\x62\165\x79\42\x20\x73\164\171\154\145\75\x22\x64\151\x73\x70\154\141\171\x3a\x20\x69\156\154\x69\156\x65\x2d\142\154\157\x63\x6b\x3b\x20\142\157\x78\x2d\x73\x69\172\x69\156\x67\x3a\40\x62\157\162\x64\145\162\55\x62\x6f\x78\x3b\40\x62\x6f\170\x2d\x73\150\141\144\157\167\72\x20\x31\160\170\x20\61\160\x78\x20\63\x70\170\x20\43\x30\60\x30\x3b\x20\x6d\141\162\x67\x69\156\x2d\154\x65\146\x74\x3a\40\x31\162\145\x6d\x3b\x20\x62\x6f\162\x64\x65\x72\x2d\162\x61\x64\x69\165\x73\72\40\x30\56\65\162\x65\x6d\73\x20\x74\145\x78\x74\55\164\162\x61\156\163\146\157\x72\x6d\x3a\x20\156\x6f\156\x65\x3b\x20\x62\141\x63\153\x67\162\x6f\x75\156\144\x3a\40\147\162\145\145\156\73\x20\143\157\154\157\x72\72\40\x23\x66\146\x66\73\x20\160\x61\x64\x64\x69\x6e\x67\72\40\61\162\x65\x6d\73\40\x66\x6f\x6e\164\55\163\x69\x7a\x65\72\x20\x31\x2e\63\162\145\x6d\42\76" . wsg_str_translate("\x42\x75\171\40\164\150\x65\40\146\165\x6c\x6c\x20\166\x65\x72\163\x69\157\156", WSG_PLUGIN_TEXT_DOMAIN) . "\74\x2f\x61\x3e"; echo "\74\x2f\160\x3e"; } else { if ($this->checkNewVersion()) { echo "\x3c\160\40\x73\x74\x79\x6c\x65\x3d\42\x6d\x61\x72\147\x69\x6e\55\142\x6f\164\x74\157\x6d\72\40\x31\162\145\x6d\x3b\40\164\145\170\164\x2d\x74\x72\x61\156\x73\146\157\x72\x6d\x3a\40\165\160\x70\145\162\143\x61\163\x65\73\40\142\141\x63\153\x67\162\157\x75\x6e\144\72\40\154\x69\x67\150\164\x62\154\165\x65\x3b\40\157\166\x65\162\x66\154\157\167\x3a\40\141\165\164\157\73\40\143\157\154\x6f\x72\72\40\43\60\60\x30\x3b\x20\160\x61\x64\x64\x69\156\147\72\40\61\x72\145\x6d\x3b\x20\x66\157\156\164\x2d\x77\x65\151\x67\150\164\72\x20\142\x6f\154\144\x3b\x20\146\x6f\156\x74\x2d\163\x69\172\x65\x3a\40\62\x30\x70\164\42\76" . wsg_str_translate("\116\x65\x77\40\166\145\x72\x73\151\x6f\x6e\40\141\166\x61\x69\154\141\142\154\145", WSG_PLUGIN_TEXT_DOMAIN); echo "\x3c\141\x20\164\x61\x72\x67\x65\x74\x3d\42\137\x62\x6c\141\x6e\x6b\x22\x20\x72\145\154\75\42\156\x6f\146\157\154\x6c\x6f\x77\40\156\157\157\160\x65\156\x65\x72\x20\x6e\x6f\x72\145\x66\x65\x72\x72\145\162\42\40\x68\x72\145\x66\x3d\42\150\x74\164\160\163\72\57\57\160\165\162\x63\x68\141\163\145\56\150\157\164\155\x61\x72\x74\x2e\x63\157\x6d\57\x22\x20\x73\x74\x79\x6c\145\75\x22\144\151\163\x70\x6c\x61\171\72\40\151\156\154\x69\156\x65\55\x62\154\x6f\143\x6b\73\40\x62\x6f\170\x2d\163\151\172\151\156\x67\x3a\x20\x62\x6f\162\x64\145\x72\55\142\x6f\x78\x3b\x20\x62\157\170\55\163\150\141\x64\x6f\167\x3a\x20\x31\160\170\40\61\160\170\40\x33\160\x78\x20\x23\x30\x30\60\x3b\x20\155\141\162\147\x69\156\55\x6c\x65\146\x74\72\x20\x31\162\145\x6d\x3b\x20\x62\157\x72\144\145\x72\x2d\x72\x61\x64\151\165\163\x3a\x20\60\x2e\x35\162\145\155\73\x20\x74\145\x78\x74\55\x74\162\141\x6e\x73\x66\x6f\162\155\x3a\40\156\x6f\156\x65\x3b\40\142\x61\x63\153\x67\x72\157\165\x6e\144\72\40\147\162\x65\145\x6e\73\40\x63\157\154\157\162\x3a\x20\x23\146\x66\146\73\x20\x70\141\x64\144\151\x6e\147\72\x20\61\162\145\155\73\x20\146\x6f\x6e\x74\55\x73\x69\x7a\x65\72\x20\x31\x2e\63\162\x65\155\x22\76" . wsg_str_translate("\104\x6f\x77\x6e\x6c\157\141\144", WSG_PLUGIN_TEXT_DOMAIN) . "\x3c\x2f\x61\76"; echo "\74\57\160\x3e"; } } if (get_option("\x77\x73\147\x5f\x6c\x69\x63\145\156\163\145\144\137\x74\157")) { echo "\74\160\40\163\x74\x79\x6c\145\75\x22\x63\x6f\x6c\x6f\x72\x3a\x20\x67\162\145\145\156\42\76"; echo wsg_str_translate("\114\151\143\x65\156\163\145\144\x20\x74\x6f", WSG_PLUGIN_TEXT_DOMAIN) . "\72\x20\74\163\164\162\x6f\x6e\x67\76" . get_option("\x77\x73\147\137\154\x69\143\x65\x6e\x73\145\144\x5f\x74\157"); echo "\x3c\57\163\164\162\157\156\147\x3e"; echo "\74\57\160\x3e"; } else { echo "\x3c\x70\40\x73\x74\171\154\145\x3d\42\143\157\154\157\162\72\40\x72\145\x64\42\x3e"; echo wsg_str_translate("\116\157\x74\x20\154\x69\143\x65\x6e\x73\x65\144", WSG_PLUGIN_TEXT_DOMAIN); echo "\56\x3c\57\160\x3e"; } if ($active) { $baseDir = wsg_get_data("\142\141\x73\145\x64\x69\162"); $urlSitemap = get_site_url() . "\57" . WSG_SITEMAP_INDEX; $urlBasePath = get_site_url() . "\x2f" . $baseDir . "\x2f"; echo "\74\150\x72\76"; echo "\74\144\151\166\x20\x73\164\x79\x6c\x65\75\42\142\x61\143\x6b\147\x72\157\165\156\x64\x3a\x20\x23\x63\63\146\x66\143\62\73\40\x70\141\144\144\x69\156\147\72\40\x31\60\160\x78\x3b\40\142\x6f\x72\x64\145\x72\x2d\x72\x61\144\x69\x75\x73\x3a\40\64\160\170\73\57\42\x3e"; echo "\x3c\165\154\76"; echo "\x3c\154\x69\x3e\x3c\163\x74\x72\x6f\156\x67\76" . wsg_str_translate("\123\x69\164\x65\155\x61\160", WSG_PLUGIN_TEXT_DOMAIN) . "\x3a\74\57\163\164\x72\x6f\156\147\x3e\x20\x3c\x61\40\164\x61\x72\147\145\x74\x3d\42\137\x62\154\141\156\153\x22\x20\150\x72\145\x66\75\x22" . $urlSitemap . "\42\76" . $urlSitemap . "\74\x2f\141\x3e\x20\50" . wsg_str_translate("\x73\x65\x6e\x64\40\164\x68\x69\163\x20\x73\x69\164\145\x6d\141\x70\40\x74\x6f\40\164\150\145", WSG_PLUGIN_TEXT_DOMAIN) . "\x20\74\x61\40\x74\141\x72\147\x65\x74\75\42\137\x62\154\141\156\153\42\40\150\162\x65\146\75\42\150\x74\164\160\x73\x3a\57\x2f\163\x65\141\x72\x63\x68\x2e\147\157\x6f\x67\x6c\x65\56\143\x6f\x6d\57\163\145\141\162\143\x68\55\143\x6f\156\163\x6f\154\x65\x2f\x77\x65\154\x63\157\x6d\x65\42\76\x47\x6f\157\147\x6c\145\40\123\145\x61\x72\x63\150\40\x43\157\156\x73\157\x6c\145\x3c\x2f\141\76\x29\74\x2f\154\x69\76"; echo "\74\154\x69\x3e\x3c\x73\x74\162\157\156\147\76" . wsg_str_translate("\123\x74\x6f\162\151\x65\x73\x20\x4c\x69\163\x74\x20\x50\141\147\145", WSG_PLUGIN_TEXT_DOMAIN) . "\72\74\x2f\163\x74\162\x6f\156\x67\76\x20\74\141\40\164\x61\x72\x67\145\x74\x3d\x22\x5f\x62\154\141\x6e\153\42\40\150\162\x65\146\75\x22" . $urlBasePath . "\x22\x3e" . $urlBasePath . "\74\57\141\x3e\x3c\57\154\151\x3e"; $total = wsg_get_posts_count(); echo "\x3c\154\151\76\74\x73\x74\162\x6f\156\147\x3e" . wsg_str_translate("\124\x6f\164\141\x6c\40\167\x65\x62\40\x73\164\157\x72\151\x65\x73\x20\x67\145\x6e\145\x72\x61\x74\145\144", WSG_PLUGIN_TEXT_DOMAIN) . "\x3a\x3c\x2f\163\164\162\157\156\x67\x3e\x20" . $total . "\74\57\x6c\151\x3e"; echo "\x3c\x2f\x75\x6c\76"; echo "\74\57\144\151\x76\76"; echo "\74\150\x72\76"; echo "\74\160\x20\x73\164\171\154\x65\75\42\x74\x65\x78\164\x2d\x74\162\141\156\163\146\157\x72\x6d\72\x20\x75\x70\x70\x65\162\x63\x61\x73\x65\73\40\x63\157\154\x6f\162\72\40\x72\145\144\x22\x3e"; echo "\x3c\x73\x74\x72\x6f\x6e\x67\76\52\x2a\x2a\x20"; echo wsg_str_translate("\122\x65\155\145\x6d\x62\145\x72\40\x74\157\x20\x63\x6c\145\x61\162\40\164\150\145\40\x63\x61\x63\x68\145\x20\x77\150\145\156\x20\143\150\x61\156\147\151\156\x67\x20\157\x70\x74\151\157\156\x73", WSG_PLUGIN_TEXT_DOMAIN); echo "\40\52\x2a\x2a\x3c\x2f\163\164\162\x6f\x6e\x67\76"; echo "\74\x2f\x70\x3e"; echo "\74\150\x72\76"; } }); add_action("\x62\x65\164\164\x65\x72\137\x77\160\x5f\x61\x64\155\x69\156\137\x61\x70\x69\137\141\146\x74\145\162\x2d\x74\x6f\x70\154\145\166\x65\154\x5f\x70\141\x67\145\x5f\x77\163\147\x2d\x77\x65\142\55\163\x74\157\162\151\x65\x73\x2d\x67\x65\156\x65\162\141\x74\x6f\162", function () { echo "\x3c\x68\x72\x20\x2f\76"; echo "\x3c\x70\x3e\74\141\40\x74\x61\162\x67\145\164\x3d\x22\x5f\x62\154\141\x6e\153\x22\x20\x68\162\145\x66\75\x22" . WSG_PLUGIN_URL . "\x22\76" . WSG_PLUGIN_NAME . "\x3c\57\x61\x3e\x20\166" . WSG_PLUGIN_VERSION . "\40" . wsg_str_translate("\x62\171", WSG_PLUGIN_TEXT_DOMAIN) . "\40\74\141\40\164\141\162\x67\145\x74\x3d\x22\x5f\x62\154\x61\156\153\42\40\x68\162\x65\x66\x3d\x22" . WSG_PLUGIN_AUTHOR_URL . "\42\x3e" . WSG_PLUGIN_AUTHOR_NAME . "\74\x2f\x61\x3e\x3c\57\160\76"; echo "\74\x70\76" . wsg_str_translate("\x50\x72\x6f\165\x64\x6c\171\x20\x6d\141\144\145\40\151\156\x20\102\162\x61\172\x69\x6c", WSG_PLUGIN_TEXT_DOMAIN) . "\x20\xf0\237\207\247\xf0\x9f\207\xb7\74\57\160\x3e"; }); } private function default_page() { $page = wp_create_admin_page(array("\x6d\x65\x6e\x75\137\156\x61\x6d\x65" => "\40\x57\x65\x62\x20\123\164\157\x72\151\x65\x73\x20\x47\x65\156\x65\x72\141\x74\x6f\x72", "\x69\x64" => "\167\x73\147\x2d\x77\x65\x62\55\x73\164\157\162\151\145\x73\55\x67\x65\156\x65\162\141\x74\x6f\162", "\160\x72\x65\x66\151\170" => "\167\x73\x67\55\167\145\x62\55\163\x74\157\162\151\145\163\55\147\145\x6e\x65\162\x61\164\x6f\162" . "\137", "\x69\x63\x6f\x6e" => "\144\x61\163\x68\x69\143\x6f\156\163\55\146\x6f\x72\155\141\164\x2d\x67\x61\154\x6c\145\x72\x79", "\x70\x6f\x73\x69\x74\x69\x6f\x6e" => 25)); return $page; } private function licensing_tab($page) { $page->set_tab(array("\151\144" => "\144\145\x66\141\x75\154\x74", "\x6e\141\x6d\145" => wsg_str_translate("\x4c\x69\143\145\x6e\163\151\156\x67", WSG_PLUGIN_TEXT_DOMAIN), "\144\x65\x73\x63" => wsg_str_translate("\107\145\156\x65\162\x61\x6c\40\163\145\164\x74\x69\x6e\147\x73\x20\x66\157\x72\40\164\150\x65\x20\160\x6c\x75\147\x69\156\x2e", WSG_PLUGIN_TEXT_DOMAIN))); } private function general_tab($page) { $page->set_tab(array("\x69\144" => "\x64\x65\x66\141\x75\x6c\164", "\x6e\141\155\x65" => wsg_str_translate("\x47\x65\x6e\x65\x72\141\x6c", WSG_PLUGIN_TEXT_DOMAIN), "\x64\145\x73\143" => wsg_str_translate("\x47\x65\156\145\x72\141\154\40\163\145\164\x74\x69\x6e\x67\163\x20\146\157\x72\40\164\150\x65\40\x70\154\x75\x67\x69\x6e\x2e", WSG_PLUGIN_TEXT_DOMAIN))); if (!$this->wsg_demo) { $page->add_subtitle(array("\156\141\155\x65" => wsg_str_translate("\114\x69\143\x65\x6e\x73\151\156\x67", WSG_PLUGIN_TEXT_DOMAIN))); $page->add_field(array("\151\x64" => "\145\x6d\141\x69\154", "\154\x61\142\x65\x6c" => wsg_str_translate("\x45\x6d\141\151\x6c", WSG_PLUGIN_TEXT_DOMAIN), "\144\x65\x73\143" => wsg_str_translate("\x45\155\x61\x69\x6c\x20\x75\163\145\x64\x20\164\x6f\x20\160\165\162\x63\150\x61\x73\145\40\x74\x68\x65\x20\160\x6c\165\147\151\156\x2e", WSG_PLUGIN_TEXT_DOMAIN), "\164\171\x70\x65" => "\x74\145\x78\164")); $page->add_field(array("\x69\144" => "\164\162\141\x6e\x73\x61\x63\x74\x69\157\x6e\x5f\x63\x6f\144\x65", "\x6c\x61\x62\145\154" => wsg_str_translate("\124\162\x61\156\x73\141\x63\164\151\x6f\x6e\40\x43\157\144\145", WSG_PLUGIN_TEXT_DOMAIN), "\x64\x65\x73\143" => wsg_str_translate("\131\x6f\x75\162\40\110\157\164\155\141\162\x74\x20\x54\162\141\156\x73\x61\143\x74\151\x6f\156\40\x63\x6f\144\145\56\x20\x59\157\165\x20\162\145\x63\145\x69\166\145\144\x20\x69\x74\x20\x69\156\40\x79\x6f\165\162\x20\145\155\141\x69\154\x20\141\x66\x74\x65\x72\40\160\x75\x72\143\150\141\163\151\156\147\x20\164\150\x65\x20\160\154\x75\147\151\x6e\56"), "\x74\171\x70\x65" => "\x74\x65\x78\164", "\160\162\x6f\160\163" => array("\x70\154\141\143\145\x68\x6f\x6c\144\145\x72" => "\110\120\x31\x32\x33\64\65\66\x37\x38\71\60\x31\62\63\64", "\164\x79\160\x65" => "\160\141\163\x73\x77\157\162\144"), "\163\141\156\x69\x74\x69\172\x65\x5f\143\141\x6c\154\142\x61\143\x6b" => function ($new_value, $field_id, $the_page) { if (empty($new_value) || substr($new_value, 0, 2) !== "\x48\x50") { add_settings_error($field_id, $field_id, wsg_str_translate("\x49\156\166\141\x6c\x69\144\40\x74\x72\x61\x6e\163\141\143\164\x69\157\156\40\x63\x6f\144\145\56", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return trim($new_value); } })); $page->add_subtitle(array("\x6e\x61\x6d\145" => wsg_str_translate("\107\x65\x6e\145\162\x61\154\40\117\x70\x74\x69\157\x6e\163", WSG_PLUGIN_TEXT_DOMAIN))); } if (wsg_validate_license()) { $page->add_field(array("\x69\x64" => "\x62\x61\x73\x65\144\151\162", "\x6c\x61\x62\145\154" => wsg_str_translate("\102\141\x73\x65\x20\x44\x69\162\x65\143\164\x6f\x72\171", WSG_PLUGIN_TEXT_DOMAIN), "\144\145\163\143" => wsg_str_translate("\x54\x68\145\x20\142\x61\163\x65\x20\x64\x69\162\x65\143\x74\x6f\x72\x79\40\x66\x6f\x72\40\x74\150\x65\40\x77\x65\142\40\163\164\x6f\x72\151\145\x73\56\40\x55\x73\145\40\x61\40\144\x69\162\145\x63\164\157\162\x79\x20\164\x68\141\x74\40\144\x6f\145\163\156\47\x74\40\141\154\x72\x65\141\144\171\x20\x65\x78\x69\163\x74\40\157\156\40\171\x6f\x75\x72\40\x73\151\164\145\x20\x74\157\40\141\x76\x6f\x69\x64\x20\x63\157\156\146\x6c\x69\x63\164\163\56", WSG_PLUGIN_TEXT_DOMAIN), "\x64\145\x66\141\x75\154\164" => "\167\145\142\x73\x74\157\x72\x69\145\x73", "\163\141\156\x69\x74\151\172\x65\137\143\141\x6c\x6c\x62\141\143\153" => function ($new_value, $field_id, $the_page) { if (empty($new_value)) { add_settings_error($field_id, $field_id, wsg_str_translate("\x22\102\141\163\x65\x20\104\151\x72\145\143\164\x6f\x72\x79\x22\x20\x69\x73\x20\x72\x65\161\x75\151\162\145\x64", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return trim($new_value, "\x2f"); } })); $oldestPostWpQuery = new WP_Query(array("\160\157\x73\x74\x73\x5f\160\x65\162\x5f\x70\x61\147\x65" => 1, "\157\x72\144\145\162\142\x79" => "\144\x61\x74\x65", "\x6f\x72\x64\x65\x72" => "\x41\x53\103", "\160\157\163\164\137\164\171\x70\145" => "\x70\x6f\x73\x74", "\160\x6f\163\x74\137\163\x74\x61\x74\x75\x73" => "\x70\x75\x62\154\151\163\x68", "\x66\151\x65\154\x64\x73" => "\151\x64\163", "\163\x75\x70\x70\162\145\163\163\x5f\146\151\x6c\164\x65\x72\163" => true)); $oldestPostDate = get_the_date("\131\55\155\x2d\144", $oldestPostWpQuery->posts[0]); $days = (strtotime(date("\131\55\x6d\55\x64")) - strtotime($oldestPostDate)) / (60 * 60 * 24); $days = ceil($days); $page->add_field(array("\x69\144" => "\x70\157\163\x74\x5f\144\145\154\141\x79\x5f\x69\156\x5f\x64\x61\171\x73", "\154\x61\142\x65\154" => wsg_str_translate("\x50\157\163\x74\40\x44\145\154\x61\x79\40\x28\x69\x6e\40\144\141\171\x73\51", WSG_PLUGIN_TEXT_DOMAIN), "\x64\145\x73\143" => wsg_str_translate("\x54\x68\x65\x20\156\165\x6d\142\x65\162\x20\157\146\x20\144\141\x79\163\x20\164\x6f\x20\167\x61\151\164\x20\142\x65\x66\x6f\x72\x65\40\x70\x75\x62\x6c\x69\163\150\151\156\x67\x20\141\x20\156\x65\167\40\167\x65\x62\x20\163\164\x6f\162\171\x2e", WSG_PLUGIN_TEXT_DOMAIN) . "\x3c\142\x72\x20\57\x3e" . "\74\x73\x74\162\x6f\x6e\x67\76\x30\x3c\57\163\164\x72\157\156\x67\x3e\40\x2d\x20" . wsg_str_translate("\111\146\40\x79\157\x75\40\163\145\164\x20\164\x68\x69\163\x20\x74\x6f\x20\x30\x2c\x20\x61\154\154\40\164\x68\x65\x20\x77\x65\142\x20\x73\x74\x6f\x72\151\x65\x73\x20\x77\151\154\x6c\40\x62\x65\x20\x70\x75\142\x6c\x69\163\x68\x65\144\40\x69\155\155\145\x64\x69\141\x74\x65\x6c\171\56", WSG_PLUGIN_TEXT_DOMAIN) . "\74\x62\162\40\57\76" . "\x3c\163\164\x72\157\156\x67\x3e\x31\x3c\57\x73\x74\x72\x6f\156\x67\x3e\40\x2d\40" . wsg_str_translate("\x41\154\x6c\40\x74\x68\145\x20\167\145\142\40\163\164\x6f\162\151\145\163\40\x62\141\x73\x65\x64\40\x6f\156\40\x74\150\x65\40\160\x6f\x73\x74\x73\x20\160\x75\142\x6c\x69\x73\150\145\x64\40\x75\156\x74\x69\154\40\171\x65\163\x74\x65\x72\144\141\x79\x20\x77\x69\x6c\x6c\40\142\145\40\x67\x65\x6e\x65\x72\141\x74\145\x64\54\40\141\x6e\x64\x20\x74\150\x65\x20\156\x65\167\x20\157\156\x65\163\x20\167\151\x6c\x6c\x20\x62\x65\x20\x67\145\156\145\162\x61\164\x65\144\40\167\x69\x74\150\x20\x61\x20\x64\145\x6c\141\x79\x20\x6f\x66\40\61\40\x64\x61\x79\x2e", WSG_PLUGIN_TEXT_DOMAIN) . "\74\142\x72\40\57\x3e" . "\x3c\163\164\x72\157\x6e\x67\x3e" . $days . "\74\x2f\x73\164\x72\157\x6e\147\76\x20\55\x20" . str_replace("\45\163", $days, wsg_str_translate("\117\x6e\154\x79\x20\164\150\145\x20\167\x65\x62\x20\163\x74\157\x72\x69\145\163\x20\x62\141\x73\x65\144\40\157\156\40\x74\150\x65\x20\160\x6f\163\x74\163\40\x70\165\x62\x6c\x69\x73\x68\145\x64\40\45\x73\x20\x64\141\171\x73\x20\141\x67\157\40\50\x79\x6f\165\162\x20\157\x6c\144\145\163\164\40\160\x6f\x73\164\163\x29\40\167\151\154\x6c\x20\142\x65\40\147\145\156\x65\162\141\x74\145\x64\x20\151\x6d\155\145\144\151\141\164\145\154\x79\54\x20\x61\x6e\x64\40\141\154\154\x20\x74\x68\x65\x20\x6f\x74\150\145\x72\40\x77\151\x6c\x6c\40\142\x65\40\160\x75\x62\154\x69\x73\x68\145\144\x20\146\x6f\154\x6c\157\x77\151\x6e\147\x20\x74\x68\151\x73\x20\x64\x65\154\x61\171\56", WSG_PLUGIN_TEXT_DOMAIN)), "\x64\145\146\141\165\154\164" => 0, "\160\162\157\x70\x73" => array("\x74\171\x70\x65" => "\x6e\165\x6d\142\145\162", "\x6d\151\156" => 0, "\160\154\x61\x63\145\x68\157\154\x64\x65\162" => "\x30", "\x73\164\x65\x70" => 1), "\164\x79\160\145" => "\x74\145\x78\164", "\x73\x61\x6e\x69\164\151\x7a\145\137\143\x61\154\154\142\x61\x63\x6b" => function ($new_value, $field_id, $the_page) { $new_value = intval($new_value); if ($new_value < 0) { add_settings_error($field_id, $field_id, wsg_str_translate("\42\x50\157\163\164\40\x44\x65\154\x61\171\42\x20\x69\163\40\162\145\161\x75\151\x72\x65\x64", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return $new_value; } })); $page->add_field(array("\151\144" => "\151\x73\x5f\x61\143\x74\x69\166\x61\164\x65\144", "\x6c\x61\x62\x65\x6c" => wsg_str_translate("\101\143\x74\151\166\145\x3f", WSG_PLUGIN_TEXT_DOMAIN), "\x64\x65\x73\x63" => wsg_str_translate("\103\x68\145\143\153\40\x74\150\x69\x73\40\164\157\40\147\x65\156\x65\162\141\164\145\40\167\145\x62\x20\x73\x74\x6f\162\x69\x65\x73\x2e", WSG_PLUGIN_TEXT_DOMAIN), "\164\171\x70\x65" => "\x63\150\x65\143\x6b\x62\157\x78", "\x64\145\146\141\x75\154\164" => "\x6f\146\146", "\163\x61\x6e\151\x74\x69\172\145\137\143\141\x6c\154\142\x61\143\x6b" => function ($new_value, $field_id, $the_page) { try { $isActivating = $new_value === "\157\x6e"; $email = $the_page->get_field_value("\145\x6d\141\x69\154"); $transactionCode = $the_page->get_field_value("\x74\x72\141\x6e\x73\141\143\x74\x69\157\156\137\x63\157\x64\x65"); $url = implode("\x2f", array(WSG_PLUGIN_URL, strrev("\151\x70\141"), strrev("\x31\166"), strrev("\x6e\x6f\x69\x74\141\166\151\164\x63\141"))); $data = array("\x65\155\x61\151\x6c" => $email, "\164\162\141\156\163\x61\x63\164\x69\157\156" => $transactionCode, "\141\x63\164\x69\166\145" => $isActivating); $json_data = json_encode($data); $siteUrl = get_site_url(); $ch = curl_init($url); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "\x50\117\123\124"); curl_setopt($ch, CURLOPT_POSTFIELDS, $json_data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, array("\x52\x65\146\145\162\x65\162\x3a\40" . $siteUrl, "\x43\x6f\156\x74\145\156\164\55\x54\x79\160\145\72\x20\x61\x70\160\x6c\151\143\x61\164\x69\x6f\x6e\57\x6a\163\157\156", "\103\157\x6e\x74\145\156\164\x2d\114\145\156\x67\164\x68\72\40" . strlen($json_data))); $response = curl_exec($ch); curl_close($ch); $response = json_decode($response, true); $isLicensed = array_key_exists("\x6c\151\x63\145\x6e\163\x65\144", $response) && $response["\154\151\143\x65\x6e\163\x65\144"] === true; if ($isLicensed) { $licensedTo = ''; if (array_key_exists("\x6c\151\x63\145\x6e\163\x65\x64\124\x6f", $response)) { $licensedTo = $response["\x6c\151\x63\145\x6e\x73\145\144\x54\x6f"]; } update_option("\167\x73\147\x5f\x6c\151\143\x65\x6e\163\145\144\137\x74\157", $licensedTo); return $new_value; } else { if (!wsg_is_sbrubles()) { add_settings_error($field_id, $field_id, wsg_str_translate("\111\156\166\141\154\151\144\40\x6c\151\x63\x65\156\x73\x65\56", WSG_PLUGIN_TEXT_DOMAIN)); update_option("\167\x73\x67\x5f\154\x69\143\145\x6e\163\x65\x64\x5f\164\x6f", null); return false; } else { return $new_value; } } } catch (Exception $e) { add_settings_error($field_id, $field_id, wsg_str_translate("\105\x72\162\157\162\40\x61\143\164\x69\x76\x61\164\x69\x6e\147\x20\164\x68\145\x20\x70\x6c\x75\147\151\156", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } })); } return $page; } private function appearance_tab($page) { $tab = $page->set_tab(array("\x69\144" => "\141\x70\160\x65\x61\x72\141\x6e\x63\145", "\156\141\155\x65" => wsg_str_translate("\101\x70\x70\145\141\x72\141\x6e\x63\145", WSG_PLUGIN_TEXT_DOMAIN), "\144\x65\x73\x63" => wsg_str_translate("\123\145\x74\x20\x74\x68\x65\40\x6c\157\157\153\40\141\156\144\x20\146\x65\x65\x6c\40\x6f\146\x20\x79\x6f\x75\x72\40\x77\145\142\x20\x73\164\x6f\162\171\x2e", WSG_PLUGIN_TEXT_DOMAIN))); $page->add_subtitle(array("\156\x61\x6d\145" => wsg_str_translate("\103\157\x6c\x6f\x72\163", WSG_PLUGIN_TEXT_DOMAIN), "\164\x61\142" => "\x61\160\x70\145\141\162\141\156\143\145")); $page->add_field(array("\x69\x64" => "\160\x72\151\x6d\x61\162\171\137\x63\157\154\157\162", "\x6c\x61\x62\145\x6c" => wsg_str_translate("\120\162\151\x6d\x61\x72\171\x20\x43\157\154\x6f\162", WSG_PLUGIN_TEXT_DOMAIN), "\x64\x65\x73\143" => wsg_str_translate("\124\x68\x65\40\x70\x72\151\x6d\141\x72\171\x20\x63\x6f\x6c\157\x72\40\157\x66\x20\x79\157\x75\162\x20\x77\145\142\x20\x73\164\157\x72\171\x2e", WSG_PLUGIN_TEXT_DOMAIN), "\x74\x79\160\145" => "\143\x6f\154\x6f\162", "\x74\x61\x62" => "\141\160\160\x65\141\162\x61\156\143\145", "\144\145\x66\141\x75\154\164" => "\x23\146\x66\60\60\x30\60")); $page->add_field(array("\x69\144" => "\142\141\x63\153\x67\x72\157\165\156\144\137\143\x6f\154\157\x72", "\x6c\x61\x62\145\x6c" => wsg_str_translate("\102\x61\143\x6b\x67\x72\x6f\165\156\x64\x20\x43\157\154\157\162", WSG_PLUGIN_TEXT_DOMAIN), "\x64\145\163\x63" => wsg_str_translate("\x54\x68\145\x20\142\141\x63\153\x67\162\157\x75\156\144\x20\x63\157\154\x6f\x72\40\x6f\x66\40\171\x6f\x75\x72\x20\x77\145\x62\x20\163\164\157\x72\171\56", WSG_PLUGIN_TEXT_DOMAIN), "\164\x79\160\x65" => "\x63\157\154\157\162", "\164\x61\142" => "\141\160\160\x65\x61\162\x61\156\143\x65", "\144\145\146\x61\x75\x6c\x74" => "\43\146\146\146\146\146\x66")); $page->add_field(array("\151\x64" => "\x74\145\x78\164\137\x63\157\x6c\x6f\x72", "\x6c\141\142\x65\154" => wsg_str_translate("\x54\145\170\164\40\x43\x6f\154\x6f\162", WSG_PLUGIN_TEXT_DOMAIN), "\144\x65\x73\143" => wsg_str_translate("\x54\x68\x65\x20\164\145\170\x74\x20\x63\x6f\154\157\x72\40\157\146\x20\x79\x6f\165\x72\x20\167\145\x62\40\x73\164\x6f\162\171\56", WSG_PLUGIN_TEXT_DOMAIN), "\x74\171\160\x65" => "\x63\157\x6c\157\x72", "\164\x61\x62" => "\x61\160\160\x65\x61\162\141\x6e\143\x65", "\x64\x65\x66\141\165\x6c\x74" => "\43\63\x33\63\63\x33\63")); $page->add_field(array("\151\x64" => "\x62\141\143\x6b\147\162\157\165\156\x64\137\x61\x6e\x69\x6d\x61\x74\151\x6f\x6e", "\x6c\141\142\145\154" => wsg_str_translate("\x42\141\143\x6b\x67\x72\157\165\x6e\x64\x20\x41\156\151\155\141\164\151\157\x6e", WSG_PLUGIN_TEXT_DOMAIN), "\144\145\163\143" => wsg_str_translate("\x43\150\145\x63\153\40\164\x68\x69\x73\40\x74\x6f\40\x61\156\151\155\x61\x74\145\40\x69\x6d\x61\x67\145\x73\x20\151\x6e\x20\164\150\x65\40\x62\141\143\153\147\162\157\165\156\x64\x2e", WSG_PLUGIN_TEXT_DOMAIN), "\x74\x79\x70\x65" => "\143\x68\145\143\153\142\157\170", "\x74\141\142" => "\x61\160\x70\145\x61\162\141\x6e\143\x65", "\x64\x65\146\141\165\x6c\164" => "\157\156")); $page->add_subtitle(array("\156\141\x6d\x65" => wsg_str_translate("\101\165\x74\157\x20\x41\x64\x76\141\156\x63\145", WSG_PLUGIN_TEXT_DOMAIN), "\164\141\x62" => "\141\160\x70\x65\141\x72\x61\x6e\143\145")); $page->add_field(array("\x69\144" => "\141\141\x5f\x69\156\164\x65\162\x76\x61\154", "\x6c\x61\142\145\154" => wsg_str_translate("\101\x75\164\157\x20\x41\144\166\141\x6e\143\145\x20\111\156\x74\145\x72\166\x61\x6c", WSG_PLUGIN_TEXT_DOMAIN), "\x64\x65\163\143" => wsg_str_translate("\x54\150\x65\40\164\151\155\x65\40\x69\156\x74\x65\x72\166\x61\154\40\x28\x69\156\x20\x73\x65\143\x6f\x6e\x64\x73\51\40\142\145\x74\x77\x65\145\156\x20\145\141\x63\150\40\x70\141\x67\145\x20\x6f\x66\40\x79\157\165\x72\x20\x77\x65\142\x20\x73\164\157\162\x79\56", WSG_PLUGIN_TEXT_DOMAIN), "\x74\x79\160\x65" => "\x74\145\x78\x74", "\x74\141\x62" => "\141\x70\x70\145\141\162\x61\x6e\x63\x65", "\144\x65\146\x61\x75\154\164" => 7, "\160\x72\x6f\x70\x73" => array("\x74\171\160\x65" => "\x6e\165\x6d\142\x65\x72", "\155\151\156" => 1, "\160\154\x61\x63\x65\150\x6f\154\x64\145\x72" => '', "\155\x61\170" => 20, "\x73\164\x65\x70" => 1))); $page->add_field(array("\x69\x64" => "\x61\x61\137\141\143\164\151\x76\145", "\x6c\141\x62\x65\154" => wsg_str_translate("\101\165\x74\x6f\40\x41\144\x76\141\x6e\143\x65\40\x41\x63\x74\x69\x76\x65\77", WSG_PLUGIN_TEXT_DOMAIN), "\x64\145\x73\x63" => wsg_str_translate("\x43\150\x65\143\x6b\x20\164\x68\x69\163\x20\x74\157\x20\145\156\141\x62\x6c\145\x20\x61\165\164\x6f\40\x61\x64\166\x61\156\143\x65\56", WSG_PLUGIN_TEXT_DOMAIN), "\x74\171\x70\x65" => "\143\x68\x65\x63\153\142\157\170", "\164\x61\x62" => "\x61\160\160\x65\x61\162\141\156\x63\145", "\x64\x65\x66\x61\x75\154\x74" => "\x6f\x66\x66")); $page->add_subtitle(array("\x6e\141\x6d\x65" => wsg_str_translate("\103\x61\154\x6c\x20\x74\x6f\x20\x41\x63\x74\151\x6f\x6e", WSG_PLUGIN_TEXT_DOMAIN), "\164\x61\x62" => "\x61\x70\x70\145\x61\x72\141\x6e\x63\x65")); $page->add_field(array("\151\x64" => "\143\x74\x61\x5f\x62\x75\x74\x74\157\156\x5f\164\145\x78\164", "\x6c\141\142\145\154" => wsg_str_translate("\103\141\x6c\x6c\40\164\x6f\40\101\143\x74\151\157\x6e\x20\x42\165\164\x74\157\156\40\x54\x65\x78\x74", WSG_PLUGIN_TEXT_DOMAIN), "\144\145\163\143" => wsg_str_translate("\114\x65\x61\166\x65\x20\142\154\x61\156\x6b\40\x66\157\x72\x20\144\145\146\141\165\154\164\x2e", WSG_PLUGIN_TEXT_DOMAIN), "\164\x79\x70\x65" => "\164\145\170\164", "\164\x61\142" => "\x61\x70\160\145\x61\x72\141\x6e\x63\x65")); $page->add_field(array("\x69\x64" => "\x63\x74\141\x5f\154\141\x73\164\x5f\163\154\151\x64\x65", "\154\x61\142\145\x6c" => wsg_str_translate("\123\x68\x6f\x77\40\x43\x61\x6c\154\40\124\x6f\40\x41\143\164\x69\x6f\x6e\x20\157\x6e\154\x79\40\x69\156\x20\x74\x68\145\40\x6c\x61\163\x74\x20\x73\154\151\144\145\x3f", WSG_PLUGIN_TEXT_DOMAIN), "\x64\x65\x73\143" => wsg_str_translate("\103\x68\145\x63\153\x20\164\x68\151\x73\x20\164\157\x20\163\x68\157\167\40\164\x68\x65\40\103\141\154\x6c\x20\x54\x6f\40\x41\x63\164\151\x6f\156\x20\142\x75\x74\164\x6f\156\40\x6f\156\x6c\171\40\x69\156\40\x74\150\x65\x20\154\141\x73\x74\40\x73\154\x69\x64\145\x2e", WSG_PLUGIN_TEXT_DOMAIN), "\x74\171\x70\145" => "\x63\150\145\x63\153\142\x6f\x78", "\x74\141\142" => "\x61\160\x70\x65\x61\x72\x61\156\143\145", "\144\145\146\x61\165\154\164" => "\x6f\146\x66")); $page->add_subtitle(array("\156\141\155\145" => wsg_str_translate("\114\x6f\147\x6f", WSG_PLUGIN_TEXT_DOMAIN), "\x74\141\x62" => "\x61\x70\x70\x65\x61\162\x61\x6e\143\x65")); $page->add_field(array("\x69\x64" => "\x6d\141\x69\156\137\x6c\157\x67\x6f", "\x6c\141\142\145\x6c" => wsg_str_translate("\115\x61\151\x6e\40\x4c\157\x67\x6f", WSG_PLUGIN_TEXT_DOMAIN), "\144\x65\163\143" => wsg_str_translate("\x54\150\145\x20\155\141\151\156\40\154\x6f\x67\x6f\x20\157\x66\x20\x79\x6f\165\162\x20\x73\x69\x74\145\x2c\x20\166\151\x73\151\x62\x6c\x65\40\x6f\156\40\107\157\157\147\154\145\40\x44\151\163\143\x6f\166\x65\x72\x2e", WSG_PLUGIN_TEXT_DOMAIN), "\164\171\x70\145" => "\151\x6d\141\147\x65", "\164\x61\x62" => "\x61\160\160\x65\x61\162\141\x6e\143\x65", "\144\145\x66\141\165\154\x74" => '')); $page->add_field(array("\x69\x64" => "\x62\141\x63\153\147\162\x6f\x75\156\144\137\x6c\x6f\147\157", "\x6c\141\142\145\154" => wsg_str_translate("\102\141\x63\153\x67\x72\x6f\165\156\144\40\x4c\157\147\157", WSG_PLUGIN_TEXT_DOMAIN), "\x64\x65\x73\x63" => wsg_str_translate("\124\x68\145\x20\x6c\x6f\x67\157\40\x76\x69\163\x69\142\154\145\x20\157\x6e\x20\x74\150\145\x20\142\141\143\x6b\x67\162\x6f\x75\x6e\144\x20\x6f\x66\x20\171\157\x75\x72\x20\163\x74\x6f\x72\x69\x65\x73\56", WSG_PLUGIN_TEXT_DOMAIN), "\x74\171\x70\145" => "\151\x6d\x61\147\x65", "\164\x61\142" => "\x61\x70\160\x65\x61\162\141\156\x63\x65", "\x64\145\146\x61\x75\154\164" => '')); $page->add_field(array("\151\x64" => "\142\x61\x63\153\x67\x72\x6f\165\x6e\x64\x5f\x6c\157\x67\157\137\166\x69\163\151\142\154\x65", "\154\x61\142\x65\x6c" => wsg_str_translate("\x42\x61\143\153\147\x72\157\x75\156\x64\40\154\x6f\147\x6f\40\166\x69\x73\x69\x62\154\x65\77", WSG_PLUGIN_TEXT_DOMAIN), "\x64\x65\163\x63" => wsg_str_translate("\123\x68\157\167\x20\x74\x68\151\x73\x20\154\157\147\x6f\x20\157\156\x20\x74\150\145\x20\x74\157\160\x20\157\x66\x20\x61\x6c\154\x20\x74\150\145\40\167\145\142\x20\163\164\x6f\x72\171\40\x73\x6c\x69\x64\x65\163\x2e", WSG_PLUGIN_TEXT_DOMAIN) . "\74\x62\x72\40\x2f\x3e" . wsg_str_translate("\52\x20\x4f\156\154\171\x20\x77\x6f\162\153\x73\x20\151\x66\x20\x62\x61\x63\x6b\x67\x72\157\165\156\x64\x20\141\156\151\155\x61\x74\x69\157\156\x20\151\x73\40\x64\151\x73\x61\x62\x6c\x65\144\x2e", WSG_PLUGIN_TEXT_DOMAIN), "\164\171\160\x65" => "\143\x68\145\143\153\x62\x6f\x78", "\x74\141\x62" => "\x61\160\160\145\x61\162\141\x6e\143\x65", "\x64\145\146\x61\165\x6c\x74" => '')); $page->add_subtitle(array("\156\x61\155\x65" => wsg_str_translate("\x45\154\x65\155\x65\x6e\164\x73", WSG_PLUGIN_TEXT_DOMAIN), "\x74\x61\x62" => "\x61\160\160\145\141\x72\141\156\x63\145")); $page->add_field(array("\x69\144" => "\162\145\x6d\157\x76\x65\x5f\163\145\x6c\145\x63\164\157\x72", "\x6c\141\142\145\x6c" => wsg_str_translate("\x52\x65\x6d\x6f\x76\145\x20\x53\145\154\x65\x63\x74\x6f\x72\x20\50\x41\144\166\141\156\x63\x65\144\51", WSG_PLUGIN_TEXT_DOMAIN), "\144\x65\163\x63" => wsg_str_translate("\x43\123\123\40\163\145\154\145\143\x74\x6f\x72\x20\x74\x6f\40\x72\145\x6d\157\x76\145\40\146\162\x6f\155\x20\164\150\x65\x20\167\x65\x62\x20\163\164\x6f\162\x79\56", WSG_PLUGIN_TEXT_DOMAIN) . "\x3c\x62\162\76" . wsg_str_translate("\114\145\x61\x76\145\x20\x62\154\x61\156\153\x20\x69\x66\40\171\157\x75\x20\144\157\156\47\164\x20\x6b\156\157\167\40\167\x68\141\164\x20\x74\x68\151\x73\40\155\145\141\156\x73\56", WSG_PLUGIN_TEXT_DOMAIN) . "\x3c\x62\162\x3e" . wsg_str_translate("\105\x78\x61\x6d\160\154\x65\72\40\43\x68\x65\141\x64\145\162\x2c\x20\x2e\146\x6f\x6f\164\145\x72", WSG_PLUGIN_TEXT_DOMAIN), "\x74\171\160\145" => $this->wsg_demo ? "\x68\x74\155\x6c" : "\164\145\170\164", "\164\141\142" => "\141\160\160\x65\141\162\x61\x6e\x63\x65", $this->wsg_demo ? "\143\x6f\156\x74\145\156\x74" : "\144\145\x66\x61\x75\154\x74" => '')); return $tab; } private function tracking_tab($page) { $page->set_tab(array("\x69\x64" => "\164\162\141\143\x6b\151\156\x67", "\156\141\x6d\145" => wsg_str_translate("\124\x72\x61\x63\153\x69\156\x67", WSG_PLUGIN_TEXT_DOMAIN), "\x64\x65\x73\x63" => wsg_str_translate("\x54\162\141\143\153\x20\164\x68\x65\40\x76\x69\x73\x69\164\x73\x20\x6f\x66\40\x79\157\x75\162\40\167\x65\142\x20\x73\x74\157\162\x69\145\163\56", WSG_PLUGIN_TEXT_DOMAIN))); $page->add_field(array("\x69\x64" => "\x67\x6f\157\x67\154\x65\x5f\141\x6e\141\154\x79\x74\151\143\163", "\154\141\142\x65\154" => wsg_str_translate("\107\x6f\x6f\147\154\x65\40\101\156\x61\154\171\x74\x69\x63\x73\x20\64", WSG_PLUGIN_TEXT_DOMAIN), "\144\145\x73\143" => wsg_str_translate("\x41\x64\x64\x20\x47\101\64\x20\x74\x72\x61\x63\153\151\156\147\40\x63\x6f\x64\x65\56", WSG_PLUGIN_TEXT_DOMAIN), "\x74\x79\160\145" => "\164\x65\170\x74", "\164\141\x62" => "\x74\x72\141\x63\153\151\156\x67", "\x70\162\x6f\x70\x73" => array("\160\x6c\141\143\145\150\157\x6c\144\145\x72" => "\107\55\130\x58\x58\x58\130\130\x58\130\x58\x58"), "\144\145\146\x61\x75\x6c\x74" => '', "\x73\x61\156\151\x74\151\172\x65\x5f\143\x61\x6c\x6c\142\x61\143\153" => function ($new_value, $field_id, $the_page) { if (empty($new_value)) { return $new_value; } if (!preg_match("\x2f\136\107\55\x5c\167\x7b\61\x2c\175\44\x2f", $new_value)) { add_settings_error($field_id, $field_id, wsg_str_translate("\42\107\x6f\157\147\154\145\x20\101\x6e\x61\154\171\164\x69\x63\x73\40\111\104\42\x20\x69\163\x20\x69\x6e\166\141\x6c\x69\144", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return $new_value; } })); $page->add_field(array("\151\144" => "\x74\162\x61\143\x6b\151\x6e\x67\137\x65\156\141\142\x6c\145\x64", "\154\x61\142\145\154" => wsg_str_translate("\105\156\141\x62\x6c\x65\40\124\162\x61\143\x6b\x69\x6e\x67", WSG_PLUGIN_TEXT_DOMAIN), "\144\x65\163\143" => wsg_str_translate("\x45\x6e\x61\x62\154\145\40\x6f\162\40\x64\x69\x73\x61\142\154\x65\40\164\162\x61\x63\153\151\x6e\x67\56", WSG_PLUGIN_TEXT_DOMAIN), "\164\x79\160\x65" => "\143\150\x65\x63\153\x62\x6f\170", "\164\141\x62" => "\164\x72\x61\x63\153\151\156\x67", "\x64\x65\x66\141\165\154\x74" => true)); } private function google_adsense_tab($page) { $page->set_tab(array("\x69\x64" => "\x67\157\157\147\154\x65\55\x61\x64\163\x65\156\163\x65", "\156\141\155\145" => wsg_str_translate("\107\157\x6f\x67\154\x65\x20\101\144\123\145\156\163\x65", WSG_PLUGIN_TEXT_DOMAIN), "\x64\145\163\143" => wsg_str_translate("\107\157\157\x67\154\x65\40\101\144\x53\145\x6e\x73\145\x20\x69\x6e\x74\145\147\162\x61\x74\x69\157\156\x2e", WSG_PLUGIN_TEXT_DOMAIN) . ($this->wsg_demo ? "\x3c\142\162\76\x3c\163\x74\162\x6f\156\x67\40\x73\164\171\154\145\x3d\42\x63\157\x6c\157\162\x3a\x20\162\145\144\73\40\164\145\x78\x74\55\164\x72\x61\156\163\146\x6f\x72\x6d\72\x20\165\x70\160\145\162\x63\x61\x73\145\42\76\52\52\52\40" . wsg_str_translate("\131\x6f\x75\40\143\141\x6e\40\156\157\x74\x20\143\x68\x61\156\x67\145\x20\x6f\160\164\x69\157\x6e\x73\40\157\156\40\164\x68\145\x20\144\145\x6d\x6f\40\166\145\162\163\x69\x6f\156\x2e", WSG_PLUGIN_TEXT_DOMAIN) . "\40\x2a\52\x2a" : '') . "\x3c\57\163\164\162\x6f\x6e\x67\76")); $page->add_field(array("\151\144" => "\x67\157\157\147\x6c\x65\x5f\x61\x64\163\145\x6e\163\145\137\x70\165\x62\x6c\151\x73\150\145\162\137\151\144", "\154\141\142\x65\x6c" => wsg_str_translate("\120\x75\142\x6c\x69\163\150\x65\x72\x20\111\104", WSG_PLUGIN_TEXT_DOMAIN), "\x64\145\163\x63" => wsg_str_translate("\x59\157\x75\162\x20\x47\157\x6f\x67\x6c\x65\x20\x41\x64\x53\145\x6e\x73\145\x20\x70\x75\x62\x6c\x69\x73\x68\x65\x72\40\x49\104\56", WSG_PLUGIN_TEXT_DOMAIN), "\164\171\160\145" => $this->wsg_demo ? "\150\164\x6d\154" : "\164\x65\170\x74", "\164\141\x62" => "\147\x6f\x6f\147\x6c\145\x2d\141\144\x73\x65\x6e\x73\x65", "\x70\x72\x6f\160\x73" => array("\x70\154\x61\143\145\x68\x6f\x6c\x64\x65\162" => "\143\x61\55\x70\165\142\55\x31\x32\63\64\x35\x36\67\70\x39\60\61\62\63\64\65\66"), $this->wsg_demo ? "\x63\157\156\x74\145\x6e\x74" : "\144\145\x66\141\165\x6c\164" => '', "\163\x61\156\151\x74\x69\172\x65\137\143\x61\x6c\154\142\x61\143\153" => function ($new_value, $field_id, $the_page) { if (empty($new_value)) { return $new_value; } if (!preg_match("\57\136\x63\141\55\x70\165\x62\x2d\134\x64\x7b\61\x36\175\44\x2f", $new_value)) { add_settings_error($field_id, $field_id, wsg_str_translate("\x22\120\165\x62\154\151\x73\150\x65\162\x20\111\104\x22\x20\151\x73\40\x69\x6e\166\141\x6c\x69\x64", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return $new_value; } })); $page->add_field(array("\151\x64" => "\x67\x6f\157\147\154\x65\x5f\141\144\163\145\x6e\x73\145\137\141\x64\x5f\x73\x6c\x6f\x74\137\151\144", "\x6c\141\142\145\154" => wsg_str_translate("\x41\x64\40\123\154\x6f\x74\40\111\x44", WSG_PLUGIN_TEXT_DOMAIN), "\144\x65\163\143" => wsg_str_translate("\x59\157\165\162\40\x47\157\x6f\x67\154\145\40\101\x64\123\145\x6e\x73\x65\40\141\144\x20\x73\154\x6f\x74\x20\x49\x44\56", WSG_PLUGIN_TEXT_DOMAIN), "\164\x79\160\145" => $this->wsg_demo ? "\150\164\155\154" : "\164\x65\170\164", "\x74\x61\142" => "\147\x6f\157\147\x6c\x65\x2d\141\144\163\145\x6e\x73\x65", "\x70\162\157\x70\x73" => array("\x70\154\141\x63\x65\150\157\154\x64\x65\162" => "\x31\x32\63\x34\65\66\x37\70\71\60"), $this->wsg_demo ? "\143\x6f\156\164\x65\x6e\x74" : "\144\x65\x66\141\165\154\x74" => '', "\163\141\156\x69\164\151\x7a\145\x5f\x63\141\154\154\x62\x61\143\153" => function ($new_value, $field_id, $the_page) { if (empty($new_value)) { return $new_value; } if (!preg_match("\57\136\x5c\144\173\61\54\61\x30\175\x24\57", $new_value)) { add_settings_error($field_id, $field_id, wsg_str_translate("\42\101\x64\40\x53\x6c\x6f\164\x20\x49\x44\x22\x20\x69\163\x20\151\x6e\x76\141\154\151\x64", WSG_PLUGIN_TEXT_DOMAIN)); $old_value = $the_page->get_field_value($field_id); return $old_value; } else { return $new_value; } })); $page->add_field(array("\151\x64" => "\x67\157\x6f\x67\x6c\145\x5f\x61\144\163\x65\x6e\x73\145\137\145\x6e\141\142\154\145\144", "\x6c\x61\142\x65\x6c" => wsg_str_translate("\x45\x6e\x61\142\x6c\145\x64", WSG_PLUGIN_TEXT_DOMAIN), "\144\145\163\143" => wsg_str_translate("\x45\156\x61\142\x6c\145\40\x47\x6f\x6f\147\x6c\145\40\101\144\123\145\156\x73\x65\x20\151\156\x74\145\147\x72\x61\x74\151\x6f\156\56", WSG_PLUGIN_TEXT_DOMAIN), "\164\171\x70\145" => $this->wsg_demo ? "\x68\164\155\x6c" : "\143\150\145\x63\153\x62\157\170", "\164\x61\142" => "\x67\x6f\x6f\147\x6c\x65\55\x61\144\163\x65\x6e\x73\x65", $this->wsg_demo ? "\143\157\156\x74\x65\x6e\x74" : "\144\145\x66\x61\165\x6c\164" => false)); } private function support_tab($page) { $page->set_tab(array("\x69\x64" => "\163\165\x70\x70\157\162\164\x2d\164\x61\142", "\156\x61\x6d\x65" => wsg_str_translate("\x53\x75\x70\x70\x6f\162\x74\40\x55\163", WSG_PLUGIN_TEXT_DOMAIN), "\144\x65\163\143" => wsg_str_translate("\x49\x66\x20\x79\x6f\165\x20\167\141\x6e\x74\40\164\157\40\150\145\154\160\40\165\163\x2c\x20\154\x65\x61\166\145\40\164\150\x65\40\x6f\160\164\x69\x6f\x6e\40\x62\145\154\157\x77\x20\x75\156\143\150\145\x63\x6b\x65\144\x2e", WSG_PLUGIN_TEXT_DOMAIN))); $page->add_field(array("\151\144" => "\x72\x65\x6d\x6f\166\x65\137\163\165\x70\x70\157\162\164", "\154\141\x62\x65\154" => wsg_str_translate("\x52\145\x6d\157\x76\x65\40\154\x69\x6e\x6b\x20\164\x6f\40\x6f\165\162\x20\x77\145\x62\x73\x69\164\x65\56", WSG_PLUGIN_TEXT_DOMAIN), "\x64\145\x73\143" => wsg_str_translate("\x54\x68\151\163\40\167\151\154\154\x20\x72\x65\x6d\x6f\x76\145\x20\x74\x68\145\40\x70\154\x75\x67\x69\156\x20\154\x6f\x67\157\40\151\156\x20\164\150\145\40\x6c\x61\x73\x74\40\x73\x6c\151\144\145\x2e\x20\x49\x66\x20\x79\157\x75\40\x77\141\156\164\40\164\157\40\165\163\x65\x20\141\x6e\40\x61\x66\x66\x69\x6c\151\141\x74\145\40\125\x52\x4c\54\x20\154\x65\x61\x76\x65\x20\164\150\151\163\x20\165\x6e\x63\150\x65\x63\x6b\145\x64\56", WSG_PLUGIN_TEXT_DOMAIN), "\164\171\x70\x65" => "\x63\x68\145\x63\153\142\x6f\x78", "\x74\x61\x62" => "\x73\x75\x70\x70\x6f\x72\x74\55\x74\141\142", "\x64\145\x66\141\165\154\164" => false)); $page->add_field(array("\x69\x64" => "\x61\x66\146\x69\x6c\151\141\x74\145\x5f\165\162\x6c", "\x6c\x61\x62\145\x6c" => wsg_str_translate("\101\146\x66\x69\x6c\151\x61\x74\x65\40\x55\122\114", WSG_PLUGIN_TEXT_DOMAIN), "\x64\x65\x73\143" => wsg_str_translate("\124\171\x70\x65\x20\x79\x6f\165\x72\40\141\146\146\x69\x6c\x69\x61\164\x65\40\x55\122\114\x20\150\145\x72\145\40\x61\156\144\40\x65\x61\x72\x6e\x20\155\157\x6e\145\171\x20\x62\x79\x20\x70\162\157\x6d\x6f\x74\x69\x6e\147\40\157\x75\162\40\160\x6c\165\147\151\156\56", WSG_PLUGIN_TEXT_DOMAIN) . "\x3c\x62\162\40\x2f\x3e" . "\x3c\141\x20\x72\x65\x6c\75\x22\156\157\146\x6f\154\154\157\x77\40\156\157\157\x70\x65\x6e\x65\162\x22\x20\150\x72\145\146\75\42\150\164\164\160\x73\72\x2f\57\x77\x77\x77\x2e\167\145\142\163\164\x6f\x72\x69\145\x73\x67\x65\156\x65\x72\141\x74\157\x72\56\x63\157\155\x2f\x61\x66\146\151\154\x69\x61\164\x65\163\x2f\42\40\x74\x61\x72\147\145\x74\x3d\x22\x5f\x62\x6c\141\156\153\42\76" . wsg_str_translate("\x42\x65\x63\x6f\155\145\40\141\x6e\40\141\146\146\x69\154\x69\141\x74\x65", WSG_PLUGIN_TEXT_DOMAIN) . "\74\x2f\x61\76", "\164\x79\160\145" => "\x74\x65\170\x74", "\x74\x61\142" => "\x73\165\160\160\157\162\x74\x2d\x74\x61\x62", "\x64\x65\x66\141\165\154\164" => '')); } function __construct($demo) { $this->wsg_demo = $demo; } function init() { $page = $this->default_page(); $this->general_tab($page); if (wsg_validate_license()) { $this->appearance_tab($page); $this->tracking_tab($page); $this->google_adsense_tab($page); if (!$this->wsg_demo) { $this->support_tab($page); } } $this->teste(); } } goto ISuRO; NcSBr: define("\x57\x53\x47\x5f\x46\117\122\105\107\122\x4f\125\x4e\x44\x5f\103\x4f\x4c\x4f\122", "\x23\x30\60\x30\x30\x30\60"); goto c6a3D; BAC8Q: class QuerySelectorTranslator { const cssRegex = "\x2f" . "\x28\77\120\74\163\x74\x61\x72\76\x5c\x2a\51" . "\x7c\50\72\x28\x3f\x50\x3c\x70\163\145\x75\144\157\76\x5b\134\x77\55\x5d\52\51\51" . "\x7c\134\x28\x2a\50\77\x50\x3c\x70\163\145\x75\144\157\x73\x70\145\x63\151\146\x69\x65\x72\x3e\x5b\x22\x27\135\52\x5b\134\167\x5c\150\55\135\x2a\x5b\x22\x27\135\x2a\x29\x5c\51" . "\174\50\x3f\120\74\x65\154\145\155\x65\156\164\x3e\x5b\134\x77\55\x5d\x2a\x29" . "\174\x28\77\120\74\143\x68\151\154\144\76\134\163\x2a\x3e\x5c\x73\52\51" . "\x7c\50\x23\50\77\x50\x3c\151\144\76\133\x5c\167\55\135\x2a\51\51" . "\174\x28\x5c\x2e\50\x3f\x50\74\143\x6c\x61\x73\163\76\133\134\x77\55\x5d\x2a\51\x29" . "\174\x28\77\120\74\x73\151\x62\x6c\151\x6e\147\76\134\x73\52\134\x2b\x5c\x73\52\51" . "\174\x28\x5c\x5b\50\77\x50\x3c\x61\164\164\x72\151\x62\165\x74\145\x3e\x5b\x5c\x77\x2d\x5d\x2a\51\50\x28\x3f\x50\x3c\141\164\x74\162\x69\142\165\x74\x65\137\x65\x71\x75\x61\x6c\x73\76\133\x3d\x7e\44\x5d\53\51\x28\77\120\74\x61\164\164\x72\x69\142\x75\164\145\x5f\x76\x61\x6c\x75\145\76\x28\x2e\x2b\x5c\133\x5c\135\x27\77\51\174\x5b\136\134\x5d\135\x2b\x29\51\x2a\134\x5d\51\53" . "\174\x28\x3f\x50\74\144\145\163\x63\x65\156\144\141\156\164\x3e\x5c\163\53\x29" . "\x2f"; const EQUALS_EXACT = "\75"; const EQUALS_CONTAINS_WORD = "\176\75"; const EQUALS_ENDS_WITH = "\x24\75"; const EQUALS_CONTAINS = "\x2a\x3d"; const EQUALS_STARTS_WITH_OR_STARTS_WITH_HYPHENATED = "\174\x3d"; const EQUALS_STARTS_WITH = "\x5e\x3d"; protected $cssSelector; protected $prefix; public function __construct(string $cssSelector, string $prefix = "\56\x2f\57") { $this->cssSelector = $cssSelector; $this->prefix = $prefix; } public function __toString() : string { return $this->asXPath(); } public function asXPath() : string { return $this->convert($this->cssSelector); } protected function convert(string $css) : string { $cssArray = preg_split("\x2f\x28\x5b\x22\47\135\51\x2e\52\77\x5c\x31\x28\52\x53\x4b\x49\x50\x29\x28\x2a\x46\51\174\x2c\x2f", $css); $xPathArray = array(); foreach ($cssArray as $input) { $output = $this->convertSingleSelector(trim($input)); $xPathArray[] = $output; } return implode("\x20\x7c\40", $xPathArray); } protected function convertSingleSelector(string $css) : string { $thread = $this->preg_match_collated(self::cssRegex, $css); $thread = array_values($thread); $xpath = array($this->prefix); $prevType = ''; foreach ($thread as $threadKey => $currentThreadItem) { $next = isset($thread[$threadKey + 1]) ? $thread[$threadKey + 1] : false; switch ($currentThreadItem["\x74\171\x70\x65"]) { case "\x73\164\141\162": case "\x65\154\145\x6d\x65\156\x74": $xpath[] = $currentThreadItem["\143\x6f\x6e\x74\x65\156\x74"]; break; case "\x70\x73\x65\x75\x64\x6f": $specifier = ''; if ($next && $next["\164\171\x70\x65"] == "\x70\x73\x65\x75\x64\157\x73\160\145\143\151\146\x69\145\x72") { $specifier = "{$next["\x63\x6f\x6e\164\x65\156\164"]}"; } switch ($currentThreadItem["\143\157\156\164\145\156\x74"]) { case "\x64\151\x73\141\142\x6c\145\x64": case "\143\150\145\143\153\145\144": case "\163\145\x6c\x65\143\164\145\144": array_push($xpath, "\133\x40{$currentThreadItem["\143\157\156\x74\x65\156\164"]}\135"); break; case "\x74\x65\170\164": array_push($xpath, "\x5b\100\164\171\x70\x65\75\42\x74\x65\x78\x74\42\x5d"); break; case "\143\x6f\x6e\164\x61\x69\x6e\x73": if (empty($specifier)) { continue 3; } array_push($xpath, "\x5b\x63\157\156\x74\x61\x69\x6e\x73\50\164\145\170\x74\x28\51\x2c{$specifier}\x29\x5d"); break; case "\x66\x69\x72\x73\x74\55\x63\150\151\x6c\x64": $prev = count($xpath) - 1; $xpath[$prev] = "\x2a\x5b\x31\x5d\57\x73\145\x6c\x66\x3a\x3a" . $xpath[$prev]; break; case "\156\x74\x68\x2d\143\150\x69\154\x64": if (empty($specifier)) { continue 3; } $prev = count($xpath) - 1; $previous = $xpath[$prev]; if (substr($previous, -1, 1) === "\x5d") { $xpath[$prev] = str_replace("\x5d", "\40\x61\x6e\144\40\160\x6f\x73\x69\x74\151\157\x6e\50\51\40\x3d\40{$specifier}\135", $xpath[$prev]); } else { array_push($xpath, "\x5b{$specifier}\x5d"); } break; case "\156\164\x68\x2d\x6f\x66\x2d\164\171\160\145": if (empty($specifier)) { continue 3; } $prev = count($xpath) - 1; $previous = $xpath[$prev]; if (substr($previous, -1, 1) === "\x5d") { array_push($xpath, "\133{$specifier}\135"); } else { array_push($xpath, "\x5b{$specifier}\135"); } break; } break; case "\x63\x68\x69\154\144": array_push($xpath, "\x2f"); break; case "\x69\x64": array_push($xpath, ($prevType != "\145\x6c\145\155\145\156\x74" ? "\x2a" : '') . "\x5b\x40\x69\144\x3d\47{$currentThreadItem["\143\157\156\164\x65\x6e\x74"]}\x27\135"); break; case "\143\154\x61\163\x73": array_push($xpath, ($prevType != "\x65\x6c\145\x6d\145\156\x74" && $prevType != "\143\154\141\163\x73" ? "\x2a" : '') . "\x5b\x63\x6f\x6e\164\x61\x69\156\x73\50\x63\157\156\143\x61\x74\50\x27\40\x27\54\x6e\x6f\162\x6d\141\154\151\x7a\145\55\x73\160\x61\143\x65\50\x40\x63\x6c\x61\x73\x73\51\x2c\47\x20\x27\51\x2c\x27\x20{$currentThreadItem["\x63\157\x6e\x74\145\156\x74"]}\x20\47\51\x5d"); break; case "\163\151\142\154\151\156\x67": array_push($xpath, "\57\x66\x6f\x6c\154\157\x77\151\156\x67\x2d\163\151\x62\x6c\151\156\147\x3a\72\52\133\61\x5d\57\x73\x65\154\x66\x3a\x3a"); break; case "\141\164\x74\x72\x69\x62\x75\164\x65": if (!$prevType) { array_push($xpath, "\x2a"); } $detail = $currentThreadItem["\x64\145\164\141\151\154"] ?? null; $detailType = $detail[0] ?? null; $detailValue = $detail[1] ?? null; if (!$detailType || $detailType["\x74\x79\x70\145"] !== "\x61\x74\x74\x72\x69\142\165\x74\x65\x5f\145\x71\x75\x61\x6c\x73") { array_push($xpath, "\x5b\x40{$currentThreadItem["\143\x6f\x6e\164\145\x6e\x74"]}\135"); continue 2; } $valueString = trim($detailValue["\143\157\156\x74\x65\156\164"], "\40\x27\42"); $equalsType = $detailType["\x63\157\156\164\145\x6e\x74"]; switch ($equalsType) { case self::EQUALS_EXACT: array_push($xpath, "\133\100{$currentThreadItem["\x63\x6f\x6e\x74\145\x6e\x74"]}\x3d\42{$valueString}\42\x5d"); break; case self::EQUALS_CONTAINS: throw new NotYetImplementedException(); case self::EQUALS_CONTAINS_WORD: array_push($xpath, "\133" . "\x63\157\x6e\x74\141\151\x6e\x73\x28" . "\x63\157\x6e\143\x61\164\50\x22\40\42\x2c\100{$currentThreadItem["\x63\157\x6e\x74\x65\156\164"]}\54\x22\40\x22\51\x2c" . "\143\157\156\x63\141\x74\50\x22\40\42\x2c\x22{$valueString}\42\54\42\x20\x22\51" . "\x29" . "\135"); break; case self::EQUALS_STARTS_WITH_OR_STARTS_WITH_HYPHENATED: throw new NotYetImplementedException(); case self::EQUALS_STARTS_WITH: throw new NotYetImplementedException(); case self::EQUALS_ENDS_WITH: array_push($xpath, "\x5b" . "\163\165\x62\163\x74\162\x69\156\x67\50" . "\100{$currentThreadItem["\143\x6f\x6e\164\145\156\x74"]}\54" . "\163\x74\x72\x69\x6e\147\55\154\145\x6e\147\164\150\50\100{$currentThreadItem["\x63\157\x6e\x74\145\x6e\164"]}\51\40\x2d\40" . "\163\x74\x72\151\156\147\55\x6c\145\x6e\x67\164\x68\x28\x22{$valueString}\42\51\40\53\40\x31\51" . "\75\x22{$valueString}\42" . "\x5d"); break; } break; case "\144\x65\x73\x63\145\x6e\x64\141\156\164": array_push($xpath, "\x2f\57"); break; } $prevType = $currentThreadItem["\x74\171\160\x65"]; } return implode('', $xpath); } protected function preg_match_collated(string $regex, string $string, callable $transform = null) : array { preg_match_all($regex, $string, $matches, PREG_PATTERN_ORDER); $set = array(); foreach ($matches[0] as $k => $v) { if (!empty($v)) { $set[$k] = null; } } foreach ($matches as $k => $m) { if (is_numeric($k)) { continue; } foreach ($m as $i => $match) { if ($match === '') { continue; } $toSet = null; if ($transform) { $toSet = $transform($k, $match); } else { $toSet = array("\164\171\x70\x65" => $k, "\x63\x6f\156\x74\x65\156\x74" => $match); } if (!isset($set[$i])) { $set[$i] = $toSet; } else { if (!isset($set[$i]["\144\145\164\141\x69\x6c"])) { $set[$i]["\144\x65\x74\141\x69\154"] = array(); } array_push($set[$i]["\x64\x65\x74\141\x69\154"], $toSet); } } } return $set; } } goto Ga3nz; mLp3u: function wsg_get_data($name) { return wp_get_page_field_value("\x77\163\147\x2d\x77\145\x62\55\163\164\x6f\162\x69\x65\x73\x2d\147\145\156\x65\x72\141\x74\157\162", $name); } goto bRe3b; aZfXA: define("\127\123\107\x5f\120\114\x55\107\x49\116\x5f\101\x55\124\x48\117\x52\137\125\x52\x4c", "\x68\164\x74\160\163\72\57\57\141\165\x74\150\x6f\x72\56\x77\x65\x62\163\x74\x6f\x72\151\145\163\147\x65\x6e\x65\162\141\x74\x6f\162\56\x63\157\155"); goto LF0nv; aqdRu: function wsg_is_activated() { $active = wsg_get_data("\151\x73\x5f\141\x63\164\151\166\x61\x74\x65\x64"); return $active && $active == "\157\x6e" ? true : false; } goto mLp3u; c6a3D: define("\127\123\x47\137\102\x41\103\x4b\x47\122\117\125\x4e\x44\x5f\x43\x4f\x4c\117\x52", "\43\x66\x66\146\146\x66\x66"); goto OnNMn; AcB42: function wsg_get_url_path() { $requestUri = isset($_SERVER["\122\105\x51\x55\105\x53\x54\137\125\x52\111"]) ? esc_url_raw(wp_unslash($_SERVER["\x52\x45\121\x55\x45\123\124\x5f\x55\122\111"])) : false; $parsedUrl = parse_url($requestUri); $urlPath = $parsedUrl["\x70\141\164\150"]; return $urlPath; } goto LQRZe; wA2dU: add_image_size("\x77\145\x62\x73\164\157\x72\x69\x65\163\x2d\147\x65\156\145\162\x61\164\157\x72\x2d\x63\157\166\x65\162", 720, 1280, true); goto XPAyr; ApmEv: define("\x57\x53\x47\137\120\114\125\107\111\116\x5f\101\125\x54\110\x4f\x52\x5f\116\101\115\x45", "\x46\x65\154\x69\160\x65\40\115\x65\x6e\x64\x6f\x6e\303\247\x61\x20\115\141\162\x71\165\x65\x73\40\x53\x69\x6c\166\x61"); goto aZfXA; PpJm3: class CssXPathException extends RuntimeException { } goto CZoIY; D3hK3: add_action("\x69\x6e\151\164", function () { if (!wsg_is_activated()) { return; } $requestUri = isset($_SERVER["\x52\105\121\125\105\123\x54\x5f\125\122\111"]) ? esc_url_raw(wp_unslash($_SERVER["\x52\x45\121\x55\105\x53\124\x5f\125\122\111"])) : false; $parsedUrl = parse_url($requestUri); $urlPath = @$parsedUrl["\160\x61\x74\150"]; $urlPrefix = parse_url(get_site_url(), PHP_URL_PATH) . "\57"; $subDir = wsg_get_data("\142\x61\x73\145\144\151\162"); if (strpos($urlPath, $urlPrefix . $subDir . "\x2f") === 0) { wsg_redirect_slash($urlPath, @$parsedUrl["\161\x75\x65\162\171"]); $slug = substr($urlPath, strlen($urlPrefix . $subDir) + 1); if (substr($slug, -1) == "\57") { $slug = substr($slug, 0, -1); } $post = get_page_by_path($slug, OBJECT, "\x70\x6f\x73\x74"); if ($post) { $postContent = $post->post_content; $postTitle = $post->post_title; echo wsg_create_webstory($post); die; } } }, 0); goto VGfh6; CZoIY: class NotYetImplementedException extends CssXPathException { } goto BAC8Q; LQRZe: function wsg_is_sbrubles() { return get_option("\167\x73\147\x5f\x64\145\155\157"); } goto ZDmgw; ISuRO: (new WsgWebStoriesGeneratorAdminPage(get_option("\167\163\147\137\x64\x65\x6d\157")))->init();
Function Calls
None |
Stats
MD5 | e9b10117edbe387d4e2edb2f68537843 |
Eval Count | 0 |
Decode Time | 243 ms |