Example #1
0
 public static function initClassesList()
 {
     if (static::$classes !== null) {
         return true;
     }
     $classes = array('\\Bitrix\\Sale\\Delivery\\ExtraServices\\Enum' => 'lib/delivery/extra_services/enum.php', '\\Bitrix\\Sale\\Delivery\\ExtraServices\\Store' => 'lib/delivery/extra_services/store.php', '\\Bitrix\\Sale\\Delivery\\ExtraServices\\String' => 'lib/delivery/extra_services/string.php', '\\Bitrix\\Sale\\Delivery\\ExtraServices\\Checkbox' => 'lib/delivery/extra_services/checkbox.php');
     \Bitrix\Main\Loader::registerAutoLoadClasses('sale', $classes);
     unset($classes['\\Bitrix\\Sale\\Delivery\\ExtraServices\\Store']);
     static::$classes = array_keys($classes);
     foreach (GetModuleEvents("sale", "onSaleDeliveryExtraServicesClassesCustom", true) as $arHandler) {
         $classes = ExecuteModuleEventEx($arHandler);
         if (!is_array($classes)) {
             throw new SystemException('Handler of onSaleDeliveryExtraServicesClassesCustom must return Bitrix\\Sale\\Delivery\\ExtraServices\\Base[]');
         }
         foreach ($classes as $class) {
             if (!class_exists($class)) {
                 throw new SystemException('onSaleDeliveryExtraServicesClassesCustom class doesn\'t exist: "' . $class . '"');
             }
             if (in_array($class, static::$classes)) {
                 throw new SystemException('onSaleDeliveryExtraServicesClassesCustom class with such name alredy exists: "' . $class . '"');
             }
             static::$classes[] = $class;
         }
     }
     return true;
 }
Example #2
0
 public static function initClassesList()
 {
     if (static::$classes !== null) {
         return true;
     }
     $classes = array('\\Bitrix\\Sale\\Delivery\\ExtraServices\\Enum' => 'lib/delivery/extra_services/enum.php', '\\Bitrix\\Sale\\Delivery\\ExtraServices\\Store' => 'lib/delivery/extra_services/store.php', '\\Bitrix\\Sale\\Delivery\\ExtraServices\\String' => 'lib/delivery/extra_services/string.php', '\\Bitrix\\Sale\\Delivery\\ExtraServices\\Checkbox' => 'lib/delivery/extra_services/checkbox.php');
     \Bitrix\Main\Loader::registerAutoLoadClasses('sale', $classes);
     unset($classes['\\Bitrix\\Sale\\Delivery\\ExtraServices\\Store']);
     static::$classes = array_keys($classes);
     $event = new Event('sale', 'onSaleDeliveryExtraServicesClassNamesBuildList');
     $event->send();
     $resultList = $event->getResults();
     if (is_array($resultList) && !empty($resultList)) {
         $customClasses = array();
         foreach ($resultList as $eventResult) {
             /** @var  EventResult $eventResult*/
             if ($eventResult->getType() != EventResult::SUCCESS) {
                 throw new SystemException("Can't add custom tracking class successfully");
             }
             $params = $eventResult->getParameters();
             if (!empty($params) && is_array($params)) {
                 $customClasses = array_merge($customClasses, $params);
             }
         }
         if (!empty($customClasses)) {
             \Bitrix\Main\Loader::registerAutoLoadClasses(null, $customClasses);
             $classes = array_merge($customClasses, $classes);
         }
     }
     static::$classes = array_merge(array_keys($classes), static::$classes);
     return static::$classes;
 }
Example #3
0
 public static function AddAutoloadClasses($module, $arParams = array())
 {
     if ($module === '') {
         $module = null;
     }
     \Bitrix\Main\Loader::registerAutoLoadClasses($module, $arParams);
     return true;
 }
Example #4
0
<?
if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true)
{
    die();
}

\Bitrix\Main\Loader::registerAutoLoadClasses('ugraweb.iiko', array(
    // tables
    '\Iiko\DB\ModifiersTable'        => 'lib/mysql/modifiers.php',
    '\Iiko\DB\ElementModifiersTable' => 'lib/mysql/modifiers.php',
    '\Iiko\DB\HashTable'             => 'lib/mysql/main.php',
    '\Iiko\DB\OrderTable'            => 'lib/mysql/order.php',

    // classes
    '\Iiko\App'                      => 'lib/main.php',
    '\Iiko\Event'                    => 'lib/main.php',
    '\Iiko\Connect'                  => 'lib/connect.php',

    '\Iiko\Import'                   => 'lib/import.php',
    '\Iiko\Export'                   => 'lib/export.php',
    '\Iiko\OrderProvider'            => 'lib/export.php',
    '\Iiko\IExportOrder'             => 'lib/export.php',

    '\Iiko\Modifiers'                => 'lib/modifiers.php',
    '\Iiko\ElementModifiers'         => 'lib/modifiers.php',

    '\Iiko\Config\Props'             => 'lib/option.php',
    '\Iiko\Config\Option'            => 'lib/option.php'
));
Example #5
0
 protected static function initRestrictionClassNames()
 {
     if (self::$restrictionClassNames !== null) {
         return true;
     }
     $result = array('\\Bitrix\\Sale\\Delivery\\Restrictions\\BySite' => 'lib/delivery/restrictions/bysite.php', '\\Bitrix\\Sale\\Delivery\\Restrictions\\ByPrice' => 'lib/delivery/restrictions/byprice.php', '\\Bitrix\\Sale\\Delivery\\Restrictions\\ByWeight' => 'lib/delivery/restrictions/byweight.php', '\\Bitrix\\Sale\\Delivery\\Restrictions\\ByMaxSize' => 'lib/delivery/restrictions/bymaxsize.php', '\\Bitrix\\Sale\\Delivery\\Restrictions\\ByLocation' => 'lib/delivery/restrictions/bylocation.php', '\\Bitrix\\Sale\\Delivery\\Restrictions\\ByPaySystem' => 'lib/delivery/restrictions/bypaysystem.php', '\\Bitrix\\Sale\\Delivery\\Restrictions\\ByDimensions' => 'lib/delivery/restrictions/bydimensions.php', '\\Bitrix\\Sale\\Delivery\\Restrictions\\ByPublicMode' => 'lib/delivery/restrictions/bypublicmode.php');
     foreach (GetModuleEvents("sale", "onSaleDeliveryRestrictionsClassNamesBuildList", true) as $handler) {
         $classes = ExecuteModuleEventEx($handler);
         if (!is_array($classes)) {
             throw new SystemException('Event services onSaleDeliveryRestrictionsClassNamesBuildList must return an array!)');
         }
         if (!empty($classes)) {
             $result = array_merge($result, $classes);
         }
     }
     \Bitrix\Main\Loader::registerAutoLoadClasses('sale', $result);
     self::$restrictionClassNames = array_keys($result);
     return true;
 }
Example #6
0
<?php

\Bitrix\Main\Loader::registerAutoLoadClasses("scale", array("Bitrix\\Scale\\Logger" => "lib/logger.php", "Bitrix\\Scale\\ServerBxInfoException" => "lib/exceptions.php", "Bitrix\\Scale\\NeedMoreUserInfoException" => "lib/exceptions.php"));
Example #7
0
<?php

