本文整理汇总了PHP中wincache_refresh_if_changed函数的典型用法代码示例。如果您正苦于以下问题:PHP wincache_refresh_if_changed函数的具体用法?PHP wincache_refresh_if_changed怎么用?PHP wincache_refresh_if_changed使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wincache_refresh_if_changed函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: cleanOpcodes
/**
* Try to reset any opcode caches we know about
*
* @todo make it so developers can extend this somehow
*/
public static function cleanOpcodes()
{
// APC
if (function_exists('apc_clear_cache') && ini_get('apc.stat') == 0) {
apc_clear_cache();
}
// Wincache
if (function_exists('wincache_refresh_if_changed')) {
wincache_refresh_if_changed();
}
// Zend
if (function_exists('accelerator_reset')) {
accelerator_reset();
}
// eAccelerator
if (function_exists('eaccelerator_clear')) {
eaccelerator_clear();
}
// XCache
if (function_exists('xcache_clear_cache') && !ini_get('xcache.admin.enable_auth')) {
$max = xcache_count(XC_TYPE_PHP);
for ($i = 0; $i < $max; $i++) {
if (!xcache_clear_cache(XC_TYPE_PHP, $i)) {
break;
}
}
}
}
开发者ID:jglaine,项目名称:sugar761-ent,代码行数:33,代码来源:SugarCache.php
示例2: getAllActive
/**
* Returns all supported and active opcaches
*
* @return array Array filled with supported and active opcaches
*/
public function getAllActive()
{
$xcVersion = phpversion('xcache');
$supportedCaches = array('OPcache' => array('active' => extension_loaded('Zend OPcache') && ini_get('opcache.enable') === '1', 'version' => phpversion('Zend OPcache'), 'canReset' => TRUE, 'canInvalidate' => function_exists('opcache_invalidate'), 'error' => FALSE, 'clearCallback' => function ($fileAbsPath) {
if ($fileAbsPath !== NULL && function_exists('opcache_invalidate')) {
opcache_invalidate($fileAbsPath);
} else {
opcache_reset();
}
}), 'WinCache' => array('active' => extension_loaded('wincache') && ini_get('wincache.ocenabled') === '1', 'version' => phpversion('wincache'), 'canReset' => TRUE, 'canInvalidate' => TRUE, 'error' => FALSE, 'clearCallback' => function ($fileAbsPath) {
if ($fileAbsPath !== NULL) {
wincache_refresh_if_changed(array($fileAbsPath));
} else {
// No argument means refreshing all.
wincache_refresh_if_changed();
}
}), 'XCache' => array('active' => extension_loaded('xcache'), 'version' => $xcVersion, 'canReset' => !ini_get('xcache.admin.enable_auth'), 'canInvalidate' => FALSE, 'error' => FALSE, 'clearCallback' => function ($fileAbsPath) {
if (!ini_get('xcache.admin.enable_auth')) {
xcache_clear_cache(XC_TYPE_PHP);
}
}));
$activeCaches = array();
foreach ($supportedCaches as $opcodeCache => $properties) {
if ($properties['active']) {
$activeCaches[$opcodeCache] = $properties;
}
}
return $activeCaches;
}
开发者ID:plan2net,项目名称:TYPO3.CMS,代码行数:34,代码来源:OpcodeCacheService.php
示例3: initialize
/**
* Initialize the ClearCache-Callbacks
*
* @return void
*/
protected static function initialize()
{
self::$clearCacheCallbacks = array();
// Zend OpCache (built in by default since PHP 5.5) - http://php.net/manual/de/book.opcache.php
if (extension_loaded('Zend OPcache') && ini_get('opcache.enable') === '1') {
self::$clearCacheCallbacks[] = function ($absolutePathAndFilename) {
if ($absolutePathAndFilename !== null && function_exists('opcache_invalidate')) {
opcache_invalidate($absolutePathAndFilename);
} else {
opcache_reset();
}
};
}
// WinCache - http://www.php.net/manual/de/book.wincache.php
if (extension_loaded('wincache') && ini_get('wincache.ocenabled') === '1') {
self::$clearCacheCallbacks[] = function ($absolutePathAndFilename) {
if ($absolutePathAndFilename !== null) {
wincache_refresh_if_changed(array($absolutePathAndFilename));
} else {
// Refresh everything!
wincache_refresh_if_changed();
}
};
}
// XCache - http://xcache.lighttpd.net/
// Supported in version >= 3.0.1
if (extension_loaded('xcache')) {
self::$clearCacheCallbacks[] = function ($absolutePathAndFilename) {
// XCache can only be fully cleared.
if (!ini_get('xcache.admin.enable_auth')) {
xcache_clear_cache(XC_TYPE_PHP);
}
};
}
}
开发者ID:kszyma,项目名称:flow-development-collection,代码行数:40,代码来源:OpcodeCacheHelper.php
示例4: bx_accelerator_reset
function bx_accelerator_reset()
{
if ($GLOBALS['____1513245363'][16](___1595018847(16))) {
accelerator_reset();
} elseif ($GLOBALS['____1513245363'][17](___1595018847(17))) {
wincache_refresh_if_changed();
}
}
开发者ID:Satariall,项目名称:izurit,代码行数:8,代码来源:update_client.php
示例5: bx_accelerator_reset
function bx_accelerator_reset()
{
if ($GLOBALS['____626942765'][16](___283096063(16))) {
accelerator_reset();
} elseif ($GLOBALS['____626942765'][17](___283096063(17))) {
wincache_refresh_if_changed();
}
}
开发者ID:akniyev,项目名称:itprom_dobrohost,代码行数:8,代码来源:update_client.php
示例6: bx_accelerator_reset
function bx_accelerator_reset()
{
if ($GLOBALS['____780604396'][16](___1088551736(16))) {
accelerator_reset();
} elseif ($GLOBALS['____780604396'][17](___1088551736(17))) {
wincache_refresh_if_changed();
}
}
开发者ID:rasuldev,项目名称:torino,代码行数:8,代码来源:update_client.php
示例7: bx_accelerator_reset
function bx_accelerator_reset()
{
if ($GLOBALS['____467353288'][16](___1498308727(16))) {
accelerator_reset();
} elseif ($GLOBALS['____467353288'][17](___1498308727(17))) {
wincache_refresh_if_changed();
}
}
开发者ID:webgksupport,项目名称:alpina,代码行数:8,代码来源:update_client.php
示例8: bx_accelerator_reset
function bx_accelerator_reset()
{
if ($GLOBALS['____1606645557'][16](___2114809146(16))) {
accelerator_reset();
} elseif ($GLOBALS['____1606645557'][17](___2114809146(17))) {
wincache_refresh_if_changed();
}
}
开发者ID:mrdeadmouse,项目名称:u136006,代码行数:8,代码来源:update_client.php
示例9: bx_accelerator_reset
function bx_accelerator_reset()
{
if ($GLOBALS['____257916564'][13](___575231538(13))) {
accelerator_reset();
} elseif ($GLOBALS['____257916564'][14](___575231538(14))) {
wincache_refresh_if_changed();
}
}
开发者ID:k-kalashnikov,项目名称:geekcon_new,代码行数:8,代码来源:update_client.php
示例10: bx_accelerator_reset
function bx_accelerator_reset()
{
if ($GLOBALS['____2058819955'][16](___1032422006(16))) {
accelerator_reset();
} elseif ($GLOBALS['____2058819955'][17](___1032422006(17))) {
wincache_refresh_if_changed();
}
}
开发者ID:DarneoStudio,项目名称:bitrix,代码行数:8,代码来源:update_client.php
示例11: bx_accelerator_reset
function bx_accelerator_reset()
{
if ($GLOBALS['____1595852040'][16](___1664354704(16))) {
accelerator_reset();
} elseif ($GLOBALS['____1595852040'][17](___1664354704(17))) {
wincache_refresh_if_changed();
}
}
开发者ID:vim84,项目名称:b-markt,代码行数:8,代码来源:update_client.php
示例12: bx_accelerator_reset
function bx_accelerator_reset()
{
if ($GLOBALS['____686248920'][13](___424308761(13))) {
accelerator_reset();
} elseif ($GLOBALS['____686248920'][14](___424308761(14))) {
wincache_refresh_if_changed();
}
}
开发者ID:spas-viktor,项目名称:books,代码行数:8,代码来源:update_client.php
示例13: bx_accelerator_reset
function bx_accelerator_reset()
{
if ($GLOBALS['____716757992'][13](___781194072(13))) {
accelerator_reset();
} elseif ($GLOBALS['____716757992'][14](___781194072(14))) {
wincache_refresh_if_changed();
}
}
开发者ID:supertest223,项目名称:bitrixtest,代码行数:8,代码来源:update_client.php
示例14: clearOpcodeCaches
function clearOpcodeCaches()
{
if (ini_get('wincache.ocenabled')) {
wincache_refresh_if_changed();
}
if (ini_get('apc.enabled') && function_exists('apc_clear_cache')) {
apc_clear_cache();
}
}
开发者ID:pierredup,项目名称:patchwork,代码行数:9,代码来源:Utils.php
示例15: initialize
/**
* Initialize the cache properties
*/
protected static function initialize()
{
$apcVersion = phpversion('apc');
$xcVersion = phpversion('xcache');
static::$supportedCaches = array('OPcache' => array('active' => extension_loaded('Zend OPcache') && ini_get('opcache.enable') === '1', 'version' => phpversion('Zend OPcache'), 'canReset' => TRUE, 'canInvalidate' => function_exists('opcache_invalidate'), 'error' => FALSE, 'clearCallback' => function ($fileAbsPath) {
if ($fileAbsPath !== NULL && function_exists('opcache_invalidate')) {
opcache_invalidate($fileAbsPath);
} else {
opcache_reset();
}
}), 'APC' => array('active' => extension_loaded('apc') && !extension_loaded('apcu') && ini_get('apc.enabled') === '1', 'version' => $apcVersion, 'canReset' => TRUE, 'canInvalidate' => self::canApcInvalidate(), 'error' => $apcVersion && VersionNumberUtility::convertVersionNumberToInteger($apcVersion) < 3001007, 'clearCallback' => function ($fileAbsPath) {
if ($fileAbsPath !== NULL && OpcodeCacheUtility::getCanInvalidate('APC')) {
// This may output a warning like: PHP Warning: apc_delete_file(): Could not stat file
// This warning isn't true, this means that apc was unable to generate the cache key
// which depends on the configuration of APC.
apc_delete_file($fileAbsPath);
} else {
apc_clear_cache('opcode');
}
}), 'WinCache' => array('active' => extension_loaded('wincache') && ini_get('wincache.ocenabled') === '1', 'version' => phpversion('wincache'), 'canReset' => FALSE, 'canInvalidate' => TRUE, 'error' => FALSE, 'clearCallback' => function ($fileAbsPath) {
if ($fileAbsPath !== NULL) {
wincache_refresh_if_changed(array($fileAbsPath));
} else {
// No argument means refreshing all.
wincache_refresh_if_changed();
}
}), 'XCache' => array('active' => extension_loaded('xcache'), 'version' => $xcVersion, 'canReset' => TRUE, 'canInvalidate' => FALSE, 'error' => FALSE, 'clearCallback' => $xcVersion && VersionNumberUtility::convertVersionNumberToInteger($xcVersion) < 3000000 ? function ($fileAbsPath) {
if (!ini_get('xcache.admin.enable_auth')) {
xcache_clear_cache(XC_TYPE_PHP, 0);
}
} : function ($fileAbsPath) {
if (!ini_get('xcache.admin.enable_auth')) {
xcache_clear_cache(XC_TYPE_PHP);
}
}), 'eAccelerator' => array('active' => extension_loaded('eAccelerator'), 'version' => phpversion('eaccelerator'), 'canReset' => FALSE, 'canInvalidate' => FALSE, 'error' => TRUE, 'clearCallback' => function ($fileAbsPath) {
eaccelerator_clear();
}), 'ZendOptimizerPlus' => array('active' => extension_loaded('Zend Optimizer+') && ini_get('zend_optimizerplus.enable') === '1', 'version' => phpversion('Zend Optimizer+'), 'canReset' => TRUE, 'canInvalidate' => FALSE, 'error' => FALSE, 'clearCallback' => function ($fileAbsPath) {
accelerator_reset();
}));
static::$activeCaches = array();
// Cache the active ones
foreach (static::$supportedCaches as $opcodeCache => $properties) {
if ($properties['active']) {
static::$activeCaches[$opcodeCache] = $properties;
}
}
}
开发者ID:khanhdeux,项目名称:typo3test,代码行数:50,代码来源:OpcodeCacheUtility.php
示例16: clear
/**
* Clear the opcache.
*
* @param string|null $file If it's specified, we'll try to clear the cache only for this file
*/
public static function clear($file = null)
{
if (static::hasEAccelerator()) {
if (function_exists('eeaccelerator_clear')) {
$paths = @ini_get('eaccelerator.allowed_admin_path');
if (is_string($paths) && $paths !== '') {
$myPath = str_replace(DIRECTORY_SEPARATOR, '/', __DIR__);
foreach (explode(PATH_SEPARATOR, $paths) as $path) {
$path = str_replace(DIRECTORY_SEPARATOR, '/', $path);
if ($path !== '') {
$path = rtrim($path, '/');
if ($path === $myPath || strpos($myPath, $path . '/') === 0) {
@eeaccelerator_clear();
break;
}
}
}
}
}
}
if (static::hasAPC()) {
if (function_exists('apc_clear_cache')) {
@apc_clear_cache('system');
}
}
if (static::hasXCache()) {
if (function_exists('xcache_clear_cache') && ini_get('xcache.admin.user') && ini_get('xcache.admin.pass')) {
@xcache_clear_cache(XC_TYPE_PHP, 0);
}
}
if (static::hasWinCache()) {
if (function_exists('wincache_refresh_if_changed')) {
if ($file) {
@wincache_refresh_if_changed((array) $file);
} else {
@wincache_refresh_if_changed();
}
}
}
if (static::hasZendOpCache()) {
if ($file && function_exists('opcache_invalidate')) {
@opcache_invalidate($file, true);
} elseif (function_exists('opcache_reset')) {
@opcache_reset();
}
}
}
开发者ID:ceko,项目名称:concrete5-1,代码行数:52,代码来源:OpCache.php
示例17: opcache_reset
static function opcache_reset()
{
/**/
if (function_exists('accelerator_reset')) {
accelerator_reset();
}
/**/
if (function_exists('apc_clear_cache')) {
apc_clear_cache('opcode');
}
/**/
if (function_exists('eaccelerator_clear')) {
eaccelerator_clear();
}
/**/
if (function_exists('opcache_reset')) {
opcache_reset();
}
/**/
if (function_exists('wincache_refresh_if_changed')) {
wincache_refresh_if_changed();
}
return true;
}
开发者ID:nicolas-grekas,项目名称:Patchwork,代码行数:24,代码来源:Php550.php
示例18: array
<? $GLOBALS['_____1812821349']= array(base64_decode(''.'SW'.'5j'.'bHV'.'kZU'.'1'.'vZHV'.'sZUxhbmdGaWxl'),base64_decode(''.'RmV0Y2g'.'='),base64_decode('RmV0'.'Y2g='),base64_decode('RmV0Y'.'2g='),base64_decode('R2V0T3B0a'.'W'.'9uU3Rya'.'W5'.'n'),base64_decode(''.'U2V'.'0'.'T'.'3B0a'.'W'.'9uU3Rya'.'W5n'),base64_decode('U2'.'V0'.'T3B0aW9uU'.'3RyaW5n'),base64_decode('U2'.'V0T'.'3'.'B0a'.'W'.'9u'.'U'.'3RyaW5'.'n'),base64_decode('U2'.'V0T3'.'B0aW9'.'u'.'U3R'.'y'.'aW5n'),base64_decode('U2V'.'0T3B0a'.'W9u'.'U3RyaW5n'),base64_decode(''.'R'.'2V0T3B'.'0aW9uU'.'3RyaW5n'),base64_decode('U2'.'V0T'.'3B'.'0a'.'W'.'9uU3'.'RyaW5'.'n'),base64_decode('U2V'.'0T'.'3B0a'.'W9uU3RyaW5'.'n'),base64_decode(''.'R2'.'V0T'.'3B0a'.'W9'.'u'.'U'.'3Rya'.'W'.'5n'),base64_decode('U2V0'.'T3B0aW9uU3RyaW5'.'n'),base64_decode(''.'R'.'2V'.'0T3B0a'.'W9u'.'U3Ry'.'aW5n'),base64_decode('R2'.'V0T3B0'.'aW9uU3R'.'yaW5n'),base64_decode('R2V'.'0T3'.'B'.'0aW9'.'uU3'.'Ry'.'a'.'W5n'),base64_decode('R2'.'V0T3B0aW'.'9uU3'.'RyaW5n'),base64_decode('R'.'2V'.'0T3B0'.'aW'.'9'.'uU3RyaW5n'),base64_decode(''.'R'.'2V0T3B'.'0aW'.'9uU3RyaW5n'),base64_decode('R'.'2V0'.'T3B0aW9uU3RyaW5n'),base64_decode('R'.'2V0T3B0a'.'W'.'9uU3Ry'.'a'.'W5n'),base64_decode('R2'.'V0T3B0aW9'.'uU'.'3'.'Rya'.'W5n'),base64_decode('R'.'2V0'.'T3B0a'.'W9uU3R'.'yaW'.'5n'),base64_decode('R'.'2V0T3B'.'0aW9'.'uU3RyaW5n'),base64_decode(''.'R2'.'V0T3B0aW9u'.'U3R'.'yaW5n'),base64_decode('R'.'2V0T3B'.'0a'.'W9uU3RyaW5n'),base64_decode('R2V0T3B0a'.'W9uU3'.'RyaW5n'),base64_decode(''.'R2V0T3B'.'0aW9uU3Ry'.'aW'.'5n'),base64_decode(''.'R2V0'.'TW9kd'.'WxlRXZl'.'bnRz'),base64_decode('R'.'m'.'V0Y2'.'g='),base64_decode('RXhl'.'Y3'.'V0ZU'.'1vZ'.'HVs'.'ZUV2ZW50'),base64_decode('R2V0T3B'.'0a'.'W'.'9uU3RyaW5'.'n'),base64_decode('R'.'2V0T3B0aW9u'.'U3'.'RyaW5n'),base64_decode('R2V0T3B0'.'a'.'W9uU'.'3RyaW'.'5n'),base64_decode('R2V0T3'.'B0a'.'W'.'9uU3RyaW5'.'n'),base64_decode(''.'R2'.'V0T3B0a'.'W'.'9uU3'.'RyaW5n'),base64_decode('R2V0T3B0aW9uU3RyaW'.'5n'),base64_decode('R2V0T3B0'.'a'.'W'.'9uU3RyaW5n'),base64_decode('U2V0T'.'3B'.'0aW9uU3'.'RyaW'.'5n'),base64_decode('SW5j'.'bHVkZ'.'U'.'1vZHVs'.'ZQ=='),base64_decode('R2V0T'.'G'.'lzd'.'A=='),base64_decode('R'.'mV0Y2'.'g='),base64_decode('R'.'2V0TGlzdA'.'='.'='),base64_decode('RmV0Y2g='),base64_decode('R'.'2V0T'.'3B0aW9'.'uU3RyaW'.'5n'),base64_decode('R2V0T3B0'.'aW9uU'.'3RyaW5n'),base64_decode(''.'R2V0T3'.'B0a'.'W9'.'uU3RyaW'.'5n'),base64_decode('R2'.'V'.'0TG'.'lzdA=='),base64_decode('Rm'.'V'.'0Y2g='),base64_decode(''.'R2V0T'.'Gl'.'zdA=='),base64_decode('R'.'2V'.'0TGlz'.'dA=='),base64_decode('RmV'.'0Y2g'.'='),base64_decode('R'.'mV0'.'Y2g='),base64_decode('R2V'.'0TGl'.'zdA'.'=='),base64_decode('R'.'2V0TGlzdA=='),base64_decode('RmV0Y2g='),base64_decode(''.'R2V0'.'T3B0'.'aW9uU3'.'RyaW5'.'n'),base64_decode('R2V0'.'T3B0aW9uU3RyaW5n'));?><? $GLOBALS['____765235591']= array(base64_decode('ZGVmaW5'.'l'),base64_decode(''.'ZGV'.'maW5'.'lZA=='),base64_decode(''.'Z'.'G'.'V'.'maW5l'),base64_decode('ZGV'.'maW5l'),base64_decode(''.'Z'.'n'.'VuY3Rp'.'b25fZ'.'Xhpc3Rz'),base64_decode(''.'Z'.'m9wZW'.'4'.'='),base64_decode(''.'Z'.'nJ'.'lY'.'W'.'Q'.'='),base64_decode('ZmlsZXNpe'.'m'.'U='),base64_decode(''.'Z'.'mNsb3N'.'l'),base64_decode('ZnVuY3Rpb25fZ'.'X'.'hpc3Rz'),base64_decode('aH'.'Rt'.'bHNwZWN'.'pYW'.'xjaGFycw=='),base64_decode('ZGV'.'maW5'.'lZ'.'A'.'=='),base64_decode('Z'.'nVuY3Rpb25fZX'.'hpc3'.'Rz'),base64_decode('ZnV'.'uY'.'3Rpb25'.'f'.'ZXh'.'p'.'c3'.'Rz'),base64_decode(''.'ZnV'.'uY'.'3Rpb25fZX'.'h'.'pc3R'.'z'),base64_decode(''.'ZGVmaW5lZ'.'A=='),base64_decode('ZG'.'VmaW5l'),base64_decode('ZGVma'.'W5lZA=='),base64_decode('Z'.'GV'.'ma'.'W5'.'l'),base64_decode('Z'.'G'.'V'.'maW5lZ'.'A=='),base64_decode('ZGVm'.'aW5l'),base64_decode('Y'.'291bnQ='),base64_decode('a'.'XNfYXJyY'.'Xk='),base64_decode('aXNfYXJ'.'yYXk='),base64_decode('cH'.'JlZ1'.'9'.'yZXBsYWN'.'l'),base64_decode(''.'c3Ry'.'bGV'.'u'),base64_decode(''.'c3'.'R'.'yb'.'G'.'Vu'),base64_decode('c3'.'R'.'y'.'bGVu'),base64_decode('aX'.'NfYXJyYXk'.'='),base64_decode('Y291b'.'nQ'.'='),base64_decode('Y291bnQ='),base64_decode('c3RybGV'.'u'),base64_decode('c'.'3'.'Ryb'.'G'.'Vu'),base64_decode('cHJlZ19yZXBsYWN'.'l'),base64_decode('c3Ryb'.'G'.'Vu'),base64_decode('c3Ry'.'bGVu'),base64_decode('c3'.'RybGV'.'u'),base64_decode(''.'aXNfYX'.'Jy'.'Y'.'Xk='),base64_decode('Y291bnQ='),base64_decode('Y291'.'bnQ='),base64_decode('c3'.'RybGVu'),base64_decode(''.'c'.'3R'.'ybG'.'Vu'),base64_decode(''.'aXNfYX'.'JyYX'.'k'.'='),base64_decode('c3Ryb'.'G'.'Vu'),base64_decode('YXJy'.'Y'.'X'.'lfa2V5X2'.'V4'.'aXN'.'0'.'cw=='),base64_decode('YXJyYXlfa2V5X2V4aXN0cw='.'='),base64_decode('Zm9wZ'.'W'.'4='),base64_decode(''.'Zn'.'dy'.'a'.'XRl'),base64_decode('Zm'.'Nsb3Nl'),base64_decode('Y'.'XJyYXlfa2V'.'5X2V4aXN'.'0cw=='),base64_decode('YXJyY'.'Xlf'.'a'.'2V5X2V4aX'.'N0'.'cw=='),base64_decode('YXJyYXl'.'fa2'.'V5'.'X2V4aXN0'.'cw='.'='),base64_decode('YXJyY'.'Xlfa2'.'V5X2V4aXN0cw=='),base64_decode('c3RybGVu'),base64_decode('YmFzZTY0X2RlY29kZQ=='),base64_decode(''.'dW5zZXJpYWxp'.'e'.'mU='),base64_decode('aXNfYXJ'.'yY'.'Xk='),base64_decode('Y291bnQ='),base64_decode(''.'ZX'.'hwbG9kZQ'.'=='),base64_decode('YX'.'JyY'.'X'.'lfa'.'2V'.'5c'.'w'.'='.'='),base64_decode('aW5fYXJy'.'YXk='),base64_decode(''.'c2'.'VyaW'.'FsaX'.'pl'),base64_decode('Y'.'mF'.'zZTY0X'.'2VuY29kZQ'.'=='),base64_decode('YXJyYXlf'.'a2V5X2'.'V'.'4aXN0'.'cw='.'='),base64_decode('ZXhwbG9kZQ=='),base64_decode('c2V'.'yaW'.'FsaX'.'pl'),base64_decode(''.'YmFzZTY0X2VuY29kZQ=='),base64_decode('c'.'HJlZ'.'19'.'yZXBsYWNl'),base64_decode('c3'.'Ry'.'bGVu'),base64_decode('c3Ry'.'bGVu'),base64_decode('Z'.'m'.'9wZW4'.'='),base64_decode('c3RyX3Jlc'.'GxhY2U'.'='),base64_decode('c3R'.'ybGVu'),base64_decode('Z'.'n'.'dya'.'XRl'),base64_decode('c'.'3RyX3JlcG'.'xhY'.'2U'.'='),base64_decode('Z'.'mNsb'.'3Nl'),base64_decode('c3RybGV'.'u'),base64_decode('c3RybGVu'),base64_decode('ZmlsZV'.'9leG'.'lzd'.'HM='),base64_decode('a'.'XNfZmlsZQ=='),base64_decode('c3RyX'.'3Jlc'.'GxhY'.'2U='),base64_decode('c'.'3Ryb'.'GVu'),base64_decode('aXNfcmV'.'hZ'.'GFi'.'bGU='),base64_decode('c3Ry'.'X3'.'JlcG'.'xhY2'.'U'.'='),base64_decode('c'.'3R'.'ybGVu'),base64_decode(''.'Zmls'.'Z'.'V9n'.'ZX'.'RfY29udGVud'.'HM='),base64_decode('c3RybGV'.'u'),base64_decode('c3RybGVu'),base64_decode(''.'aXNf'.'YXJyY'.'Xk='),base64_decode('Y29'.'1bnQ='),base64_decode('Y291'.'bnQ='),base64_decode('c'.'3RybGVu'),base64_decode('c3RybGVu'),base64_decode('Z'.'mlsZV'.'9leGlzdH'.'M'.'='),base64_decode(''.'aXNfZGly'),base64_decode('c'.'3'.'RyX3Jlc'.'Gx'.'hY2'.'U='),base64_decode('c'.'3RybGV'.'u'),base64_decode('a'.'XNfd3J'.'pd'.'GF'.'ibGU='),base64_decode('c3RyX'.'3J'.'lcGx'.'hY2U='),base64_decode('c3Ry'.'b'.'GVu'),base64_decode('c3RybGVu'),base64_decode(''.'c3Ryb'.'GVu'),base64_decode('cHJl'.'Z19y'.'ZXBsY'.'WN'.'l'),base64_decode(''.'c3'.'RybGV'.'u'),base64_decode('Zm9wZW'.'4='),base64_decode('c'.'3Ry'.'X3Jlc'.'G'.'xhY2'.'U='),base64_decode(''.'Z'.'ndyaXR'.'l'),base64_decode('Zm'.'Nsb3N'.'l'),base64_decode('c3Ryb'.'GVu'),base64_decode('c'.'3Ry'.'bGVu'),base64_decode('c3RybGVu'),base64_decode('c'.'3RybG'.'V'.'u'),base64_decode(''.'c3R'.'ybGV'.'u'),base64_decode('cH'.'JlZ19y'.'ZX'.'BsYW'.'Nl'),base64_decode('c3RybGVu'),base64_decode(''.'c3R'.'yb'.'G'.'Vu'),base64_decode('c'.'m'.'91bm'.'Q'.'='),base64_decode('c3'.'Ry'.'bG'.'Vu'),base64_decode(''.'Zm9w'.'ZW'.'4'.'='),base64_decode('c'.'3Ry'.'X'.'3Jl'.'cGxhY'.'2U='),base64_decode(''.'c3Ry'.'b'.'GVu'),base64_decode('Znd'.'ya'.'XRl'),base64_decode('Z'.'mNsb3'.'N'.'l'),base64_decode('c3RybGVu'),base64_decode('cH'.'JlZ19y'.'Z'.'XBsYWNl'),base64_decode(''.'c3RybG'.'Vu'),base64_decode('c3'.'RybGV'.'u'),base64_decode(''.'Zm9wZW4'.'='),base64_decode('c3'.'RyX3Jl'.'cGx'.'hY'.'2U='),base64_decode('c3RybG'.'Vu'),base64_decode('Zndya'.'XRl'),base64_decode('c3RyX3Jl'.'cGxhY2U='),base64_decode('ZmN'.'sb3'.'Nl'),base64_decode('c'.'3RybGV'.'u'),base64_decode('c3'.'RybGVu'),base64_decode(''.'ZmlsZV9leG'.'l'.'z'.'dH'.'M='),base64_decode('a'.'XNfZ'.'m'.'ls'.'Z'.'Q=='),base64_decode('c3RyX3JlcGxh'.'Y2'.'U='),base64_decode('c3RybGVu'),base64_decode('aXNfc'.'m'.'VhZGFi'.'b'.'GU='),base64_decode('c3R'.'yX3'.'J'.'l'.'cGxhY2U='),base64_decode('c3R'.'ybGVu'),base64_decode('ZmlsZV'.'9'.'nZ'.'XRf'.'Y29udGV'.'udHM='),base64_decode('c'.'3'.'RybGVu'),base64_decode('c'.'3Ryb'.'GV'.'u'),base64_decode('aXNfYX'.'JyYXk='),base64_decode(''.'Y291bnQ='),base64_decode('Y'.'291bn'.'Q'.'='),base64_decode('c3Ryb'.'GVu'),base64_decode(''.'c3'.'R'.'y'.'b'.'GVu'),base64_decode('ZmlsZV9leGlzdHM='),base64_decode('aXNfZmls'.'ZQ=='),base64_decode('c'.'3R'.'ybG'.'Vu'),base64_decode(''.'Z'.'mls'.'ZXNpemU='),base64_decode('c3RybGVu'),base64_decode('aX'.'Nf'.'d3JpdGVhY'.'mxl'),base64_decode('c3RyX3'.'JlcGx'.'hY2'.'U='),base64_decode('c3Ryb'.'G'.'Vu'),base64_decode('Y29weQ=='),base64_decode('Y2ht'.'b'.'2Q='),base64_decode('c3R'.'ybGVu'),base64_decode(''.'ZGV'.'j'.'aGV'.'4'),base64_decode('Y3JjMzI='),base64_decode('Z'.'ml'.'sZV9n'.'ZX'.'RfY2'.'9udGVudHM='),base64_decode(''.'Z'.'GVj'.'aGV4'),base64_decode('Y'.'3'.'JjMz'.'I='),base64_decode('ZmlsZ'.'V'.'9nZXRf'.'Y29udGVudHM='),base64_decode('c3RyX3Jlc'.'GxhY2U='),base64_decode('c3'.'Ry'.'bGVu'),base64_decode('c3RybGVu'),base64_decode('cHJlZ19'.'yZ'.'XBs'.'YWNl'),base64_decode('dXJsZW5jb2Rl'),base64_decode(''.'c3Ry'.'bGVu'),base64_decode('c3'.'Ry'.'bG'.'Vu'),base64_decode(''.'c3'.'R'.'yb'.'GVu'),base64_decode('aXNfYXJyYX'.'k='),base64_decode('Y291bnQ='),base64_decode(''.'Y2'.'91bnQ'.'='),base64_decode('c3Ryb'.'GVu'),base64_decode('c3Ry'.'bGVu'),base64_decode('c3Ry'.'bGVu'),base64_decode('cHJlZ19'.'yZXB'.'sY'.'WN'.'l'),base64_decode('c3RybGVu'),base64_decode('Zm9'.'wZW4='),base64_decode('c3RyX'.'3JlcGxhY2U='),base64_decode(''.'Z'.'n'.'dyaX'.'R'.'l'),base64_decode('ZmNsb3Nl'),base64_decode(''.'c3'.'RybGVu'),base64_decode('cHJlZ19yZXBsYWNl'),base64_decode('c3Ry'.'b'.'GVu'),base64_decode('Zm9wZW'.'4='),base64_decode('c3RyX3'.'Jl'.'cG'.'xhY2U'.'='),base64_decode('Zndya'.'X'.'Rl'),base64_decode('ZmNs'.'b3Nl'),base64_decode('c3RybG'.'V'.'u'),base64_decode(''.'c3'.'RybGVu'),base64_decode('c3Ry'.'bGV'.'u'),base64_decode('c3Ryb'.'GVu'),base64_decode('Zmls'.'ZV9l'.'eGlz'.'d'.'HM='),base64_decode('ZmlsZV9nZXRfY29ud'.'G'.'Vud'.'HM='),base64_decode(''.'Y291bnQ='),base64_decode('c3R'.'ybGVu'),base64_decode('ZmlsZV9l'.'eGlzdHM='),base64_decode('dW'.'5s'.'a'.'W'.'5r'),base64_decode('ZmlsZV9'.'l'.'eG'.'lzd'.'H'.'M='),base64_decode('dW5saW5r'),base64_decode('c'.'3Ry'.'bGVu'),base64_decode(''.'Y291b'.'nQ='),base64_decode('Zml'.'s'.'ZV9le'.'G'.'lzd'.'HM='),base64_decode('d'.'W'.'5sa'.'W'.'5r'),base64_decode(''.'Zml'.'sZV'.'9l'.'eGlzdHM='),base64_decode('dW'.'5saW'.'5r'),base64_decode('cH'.'JlZ19yZXBsYWNl'),base64_decode('c3RybGVu'),base64_decode(''.'c3RybGV'.'u'),base64_decode('c3RybGVu'),base64_decode('c'.'3R'.'y'.'bGV'.'u'),base64_decode('Y291bn'.'Q'.'='),base64_decode('c3RybG'.'Vu'),base64_decode('c3RybGV'.'u'),base64_decode('Zm'.'9wZW4='),base64_decode('c3RyX3J'.'lcGxh'.'Y2U='),base64_decode('c3RybGVu'),base64_decode('Zndy'.'aXRl'),base64_decode('ZmNs'.'b3Nl'),base64_decode(''.'c3RybGVu'),base64_decode('c3RybGVu'),base64_decode('c3Ry'.'bGVu'),base64_decode('ZnNvY2t'.'vcGVu'),base64_decode('aW50dmFs'),base64_decode('c'.'3RybGVu'),base64_decode('c3Ry'.'bGVu'),base64_decode('YmFz'.'ZT'.'Y0X2'.'VuY2'.'9kZQ=='),base64_decode('dX'.'JsZW5jb2'.'Rl'),base64_decode(''.'dXJsZW5jb2Rl'),base64_decode('ZG'.'VmaW5lZA'.'=='),base64_decode('dXJsZW5'.'jb2Rl'),base64_decode('Zm'.'lsZV9leGl'.'zdHM='),base64_decode('Z'.'mlsZXNpemU='),base64_decode('c3Ry'.'bGV'.'u'),base64_decode('ZnB'.'1dHM='),base64_decode('Zm'.'dldHM'.'='),base64_decode('cHJ'.'lZ19zc'.'GxpdA='.'='),base64_decode('Y29'.'1bn'.'Q='),base64_decode('c3Ryc'.'G9z'),base64_decode(''.'c3Ryc'.'G9'.'z'),base64_decode('aW50dm'.'Fs'),base64_decode(''.'d'.'HJp'.'bQ=='),base64_decode('c3Vic3Ry'),base64_decode('c3RybGVu'),base64_decode('c3'.'RybGVu'),base64_decode('dW5saW5r'),base64_decode('Z'.'mlsZV9le'.'Gl'.'zd'.'HM='),base64_decode('cmVuYW1l'),base64_decode('Zm'.'9wZ'.'W4'.'='),base64_decode('Zm9wZW4='),base64_decode('ZnJlYWQ'.'='),base64_decode(''.'c3RybGVu'),base64_decode('Zndya'.'XRl'),base64_decode(''.'ZmNsb3Nl'),base64_decode('dW5saW5'.'r'),base64_decode('Zm9wZW4='),base64_decode('c'.'3R'.'ybGVu'),base64_decode(''.'ZnJ'.'lYWQ='),base64_decode('Z'.'ndya'.'XRl'),base64_decode(''.'ZmNsb3Nl'),base64_decode('ZmNsb3Nl'),base64_decode('c'.'3R'.'y'.'b'.'GVu'),base64_decode('dW'.'5s'.'aW5r'),base64_decode(''.'cmVuYW'.'1'.'l'),base64_decode('c3'.'R'.'y'.'bGVu'),base64_decode('dW5sa'.'W5r'),base64_decode(''.'dW5'.'s'.'aW5r'),base64_decode('Z'.'mlsZV9'.'le'.'Gl'.'zdHM='),base64_decode('d'.'W5saW5r'),base64_decode('Zm'.'ls'.'ZV9leGl'.'zdHM='),base64_decode('dW5'.'s'.'aW5r'),base64_decode('c3Ryb'.'G'.'Vu'),base64_decode(''.'c3RybGVu'),base64_decode('c3RybG'.'V'.'u'),base64_decode('ZmlsZV'.'9le'.'GlzdHM='),base64_decode('Zml'.'sZV9nZXRfY29u'.'dGVudHM='),base64_decode('Y'.'29'.'1bnQ='),base64_decode(''.'c3RybGVu'),base64_decode('Zml'.'sZV9leGlz'.'dHM'.'='),base64_decode('dW5saW5r'),base64_decode('Z'.'mlsZV'.'9le'.'Glzd'.'HM='),base64_decode('dW5saW'.'5r'),base64_decode('c3RybGV'.'u'),base64_decode('Y2'.'91'.'bnQ='),base64_decode(''.'Zmls'.'ZV9leGlzdHM='),base64_decode(''.'dW5saW'.'5r'),base64_decode('ZmlsZV9leGlzd'.'HM'.'='),base64_decode('dW5saW5'.'r'),base64_decode('c'.'HJ'.'l'.'Z19'.'yZXBsY'.'WNl'),base64_decode('c3'.'Ryb'.'GVu'),base64_decode('c3Ry'.'bGVu'),base64_decode('c3Ryb'.'GVu'),base64_decode(''.'c3R'.'yb'.'GVu'),base64_decode(''.'Y29'.'1bn'.'Q='),base64_decode(''.'c3Ry'.'bGVu'),base64_decode('c3'.'RybGVu'),base64_decode('Zm9wZ'.'W'.'4'.'='),base64_decode('c3RyX'.'3'.'Jl'.'cGxhY2U='),base64_decode('c'.'3RybG'.'Vu'),base64_decode('ZndyaX'.'R'.'l'),base64_decode('ZmN'.'sb3N'.'l'),base64_decode('c3'.'Ryb'.'GVu'),base64_decode('c3RybGVu'),base64_decode('c3R'.'y'.'bGV'.'u'),base64_decode('ZnN'.'vY2'.'tv'.'cGV'.'u'),base64_decode('aW5'.'0dmFs'),base64_decode('c3RybGVu'),base64_decode('c'.'3RybGVu'),base64_decode('YmFzZTY'.'0X2V'.'u'.'Y2'.'9kZQ=='),base64_decode('dXJs'.'ZW5'.'jb2Rl'),base64_decode(''.'dX'.'J'.'sZW5'.'jb2Rl'),base64_decode('Z'.'GVmaW'.'5lZA=='),base64_decode('dX'.'J'.'s'.'Z'.'W5j'.'b2Rl'),base64_decode('Z'.'mlsZV9'.'le'.'G'.'lzdHM='),base64_decode('Z'.'mls'.'ZXNp'.'emU'.'='),base64_decode('c'.'3Ryb'.'GV'.'u'),base64_decode('Zn'.'B1d'.'HM'.'='),base64_decode('Zmd'.'l'.'dHM'.'='),base64_decode('cHJlZ'.'19zcGxpd'.'A=='),base64_decode('Y2'.'91bnQ='),base64_decode(''.'c3RycG'.'9z'),base64_decode('c3RycG9z'),base64_decode('aW5'.'0dmFs'),base64_decode(''.'dHJpbQ=='),base64_decode(''.'c3V'.'ic3Ry'),base64_decode('c'.'3'.'RybG'.'Vu'),base64_decode('c3RybGVu'),base64_decode('dW'.'5saW5r'),base64_decode(''.'Z'.'mls'.'ZV9leGlzdHM='),base64_decode('cm'.'VuY'.'W1l'),base64_decode('Zm'.'9wZW4'.'='),base64_decode('Zm9w'.'ZW'.'4='),base64_decode('ZnJlYW'.'Q='),base64_decode('c3'.'Ryb'.'GV'.'u'),base64_decode('Zn'.'d'.'yaXRl'),base64_decode('Zm'.'Nsb'.'3Nl'),base64_decode('dW5saW5r'),base64_decode('Zm9wZW4='),base64_decode('c3RybGVu'),base64_decode('ZnJ'.'lYWQ='),base64_decode('ZndyaX'.'Rl'),base64_decode('ZmNs'.'b3'.'Nl'),base64_decode('Zm'.'N'.'sb3Nl'),base64_decode('c3RybGV'.'u'),base64_decode(''.'dW5saW5r'),base64_decode('cmVu'.'YW1'.'l'),base64_decode('c3RybG'.'Vu'),base64_decode('dW'.'5s'.'aW5r'),base64_decode('dW5saW5r'),base64_decode('Zml'.'s'.'ZV'.'9l'.'eGlzdHM='),base64_decode('dW5saW5r'),base64_decode('Z'.'ml'.'sZV9leGlzd'.'HM='),base64_decode('dW5saW5r'),base64_decode('c'.'H'.'JlZ1'.'9yZXB'.'sYWN'.'l'),base64_decode('c'.'3Ryb'.'GVu'),base64_decode('Zm9wZW4='),base64_decode('c3RyX3J'.'lcGxhY'.'2U='),base64_decode('Znd'.'y'.'aX'.'Rl'),base64_decode('Z'.'mNsb3N'.'l'),base64_decode(''.'c3'.'R'.'yb'.'GVu'),base64_decode('ZmlsZV9leGlzd'.'H'.'M='),base64_decode('aXNfZmlsZQ'.'=='),base64_decode('c3RyX3J'.'lcG'.'xhY2U='),base64_decode(''.'c'.'3R'.'yb'.'GVu'),base64_decode('aXNfcmVh'.'ZGFibGU='),base64_decode('c3RyX3J'.'l'.'cGxhY2'.'U='),base64_decode('c3RybGV'.'u'),base64_decode(''.'dGlt'.'ZQ=='),base64_decode('ZmlsZV9leGlz'.'dHM'.'='),base64_decode(''.'aXNfZGl'.'y'),base64_decode(''.'c3Ry'.'X3JlcGxhY2U='),base64_decode('aXN'.'f'.'d3Jp'.'dGFibGU='),base64_decode('c3RyX'.'3JlcGxhY2'.'U'.'='),base64_decode(''.'c3RybG'.'Vu'),base64_decode('Z'.'m9w'.'Z'.'W4='),base64_decode('ZnJl'.'Y'.'WQ'.'='),base64_decode('c3'.'Ry'.'bGVu'),base64_decode('ZmNsb3Nl'),base64_decode('c3RybGVu'),base64_decode('Z3'.'p'.'vcGVu'),base64_decode('Zm'.'9wZW4='),base64_decode(''.'c3RyX3'.'Jl'.'c'.'GxhY2U='),base64_decode('c3RybGVu'),base64_decode(''.'Z3pyZWF'.'k'),base64_decode('c'.'3Ryb'.'GVu'),base64_decode('ZnJlYWQ='),base64_decode('c3R'.'yb'.'GV'.'u'),base64_decode('c3R'.'yX3JlcGx'.'hY'.'2U='),base64_decode('Z3'.'pjb'.'G'.'9zZQ=='),base64_decode('Zm'.'Nsb3Nl'),base64_decode('c3RybGV'.'u'),base64_decode('Z'.'3pyZWFk'),base64_decode('ZnJlYWQ='),base64_decode('d'.'H'.'JpbQ=='),base64_decode('aW50dmF'.'s'),base64_decode(''.'aW'.'50dmFs'),base64_decode('c'.'3RyX3Jlc'.'Gxh'.'Y2'.'U='),base64_decode('Z3'.'pyZWFk'),base64_decode('Z'.'nJ'.'lYWQ='),base64_decode('ZX'.'hwbG9kZQ=='),base64_decode(''.'Y2'.'91bnQ'.'='),base64_decode(''.'c3R'.'y'.'X3J'.'lc'.'Gx'.'h'.'Y2U='),base64_decode(''.'Z3pyZWFk'),base64_decode(''.'ZnJlYWQ='),base64_decode('ZGV'.'jaGV4'),base64_decode(''.'Y3'.'Jj'.'M'.'z'.'I='),base64_decode('c'.'3Ry'.'X3JlcGxhY'.'2U='),base64_decode(''.'Zm9'.'w'.'ZW4'.'='),base64_decode(''.'c3RyX3JlcGxhY2U='),base64_decode('c3RybGVu'),base64_decode('ZndyaXRl'),base64_decode('c3RyX3JlcGx'.'hY2U='),base64_decode('Zm'.'Nsb3Nl'),base64_decode('ZmNsb'.'3Nl'),base64_decode('ZGVjaGV4'),base64_decode('Y3J'.'jMz'.'I='),base64_decode(''.'Zm'.'lsZV9nZXRf'.'Y'.'2'.'9udGVudH'.'M='),base64_decode(''.'c3'.'RyX3Jl'.'cG'.'xhY2U='),base64_decode('Z3pjb'.'G9zZQ=='),base64_decode('ZmNs'.'b3'.'Nl'),base64_decode(''.'c3Ryb'.'GVu'),base64_decode(''.'d'.'W5saW'.'5r'),base64_decode('c3RybGVu'),base64_decode('Z'.'mlsZ'.'V9l'.'eGlz'.'dHM='),base64_decode('a'.'XNfZGly'),base64_decode('c3RyX3Jl'.'cGx'.'hY2'.'U='),base64_decode('c'.'3'.'RybGVu'),base64_decode('a'.'X'.'NfcmV'.'hZG'.'F'.'ibGU='),base64_decode('c3'.'RyX3JlcGxhY2U='),base64_decode('b3Blb'.'mRpcg=='),base64_decode('cmV'.'h'.'ZGRpcg=='),base64_decode('aXN'.'fZGly'),base64_decode('aX'.'NfZmlsZQ=='),base64_decode('c3Vic3Ry'),base64_decode('c3'.'RycG9z'),base64_decode('ZmlsZV'.'9'.'le'.'Gl'.'z'.'dHM'.'='),base64_decode('aXNfd3JpdGV'.'h'.'Y'.'mxl'),base64_decode('c3RyX3'.'Jlc'.'Gx'.'hY2'.'U='),base64_decode(''.'c'.'3Vic3Ry'),base64_decode('c3Ry'.'bGV'.'u'),base64_decode('cnRyaW'.'0='),base64_decode(''.'Zm'.'lsZ'.'V9leGlzdHM='),base64_decode(''.'aXNfZG'.'ly'),base64_decode(''.'aXNfd3JpdG'.'FibGU='),base64_decode('c'.'3RyX3J'.'l'.'cGxhY2U='),base64_decode('c3Vic3Ry'),base64_decode('Y2xvc2VkaXI='),base64_decode('c3'.'RybGVu'),base64_decode(''.'Z'.'mls'.'Z'.'V9leGlzdHM='),base64_decode(''.'aXN'.'fZGly'),base64_decode(''.'c3R'.'yX3J'.'lcGxh'.'Y'.'2U='),base64_decode('c3RybGV'.'u'),base64_decode(''.'aX'.'NfcmVhZ'.'G'.'FibGU='),base64_decode(''.'c3RyX3'.'Jlc'.'G'.'xh'.'Y2'.'U='),base64_decode('c3RybGV'.'u'),base64_decode(''.'Zml'.'s'.'ZV9'.'leGlzdHM='),base64_decode('aXNfZ'.'ml'.'sZQ=='),base64_decode('c'.'3RyX3JlcGxhY2'.'U='),base64_decode(''.'c3'.'RybG'.'Vu'),base64_decode(''.'a'.'XNf'.'cm'.'VhZGF'.'ibGU='),base64_decode('c'.'3RyX3'.'JlcGxh'.'Y2U='),base64_decode('c'.'3RybGVu'),base64_decode('ZmlsZV9'.'nZX'.'RfY'.'29ud'.'GVudH'.'M='),base64_decode('c3Ry'.'bGVu'),base64_decode('c3Ry'.'bGVu'),base64_decode('aX'.'NfYXJy'.'Y'.'Xk='),base64_decode('c3Ry'.'bGVu'),base64_decode(''.'b'.'3Bl'.'b'.'mRp'.'cg=='),base64_decode(''.'cm'.'V'.'h'.'ZGRpcg='.'='),base64_decode('aX'.'NfZGly'),base64_decode('Y2xvc'.'2VkaXI='),base64_decode('aXNf'.'YXJyYXk'.'='),base64_decode('Y2'.'91b'.'nQ='),base64_decode('Zm'.'ls'.'ZV9leGlzdHM='),base64_decode('aXNfZ'.'G'.'l'.'y'),base64_decode('c3R'.'yX3'.'JlcG'.'x'.'hY2U='),base64_decode('c'.'3'.'RybGVu'),base64_decode(''.'aXNfcmV'.'hZGFi'.'bGU'.'='),base64_decode(''.'c3R'.'yX3JlcGxhY2U='),base64_decode('c3Ryb'.'GVu'),base64_decode('ZmlsZV9leG'.'lzdHM='),base64_decode('aXNfZG'.'ly'),base64_decode('c'.'3'.'RyX3Jl'.'cGxhY2U='),base64_decode(''.'aXN'.'fd3Jpd'.'GFibGU='),base64_decode('c3RyX3JlcGxhY2U='),base64_decode('c3RybGV'.'u'),base64_decode('Y2'.'91bnQ='),base64_decode('c3Ryb'.'GVu'),base64_decode('ZmlsZV9le'.'Glzd'.'HM'.'='),base64_decode(''.'aXNfZGl'.'y'),base64_decode('c3'.'R'.'yX'.'3J'.'lcGxhY2U='),base64_decode(''.'c'.'3R'.'ybGVu'),base64_decode('aXNfcmVh'.'Z'.'GFibGU='),base64_decode(''.'c'.'3R'.'y'.'X3J'.'lc'.'GxhY2U'.'='),base64_decode('c3Ry'.'bG'.'V'.'u'),base64_decode('ZmlsZ'.'V9leGlzdHM='),base64_decode('Z'.'mlsZV'.'9l'.'eGlzdHM='),base64_decode('c3R'.'yX'.'3J'.'lcGx'.'h'.'Y2U='),base64_decode(''.'c3R'.'yb'.'G'.'Vu'),base64_decode('ZmlsZV9leGl'.'zdHM='),base64_decode('cmVuYW1'.'l'),base64_decode('c3R'.'y'.'X'.'3'.'JlcGxhY'.'2U='),base64_decode('c3RybGVu'),base64_decode('Z'.'mls'.'ZV9leGlzdHM='),base64_decode('aXNfZGly'),base64_decode(''.'c3'.'R'.'yX'.'3JlcG'.'xhY2'.'U='),base64_decode(''.'aXNfd3'.'J'.'pdGFi'.'b'.'GU='),base64_decode('c3Ry'.'X'.'3Jl'.'cGx'.'hY2'.'U'.'='),base64_decode('c3R'.'y'.'bGV'.'u'),base64_decode('c3RybG'.'Vu'),base64_decode('ZmlsZ'.'V'.'9leGlzdHM='),base64_decode('c3Ryb'.'GVu'),base64_decode('Zm'.'ls'.'Z'.'V9leGlzdHM='),base64_decode(''.'a'.'XNf'.'ZGly'),base64_decode('c3R'.'yX3JlcGx'.'hY2U='),base64_decode('b3'.'Bl'.'b'.'mR'.'pcg='.'='),base64_decode('cmV'.'hZGR'.'pcg=='),base64_decode(''.'a'.'XNfZGly'),base64_decode('Y2xvc'.'2Vka'.'XI='),base64_decode('aXNf'.'YX'.'J'.'y'.'YXk'.'='),base64_decode(''.'Y291bn'.'Q='),base64_decode('c3RybG'.'V'.'u'),base64_decode(''.'aX'.'N'.'f'.'cmVh'.'Z'.'GFibGU='),base64_decode(''.'c'.'3RyX'.'3'.'JlcGxhY'.'2U='),base64_decode('c3Ryb'.'G'.'Vu'),base64_decode('Z'.'mls'.'ZV9leGl'.'z'.'dHM='),base64_decode('aXNfZGly'),base64_decode('c'.'3Ry'.'X'.'3JlcGxh'.'Y'.'2U'.'='),base64_decode('aXN'.'fd3Jp'.'dGFibGU='),base64_decode(''.'c3RyX3Jlc'.'GxhY2U='),base64_decode(''.'c3RybGVu'),base64_decode('ZmlsZV9leG'.'lzdHM='),base64_decode('a'.'XNfZ'.'Gly'),base64_decode(''.'c3R'.'yX3JlcG'.'xhY'.'2U'.'='),base64_decode('aXNfd3JpdGFib'.'GU='),base64_decode(''.'c3RyX3JlcGxhY2U='),base64_decode('c3RybGVu'),base64_decode(''.'b3Blbm'.'Rp'.'cg=='),base64_decode('cmVhZG'.'R'.'p'.'cg'.'=='),base64_decode('aXNfZGl'.'y'),base64_decode('aXNf'.'d3JpdG'.'FibGU='),base64_decode('c3RyX3'.'Jl'.'cGx'.'hY2'.'U='),base64_decode('ZmlsZ'.'V9leG'.'lz'.'dHM='),base64_decode('aXNf'.'d3JpdGFibGU='),base64_decode(''.'c'.'3RyX3J'.'l'.'c'.'GxhY2U='),base64_decode('Y2xvc2VkaXI='),base64_decode('c3RybGVu'),base64_decode('b3BlbmRpc'.'g'.'=='),base64_decode('cmVhZGRpcg=='),base64_decode('aXNfZGly'),base64_decode(''.'aXNfd3JpdGFib'.'GU='),base64_decode(''.'c3RyX'.'3JlcGxh'.'Y'.'2U='),base64_decode('Zm'.'lsZ'.'V9leGlzdHM'.'='),base64_decode('aXNfd'.'3J'.'pdGFibGU='),base64_decode('c'.'3RyX3Jlc'.'GxhY2U='),base64_decode('Y2'.'xv'.'c'.'2VkaXI='),base64_decode('c3R'.'ybGV'.'u'),base64_decode('Y'.'29'.'1b'.'nQ'.'='),base64_decode('c3R'.'ybGVu'),base64_decode('Zmls'.'ZV9leGlzdHM'.'='),base64_decode('aXNfZGly'),base64_decode('c'.'3'.'RyX3'.'JlcGxhY'.'2U='),base64_decode(''.'c3RybG'.'V'.'u'),base64_decode(''.'aXN'.'fcm'.'VhZGFibGU='),base64_decode('c3RyX3Jlc'.'GxhY2U='),base64_decode('c'.'3'.'RybGVu'),base64_decode('b'.'3Blbm'.'Rpcg=='),base64_decode('cmVhZ'.'GR'.'pcg='.'='),base64_decode('a'.'XNf'.'ZGly'),base64_decode('ZmlsZV9leGlzdHM'.'='),base64_decode('b'.'3Blb'.'m'.'Rpcg=='),base64_decode('cmVhZGRpcg='.'='),base64_decode('aX'.'N'.'fZG'.'ly'),base64_decode('aW'.'5fY'.'XJyYXk='),base64_decode('Y2xvc2'.'VkaXI'.'='),base64_decode('a'.'W5f'.'YX'.'JyYXk='),base64_decode('Y'.'2xvc2Vk'.'aXI='),base64_decode(''.'c3RybGV'.'u'),base64_decode('c'.'3Ryb'.'GVu'),base64_decode('c3'.'RybG'.'Vu'),base64_decode('Z'.'GVm'.'aW5lZA=='),base64_decode('Z'.'mlsZV9leGlzd'.'HM='),base64_decode('ZmlsZV9leGlzdH'.'M='),base64_decode(''.'Z'.'mls'.'Z'.'V9l'.'eGlzdHM='),base64_decode('Zml'.'sZV9l'.'eGlzd'.'H'.'M='),base64_decode('a'.'XNfZG'.'ly'),base64_decode('c3'.'RyX3Jlc'.'GxhY'.'2U='),base64_decode('c3Ry'.'bGVu'),base64_decode(''.'aXNf'.'c'.'m'.'Vh'.'ZGFib'.'GU'.'='),base64_decode(''.'c3RyX3JlcGxhY2'.'U='),base64_decode('b3'.'Blb'.'mRpc'.'g=='),base64_decode('cmVhZGR'.'pcg'.'=='),base64_decode(''.'a'.'XNfZGly'),base64_decode('Y2'.'xvc2VkaXI='),base64_decode('aXNfYXJy'.'YXk='),base64_decode('Y291b'.'n'.'Q='),base64_decode('c3RybGVu'),base64_decode('Y2'.'91'.'bnQ'.'='),base64_decode('Zm'.'lsZV9'.'le'.'Glz'.'dH'.'M='),base64_decode('aX'.'Nf'.'ZGly'),base64_decode('c3'.'RyX3JlcGxhY2'.'U='),base64_decode('c'.'3'.'RybG'.'Vu'),base64_decode('aXNfd3'.'JpdGFibG'.'U='),base64_decode('c3RyX3JlcGxhY2'.'U='),base64_decode('c3RybGVu'),base64_decode('Zml'.'sZV9leGlz'.'dH'.'M='),base64_decode('aX'.'N'.'f'.'ZG'.'ly'),base64_decode('c3RyX3'.'JlcG'.'xhY2'.'U='),base64_decode(''.'c'.'3'.'Ryb'.'GVu'),base64_decode('aX'.'NfcmVhZ'.'GFi'.'bGU='),base64_decode('c'.'3'.'RyX3Jlc'.'GxhY2U'.'='),base64_decode('c'.'3'.'RybGVu'),base64_decode('b'.'3BlbmRpcg=='),base64_decode(''.'cmV'.'hZGRpcg'.'=='),base64_decode('c3Vi'.'c3Ry'),base64_decode(''.'aXNf'.'Zmls'.'Z'.'Q=='),base64_decode('c3'.'V'.'ic'.'3'.'Ry'),base64_decode('c'.'3RybGVu'),base64_decode('c'.'3Vic'.'3R'.'y'),base64_decode('c'.'3RybGVu'),base64_decode(''.'c3Vic3Ry'),base64_decode('c'.'3RybGVu'),base64_decode('Z'.'ml'.'sZV'.'9leGlzdHM'.'='),base64_decode('c3Vic3'.'Ry'),base64_decode('c'.'3Vic'.'3Ry'),base64_decode('c3R'.'yb'.'GVu'),base64_decode('c3Vi'.'c3Ry'),base64_decode('c3Ry'.'b'.'GVu'),base64_decode('Y2xv'.'c2V'.'kaX'.'I='),base64_decode('Y291bnQ='),base64_decode('c3'.'RybGVu'),base64_decode('c'.'3Ryd'.'G9sb'.'3'.'d'.'lcg=='),base64_decode('ZGV'.'maW5lZA='.'='),base64_decode('c3'.'RybG'.'Vu'),base64_decode('c3'.'RybGVu'),base64_decode('Y29'.'1bn'.'Q'.'='),base64_decode('c'.'3RybG'.'Vu'),base64_decode('c3R'.'yX3Jl'.'cGx'.'hY2U'.'='),base64_decode('c3RyX3J'.'l'.'cGxhY'.'2U='),base64_decode('c3Ry'.'X'.'3JlcG'.'xhY'.'2U='),base64_decode('c3RybGVu'),base64_decode('c3RybG'.'Vu'),base64_decode('Y291bnQ='),base64_decode(''.'c3R'.'y'.'b'.'GVu'),base64_decode('c3'.'R'.'yX3Jl'.'cGx'.'hY2U='),base64_decode('c3RyX'.'3JlcGxhY2U='),base64_decode(''.'c3R'.'yX3J'.'l'.'c'.'GxhY2U'.'='),base64_decode('c3RybG'.'Vu'),base64_decode('c3R'.'yb'.'G'.'Vu'),base64_decode(''
|
请发表评论