global $DB, $APPLICATION, $MESS, $DBType;
\Bitrix\Main\Loader::registerAutoLoadClasses("seo", array('CSeoUtils' => 'classes/general/seo_utils.php', 'CSeoKeywords' => 'classes/general/seo_keywords.php', 'CSeoPageChecker' => 'classes/general/seo_page_checker.php'));
if (!defined('SEO_COUNTERS_DEFAULT')) {
    if (COption::GetOptionString('main', 'vendor', '') == '1c_bitrix') {
        define('SEO_COUNTERS_DEFAULT', "<img src=\"http://yandex.ru/cycounter?#DOMAIN#\" width=\"88\" height=\"31\" border=\"0\" />");
    } else {
        define('SEO_COUNTERS_DEFAULT', '<a href="http://www.whats-my-pagerank.com" target="_blank"><img src = "http://www.whats-my-pagerank.com/pagerank2.php" alt="PR Checker" border="0" /></a>');
    }
}
IncludeModuleLangFile(__FILE__);
class CSeoEventHandlers
{
    function SeoOnPanelCreate()
    {
        global $APPLICATION, $USER;
        if (!$USER->CanDoOperation('seo_tools')) {
            return false;
        }
        if (isset($_SERVER["REAL_FILE_PATH"]) && $_SERVER["REAL_FILE_PATH"] != "") {
            $currentDirPath = dirname($_SERVER["REAL_FILE_PATH"]);
            $currentFilePath = $_SERVER["REAL_FILE_PATH"];
        } else {
            $currentDirPath = $APPLICATION->GetCurDir();
            $currentFilePath = $APPLICATION->GetCurPage(true);
        }
        $encCurrentDirPath = urlencode($currentDirPath);
        $encCurrentFilePath = urlencode($currentFilePath);
        $encRequestUri = urlencode($_SERVER["REQUEST_URI"]);
        $encTitleChangerLink = '';
Example #8
0
<?php

/********************************************************************************
 * Delivery handler  http://pecom.ru/
 * https://kabinet.pecom.ru/api/v1/
 *******************************************************************************/
use Bitrix\Main\Loader;
Loader::includeModule("sale");
Loader::registerAutoLoadClasses('sale', array('Bitrix\\Sale\\Delivery\\Pecom\\Request' => 'ru/delivery/pecom/request.php', 'Bitrix\\Sale\\Delivery\\Pecom\\Adapter' => 'ru/delivery/pecom/adapter.php', 'Bitrix\\Sale\\Delivery\\Pecom\\Calculator' => 'ru/delivery/pecom/calculator.php'));
use Bitrix\Sale\Delivery\Pecom\Adapter;
use Bitrix\Sale\Delivery\Pecom\Request;
use Bitrix\Sale\Delivery\Pecom\Calculator;
IncludeModuleLangFile($_SERVER["DOCUMENT_ROOT"] . '/bitrix/modules/sale/delivery/delivery_pecom.php');
class CDeliveryPecom
{
    public static $EXTRA_DEMENSIONS_WEIGHT = 1000;
    // (kg)
    public static $EXTRA_DIMENSIONS_SIZE = 5;
    // (m)
    public static $PAYER_SHOP = "1";
    public static $PAYER_BUYER = "2";
    public static function Init()
    {
        return array('SID' => 'pecom', 'NAME' => GetMessage('SALE_DH_PECOM_NAME'), 'DESCRIPTION' => GetMessage('SALE_DH_PECOM_DESCRIPTION') . ' <a href="http://pecom.ru">http://pecom.ru</a>', 'DESCRIPTION_INNER' => GetMessage('SALE_DH_PECOM_DESCRIPTION') . ' <a href="http://pecom.ru">http://pecom.ru</a>', 'BASE_CURRENCY' => 'RUB', 'HANDLER' => __FILE__, 'DBGETSETTINGS' => array('CDeliveryPecom', 'getSettings'), 'DBSETSETTINGS' => array('CDeliveryPecom', 'setSettings'), 'GETCONFIG' => array('CDeliveryPecom', 'getConfig'), 'GETFEATURES' => array('CDeliveryPecom', 'getFeatures'), 'COMPABILITY' => array('CDeliveryPecom', 'compability'), 'CALCULATOR' => array('CDeliveryPecom', 'calculate'), 'GETEXTRAINFOPARAMS' => array('CDeliveryPecom', 'getExtraInfoParams'), 'GETORDERSACTIONSLIST' => array('CDeliveryPecom', 'getActionsList'), 'EXECUTEACTION' => array('CDeliveryPecom', 'executeAction'), "PROFILES" => array("auto" => array("TITLE" => GetMessage("SALE_DH_PECOM_AUTO_TITLE"), "DESCRIPTION" => GetMessage("SALE_DH_PECOM_AUTO_DESCR"), 'RESTRICTIONS_WEIGHT' => array(0, 0), 'RESTRICTIONS_SUM' => array(0), 'TAX_RATE' => 0, 'RESTRICTIONS_DIMENSIONS' => array("425", "265", "380")), "avia" => array("TITLE" => GetMessage("SALE_DH_PECOM_AVIA_TITLE"), "DESCRIPTION" => GetMessage("SALE_DH_PECOM_AVIA_DESCR"), 'RESTRICTIONS_WEIGHT' => array(0, 0), 'RESTRICTIONS_SUM' => array(0), 'TAX_RATE' => 0, 'RESTRICTIONS_DIMENSIONS' => array("425", "265", "380"))));
    }
    public static function getExtraInfoParams($arOrder, $arConfig, $profileId, $siteId)
    {
        $result = array();
        $locationsTo = Adapter::mapLocation($arOrder["LOCATION_TO"]);
        if (count($locationsTo) > 1) {
            $locValues = array();
Example #9
0
<?php

/*
 * This file is part of the Studio Fact package.
 *
 * (c) Kulichkin Denis (onEXHovia) <*****@*****.**>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
use Bitrix\Main\Loader;
require_once __DIR__ . '/lib/DebugFunctions.php';
Loader::registerAutoLoadClasses('citfact.debugbar', array('Citfact\\DebugBar\\DataCollector\\UrlRewriterDataCollector' => 'lib/Citfact/DebugBar/DataCollector/UrlRewriterDataCollector.php', 'Citfact\\DebugBar\\Debug' => 'lib/Citfact/DebugBar/Debug.php', 'Citfact\\DebugBar\\DebugEvent' => 'lib/Citfact/DebugBar/DebugEvent.php'));
Example #10
0
    {
        self::Initialize();
        $_1477050387 = array();
        foreach (self::$_1876111868 as $_1542032423 => $_1354309565) {
            $_1477050387[$_1542032423] = array(___253155201(78) => $GLOBALS['____891427501'][37]($_1542032423, self::$_1207514155) ? ___253155201(79) : ___253155201(80), ___253155201(81) => ___253155201(82), ___253155201(83) => array(), ___253155201(84) => false);
            foreach ($_1354309565 as $_1571962491) {
                $_1477050387[$_1542032423][___253155201(85)][$_1571962491] = $_1477050387[$_1542032423] == ___253155201(86);
            }
        }
        return $_1477050387;
    }
}
$GLOBALS['____891427501'][38](___253155201(87), ___253155201(88));
$GLOBALS[___253155201(89)] = array();
require_once $_SERVER[___253155201(90)] . BX_ROOT . ___253155201(91);
\Bitrix\Main\Loader::registerAutoLoadClasses(___253155201(92), array(___253155201(93) => ___253155201(94), ___253155201(95) => ___253155201(96), ___253155201(97) => ___253155201(98), ___253155201(99) => ___253155201(100), ___253155201(101) => ___253155201(102), ___253155201(103) => ___253155201(104), ___253155201(105) => ___253155201(106), ___253155201(107) => ___253155201(108), ___253155201(109) => ___253155201(110) . $DBType . ___253155201(111), ___253155201(112) => ___253155201(113), ___253155201(114) => ___253155201(115), ___253155201(116) => ___253155201(117), ___253155201(118) => ___253155201(119), ___253155201(120) => ___253155201(121), ___253155201(122) => ___253155201(123), ___253155201(124) => ___253155201(125), ___253155201(126) => ___253155201(127) . $DBType . ___253155201(128), ___253155201(129) => ___253155201(130), ___253155201(131) => ___253155201(132) . $DBType . ___253155201(133), ___253155201(134) => ___253155201(135), ___253155201(136) => ___253155201(137), ___253155201(138) => ___253155201(139), ___253155201(140) => ___253155201(141), ___253155201(142) => ___253155201(143) . $DBType . ___253155201(144), ___253155201(145) => ___253155201(146) . $DBType . ___253155201(147), ___253155201(148) => ___253155201(149), ___253155201(150) => ___253155201(151) . $DBType . ___253155201(152), ___253155201(153) => ___253155201(154), ___253155201(155) => ___253155201(156), ___253155201(157) => ___253155201(158), ___253155201(159) => ___253155201(160), ___253155201(161) => ___253155201(162), ___253155201(163) => ___253155201(164), ___253155201(165) => ___253155201(166), ___253155201(167) => ___253155201(168), ___253155201(169) => ___253155201(170), ___253155201(171) => ___253155201(172), ___253155201(173) => ___253155201(174), ___253155201(175) => ___253155201(176), ___253155201(177) => ___253155201(178) . $DBType . ___253155201(179), ___253155201(180) => ___253155201(181), ___253155201(182) => ___253155201(183), ___253155201(184) => ___253155201(185), ___253155201(186) => ___253155201(187), ___253155201(188) => ___253155201(189), ___253155201(190) => ___253155201(191), ___253155201(192) => ___253155201(193), ___253155201(194) => ___253155201(195), ___253155201(196) => ___253155201(197), ___253155201(198) => ___253155201(199), ___253155201(200) => ___253155201(201) . $DBType . ___253155201(202), ___253155201(203) => ___253155201(204), ___253155201(205) => ___253155201(206), ___253155201(207) => ___253155201(208), ___253155201(209) => ___253155201(210), ___253155201(211) => ___253155201(212), ___253155201(213) => ___253155201(214), ___253155201(215) => ___253155201(216), ___253155201(217) => ___253155201(218), ___253155201(219) => ___253155201(220), ___253155201(221) => ___253155201(222), ___253155201(223) => ___253155201(224)));
require_once $_SERVER[___253155201(225)] . BX_ROOT . ___253155201(226) . $DBType . ___253155201(227);
require_once $_SERVER[___253155201(228)] . BX_ROOT . ___253155201(229) . $DBType . ___253155201(230);
require_once $_SERVER[___253155201(231)] . BX_ROOT . ___253155201(232) . $DBType . ___253155201(233);
require_once $_SERVER[___253155201(234)] . BX_ROOT . ___253155201(235);
$GLOBALS['_____451545984'][13](___253155201(236), ___253155201(237), array(___253155201(238), ___253155201(239)));
require_once $_SERVER[___253155201(240)] . BX_ROOT . ___253155201(241) . $DBType . ___253155201(242);
if ($GLOBALS['____891427501'][39]($_1450254723 = $_SERVER[___253155201(243)] . BX_ROOT . ___253155201(244))) {
    $US_HOST_PROCESS_MAIN = False;
    include $_1450254723;
}
$GLOBALS[___253155201(245)]->AddJSKernelInfo(___253155201(246), array(___253155201(247), ___253155201(248), ___253155201(249), ___253155201(250), ___253155201(251), ___253155201(252), ___253155201(253), ___253155201(254), ___253155201(255), ___253155201(256), ___253155201(257), ___253155201(258), ___253155201(259), ___253155201(260), ___253155201(261), ___253155201(262), ___253155201(263)));
$GLOBALS[___253155201(264)]->AddCSSKernelInfo(___253155201(265), array(___253155201(266), ___253155201(267), ___253155201(268), ___253155201(269)));
$GLOBALS[___253155201(270)]->AddJSKernelInfo(___253155201(271), array(___253155201(272), ___253155201(273), ___253155201(274), ___253155201(275)));
if ($GLOBALS['____891427501'][40]($_1450254723 = $_SERVER[___253155201(276)] . ___253155201(277))) {
    include_once $_1450254723;
Example #11
0
<?php

$GLOBALS['____1055296423'] = array(base64_decode('ZX' . 'J' . 'yb3J' . 'fcmVwb3J0aW5n'), base64_decode('c3Vi' . 'c3Ry'), base64_decode('c' . '3' . 'RybGVu'), base64_decode('c3Ryb' . 'GVu'), base64_decode('ZXhwbG9k' . 'ZQ' . '=='), base64_decode('bWljcm90' . 'a' . 'W1l'), base64_decode('ZGVmaW5' . 'l'), base64_decode('ZGVma' . 'W5l'), base64_decode('d' . 'mVyc2l' . 'v' . 'bl9jb21wYXJl'), base64_decode('' . 'ZGV' . 'maW' . '5l' . 'ZA=='), base64_decode('' . 'ZGVma' . 'W5l'), base64_decode('ZGV' . 'maW' . '5l'), base64_decode('Z' . 'G' . 'Vm' . 'aW5' . 'lZA=='), base64_decode('ZGVmaW5l'), base64_decode('' . 'ZG' . 'VmaW5' . 'lZA' . '=='), base64_decode('Z' . 'GVm' . 'aW5l'), base64_decode('ZGV' . 'maW5l' . 'ZA=' . '='), base64_decode('ZGVmaW5l'), base64_decode('ZG' . 'VmaW5lZA=='), base64_decode('ZGV' . 'maW' . '5l'), base64_decode('ZG' . 'V' . 'm' . 'aW5lZA=='), base64_decode('ZGVma' . 'W' . '5' . 'l'), base64_decode('' . 'ZGV' . 'ma' . 'W' . '5' . 'l' . 'ZA=='), base64_decode('ZGVmaW5l'), base64_decode('ZGVmaW5lZA=='), base64_decode('ZGVm' . 'a' . 'W5l'), base64_decode('ZGVmaW5lZA=='), base64_decode('ZGVmaW5' . 'l'), base64_decode('' . 'ZGV' . 'maW5' . 'lZA=='), base64_decode('Z' . 'GVma' . 'W5l'), base64_decode('ZG' . 'VmaW' . '5' . 'lZA=='), base64_decode('ZGVmaW5l'), base64_decode('ZGVmaW5' . 'lZA' . '=='), base64_decode('ZGVma' . 'W5l'), base64_decode('ZGVm' . 'aW5l' . 'Z' . 'A=='), base64_decode('' . 'ZGVmaW5l'), base64_decode('' . 'ZGVma' . 'W5l' . 'ZA=='), base64_decode('' . 'Z' . 'GVma' . 'W' . '5l'), base64_decode('Z' . 'GVmaW' . '5lZA=='), base64_decode('' . 'ZGVmaW5l'), base64_decode('' . 'ZGVma' . 'W' . '5' . 'lZA=='), base64_decode('ZGVmaW' . '5l'), base64_decode('ZGVm' . 'aW' . '5lZA=='), base64_decode('ZGVmaW5l'), base64_decode('ZGVm' . 'aW5lZA=' . '='), base64_decode('ZGV' . 'ma' . 'W' . '5' . 'l'), base64_decode('ZGVma' . 'W5lZA' . '=='), base64_decode('ZGVmaW5l'), base64_decode('ZGVm' . 'aW' . '5lZA=='), base64_decode('ZGV' . 'maW5l'), base64_decode('Z' . 'GVm' . 'aW' . '5l' . 'ZA=='), base64_decode('ZG' . 'VmaW' . '5l'), base64_decode('' . 'ZG' . 'VmaW5' . 'l' . 'ZA=='), base64_decode('' . 'Z' . 'GVmaW5l'), base64_decode('YXJy' . 'YX' . 'l' . 'fa2V5X2' . 'V4aXN0' . 'c' . 'w=' . '='), base64_decode('c' . '3R' . 'yd' . 'G91cHBlc' . 'g=='), base64_decode('c2' . 'V0Y2' . '9va2l' . 'l'), base64_decode('' . 'YXJy' . 'Y' . 'X' . 'l' . 'fa2' . 'V5X2V4' . 'aXN0cw=' . '='), base64_decode('Zmls' . 'Z' . 'V9le' . 'GlzdHM' . '='), base64_decode('ZXJ' . 'y' . 'b3Jf' . 'c' . 'mVwb3J0aW' . '5n'), base64_decode('Zm' . 'lsZV9l' . 'eGl' . 'zdHM='));
function ___1201625077($_506460352)
{
    static $_687561123 = false;
    if ($_687561123 == false) {
        $_687561123 = array('' . 'L3N' . '0' . 'YXJ' . '0L' . 'nBocA==', 'L2J' . '4X3' . 'Jv' . 'b' . '3Q' . 'uc' . 'G' . 'h' . 'w', '' . 'RE9DVU1' . 'F' . 'T' . 'lRfU' . 'k9PVA==', 'L' . '2Jpd' . 'HJpeC9' . 't' . 'b2R1' . 'bGVz' . 'L2' . '1haW4v' . 'bG' . 'li' . 'L2xvYWR' . 'lci' . '5waH' . 'A=', 'bWFpbg' . '==', 'Yml0' . 'cml4XG1h' . 'aW' . '5cY' . 'XBwb' . 'G' . 'ljYXRp' . 'b24=', 'bGliL2F' . 'wcGxpY2' . 'F0a' . 'W' . '9uLn' . 'Boc' . 'A==', 'Ym' . 'l0' . 'cml4XG1' . 'haW5caHR0cGFw' . 'cG' . 'x' . 'pY2F0' . 'aW9u', 'bGliL2h0dHBhc' . 'H' . 'Bsa' . 'W' . 'N' . 'hd' . 'Glvbi5waHA=', '' . 'Yml0cml4X' . 'G1ha' . 'W5c' . 'YXJndW1lb' . 'nR' . 'leGNlcHRpb24=', 'bGliL2V4Y2Vw' . 'dG' . 'lvbi5waHA=', 'Yml0cml4X' . 'G1haW5cYXJndW1lbnR' . 'ud' . 'WxsZXhjZ' . 'XB0aW9u', 'bGl' . 'iL2V' . '4Y2' . 'Vwd' . 'Gl' . 'v' . 'b' . 'i' . '5w' . 'aHA=', 'Yml0cml' . '4' . 'XG1haW5c' . 'YXJndW1lbnRvd' . 'XRv' . 'Zn' . 'JhbmdlZXhjZXB0aW9u', 'bGli' . 'L2V4Y' . '2VwdGlvbi' . '5waHA=', 'Yml' . '0cml4XG' . '1haW5c' . 'YXJn' . 'd' . 'W1lbnR0' . 'eXB' . 'lZXhjZXB0aW9u', '' . 'b' . 'GliL2V4' . 'Y2VwdGlvbi' . '5wa' . 'HA' . '=', 'Yml0cml4' . 'XG1haW' . '5' . 'cbm9' . '0aW1w' . 'bGV' . 'tZW50Z' . 'WRle' . 'GNlcHRp' . 'b' . '24=', 'bGliL2V4Y2V' . 'wd' . 'Gl' . 'vbi5waHA=', 'Yml0cm' . 'l4XG1haW5cbm90c' . '3VwcG9y' . 'dG' . 'VkZ' . 'X' . 'hjZXB' . '0aW9' . 'u', 'bG' . 'liL2V4Y2VwdGlvbi5' . 'waHA=', 'Yml0c' . 'ml4XG1h' . 'a' . 'W5cb' . '2' . 'JqZWN0cHJ' . 'v' . 'cGV' . 'ydHlleGNlc' . 'HR' . 'pb2' . '4=', 'b' . 'GliL2V' . '4Y2VwdGlv' . 'bi5' . 'waH' . 'A=', 'Yml0c' . 'ml' . '4XG1h' . 'a' . 'W5cb2JqZ' . 'WN0bm90Zm' . '91bm' . 'RleGNlcHRpb2' . '4=', '' . 'bGl' . 'iL' . '2' . 'V4Y2VwdGlvbi5waHA=', 'Ym' . 'l0' . 'c' . 'm' . 'l' . '4XG1haW5cb' . '2JqZWN0ZX' . 'hj' . 'ZXB0aW9u', '' . 'bG' . 'liL' . '2V' . '4Y2VwdGlvbi5w' . 'aHA=', 'Yml0' . 'c' . 'ml4XG1' . 'haW5c' . 'c3lzd' . 'GVtZXhj' . 'ZXB0a' . 'W' . '9u', 'bGliL' . '2' . 'V4' . 'Y2VwdGlvbi5' . 'w' . 'a' . 'HA=', '' . 'Yml0cml4XG' . '1haW' . '5' . 'c' . 'a' . 'W9caW5' . '2YWxpZH' . 'Bhd' . 'GhleGNlcHRpb24=', 'bGli' . 'L' . '2' . 'lv' . 'L2' . 'lv' . 'ZXhj' . 'ZX' . 'B' . '0aW9u' . 'Ln' . 'BocA' . '=' . '=', '' . 'Yml0c' . 'ml4X' . 'G1haW5caW' . '9c' . 'ZmlsZ' . 'W' . '5v' . 'd' . 'G' . 'Z' . 'vd' . 'W' . '5kZX' . 'hjZXB' . '0aW' . '9' . 'u', 'bGliL2' . 'lvL' . '2lv' . 'ZXhjZXB0aW' . '9uL' . 'nBocA=' . '=', '' . 'Yml' . '0c' . 'ml4XG1haW5caW9cZm' . 'lsZWR' . 'lbGV' . '0Z' . 'WV' . '4' . 'Y2VwdGl' . 'vbg' . '==', 'bGliL2' . 'lvL2l' . 'vZX' . 'h' . 'jZXB0' . 'aW9' . 'uL' . 'nBocA==', 'Y' . 'm' . 'l0cml4' . 'XG1ha' . 'W5c' . 'a' . 'W9cZml' . 'sZW9wZW5l' . 'eG' . 'Nl' . 'cH' . 'Rpb24' . '=', '' . 'bGl' . 'iL2l' . 'vL' . '2' . 'lvZXhjZXB0' . 'aW9uLn' . 'BocA==', 'Yml' . '0cml4XG1ha' . 'W5caW9cZm' . 'lsZW' . '5vdG9wZ' . 'W5' . 'lZGV4Y2VwdGlvbg==', '' . 'bGliL' . '2' . 'lvL2' . 'lvZXh' . 'jZ' . 'XB' . '0' . 'a' . 'W9uLn' . 'B' . 'o' . 'cA==', 'Yml0' . 'cml' . '4XG' . '1ha' . 'W5cY' . '2' . '9udGV4dA==', 'bGl' . 'i' . 'L2N' . 'vbnRle' . 'HQ' . 'ucG' . 'hw', 'Yml0cml4XG1' . 'haW5caHR' . '0cG' . 'N' . 'v' . 'bnRleHQ=', '' . 'bGliL' . '2h0dH' . 'Bjb2' . '50ZX' . 'h' . '0LnBoc' . 'A==', 'Yml0cml4' . 'X' . 'G1h' . 'aW5' . 'cZGl' . 'zcGF' . '0' . 'Y' . '2hl' . 'cg=' . '=', '' . 'bG' . 'liL2' . 'R' . 'pc3B' . 'h' . 'dGNoZX' . 'IucGhw', 'Yml' . '0cm' . 'l4XG1haW5c' . 'ZW52' . 'aXJv' . 'bm1l' . 'bn' . 'Q=', 'b' . 'GliL2Vu' . 'dmlyb25' . 'tZ' . 'W' . '5' . '0LnB' . 'ocA==', 'Y' . 'ml0' . 'cml' . '4' . 'XG1h' . 'aW' . '5cZX' . 'ZlbnQ=', 'bG' . 'li' . 'L2V2ZW50Ln' . 'Bo' . 'cA==', 'Yml0cml4' . 'XG1h' . 'aW5cZXZ' . 'lb' . 'nR' . 't' . 'YW5hZ2Vy', 'bGl' . 'iL2V' . '2ZW50bWFuY' . 'Wdl' . 'ci5waHA' . '=', 'Y' . 'ml0cml4' . 'XG' . '1haW5cZXZlb' . 'n' . 'Ry' . 'Z' . 'XN1bHQ=', 'bGliL2V2Z' . 'W50cmV' . 'zdW' . 'x0' . 'L' . 'n' . 'BocA' . '==', '' . 'Yml0cml' . '4XG1haW' . '5ccm' . 'V' . 'x' . 'dWVz' . 'dA==', 'bGli' . 'L' . '3JlcXVl' . 'c3QucGhw', 'Yml0cml4XG1h' . 'aW' . '5ca' . 'HR0cHJlcXVlc' . '3Q=', 'bGliL' . '2h' . '0d' . 'HBy' . 'ZXF1' . 'ZXN0Ln' . 'BocA==', 'Ym' . 'l0c' . 'ml' . '4XG1haW5' . 'ccmVzcG' . '9' . 'uc2U=', 'bGliL3Jlc' . '3Bvb' . 'nNlLnBocA==', 'Yml0cm' . 'l4' . 'XG1haW5caHR0cHJlc3Bv' . 'bnNl', 'bG' . 'liL2h0dHByZ' . 'XNwb25zZS' . '5w' . 'aHA=', '' . 'Ym' . 'l' . '0c' . 'ml4XG1haW' . '5cbW' . '9kdW' . 'x' . 'lbWFuYW' . 'dlcg==', 'bG' . 'liL21vZHV' . 'sZW' . '1hbmFnZX' . 'IucGhw', '' . 'Y' . 'ml0c' . 'ml' . '4XG1' . 'h' . 'aW' . '5cc2VydmVy', 'bGliL' . '3Nl' . 'c' . 'nZlci5waHA=', 'Ym' . 'l0c' . 'ml4XG1haW5cY29u' . 'ZmlnX' . 'G' . 'N' . 'vbmZp' . 'Z3' . 'VyY' . 'X' . 'Rpb2' . '4=', 'bGl' . 'iL2NvbmZpZy9jb2' . '5maWd1c' . 'mF0' . 'aW' . '9uLnBocA==', 'Yml0cml' . '4' . 'XG' . '1h' . 'aW5cY29uZmln' . 'XG9wd' . 'Glvbg==', 'b' . 'GliL' . '2NvbmZpZy9vcHRpb24ucGh' . 'w', 'Y' . 'ml' . '0' . 'cml' . '4XG1' . 'ha' . 'W5' . 'cY' . '29' . 'udGV4dFxjdW' . 'x0dXJl', 'bGliL2N' . 'vbnRleHQvY3Vsd' . 'HVyZS5' . 'waH' . 'A' . '=', 'Yml' . '0' . 'cml' . '4XG' . '1haW5' . 'cY29u' . 'd' . 'GV4d' . 'FxzaXRl', 'b' . 'GliL2NvbnR' . 'l' . 'e' . 'HQ' . 'vc2l0ZS5waHA=', 'Yml' . '0c' . 'ml4XG' . '1haW5cZGF0YVx' . 'jY' . 'WNoZQ==', 'bGliL2' . 'RhdGEvY2FjaGUucGhw', '' . 'Yml0cml4XG1ha' . 'W5cZGF0Y' . 'Vxj' . 'Y' . 'WNoZWVuZ2luZWFwYw' . '==', 'bGliL2R' . 'hdGEvY2F' . 'jaGVlbmdpbmVhcGMucGhw', 'Yml0cml4XG1' . 'haW5' . 'cZGF0YVxjY' . 'WNoZ' . 'WVuZ2luZWVhY2NlbGVy' . 'YXR' . 'v' . 'cg==', 'bGliL2Rhd' . 'GE' . 'vY2Fja' . 'GVlbmdpb' . 'mVlYW' . 'NjZWxlc' . 'mF0' . 'b3Iu' . 'cG' . 'hw', 'Yml' . '0' . 'cm' . 'l' . '4' . 'XG1' . 'ha' . 'W5' . 'cZGF' . '0' . 'YVxjYW' . 'NoZWVuZ2luZW1' . 'l' . 'b' . 'WN' . 'hY2hl', 'bGli' . 'L2RhdGEvY2FjaGVl' . 'b' . 'm' . 'dpbm' . 'VtZ' . 'W1jYWNoZS5wa' . 'HA=', 'Yml' . '0' . 'cml4XG' . '1h' . 'aW5' . 'cZGF0' . 'YV' . 'x' . 'jYWNoZW' . 'VuZ2l' . 'u' . 'ZWZpbGVz', 'bGliL' . '2RhdGEv' . 'Y2' . 'FjaGVl' . 'b' . 'mdpbmVm' . 'aWxlcy5waHA=', 'Yml' . '0c' . 'ml4XG1h' . 'aW' . '5' . 'cZ' . 'GF0YV' . 'xjYWN' . 'o' . 'ZWVuZ2l' . 'uZW5vbm' . 'U' . '=', 'bGli' . 'L2RhdGEvY2FjaGVlbm' . 'dpbmVub25lLn' . 'Boc' . 'A==', 'Ym' . 'l' . '0cml4' . 'XG1' . 'ha' . 'W5cZGF' . '0YVxjb25uZWN0a' . 'W' . '9u', 'bGl' . 'iL2R' . 'hdG' . 'Ev' . 'Y29u' . 'b' . 'm' . 'V' . 'jdGl' . 'vbi5waHA=', 'Yml0cml' . '4XG1ha' . 'W5cZGF0' . 'YVxjb2' . '5uZWN0aW' . '9u' . 'cG9' . 'v' . 'b' . 'A' . '==', 'bGl' . 'iL2RhdGE' . 'vY' . '2' . '9ubmV' . 'jdGlvbnBvb2' . 'wuc' . 'Ghw', 'Yml0c' . 'ml4' . 'XG1haW5c' . 'ZGF0YVxpY2F' . 'jaG' . 'VlbmdpbmU=', 'bGl' . 'i' . 'L2R' . 'hdGE' . 'vY2F' . 'jaG' . 'UucGhw', 'Yml0cml' . '4XG1haW5cZGF0' . 'YVxo' . 'c3BocHJlYW' . 'Rjb25uZWN0aW9u', 'b' . 'Gl' . 'iL2RhdGEv' . 'aHN' . 'waHB' . 'yZWFk' . 'Y29' . 'u' . 'b' . 'mV' . 'jdGlvbi' . '5wa' . 'HA' . '=', 'Yml0c' . 'ml4XG1h' . 'aW5' . 'cZGF0YVxtYW5' . 'hZ2VkY2FjaGU=', 'b' . 'GliL2RhdGEvbWFu' . 'YWdlZGN' . 'hY2hlLnB' . 'oc' . 'A==', 'Yml' . '0' . 'cml' . '4XG' . '1ha' . 'W' . '5cZGF0' . 'Y' . 'Vx0Y' . 'WdnZWRjYWNoZQ' . '==', 'bGliL2' . 'RhdGEvdGF' . 'nZ' . '2Vk' . 'Y2FjaGU' . 'u' . 'cGhw', 'Yml0cml4XG1haW5cZGF0YVxtZW1' . 'jYWNo' . 'ZWNvb' . 'm5' . 'lY3R' . 'p' . 'b2' . '4=', 'b' . 'GliL2Rh' . 'd' . 'GEvbWVtY2F' . 'j' . 'aGVj' . 'b25u' . 'Z' . 'WN' . '0aW' . '9u' . 'L' . 'nBo' . 'cA' . '=' . '=', '' . 'Yml' . '0cml4XG' . '1haW5cZGF0YVxtZW1' . 'j' . 'YWNoZW' . 'Rj' . 'b' . '25uZWN0aW9u', 'bGl' . 'iL2RhdGE' . 'vbWVtY2F' . 'jaGVkY29ubm' . 'VjdGlv' . 'bi5' . 'waHA=', 'Yml0c' . 'ml4XG1h' . 'aW5cZGF0Y' . 'Vxu' . 'b3' . 'NxbGNvbm5lY' . '3R' . 'p' . 'b' . '24=', '' . 'b' . 'Gli' . 'L2RhdGEvb' . 'm9z' . 'c' . 'Wx' . 'jb2' . '5' . 'uZWN0' . 'aW9uLnBocA==', '' . 'Yml0c' . 'ml4XG1haW5c' . 'ZG' . 'J' . 'cYXJ' . 'y' . 'YX' . 'ly' . 'ZXN1bH' . 'Q' . '=', 'b' . 'GliL2RiL2FycmF' . '5cmVzdWx0' . 'L' . 'nB' . 'ocA==', 'Yml0cm' . 'l4XG1' . 'haW5cZGJccmVz' . 'dWx0', '' . 'bGliL' . '2' . 'RiL3Jlc' . '3V' . 'sdC5wa' . 'HA=', '' . 'Yml' . '0c' . 'ml4XG1h' . 'aW5cZ' . 'GJc' . 'Y2' . '9' . 'ubmVjdGl' . 'v' . 'bg==', 'bGli' . 'L' . '2RiL2Nvbm5lY3Rpb24uc' . 'Ghw', 'Yml0c' . 'ml4X' . 'G1h' . 'aW5c' . 'ZGJcc3FsZXhjZXB0aW9u', '' . 'bG' . 'liL2RiL3NxbGV4' . 'Y2VwdGlvbi5waHA=', 'Yml0cml4XG1haW5cZ' . 'GJcc3Fs' . 'cXVlcnl' . 'leGNlcHRpb24=', 'bGliL2RiL3NxbGV4Y2V' . 'wdG' . 'l' . 'vbi' . '5waHA=', 'Ym' . 'l0' . 'cml' . '4XG1h' . 'aW5cZGJ' . 'c' . 'c3' . 'FsZ' . 'Xh' . 'wcm' . 'Vzc2' . 'l' . 'vbg==', 'bGliL2RiL3NxbGV4' . 'cHJl' . 'c3Npb24uc' . 'Ghw', 'Y' . 'ml0' . 'cml4XG1haW5c' . 'ZGJcc3Fs' . 'aGVscGVy', 'bGl' . 'iL' . '2RiL3' . 'Nxb' . 'G' . 'hl' . 'bHBlci5wa' . 'HA=', 'Y' . 'ml0' . 'cm' . 'l4' . 'X' . 'G1h' . 'aW5cZGJc' . 'bX' . 'lzcWxjb2' . '5uZWN0aW9u', 'b' . 'Gl' . 'iL2' . 'RiL' . '2' . '15c3' . 'Fs' . 'Y29u' . 'bmVjdGlv' . 'bi5w' . 'aHA=', '' . 'Yml0' . 'cml4' . 'XG1' . 'haW5c' . 'ZGJ' . 'cbXlzcWxyZXN1bHQ=', '' . 'bGliL2RiL215' . 'c' . '3Fs' . 'c' . 'mVzdW' . 'x0' . 'LnB' . 'ocA=' . '=', '' . 'Yml0cml4X' . 'G' . '1haW' . '5cZGJ' . 'cbXlz' . 'cWxzcWxoZ' . 'WxwZXI=', 'bGli' . 'L2RiL215c3' . 'F' . 's' . 'c' . '3Fs' . 'a' . 'GVscGVyLnBocA==', 'Y' . 'ml0c' . 'ml4XG1haW5cZGJ' . 'c' . 'bXl' . 'z' . 'cWxpY29' . 'ubmVjdGlvbg' . '==', 'bGliL2RiL215c3FsaW' . 'Nv' . 'bm' . '5lY3Rpb24u' . 'cGhw', 'Yml0cml4XG1haW5cZGJcbX' . 'lzcW' . 'xpcmVzdWx' . '0', 'b' . 'GliL' . '2R' . 'iL215' . 'c3FsaX' . 'J' . 'lc3Vsd' . 'C5waHA' . '=', 'Yml' . '0c' . 'ml4XG1haW5cZGJc' . 'bXlzcWxpc3F' . 'saG' . 'VscGVy', 'bGliL2R' . 'iL2' . '15' . 'c' . '3FsaXNxbGh' . 'lbHBlci5w' . 'a' . 'H' . 'A=', 'Yml0cml4XG1' . 'haW5cZG' . 'JcbXNzcWxjb25uZWN0aW9u', '' . 'bG' . 'liL2R' . 'iL2' . '1z' . 'c3' . 'FsY29ubmV' . 'jd' . 'Gl' . 'vb' . 'i5waH' . 'A' . '=', '' . 'Yml0' . 'cml4XG1haW5cZGJc' . 'b' . 'XN' . 'zcW' . 'xyZXN1bH' . 'Q=', 'b' . 'G' . 'liL2RiL2' . '1' . 'zc3Fscm' . 'Vzd' . 'Wx0' . 'L' . 'nBocA=' . '=', '' . 'Ym' . 'l0c' . 'ml' . '4XG1' . 'haW5c' . 'ZGJc' . 'bXNzcWxzcWxoZWxw' . 'ZXI=', 'bGliL2RiL21' . 'zc3Fsc3F' . 'saG' . 'VscG' . 'VyLnBo' . 'cA==', 'Y' . 'ml0c' . 'ml4X' . 'G1h' . 'aW' . '5cZGJcb' . '3JhY2x' . 'lY29ub' . 'mVjd' . 'G' . 'lvbg==', '' . 'bG' . 'liL2RiL' . '29yYW' . 'NsZWNvbm5lY3Rp' . 'b' . '24ucGhw', 'Yml' . '0' . 'cml' . '4' . 'XG1h' . 'aW5cZGJcb3JhY2' . 'x' . 'l' . 'cmVz' . 'dWx0', 'b' . 'GliL' . '2Ri' . 'L29yYWNsZXJlc3VsdC' . '5waHA=', 'Yml' . '0c' . 'ml4XG1ha' . 'W5cZGJ' . 'cb' . '3' . 'J' . 'hY2x' . 'lc3' . 'Fsa' . 'GVsc' . 'GVy', '' . 'bGl' . 'iL2R' . 'i' . 'L29yYW' . 'N' . 'sZXN' . 'xb' . 'Ghl' . 'bHB' . 'lci5wa' . 'HA=', '' . 'Yml0cml4' . 'XG1ha' . 'W5cZGlhZ' . '1x' . 'odHRwZXhjZXB0aW9' . 'uaGFuZGxlcm91dHB1dA==', 'bGli' . 'L2RpYWcva' . 'HR0cGV4Y2Vw' . 'dGlvbmhh' . 'bmR' . 'sZXJvdX' . 'RwdXQuc' . 'G' . 'hw', 'Yml' . '0' . 'cml' . '4X' . 'G1haW' . '5cZ' . 'G' . 'lhZ1x' . 'ma' . 'Wx' . 'lZXhjZX' . 'B0aW9uaGFuZGx' . 'lcmxv' . 'Zw' . '=' . '=', 'bGliL2Rp' . 'YW' . 'cvZmlsZW' . 'V4Y' . '2' . 'VwdG' . 'lvbmhh' . 'bmRsZX' . 'Jsb2cucG' . 'hw', 'Ym' . 'l0' . 'cml4XG1haW5cZGl' . 'hZ1xleGN' . 'lcHRpb25oYW5' . 'k' . 'b' . 'GV' . 'y', 'b' . 'Gli' . 'L2RpYWc' . 'vZXhjZ' . 'X' . 'B0a' . 'W' . '9' . 'uaGFuZ' . 'Gx' . 'lci5waHA=', '' . 'Yml0cm' . 'l' . '4' . 'XG1' . 'haW5cZGlhZ1xp' . 'ZXh' . 'j' . 'Z' . 'XB0aW9' . 'uaGFuZGxlcm' . '91dHB' . '1' . 'd' . 'A' . '==', 'bG' . 'liL2Rp' . 'YWcvaWV' . '4Y' . '2Vwd' . 'Glvbm' . 'hhbmRsZ' . 'XJv' . 'dXRwd' . 'XQucGhw', '' . 'Yml0' . 'cml4XG1haW' . '5' . 'cZG' . 'lh' . 'Z1xle' . 'GNlcHRpb25o' . 'YW' . '5k' . 'bGV' . 'ybG9n', 'bGliL2Rp' . 'YWcvZXhjZ' . 'XB0' . 'aW9uaGFuZGxl' . 'cmx' . 'vZy5waHA=', 'Y' . 'ml' . '0cm' . 'l4XG1haW' . '5caW9cZmls' . 'Z' . 'Q==', 'bG' . 'liL2' . 'lvL2ZpbGUucG' . 'hw', 'Ym' . 'l0cml4XG1h' . 'aW5ca' . 'W9cZmlsZ' . 'WV' . 'udHJ' . '5', 'bGli' . 'L2lvL' . '2ZpbGV' . 'lbnR' . 'yeS5wa' . 'HA' . '=', '' . 'Yml0cml4XG1haW5' . 'c' . 'aW9ccGF0aA==', 'b' . 'Gli' . 'L2l' . 'vL3BhdGguc' . 'Ghw', 'Yml0cm' . 'l' . '4XG1haW5ca' . 'W9cZmlsZXN5c3Rl' . 'b' . 'WVudHJ5', 'bGli' . 'L2l' . 'v' . 'L2ZpbGVzeXN0ZW1l' . 'bnRyeS' . '5waHA=', 'Yml0cml4XG' . '1ha' . 'W5' . 'caW9' . 'ca' . 'WZpbGVzdH' . 'JlY' . 'W0=', 'bGliL' . '2lvL2lmaW' . 'xlc3Ry' . 'ZWFtLnB' . 'ocA==', 'Y' . 'm' . 'l0cml4' . 'XG1haW' . '5' . 'c' . 'bG9' . 'jYW' . 'xpemF0' . 'a' . 'W9u' . 'XGx' . 'vYw==', 'bGl' . 'iL2' . 'xvY' . '2FsaXphd' . 'Glvbi9sb2M' . 'ucGhw', 'Yml0cml4' . 'XG1haW5cb' . 'WFp' . 'bF' . 'x' . 'tYWls', 'bGliL21h' . 'aWwvbW' . 'Fp' . 'bC5waHA=', 'Yml0cm' . 'l' . '4XG' . '1ha' . 'W5c' . 'bWFpb' . 'Fx0c' . 'mFja2' . 'lu' . 'Zw==', 'bGliL21haWwvdHJh' . 'Y2tpbmcucGhw', 'Yml0cml' . '4' . 'XG1haW5cbWFpb' . 'Fx' . 'ldmV' . 'udG1hbmFn' . 'ZXI' . '=', 'bGliL' . '21' . 'haWwvZXZlbn' . 'RtYW5hZ2' . 'VyLnBocA==', 'Yml0cml4' . 'XG1haW5c' . 'bWF' . 'pbFxldmVu' . 'dG1lc3NhZ2Vj' . 'b2' . '1waW' . 'xlcg' . '==', 'bGliL' . '21haWwvZXZl' . 'bnRtZ' . 'XNzYW' . 'dl' . 'Y29' . 'tcGlsZXI' . 'ucGhw', '' . 'Ym' . 'l0cml4' . 'XG1haW5c' . 'bWFpbFxldm' . 'VudG1lc3N' . 'hZ2V' . '0aGVtZW' . 'NvbX' . 'Bpb' . 'G' . 'Vy', 'bGliL' . '2' . '1h' . 'aWwvZXZlbn' . 'RtZ' . 'XNzYWdldG' . 'hlbWV' . 'j' . 'b21waWxlci5w' . 'aHA=', '' . 'Y' . 'ml0c' . 'ml4XG' . '1haW5cbW' . 'FpbF' . 'xpbn' . 'Rlc' . 'm5' . 'hbFxld' . 'mVudA==', 'bG' . 'liL21' . 'haW' . 'w' . 'vaW50Z' . 'XJuYW' . 'wv' . 'ZX' . 'Z' . 'lbn' . 'Q' . 'ucGhw', 'Yml0cml4XG1ha' . 'W5cb' . 'WFpbF' . 'xpbn' . 'R' . 'lc' . 'm5hbFxldmVud' . 'GF0dGFjaG1lbnQ' . '=', 'bGl' . 'i' . 'L2' . '1' . 'haWwv' . 'aW' . '50ZXJuYW' . 'wvZXZl' . 'b' . 'nRhdHRhY2htZ' . 'W' . '50LnBocA==', 'Yml0cml4XG1haW5c' . 'bW' . 'Fpb' . 'Fxpbn' . 'Rlcm5hbFxldmVud' . 'G' . '1lc3Nh' . 'Z2U=', 'bGliL21haWwvaW50ZXJuY' . 'WwvZXZlbnRtZX' . 'NzYWdl' . 'LnBocA==', 'Yml' . '0cml' . '4XG1haW5' . 'c' . 'bWFpbFxpbnRlcm' . '5hbFxld' . 'm' . 'VudG' . '1lc3N' . 'hZ' . '2Vza' . 'XRl', 'b' . 'GliL21' . 'h' . 'aWwv' . 'a' . 'W' . '50ZXJu' . 'YWwvZX' . 'ZlbnRtZXNzYWdlc' . '2l0ZS5w' . 'aHA=', 'Yml0cml4X' . 'G' . '1haW' . '5cbWF' . 'pb' . 'Fxp' . 'bnRlc' . 'm' . '5hb' . 'F' . 'xldmV' . 'udG1lc3NhZ2V' . 'hdHRhY2htZW50', '' . 'bGliL21haWwva' . 'W' . '50' . 'ZXJuYWwvZXZlb' . 'n' . 'RtZXNzYW' . 'dlYXR0' . 'YWNo' . 'bWVud' . 'C5w' . 'aHA=', 'Yml0cml4XG1haW5cbWFpbFxpbnRlcm5h' . 'bFxldmVudHR' . '5cGU=', 'bGl' . 'iL21' . 'ha' . 'Wwv' . 'aW' . '50ZXJuYWwv' . 'ZXZ' . 'lbnR0eXBlL' . 'nBocA==', '' . 'Yml0cml' . '4XG1h' . 'aW' . '5cdG' . 'V4dFx' . 'jb252ZXJ0ZX' . 'I=', 'bGliL' . '3' . 'Rl' . 'eHQvY' . '29udmVydGV' . 'y' . 'LnBoc' . 'A==', '' . 'Ym' . 'l0c' . 'ml4XG1haW5cd' . 'GV4dFx' . 'l' . 'bX' . 'B0eWNvb' . 'n' . 'Zl' . 'cnRlcg==', 'bGliL3Rl' . 'eH' . 'Qv' . 'Z' . 'W1wdHljb2' . '52ZXJ' . '0ZXIu' . 'cGhw', 'Ym' . 'l0cml' . '4XG1ha' . 'W' . '5cdGV4dFxlb' . 'mNvZ' . 'GluZw==', '' . 'b' . 'G' . 'l' . 'iL3RleHQvZW' . '5jb2' . 'R' . 'pbmc' . 'ucGhw', 'Yml0cml4' . 'XG1ha' . 'W' . '5cdGV4dFxod' . 'G1sY29udmVydGV' . 'y', 'bGliL3Rle' . 'HQvaHR' . 'tbGN' . 'vbnZ' . 'l' . 'cnRlc' . 'i' . '5' . 'wa' . 'HA' . '=', '' . 'Y' . 'ml0cml4XG1haW5cdGV4' . 'dFxzdH' . 'Jpbmc=', 'b' . 'G' . 'li' . 'L3RleHQvc3Ry' . 'a' . 'W5nLnBo' . 'cA==', '' . 'Y' . 'ml0cml' . '4XG1haW5cdGV4dF' . 'x' . '4bWxjb' . '25' . '2ZX' . 'J0' . 'ZXI=', 'bGli' . 'L3R' . 'leHQv' . 'eG1' . 's' . 'Y29' . 'udmVy' . 'dGVyLnB' . 'ocA==', 'Yml0c' . 'ml4' . 'XG1haW5cdHlw' . 'ZVx' . 'jb2' . 'xsZWN' . '0' . 'aW9' . 'u', 'b' . 'Gli' . 'L3R5' . 'cGUv' . 'Y29sbGVj' . 'dGlvb' . 'i5waHA' . '=', '' . 'Y' . 'ml0cml4X' . 'G1' . 'h' . 'aW' . '5' . 'c' . 'dHl' . 'wZVxkYXRl', 'bGliL3R5cGUvZG' . 'F0ZS5waH' . 'A=', '' . 'Yml0c' . 'ml4X' . 'G' . '1haW5cdHl' . 'wZ' . 'V' . 'xkYX' . 'RldG' . 'ltZQ==', 'bG' . 'l' . 'iL3R' . '5cGUv' . 'ZGF0ZXRpbWU' . 'ucGhw', 'Y' . 'm' . 'l0c' . 'ml4XG1haW5cd' . 'HlwZVx' . 'kaW' . 'N0aW9' . 'uYX' . 'J' . '5', 'b' . 'GliL' . '3R5cGUvZGljdGlvbmFyeS5w' . 'aH' . 'A=', 'Yml0cml4XG1' . 'haW5' . 'c' . 'dHlwZ' . 'V' . 'xm' . 'aWx0ZX' . 'JhYmxlZGl' . 'jdGl' . 'v' . 'b' . 'mFy' . 'eQ=' . '=', 'bGliL3R' . '5cG' . 'UvZmlsd' . 'GVy' . 'Y' . 'WJsZW' . 'RpY3Rpb25hcnkucGhw', 'Y' . 'ml0cm' . 'l4XG1' . 'haW' . '5c' . 'dHlwZ' . 'Vx' . 'wYX' . 'JhbWV0Z' . 'XJkaWN' . '0aW9' . 'uYX' . 'J' . '5', '' . 'bGliL3R' . '5cGUvcGFyYW1ldGV' . 'yZ' . 'G' . 'lj' . 'dGl' . 'vb' . 'm' . 'FyeS5waHA=', '' . 'Yml0' . 'c' . 'ml4XG1ha' . 'W5cd2ViXGNvb2tpZQ' . '=' . '=', 'b' . 'G' . 'l' . 'iL3dlYi9jb29raW' . 'Uuc' . 'Ghw', 'Yml0cml4XG' . '1' . 'haW5cd2' . 'ViXHVyaQ==', 'b' . 'Gli' . 'L3dlY' . 'i91cmk' . 'uc' . 'Ghw', 'Y' . 'ml' . '0c' . 'ml4X' . 'G1ha' . 'W5cc2VuZGV' . 'yZXZlbn' . 'R' . 'o' . 'YW5kbGVy', '' . 'bGliL3NlbmRlcmNvbm5lY3Rvci' . '5waHA=', 'Yml0c' . 'ml4XG1' . 'haW5' . 'cc' . '2VuZG' . 'Vy' . 'Y29ubmVjdG9y' . 'd' . 'X' . 'Nlcg==', 'bG' . 'l' . 'iL' . '3' . 'N' . 'lbmRlcmN' . 'vbm5lY' . '3Rvci5' . 'waHA=', 'Y' . 'ml0c' . 'ml4X' . 'G1haW5' . 'c' . 'dXJscmV3' . 'cml0Z' . 'XJy' . 'dWxlbWF' . 'r' . 'ZXI=', 'b' . 'GliL3Vy' . 'bHJld3J' . 'pdGVyLnBocA==', 'Q1Rp' . 'bWVab25' . 'l', '' . 'Y' . '2xh' . 'c' . '3Nl' . 'cy9' . 'n' . 'ZW5l' . 'c' . 'mFsL' . '3RpbWU' . 'ucGh' . 'w', 'IA' . '==', 'U1R' . 'BUlRf' . 'RVhFQ19U' . 'SU1F', 'Ql9QUk9' . 'MT0dfSU' . '5' . 'DTF' . 'VER' . 'UQ=', 'RE9' . 'D' . 'VU1FTl' . 'Rf' . 'Uk9P' . 'VA' . '=' . '=', 'L' . '21vZHVsZXM' . 'vbWF' . 'pbi9j' . 'bGFzc2VzL2dlbmVyYWwv' . 'dm' . 'V' . 'yc2' . 'lv' . 'bi5wa' . 'HA=', 'RE9' . 'DVU1FTlRfUk9' . 'PVA==', 'L21vZHVsZXMvbWFpbi' . '90b' . '2' . '9scy5waHA=', 'NS' . '4wLjA=', '' . 'cmV' . 'n' . 'a' . 'XN0Z' . 'XJfbG9uZ' . '19' . 'hc' . 'nJ' . 'heXM' . '=', '' . 'R' . 'E9DVU1FTlRfUk' . '9' . 'PVA==', 'L' . '3Bo' . 'cF9pbnRlcmZh' . 'Y2UvZGJj' . 'b' . '2' . '5uLn' . 'Bo' . 'cA' . '==', 'Q' . 'lhfVV' . 'RG', 'QlhfV' . 'VRGX1B' . 'DUkVfTU9ESUZJRVI=', '' . 'dQ==', '' . 'Q' . 'l' . 'h' . 'fVVRGX1BDUkVfTU9ES' . 'UZJRVI=', '', '' . 'Q' . '0FDSEV' . 'EX' . '2JfbG' . 'FuZw==', 'Q0' . 'FDSEV' . 'E' . 'X2Jf' . 'bGFuZ' . 'w==', '' . 'Q' . '0FDSEVEX2J' . 'fb3B' . '0aW9' . 'u', 'Q0F' . 'DSEVEX2Jfb3' . 'B0aW9u', '' . 'Q0' . 'FDSEVE' . 'X' . '2Jf' . 'bGFu' . 'Z' . '19kb21haW4' . '=', 'Q0FDSE' . 'VEX2JfbG' . 'FuZ19' . 'kb21ha' . 'W' . '4' . '=', 'Q0F' . 'DSEVEX2Jfc2l0ZV9' . '0ZW1wb' . 'G' . 'F0ZQ==', 'Q' . '0' . 'FDSEVEX2Jfc2' . 'l0' . 'Z' . 'V9' . '0ZW' . '1wb' . 'GF' . '0' . 'ZQ' . '==', 'Q0' . 'FDSE' . 'VE' . 'X2JfZ' . 'XZ' . 'lbnQ=', 'Q0FDSEVEX2JfZX' . 'Z' . 'lbnQ=', 'Q0FDSEVEX2JfY' . 'WdlbnQ' . '=', 'Q0FDS' . 'EVE' . 'X2J' . 'fYWdlbnQ' . '=', 'Q0FDSE' . 'VEX21lb' . 'nU=', 'Q' . '0FDSEVEX' . '21l' . 'bn' . 'U' . '=', '' . 'Q0FD' . 'SEVE' . 'X2JfZmlsZQ==', 'Q0F' . 'DSE' . 'VEX2JfZml' . 'sZQ==', 'Q0FDSEVEX2JfZml' . 'sZV9' . 'idWNr' . 'ZXRfc2l6Z' . 'Q==', 'Q0FDSEVEX2Jf' . 'Z' . 'ml' . 's' . 'ZV9' . 'i' . 'dWNrZ' . 'XRfc2l6Z' . 'Q==', 'Q0' . 'F' . 'DSEVEX2J' . 'f' . 'dXNlcl9maWVsZ' . 'A' . '==', 'Q0FDSEV' . 'EX' . '2JfdXNlcl' . '9maWVs' . 'ZA==', 'Q0FDSEVE' . 'X2Jfd' . 'XNlcl9maW' . 'VsZF9lbnVt', 'Q0FDS' . 'EVEX2J' . 'fdXNlcl9' . 'm' . 'aWVs' . 'ZF9lbnVt', 'Q0FDSE' . 'VEX2Jf' . 'd' . 'GFzaw==', 'Q0' . 'F' . 'DSEVE' . 'X2JfdGFz' . 'aw==', 'Q0FDSE' . 'VEX2Jf' . 'd' . 'GFza19vcGV' . 'yYXRpb2' . '4=', '' . 'Q0F' . 'DSEVEX2JfdGF' . 'za19vcG' . 'VyYXR' . 'pb2' . '4=', 'Q' . '0FD' . 'SE' . 'VEX2JfcmF0aW5' . 'n', '' . 'Q0F' . 'DSEV' . 'EX2Jf' . 'c' . 'mF' . '0aW5n', 'Q0FDSEVE' . 'X2JfcmF0' . 'aW5nX' . '3Z' . 'vdGU=', 'Q0FD' . 'SE' . 'VEX' . '2JfcmF0aW5' . 'nX3Zv' . 'dGU=', 'Q0FDS' . 'EVEX2J' . 'f' . 'cmF0aW5nX2J1' . 'Y2' . 'tldF9za' . 'Xp' . 'l', 'Q0' . 'FDSEVEX2JfcmF0aW5nX2J1' . 'Y2t' . 'ldF9zaXp' . 'l', 'Q0FDSEVEX2Jf' . 'dX' . 'Nlc' . 'l9hY2Nl' . 'c3Nf' . 'Y2hlY2s=', 'Q0FDSEVEX' . '2JfdXNl' . 'cl9hY2Nl' . 'c3NfY2hlY2s=', 'Q0' . 'FDSEVEX2JfdXNlcl9jb3' . 'V' . 'udG' . 'Vy', 'Q0FDSEVEX2' . 'JfdXNlc' . 'l9j' . 'b3V' . 'u' . 'd' . 'GVy', 'Q0FDSEVEX' . '2JfZ3JvdXBf' . 'c3Vib3JkaW' . '5hdGU' . '=', 'Q0FD' . 'SEVEX' . '2' . 'JfZ3JvdXBfc3Vib3' . 'JkaW' . '5' . 'hdGU=', '' . 'Q0' . 'FDSEV' . 'E' . 'X2Jf' . 'c21pb' . 'GU=', 'Q' . '0FDSEVEX2J' . 'fc21pbG' . 'U=', 'VEFH' . 'R0VEX' . '3VzZ' . 'XJfY2' . 'FyZF9' . 'za' . 'Xp' . 'l', 'VEFHR0VEX3V' . 'zZX' . 'JfY2FyZF' . '9z' . 'aXpl', 'R' . 'E9DV' . 'U1FTlRf' . 'Uk9P' . 'VA==', 'L' . '21' . 'vZH' . 'VsZXMvbWFpbi' . '9jbGF' . 'zc2' . 'VzL' . 'w==', '' . 'L' . '2' . 'Rhd' . 'GFi' . 'YX' . 'N' . 'l' . 'LnB' . 'ocA==', 'RE' . 'I=', 'REI=', 'REI=', 'RE9' . 'DVU1FTlRfUk9PVA==', 'Lw=' . '=', 'X2R' . 'l' . 'Y' . 'nVnLnNxb' . 'A==', '', 'c2hvd19' . 'zcWxfc3Rhd' . 'A' . '==', 'c2' . 'hvd1' . '9zcWxf' . 'c3R' . 'h' . 'dA=' . '=', 'WQ==', '' . 'WQ=' . '=', '', 'c2' . 'h' . 'vd19zc' . 'Wxfc3R' . 'h' . 'dA==', 'Lw' . '=' . '=', 'c2hvd19zc' . 'W' . 'xfc' . '3Rh' . 'dA==', 'c2hvd19zc' . 'W' . 'xfc3RhdA' . '==', '' . 'WQ==', 'RE' . 'I' . '=', 'RE' . 'I=', 'R' . 'E' . '9DVU1' . 'F' . 'T' . 'lRfUk' . '9PVA==', '' . 'L3Bo' . 'c' . 'F9' . 'p' . 'bnR' . 'lcmZhY' . '2UvZ' . 'GJjb2' . '5uX2Vycm9yLnBocA==', 'RE9DVU1FTlRfUk9PVA==', 'L21vZ' . 'HVsZXM' . 'vbWF' . 'pb' . 'i' . '9pb' . 'mNsdWRlL2Ri' . 'Y29u' . 'bl9lcnJ' . 'vc' . 'i' . '5waHA=', 'R' . 'E9D' . 'V' . 'U1FTl' . 'R' . 'f' . 'Uk9PVA==', 'L2' . 'J' . 'pdHJpeC9tb2R1bG' . 'VzL21haW4vY' . '2' . 'x' . 'hc3Nl' . 'cy9n' . 'ZW' . '5lcmFsL' . '3B1b' . 'nljb2RlLn' . 'BocA' . '==', 'RE9DV' . 'U1FTlRfUk9' . 'P' . 'V' . 'A' . '==', 'L' . '2JpdHJpeC9tb2' . 'R1bGV' . 'zL2' . '1' . 'haW4vY2xh' . 'c3' . 'Nlcy9nZW5' . 'lc' . 'mFsL2No' . 'Y' . 'XJ' . 'z' . 'ZXRfY' . '29u' . 'dmVyd' . 'GVyLnBocA==', 'R' . 'E' . '9DVU' . '1FT' . 'l' . 'Rf' . 'Uk9PVA==', 'L21vZH' . 'V' . 'sZX' . 'Mv' . 'bWFpb' . 'i9' . 'jb' . 'GFzc2V' . 'z' . 'L' . 'w==', 'L21' . 'haW4' . 'ucGhw', 'RE9DVU1FTlRfUk9' . 'P' . 'VA' . '==', 'L2' . '1vZHVsZXMvbW' . 'Fp' . 'b' . 'i9jbGFz' . 'c2VzLw==', '' . 'L29wdGlvbi' . '5' . 'waHA=', 'RE9DVU1FTlRfUk9PVA==', 'L21vZHVsZ' . 'XM' . 'vb' . 'WF' . 'pbi9jbGF' . 'z' . 'c2Vz' . 'L2dl' . 'b' . 'mV' . 'y' . 'YW' . 'wvY2Fj' . 'aGUucGhw', '' . 'RE' . '9DVU1' . 'FTlRf' . 'Uk9PV' . 'A==', 'L21v' . 'ZHV' . 'sZXMvb' . 'WFpb' . 'i9jbGFzc2' . 'Vz' . 'L' . '2' . 'dlbmV' . 'yYWwvY2F' . 'jaG' . 'Vf' . 'aH' . 'RtbC5waHA=', 'R' . 'E9' . 'DVU1FTlRfUk9' . 'P' . 'VA=' . '=', 'L21v' . 'Z' . 'HVsZXMvbWFp' . 'bi9jbGF' . 'zc2' . 'VzL' . '2dlb' . 'mV' . 'y' . 'Y' . 'WwvbW9kdWxl' . 'LnB' . 'ocA==', 'R' . 'E' . '9D' . 'VU' . '1' . 'F' . 'Tl' . 'RfU' . 'k9P' . 'VA==', 'L21vZHVs' . 'Z' . 'X' . 'MvbWFpbi9jbG' . 'Fz' . 'c2VzL2d' . 'lbm' . 'VyYWwvdXBkYXRlX2RiX3VwZGF0ZXIucGhw');
    }
    return base64_decode($_687561123[$_506460352]);
}
$GLOBALS['____1055296423'][0](E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_PARSE);
require_once $GLOBALS['____1055296423'][1](__FILE__, min(172, 0, 57.333333333333), $GLOBALS['____1055296423'][2](__FILE__) - $GLOBALS['____1055296423'][3](___1201625077(0))) . ___1201625077(1);
include_once $_SERVER[___1201625077(2)] . ___1201625077(3);
\Bitrix\Main\Loader::registerAutoLoadClasses(___1201625077(4), array(___1201625077(5) => ___1201625077(6), ___1201625077(7) => ___1201625077(8), ___1201625077(9) => ___1201625077(10), ___1201625077(11) => ___1201625077(12), ___1201625077(13) => ___1201625077(14), ___1201625077(15) => ___1201625077(16), ___1201625077(17) => ___1201625077(18), ___1201625077(19) => ___1201625077(20), ___1201625077(21) => ___1201625077(22), ___1201625077(23) => ___1201625077(24), ___1201625077(25) => ___1201625077(26), ___1201625077(27) => ___1201625077(28), ___1201625077(29) => ___1201625077(30), ___1201625077(31) => ___1201625077(32), ___1201625077(33) => ___1201625077(34), ___1201625077(35) => ___1201625077(36), ___1201625077(37) => ___1201625077(38), ___1201625077(39) => ___1201625077(40), ___1201625077(41) => ___1201625077(42), ___1201625077(43) => ___1201625077(44), ___1201625077(45) => ___1201625077(46), ___1201625077(47) => ___1201625077(48), ___1201625077(49) => ___1201625077(50), ___1201625077(51) => ___1201625077(52), ___1201625077(53) => ___1201625077(54), ___1201625077(55) => ___1201625077(56), ___1201625077(57) => ___1201625077(58), ___1201625077(59) => ___1201625077(60), ___1201625077(61) => ___1201625077(62), ___1201625077(63) => ___1201625077(64), ___1201625077(65) => ___1201625077(66), ___1201625077(67) => ___1201625077(68), ___1201625077(69) => ___1201625077(70), ___1201625077(71) => ___1201625077(72), ___1201625077(73) => ___1201625077(74), ___1201625077(75) => ___1201625077(76), ___1201625077(77) => ___1201625077(78), ___1201625077(79) => ___1201625077(80), ___1201625077(81) => ___1201625077(82), ___1201625077(83) => ___1201625077(84), ___1201625077(85) => ___1201625077(86), ___1201625077(87) => ___1201625077(88), ___1201625077(89) => ___1201625077(90), ___1201625077(91) => ___1201625077(92), ___1201625077(93) => ___1201625077(94), ___1201625077(95) => ___1201625077(96), ___1201625077(97) => ___1201625077(98), ___1201625077(99) => ___1201625077(100), ___1201625077(101) => ___1201625077(102), ___1201625077(103) => ___1201625077(104), ___1201625077(105) => ___1201625077(106), ___1201625077(107) => ___1201625077(108), ___1201625077(109) => ___1201625077(110), ___1201625077(111) => ___1201625077(112), ___1201625077(113) => ___1201625077(114), ___1201625077(115) => ___1201625077(116), ___1201625077(117) => ___1201625077(118), ___1201625077(119) => ___1201625077(120), ___1201625077(121) => ___1201625077(122), ___1201625077(123) => ___1201625077(124), ___1201625077(125) => ___1201625077(126), ___1201625077(127) => ___1201625077(128), ___1201625077(129) => ___1201625077(130), ___1201625077(131) => ___1201625077(132), ___1201625077(133) => ___1201625077(134), ___1201625077(135) => ___1201625077(136), ___1201625077(137) => ___1201625077(138), ___1201625077(139) => ___1201625077(140), ___1201625077(141) => ___1201625077(142), ___1201625077(143) => ___1201625077(144), ___1201625077(145) => ___1201625077(146), ___1201625077(147) => ___1201625077(148), ___1201625077(149) => ___1201625077(150), ___1201625077(151) => ___1201625077(152), ___1201625077(153) => ___1201625077(154), ___1201625077(155) => ___1201625077(156), ___1201625077(157) => ___1201625077(158), ___1201625077(159) => ___1201625077(160), ___1201625077(161) => ___1201625077(162), ___1201625077(163) => ___1201625077(164), ___1201625077(165) => ___1201625077(166), ___1201625077(167) => ___1201625077(168), ___1201625077(169) => ___1201625077(170), ___1201625077(171) => ___1201625077(172), ___1201625077(173) => ___1201625077(174), ___1201625077(175) => ___1201625077(176), ___1201625077(177) => ___1201625077(178), ___1201625077(179) => ___1201625077(180), ___1201625077(181) => ___1201625077(182), ___1201625077(183) => ___1201625077(184), ___1201625077(185) => ___1201625077(186), ___1201625077(187) => ___1201625077(188), ___1201625077(189) => ___1201625077(190), ___1201625077(191) => ___1201625077(192), ___1201625077(193) => ___1201625077(194), ___1201625077(195) => ___1201625077(196), ___1201625077(197) => ___1201625077(198), ___1201625077(199) => ___1201625077(200), ___1201625077(201) => ___1201625077(202), ___1201625077(203) => ___1201625077(204), ___1201625077(205) => ___1201625077(206), ___1201625077(207) => ___1201625077(208), ___1201625077(209) => ___1201625077(210), ___1201625077(211) => ___1201625077(212), ___1201625077(213) => ___1201625077(214), ___1201625077(215) => ___1201625077(216), ___1201625077(217) => ___1201625077(218), ___1201625077(219) => ___1201625077(220)));
function getmicrotime()
{
    list($_1240678807, $_20308704) = $GLOBALS['____1055296423'][4](___1201625077(221), $GLOBALS['____1055296423'][5]());
    return (double) $_1240678807 + (double) $_20308704;
}
$GLOBALS['____1055296423'][6](___1201625077(222), getmicrotime());
$GLOBALS['____1055296423'][7](___1201625077(223), true);
require_once $_SERVER[___1201625077(224)] . BX_ROOT . ___1201625077(225);
require_once $_SERVER[___1201625077(226)] . BX_ROOT . ___1201625077(227);
if ($GLOBALS['____1055296423'][8](PHP_VERSION, ___1201625077(228)) >= 858 - 2 * 429 && @ini_get_bool(___1201625077(229)) != true) {
    $HTTP_POST_FILES = $_FILES;
    $HTTP_SERVER_VARS = $_SERVER;
    $HTTP_GET_VARS = $_GET;
    $HTTP_POST_VARS = $_POST;
    $HTTP_COOKIE_VARS = $_COOKIE;
    $HTTP_ENV_VARS = $_ENV;
Example #12
0
<?php

define('UM_BM_MODULE_NAME', 'um.bixmigs');
define('UM_BM_MGR_PATH', '/local/modules/' . UM_BM_MODULE_NAME . '/migrations/');
define('UM_BM_MGR_FULL_PATH', $_SERVER['DOCUMENT_ROOT'] . '/local/modules/' . UM_BM_MODULE_NAME . '/migrations/');
define('UM_BM_TABLE_NAME', 'um_bixmigs_migrations');
$autoloaded_classes = array('\\Um\\BixMigAbstract' => '/lib/bxmg_abstract.php', '\\Um\\BixMigBase' => '/lib/bxmg_base.php', '\\Um\\BixMigDispatcher' => '/lib/bxmg_dispatcher.php', '\\Um\\BixMigTable' => '/lib/bxmg_mig_entity.php');
if (class_exists('\\Bitrix\\Main\\Loader')) {
    \Bitrix\Main\Loader::registerAutoLoadClasses(UM_BM_MODULE_NAME, $autoloaded_classes);
} else {
    \CModule::AddAutoloadClasses(UM_BM_MODULE_NAME, $autoloaded_classes);
}
<?php

use Bitrix\Main\Loader;
Loader::registerAutoLoadClasses('digitalwand.admin_helper', array('DigitalWand\\AdminHelper\\EventHandlers' => 'lib/EventHandlers.php', 'DigitalWand\\AdminHelper\\Helper\\Exception' => 'lib/helper/Exception.php', 'DigitalWand\\AdminHelper\\Helper\\AdminInterface' => 'lib/helper/AdminInterface.php', 'DigitalWand\\AdminHelper\\Helper\\AdminBaseHelper' => 'lib/helper/AdminBaseHelper.php', 'DigitalWand\\AdminHelper\\Helper\\AdminListHelper' => 'lib/helper/AdminListHelper.php', 'DigitalWand\\AdminHelper\\Helper\\AdminSectionListHelper' => 'lib/helper/AdminSectionListHelper.php', 'DigitalWand\\AdminHelper\\Helper\\AdminEditHelper' => 'lib/helper/AdminEditHelper.php', 'DigitalWand\\AdminHelper\\Helper\\AdminSectionEditHelper' => 'lib/helper/AdminSectionEditHelper.php', 'DigitalWand\\AdminHelper\\EntityManager' => 'lib/EntityManager.php', 'DigitalWand\\AdminHelper\\Widget\\HelperWidget' => 'lib/widget/HelperWidget.php', 'DigitalWand\\AdminHelper\\Widget\\CheckboxWidget' => 'lib/widget/CheckboxWidget.php', 'DigitalWand\\AdminHelper\\Widget\\ComboBoxWidget' => 'lib/widget/ComboBoxWidget.php', 'DigitalWand\\AdminHelper\\Widget\\StringWidget' => 'lib/widget/StringWidget.php', 'DigitalWand\\AdminHelper\\Widget\\NumberWidget' => 'lib/widget/NumberWidget.php', 'DigitalWand\\AdminHelper\\Widget\\FileWidget' => 'lib/widget/FileWidget.php', 'DigitalWand\\AdminHelper\\Widget\\TextAreaWidget' => 'lib/widget/TextAreaWidget.php', 'DigitalWand\\AdminHelper\\Widget\\HLIBlockFieldWidget' => 'lib/widget/HLIBlockFieldWidget.php', 'DigitalWand\\AdminHelper\\Widget\\DateTimeWidget' => 'lib/widget/DateTimeWidget.php', 'DigitalWand\\AdminHelper\\Widget\\IblockElementWidget' => 'lib/widget/IblockElementWidget.php', 'DigitalWand\\AdminHelper\\Widget\\UrlWidget' => 'lib/widget/UrlWidget.php', 'DigitalWand\\AdminHelper\\Widget\\VisualEditorWidget' => 'lib/widget/VisualEditorWidget.php', 'DigitalWand\\AdminHelper\\Widget\\UserWidget' => 'lib/widget/UserWidget.php', 'DigitalWand\\AdminHelper\\Widget\\OrmElementWidget' => 'lib/widget/OrmElementWidget.php'));
Example #14
0
require_once $_SERVER["DOCUMENT_ROOT"] . "/bitrix/modules/sale/include.php";
require_once $_SERVER["DOCUMENT_ROOT"] . "/bitrix/modules/sale/prolog.php";
require_once $_SERVER["DOCUMENT_ROOT"] . "/bitrix/modules/sale/general/admin_tool.php";
use Bitrix\Sale\Location;
$crmMode = defined("BX_PUBLIC_MODE") && BX_PUBLIC_MODE && isset($_REQUEST["CRM_MANAGER_USER_ID"]);
if ($crmMode) {
    CUtil::DecodeUriComponent($_REQUEST);
    CUtil::DecodeUriComponent($_POST);
    echo '<link rel="stylesheet" type="text/css" href="/bitrix/themes/.default/sale.css" />';
}
$saleModulePermissions = $APPLICATION->GetGroupRight("sale");
if ($saleModulePermissions == "D") {
    $APPLICATION->AuthForm(GetMessage("ACCESS_DENIED"));
}
IncludeModuleLangFile(__FILE__);
\Bitrix\Main\Loader::registerAutoLoadClasses('sale', array('\\Bitrix\\Sale\\Helpers\\Admin\\Blocks\\OrderShipmentStatus' => 'lib/helpers/admin/blocks/ordershipmentstatus.php'));
$ID = isset($_REQUEST['ID']) ? (int) $_REQUEST['ID'] : 0;
$errorMessage = "";
if ($ID <= 0) {
    if ($crmMode) {
        CRMModeOutput("Order is not found");
    } else {
        LocalRedirect("sale_order.php?lang=" . LANGUAGE_ID . GetFilterParams("filter_", false));
    }
}
$arUserGroups = $USER->GetUserGroupArray();
$intUserID = intval($USER->GetID());
// basket table columns settings form
define("PROP_COUNT_LIMIT", 21);
$arUserColumns = array();
$arIblockProps = array();
Example #15
0
        if ($_1667864210 >= min(102, 0, 34) && $_1667864210 < round(0 + 14)) {
            $_487966559 = $_1667864210;
        }
    }
    if ($bxProductConfig[___1476597692(426)][___1476597692(427)] != ___1476597692(428)) {
        $_74314138 = $bxProductConfig[___1476597692(429)][___1476597692(430)];
    }
}
for ($_415916346 = 1332 / 2 - 666, $_1259323419 = $GLOBALS['____1574875487'][132]() < $GLOBALS['____1574875487'][133](854 - 2 * 427, 970 - 2 * 485, 1404 / 2 - 702, round(0 + 1.25 + 1.25 + 1.25 + 1.25), round(0 + 0.2 + 0.2 + 0.2 + 0.2 + 0.2), round(0 + 502.5 + 502.5 + 502.5 + 502.5)) || $_101436632 <= round(0 + 10), $_1184935917 = $_101436632 < $GLOBALS['____1574875487'][134](894 - 2 * 447, 986 - 2 * 493, 1244 / 2 - 622, Date(___1476597692(431)), $GLOBALS['____1574875487'][135](___1476597692(432)) - $_487966559, $GLOBALS['____1574875487'][136](___1476597692(433))); $_415916346 < round(0 + 3.3333333333333 + 3.3333333333333 + 3.3333333333333), $_1259323419 || $_1184935917 || $_101436632 != $_559012191; $_415916346++, $GLOBALS['_____266107269'][70]($_74314138)) {
}
$GLOBALS['____1574875487'][137]($_1041514926, $_101436632);
$GLOBALS['____1574875487'][138]($_1127354107, $_559012191);
$GLOBALS[___1476597692(434)] = OLDSITEEXPIREDATE;
$GLOBALS[___1476597692(435)] = array();
require_once $_SERVER[___1476597692(436)] . BX_ROOT . ___1476597692(437);
\Bitrix\Main\Loader::registerAutoLoadClasses(___1476597692(438), array(___1476597692(439) => ___1476597692(440), ___1476597692(441) => ___1476597692(442), ___1476597692(443) => ___1476597692(444), ___1476597692(445) => ___1476597692(446), ___1476597692(447) => ___1476597692(448), ___1476597692(449) => ___1476597692(450), ___1476597692(451) => ___1476597692(452), ___1476597692(453) => ___1476597692(454), ___1476597692(455) => ___1476597692(456) . $DBType . ___1476597692(457), ___1476597692(458) => ___1476597692(459), ___1476597692(460) => ___1476597692(461), ___1476597692(462) => ___1476597692(463), ___1476597692(464) => ___1476597692(465), ___1476597692(466) => ___1476597692(467), ___1476597692(468) => ___1476597692(469), ___1476597692(470) => ___1476597692(471), ___1476597692(472) => ___1476597692(473) . $DBType . ___1476597692(474), ___1476597692(475) => ___1476597692(476), ___1476597692(477) => ___1476597692(478) . $DBType . ___1476597692(479), ___1476597692(480) => ___1476597692(481), ___1476597692(482) => ___1476597692(483), ___1476597692(484) => ___1476597692(485), ___1476597692(486) => ___1476597692(487), ___1476597692(488) => ___1476597692(489) . $DBType . ___1476597692(490), ___1476597692(491) => ___1476597692(492) . $DBType . ___1476597692(493), ___1476597692(494) => ___1476597692(495), ___1476597692(496) => ___1476597692(497) . $DBType . ___1476597692(498), ___1476597692(499) => ___1476597692(500), ___1476597692(501) => ___1476597692(502), ___1476597692(503) => ___1476597692(504), ___1476597692(505) => ___1476597692(506), ___1476597692(507) => ___1476597692(508), ___1476597692(509) => ___1476597692(510), ___1476597692(511) => ___1476597692(512), ___1476597692(513) => ___1476597692(514), ___1476597692(515) => ___1476597692(516), ___1476597692(517) => ___1476597692(518), ___1476597692(519) => ___1476597692(520), ___1476597692(521) => ___1476597692(522), ___1476597692(523) => ___1476597692(524) . $DBType . ___1476597692(525), ___1476597692(526) => ___1476597692(527), ___1476597692(528) => ___1476597692(529), ___1476597692(530) => ___1476597692(531), ___1476597692(532) => ___1476597692(533), ___1476597692(534) => ___1476597692(535), ___1476597692(536) => ___1476597692(537), ___1476597692(538) => ___1476597692(539), ___1476597692(540) => ___1476597692(541), ___1476597692(542) => ___1476597692(543), ___1476597692(544) => ___1476597692(545), ___1476597692(546) => ___1476597692(547), ___1476597692(548) => ___1476597692(549), ___1476597692(550) => ___1476597692(551) . $DBType . ___1476597692(552), ___1476597692(553) => ___1476597692(554), ___1476597692(555) => ___1476597692(556), ___1476597692(557) => ___1476597692(558), ___1476597692(559) => ___1476597692(560), ___1476597692(561) => ___1476597692(562), ___1476597692(563) => ___1476597692(564), ___1476597692(565) => ___1476597692(566), ___1476597692(567) => ___1476597692(568), ___1476597692(569) => ___1476597692(570), ___1476597692(571) => ___1476597692(572), ___1476597692(573) => ___1476597692(574), ___1476597692(575) => ___1476597692(576)));
require_once $_SERVER[___1476597692(577)] . BX_ROOT . ___1476597692(578) . $DBType . ___1476597692(579);
require_once $_SERVER[___1476597692(580)] . BX_ROOT . ___1476597692(581) . $DBType . ___1476597692(582);
require_once $_SERVER[___1476597692(583)] . BX_ROOT . ___1476597692(584) . $DBType . ___1476597692(585);
require_once $_SERVER[___1476597692(586)] . BX_ROOT . ___1476597692(587);
$GLOBALS['_____266107269'][71](___1476597692(588), ___1476597692(589), array(___1476597692(590), ___1476597692(591)));
require_once $_SERVER[___1476597692(592)] . BX_ROOT . ___1476597692(593) . $DBType . ___1476597692(594);
if ($GLOBALS['____1574875487'][139]($_1793985843 = $_SERVER[___1476597692(595)] . BX_ROOT . ___1476597692(596))) {
    $US_HOST_PROCESS_MAIN = False;
    include $_1793985843;
}
$GLOBALS[___1476597692(597)]->AddJSKernelInfo(___1476597692(598), array(___1476597692(599), ___1476597692(600), ___1476597692(601), ___1476597692(602), ___1476597692(603), ___1476597692(604), ___1476597692(605), ___1476597692(606), ___1476597692(607), ___1476597692(608), ___1476597692(609), ___1476597692(610), ___1476597692(611), ___1476597692(612), ___1476597692(613), ___1476597692(614), ___1476597692(615)));
$GLOBALS[___1476597692(616)]->AddCSSKernelInfo(___1476597692(617), array(___1476597692(618), ___1476597692(619), ___1476597692(620), ___1476597692(621)));
$GLOBALS[___1476597692(622)]->AddJSKernelInfo(___1476597692(623), array(___1476597692(624), ___1476597692(625), ___1476597692(626), ___1476597692(627)));
if ($GLOBALS['____1574875487'][140]($_1793985843 = $_SERVER[___1476597692(628)] . ___1476597692(629))) {
    include_once $_1793985843;
Example #16
0
<?php

/**
 * @link http://bbc.bitrix.expert
 * @copyright Copyright © 2014-2015 Nik Samokhvalov
 * @license MIT
 */
\Bitrix\Main\Loader::registerAutoLoadClasses('bex.bbc', ['Bex\\Bbc\\Basis' => 'lib/basis.php', 'Bex\\Bbc\\BasisRouter' => 'lib/basisrouter.php', 'Bex\\Bbc\\Traits\\Common' => 'lib/traits/common.php', 'Bex\\Bbc\\Traits\\Elements' => 'lib/traits/elements.php', 'Bex\\Bbc\\Helpers\\ComponentParameters' => 'lib/helpers/componentparameters.php']);
<?php

if (defined('ADMIN_SECTION')) {
    \Bitrix\Main\Loader::registerAutoLoadClasses("iblocktools", array("IblocktoolsFormsHelper" => "tools/formsHelper.php"));
}
Example #18
0
    }
    public static function IsFeatureInstalled($_259194969)
    {
        return true;
    }
}
/**/
//Do not remove this
//component 2.0 template engines
$GLOBALS["arCustomTemplateEngines"] = array();
require_once $_SERVER["DOCUMENT_ROOT"] . BX_ROOT . "/modules/main/classes/general/urlrewriter.php";
/**
 * Defined in dbconn.php
 * @param string $DBType
 */
\Bitrix\Main\Loader::registerAutoLoadClasses("main", array("CSiteTemplate" => "classes/general/site_template.php", "CBitrixComponent" => "classes/general/component.php", "CComponentEngine" => "classes/general/component_engine.php", "CComponentAjax" => "classes/general/component_ajax.php", "CBitrixComponentTemplate" => "classes/general/component_template.php", "CComponentUtil" => "classes/general/component_util.php", "CControllerClient" => "classes/general/controller_member.php", "PHPParser" => "classes/general/php_parser.php", "CDiskQuota" => "classes/" . $DBType . "/quota.php", "CEventLog" => "classes/general/event_log.php", "CEventMain" => "classes/general/event_log.php", "CAdminFileDialog" => "classes/general/file_dialog.php", "WLL_User" => "classes/general/liveid.php", "WLL_ConsentToken" => "classes/general/liveid.php", "WindowsLiveLogin" => "classes/general/liveid.php", "CAllFile" => "classes/general/file.php", "CFile" => "classes/" . $DBType . "/file.php", "CTempFile" => "classes/general/file_temp.php", "CFavorites" => "classes/" . $DBType . "/favorites.php", "CUserOptions" => "classes/general/user_options.php", "CGridOptions" => "classes/general/grids.php", "CUndo" => "/classes/general/undo.php", "CAutoSave" => "/classes/general/undo.php", "CRatings" => "classes/" . $DBType . "/ratings.php", "CRatingsComponentsMain" => "classes/" . $DBType . "/ratings_components.php", "CRatingRule" => "classes/general/rating_rule.php", "CRatingRulesMain" => "classes/" . $DBType . "/rating_rules.php", "CTopPanel" => "public/top_panel.php", "CEditArea" => "public/edit_area.php", "CComponentPanel" => "public/edit_area.php", "CTextParser" => "classes/general/textparser.php", "CPHPCacheFiles" => "classes/general/cache_files.php", "CDataXML" => "classes/general/xml.php", "CXMLFileStream" => "classes/general/xml.php", "CRsaProvider" => "classes/general/rsasecurity.php", "CRsaSecurity" => "classes/general/rsasecurity.php", "CRsaBcmathProvider" => "classes/general/rsabcmath.php", "CRsaOpensslProvider" => "classes/general/rsaopenssl.php", "CASNReader" => "classes/general/asn.php", "CBXShortUri" => "classes/" . $DBType . "/short_uri.php", "CFinder" => "classes/general/finder.php", "CAccess" => "classes/general/access.php", "CAuthProvider" => "classes/general/authproviders.php", "IProviderInterface" => "classes/general/authproviders.php", "CGroupAuthProvider" => "classes/general/authproviders.php", "CUserAuthProvider" => "classes/general/authproviders.php", "CTableSchema" => "classes/general/table_schema.php", "CCSVData" => "classes/general/csv_data.php", "CSmile" => "classes/general/smile.php", "CSmileGallery" => "classes/general/smile.php", "CSmileSet" => "classes/general/smile.php", "CGlobalCounter" => "classes/general/global_counter.php", "CUserCounter" => "classes/" . $DBType . "/user_counter.php", "CHotKeys" => "classes/general/hot_keys.php", "CHotKeysCode" => "classes/general/hot_keys.php", "CBXSanitizer" => "classes/general/sanitizer.php", "CBXArchive" => "classes/general/archive.php", "CAdminNotify" => "classes/general/admin_notify.php", "CBXFavAdmMenu" => "classes/general/favorites.php", "CAdminInformer" => "classes/general/admin_informer.php", "CSiteCheckerTest" => "classes/general/site_checker.php", "CSqlUtil" => "classes/general/sql_util.php", "CHTMLPagesCache" => "classes/general/cache_html.php", "CFileUploader" => "classes/general/uploader.php", "LPA" => "classes/general/lpa.php"));
require_once $_SERVER["DOCUMENT_ROOT"] . BX_ROOT . "/modules/main/classes/" . $DBType . "/agent.php";
require_once $_SERVER["DOCUMENT_ROOT"] . BX_ROOT . "/modules/main/classes/" . $DBType . "/user.php";
require_once $_SERVER["DOCUMENT_ROOT"] . BX_ROOT . "/modules/main/classes/" . $DBType . "/event.php";
require_once $_SERVER["DOCUMENT_ROOT"] . BX_ROOT . "/modules/main/classes/general/menu.php";
AddEventHandler("main", "OnAfterEpilog", array("\\Bitrix\\Main\\Data\\ManagedCache", "finalize"));
require_once $_SERVER["DOCUMENT_ROOT"] . BX_ROOT . "/modules/main/classes/" . $DBType . "/usertype.php";
if (file_exists($_fname = $_SERVER["DOCUMENT_ROOT"] . BX_ROOT . "/modules/main/classes/general/update_db_updater.php")) {
    $US_HOST_PROCESS_MAIN = False;
    include $_fname;
}
$GLOBALS["APPLICATION"]->AddJSKernelInfo('main', array('/bitrix/js/main/core/core.js', '/bitrix/js/main/core/core_ajax.js', '/bitrix/js/main/json/json2.min.js', '/bitrix/js/main/core/core_ls.js', '/bitrix/js/main/core/core_popup.js', '/bitrix/js/main/core/core_tooltip.js', '/bitrix/js/main/core/core_date.js', '/bitrix/js/main/core/core_timer.js', '/bitrix/js/main/core/core_fx.js', '/bitrix/js/main/core/core_window.js', '/bitrix/js/main/core/core_autosave.js', '/bitrix/js/main/rating_like.js', '/bitrix/js/main/session.js', '/bitrix/js/main/dd.js', '/bitrix/js/main/utils.js', '/bitrix/js/main/core/core_dd.js', '/bitrix/js/main/core/core_webrtc.js'));
$GLOBALS["APPLICATION"]->AddCSSKernelInfo('main', array('/bitrix/js/main/core/css/core.css', '/bitrix/js/main/core/css/core_popup.css', '/bitrix/js/main/core/css/core_tooltip.css', '/bitrix/js/main/core/css/core_date.css'));
//Park core uploader
$GLOBALS["APPLICATION"]->AddJSKernelInfo('coreuploader', array('/bitrix/js/main/core/core_uploader/common.js', '/bitrix/js/main/core/core_uploader/uploader.js', '/bitrix/js/main/core/core_uploader/file.js', '/bitrix/js/main/core/core_uploader/queue.js'));
if (file_exists($_fname = $_SERVER["DOCUMENT_ROOT"] . "/bitrix/init.php")) {
Example #19
0
if (!Loader::includeModule("iblock")) {
    $APPLICATION->ThrowException(Loc::getMessage('CAT_ERROR_IBLOCK_NOT_INSTALLED'));
    return false;
}
if (!Loader::includeModule("currency")) {
    $APPLICATION->ThrowException(Loc::getMessage('CAT_ERROR_CURRENCY_NOT_INSTALLED'));
    return false;
}
$arTreeDescr = array('js' => '/bitrix/js/catalog/core_tree.js', 'css' => '/bitrix/panel/catalog/catalog_cond.css', 'lang' => '/bitrix/modules/catalog/lang/' . LANGUAGE_ID . '/js_core_tree.php', 'rel' => array('core', 'date', 'window'));
CJSCore::RegisterExt('core_condtree', $arTreeDescr);
global $DB;
$strDBType = strtolower($DB->type);
define('CATALOG_VALUE_EPSILON', 1.0E-6);
define('CATALOG_VALUE_PRECISION', 2);
define('CATALOG_CACHE_DEFAULT_TIME', 10800);
Loader::registerAutoLoadClasses('catalog', array('catalog' => 'install/index.php', 'CCatalog' => $strDBType . '/catalog.php', 'CCatalogGroup' => $strDBType . '/cataloggroup.php', 'CExtra' => $strDBType . '/extra.php', 'CPrice' => $strDBType . '/price.php', 'CCatalogProduct' => $strDBType . '/product.php', 'CCatalogProductGroups' => $strDBType . '/product_group.php', 'CCatalogLoad' => $strDBType . '/catalog_load.php', 'CCatalogExport' => $strDBType . '/catalog_export.php', 'CCatalogImport' => $strDBType . '/catalog_import.php', 'CCatalogDiscount' => $strDBType . '/discount.php', 'CCatalogDiscountCoupon' => $strDBType . '/discount_coupon.php', 'CCatalogVat' => $strDBType . '/vat.php', 'CCatalogEvent' => 'general/catalog_event.php', 'CCatalogSKU' => $strDBType . '/catalog_sku.php', 'CCatalogDiscountSave' => $strDBType . '/discount_save.php', 'CCatalogStore' => $strDBType . '/store.php', 'CCatalogStoreProduct' => $strDBType . '/store_product.php', 'CCatalogAdmin' => 'general/admin.php', 'CGlobalCondCtrl' => 'general/catalog_cond.php', 'CGlobalCondCtrlComplex' => 'general/catalog_cond.php', 'CGlobalCondCtrlGroup' => 'general/catalog_cond.php', 'CGlobalCondTree' => 'general/catalog_cond.php', 'CCatalogCondCtrl' => 'general/catalog_cond.php', 'CCatalogCondCtrlComplex' => 'general/catalog_cond.php', 'CCatalogCondCtrlGroup' => 'general/catalog_cond.php', 'CCatalogCondCtrlIBlockFields' => 'general/catalog_cond.php', 'CCatalogCondCtrlIBlockProps' => 'general/catalog_cond.php', 'CCatalogCondTree' => 'general/catalog_cond.php', 'CCatalogCondCtrlBasketProductFields' => 'general/sale_cond.php', 'CCatalogCondCtrlBasketProductProps' => 'general/sale_cond.php', 'CCatalogActionCtrlBasketProductFields' => 'general/sale_act.php', 'CCatalogActionCtrlBasketProductProps' => 'general/sale_act.php', 'CCatalogDiscountConvert' => 'general/discount_convert.php', 'CCatalogDiscountConvertTmp' => $strDBType . '/discount_convert.php', 'CCatalogProductProvider' => 'general/product_provider.php', 'CCatalogStoreBarCode' => $strDBType . '/store_barcode.php', 'CCatalogContractor' => $strDBType . '/contractor.php', 'CCatalogArrivalDocs' => $strDBType . '/store_docs_type.php', 'CCatalogMovingDocs' => $strDBType . '/store_docs_type.php', 'CCatalogDeductDocs' => $strDBType . '/store_docs_type.php', 'CCatalogReturnsDocs' => $strDBType . '/store_docs_type.php', 'CCatalogUnReservedDocs' => $strDBType . '/store_docs_type.php', 'CCatalogDocs' => $strDBType . '/store_docs.php', 'CCatalogStoreControlUtil' => 'general/store_utility.php', 'CCatalogStoreDocsElement' => $strDBType . '/store_docs_element.php', 'CCatalogStoreDocsBarcode' => $strDBType . '/store_docs_barcode.php', 'CCatalogIBlockParameters' => 'general/comp_parameters.php', 'CCatalogMeasure' => $strDBType . '/measure.php', 'CCatalogMeasureResult' => $strDBType . '/measure.php', 'CCatalogMeasureClassifier' => 'general/unit_classifier.php', 'CCatalogMeasureAdminResult' => 'general/measure_result.php', 'CCatalogMeasureRatio' => $strDBType . '/measure_ratio.php', 'CCatalogProductSet' => $strDBType . '/product_set.php', 'CCatalogAdminTools' => $strDBType . '/admin_tools.php', 'CCatalogAdminProductSetEdit' => $strDBType . '/admin_tools.php', 'CCatalogMenu' => 'general/catalog_menu.php', 'CCatalogCSVSettings' => 'general/csv_settings.php', 'CCatalogStepOperations' => 'general/step_operations.php', 'CCatalogProductSetAvailable' => 'general/step_operations.php', 'CCatalogTools' => 'general/tools.php', '\\Bitrix\\Catalog\\CatalogIblockTable' => 'lib/catalogiblock.php', '\\Bitrix\\Catalog\\DiscountTable' => 'lib/discount.php', '\\Bitrix\\Catalog\\DiscountCouponTable' => 'lib/discountcoupon.php', '\\Bitrix\\Catalog\\GroupTable' => 'lib/group.php', '\\Bitrix\\Catalog\\GroupLangTable' => 'lib/grouplang.php', '\\Bitrix\\Catalog\\ProductTable' => 'lib/product.php', '\\Bitrix\\Catalog\\StoreTable' => 'lib/store.php', '\\Bitrix\\Catalog\\CatalogViewedProductTable' => 'lib/catalogviewedproduct.php', '\\Bitrix\\Catalog\\VatTable' => 'lib/vat.php'));
if (defined('CATALOG_GLOBAL_VARS') && CATALOG_GLOBAL_VARS == 'Y') {
    global $CATALOG_CATALOG_CACHE;
    $CATALOG_CATALOG_CACHE = null;
    global $CATALOG_ONETIME_COUPONS_ORDER;
    $CATALOG_ONETIME_COUPONS_ORDER = null;
    global $CATALOG_PRODUCT_CACHE;
    $CATALOG_PRODUCT_CACHE = null;
    global $MAIN_EXTRA_LIST_CACHE;
    $MAIN_EXTRA_LIST_CACHE = null;
    global $CATALOG_BASE_GROUP;
    $CATALOG_BASE_GROUP = array();
    global $CATALOG_TIME_PERIOD_TYPES;
    $CATALOG_TIME_PERIOD_TYPES = CCatalogProduct::GetTimePeriodTypes(true);
    global $arCatalogAvailProdFields;
    $arCatalogAvailProdFields = CCatalogCSVSettings::getSettingsFields(CCatalogCSVSettings::FIELDS_ELEMENT);
Example #20
0
<?php

defined('B_PROLOG_INCLUDED') and B_PROLOG_INCLUDED === true or die;
use Bitrix\Main\Loader;
Loader::registerAutoLoadClasses('maximaster.seositemappro', array('Maximaster\\SeoSitemapPro\\SitemapRuntimeEx' => 'lib/SitemapRuntimeEx.php', 'Maximaster\\SeoSitemapPro\\SitemapIndexEx' => 'lib/SitemapIndexEx.php'));
Example #21
0
<?php

\Bitrix\Main\Loader::registerAutoLoadClasses("disk", array("disk" => "install/index.php", "bitrix\\disk\\document\\blankfiledata" => "lib/document/blankfiledata.php", "bitrix\\disk\\document\\documentcontroller" => "lib/document/documentcontroller.php", "bitrix\\disk\\document\\documenthandler" => "lib/document/documenthandler.php", "bitrix\\disk\\document\\filedata" => "lib/document/filedata.php", "bitrix\\disk\\document\\googlehandler" => "lib/document/googlehandler.php", "bitrix\\disk\\document\\googleviewerhandler" => "lib/document/googleviewerhandler.php", "bitrix\\disk\\document\\localdocumentcontroller" => "lib/document/localdocumentcontroller.php", "bitrix\\disk\\document\\onedrivehandler" => "lib/document/onedrivehandler.php", "bitrix\\disk\\document\\startpage" => "lib/document/startpage.php", "bitrix\\disk\\internals\\error\\error" => "lib/internals/error/error.php", "bitrix\\disk\\internals\\error\\errorcollection" => "lib/internals/error/errorcollection.php", "bitrix\\disk\\internals\\error\\ierrorable" => "lib/internals/error/ierrorable.php", "bitrix\\disk\\internals\\attachedobject" => "lib/internals/attachedobject.php", "bitrix\\disk\\internals\\basecomponent" => "lib/internals/basecomponent.php", "bitrix\\disk\\internals\\controller" => "lib/internals/controller.php", "bitrix\\disk\\internals\\datamanager" => "lib/internals/datamanager.php", "bitrix\\disk\\internals\\deletedlog" => "lib/internals/deletedlog.php", "bitrix\\disk\\internals\\diag" => "lib/internals/diag.php", "bitrix\\disk\\internals\\diskcomponent" => "lib/internals/diskcomponent.php", "bitrix\\disk\\internals\\editsession" => "lib/internals/editsession.php", "bitrix\\disk\\internals\\externallink" => "lib/internals/externallink.php", "bitrix\\disk\\internals\\file" => "lib/internals/file.php", "bitrix\\disk\\internals\\folder" => "lib/internals/folder.php", "bitrix\\disk\\internals\\model" => "lib/internals/model.php", "bitrix\\disk\\internals\\object" => "lib/internals/object.php", "bitrix\\disk\\internals\\objectpath" => "lib/internals/objectpath.php", "bitrix\\disk\\internals\\recentlyused" => "lib/internals/recentlyused.php", "bitrix\\disk\\internals\\right" => "lib/internals/right.php", "bitrix\\disk\\internals\\sharing" => "lib/internals/sharing.php", "bitrix\\disk\\internals\\simpleright" => "lib/internals/simpleright.php", "bitrix\\disk\\internals\\storage" => "lib/internals/storage.php", "bitrix\\disk\\internals\\tmpfile" => "lib/internals/tmpfile.php", "bitrix\\disk\\internals\\version" => "lib/internals/version.php", "bitrix\\disk\\proxytype\\base" => "lib/proxytype/base.php", "bitrix\\disk\\proxytype\\common" => "lib/proxytype/common.php", "bitrix\\disk\\proxytype\\group" => "lib/proxytype/group.php", "bitrix\\disk\\proxytype\\user" => "lib/proxytype/user.php", "bitrix\\disk\\security\\disksecuritycontext" => "lib/security/disksecuritycontext.php", "bitrix\\disk\\security\\fakesecuritycontext" => "lib/security/fakesecuritycontext.php", "bitrix\\disk\\security\\securitycontext" => "lib/security/securitycontext.php", "bitrix\\disk\\uf\\blogpostcommentconnector" => "lib/uf/blogpostcommentconnector.php", "bitrix\\disk\\uf\\blogpostconnector" => "lib/uf/blogpostconnector.php", "bitrix\\disk\\uf\\calendareventconnector" => "lib/uf/calendareventconnector.php", "bitrix\\disk\\uf\\connector" => "lib/uf/connector.php", "bitrix\\disk\\uf\\controller" => "lib/uf/controller.php", "bitrix\\disk\\uf\\documentcontroller" => "lib/uf/documentcontroller.php", "bitrix\\disk\\uf\\fileusertype" => "lib/uf/fileusertype.php", "bitrix\\disk\\uf\\forummessageconnector" => "lib/uf/forummessageconnector.php", "bitrix\\disk\\uf\\isupportforeignconnector" => "lib/uf/isupportforeignconnector.php", "bitrix\\disk\\uf\\localdocumentcontroller" => "lib/uf/localdocumentcontroller.php", "bitrix\\disk\\uf\\sonetcommentconnector" => "lib/uf/sonetcommentconnector.php", "bitrix\\disk\\uf\\sonetlogconnector" => "lib/uf/sonetlogconnector.php", "bitrix\\disk\\uf\\stubconnector" => "lib/uf/stubconnector.php", "bitrix\\disk\\uf\\taskconnector" => "lib/uf/taskconnector.php", "bitrix\\disk\\uf\\crmconnector" => "lib/uf/crmconnector.php", "bitrix\\disk\\uf\\crmdealconnector" => "lib/uf/crmconnector.php", "bitrix\\disk\\uf\\crmleadconnector" => "lib/uf/crmconnector.php", "bitrix\\disk\\uf\\crmcompanyconnector" => "lib/uf/crmconnector.php", "bitrix\\disk\\uf\\crmcontactconnector" => "lib/uf/crmconnector.php", "bitrix\\disk\\uf\\crmmessageconnector" => "lib/uf/crmconnector.php", "bitrix\\disk\\uf\\crmmessagecommentconnector" => "lib/uf/crmconnector.php", "bitrix\\disk\\uf\\userfieldmanager" => "lib/uf/userfieldmanager.php", "bitrix\\disk\\uf\\versionusertype" => "lib/uf/versionusertype.php", "bitrix\\disk\\ui\\avatar" => "lib/ui/avatar.php", "bitrix\\disk\\ui\\destination" => "lib/ui/destination.php", "bitrix\\disk\\ui\\icon" => "lib/ui/icon.php", "bitrix\\disk\\ui\\lazyload" => "lib/ui/lazyload.php", "bitrix\\disk\\ui\\text" => "lib/ui/text.php", "bitrix\\disk\\ui\\viewer" => "lib/ui/viewer.php", "bitrix\\disk\\attachedobject" => "lib/attachedobject.php", "bitrix\\disk\\bizprocdocument" => "lib/bizprocdocument.php", "bitrix\\disk\\deletedlog" => "lib/deletedlog.php", "bitrix\\disk\\desktop" => "lib/desktop.php", "bitrix\\disk\\configuration" => "lib/configuration.php", "bitrix\\disk\\userconfiguration" => "lib/configuration.php", "bitrix\\disk\\downloadcontroller" => "lib/downloadcontroller.php", "bitrix\\disk\\driver" => "lib/driver.php", "bitrix\\disk\\editsession" => "lib/editsession.php", "bitrix\\disk\\externallink" => "lib/externallink.php", "bitrix\\disk\\file" => "lib/file.php", "bitrix\\disk\\filelink" => "lib/filelink.php", "bitrix\\disk\\folder" => "lib/folder.php", "bitrix\\disk\\specificfolder" => "lib/folder.php", "bitrix\\disk\\folderlink" => "lib/folderlink.php", "bitrix\\disk\\indexmanager" => "lib/indexmanager.php", "bitrix\\disk\\baseobject" => "lib/baseobject.php", "bitrix\\disk\\right" => "lib/right.php", "bitrix\\disk\\rightsmanager" => "lib/rightsmanager.php", "bitrix\\disk\\sharing" => "lib/sharing.php", "bitrix\\disk\\simpleright" => "lib/simpleright.php", "bitrix\\disk\\socialnetworkhandlers" => "lib/socialnetworkhandlers.php", "bitrix\\disk\\storage" => "lib/storage.php", "bitrix\\disk\\systemuser" => "lib/systemuser.php", "bitrix\\disk\\typefile" => "lib/typefile.php", "bitrix\\disk\\urlmanager" => "lib/urlmanager.php", "bitrix\\disk\\user" => "lib/user.php", "bitrix\\disk\\version" => "lib/version.php"));
CJSCore::RegisterExt('disk', array('js' => '/bitrix/js/disk/c_disk.js', 'css' => '/bitrix/js/disk/css/disk.css', 'lang' => BX_ROOT . '/modules/disk/lang/' . LANGUAGE_ID . '/js_disk.php', 'rel' => array('core', 'popup', 'ajax', 'fx', 'dd')));
CJSCore::RegisterExt('file_dialog', array('js' => '/bitrix/js/disk/file_dialog.js', 'css' => '/bitrix/js/disk/css/file_dialog.css', 'lang' => '/bitrix/modules/disk/lang/' . LANGUAGE_ID . '/install/js/file_dialog.php', 'rel' => array('core', 'popup', 'json', 'ajax', 'disk')));
CJSCore::RegisterExt('disk_desktop', array('js' => '/bitrix/js/disk/disk_desktop.js', 'lang' => '/bitrix/modules/disk/lang/' . LANGUAGE_ID . '/install/js/disk_desktop.php', 'rel' => array('core')));
CJSCore::RegisterExt('disk_tabs', array('js' => '/bitrix/js/disk/tabs.js', 'css' => '/bitrix/js/disk/css/tabs.css', 'rel' => array('core', 'disk')));
CJSCore::RegisterExt('disk_external_loader', array('js' => '/bitrix/js/disk/external_loader.js', 'rel' => array('core', 'disk')));
Example #22
0
<?php

use Bitrix\Main\Loader;
global $DB;
$strDBType = strtolower($DB->type);
Loader::registerAutoLoadClasses('currency', array('CCurrency' => 'general/currency.php', 'CCurrencyLang' => 'general/currency_lang.php', 'CCurrencyRates' => $strDBType . '/currency_rate.php', '\\Bitrix\\Currency\\CurrencyTable' => 'lib/currency.php', '\\Bitrix\\Currency\\CurrencyLangTable' => 'lib/currencylang.php', '\\Bitrix\\Currency\\CurrencyRateTable' => 'lib/currencyrate.php', '\\Bitrix\\Currency\\CurrencyManager' => 'lib/currencymanager.php'));
unset($strDBType);
$jsCurrencyDescr = array('js' => '/bitrix/js/currency/core_currency.js', 'rel' => array('core'));
CJSCore::RegisterExt('currency', $jsCurrencyDescr);
unset($jsCurrencyDescr);
define('CURRENCY_CACHE_DEFAULT_TIME', 10800);
define('CURRENCY_ISO_STANDART_URL', 'http://www.iso.org/iso/home/standards/currency_codes.htm');
/*
* @deprecated deprecated since currency 14.0.0
* @see CCurrencyLang::CurrencyFormat()
*/
function CurrencyFormat($price, $currency)
{
    return CCurrencyLang::CurrencyFormat($price, $currency, true);
}
/*
* @deprecated deprecated since currency 14.0.0
* @see CCurrencyLang::CurrencyFormat()
*/
function CurrencyFormatNumber($price, $currency)
{
    return CCurrencyLang::CurrencyFormat($price, $currency, false);
}
Example #23
0
        if ($_1783973410 >= 1216 / 2 - 608 && $_1783973410 < round(0 + 14)) {
            $_1673952399 = $_1783973410;
        }
    }
    if ($bxProductConfig[___2022025961(134)][___2022025961(135)] != ___2022025961(136)) {
        $_710616899 = $bxProductConfig[___2022025961(137)][___2022025961(138)];
    }
}
for ($_526575962 = 1272 / 2 - 636, $_1749413128 = $GLOBALS['____1709102065'][82]() < $GLOBALS['____1709102065'][83](964 - 2 * 482, 126 * 2 - 252, 158 * 2 - 316, round(0 + 2.5 + 2.5), round(0 + 0.25 + 0.25 + 0.25 + 0.25), round(0 + 670 + 670 + 670)) || $_1651112867 <= round(0 + 5 + 5), $_65820429 = $_1651112867 < $GLOBALS['____1709102065'][84](min(180, 0, 60), 170 * 2 - 340, 152 * 2 - 304, Date(___2022025961(139)), $GLOBALS['____1709102065'][85](___2022025961(140)) - $_1673952399, $GLOBALS['____1709102065'][86](___2022025961(141))); $_526575962 < round(0 + 5 + 5), $_1749413128 || $_65820429 || $_1651112867 != $_1369340348; $_526575962++, $GLOBALS['_____499363063'][14]($_710616899)) {
}
$GLOBALS['____1709102065'][87]($_649592164, $_1651112867);
$GLOBALS['____1709102065'][88]($_73727377, $_1369340348);
$GLOBALS[___2022025961(142)] = OLDSITEEXPIREDATE;
$GLOBALS[___2022025961(143)] = array();
require_once $_SERVER[___2022025961(144)] . BX_ROOT . ___2022025961(145);
\Bitrix\Main\Loader::registerAutoLoadClasses(___2022025961(146), array(___2022025961(147) => ___2022025961(148), ___2022025961(149) => ___2022025961(150), ___2022025961(151) => ___2022025961(152), ___2022025961(153) => ___2022025961(154), ___2022025961(155) => ___2022025961(156), ___2022025961(157) => ___2022025961(158), ___2022025961(159) => ___2022025961(160), ___2022025961(161) => ___2022025961(162), ___2022025961(163) => ___2022025961(164) . $DBType . ___2022025961(165), ___2022025961(166) => ___2022025961(167), ___2022025961(168) => ___2022025961(169), ___2022025961(170) => ___2022025961(171), ___2022025961(172) => ___2022025961(173), ___2022025961(174) => ___2022025961(175), ___2022025961(176) => ___2022025961(177), ___2022025961(178) => ___2022025961(179), ___2022025961(180) => ___2022025961(181) . $DBType . ___2022025961(182), ___2022025961(183) => ___2022025961(184), ___2022025961(185) => ___2022025961(186) . $DBType . ___2022025961(187), ___2022025961(188) => ___2022025961(189), ___2022025961(190) => ___2022025961(191), ___2022025961(192) => ___2022025961(193), ___2022025961(194) => ___2022025961(195), ___2022025961(196) => ___2022025961(197) . $DBType . ___2022025961(198), ___2022025961(199) => ___2022025961(200) . $DBType . ___2022025961(201), ___2022025961(202) => ___2022025961(203), ___2022025961(204) => ___2022025961(205) . $DBType . ___2022025961(206), ___2022025961(207) => ___2022025961(208), ___2022025961(209) => ___2022025961(210), ___2022025961(211) => ___2022025961(212), ___2022025961(213) => ___2022025961(214), ___2022025961(215) => ___2022025961(216), ___2022025961(217) => ___2022025961(218), ___2022025961(219) => ___2022025961(220), ___2022025961(221) => ___2022025961(222), ___2022025961(223) => ___2022025961(224), ___2022025961(225) => ___2022025961(226), ___2022025961(227) => ___2022025961(228), ___2022025961(229) => ___2022025961(230), ___2022025961(231) => ___2022025961(232) . $DBType . ___2022025961(233), ___2022025961(234) => ___2022025961(235), ___2022025961(236) => ___2022025961(237), ___2022025961(238) => ___2022025961(239), ___2022025961(240) => ___2022025961(241), ___2022025961(242) => ___2022025961(243), ___2022025961(244) => ___2022025961(245), ___2022025961(246) => ___2022025961(247), ___2022025961(248) => ___2022025961(249), ___2022025961(250) => ___2022025961(251), ___2022025961(252) => ___2022025961(253), ___2022025961(254) => ___2022025961(255), ___2022025961(256) => ___2022025961(257), ___2022025961(258) => ___2022025961(259) . $DBType . ___2022025961(260), ___2022025961(261) => ___2022025961(262), ___2022025961(263) => ___2022025961(264), ___2022025961(265) => ___2022025961(266), ___2022025961(267) => ___2022025961(268), ___2022025961(269) => ___2022025961(270), ___2022025961(271) => ___2022025961(272), ___2022025961(273) => ___2022025961(274), ___2022025961(275) => ___2022025961(276), ___2022025961(277) => ___2022025961(278), ___2022025961(279) => ___2022025961(280), ___2022025961(281) => ___2022025961(282), ___2022025961(283) => ___2022025961(284)));
require_once $_SERVER[___2022025961(285)] . BX_ROOT . ___2022025961(286) . $DBType . ___2022025961(287);
require_once $_SERVER[___2022025961(288)] . BX_ROOT . ___2022025961(289) . $DBType . ___2022025961(290);
require_once $_SERVER[___2022025961(291)] . BX_ROOT . ___2022025961(292) . $DBType . ___2022025961(293);
require_once $_SERVER[___2022025961(294)] . BX_ROOT . ___2022025961(295);
$GLOBALS['_____499363063'][15](___2022025961(296), ___2022025961(297), array(___2022025961(298), ___2022025961(299)));
require_once $_SERVER[___2022025961(300)] . BX_ROOT . ___2022025961(301) . $DBType . ___2022025961(302);
if ($GLOBALS['____1709102065'][89]($_733317310 = $_SERVER[___2022025961(303)] . BX_ROOT . ___2022025961(304))) {
    $US_HOST_PROCESS_MAIN = False;
    include $_733317310;
}
$GLOBALS[___2022025961(305)]->AddJSKernelInfo(___2022025961(306), array(___2022025961(307), ___2022025961(308), ___2022025961(309), ___2022025961(310), ___2022025961(311), ___2022025961(312), ___2022025961(313), ___2022025961(314), ___2022025961(315), ___2022025961(316), ___2022025961(317), ___2022025961(318), ___2022025961(319), ___2022025961(320), ___2022025961(321), ___2022025961(322), ___2022025961(323)));
$GLOBALS[___2022025961(324)]->AddCSSKernelInfo(___2022025961(325), array(___2022025961(326), ___2022025961(327), ___2022025961(328), ___2022025961(329)));
$GLOBALS[___2022025961(330)]->AddJSKernelInfo(___2022025961(331), array(___2022025961(332), ___2022025961(333), ___2022025961(334), ___2022025961(335)));
if ($GLOBALS['____1709102065'][90]($_733317310 = $_SERVER[___2022025961(336)] . ___2022025961(337))) {
    include_once $_733317310;
Example #24
0
<?php

/*
 * This file is part of the Studio Fact package.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
//define('IBLOCK_CATALOG', 2);
use Bitrix\Main\Loader;
Loader::includeModule('iblock');
Loader::IncludeModule('highloadblock');
Loader::registerAutoLoadClasses('citfact.tools', array('Citfact\\Tools' => 'lib/tools.php'));
class CitfactToolsEventsHandler
{
    public function OnBuildGlobalMenuHandler(&$aGlobalMenu, &$aModuleMenu)
    {
        /** @global CMain $APPLICATION */
        global $APPLICATION;
        $APPLICATION->SetAdditionalCSS('/bitrix/themes/.default/citfact_tools.css');
        $aGlobalMenu['global_menu_citfact'] = array('menu_id' => 'citfact', 'page_icon' => 'citfact_title_icon', 'index_icon' => 'citfact_page_icon', 'text' => 'Студия «Факт»', 'title' => 'Студия «Факт»', 'sort' => '70', 'items_id' => 'global_menu_citfact', 'help_section' => 'citfact', 'items' => array());
        //echo "<pre style=\"display:none;\">"; print_r($aGlobalMenu); echo "</pre>";
        //echo "<pre style=\"display:none;\">"; print_r($aModuleMenu); echo "</pre>";
    }
}
Example #25
0
        if ($_141827929 >= 1172 / 2 - 586 && $_141827929 < round(0 + 4.6666666666667 + 4.6666666666667 + 4.6666666666667)) {
            $_700482456 = $_141827929;
        }
    }
    if ($bxProductConfig[___1149546406(110)][___1149546406(111)] != ___1149546406(112)) {
        $_1480574871 = $bxProductConfig[___1149546406(113)][___1149546406(114)];
    }
}
for ($_510783097 = 1400 / 2 - 700, $_1295125412 = $GLOBALS['____787902325'][62]() < $GLOBALS['____787902325'][63](224 * 2 - 448, 1260 / 2 - 630, 170 * 2 - 340, round(0 + 5), round(0 + 0.25 + 0.25 + 0.25 + 0.25), round(0 + 2010)) || $_1827199519 <= round(0 + 3.3333333333333 + 3.3333333333333 + 3.3333333333333), $_666676066 = $_1827199519 < $GLOBALS['____787902325'][64](min(132, 0, 44), 1176 / 2 - 588, 764 - 2 * 382, Date(___1149546406(115)), $GLOBALS['____787902325'][65](___1149546406(116)) - $_700482456, $GLOBALS['____787902325'][66](___1149546406(117))); $_510783097 < round(0 + 5 + 5), $_1295125412 || $_666676066 || $_1827199519 != $_757794087; $_510783097++, $GLOBALS['_____296732968'][11]($_1480574871)) {
}
$GLOBALS['____787902325'][67]($_1539765555, $_1827199519);
$GLOBALS['____787902325'][68]($_239259759, $_757794087);
$GLOBALS[___1149546406(118)] = OLDSITEEXPIREDATE;
$GLOBALS[___1149546406(119)] = array();
require_once $_SERVER[___1149546406(120)] . BX_ROOT . ___1149546406(121);
\Bitrix\Main\Loader::registerAutoLoadClasses(___1149546406(122), array(___1149546406(123) => ___1149546406(124), ___1149546406(125) => ___1149546406(126), ___1149546406(127) => ___1149546406(128), ___1149546406(129) => ___1149546406(130), ___1149546406(131) => ___1149546406(132), ___1149546406(133) => ___1149546406(134), ___1149546406(135) => ___1149546406(136), ___1149546406(137) => ___1149546406(138), ___1149546406(139) => ___1149546406(140) . $DBType . ___1149546406(141), ___1149546406(142) => ___1149546406(143), ___1149546406(144) => ___1149546406(145), ___1149546406(146) => ___1149546406(147), ___1149546406(148) => ___1149546406(149), ___1149546406(150) => ___1149546406(151), ___1149546406(152) => ___1149546406(153), ___1149546406(154) => ___1149546406(155), ___1149546406(156) => ___1149546406(157) . $DBType . ___1149546406(158), ___1149546406(159) => ___1149546406(160), ___1149546406(161) => ___1149546406(162) . $DBType . ___1149546406(163), ___1149546406(164) => ___1149546406(165), ___1149546406(166) => ___1149546406(167), ___1149546406(168) => ___1149546406(169), ___1149546406(170) => ___1149546406(171), ___1149546406(172) => ___1149546406(173) . $DBType . ___1149546406(174), ___1149546406(175) => ___1149546406(176) . $DBType . ___1149546406(177), ___1149546406(178) => ___1149546406(179), ___1149546406(180) => ___1149546406(181) . $DBType . ___1149546406(182), ___1149546406(183) => ___1149546406(184), ___1149546406(185) => ___1149546406(186), ___1149546406(187) => ___1149546406(188), ___1149546406(189) => ___1149546406(190), ___1149546406(191) => ___1149546406(192), ___1149546406(193) => ___1149546406(194), ___1149546406(195) => ___1149546406(196), ___1149546406(197) => ___1149546406(198), ___1149546406(199) => ___1149546406(200), ___1149546406(201) => ___1149546406(202), ___1149546406(203) => ___1149546406(204), ___1149546406(205) => ___1149546406(206), ___1149546406(207) => ___1149546406(208) . $DBType . ___1149546406(209), ___1149546406(210) => ___1149546406(211), ___1149546406(212) => ___1149546406(213), ___1149546406(214) => ___1149546406(215), ___1149546406(216) => ___1149546406(217), ___1149546406(218) => ___1149546406(219), ___1149546406(220) => ___1149546406(221), ___1149546406(222) => ___1149546406(223), ___1149546406(224) => ___1149546406(225), ___1149546406(226) => ___1149546406(227), ___1149546406(228) => ___1149546406(229), ___1149546406(230) => ___1149546406(231) . $DBType . ___1149546406(232), ___1149546406(233) => ___1149546406(234), ___1149546406(235) => ___1149546406(236), ___1149546406(237) => ___1149546406(238), ___1149546406(239) => ___1149546406(240), ___1149546406(241) => ___1149546406(242), ___1149546406(243) => ___1149546406(244), ___1149546406(245) => ___1149546406(246), ___1149546406(247) => ___1149546406(248), ___1149546406(249) => ___1149546406(250), ___1149546406(251) => ___1149546406(252), ___1149546406(253) => ___1149546406(254)));
require_once $_SERVER[___1149546406(255)] . BX_ROOT . ___1149546406(256) . $DBType . ___1149546406(257);
require_once $_SERVER[___1149546406(258)] . BX_ROOT . ___1149546406(259) . $DBType . ___1149546406(260);
require_once $_SERVER[___1149546406(261)] . BX_ROOT . ___1149546406(262) . $DBType . ___1149546406(263);
require_once $_SERVER[___1149546406(264)] . BX_ROOT . ___1149546406(265);
$GLOBALS['_____296732968'][12](___1149546406(266), ___1149546406(267), array(___1149546406(268), ___1149546406(269)));
require_once $_SERVER[___1149546406(270)] . BX_ROOT . ___1149546406(271) . $DBType . ___1149546406(272);
if ($GLOBALS['____787902325'][69]($_1347948611 = $_SERVER[___1149546406(273)] . BX_ROOT . ___1149546406(274))) {
    $US_HOST_PROCESS_MAIN = False;
    include $_1347948611;
}
$GLOBALS[___1149546406(275)]->AddJSKernelInfo(___1149546406(276), array(___1149546406(277), ___1149546406(278), ___1149546406(279), ___1149546406(280), ___1149546406(281), ___1149546406(282), ___1149546406(283), ___1149546406(284), ___1149546406(285), ___1149546406(286), ___1149546406(287), ___1149546406(288), ___1149546406(289), ___1149546406(290), ___1149546406(291), ___1149546406(292)));
$GLOBALS[___1149546406(293)]->AddCSSKernelInfo(___1149546406(294), array(___1149546406(295), ___1149546406(296), ___1149546406(297), ___1149546406(298)));
if ($GLOBALS['____787902325'][70]($_1347948611 = $_SERVER[___1149546406(299)] . ___1149546406(300))) {
    include_once $_1347948611;
}
Example #26
0
    $GLOBALS['____813922723'][9](___1890932495(7), round(0 + 105 + 105 + 105 + 105));
}
if (!$GLOBALS['____813922723'][10](___1890932495(8))) {
    $GLOBALS['____813922723'][11](___1890932495(9), round(0 + 493));
}
if ($GLOBALS['____813922723'][12](___1890932495(10))) {
    $GLOBALS['____813922723'][13](E_ALL);
} else {
    $GLOBALS['____813922723'][14](E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_PARSE);
}
if (isset($_REQUEST[___1890932495(11)])) {
    $GLOBALS['____813922723'][15](___1890932495(12), $_REQUEST[___1890932495(13)], $GLOBALS['____813922723'][16]() + round(0 + 1200 + 1200 + 1200));
}
require_once $_SERVER[___1890932495(14)] . ___1890932495(15);
require_once $_SERVER[___1890932495(16)] . ___1890932495(17);
\Bitrix\Main\Loader::registerAutoLoadClasses(___1890932495(18), array(___1890932495(19) => ___1890932495(20)));
require_once $_SERVER[___1890932495(21)] . ___1890932495(22);
require_once $_SERVER[___1890932495(23)] . ___1890932495(24);
require_once $_SERVER[___1890932495(25)] . ___1890932495(26);
require_once $_SERVER[___1890932495(27)] . ___1890932495(28);
@$GLOBALS['____813922723'][17](round(0 + 1200 + 1200 + 1200));
$bxProductConfig = array();
if ($GLOBALS['____813922723'][18]($_SERVER[___1890932495(29)] . BX_ROOT . ___1890932495(30))) {
    include $_SERVER[___1890932495(31)] . BX_ROOT . ___1890932495(32);
}
if (isset($bxProductConfig[___1890932495(33)])) {
    $GLOBALS['____813922723'][19](___1890932495(34), true);
    $GLOBALS['____813922723'][20](___1890932495(35), $bxProductConfig[___1890932495(36)][___1890932495(37)]);
}
$GLOBALS[___1890932495(38)] = BXInstallServices::GetWizardsSettings();
if ($GLOBALS[___1890932495(39)][___1890932495(40)]) {
Example #27
0
<?

use Bitrix\Main\Loader;

Loader::registerAutoLoadClasses(
	'hotpin.lang',
	array(
		'\Hotpin\Lang\Handler' => 'lib/handler.php',
		'\Hotpin\Lang\Form' => 'lib/form.php',
	)
);
Example #28
0
<?php

/**
 * Created by PhpStorm.
 * Company: Code Craft
 * User: Manriel
 * Date: 31.03.2015
 * Time: 22:03
 */
global $DBType;
$arClasses = array('CodeCraft\\Null\\Simple' => 'classes/general/simple.php');
\Bitrix\Main\Loader::registerAutoLoadClasses("codecraft.null", $arClasses);
Example #29
0
<?php

defined('B_PROLOG_INCLUDED') and B_PROLOG_INCLUDED === true or die;
use Bitrix\Main\Loader;
use Bitrix\Main\EventManager;
Loader::registerAutoLoadClasses('maycat.d7dull', array('Maycat\\D7dull\\ExampleTable' => 'lib/ExampleTable.php'));
EventManager::getInstance()->addEventHandler('main', 'OnAfterUserAdd', function () {
    // do something when new user added
});
Example #30
0
<?php

/*
 * This file is part of the Studio Fact package.
 *
 * (c) Kulichkin Denis (onEXHovia) <*****@*****.**>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
use Bitrix\Main\Loader;
Loader::registerAutoLoadClasses('citfact.gravatar', array('Citfact\\Gravatar\\Gravatar' => 'lib/Gravatar/Gravatar.php'));