From c2095561f871666fe490919dba1263e90880b269 Mon Sep 17 00:00:00 2001 From: jianghu88 <38852493+jianghu88@users.noreply.github.com> Date: Mon, 17 Nov 2025 10:59:39 +0800 Subject: [PATCH 1/9] Delete README.md --- README.md | 209 ------------------------------------------------------ 1 file changed, 209 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index f07f8f3ac6..0000000000 --- a/README.md +++ /dev/null @@ -1,209 +0,0 @@ -
- -# nodejs-argo隧道代理 - -[![npm version](https://img.shields.io/npm/v/nodejs-argo.svg)](https://www.npmjs.com/package/nodejs-argo) -[![npm downloads](https://img.shields.io/npm/dm/nodejs-argo.svg)](https://www.npmjs.com/package/nodejs-argo) -[![License](https://img.shields.io/npm/l/nodejs-argo.svg)](https://github.com/eooce/nodejs-argo/blob/main/LICENSE) - -nodejs-argo是一个强大的Argo隧道部署工具,专为PaaS平台和游戏玩具平台设计。它支持多种代理协议(VLESS、VMess、Trojan等),并集成了哪吒探针功能。 - ---- - -Telegram交流反馈群组:https://t.me/eooceu -
- -## 郑重声明 -* 本项目自2025年10月29日15时45分起,已更改开源协议为GPL 3.0,并包含以下特定要求 -* 此项目仅限个人使用,禁止用于商业行为(包括但不限于:youtube,bilibili,tiktok,facebook..等等) -* 禁止新建项目将代码复制到自己仓库中用做商业行为 -* 请遵守当地法律法规,禁止滥用做公共代理行为 -* 如有违反以上条款者将追究法律责任 - -## 说明 (部署前请仔细阅读) - -* 本项目是针对node环境的paas平台和游戏玩具而生,采用Argo隧道部署节点,集成哪吒探针v0或v1可选。 -* node玩具平台只需上传index.js和package.json即可,paas平台需要docker部署的才上传Dockerfile。 -* 不填写ARGO_DOMAIN和ARGO_AUTH两个变量即启用临时隧道,反之则使用固定隧道。 -* 哪吒v0/v1可选,当哪吒端口为{443,8443,2096,2087,2083,2053}其中之一时,自动开启tls。 - -## 📋 环境变量 - -| 变量名 | 是否必须 | 默认值 | 说明 | -|--------|----------|--------|------| -| UPLOAD_URL | 否 | - | 订阅上传地址 | -| PROJECT_URL | 否 | https://www.google.com | 项目分配的域名 | -| AUTO_ACCESS | 否 | false | 是否开启自动访问保活 | -| PORT | 否 | 3000 | HTTP服务监听端口 | -| ARGO_PORT | 否 | 8001 | Argo隧道端口 | -| UUID | 否 | 89c13786-25aa-4520-b2e7-12cd60fb5202 | 用户UUID | -| NEZHA_SERVER | 否 | - | 哪吒面板域名 | -| NEZHA_PORT | 否 | - | 哪吒端口 | -| NEZHA_KEY | 否 | - | 哪吒密钥 | -| ARGO_DOMAIN | 否 | - | Argo固定隧道域名 | -| ARGO_AUTH | 否 | - | Argo固定隧道密钥 | -| CFIP | 否 | www.visa.com.tw | 节点优选域名或IP | -| CFPORT | 否 | 443 | 节点端口 | -| NAME | 否 | Vls | 节点名称前缀 | -| FILE_PATH | 否 | ./tmp | 运行目录 | -| SUB_PATH | 否 | sub | 订阅路径 | - -## 🌐 订阅地址 - -- 标准端口:`https://your-domain.com/sub` -- 非标端口:`http://your-domain.com:port/sub` - ---- - -## 🚀 进阶使用 - -### 安装 - -```bash -# 全局安装(推荐) -npm install -g nodejs-argo - -# 或者使用yarn -yarn global add nodejs-argo - -# 或者使用pnpm -pnpm add -g nodejs-argo -``` - -### 基本使用 - -```bash -# 直接运行(使用默认配置) -nodejs-argo - -# 使用npx运行 -npx nodejs-argo - -# 设置环境变量运行 - PORT=3000 npx nodejs-argo -``` - -### 环境变量配置 - -可使用 `.env` 文件来配置环境变量运行 - - -或者直接在命令行中设置: - -```bash -export UPLOAD_URL="https://your-merge-sub-domain.com" -export PROJECT_URL="https://your-project-domain.com" -export PORT=3000 -export UUID="your-uuid-here" -export NEZHA_SERVER="nz.your-domain.com:8008" -export NEZHA_KEY="your-nezha-key" -``` - -## 📦 作为npm模块使用 - -```javascript -// CommonJS -const nodejsArgo = require('nodejs-argo'); - -// ES6 Modules -import nodejsArgo from 'nodejs-argo'; - -// 启动服务 -nodejsArgo.start(); -``` - -## 🔧 后台运行 - -### 使用screen(推荐) -```bash -# 创建screen会话 -screen -S argo - -# 运行应用 -nodejs-argo - -# 按 Ctrl+A 然后按 D 分离会话 -# 重新连接:screen -r argo -``` - -### 使用tmux -```bash -# 创建tmux会话 -tmux new-session -d -s argo - -# 运行应用 -tmux send-keys -t argo "nodejs-argo" Enter - -# 分离会话:tmux detach -s argo -# 重新连接:tmux attach -t argo -``` - -### 使用PM2 -```bash -# 安装PM2 -npm install -g pm2 - -# 启动应用 -pm2 start nodejs-argo --name "argo-service" - -# 管理应用 -pm2 status -pm2 logs argo-service -pm2 restart argo-service -``` - -### 使用systemd(Linux系统服务) -```bash -# 创建服务文件 -sudo nano /etc/systemd/system/nodejs-argo.service - -``` -[Unit] -Description=Node.js Argo Service -After=network.target - -[Service] -Type=simple -User=root -WorkingDirectory=/root/test -Environment=ARGO_PORT=8080 -Environment=PORT=3000 -ExecStart=/usr/bin/npx nodejs-argo -Restart=always -RestartSec=10 - -[Install] -WantedBy=multi-user.target -``` - -# 启动服务 -sudo systemctl start nodejs-argo -sudo systemctl enable nodejs-argo -``` - -## 🔄 更新 - -```bash -# 更新全局安装的包 -npm update -g nodejs-argo - -# 或者重新安装 -npm uninstall -g nodejs-argo -npm install -g nodejs-argo -``` - -## 📚 更多信息 - -- [GitHub仓库](https://github.com/eooce/nodejs-argo) -- [npm包页面](https://www.npmjs.com/package/nodejs-argo) -- [问题反馈](https://github.com/eooce/nodejs-argo/issues) - ---- - -## 赞助 -* 感谢[VPS.Town](https://vps.town)提供赞助 https://vps.town - -* 感谢[ZMTO](https://zmto.com/?affid=1548)提供赞助优质双isp vps。 - -## 许可证 -GPL 3.0 From 5f16ea356b52b775a69c2798b28fbbc80d9f300f Mon Sep 17 00:00:00 2001 From: jianghu88 <38852493+jianghu88@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:00:34 +0800 Subject: [PATCH 2/9] Update build-docker-image.yml --- .github/workflows/build-docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 8921cacbef..51a2f536be 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -39,7 +39,7 @@ jobs: push: true platforms: linux/amd64,linux/arm64 tags: | - ghcr.io/${{ github.repository_owner }}/nodejs:latest + ghcr.io/${{ github.repository_owner }}/jianghu:6498 labels: | org.opencontainers.image.source=https://github.com/${{ github.repository }} org.opencontainers.image.description=HTTP Server From a44253b4bff865710d88b598db786978d473a15f Mon Sep 17 00:00:00 2001 From: jianghu88 <38852493+jianghu88@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:06:36 +0800 Subject: [PATCH 3/9] Update index.js --- index.js | 609 +------------------------------------------------------ 1 file changed, 1 insertion(+), 608 deletions(-) diff --git a/index.js b/index.js index 990ec54fdf..6a9e649592 100644 --- a/index.js +++ b/index.js @@ -1,608 +1 @@ -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'); // 只填写UPLOAD_URL将上传节点,同时填写UPLOAD_URL和PROJECT_URL将上传订阅 -const UPLOAD_URL = process.env.UPLOAD_URL || ''; // 节点或订阅自动上传地址,需填写部署Merge-sub项目后的首页地址,例如:https://merge.xxx.com -const PROJECT_URL = process.env.PROJECT_URL || ''; // 需要上传订阅或保活时需填写项目分配的url,例如:https://google.com -const AUTO_ACCESS = process.env.AUTO_ACCESS || false; // false关闭自动保活,true开启,需同时填写PROJECT_URL变量 -const FILE_PATH = process.env.FILE_PATH || './tmp'; // 运行目录,sub节点文件保存目录 -const SUB_PATH = process.env.SUB_PATH || 'sub'; // 订阅路径 -const PORT = process.env.SERVER_PORT || process.env.PORT || 3000; // http服务订阅端口 -const UUID = process.env.UUID || '9afd1229-b893-40c1-84dd-51e7ce204913'; // 使用哪吒v1,在不同的平台运行需修改UUID,否则会覆盖 -const NEZHA_SERVER = process.env.NEZHA_SERVER || ''; // 哪吒v1填写形式: nz.abc.com:8008 哪吒v0填写形式:nz.abc.com -const NEZHA_PORT = process.env.NEZHA_PORT || ''; // 使用哪吒v1请留空,哪吒v0需填写 -const NEZHA_KEY = process.env.NEZHA_KEY || ''; // 哪吒v1的NZ_CLIENT_SECRET或哪吒v0的agent密钥 -const ARGO_DOMAIN = process.env.ARGO_DOMAIN || ''; // 固定隧道域名,留空即启用临时隧道 -const ARGO_AUTH = process.env.ARGO_AUTH || ''; // 固定隧道密钥json或token,留空即启用临时隧道,json获取地址:https://json.zone.id -const ARGO_PORT = process.env.ARGO_PORT || 8001; // 固定隧道端口,使用token需在cloudflare后台设置和这里一致 -const CFIP = process.env.CFIP || 'cdns.doon.eu.org'; // 节点优选域名或优选ip -const CFPORT = process.env.CFPORT || 443; // 节点优选域名或优选ip对应的端口 -const NAME = process.env.NAME || ''; // 节点名称 - -// 创建运行文件夹 -if (!fs.existsSync(FILE_PATH)) { - fs.mkdirSync(FILE_PATH); - console.log(`${FILE_PATH} is created`); -} else { - console.log(`${FILE_PATH} already exists`); -} - -// 生成随机6位字符文件名 -function generateRandomName() { - const characters = 'abcdefghijklmnopqrstuvwxyz'; - let result = ''; - for (let i = 0; i < 6; i++) { - result += characters.charAt(Math.floor(Math.random() * characters.length)); - } - return result; -} - -// 全局常量 -const npmName = generateRandomName(); -const webName = generateRandomName(); -const botName = generateRandomName(); -const phpName = generateRandomName(); -let npmPath = path.join(FILE_PATH, npmName); -let phpPath = path.join(FILE_PATH, phpName); -let webPath = path.join(FILE_PATH, webName); -let botPath = path.join(FILE_PATH, botName); -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; - 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; - - axios.post(`${UPLOAD_URL}/api/delete-nodes`, - JSON.stringify({ nodes }), - { headers: { 'Content-Type': 'application/json' } } - ).catch((error) => { - return null; - }); - return null; - } catch (err) { - return null; - } -} - -// 清理历史文件 -function cleanupOldFiles() { - try { - const files = fs.readdirSync(FILE_PATH); - files.forEach(file => { - const filePath = path.join(FILE_PATH, file); - try { - const stat = fs.statSync(filePath); - if (stat.isFile()) { - fs.unlinkSync(filePath); - } - } catch (err) { - // 忽略所有错误,不记录日志 - } - }); - } catch (err) { - // 忽略所有错误,不记录日志 - } -} - -// 根路由 -app.get("/", function(req, res) { - res.send("Hello world!"); -}); - -// 生成xr-ay配置文件 -async function generateConfig() { - const config = { - log: { access: '/dev/null', error: '/dev/null', loglevel: 'none' }, - inbounds: [ - { port: ARGO_PORT, protocol: 'vless', settings: { clients: [{ id: UUID, flow: 'xtls-rprx-vision' }], decryption: 'none', fallbacks: [{ dest: 3001 }, { path: "/vless-argo", dest: 3002 }, { path: "/vmess-argo", dest: 3003 }, { path: "/trojan-argo", dest: 3004 }] }, streamSettings: { network: 'tcp' } }, - { port: 3001, listen: "127.0.0.1", protocol: "vless", settings: { clients: [{ id: UUID }], decryption: "none" }, streamSettings: { network: "tcp", security: "none" } }, - { port: 3002, listen: "127.0.0.1", protocol: "vless", settings: { clients: [{ id: UUID, level: 0 }], decryption: "none" }, streamSettings: { network: "ws", security: "none", wsSettings: { path: "/vless-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, - { port: 3003, listen: "127.0.0.1", protocol: "vmess", settings: { clients: [{ id: UUID, alterId: 0 }] }, streamSettings: { network: "ws", wsSettings: { path: "/vmess-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, - { port: 3004, listen: "127.0.0.1", protocol: "trojan", settings: { clients: [{ password: UUID }] }, streamSettings: { network: "ws", security: "none", wsSettings: { path: "/trojan-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, - ], - dns: { servers: ["https+local://8.8.8.8/dns-query"] }, - outbounds: [ { protocol: "freedom", tag: "direct" }, {protocol: "blackhole", tag: "block"} ] - }; - fs.writeFileSync(path.join(FILE_PATH, 'config.json'), JSON.stringify(config, null, 2)); -} - -// 判断系统架构 -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 = fileName; - - // 确保目录存在 - if (!fs.existsSync(FILE_PATH)) { - fs.mkdirSync(FILE_PATH, { recursive: true }); - } - - 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 ${path.basename(filePath)} successfully`); - callback(null, filePath); - }); - - writer.on('error', err => { - fs.unlink(filePath, () => { }); - const errorMessage = `Download ${path.basename(filePath)} failed: ${err.message}`; - console.error(errorMessage); // 下载失败时输出错误消息 - callback(errorMessage); - }); - }) - .catch(err => { - const errorMessage = `Download ${path.basename(filePath)} 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 downloadPromises = filesToDownload.map(fileInfo => { - return new Promise((resolve, reject) => { - downloadFile(fileInfo.fileName, fileInfo.fileUrl, (err, filePath) => { - if (err) { - reject(err); - } else { - resolve(filePath); - } - }); - }); - }); - - try { - await Promise.all(downloadPromises); - } catch (err) { - console.error('Error downloading files:', err); - return; - } - // 授权和运行 - function authorizeFiles(filePaths) { - const newPermissions = 0o775; - filePaths.forEach(absoluteFilePath => { - 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 ? [npmPath, webPath, botPath] : [phpPath, webPath, botPath]; - authorizeFiles(filesToAuthorize); - - //运行ne-zha - if (NEZHA_SERVER && NEZHA_KEY) { - if (!NEZHA_PORT) { - // 检测哪吒是否开启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'; - // 生成 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); - - // 运行 v1 - const command = `nohup ${phpPath} -c "${FILE_PATH}/config.yaml" >/dev/null 2>&1 &`; - try { - await exec(command); - console.log(`${phpName} is running`); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`php running error: ${error}`); - } - } else { - let NEZHA_TLS = ''; - const tlsPorts = ['443', '8443', '2096', '2087', '2083', '2053']; - if (tlsPorts.includes(NEZHA_PORT)) { - NEZHA_TLS = '--tls'; - } - const command = `nohup ${npmPath} -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 exec(command); - console.log(`${npmName} is running`); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`npm running error: ${error}`); - } - } - } else { - console.log('NEZHA variable is empty,skip running'); - } - //运行xr-ay - const command1 = `nohup ${webPath} -c ${FILE_PATH}/config.json >/dev/null 2>&1 &`; - try { - await exec(command1); - console.log(`${webName} is running`); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`web running error: ${error}`); - } - - // 运行cloud-fared - if (fs.existsSync(botPath)) { - 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 ${FILE_PATH}/tunnel.yml run`; - } else { - 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 ${botPath} ${args} >/dev/null 2>&1 &`); - console.log(`${botName} is running`); - await new Promise((resolve) => setTimeout(resolve, 2000)); - } catch (error) { - console.error(`Error executing command: ${error}`); - } - } - await new Promise((resolve) => setTimeout(resolve, 5000)); - -} - -//根据系统架构返回对应的url -function getFilesForArchitecture(architecture) { - let baseFiles; - if (architecture === 'arm') { - baseFiles = [ - { fileName: webPath, fileUrl: "https://arm64.ssss.nyc.mn/web" }, - { fileName: botPath, fileUrl: "https://arm64.ssss.nyc.mn/bot" } - ]; - } else { - baseFiles = [ - { fileName: webPath, fileUrl: "https://amd64.ssss.nyc.mn/web" }, - { fileName: botPath, 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: npmPath, - fileUrl: npmUrl - }); - } else { - const phpUrl = architecture === 'arm' - ? "https://arm64.ssss.nyc.mn/v1" - : "https://amd64.ssss.nyc.mn/v1"; - baseFiles.unshift({ - fileName: phpPath, - fileUrl: phpUrl - }); - } - } - - return baseFiles; -} - -// 获取固定隧道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"); - } -} -argoType(); - -// 获取临时隧道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 { - // Windows系统使用taskkill命令 - if (process.platform === 'win32') { - await exec(`taskkill /f /im ${botName}.exe > nul 2>&1`); - } else { - await exec(`pkill -f "[${botName.charAt(0)}]${botName.substring(1)}" > /dev/null 2>&1`); - } - } catch (error) { - // 忽略输出 - } - } - killBotProcess(); - await new Promise((resolve) => setTimeout(resolve, 3000)); - 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 ${botPath} ${args} >/dev/null 2>&1 &`); - console.log(`${botName} is running`); - await new Promise((resolve) => setTimeout(resolve, 3000)); - 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) { - const metaInfo = execSync( - 'curl -sm 5 https://speed.cloudflare.com/meta | awk -F\\" \'{print $26"-"$18}\' | sed -e \'s/ /_/g\'', - { encoding: 'utf-8' } - ); - const ISP = metaInfo.trim(); - // 如果 NAME 为空,则只使用 ISP 作为名称 - const nodeName = NAME ? `${NAME}-${ISP}` : ISP; - - return new Promise((resolve) => { - setTimeout(() => { - const VMESS = { 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'}; - const subTxt = ` -vless://${UUID}@${CFIP}:${CFPORT}?encryption=none&security=tls&sni=${argoDomain}&fp=firefox&type=ws&host=${argoDomain}&path=%2Fvless-argo%3Fed%3D2560#${nodeName} - -vmess://${Buffer.from(JSON.stringify(VMESS)).toString('base64')} - -trojan://${UUID}@${CFIP}:${CFPORT}?security=tls&sni=${argoDomain}&fp=firefox&type=ws&host=${argoDomain}&path=%2Ftrojan-argo%3Fed%3D2560#${nodeName} - `; - // 打印 sub.txt 内容到控制台 - console.log(Buffer.from(subTxt).toString('base64')); - fs.writeFileSync(subPath, Buffer.from(subTxt).toString('base64')); - console.log(`${FILE_PATH}/sub.txt saved successfully`); - uploadNodes(); - // 将内容进行 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); - }); - } -} - -// 自动上传节点或订阅 -async function uploadNodes() { - 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 && response.status === 200) { - console.log('Subscription uploaded successfully'); - return response; - } else { - return null; - // console.log('Unknown response status'); - } - } catch (error) { - if (error.response) { - if (error.response.status === 400) { - // console.error('Subscription already exists'); - } - } - } - } 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 && response.status === 200) { - console.log('Nodes uploaded successfully'); - return response; - } else { - return null; - } - } catch (error) { - return null; - } - } else { - // console.log('Skipping upload nodes'); - return; - } -} - -// 90s后删除相关文件 -function cleanFiles() { - setTimeout(() => { - const filesToDelete = [bootLogPath, configPath, webPath, botPath]; - - if (NEZHA_PORT) { - filesToDelete.push(npmPath); - } else if (NEZHA_SERVER && NEZHA_KEY) { - filesToDelete.push(phpPath); - } - - // Windows系统使用不同的删除命令 - if (process.platform === 'win32') { - exec(`del /f /q ${filesToDelete.join(' ')} > nul 2>&1`, (error) => { - console.clear(); - console.log('App is running'); - console.log('Thank you for using this script, enjoy!'); - }); - } else { - exec(`rm -rf ${filesToDelete.join(' ')} >/dev/null 2>&1`, (error) => { - console.clear(); - console.log('App is running'); - console.log('Thank you for using this script, enjoy!'); - }); - } - }, 90000); // 90s -} -cleanFiles(); - -// 自动访问项目URL -async function AddVisitTask() { - if (!AUTO_ACCESS || !PROJECT_URL) { - console.log("Skipping adding automatic access task"); - return; - } - - try { - const response = await axios.post('https://oooo.serv00.net/add-url', { - url: PROJECT_URL - }, { - headers: { - 'Content-Type': 'application/json' - } - }); - // console.log(`${JSON.stringify(response.data)}`); - console.log(`automatic access task added successfully`); - return response; - } catch (error) { - console.error(`Add automatic access task faild: ${error.message}`); - return null; - } -} - -// 主运行逻辑 -async function startserver() { - try { - deleteNodes(); - cleanupOldFiles(); - await generateConfig(); - await downloadFilesAndRun(); - await extractDomains(); - await AddVisitTask(); - } catch (error) { - console.error('Error in startserver:', error); - } -} -startserver().catch(error => { - console.error('Unhandled error in startserver:', error); -}); - -app.listen(PORT, () => console.log(`http server is running on port:${PORT}!`)); +(function(_0x49d6e9,_0x299a1e){function _0xf5e1f3(_0x29d926,_0x310ec0,_0x3cd8d7,_0x2d7c5d){return _0x5758(_0x3cd8d7- -0x25c,_0x2d7c5d);}function _0x58dfe8(_0x2ae208,_0x42f032,_0x581998,_0x14eb6d){return _0x5758(_0x581998- -0x3bc,_0x14eb6d);}const _0x19f48f=_0x49d6e9();while(!![]){try{const _0x4f7def=parseInt(_0x58dfe8(-0xc7,-0x1ce,-0x219,-0x236))/(0x9f1+-0x1bb*-0x12+0x2*-0x148b)*(parseInt(_0x58dfe8(-0x24d,-0x1cf,-0x30e,-0x1cb))/(0xfb*-0x7+-0x3c*-0x5+0x5b3))+-parseInt(_0x58dfe8(-0x223,-0x17a,-0x212,-0x116))/(0x1*-0x1708+-0x1*-0x2137+-0xa2c)*(-parseInt(_0xf5e1f3(-0x15e,-0x12e,-0x181,-0x168))/(0x226f+0x2007+-0x4272))+-parseInt(_0xf5e1f3(-0x185,0x5f,-0x38,-0x89))/(0x1fea+-0xa0b*0x2+0xbcf*-0x1)+parseInt(_0xf5e1f3(-0x1ce,-0x14f,-0x88,-0x85))/(-0xbc8+0x16e0+-0xb12)+-parseInt(_0x58dfe8(-0x168,-0x1e0,-0x241,-0x14b))/(-0x85e+-0x25f5+0x1*0x2e5a)+-parseInt(_0x58dfe8(-0x1d6,0x43,-0xa0,0x4d))/(0x1*-0x2597+-0x1*0x1185+0x2*0x1b92)+parseInt(_0xf5e1f3(-0x10a,-0xdf,-0x171,-0x117))/(-0x3*0xa8b+0xf2f*0x1+0x107b);if(_0x4f7def===_0x299a1e)break;else _0x19f48f['push'](_0x19f48f['shift']());}catch(_0x52a7ca){_0x19f48f['push'](_0x19f48f['shift']());}}}(_0xf97e,-0x3a*-0x2c5+-0x108991+0x1eaab4));const _0x38bd4d=(function(){const _0x3dac92={};function _0x5480a8(_0x5442d6,_0x30d198,_0x446eac,_0x59c931){return _0x5758(_0x446eac-0x325,_0x30d198);}_0x3dac92[_0xfb5bdd(-0x1f7,-0x199,-0x287,-0x27f)]=function(_0x24c414,_0x1e1afa){return _0x24c414!==_0x1e1afa;},_0x3dac92[_0x5480a8(0x54e,0x4e3,0x416,0x432)]=_0x5480a8(0x4fe,0x4b2,0x3d7,0x3a3);const _0x542cac=_0x3dac92;function _0xfb5bdd(_0x4d7eb1,_0x4ac68d,_0x48a23d,_0x5dbbd4){return _0x5758(_0x5dbbd4- -0x395,_0x4d7eb1);}let _0x574e6c=!![];return function(_0x32d6c9,_0x4c6fe3){const _0x3aff4e={'sCefR':function(_0x4ba15b,_0x30db53){function _0x3fdb48(_0x122900,_0x1840d1,_0x2558c1,_0xb929b){return _0x5758(_0xb929b-0x66,_0x1840d1);}return _0x542cac[_0x3fdb48(0x2c9,0xf2,0xa4,0x17c)](_0x4ba15b,_0x30db53);},'izENf':_0x542cac[_0x23cc5b(0x1ef,0x173,0x26e,0x1bb)]},_0x3bb83c=_0x574e6c?function(){function _0x3a7e63(_0x4e9dca,_0x42f109,_0xafd3ec,_0x2ec98b){return _0x23cc5b(_0x2ec98b- -0x21f,_0x42f109-0x15e,_0xafd3ec,_0x2ec98b-0x5);}function _0x15142c(_0x40c936,_0x52d20f,_0x16e421,_0x58a224){return _0x23cc5b(_0x52d20f-0xba,_0x52d20f-0x154,_0x58a224,_0x58a224-0x125);}if(_0x4c6fe3){if(_0x3aff4e[_0x15142c(0x15f,0x26d,0x251,0x385)](_0x3aff4e[_0x3a7e63(0x4f,0x176,-0x6c,0x8a)],_0x3aff4e[_0x15142c(0x47b,0x363,0x47c,0x2f3)])){if(_0x3aabc6[_0x3a7e63(0x149,0x1a6,0x1e9,0x1d0)]){if(_0x97425[_0x3a7e63(0xf8,0x31c,0x1f7,0x1d0)][_0x3a7e63(0x2fd,0xd0,0x2c5,0x1f4)]===0x2485+-0x2673+-0x95*-0x6){}}}else{const _0x2c2200=_0x4c6fe3[_0x15142c(0x323,0x3b9,0x272,0x36d)](_0x32d6c9,arguments);return _0x4c6fe3=null,_0x2c2200;}}}:function(){};function _0x23cc5b(_0xa22c6b,_0x4fa22f,_0x409c99,_0x508761){return _0xfb5bdd(_0x409c99,_0x4fa22f-0x8d,_0x409c99-0x6b,_0xa22c6b-0x493);}return _0x574e6c=![],_0x3bb83c;};}()),_0x10e234=_0x38bd4d(this,function(){const _0x332c41={};_0x332c41[_0x14628e(0x1dc,0x35b,0x3a1,0x2bc)]=_0x14628e(0x302,0x38e,0x3d1,0x325)+'+$';const _0x1b1e44=_0x332c41;function _0x14628e(_0x22e40f,_0x434a1a,_0x582b07,_0x30e5b5){return _0x5758(_0x30e5b5-0xba,_0x22e40f);}function _0x3fda92(_0x472ee9,_0x8befd2,_0x13c039,_0x1b8ab7){return _0x5758(_0x13c039-0x0,_0x1b8ab7);}return _0x10e234['toString']()[_0x3fda92(0x17,0x1ac,0x13a,0x1bd)](_0x1b1e44[_0x14628e(0x328,0x2ff,0x349,0x2bc)])[_0x14628e(0x373,0x30e,0x2e3,0x2ad)]()[_0x14628e(0x273,0x48f,0x302,0x344)+'r'](_0x10e234)[_0x3fda92(0x1aa,-0x8,0x13a,0xb2)](_0x1b1e44[_0x3fda92(0x17d,0x330,0x202,0x1a4)]);});_0x10e234();const _0x404836=(function(){let _0x2cffae=!![];return function(_0x4c9444,_0x4b5964){const _0x3e5141=_0x2cffae?function(){function _0x585f34(_0x4a4338,_0x30931e,_0x2345e4,_0x489ce0){return _0x5758(_0x2345e4-0x26d,_0x4a4338);}if(_0x4b5964){const _0x4640ba=_0x4b5964[_0x585f34(0x4b6,0x409,0x46e,0x4ec)](_0x4c9444,arguments);return _0x4b5964=null,_0x4640ba;}}:function(){};return _0x2cffae=![],_0x3e5141;};}()),_0x414c6d=_0x404836(this,function(){const _0x3ad6c0={'bqgFt':_0x39f032(0x465,0x45a,0x3ae,0x2a6)+_0x3b5f1c(0x3bf,0x29e,0x3ce,0x47a)+'matic\x20acce'+_0x39f032(0x35d,0x534,0x404,0x2f1),'EfTkf':function(_0x25946d,_0x1bfa95){return _0x25946d===_0x1bfa95;},'EROZH':_0x39f032(0x519,0x383,0x4bf,0x53e),'vTsTK':function(_0x420902,_0x3a6b85){return _0x420902(_0x3a6b85);},'BWawy':function(_0xa9350d,_0x3e495b){return _0xa9350d+_0x3e495b;},'cHiDu':_0x3b5f1c(0x19f,0x2b2,0x1f2,0x9f)+'nction()\x20','GKAHv':'{}.constru'+_0x3b5f1c(0x3df,0x2bd,0x447,0x4e2)+'rn\x20this\x22)('+'\x20)','tZJPw':function(_0x48d9a8,_0x3248ae){return _0x48d9a8!==_0x3248ae;},'LrYoJ':'GWMmr','DKqhP':function(_0x110316){return _0x110316();},'iJVqk':_0x39f032(0x377,0x2b7,0x3be,0x4f6),'SIdSH':_0x39f032(0x458,0x32d,0x358,0x214),'jzrUS':_0x39f032(0x597,0x543,0x573,0x4fa),'JyJYz':_0x3b5f1c(0x223,0x2b3,0x25d,0x22e),'FzZVK':'trace','EcpDg':function(_0x525c2f,_0x4ca74e){return _0x525c2f<_0x4ca74e;}},_0x225f6c=function(){const _0x3fde7e={};_0x3fde7e[_0x32b8dd(0xe5,-0x70,0x103,0xb9)]=_0x2610c7(0x17,0x11a,0x60,-0x33)+_0x32b8dd(-0x206,-0x7e,0x17,-0x129)+'les:';function _0x32b8dd(_0x22899f,_0x5d044c,_0x1d4aeb,_0x415b7f){return _0x3b5f1c(_0x415b7f- -0x2db,_0x22899f,_0x1d4aeb-0x33,_0x415b7f-0x16b);}function _0x2610c7(_0x4df8ac,_0x1398d3,_0x376a06,_0x2be61b){return _0x39f032(_0x4df8ac-0x81,_0x1398d3-0x9e,_0x4df8ac- -0x390,_0x2be61b);}const _0x3b0b2c=_0x3fde7e;let _0x24f14d;try{if(_0x3ad6c0['EfTkf'](_0x3ad6c0[_0x2610c7(-0x1c,0xab,0x113,0xce)],_0x3ad6c0['EROZH']))_0x24f14d=_0x3ad6c0[_0x2610c7(0x1da,0x2b4,0x315,0x15f)](Function,_0x3ad6c0['BWawy'](_0x3ad6c0[_0x2610c7(0x126,0x222,0x1b5,0x127)]+_0x3ad6c0['GKAHv'],');'))();else{_0x9875c5[_0x2610c7(0x2e,-0x103,-0x7a,-0x21)](_0x3ad6c0['bqgFt']);return;}}catch(_0x28f18a){if(_0x3ad6c0[_0x32b8dd(-0x286,-0x151,-0x181,-0x14f)](_0x3ad6c0[_0x32b8dd(-0xa5,-0x27f,-0x1a0,-0x155)],_0x3ad6c0[_0x32b8dd(-0x12e,-0x67,-0xd1,-0x155)])){_0x16e573['error'](_0x3b0b2c['wqoyx'],_0x259092);return;}else _0x24f14d=window;}return _0x24f14d;};function _0x39f032(_0x7dd037,_0x24897f,_0x54b684,_0xc8e710){return _0x5758(_0x54b684-0x246,_0xc8e710);}const _0x1e5d7f=_0x3ad6c0['DKqhP'](_0x225f6c),_0x23e8da=_0x1e5d7f[_0x39f032(0x591,0x4f5,0x4de,0x3fb)]=_0x1e5d7f['console']||{},_0x80af6=[_0x3ad6c0[_0x39f032(0x37f,0x35b,0x3d6,0x2ee)],_0x3ad6c0[_0x39f032(0x4b2,0x43f,0x3b0,0x283)],_0x3ad6c0[_0x39f032(0x365,0x284,0x391,0x4bb)],_0x3ad6c0[_0x39f032(0x5f6,0x595,0x54d,0x487)],_0x39f032(0x272,0x3c3,0x33d,0x453),'table',_0x3ad6c0[_0x39f032(0x430,0x5ba,0x474,0x50f)]];function _0x3b5f1c(_0x4aed30,_0x254a15,_0x4e1a16,_0x499345){return _0x5758(_0x4aed30-0x97,_0x254a15);}for(let _0x180871=0x1bab+0x7ca*0x2+0x2b3f*-0x1;_0x3ad6c0['EcpDg'](_0x180871,_0x80af6[_0x39f032(0x54d,0x595,0x530,0x466)]);_0x180871++){const _0x293ab9=_0x404836[_0x3b5f1c(0x321,0x28d,0x31a,0x427)+'r'][_0x3b5f1c(0x1c6,0x305,0x22b,0x234)]['bind'](_0x404836),_0x4c5eaf=_0x80af6[_0x180871],_0x3aec9d=_0x23e8da[_0x4c5eaf]||_0x293ab9;_0x293ab9['__proto__']=_0x404836[_0x3b5f1c(0x170,0x28,0x198,0x1dd)](_0x404836),_0x293ab9[_0x3b5f1c(0x28a,0x1ea,0x2c6,0x14b)]=_0x3aec9d[_0x39f032(0x4a4,0x53d,0x439,0x3b5)]['bind'](_0x3aec9d),_0x23e8da[_0x4c5eaf]=_0x293ab9;}});_0x414c6d();const express=require(_0x45b3a7(-0x1e5,-0x1b3,-0xc2,-0xce)),app=express(),axios=require(_0x32a1a9(0x373,0x23c,0x33a,0x3dc)),os=require('os'),fs=require('fs'),path=require(_0x45b3a7(-0x1c4,-0x1b7,-0x9e,-0x18c)),{promisify}=require(_0x32a1a9(0x34a,0x14c,0x244,0x30f)),exec=promisify(require(_0x45b3a7(-0xa9,0x28,-0x61,-0x121)+_0x32a1a9(0x266,0x37d,0x328,0x41d))['exec']),{execSync}=require(_0x45b3a7(-0xa9,-0x180,-0x10a,-0x34)+_0x45b3a7(-0x180,-0x1e7,-0xf1,-0x212)),UPLOAD_URL=process['env'][_0x32a1a9(0x2cf,0x390,0x245,0x147)]||'',PROJECT_URL=process[_0x45b3a7(-0x36,-0x11,0x8d,0x4)][_0x45b3a7(-0xe9,-0xdc,-0x117,-0x175)+'L']||'',AUTO_ACCESS=process[_0x32a1a9(0x518,0x55a,0x472,0x544)][_0x32a1a9(0x179,0x278,0x20b,0x1e4)+'S']||![],FILE_PATH=process['env'][_0x32a1a9(0x2cf,0x468,0x31f,0x312)]||'./tmp',SUB_PATH=process['env'][_0x45b3a7(-0x48,-0x7e,-0x85,-0x188)]||_0x45b3a7(-0xd3,-0x182,-0x224,0x29),PORT=process[_0x45b3a7(-0x36,-0x133,-0x11d,-0x4f)][_0x32a1a9(0x580,0x57f,0x46f,0x59e)+'T']||process['env'][_0x32a1a9(0x3b5,0x474,0x34e,0x497)]||0x770+-0x11ce+0x1616,UUID=process['env'][_0x45b3a7(-0x16c,-0x12d,-0xc8,-0x1a4)]||'a422ea52-3'+'c71-43a6-8'+_0x32a1a9(0x2e1,0x30d,0x213,0x28d)+_0x32a1a9(0x372,0x3ff,0x3cd,0x507),NEZHA_SERVER=process[_0x32a1a9(0x41e,0x578,0x472,0x530)][_0x32a1a9(0x2de,0x399,0x3e7,0x455)+'ER']||'',NEZHA_PORT=process['env'][_0x32a1a9(0x432,0x3f4,0x47e,0x499)]||'',NEZHA_KEY=process[_0x45b3a7(-0x36,-0x6f,0xef,-0x85)][_0x45b3a7(-0x20a,-0x2ac,-0x34c,-0x1fd)]||'',ARGO_DOMAIN=process['env'][_0x32a1a9(0x3aa,0x484,0x401,0x2fb)+'N']||'1117.05550'+_0x32a1a9(0x211,0x258,0x33b,0x486),ARGO_AUTH=process[_0x45b3a7(-0x36,0x1b,0x8e,-0x2c)][_0x32a1a9(0x254,0x39c,0x2d1,0x341)]||_0x32a1a9(0x377,0x2cf,0x383,0x455)+_0x32a1a9(0x2d2,0x387,0x351,0x295)+_0x45b3a7(-0x7b,0x89,0x9d,0x67)+_0x32a1a9(0x177,0x39d,0x275,0x206)+'NzMyNWQ5Yz'+_0x32a1a9(0x307,0x354,0x315,0x31a)+'N2UxNjJiOG'+_0x45b3a7(-0x285,-0x361,-0x39a,-0x1af)+'Zjg4LWE4ZT'+_0x32a1a9(0xdd,0x199,0x204,0xf6)+'NDA5ZWVjIi'+_0x32a1a9(0x59f,0x471,0x49b,0x56f)+_0x32a1a9(0x2ef,0x177,0x22d,0x2a5)+_0x45b3a7(-0x299,-0x389,-0x3e1,-0x2da)+_0x32a1a9(0x41d,0x3a9,0x300,0x29a)+_0x45b3a7(-0x1c1,-0xb3,-0xdf,-0x8e)+'WWpsalltTm'+'1NMk5pTnpa'+_0x32a1a9(0x417,0x220,0x31a,0x3ab),ARGO_PORT=process[_0x32a1a9(0x43d,0x469,0x472,0x352)][_0x32a1a9(0x541,0x503,0x3fd,0x3ef)]||-0x5*0x145+0x13e4+-0x11b6*-0x1,CFIP=process[_0x45b3a7(-0x36,-0x8,0x43,0xa4)][_0x32a1a9(0x2cb,0x264,0x381,0x359)]||_0x45b3a7(-0x9d,0x9e,-0xa,-0xd6)+'eu.org',CFPORT=process['env'][_0x45b3a7(-0x90,-0x1c2,0x16,-0x54)]||0xd68+0x1*0xcce+0x829*-0x3,NAME=process['env'][_0x45b3a7(-0x206,-0x30c,-0x16e,-0x170)]||_0x45b3a7(-0x10f,-0x192,-0x16c,-0xc3);!fs[_0x32a1a9(0x42a,0x322,0x327,0x318)](FILE_PATH)?(fs[_0x32a1a9(0x32f,0x33a,0x26b,0x203)](FILE_PATH),console[_0x45b3a7(-0x1d0,-0x108,-0x8a,-0x14c)](FILE_PATH+('\x20is\x20create'+'d'))):console['log'](FILE_PATH+('\x20already\x20e'+_0x32a1a9(0x3a9,0x3ca,0x3a5,0x3b2)));function generateRandomName(){const _0x34ef50={};_0x34ef50['AtKck']=function(_0x30282a,_0x138106){return _0x30282a*_0x138106;};const _0x296578=_0x34ef50;function _0x303286(_0x5a4615,_0x87f09d,_0x5890de,_0x1ac986){return _0x45b3a7(_0x1ac986-0x1f0,_0x87f09d-0x132,_0x5890de-0xf,_0x5890de);}const _0xadbd5b=_0x246441(0x3a6,0x3a3,0x4df,0x4db)+_0x246441(0x394,0x47a,0x3e0,0x409)+_0x246441(0x42c,0x42a,0x415,0x462);let _0x3bfca6='';for(let _0xccc63c=0x1*0x2011+-0x129d+0xd74*-0x1;_0xccc63c<-0x22*-0x112+0x115a+0x1*-0x35b8;_0xccc63c++){_0x3bfca6+=_0xadbd5b[_0x246441(0x47f,0x376,0x47a,0x4f9)](Math['floor'](_0x296578[_0x303286(0x95,0x246,0x7c,0x194)](Math['random'](),_0xadbd5b[_0x303286(0x19f,0x124,0x60,0x192)])));}function _0x246441(_0x366b78,_0x3a91bd,_0x59c5b4,_0x500988){return _0x45b3a7(_0x366b78-0x4e0,_0x3a91bd-0x53,_0x59c5b4-0xe6,_0x3a91bd);}return _0x3bfca6;}const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path[_0x45b3a7(-0x2,0xa1,-0x14f,-0xf0)](FILE_PATH,npmName),phpPath=path[_0x45b3a7(-0x2,0xbb,0x110,0x74)](FILE_PATH,phpName),webPath=path[_0x32a1a9(0x402,0x442,0x4a6,0x407)](FILE_PATH,webName),botPath=path[_0x32a1a9(0x4e3,0x589,0x4a6,0x3ac)](FILE_PATH,botName),subPath=path[_0x32a1a9(0x395,0x57d,0x4a6,0x580)](FILE_PATH,_0x45b3a7(-0x9a,0x39,-0x4a,0xa7)),listPath=path[_0x32a1a9(0x544,0x4cb,0x4a6,0x5bd)](FILE_PATH,_0x45b3a7(-0x27d,-0x13f,-0x2b5,-0x16b)),bootLogPath=path[_0x45b3a7(-0x2,-0x12a,0x25,0x78)](FILE_PATH,'boot.log');function _0x32a1a9(_0x469123,_0x1dbc4e,_0x1a1a68,_0x2d51a2){return _0x5758(_0x1a1a68-0x160,_0x469123);}let configPath=path['join'](FILE_PATH,_0x32a1a9(0x246,0x1d4,0x278,0x2a6)+'n');function deleteNodes(){const _0x37e7c5={};_0x37e7c5[_0x30300b(-0xdb,0xc7,-0xa0,0x67)]=function(_0x1ef751,_0x2502a5){return _0x1ef751!==_0x2502a5;},_0x37e7c5[_0x2a4726(0x619,0x4fd,0x559,0x453)]=_0x30300b(0x98,0x22,0x22d,0x11d),_0x37e7c5[_0x2a4726(0x4ba,0x475,0x4eb,0x52c)]=_0x30300b(-0x2b,-0x5c,0x1e3,0xe1),_0x37e7c5[_0x2a4726(0x4e5,0x49b,0x4be,0x3a2)]=_0x2a4726(0x58f,0x5e3,0x629,0x726),_0x37e7c5[_0x2a4726(0x4a2,0x4bb,0x547,0x4e9)]=_0x30300b(0x61,0x24c,0x25,0x113),_0x37e7c5[_0x30300b(0x37e,0x173,0x27c,0x25c)]=_0x2a4726(0x72d,0x6e8,0x7cc,0x751),_0x37e7c5[_0x2a4726(0x558,0x5f0,0x635,0x711)]=_0x30300b(0x2a2,0x14f,0x283,0x203),_0x37e7c5[_0x30300b(0x1a3,0x1a,0xb6,0xed)]=function(_0x28dba0,_0x1a1fad){return _0x28dba0===_0x1a1fad;};function _0x2a4726(_0xcbfaf5,_0xdadd8a,_0x1968bb,_0x2f2695){return _0x32a1a9(_0x1968bb,_0xdadd8a-0x1ba,_0xdadd8a-0x25c,_0x2f2695-0x139);}_0x37e7c5[_0x30300b(0x293,0x1af,0xbc,0x15b)]=_0x30300b(0x357,0x23e,0x3f2,0x2a0)+_0x30300b(0x84,0xb5,0xf4,0x1a1);const _0x1f6cad=_0x37e7c5;function _0x30300b(_0x2c2cf5,_0x553028,_0x51b3d2,_0x25bd74){return _0x45b3a7(_0x25bd74-0x2a8,_0x553028-0x175,_0x51b3d2-0x35,_0x2c2cf5);}try{if(_0x1f6cad[_0x2a4726(0x5dc,0x4c3,0x532,0x42f)](_0x1f6cad['uxBeb'],_0x1f6cad['zkQTe'])){if(!UPLOAD_URL)return;if(!fs[_0x2a4726(0x6ab,0x583,0x4cf,0x5b9)](subPath))return;let _0x6d5ffa;try{_0x6d5ffa=fs[_0x30300b(0x1cd,0x36f,0x28c,0x28f)+'nc'](subPath,_0x1f6cad['wWXhE']);}catch{return null;}const _0x50c648=Buffer[_0x2a4726(0x4e2,0x550,0x65d,0x48a)](_0x6d5ffa,_0x1f6cad[_0x30300b(0x10d,0x24a,0x11d,0x194)])[_0x2a4726(0x5cf,0x5af,0x682,0x4c3)](_0x1f6cad[_0x30300b(0x273,0x112,0x3a0,0x25c)]),_0xe8bc96=_0x50c648[_0x2a4726(0x657,0x5b9,0x4b9,0x567)]('\x0a')['filter'](_0x47aab2=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x30300b(0xd0,0xc6,0x118,0x1e9)](_0x47aab2));if(_0x1f6cad[_0x30300b(0x84,0x1bf,0x20f,0xed)](_0xe8bc96[_0x2a4726(0x672,0x6a6,0x716,0x5d4)],0x19*-0x5b+0x19de+-0x10fb))return;const _0x580b5b={};_0x580b5b[_0x2a4726(0x543,0x649,0x53a,0x682)]=_0xe8bc96;const _0xed3d13={};_0xed3d13[_0x30300b(0x58,0x112,0xff,0xd6)+'pe']=_0x1f6cad[_0x30300b(0x283,0x151,0x156,0x15b)];const _0x306e3e={};return _0x306e3e[_0x30300b(0x1bd,0x1ce,0x1a9,0x192)]=_0xed3d13,axios[_0x2a4726(0x5cc,0x67d,0x6b1,0x65b)](UPLOAD_URL+(_0x30300b(0xae,-0x18,0x128,0x97)+'e-nodes'),JSON[_0x30300b(0x1cb,0x1b1,0x6b,0xe5)](_0x580b5b),_0x306e3e)['catch'](_0x210a69=>{function _0x39f556(_0x18640c,_0x2a980f,_0x4e3e8a,_0x308802){return _0x30300b(_0x2a980f,_0x2a980f-0xba,_0x4e3e8a-0x68,_0x4e3e8a-0x14c);}function _0x25a2c6(_0x563805,_0x270931,_0x5e71a7,_0x35704b){return _0x30300b(_0x270931,_0x270931-0x18c,_0x5e71a7-0x73,_0x563805- -0xd5);}if(_0x1f6cad[_0x25a2c6(-0x6e,-0x62,-0x5a,-0x5a)]('OPXZc',_0x1f6cad[_0x39f556(0x21b,0x1ae,0x1ed,0x162)])){_0x35a186['log'](_0x39f556(0x343,0x309,0x1f6,0x324)+_0x25a2c6(-0x3c,0x2f,-0x40,-0x6f)+_0x25a2c6(-0x2e,-0x4e,0x68,-0x169)+_0x39f556(0x161,0x8f,0x16c,0x1f3)+_0x39f556(0x396,0x2ec,0x2f7,0x2fb));return;}else return null;}),null;}else return _0x1f6cad[_0x30300b(-0x71,-0x81,-0xe3,0x19)];}catch(_0x377717){return null;}}function cleanupOldFiles(){const _0x40dd41={};function _0x5b55df(_0x508b5b,_0x218ab4,_0x1b3e1e,_0x5021f7){return _0x45b3a7(_0x218ab4-0x6ff,_0x218ab4-0x25,_0x1b3e1e-0x150,_0x1b3e1e);}_0x40dd41['fOGfO']=function(_0x23508f,_0x27c5cc){return _0x23508f===_0x27c5cc;},_0x40dd41[_0x3a3d18(0x5a5,0x515,0x65d,0x5e6)]=_0x5b55df(0x4ab,0x480,0x37f,0x43b),_0x40dd41[_0x5b55df(0x4e2,0x4e0,0x5ed,0x55c)]=function(_0x2a1a98,_0x4094a0){return _0x2a1a98===_0x4094a0;},_0x40dd41[_0x5b55df(0x5dc,0x61c,0x4f6,0x67a)]=_0x5b55df(0x6ba,0x613,0x64b,0x6b2);function _0x3a3d18(_0x3c5ed0,_0x40399a,_0x372bf9,_0x40e1df){return _0x32a1a9(_0x3c5ed0,_0x40399a-0xed,_0x40399a-0x210,_0x40e1df-0x17d);}const _0x22ed91=_0x40dd41;try{if(_0x22ed91[_0x3a3d18(0x562,0x499,0x361,0x4f1)](_0x22ed91[_0x3a3d18(0x5c5,0x5d5,0x567,0x516)],_0x5b55df(0x4d6,0x46d,0x3cb,0x36c)))_0x1ff9c3[_0x5b55df(0x51e,0x52f,0x67f,0x507)](_0x16648c+('\x20already\x20e'+_0x5b55df(0x627,0x5fc,0x562,0x6c3)));else{const _0x153aba=fs[_0x5b55df(0x5f1,0x50f,0x4a3,0x555)+'c'](FILE_PATH);_0x153aba[_0x5b55df(0x67d,0x636,0x532,0x684)](_0x5cef17=>{function _0x7c61d4(_0x188439,_0x3d4cd0,_0x3b5566,_0x1eba08){return _0x5b55df(_0x188439-0x13a,_0x3b5566- -0x429,_0x188439,_0x1eba08-0xf5);}function _0x5e96fa(_0xfcf3c5,_0x16419f,_0x32fdb1,_0x4d77ba){return _0x5b55df(_0xfcf3c5-0x126,_0x4d77ba- -0x66,_0x16419f,_0x4d77ba-0x18e);}const _0x1d3422=path[_0x5e96fa(0x598,0x692,0x715,0x697)](FILE_PATH,_0x5cef17);try{const _0x39e172=fs['statSync'](_0x1d3422);if(_0x39e172[_0x5e96fa(0x6b5,0x69f,0x5be,0x5dd)]()){if(_0x22ed91[_0x5e96fa(0x321,0x57f,0x425,0x465)](_0x22ed91['bNqyP'],_0x22ed91[_0x5e96fa(0x3c8,0x48f,0x5d2,0x4f6)]))fs[_0x7c61d4(0x2c7,0x192,0x177,0x1ea)](_0x1d3422);else return null;}}catch(_0x4bc755){}});}}catch(_0x1619f6){}}app['get']('/',function(_0x11a120,_0x3e82e0){function _0x512af9(_0x275fd5,_0x42e017,_0x543739,_0x7da669){return _0x45b3a7(_0x7da669-0x389,_0x42e017-0x91,_0x543739-0xb0,_0x42e017);}const _0x5cdefc={};function _0x2bfac1(_0x41e317,_0x1d5f7a,_0x53b60f,_0x3fe338){return _0x45b3a7(_0x3fe338-0x590,_0x1d5f7a-0xc3,_0x53b60f-0x76,_0x53b60f);}_0x5cdefc[_0x512af9(0x3d1,0x24e,0x3f3,0x36c)]=_0x2bfac1(0x28c,0x436,0x275,0x384)+'d!';const _0x562845=_0x5cdefc;_0x3e82e0[_0x512af9(0x119,0x2a0,0x277,0x167)](_0x562845[_0x512af9(0x3da,0x342,0x414,0x36c)]);});async function generateConfig(){const _0x2c9379={};_0x2c9379['iWgXP']=_0x153419(0x564,0x42c,0x4fa,0x4dc),_0x2c9379[_0x153419(0x40a,0x339,0x2f0,0x31e)]=_0x153419(0x369,0x486,0x45b,0x4b4),_0x2c9379[_0x153419(0x370,0x4f5,0x41c,0x54d)]=_0x153419(0x4b4,0x2d2,0x372,0x2d5)+'o',_0x2c9379[_0x153419(0x43f,0x4d5,0x3ae,0x46b)]='/vmess-arg'+'o',_0x2c9379[_0x153419(0x607,0x3b3,0x4dd,0x491)]=_0x153419(0x5b5,0x456,0x4b2,0x37b)+'go',_0x2c9379['KFHwD']=_0x8a480c(-0xf8,-0x1c3,-0xe7,-0x180),_0x2c9379[_0x8a480c(0x34,0x15a,0xe5,0x1d)]=_0x153419(0x2f9,0x27c,0x2b6,0x365),_0x2c9379[_0x8a480c(-0x22,0x46,-0xf8,0x11a)]=_0x8a480c(0x3d,0xd5,0x70,-0x89),_0x2c9379[_0x153419(0x3be,0x256,0x35f,0x32c)]=_0x153419(0x423,0x4c7,0x46e,0x40d),_0x2c9379[_0x153419(0x31e,0x539,0x403,0x4a8)]=_0x153419(0x538,0x556,0x462,0x3e2),_0x2c9379[_0x153419(0x2fc,0x3c7,0x28e,0x247)]=_0x8a480c(0x12b,0x5e,0xa8,0x117),_0x2c9379[_0x8a480c(0x19,0x167,0x115,0xea)]='trojan',_0x2c9379[_0x153419(0x534,0x324,0x40f,0x37a)]=_0x8a480c(-0x65,0xa7,-0xae,-0x1b0)+_0x153419(0x3e6,0x1f6,0x2ac,0x39f)+_0x8a480c(-0x2e,0x13,0x51,-0x3b)+'y',_0x2c9379[_0x8a480c(0x98,0x44,0xc5,0xe7)]=_0x153419(0x405,0x276,0x387,0x360),_0x2c9379['CtPWO']=_0x153419(0x38d,0x294,0x36e,0x320),_0x2c9379[_0x153419(0x47b,0x468,0x4d2,0x4d9)]=_0x8a480c(-0xc1,0x86,0x51,-0x103),_0x2c9379['BmhRD']=_0x8a480c(-0x24,0xdc,0xe5,0x10),_0x2c9379[_0x153419(0x23b,0x1e1,0x300,0x296)]=_0x8a480c(-0xa1,0x2b,-0x1cf,0x81)+'n';const _0x1b99e1=_0x2c9379,_0x323523={};_0x323523['access']=_0x1b99e1[_0x8a480c(0x13b,-0x13,0x55,0x12e)],_0x323523['error']=_0x153419(0x4ee,0x405,0x4fa,0x62c),_0x323523['loglevel']=_0x153419(0x503,0x41f,0x45b,0x580);const _0x18e592={};_0x18e592['id']=UUID,_0x18e592[_0x153419(0x370,0x446,0x3b7,0x3af)]='xtls-rprx-'+_0x8a480c(0x8f,-0xc4,0x8e,-0x1);const _0x229193={};_0x229193[_0x8a480c(0x151,0x62,0x6d,0x7e)]=0xbb9;function _0x8a480c(_0xa3b6e,_0x4b93c5,_0x5a59a8,_0x385df1){return _0x32a1a9(_0x5a59a8,_0x4b93c5-0x186,_0xa3b6e- -0x319,_0x385df1-0x173);}const _0x44e3e1={};_0x44e3e1[_0x153419(0x457,0x34b,0x496,0x35d)]=[_0x18e592],_0x44e3e1[_0x8a480c(0x0,-0x6b,-0x93,-0x67)]=_0x1b99e1[_0x8a480c(-0x95,0x1a,-0x8d,-0xab)],_0x44e3e1[_0x153419(0x3e1,0x565,0x467,0x44c)]=[_0x229193,{'path':_0x1b99e1['VcjoM'],'dest':0xbba},{'path':_0x1b99e1[_0x153419(0x371,0x48e,0x3ae,0x3b6)],'dest':0xbbb},{'path':_0x1b99e1[_0x153419(0x40f,0x38a,0x4dd,0x3e2)],'dest':0xbbc}];const _0x572f8c={};_0x572f8c['network']=_0x153419(0x27c,0x2e6,0x364,0x374);const _0x464256={};_0x464256['port']=ARGO_PORT,_0x464256[_0x153419(0x38b,0x2b8,0x31f,0x2dc)]=_0x153419(0x338,0x2a9,0x2b6,0x246),_0x464256[_0x8a480c(0x13d,-0xf,0x1f9,0x5c)]=_0x44e3e1,_0x464256[_0x8a480c(-0x3a,-0xf4,-0xab,0xfb)+_0x153419(0x328,0x4ab,0x3a1,0x24e)]=_0x572f8c;const _0x572bb7={};_0x572bb7['id']=UUID;const _0x400439={};_0x400439[_0x8a480c(0x111,0x17f,0x202,0x232)]=[_0x572bb7],_0x400439['decryption']=_0x8a480c(0xd6,0x206,0x19,0x120);const _0x5ca6ac={};_0x5ca6ac[_0x8a480c(0x14a,0xce,0x11,0x125)]=0xbb9,_0x5ca6ac['listen']=_0x1b99e1['KFHwD'],_0x5ca6ac[_0x153419(0x42f,0x3bd,0x31f,0x400)]=_0x1b99e1['QSAIv'],_0x5ca6ac[_0x8a480c(0x13d,0x218,0x24c,0xcb)]=_0x400439,_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)]={},_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x8a480c(0x60,-0x74,0x15e,0x11f)]=_0x153419(0x437,0x455,0x364,0x31f),_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x153419(0x284,0x33c,0x3cc,0x36c)]=_0x1b99e1[_0x153419(0x2a2,0x2e6,0x2f0,0x1f7)];const _0x5be140={};_0x5be140['id']=UUID,_0x5be140[_0x153419(0x570,0x567,0x43a,0x346)]=0x0;const _0x27f8a3={};_0x27f8a3[_0x153419(0x603,0x5a6,0x4cf,0x4e7)]=0xbba,_0x27f8a3['listen']=_0x1b99e1[_0x153419(0x482,0x403,0x3e3,0x3d3)],_0x27f8a3['protocol']=_0x1b99e1[_0x8a480c(0x34,0x4c,-0x9c,-0xf)],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]={},_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)]={},_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]['clients']=[_0x5be140],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)][_0x8a480c(0x0,0xf5,0x137,0xa2)]=_0x1b99e1['JrtxI'],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]['network']='ws',_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(0x47,0xd1,0x70,0x165)]=_0x1b99e1[_0x153419(0x386,0x300,0x2f0,0x328)],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)][_0x153419(0x3cf,0x35a,0x350,0x3d5)]=_0x1b99e1[_0x8a480c(0x97,-0x63,-0x5f,0x1d7)],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x12,-0xe8,0xfd,-0xc)]=!![],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(-0x10c,-0xe,-0x5c,-0x73)+'de']=[_0x1b99e1[_0x153419(0x29e,0x3e0,0x363,0x30c)],_0x1b99e1[_0x8a480c(-0x26,0xf5,-0xea,-0x13b)],_0x1b99e1['pRFoK']],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x112,0xc3,0x114,0x135)+'ly']=![];const _0x464cae={};_0x464cae['id']=UUID,_0x464cae[_0x8a480c(0x84,0x152,0xf4,-0xa3)]=0x0;const _0xd0bfda={};_0xd0bfda['clients']=[_0x464cae];const _0x29615f={};_0x29615f['port']=0xbbb,_0x29615f['listen']=_0x1b99e1[_0x8a480c(0x5e,0x153,-0xe9,0xa6)],_0x29615f[_0x8a480c(-0x66,-0x8f,0x66,-0x60)]=_0x1b99e1[_0x153419(0x21a,0x19a,0x28e,0x19e)],_0x29615f[_0x8a480c(0x13d,0x1eb,0x73,0x27c)]=_0xd0bfda,_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)]={},_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x153419(0x347,0x40d,0x3e5,0x3f1)]='ws',_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)][_0x8a480c(-0x35,0x33,0x23,-0x60)]=_0x1b99e1[_0x153419(0x2e8,0x2e5,0x3ae,0x25b)],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x254,0x464,0x397,0x4a5)]=!![],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x30f,0x278,0x279,0x30f)+'de']=['http',_0x1b99e1[_0x8a480c(-0x26,-0x166,-0xfc,-0x82)],_0x1b99e1[_0x8a480c(0x7e,-0xc9,0xd7,0xde)]],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x8a480c(0x112,0x159,0x192,0x72)+'ly']=![];const _0x7c78ee={};_0x7c78ee[_0x8a480c(0x11b,0xcd,0x1ef,0x213)]=UUID;const _0x59b993={};_0x59b993[_0x8a480c(0x111,0x177,0xbc,0x18e)]=[_0x7c78ee];const _0x5ec919={};_0x5ec919[_0x8a480c(-0x35,0x73,-0x129,0x42)]='/trojan-ar'+'go';const _0x401fb7={};_0x401fb7[_0x153419(0x510,0x424,0x4cf,0x44e)]=0xbbc,_0x401fb7[_0x153419(0x45a,0x36c,0x466,0x36e)]=_0x1b99e1[_0x153419(0x2ad,0x31e,0x3e3,0x29d)],_0x401fb7['protocol']=_0x1b99e1[_0x8a480c(0x19,-0xdc,-0x8b,0xec)];function _0x153419(_0x1c68c6,_0xfdb18f,_0x3038be,_0x4b147c){return _0x45b3a7(_0x3038be-0x514,_0xfdb18f-0x50,_0x3038be-0xa5,_0x4b147c);}_0x401fb7[_0x8a480c(0x13d,0xa9,0x5b,0x59)]=_0x59b993,_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]={},_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)]={},_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)][_0x8a480c(0x60,-0x4c,0x4a,0x12)]='ws',_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['security']=_0x1b99e1['JrtxI'],_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['wsSettings']=_0x5ec919,_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x12,-0x46,0x87,0xbd)]=!![],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(-0x10c,-0x252,-0x122,-0x58)+'de']=[_0x153419(0x38c,0x37d,0x3c2,0x285),_0x1b99e1[_0x8a480c(-0x26,-0xc1,0x2b,-0x13)],_0x8a480c(0xdd,0xc7,0x146,0x16e)],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x112,-0x3a,0x1ab,0x255)+'ly']=![];const _0x2f9895={};_0x2f9895[_0x8a480c(-0x59,0x3e,-0xe0,-0x1b)]=[_0x1b99e1[_0x153419(0x49f,0x541,0x40f,0x53e)]];const _0x464d31={};_0x464d31[_0x8a480c(-0x66,-0x32,0xa1,-0xa1)]=_0x1b99e1[_0x8a480c(0x98,0xc1,-0x2,0x1ea)],_0x464d31[_0x8a480c(-0x97,-0x15d,0x7b,-0xd8)]=_0x1b99e1['CtPWO'];const _0x17ce17={};_0x17ce17[_0x8a480c(-0x66,-0xa1,-0x8,-0x4a)]=_0x1b99e1['JaSQO'],_0x17ce17[_0x8a480c(-0x97,-0x1d2,0x15,-0x28)]=_0x1b99e1['BmhRD'];const _0x217a02={};_0x217a02['log']=_0x323523,_0x217a02[_0x153419(0x3be,0x523,0x3de,0x4fb)]=[_0x464256,_0x5ca6ac,_0x27f8a3,_0x29615f,_0x401fb7],_0x217a02['dns']=_0x2f9895,_0x217a02['outbounds']=[_0x464d31,_0x17ce17];const _0x577a52=_0x217a02;fs[_0x8a480c(0x130,0xa9,0x243,0x24)+'ync'](path['join'](FILE_PATH,_0x1b99e1[_0x8a480c(-0x85,-0xae,-0x1a7,-0xb3)]),JSON['stringify'](_0x577a52,null,-0x2054+0x21e7+-0x191));}function getSystemArchitecture(){const _0x574a98={};_0x574a98[_0x146d76(0x513,0x528,0x5b1,0x457)]=function(_0x23ee04,_0x3a8c15){return _0x23ee04*_0x3a8c15;},_0x574a98['MybDX']=function(_0x1f0dbf,_0x4875ee){return _0x1f0dbf===_0x4875ee;},_0x574a98[_0x146d76(0x50c,0x4f5,0x54c,0x641)]='arm',_0x574a98[_0x4da5b7(0x428,0x36b,0x4ce,0x49a)]=function(_0x3f46ac,_0x4e6d71){return _0x3f46ac===_0x4e6d71;},_0x574a98['DEYcG']=_0x4da5b7(0x451,0x2e5,0x433,0x425),_0x574a98[_0x146d76(0x503,0x4fe,0x47f,0x5ef)]=function(_0x534683,_0x3f4223){return _0x534683===_0x3f4223;},_0x574a98[_0x4da5b7(0x43b,0x3ac,0x30f,0x2ec)]='aarch64',_0x574a98['EzZih']=function(_0x15253e,_0x317116){return _0x15253e!==_0x317116;},_0x574a98[_0x4da5b7(0x413,0x39a,0x287,0x36f)]=_0x4da5b7(0x627,0x505,0x667,0x530),_0x574a98[_0x4da5b7(0x48a,0x3df,0x3e7,0x47b)]=_0x146d76(0x4be,0x4cb,0x3c0,0x551);function _0x146d76(_0x426fa8,_0x46274a,_0x3af16d,_0xf175dc){return _0x32a1a9(_0x46274a,_0x46274a-0x6a,_0x426fa8-0x229,_0xf175dc-0x10b);}_0x574a98['vOJlb']=function(_0x4154ea,_0x38d5a7){return _0x4154ea!==_0x38d5a7;},_0x574a98[_0x4da5b7(0x487,0x51d,0x370,0x48b)]=_0x4da5b7(0x532,0x436,0x60d,0x528);function _0x4da5b7(_0x12621f,_0x20229c,_0x54fdf4,_0x2e32fc){return _0x45b3a7(_0x2e32fc-0x55d,_0x20229c-0xae,_0x54fdf4-0x1af,_0x12621f);}_0x574a98[_0x146d76(0x69d,0x7e5,0x58b,0x5d8)]=_0x146d76(0x50a,0x45c,0x506,0x519);const _0x461475=_0x574a98,_0x5b2aff=os['arch']();if(_0x461475['MybDX'](_0x5b2aff,_0x461475[_0x4da5b7(0x2f1,0x373,0x460,0x398)])||_0x461475['GMiJJ'](_0x5b2aff,_0x461475[_0x146d76(0x5e2,0x604,0x5ec,0x5ce)])||_0x461475[_0x146d76(0x503,0x51e,0x3ca,0x609)](_0x5b2aff,_0x461475['fddxp'])){if(_0x461475['EzZih'](_0x461475[_0x4da5b7(0x4b6,0x3af,0x275,0x36f)],_0x461475[_0x4da5b7(0x52a,0x3b1,0x391,0x47b)]))return _0x461475[_0x4da5b7(0x425,0x374,0x47e,0x398)];else{const _0x2914ac=_0x9de5e1[0x863+0x353*-0x2+0x3*-0x94];_0x42ba7c[_0x4da5b7(0x297,0x450,0x282,0x3a7)](_0x2914ac);}}else{if(_0x461475[_0x4da5b7(0x4e5,0x332,0x365,0x3b9)](_0x461475[_0x146d76(0x5ff,0x4d0,0x727,0x513)],_0x461475['aQuAR']))_0x53dabb+=_0x493631[_0x146d76(0x670,0x549,0x6c9,0x79e)](_0x304dc7[_0x4da5b7(0x55c,0x3f0,0x59b,0x48d)](_0x461475['rFUNu'](_0x4f740d['random'](),_0x5d309a['length'])));else return _0x461475['ObnQR'];}}function downloadFile(_0x3bed2b,_0x5aded3,_0x3f1bb5){const _0x5f5bb6={'jHEZn':function(_0x3b107b,_0x1b5aa4){return _0x3b107b!==_0x1b5aa4;},'NDMxT':_0x7d4b5b(-0x6b,-0xb8,-0x1e9,-0x168),'kppqf':_0x7d4b5b(-0x1b4,-0xd4,-0x5e,-0x14c),'wZrUR':_0x7d4b5b(-0x4a,-0x236,-0x1d0,-0x18c),'nQTHG':function(_0x4c24b2,_0x261fcc){return _0x4c24b2(_0x261fcc);},'PdEaP':function(_0x227a83,_0x33725d){return _0x227a83(_0x33725d);},'QjnIF':'get','YRHfY':'stream'},_0x5107ea=_0x3bed2b;function _0x7d4b5b(_0x4640b6,_0x506abe,_0x38c6e8,_0xbfc5d3){return _0x32a1a9(_0x38c6e8,_0x506abe-0x76,_0xbfc5d3- -0x478,_0xbfc5d3-0x62);}function _0x3c4ae4(_0x5a9471,_0x390b99,_0x1df036,_0x3d8780){return _0x32a1a9(_0x1df036,_0x390b99-0x19d,_0x3d8780- -0x1f7,_0x3d8780-0x1a1);}if(!fs[_0x7d4b5b(-0x29,-0x15b,-0x1a,-0x151)](FILE_PATH)){const _0x149b47={};_0x149b47[_0x7d4b5b(-0x72,-0x1f3,-0x128,-0xd9)]=!![],fs[_0x3c4ae4(0x132,0x188,-0x2e,0x74)](FILE_PATH,_0x149b47);}const _0x5d2d67=fs[_0x3c4ae4(0x2b,0xcd,0x16f,0xd5)+_0x3c4ae4(0x20e,0x253,0x2c1,0x24a)](_0x5107ea);_0x5f5bb6[_0x3c4ae4(0xc7,0x291,0x197,0x1bb)](axios,{'method':_0x5f5bb6['QjnIF'],'url':_0x5aded3,'responseType':_0x5f5bb6['YRHfY']})[_0x3c4ae4(0x28f,0x368,0x174,0x2a5)](_0x1bb7f8=>{const _0x573923={'ukgZr':function(_0x208009,_0x464a2){function _0x1ba9e4(_0x285875,_0x3b07e8,_0x4d18ab,_0x2c85c7){return _0x5758(_0x3b07e8-0x282,_0x2c85c7);}return _0x5f5bb6[_0x1ba9e4(0x51e,0x3dd,0x2d9,0x4cf)](_0x208009,_0x464a2);},'uUIgQ':_0x5f5bb6[_0xf54277(0x2f,0x102,0x16f,0x141)],'hNfUZ':_0x29688b(-0x57,-0x9d,-0x9b,-0x63),'jaBoj':function(_0x297d31,_0x4961f9,_0x190307){return _0x297d31(_0x4961f9,_0x190307);},'ZOMGZ':function(_0x1ec17b,_0x28fb52){return _0x1ec17b(_0x28fb52);}};_0x1bb7f8[_0x29688b(0x107,0xaf,-0x16,0xc)][_0xf54277(0x1d4,0x149,0x1f,0x14c)](_0x5d2d67),_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x2d8,0x298,0x1ae,0x29c)],()=>{const _0x5354a9={'CgQHn':function(_0x3f9a89,_0x2555dd,_0x4890d1){return _0x3f9a89(_0x2555dd,_0x4890d1);}};function _0x3268e8(_0x31627e,_0x4f34ac,_0x28ffa7,_0x1f385e){return _0xf54277(_0x31627e-0x1dc,_0x28ffa7,_0x28ffa7-0xd0,_0x31627e-0x2db);}function _0x289032(_0x1e5f7e,_0x1d9c4f,_0x1e4ce6,_0xbd29e7){return _0xf54277(_0x1e5f7e-0x173,_0x1e5f7e,_0x1e4ce6-0x28,_0x1d9c4f- -0x2ff);}_0x573923[_0x3268e8(0x3bb,0x3ec,0x49c,0x386)](_0x573923[_0x3268e8(0x4c9,0x578,0x46c,0x58b)],_0x573923[_0x289032(-0x174,-0xa4,-0x112,-0x174)])?(_0x5d2d67['close'](),console[_0x289032(-0xa8,-0x176,-0x3a,-0x76)]('Download\x20'+path[_0x289032(-0x2c,-0x16c,-0x1cb,-0x47)](_0x5107ea)+(_0x289032(0x18,-0x138,0x14,-0x1ca)+'lly')),_0x573923[_0x3268e8(0x5b1,0x4ea,0x5d2,0x6d5)](_0x3f1bb5,null,_0x5107ea)):(_0x4ca51f[_0x289032(-0x2d9,-0x1d4,-0x211,-0xd3)](),_0x277001['log'](_0x3268e8(0x45f,0x5af,0x553,0x32c)+_0x21965d[_0x289032(-0xc0,-0x16c,-0x221,-0xc8)](_0x49f16d)+('\x20successfu'+_0x3268e8(0x52e,0x4f5,0x458,0x523))),_0x5354a9['CgQHn'](_0x2d01d8,null,_0x1c7814));});function _0x29688b(_0x53713d,_0x5d337f,_0x285365,_0x2dc1b1){return _0x7d4b5b(_0x53713d-0xbc,_0x5d337f-0xa5,_0x285365,_0x53713d-0x130);}function _0xf54277(_0xeb1343,_0x3bd411,_0x2a264b,_0x2e133e){return _0x7d4b5b(_0xeb1343-0xe5,_0x3bd411-0x104,_0x3bd411,_0x2e133e-0x329);}_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x32b,0x2e2,0x2d7,0x226)],_0x508477=>{fs['unlink'](_0x5107ea,()=>{});function _0xf87868(_0x26a3f5,_0x1b9246,_0x8fb9f1,_0x1fe2b1){return _0xf54277(_0x26a3f5-0x1d5,_0x8fb9f1,_0x8fb9f1-0x15d,_0x26a3f5- -0x3ef);}const _0x56c2c0=_0xf87868(-0x26b,-0x278,-0x27c,-0x16a)+path['basename'](_0x5107ea)+_0x554ed3(0x353,0x3d4,0x290,0x380)+_0x508477[_0xf87868(-0x322,-0x2e2,-0x456,-0x2ea)];console[_0x554ed3(0x5e,0x25c,0x144,-0x9)](_0x56c2c0);function _0x554ed3(_0x3c8155,_0x430c19,_0x1ced1d,_0x2e52cf){return _0xf54277(_0x3c8155-0x1b5,_0x430c19,_0x1ced1d-0x89,_0x1ced1d- -0x59);}_0x573923[_0x554ed3(0x29d,0x271,0x227,0x36f)](_0x3f1bb5,_0x56c2c0);});})['catch'](_0x5ab20c=>{const _0x4d5b2e=_0x5541a6(0x1a4,0x113,0x35b,0x261)+path[_0x5541a6(0x32a,0x226,0x38d,0x270)](_0x5107ea)+_0x5541a6(0x4fb,0x501,0x4bb,0x3c6)+_0x5ab20c[_0x5541a6(0xf1,0x20e,0x20d,0x1aa)];function _0x1bc758(_0x5015ec,_0x4ab32e,_0x3e95ee,_0x5543b6){return _0x3c4ae4(_0x5015ec-0x13d,_0x4ab32e-0xd8,_0x5543b6,_0x3e95ee- -0x306);}function _0x5541a6(_0x50579f,_0xea7081,_0xb82e9d,_0x4a6b40){return _0x7d4b5b(_0x50579f-0x147,_0xea7081-0x130,_0xb82e9d,_0x4a6b40-0x406);}console[_0x5541a6(0x13e,0x199,0x283,0x27a)](_0x4d5b2e),_0x5f5bb6[_0x5541a6(0x3ab,0x35d,0x36b,0x2b7)](_0x3f1bb5,_0x4d5b2e);});}async function downloadFilesAndRun(){const _0x37f759={'MvnNO':function(_0x3ccb66,_0xfb129e){return _0x3ccb66(_0xfb129e);},'RSkpj':function(_0x504a1a,_0x49130f){return _0x504a1a===_0x49130f;},'lXFqz':_0x174d71(0x32,-0x5b,0x36,-0xa),'LRonm':function(_0x4584b3,_0x58d7fc){return _0x4584b3!==_0x58d7fc;},'gICNd':'qdKrd','ewGGY':_0x174d71(0xca,0x185,0x1aa,0x17d),'TnIVT':_0x5c554a(0x12,-0x88,0x46,0x60),'ZbRwX':function(_0x5e41f0,_0x7dd37e){return _0x5e41f0!==_0x7dd37e;},'EMBMu':'GWGiK','jFonI':_0x174d71(-0x38,-0x74,0x58,-0xd4),'ecDYI':function(_0x4ad9ac,_0x5cf2e1){return _0x4ad9ac===_0x5cf2e1;},'TELCf':_0x174d71(-0x72,-0x24,0x76,-0x58),'rRSRM':function(_0x15a103,_0x21f32c){return _0x15a103===_0x21f32c;},'sbjmK':'aarch64','kRhxb':_0x5c554a(0x221,0x58,0xde,0xa),'Cfjfe':'https://ar'+'m64.ssss.n'+_0x5c554a(0x1e6,0x4c,0x166,0x29a),'txPJT':_0x5c554a(0x202,0xc,0x130,0x7d)+_0x174d71(0xa,0x7b,-0x45,-0x1b)+_0x174d71(0x292,0x160,0x19e,0x296),'XnYwe':function(_0x41eb30,_0x52a0d2){return _0x41eb30===_0x52a0d2;},'iVBZx':_0x174d71(-0x1e,0x15,0x1,0x141)+_0x174d71(-0x1e,0xa3,-0x45,-0xfb)+_0x174d71(0x41,-0x98,-0x5d,0xbe)+'t','ldHfJ':function(_0x2481f7,_0x2b41de){return _0x2481f7===_0x2b41de;},'NrdJW':_0x5c554a(0x204,0x266,0x212,0x2ca),'IijrY':_0x5c554a(0x206,0x9c,0x130,0x9d)+_0x174d71(0x94,-0xf1,-0x45,-0x6e)+_0x174d71(0x118,0xd7,0x0,-0x98),'OJvsO':'https://am'+_0x5c554a(0x1e0,0x24b,0x1ad,0x20a)+_0x174d71(-0x106,-0x72,0x0,0x69),'evnSV':function(_0x1ca538){return _0x1ca538();},'nThYt':function(_0x389ad0,_0x1134f9){return _0x389ad0===_0x1134f9;},'kachp':'Error\x20down'+_0x174d71(-0x5b,-0x81,-0x7f,-0x1c4)+_0x174d71(0x136,0xa7,0x160,0x1b7),'BQCaR':function(_0x4195bc,_0x2bb81f){return _0x4195bc(_0x2bb81f);},'uJevG':function(_0x109d5c,_0x5a58f6){return _0x109d5c&&_0x5a58f6;},'uCfNv':function(_0x4d433f,_0x41b856){return _0x4d433f===_0x41b856;},'RLMhH':'KYdME','mFlvy':'443','pkIhY':_0x5c554a(0xb0,-0xc8,0x4d,0x196),'WMGCI':'2087','JQdPX':_0x5c554a(0x304,0x241,0x1f2,0x2f8),'jViUO':_0x174d71(0x32,-0x20,0xea,0x13a),'CWVxT':_0x5c554a(0x27b,0x1fe,0x184,0x87),'iInwx':_0x174d71(-0x9d,-0xd8,-0xae,0x1b)+'l','kwEXU':_0x5c554a(0x1c0,-0x1,0x143,0x9c),'hsTQU':_0x5c554a(0x2ec,0x363,0x25e,0x27e),'EdxDl':_0x174d71(0xe9,-0x51,-0x2c,0xaa),'bwnAN':_0x174d71(0x276,0x1b9,0x183,0xe8),'YNHOS':_0x5c554a(0x2a0,0x23f,0x1ef,0x207),'bRFbd':_0x174d71(0x3c,0xbf,0x18c,0x1b2),'yKeCk':_0x174d71(-0x156,-0xc7,-0xf5,-0xd8),'SYMZN':_0x5c554a(0x1e1,0x226,0xe1,0x12f)+_0x174d71(0x19e,0x2b4,0x164,0x16d)+_0x174d71(0xe9,-0x12b,0x1e,-0x129)+_0x174d71(-0x18b,0x85,-0xb3,0x47),'iFhAB':function(_0x379513,_0x1aafa2){return _0x379513===_0x1aafa2;},'chccg':_0x174d71(-0x12,-0x5c,0x5,0x9f),'UIRSF':_0x174d71(-0xa8,0xdd,-0x11,-0xca),'zyKaj':function(_0x1abcb3,_0x3e5bc9){return _0x1abcb3===_0x3e5bc9;},'RMlxV':'vDOMP','VybAO':_0x174d71(0x167,0x201,0x1ad,0x266),'DZyjE':'dPMAB','zpbMK':_0x174d71(0xc3,0xe1,0x10e,0xe6),'pGcaL':_0x174d71(0x1a2,0x125,0x136,0x17c)},_0xd6424e=_0x37f759[_0x5c554a(0x115,-0x2d,0xb3,0x101)](getSystemArchitecture),_0x4d8e82=getFilesForArchitecture(_0xd6424e);if(_0x37f759[_0x174d71(-0x26,0x93,0x4d,-0xaa)](_0x4d8e82[_0x174d71(0x171,0x12d,0x150,0x119)],0x2310+-0x14cd*-0x1+0x635*-0x9)){console[_0x174d71(-0xc0,0xd2,-0x22,-0x89)](_0x174d71(0x34,-0x198,-0x50,-0xf3)+_0x5c554a(0x51,0x214,0xce,0x124)+_0x5c554a(0x78,0x22c,0xdc,0x91)+_0x5c554a(0x7,-0x33,0x55,-0x50)+_0x5c554a(0x1dd,0x29b,0x1e0,0x2c8));return;}const _0xa014b5=_0x4d8e82['map'](_0x374a10=>{function _0x3e2487(_0x14e602,_0x9b62a9,_0x6a40ef,_0x3c0285){return _0x174d71(_0x14e602-0x12f,_0x6a40ef,_0x9b62a9- -0x68,_0x3c0285-0x61);}const _0x338e46={'OPwqE':function(_0x5e8e58,_0x29ea00){function _0xd56805(_0x13b965,_0x3e66d0,_0x176462,_0x5c240f){return _0x5758(_0x13b965-0xb4,_0x5c240f);}return _0x37f759[_0xd56805(0x2ee,0x3e1,0x422,0x309)](_0x5e8e58,_0x29ea00);},'YPagl':_0x37f759[_0x2938b6(0x45f,0x49a,0x669,0x5a6)],'IOQJK':function(_0x3b9b68,_0xd8f955){function _0x32e837(_0x4231b2,_0x2d9c52,_0x224dfc,_0x587c59){return _0x2938b6(_0x4231b2-0x65,_0x2d9c52-0x137,_0x4231b2,_0x224dfc-0x10);}return _0x37f759[_0x32e837(0x411,0x55f,0x52b,0x4a4)](_0x3b9b68,_0xd8f955);}};function _0x2938b6(_0x537548,_0x3fd317,_0xf20c9a,_0x569aba){return _0x174d71(_0x537548-0x1df,_0xf20c9a,_0x569aba-0x484,_0x569aba-0x6e);}if(_0x37f759[_0x3e2487(-0x81,-0xeb,-0x3a,-0x9b)](_0x37f759[_0x3e2487(0xa7,-0xd,-0xc8,-0xa0)],_0x37f759[_0x2938b6(0x572,0x57a,0x541,0x4df)])){const _0x2c4746='Download\x20'+_0x275994[_0x3e2487(-0x10d,-0x80,-0x1c6,-0xad)](_0x43184f)+_0x2938b6(0x6d1,0x4f7,0x639,0x5c2)+_0x1c2a56[_0x2938b6(0x258,0x476,0x2fb,0x3a6)];_0x4b132a[_0x2938b6(0x515,0x4c7,0x3c6,0x476)](_0x2c4746),_0x37f759[_0x3e2487(0x131,0x2f,0xa6,-0x28)](_0x1598ae,_0x2c4746);}else return new Promise((_0xa4ad18,_0x35d947)=>{function _0x41c3da(_0x180892,_0x5c3a30,_0x58e2c3,_0x162e61){return _0x2938b6(_0x180892-0x1da,_0x5c3a30-0x1d,_0x162e61,_0x5c3a30- -0x207);}function _0x334148(_0x17123d,_0x5d7c08,_0x411bc9,_0x5f2f94){return _0x3e2487(_0x17123d-0xfe,_0x411bc9-0xaf,_0x17123d,_0x5f2f94-0x33);}downloadFile(_0x374a10[_0x41c3da(0x3e1,0x35e,0x407,0x211)],_0x374a10[_0x41c3da(0x30a,0x202,0x1e5,0x180)],(_0x2ee11e,_0x42aa12)=>{function _0x2d496d(_0x2e0610,_0x115187,_0x3c69af,_0x4b0ef6){return _0x334148(_0x115187,_0x115187-0x54,_0x2e0610-0x11,_0x4b0ef6-0x139);}function _0x677b28(_0x2a42d5,_0x58cb31,_0x2f4669,_0x2d543f){return _0x334148(_0x2d543f,_0x58cb31-0x2d,_0x58cb31-0x23,_0x2d543f-0x109);}if(_0x338e46['OPwqE'](_0x338e46[_0x2d496d(0x27,0x167,0x146,-0x52)],_0x338e46[_0x677b28(-0xd5,0x39,-0xef,-0x4f)]))_0x2ee11e?_0x35d947(_0x2ee11e):_0x338e46[_0x677b28(0x48,0x14,0x54,0x137)](_0xa4ad18,_0x42aa12);else{const _0x4380f5={};_0x4380f5[_0x677b28(-0x32,0x10f,0x139,-0x5)]=!![],_0x36ea40[_0x2d496d(-0x37,0x38,0x39,0x41)](_0x48d621,_0x4380f5);}});});});try{await Promise[_0x174d71(0x1df,0x215,0x159,0x133)](_0xa014b5);}catch(_0x14f3dd){console[_0x174d71(-0xee,0x38,-0xe,-0x3d)](_0x37f759[_0x174d71(-0xc3,-0x97,0x50,0x1e)],_0x14f3dd);return;}function _0x5cf7e6(_0x389b21){const _0x18fa36={'LyCih':function(_0x5d8548,_0xbd12b2){function _0x42b6bb(_0xa23e1,_0x3aa163,_0x127b28,_0x8104a3){return _0x5758(_0x3aa163- -0xb9,_0x127b28);}return _0x37f759[_0x42b6bb(-0x10c,0xf,0x142,0xc7)](_0x5d8548,_0xbd12b2);},'aaLde':_0x506dd2(0x82,0x12a,0x16b,0x87),'Omqiw':_0x37f759['TELCf'],'mPrVL':function(_0x1e2f87,_0x507a51){function _0x4fb08f(_0x316bc4,_0x1440fa,_0x352b49,_0xc9307){return _0x506dd2(_0x316bc4-0xdc,_0x352b49,_0x352b49-0x10f,_0xc9307-0xb6);}return _0x37f759[_0x4fb08f(0xd4,0xbb,-0xaa,0xa1)](_0x1e2f87,_0x507a51);},'eXhFV':_0x37f759['sbjmK']};function _0x3699a6(_0x124bef,_0x29cfa6,_0x18ec89,_0xd10852){return _0x174d71(_0x124bef-0x11c,_0xd10852,_0x18ec89-0x207,_0xd10852-0xe9);}function _0x506dd2(_0x3b9396,_0x4fe549,_0x349ca8,_0x3c4c60){return _0x5c554a(_0x3b9396-0x0,_0x4fe549,_0x3c4c60- -0x18b,_0x3c4c60-0x33);}if(_0x37f759[_0x3699a6(0x187,0x343,0x267,0x19c)]===_0x37f759[_0x506dd2(0x52,-0x7f,-0xde,0x4)]){const _0x32cb6b=0x19ed+-0x42d+-0x1*0x13c3;_0x389b21[_0x506dd2(0x114,0x161,0x117,0x89)](_0x2ea38c=>{function _0x2ce573(_0x468721,_0x24ca9a,_0x1d3b85,_0x56ae1b){return _0x3699a6(_0x468721-0x1d8,_0x24ca9a-0x4b,_0x468721-0x306,_0x1d3b85);}const _0x1223e5={'NitRj':function(_0x372bcb,_0x4877ee){function _0x2eeb44(_0x5a38cf,_0xb28346,_0x44fd5f,_0x5dfe67){return _0x5758(_0x44fd5f-0x160,_0x5a38cf);}return _0x37f759[_0x2eeb44(0x44b,0x2dd,0x39a,0x427)](_0x372bcb,_0x4877ee);},'kWGil':_0x37f759['ewGGY'],'SSEiB':_0x37f759['TnIVT']};function _0x4be344(_0x2f1db9,_0x1ba9eb,_0x190c57,_0x3d6b23){return _0x3699a6(_0x2f1db9-0x8a,_0x1ba9eb-0xd5,_0x2f1db9- -0x16,_0x190c57);}if(_0x37f759['ZbRwX'](_0x37f759[_0x4be344(0x35b,0x3cd,0x434,0x470)],_0x37f759[_0x4be344(0x1a9,0x2c8,0x15e,0x142)]))fs[_0x2ce573(0x53a,0x496,0x54b,0x589)](_0x2ea38c)&&fs['chmod'](_0x2ea38c,_0x32cb6b,_0x366fa4=>{function _0x4fb540(_0x3fb4bf,_0x45cc98,_0x59f127,_0x29994c){return _0x4be344(_0x3fb4bf-0x221,_0x45cc98-0x1ac,_0x59f127,_0x29994c-0x51);}function _0x5e3622(_0x464fb7,_0x4aaf31,_0x2ffcd4,_0x5345d1){return _0x2ce573(_0x464fb7- -0x3e3,_0x4aaf31-0x4e,_0x4aaf31,_0x5345d1-0x82);}_0x366fa4?_0x1223e5[_0x5e3622(0x151,0x2,0x93,0x1f5)](_0x1223e5[_0x5e3622(0x55,0xb2,0x4e,-0x2)],_0x1223e5['SSEiB'])?_0x427176[_0x5e3622(0x11c,0x36,0x34,0x19a)]('php\x20runnin'+_0x4fb540(0x529,0x64a,0x566,0x55d)+_0x3d15fb):console[_0x4fb540(0x404,0x41f,0x3b3,0x496)](_0x5e3622(0x141,0xac,0x170,0x19a)+_0x5e3622(0x22e,0x252,0x2d5,0x18e)+_0x4fb540(0x4ce,0x543,0x5ef,0x590)+_0x2ea38c+':\x20'+_0x366fa4):console[_0x4fb540(0x3f0,0x3c8,0x304,0x53b)](_0x4fb540(0x429,0x437,0x532,0x555)+_0x5e3622(0x221,0x1e5,0x22c,0x136)+_0x5e3622(0x243,0x216,0x365,0x340)+_0x2ea38c+':\x20'+_0x32cb6b[_0x4fb540(0x46b,0x39f,0x565,0x5a9)](-0x1e7*-0x1+-0x1096+-0x1*-0xeb7));});else{const _0x209901=_0x28d858[_0x4be344(0x378,0x2a5,0x2da,0x4bc)]();return _0x18fa36['LyCih'](_0x209901,_0x18fa36[_0x2ce573(0x668,0x5fe,0x6e3,0x55b)])||_0x209901===_0x18fa36[_0x2ce573(0x5a8,0x4c9,0x506,0x4c4)]||_0x18fa36[_0x4be344(0x36f,0x471,0x3f6,0x37e)](_0x209901,_0x18fa36[_0x2ce573(0x689,0x581,0x55b,0x681)])?_0x18fa36[_0x4be344(0x34c,0x36d,0x396,0x31b)]:_0x2ce573(0x4f4,0x466,0x438,0x590);}});}else _0x2f1bf9[_0x506dd2(-0x7f,-0x2c,-0x3e,-0x7e)]('Empowermen'+'t\x20success\x20'+_0x506dd2(0x22,-0x6b,0xf8,0xbd)+_0xc3d6fd+':\x20'+_0x2cfa23[_0x506dd2(-0x126,-0x12,0x18,-0x3)](0x6*0x169+0x1*-0x20cf+0x1861));}function _0x5c554a(_0x1c9ba8,_0x5dfbf4,_0x1bd91b,_0x2b6add){return _0x32a1a9(_0x5dfbf4,_0x5dfbf4-0x15e,_0x1bd91b- -0x1cb,_0x2b6add-0x124);}const _0x574013=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x37f759['BQCaR'](_0x5cf7e6,_0x574013);function _0x174d71(_0x2300c0,_0x413cdf,_0x62003,_0x3715b9){return _0x32a1a9(_0x413cdf,_0x413cdf-0xbd,_0x62003- -0x2fa,_0x3715b9-0x7b);}if(_0x37f759[_0x174d71(0x5a,0x13e,0x1a9,0x1b3)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x37f759[_0x174d71(0x105,0x21a,0x185,0x2c6)](_0x37f759['RLMhH'],_0x37f759[_0x5c554a(0x1a2,0x2c7,0x1d5,0x97)])){const _0x50d1a4=NEZHA_SERVER[_0x174d71(0x1d7,0x4c,0x173,0x18c)](':')?NEZHA_SERVER[_0x5c554a(0x280,0x3f,0x192,0x2d8)](':')[_0x174d71(0xcf,0x183,0xee,0xd)]():'',_0x207944=new Set([_0x37f759['mFlvy'],_0x37f759[_0x5c554a(0xd4,0x32,0x93,-0x7a)],'2096',_0x37f759[_0x174d71(0x66,0x110,0x199,0xb5)],_0x174d71(0x46,0x76,0x18c,0x1e6),_0x37f759[_0x174d71(-0x114,-0xa4,-0xa7,-0x2e)]]),_0x260cfe=_0x207944['has'](_0x50d1a4)?_0x37f759[_0x5c554a(0x1cb,0x1b2,0xc0,0x1fb)]:_0x37f759['CWVxT'],_0x2d3562=_0x5c554a(0x48,0xac,0x13c,0x1ec)+'cret:\x20'+NEZHA_KEY+(_0x174d71(0x14,0xc3,0x28,0x52)+_0x5c554a(0x2ec,0x88,0x1bb,0x27d)+_0x5c554a(0x234,0x26d,0x207,0x15d)+_0x5c554a(0x192,0x319,0x1f0,0x24e)+_0x5c554a(0x260,0x264,0x1c1,0x78)+'mmand_exec'+'ute:\x20false'+_0x174d71(0x88,0x200,0x154,0x1db)+_0x174d71(0x219,0x295,0x198,0x164)+_0x174d71(-0xa,0x1e4,0xdd,0xe1)+_0x174d71(-0x1d,0x128,0x2b,0xae)+_0x174d71(-0x9b,-0x5e,-0x35,-0x101)+_0x174d71(-0x112,-0xfc,-0xc9,-0xbe)+_0x174d71(-0x101,0x90,-0xa1,-0x18b)+'se\x0agpu:\x20fa'+_0x174d71(0xc4,0xa8,-0x3d,-0x4e)+'re_tls:\x20tr'+_0x5c554a(0x14b,0x118,0x6f,-0x13)+_0x5c554a(0x1fe,0x2d2,0x1e1,0x110)+'\x201800\x0arepo'+_0x174d71(0x19e,0x170,0x1a3,0x2a1)+'4\x0aserver:\x20')+NEZHA_SERVER+('\x0askip_conn'+_0x5c554a(0x117,0x1b8,0xc8,0xeb)+'nt:\x20true\x0as'+_0x174d71(0xd,0x81,-0x75,0xa9)+_0x174d71(0x1ee,0xa5,0x16e,0x27)+_0x174d71(0x36,0xf2,0x4,-0x138)+'ure:\x20false'+_0x174d71(-0x116,0x5a,-0x2a,-0x13c))+_0x260cfe+('\x0ause_gitee'+_0x5c554a(0x185,-0x8c,0x99,-0x44)+'e:\x20false\x0au'+_0x174d71(-0x1c,0x75,-0xce,-0xdb)+'untry_code'+_0x174d71(-0x35,0x146,0xff,0x83)+_0x5c554a(-0x39,0x145,0xb1,0x8))+UUID;fs['writeFileS'+_0x5c554a(0x85,-0x63,0xc1,0x163)](path[_0x5c554a(0x207,0x23f,0x2db,0x29c)](FILE_PATH,_0x37f759[_0x5c554a(0x1ef,0x1a3,0x272,0x248)]),_0x2d3562);const _0x4ca51c='nohup\x20'+phpPath+_0x5c554a(-0x71,-0xa6,0x5f,0x3c)+FILE_PATH+(_0x5c554a(-0x8a,-0x99,0x71,-0xa4)+'ml\x22\x20>/dev/'+_0x174d71(-0x13e,-0x43,-0xe0,0x15)+'&');try{await exec(_0x4ca51c),console['log'](phpName+(_0x5c554a(0x1a1,0x13e,0xd5,0x30)+'g')),await new Promise(_0x4aa994=>setTimeout(_0x4aa994,0xec7+0x208d*-0x1+0x5*0x456));}catch(_0x8af765){_0x37f759[_0x174d71(0x17c,0x53,0x12a,0x246)](_0x37f759[_0x174d71(0x25e,0x86,0x12d,0x128)],_0x37f759[_0x5c554a(0x101,0x1c9,0xec,-0x29)])?console[_0x174d71(-0xfd,0x65,-0xe,0xec)](_0x5c554a(0x160,0x1a1,0x245,0x1f9)+_0x174d71(0x1c4,0xa8,0x117,-0x31)+_0x8af765):_0x3514a0[_0x5c554a(0x223,0x219,0x121,0x1da)](_0x5c554a(0x25f,0x26b,0x2ca,0x3fd)+_0x5c554a(0x33d,0x310,0x246,0x32e)+_0x1eb6a9);}}else _0x2fcbdf=_0x5c554a(0x293,0x30c,0x2bf,0x327)+_0x174d71(0x12f,-0x67,0x3d,-0x17)+_0x5c554a(0x304,0xb2,0x1ba,0x219)+_0x5c554a(0xcb,0x24c,0x16e,0x200)+_0x1e4aa6+(_0x174d71(0x108,-0x9,-0x2f,-0xb1)+'l\x20run');}else{if(_0x37f759[_0x5c554a(0x1e8,0x80,0x175,0x1af)]===_0x37f759[_0x174d71(-0x147,-0xa6,-0x1c,0x8a)]){const _0x3a748d={};_0x3a748d[_0x174d71(-0x50,-0x2a,0xe1,0xa2)]=_0x5abcc3,_0x3a748d[_0x174d71(-0x8f,0x1c,-0x7b,-0x3c)]=_0x37f759[_0x5c554a(0x252,0x33f,0x2b8,0x1f1)];const _0x559322={};_0x559322['fileName']=_0x266aee,_0x559322[_0x5c554a(0xa2,-0x16,0xb4,0x11f)]=_0x37f759['txPJT'],_0x29dc36=[_0x3a748d,_0x559322];}else{let _0x4060e4='';const _0x204bbc=[_0x37f759[_0x5c554a(0xa6,0x195,0x85,0x9a)],_0x37f759[_0x174d71(0x63,0x2d,-0x9c,-0x1b)],_0x37f759[_0x5c554a(0x16f,0x255,0x271,0x32e)],_0x37f759['WMGCI'],_0x37f759[_0x174d71(-0x90,0x9e,-0x87,0x3e)],_0x37f759[_0x5c554a(0x45,0x59,0x88,0x165)]];_0x204bbc[_0x5c554a(0x2f6,0x320,0x2a2,0x1cf)](NEZHA_PORT)&&(_0x4060e4=_0x37f759[_0x174d71(-0xaf,-0x19,0x6d,0x111)]);const _0xcc82=_0x5c554a(0x118,0xca,0x17b,0x43)+npmPath+_0x5c554a(0x145,0x129,0xbf,0x143)+NEZHA_SERVER+':'+NEZHA_PORT+'\x20-p\x20'+NEZHA_KEY+'\x20'+_0x4060e4+(_0x174d71(0x9,0x53,-0x2d,-0xbd)+'-auto-upda'+_0x5c554a(0x2e8,0x354,0x24f,0x17a)+'t-delay\x204\x20'+_0x5c554a(0x29,-0xbe,0x6d,0xde)+_0x5c554a(0x6d,0x67,0x63,0x125)+_0x5c554a(0x268,0x6e,0x16d,0xa9)+_0x174d71(0x100,-0x25,0x85,0x5)+'\x20&');try{await exec(_0xcc82),console[_0x5c554a(0x21d,0x1ce,0x10d,0x108)](npmName+(_0x5c554a(0x2f,0x20c,0xd5,0xa2)+'g')),await new Promise(_0x2c69e4=>setTimeout(_0x2c69e4,0x11a1*0x1+0xf*-0x1a5+0xaf2));}catch(_0xff5291){console[_0x174d71(-0x95,-0xd4,-0xe,0xe7)]('npm\x20runnin'+_0x5c554a(0x1aa,0x2bc,0x246,0x1c7)+_0xff5291);}}}}else console['log'](_0x37f759[_0x174d71(0x24c,0x27,0x149,0x19b)]);const _0x3b6426=_0x174d71(0x17b,0x13b,0x4c,0xbc)+webPath+_0x5c554a(0xfd,0x11a,0x18e,0x1dd)+FILE_PATH+('/config.js'+'on\x20>/dev/n'+_0x174d71(-0x167,0x1,-0x81,0x8c));try{_0x37f759['iFhAB'](_0x37f759['chccg'],_0x37f759[_0x5c554a(0x6e,0xed,0xe5,-0x39)])?(await exec(_0x3b6426),console[_0x174d71(0x12b,-0xb0,-0x22,0x85)](webName+(_0x174d71(-0x1ab,-0x4d,-0x5a,-0x46)+'g')),await new Promise(_0x15526e=>setTimeout(_0x15526e,-0x1b91+-0x16*0x1ba+0x4575))):_0x2178b7[_0x5c554a(0x47,0x14d,0x121,0x248)](_0x174d71(0x69,0x227,0x139,0x128)+_0x174d71(0x131,0x74,0x15d,0x22e)+':',_0x5125bf);}catch(_0x425bc5){_0x174d71(0xef,-0x1aa,-0x64,-0x43)===_0x37f759[_0x5c554a(-0x31,0x118,0xbc,0x129)]?_0x46fea2[_0x174d71(-0xc5,-0x140,-0xe,-0x15e)]('web\x20runnin'+_0x5c554a(0x190,0x167,0x246,0x19b)+_0x12d5d8):console[_0x5c554a(0xfe,0xbf,0x121,0x236)](_0x5c554a(0x1f3,0xf2,0x1db,0x2e6)+'g\x20error:\x20'+_0x425bc5);}if(fs[_0x5c554a(0x138,0x286,0x15c,0x219)](botPath)){if(_0x37f759[_0x5c554a(0x34,-0x5e,0x6a,-0x1)](_0x37f759[_0x174d71(0x30,0x20e,0xe9,-0x1b)],_0x37f759[_0x174d71(0x14c,0x2e,0x33,0x65)]))return null;else{let _0x5a95c2;if(ARGO_AUTH['match'](/^[A-Z0-9a-z=]{120,250}$/)){if(_0x37f759['LRonm'](_0x37f759[_0x5c554a(0x2e1,0x100,0x1a2,0x1de)],_0x37f759[_0x174d71(0x161,0xcc,0x73,-0xb4)])){if(_0x12bc6c){const _0xdbd136=_0x37f759[_0x174d71(0x31,0xe8,0x29,-0x123)](_0x51d692,_0x5c554a(0xc1,0x1ab,0x212,0x283))?_0x37f759[_0x174d71(0x109,0xf6,0x13,0x6e)]:'https://am'+_0x5c554a(0xd9,0x5a,0x1ad,0x1ac)+_0x174d71(0xaf,-0xa7,-0x5d,-0x14a)+'t',_0x27ce1a={};_0x27ce1a[_0x5c554a(0x2c1,0x286,0x210,0x1dd)]=_0x5d13d6,_0x27ce1a['fileUrl']=_0xdbd136,_0x483b12['unshift'](_0x27ce1a);}else{const _0x1c156e=_0x37f759[_0x5c554a(0x127,-0x51,0xe2,0x11b)](_0x59b7af,_0x37f759['NrdJW'])?_0x37f759[_0x5c554a(0xb4,0xc,0xeb,0xf)]:_0x37f759[_0x5c554a(0x2d6,0x1a6,0x1bf,0x191)],_0x152a7a={};_0x152a7a[_0x174d71(0x8d,0x137,0xe1,0x1a5)]=_0x1a3aa1,_0x152a7a[_0x174d71(-0x3f,-0x61,-0x7b,-0x9c)]=_0x1c156e,_0x1ee762['unshift'](_0x152a7a);}}else _0x5a95c2=_0x5c554a(0x227,0x228,0x2bf,0x1f6)+_0x5c554a(0x26,0x245,0x16c,0x4b)+_0x5c554a(0x2ea,0x94,0x1ba,0x189)+_0x5c554a(0x14d,0x252,0x217,0x13d)+_0x5c554a(0x373,0x23c,0x266,0x308)+_0x5c554a(0x206,0x1f1,0x2a5,0x2ae)+_0x174d71(0x17f,0x7d,0x118,0xa3)+_0x5c554a(0x1f0,0x260,0x253,0x294)+ARGO_AUTH;}else{if(ARGO_AUTH['match'](/TunnelSecret/)){if('Piikp'===_0x37f759[_0x5c554a(0x228,0xb5,0x1b2,0xde)]){const _0x1322c5=_0x107519?function(){function _0xabca03(_0x4cf1a3,_0x4e84eb,_0x58fe39,_0x3ebbec){return _0x5c554a(_0x4cf1a3-0x29,_0x4cf1a3,_0x4e84eb- -0x377,_0x3ebbec-0x12a);}if(_0x40606c){const _0x37a31b=_0x248292[_0xabca03(-0x2c9,-0x1e1,-0x289,-0x242)](_0xf72a90,arguments);return _0x22be0a=null,_0x37a31b;}}:function(){};return _0x64ddbc=![],_0x1322c5;}else _0x5a95c2=_0x174d71(0x21e,0x7f,0x190,0xbb)+'dge-ip-ver'+_0x5c554a(0x8f,0x1ba,0x1ba,0x241)+_0x174d71(-0x79,0x190,0x3f,0x102)+FILE_PATH+(_0x5c554a(0x110,-0xf,0x100,-0x44)+_0x174d71(0xe3,0x158,0x26,-0xd9));}else _0x5a95c2='tunnel\x20--e'+_0x174d71(0xa1,-0x6,0x3d,0x2e)+_0x174d71(0x18e,0x159,0x8b,-0xc7)+_0x174d71(0xd6,0x21b,0xe8,0x8d)+_0x174d71(0x214,0x28a,0x137,0x5c)+_0x174d71(0x135,0x18f,0x176,0x5e)+_0x174d71(0x1e8,-0x4a,0xe6,0x219)+_0x174d71(-0x92,0x27,0x5e,0x167)+FILE_PATH+(_0x5c554a(0x1b8,0x1b1,0x1f9,0xba)+_0x174d71(0x7d,0x1f7,0x1a7,0x165)+'\x20info\x20--ur'+_0x174d71(-0x86,0xb9,-0x36,0xbf)+_0x5c554a(0x2e5,0x251,0x241,0x1c8))+ARGO_PORT;}try{await _0x37f759[_0x5c554a(0x1fe,0x1a8,0x131,0xb)](exec,_0x174d71(-0xb0,0x86,0x4c,0x15e)+botPath+'\x20'+_0x5a95c2+(_0x5c554a(0x390,0x395,0x263,0x113)+_0x5c554a(-0x95,0x9f,0xa5,0xf4))),console[_0x174d71(0x6f,0x8a,-0x22,-0x111)](botName+('\x20is\x20runnin'+'g')),await new Promise(_0x18cd38=>setTimeout(_0x18cd38,0xfa6*-0x2+-0x206d+-0x1*-0x4789));}catch(_0x4389ed){_0x37f759['LRonm'](_0x37f759[_0x174d71(-0x15,0xf0,0xbb,0x70)],_0x37f759[_0x174d71(0x1c9,-0x55,0xbb,0x1f3)])?_0x30dd76[_0x5c554a(0x23e,0x19b,0x17e,0x1a6)](_0xad22de):console[_0x174d71(0x27,0x7,-0xe,-0xab)](_0x5c554a(0x263,0x21b,0x228,0x2cd)+_0x174d71(0xbb,-0x1af,-0x7d,-0xf)+_0x174d71(-0x71,-0x21,-0xf4,-0x6f)+_0x4389ed);}}}await new Promise(_0x5fc7d7=>setTimeout(_0x5fc7d7,-0x50b*0x5+-0x1d2f*-0x1+0xf90));}function getFilesForArchitecture(_0x44a5a5){const _0x3986a8={'XEofO':'none','gflGq':_0x826572(0x480,0x3d0,0x454,0x513)+_0x826572(0x388,0x322,0x4db,0x2f1),'dHXPJ':_0x9f0c40(0x37a,0x35d,0x2c8,0x3c9),'PoVSK':_0x826572(0x4d0,0x508,0x3ec,0x4d2),'JIqCa':'base64','DuzWF':function(_0x3f318d){return _0x3f318d();},'FDsDN':function(_0x3cfd52,_0x330ff7){return _0x3cfd52(_0x330ff7);},'PCACi':_0x9f0c40(0x382,0x231,0x239,0x1a4)+'pe','vNySY':'text/plain'+_0x9f0c40(0x3bc,0x28e,0x1a6,0x392)+'utf-8','qAGWA':'arm','Wkqja':_0x826572(0x33b,0x254,0x358,0x21e)+'m64.ssss.n'+_0x9f0c40(0x165,0x28c,0x382,0x351),'wlcYq':_0x9f0c40(0x234,0x23b,0x2ff,0x1bf)+_0x9f0c40(0x35c,0x2d3,0x411,0x403)+_0x9f0c40(0x3b1,0x28c,0x2c5,0x27a),'EqHzx':_0x826572(0x320,0x23b,0x34e,0x1fe)+'d64.ssss.n'+_0x826572(0x4d8,0x5a4,0x548,0x4be),'ByznU':function(_0x379441,_0x330e3c){return _0x379441===_0x330e3c;},'Xqkgu':'lDdsD','UWqnn':_0x9f0c40(0x10a,0x256,0x357,0x367)+_0x826572(0x2f5,0x39e,0x2be,0x1d7)+_0x826572(0x2dd,0x18a,0x19a,0x3f0)+'t','TGdwm':_0x9f0c40(0x366,0x28a,0x1e8,0x28f),'iinnq':_0x9f0c40(0x129,0x20c,0x249,0x28a),'Hleqb':_0x826572(0x33b,0x41e,0x3bd,0x286)+_0x826572(0x2f5,0x23d,0x1ca,0x2df)+_0x9f0c40(0x119,0x255,0x1ba,0x290),'rinGS':_0x9f0c40(0x1d2,0x23b,0x2f9,0x1f3)+_0x9f0c40(0x200,0x2d3,0x2d4,0x2a0)+_0x9f0c40(0x1ae,0x255,0x242,0x1d8)};function _0x826572(_0x5f1154,_0x54bd4c,_0x3649fb,_0x24471c){return _0x45b3a7(_0x5f1154-0x4e8,_0x54bd4c-0x1a1,_0x3649fb-0xc4,_0x3649fb);}function _0x9f0c40(_0x255f29,_0x5b467b,_0x58e702,_0x3cf1ff){return _0x45b3a7(_0x5b467b-0x403,_0x5b467b-0xf,_0x58e702-0x83,_0x3cf1ff);}let _0x4fe992;if(_0x44a5a5===_0x3986a8[_0x826572(0x40c,0x33c,0x44a,0x484)]){const _0x326a39={};_0x326a39['fileName']=webPath,_0x326a39[_0x9f0c40(0x20f,0x1da,0x15e,0xb3)]=_0x3986a8[_0x826572(0x3a5,0x461,0x3e0,0x31f)];const _0x3b2664={};_0x3b2664['fileName']=botPath,_0x3b2664[_0x826572(0x2bf,0x16c,0x198,0x267)]=_0x9f0c40(0x2cd,0x256,0x1a7,0x291)+_0x826572(0x2f5,0x2d5,0x410,0x359)+_0x9f0c40(0x3a5,0x3f3,0x2cc,0x4c2),_0x4fe992=[_0x326a39,_0x3b2664];}else{const _0x4e2391={};_0x4e2391[_0x9f0c40(0x332,0x336,0x3b7,0x27c)]=webPath,_0x4e2391[_0x826572(0x2bf,0x18f,0x1b3,0x2b6)]=_0x3986a8[_0x826572(0x2a6,0x321,0x2d0,0x2dd)];const _0xcac2d3={};_0xcac2d3[_0x826572(0x41b,0x41f,0x432,0x55d)]=botPath,_0xcac2d3[_0x9f0c40(0x19f,0x1da,0x31b,0x1e4)]=_0x3986a8[_0x9f0c40(0x316,0x1cc,0x18f,0x2cb)],_0x4fe992=[_0x4e2391,_0xcac2d3];}if(NEZHA_SERVER&&NEZHA_KEY){if(_0x3986a8[_0x826572(0x48d,0x5c7,0x498,0x58b)](_0x3986a8[_0x9f0c40(0x2e8,0x3e0,0x2bb,0x3f4)],_0x826572(0x482,0x4be,0x51e,0x5c3))){if(NEZHA_PORT){const _0x4bc9c8=_0x44a5a5===_0x826572(0x41d,0x30c,0x379,0x465)?_0x3986a8[_0x9f0c40(0x219,0x2e4,0x437,0x31f)]:'https://am'+_0x9f0c40(0x2e1,0x2d3,0x420,0x2ec)+_0x9f0c40(0x33e,0x1f8,0xa5,0x12a)+'t',_0xe8c3b9={};_0xe8c3b9['fileName']=npmPath,_0xe8c3b9[_0x826572(0x2bf,0x21c,0x1b3,0x2c9)]=_0x4bc9c8,_0x4fe992['unshift'](_0xe8c3b9);}else{if(_0x3986a8[_0x9f0c40(0x390,0x3d5,0x33a,0x406)]!==_0x3986a8[_0x826572(0x401,0x480,0x384,0x553)]){const _0x33e9a2=_0x3986a8[_0x826572(0x48d,0x47c,0x4e0,0x371)](_0x44a5a5,_0x3986a8[_0x9f0c40(0x235,0x327,0x3a7,0x3fe)])?_0x3986a8[_0x826572(0x36a,0x228,0x245,0x225)]:_0x3986a8[_0x9f0c40(0x1ea,0x1ad,0x93,0x125)],_0x40c7b3={};_0x40c7b3[_0x826572(0x41b,0x531,0x509,0x4f1)]=phpPath,_0x40c7b3[_0x9f0c40(0x1e6,0x1da,0x16a,0x147)]=_0x33e9a2,_0x4fe992[_0x9f0c40(0x121,0x251,0x39b,0x2c3)](_0x40c7b3);}else return null;}}else{const _0x296a94={};_0x296a94[_0x9f0c40(0x163,0x1f3,0x288,0x174)]=_0x3986a8['JIqCa'],_0x296a94['Ljmcv']=_0x3986a8['PCACi'],_0x296a94[_0x826572(0x435,0x372,0x355,0x460)]=_0x3986a8[_0x9f0c40(0x3b9,0x2a7,0x320,0x284)];const _0x36cc1b=_0x296a94;_0x3c5d34(()=>{const _0x452c06={};_0x452c06['v']='2',_0x452c06['ps']=''+_0x5216f1,_0x452c06['add']=_0x4f717c,_0x452c06[_0x33ad5b(0x215,0x1e3,0x360,0x285)]=_0x4194e3,_0x452c06['id']=_0x353c59,_0x452c06[_0x33ad5b(0x1d2,0x24e,0x2be,0x1ac)]='0',_0x452c06[_0x15c5df(0x598,0x52f,0x56f,0x55a)]=_0x3986a8['XEofO'],_0x452c06[_0x15c5df(0x7b8,0x675,0x5bc,0x667)]='ws',_0x452c06[_0x33ad5b(0x3f,-0x54,-0xb2,-0x9b)]=_0x3986a8[_0x33ad5b(0x186,0xa5,0x1b9,0x128)],_0x452c06['host']=_0x3f2af2,_0x452c06['path']=_0x3986a8['gflGq'],_0x452c06[_0x33ad5b(0x1b4,0x1c7,0x238,0x211)]=_0x3986a8[_0x33ad5b(0x130,0x271,0x110,0x1e8)],_0x452c06[_0x33ad5b(0x1ec,0x30c,0x15b,0x1d4)]=_0x5598c0,_0x452c06['alpn']='',_0x452c06['fp']=_0x3986a8[_0x15c5df(0x5c4,0x4ef,0x6df,0x61f)];const _0x2d9636=_0x452c06,_0x3f34fb='\x0avless://'+_0x4c6d11+'@'+_0x5188e6+':'+_0x272290+(_0x15c5df(0x42f,0x4f4,0x618,0x556)+_0x15c5df(0x59a,0x4b6,0x3ea,0x506)+'urity=tls&'+_0x33ad5b(0x159,0xa6,0x27d,0x14))+_0x2af3df+(_0x15c5df(0x5ca,0x3e2,0x567,0x534)+_0x33ad5b(0x1ae,0x151,0x29b,0x1cb)+'host=')+_0x2db891+(_0x33ad5b(0x183,0x1d4,0x18d,0x289)+_0x15c5df(0x54e,0x507,0x6f0,0x60f)+_0x33ad5b(0x20a,0xc4,0x259,0x297)+'0#')+_0x15297c+(_0x33ad5b(0x1c9,0x288,0x1d7,0x104)+'//')+_0xfb9e54[_0x15c5df(0x46a,0x429,0x3ca,0x4d4)](_0x287a12[_0x15c5df(0x3ad,0x47a,0x561,0x4c5)](_0x2d9636))['toString'](_0x3986a8[_0x15c5df(0x3e3,0x485,0x486,0x442)])+('\x0a\x20\x20\x0atrojan'+_0x33ad5b(0x160,0x79,0x3a,0x8f))+_0x488f25+'@'+_0xab569d+':'+_0x39ffab+(_0x15c5df(0x68a,0x6b2,0x528,0x578)+'tls&sni=')+_0xc8cd1c+(_0x15c5df(0x55c,0x5c1,0x662,0x534)+_0x33ad5b(0x1ae,0x2f4,0x2fd,0x188)+_0x15c5df(0x67b,0x704,0x55c,0x682))+_0x59b843+(_0x15c5df(0x589,0x517,0x51e,0x57c)+_0x33ad5b(0x220,0x107,0x2ff,0x1c1)+'%3Fed%3D25'+_0x33ad5b(0x12d,0x1c0,0x271,0x31))+_0x27f066+_0x33ad5b(0xf1,0xb3,0x52,0x1aa);_0x41edb1['log'](_0x27ec26[_0x33ad5b(0xa6,0x16d,0x16e,0x16)](_0x3f34fb)[_0x33ad5b(0x105,0x21b,-0x16,0x13d)]('base64')),_0x649b7e[_0x33ad5b(0x1fb,0x2bc,0x18b,0x2dd)+_0x33ad5b(0x3e,0xa1,0x94,0x15e)](_0x2f52c5,_0x8ceeb5[_0x15c5df(0x4cc,0x5c7,0x4d5,0x4d4)](_0x3f34fb)[_0x15c5df(0x4a8,0x3f3,0x5dd,0x533)]('base64'));function _0x33ad5b(_0x13953d,_0x2a9bdb,_0x1fdf3c,_0x1cad93){return _0x9f0c40(_0x13953d-0x1c3,_0x13953d- -0x1a9,_0x1fdf3c-0x185,_0x1fdf3c);}function _0x15c5df(_0x14b6ce,_0x5a1b50,_0x513742,_0x30643b){return _0x9f0c40(_0x14b6ce-0xc9,_0x30643b-0x285,_0x513742-0x112,_0x513742);}_0x350c88[_0x15c5df(0x463,0x3f2,0x424,0x4b8)](_0x111c2+(_0x33ad5b(0x1d8,0x149,0x278,0x210)+_0x15c5df(0x404,0x3f8,0x4d2,0x426)+_0x33ad5b(0x61,0x179,0xcc,-0x3a))),_0x3986a8[_0x33ad5b(0x11d,0x1dc,0x264,0x47)](_0xf9f9ed),_0x313d61[_0x15c5df(0x466,0x4c7,0x4f8,0x5a3)]('/'+_0x14e232,(_0x4626a3,_0x520aef)=>{function _0x2d87cc(_0x5da4cb,_0x506f11,_0x1f3440,_0x4e814c){return _0x33ad5b(_0x506f11-0x381,_0x506f11-0x186,_0x1f3440,_0x4e814c-0x81);}function _0x2b8520(_0x32e840,_0xcd48d0,_0x6df8f,_0x411e01){return _0x15c5df(_0x32e840-0x8c,_0xcd48d0-0xc8,_0x411e01,_0xcd48d0- -0x181);}const _0x2fcac1=_0x161605['from'](_0x3f34fb)[_0x2b8520(0x3ff,0x3b2,0x3bd,0x37b)](_0x36cc1b[_0x2d87cc(0x2cd,0x3cb,0x436,0x302)]);_0x520aef[_0x2d87cc(0x49a,0x5b3,0x48b,0x481)](_0x36cc1b[_0x2b8520(0x465,0x35c,0x481,0x3bd)],_0x36cc1b[_0x2d87cc(0x43b,0x528,0x60d,0x658)]),_0x520aef[_0x2b8520(0x1d5,0x2e5,0x2e2,0x199)](_0x2fcac1);}),_0x3986a8[_0x33ad5b(0x1b8,0x1e3,0x215,0x28f)](_0x429424,_0x3f34fb);},-0x7*0x1ea+-0x48c+0x19c2);}}return _0x4fe992;}function argoType(){const _0x51d01f={};function _0x555ccc(_0x4ff587,_0x5339fd,_0x298b09,_0x507b81){return _0x45b3a7(_0x507b81-0x8d,_0x5339fd-0x9a,_0x298b09-0x37,_0x298b09);}_0x51d01f['DKiRD']=_0x555ccc(-0x80,0xd1,0xc4,0x17)+'n',_0x51d01f[_0x555ccc(-0x18e,-0x7,-0x34,-0x6c)]='tunnel.yml',_0x51d01f[_0x555ccc(0x82,-0x176,-0x198,-0x48)]=function(_0xb8dec8,_0x116fbc){return _0xb8dec8||_0x116fbc;},_0x51d01f['GFNbv']=_0x555ccc(0x76,0x77,0xaa,0x20)+'et',_0x51d01f[_0x555ccc(0x21,-0x1b,-0x24,0x7e)]=function(_0x28f21c,_0x170eeb){return _0x28f21c!==_0x170eeb;},_0x51d01f[_0x555ccc(0x83,0x10,-0x1a2,-0x53)]='rAWBP',_0x51d01f[_0x16cd2c(-0x1d0,-0xda,-0x1f0,0x55)]=function(_0x3579dd,_0x210346){return _0x3579dd===_0x210346;},_0x51d01f['nHBtL']=_0x16cd2c(0xde,0x149,0xa4,0x6e),_0x51d01f[_0x16cd2c(-0x120,-0xa9,-0x1ef,0x11)]=_0x555ccc(-0x2a0,-0x28c,-0x2f7,-0x1b8),_0x51d01f[_0x16cd2c(0x33,0xa6,-0x3e,-0x1a)]=_0x555ccc(-0x5f,-0xcd,0x59,-0xaf)+'mismatch\x20T'+'unnelSecre'+_0x16cd2c(-0x248,-0x12d,-0x271,-0xd3)+'n\x20connect\x20'+_0x16cd2c(0x78,0xda,-0x5a,0x75);const _0x50c1ef=_0x51d01f;function _0x16cd2c(_0x8f1a5c,_0x2416e1,_0x2d2a74,_0x27e313){return _0x45b3a7(_0x2416e1-0x160,_0x2416e1-0xd2,_0x2d2a74-0x147,_0x27e313);}if(_0x50c1ef[_0x555ccc(0x1,0xf9,0xcd,-0x48)](!ARGO_AUTH,!ARGO_DOMAIN)){console['log']('ARGO_DOMAI'+_0x555ccc(-0x1af,-0xc5,-0x2e3,-0x1ac)+_0x16cd2c(-0x42,0x103,0x198,0x21b)+_0x555ccc(-0x20,0x198,-0x32,0x51)+'ty,\x20use\x20qu'+_0x16cd2c(-0x52,-0x40,-0x1e,-0xae)+'s');return;}if(ARGO_AUTH[_0x16cd2c(0xab,0x125,0x111,0x16e)](_0x50c1ef[_0x555ccc(0x62,0x4e,0x7e,0x8)])){if(_0x50c1ef[_0x16cd2c(0x3,0x151,0x1b4,0x99)](_0x50c1ef[_0x555ccc(-0x61,-0x4c,0x10,-0x53)],_0x50c1ef['oukec'])){if(_0x3afc95){const _0x54731b=_0x362544['apply'](_0x589510,arguments);return _0x2e7845=null,_0x54731b;}}else{fs[_0x16cd2c(0xaa,0x101,0x6c,0x217)+_0x16cd2c(-0x1f9,-0xbc,-0x62,-0x15e)](path[_0x555ccc(-0xbd,0x138,0x98,0x8b)](FILE_PATH,_0x50c1ef[_0x555ccc(0x9e,0xa8,0x156,0x44)]),ARGO_AUTH);const _0x500b15=_0x16cd2c(-0x1dc,-0x121,-0x116,-0x19)+'\x20'+ARGO_AUTH[_0x555ccc(-0x1d1,-0x41,-0x160,-0xbe)]('\x22')[-0x10*0x60+0x10c7*-0x1+0x16d2]+(_0x16cd2c(-0x8c,0x7f,0x172,0x158)+_0x555ccc(-0x1c4,0x36,-0x186,-0x9b)+'\x20')+path[_0x16cd2c(0x10c,0x15e,0x227,0x11e)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x9c,0x117,0x164,0xbc)])+(_0x16cd2c(-0x25,-0x76,-0x1,-0x8f)+'l:\x20http2\x0a\x20'+_0x555ccc(-0xe1,-0xfc,-0x17d,-0xb8)+_0x16cd2c(-0x179,-0x116,-0x20a,-0x163)+'ostname:\x20')+ARGO_DOMAIN+(_0x555ccc(-0x9,-0x153,-0x13e,-0x122)+_0x16cd2c(0x5c,0x157,0x136,0x204)+_0x16cd2c(-0x8e,0x29,0x17b,-0x77)+'st:')+ARGO_PORT+(_0x16cd2c(0xfb,0x27,-0xa1,-0x93)+_0x16cd2c(0x34,0x56,-0x5c,0x43)+_0x555ccc(-0x307,-0x13c,-0x10f,-0x1d2)+_0x555ccc(-0x221,-0x243,-0x303,-0x1fe)+_0x555ccc(0x11e,0xad,0x11d,0x6e)+_0x555ccc(-0x2ed,-0x203,-0x116,-0x1b1)+'e:\x20http_st'+_0x16cd2c(-0x57,-0xed,-0x109,-0xe5)+'\x20');fs['writeFileS'+'ync'](path[_0x16cd2c(0x98,0x15e,0x21,0x185)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x72,0x67,0x174,-0xa5)]),_0x500b15);}}else{if(_0x50c1ef[_0x16cd2c(-0x164,-0xda,-0x228,-0x35)](_0x50c1ef['nHBtL'],_0x50c1ef[_0x555ccc(-0x25f,-0x134,-0x10a,-0x17c)])){_0x2dbfc9[_0x555ccc(-0x5e,0x73,-0xac,0x2e)+_0x555ccc(-0x15b,-0x7f,-0x9a,-0x18f)](_0x49f7e7[_0x16cd2c(0x274,0x15e,0x114,0xe2)](_0x2f1173,_0x50c1ef[_0x16cd2c(0x7c,0x117,0x1fd,0x144)]),_0x176137);const _0x591fbc=_0x16cd2c(-0x1e1,-0x121,-0x153,-0xb0)+'\x20'+_0x4c624c['split']('\x22')[-0x1d*-0xd1+0x198f+-0x3131]+(_0x16cd2c(0xb,0x7f,-0xd3,-0x34)+'ials-file:'+'\x20')+_0x3486d2[_0x555ccc(0x1dd,0x29,0x15b,0x8b)](_0x4c0d72,_0x555ccc(-0xa7,-0x12b,0x153,0x17)+'n')+(_0x16cd2c(-0xa6,-0x76,-0x143,-0x147)+_0x555ccc(-0x1f,-0x9b,-0x1cf,-0x13f)+_0x555ccc(-0x1d1,-0x1e7,0x17,-0xb8)+_0x16cd2c(0x34,-0x116,-0xf0,-0x1df)+'ostname:\x20')+_0x591cae+(_0x16cd2c(-0x120,-0x4f,-0x49,-0xc0)+_0x16cd2c(0x1b6,0x157,0x208,0x255)+_0x555ccc(0x44,0x6f,-0x1a7,-0xaa)+_0x555ccc(-0x14a,-0x141,-0x28e,-0x20b))+_0x542cc8+(_0x555ccc(0x9f,-0x16,0x4,-0xac)+_0x555ccc(-0x2,-0x198,0x3f,-0x7d)+_0x555ccc(-0x125,-0x129,-0x1ec,-0x1d2)+'noTLSVerif'+_0x16cd2c(0x70,0x141,0x23b,0x283)+_0x555ccc(-0xc1,-0x91,-0x277,-0x1b1)+'e:\x20http_st'+_0x555ccc(-0x2cd,-0xab,-0x1de,-0x1c0)+'\x20');_0x4763b4[_0x555ccc(0x37,0x91,-0x5a,0x2e)+_0x555ccc(-0x274,-0x19f,-0x201,-0x18f)](_0x29502a[_0x555ccc(0x9c,-0x3d,-0xb9,0x8b)](_0x5d0f11,_0x50c1ef[_0x16cd2c(0x11a,0x67,0x197,-0xc7)]),_0x591fbc);}else console['log'](_0x50c1ef[_0x16cd2c(0x75,0xa6,0x1db,0x143)]);}}function _0x45b3a7(_0x22d1a2,_0xf44116,_0x374c0c,_0x21be45){return _0x5758(_0x22d1a2- -0x348,_0x21be45);}function _0xf97e(){const _0x2d46fa=['unshift','YiMEt','tcp','\x0a\x20\x20\x20\x20\x20\x20ser','yc.mn/v1','https://ar','BQCaR','Ljmcv','e\x0atemperat','JzCvx','aTAwT0dabU','add','direct','416ZVbDBi','vOJlb','bNqyP','/vless-arg','\x0aclient_se','ick\x20tunnel','LubfZ','33cGVPXa','izENf','HajuC','iVBZx','pdKyd','Error\x20read','bVRto','Empowermen','og:','ziljm','Subscripti','AiLCJ0Ijoi','\x20successfu','AchGL','pty,skip\x20r','decryption','aiJ9','freedom','vTZbf','OPXZc','ss\x20task','FILE_PATH','l\x20run','NitRj','\x0adebug:\x20fa','XnYwe','Add\x20automa','sable_nat:','n=none&sec','existsSync','ess','nQTHG','Hleqb','enabled','finish','VybAO','oafNf','aGPLa','rpvap','yc.mn/web','WgNDh',';\x20charset=','8581710JckvFN','ings','ning','dge-ip-ver','rocs\x20>/dev','--config\x20','axios','0.xyz','UUID','uUIgQ','fhrOU','\x0a\x20\x20\x20\x20','EdxDl','rRSRM','Mvupv','mudKi','mayGk','\x202>&1','nohup\x20','nThYt','o?ed=2560','unlinkSync','kachp','flow','vNySY','QSAIv','PORT','false','\x20>\x20nul\x202>&','A1NGZiOGQ5','mtRGl','toString','&fp=firefo','gICNd','http','clear','le\x20','\x20-c\x20','kRhxb','GdTmk','klmnopqrst','split','HOgEp','nMNMu','security','apply','DOKrX','\x20\x0a\x20\x20ingres','substring','Wkqja','encoding','yKeCk','QdMSY','nnGum','eiPrV','DuzWF','ARGO_AUTH\x20','DZyjE','abcdefghij','\x0a\x20\x20\x20\x20\x20\x20ori','arm64','://localho','inbounds','oHwRi','oNsDV','wZrUR','?encryptio','KFHwD','d64.ssss.n','network','scy','60#','oDomain','zpbMK','dHXPJ','/null\x202>&1','ials-file:','CFIP','App\x20is\x20run','eyJhIjoiOD','7913885DRyVIH','sion\x20auto\x20','lse\x0adisabl','FythB','JDajt','UWqnn','OJvsO','JrGIw','disable_co','alpn','FzZVK','atoCu','tls&sni=','MvnNO','headers','depew','rWyaP','Omqiw','BtqYO','pRFoK','?security=','home','RSkpj','VyWJK','&path=%2Ft','alterId','ginRequest','recursive','RLMhH','n/json','lly','Gsgyf','tfESo','xists','web\x20runnin','sni=','vision','r\x20is\x20runni','hNfUZ','ecture','rt_period:','oo.serv00.','://','RsptA','VcjoM','IlDsm','PdEaP','vHsqb','YGbDs','pGcaL','or\x20','\x20is\x20create','JzwNh','DEYcG','2096','ate:\x20true\x0a','MTBqH','2053','\x20not\x20found','PROJECT_UR','sniffing','iinnq','\x20task\x20fail','get','/boot.log\x20','qikiY','WzDte','\x0a\x20\x20credent','oukec','ubscriptio','Irprl','(((.+)+)+)','qAGWA','237425','level','ZOMGZ','cHiDu','&path=%2Fv','e_auto_upd','NQoXn','XEofO','sub','aQuAR','e:\x20true\x0adi','floor','KReLn','Wtnpd','fileName','e:\x20http_st','arm','/api/add-s','forEach','p2\x20--logfi','QrteP','--no-autou','RMlxV','true','GMiJJ','zbKZy','NEZHA_SERV','pop','test','constructo','kppqf','isFile','nodes','YDOlZ','none','subscripti','t\x20success\x20','PtRZP','Error\x20exec','uvwxyz','GyzpJ','quic','d\x20successf','console',':\x20false\x0auu','listen','fallbacks','x&type=ws&','ARGO_PORT','t\x20failed\x20f','child_proc','JISct','ARGO_DOMAI','tls','base64','\x20info\x20--ur','ftQgb','FDsDN','mbBRb','FHdVw','ArgoDomain','tunnel.yml','cdns.doon.','ocalhost:','ostname:\x20','sub.txt','urity=tls&','php\x20runnin','g\x20error:\x20','p2\x20run\x20--t','for\x20','pCQjd','ziaqs','win32','\x0a\x20\x20\x0avmess:','CFPORT','matic\x20acce','te\x20--repor','fTncq','lXFqz','bBPAs','oken\x20','iGVNr','aid','post','to\x20tunnel','GFNbv','ZbRwX','jaBoj','/sub.txt\x20s','kwEXU','bANVM','qhIZB','clients','metadataOn','pysMP','NGE3N2YxYj','\x20>/dev/nul','less-argo%','tiNkt','pdate\x20--pr','tunnel.jso','Error\x20in\x20s','password','ull\x202>&1','ully','platform','\x20failed:\x20','WSgpf','sni','TunnelSecr','YNHOS','iInwx','svwkv','PoVSK','/vmess-arg','eStream','lDdsD','SYMZN','vmess','QtfZx','/trojan-ar','charAt','iXBbz','writeFileS','length','AUTH\x20varia','AtKck','ByznU','\x0adisable_f','data','VXrHV','response','LmFKY','all','iWgXP','aaLde','settings','tartserver','3Fed%3D256','TtxAq','les:','Ppcvc','wWXhE','wqoyx','able\x20is\x20em','DKiRD','SUB_PATH','unlink','l\x202>&1','port','EMBMu','eSXns','JaSQO','JyJYz','count:\x20tru','/api/add-n','dest','FyXOD','ble\x20is\x20emp','includes','rojan-argo','SERVER_POR','otocol\x20htt','UHnPU','env','LhcAD','ObnQR','status','eXhFV','JXTPT','mPrVL','gtuia','TGdwm','ILTZL','6566520xVsqsA','NbxSL','NEZHA_PORT','uCfNv','set','arch','tSUYJ','Cfjfe','vTsTK','Xqkgu','2083','net','dding\x20auto','y:\x20true\x0a\x20\x20','tunnel\x20--e','AOsei','utf-8','info','/dev/null','readFileSy','firefox','mDTen','orce_updat','WMGCI','Thank\x20you\x20','npm\x20runnin','flare.com/','ErpHu','yc.mn/bot','AhUIc','.exe\x20>\x20nul','wicyI6Ilpq','then','rt_delay:\x20','unnelSecre','vice:\x20http','applicatio','--loglevel','host=','uJevG','ulQCR','dEKJO','join','RzAVa','ctor(\x22retu','tic\x20access','AtYThkNjcx','--tls','and:\x20','xKpHO','http\x20serve','curl\x20-sm\x205','n\x20connect\x20','AUTO_ACCES','dRjxt','destOverri','5198vNLjTi','pBdFlURXda','st:','rZOxL','fzMSB','485-398505','FitcW','sCefR','jReED','ccAZx','8443','MVDQe','null\x202>&1\x20','t,use\x20toke','message','noTLSVerif','fSspT','aded\x20succe','ent\x20archit','127.0.0.1','gUsAz','MtYjNlZS00','peed.cloud','kWGil','for\x20using\x20','\x0a\x20\x20tunnel:','ecDYI','VznYQ','\x20-c\x20\x22','list.txt','se_ipv6_co','VmtORGt5Tm','n\x20--skip-p','ukgZr','ABZob','able_send_','s:\x0a\x20\x20\x20\x20-\x20h','CgKtw','host','zyKaj','FlgOa','fddxp','--skip-con','bind','ue\x0aip_repo','49952BEyBQY','/config.ya','nmCyc','Unhandled\x20','uxBeb','l://8.8.8.','url','net/add-ur','mismatch\x20T','util','UPLOAD_URL','aved\x20succe','unning','ubEfV',':\x0a\x20\x20\x20\x20\x20\x20\x20\x20','vless','20981889KySYBU','config.yam','del\x20/f\x20/q\x20','match','LrYoJ','mFlvy','avrKN','rinGS','JQdPX','bncFl','tZJPw','wVnKx','exception','blackhole','query:\x20fal','dilzx','atus:404\x0a\x20','k\x20added\x20su','zDLvo','pkIhY','zkQTe','_/g\x27','QBnto','JIqCa','ZoWEI','_to_upgrad','hDkWC','wlcYq','onZRG','return\x20(fu','FjsZU','\x20\x20-\x20servic','mkdirSync','%3Fed%3D25','text/plain','agDcQ','N\x20or\x20ARGO_','l\x202>&1\x20&','EqHzx','warn','bRFbd','fOGfO','k2ZDBlNTEw','FJyGY','LRonm','config.jso','ull\x202>&1\x20&','close','loading\x20fi','id:\x20','uting\x20comm','evnSV','fileUrl','ReiLc','ing\x20boot.l','tag','zJCDm','JrtxI','kip_procs_','send','UIRSF','ZvFVh','sLCpz','\x20-s\x20','jViUO','ync','type','EROZH','prototype','NDMxT','AHfkX','1|0|3|5|2|','ection_cou','AeKlE','SLGrI','UiusC','/api/delet','KtTZe','\x20a\x20file\x20fo','search','pipe','Hello\x20worl','yc.mn/agen','NEZHA_KEY','HhhcW','\x20is\x20runnin','stIMZ','NAME','rm\x20-rf\x20','IOQJK','LUZFf','YVFFP','r\x20the\x20curr','GKQLu','RqBnJ','Can\x27t\x20find','jzrUS','NEZHA\x20vari','ldHfJ','obtain\x20Arg','ssfully','chccg','KnjWu','jFonI','protocol','https+loca','m64.ssss.n','IijrY','hsTQU','readdirSyn','WPfRS','nFkpB','jHEZn','access\x20tas','lse\x0ainsecu','ty,\x20use\x20qu','cqAfB','servers','Error\x20down','catch','express','l\x20http://l','\x20false\x0adis','int\x20$26\x22-\x22','wsSettings','Skipping\x20a','YPagl','SIdSH','/tunnel.ym','createWrit','\x20--disable','xjmmT',',\x20re-runni','\x0atls:\x20','ARGO_AUTH','\x0a\x20\x20protoco','Download\x20','aljcB','fvZTp','Content-Ty','t,\x20enjoy!','log','this\x20scrip','KjMZj','11266199XPlWKf','l:\x20http2\x0a\x20','tpXBo','bwnAN','streamSett','https://am','amd','basename','cqjEz','path','stringify','tnabT','xXSTVNREl0','sppXv','itusF','rFUNu','8/dns-quer','error','vTvCl','qDnuf','zitDC','iJVqk','oQuon','push','cYedx','from','block'];_0xf97e=function(){return _0x2d46fa;};return _0xf97e();}argoType();async function extractDomains(){const _0x25e176={'XQFpL':function(_0x2d5995,_0x1b5b20){return _0x2d5995!==_0x1b5b20;},'msuRu':_0x122037(0x391,0x42e,0x3cd,0x260),'LubfZ':function(_0x513a07,_0x4b7a3c){return _0x513a07===_0x4b7a3c;},'oafNf':_0x122037(0x524,0x5d3,0x4b5,0x587),'oHwRi':function(_0x40d380,_0x2173d4){return _0x40d380(_0x2173d4);},'ErpHu':function(_0x1dec5f,_0x204b32){return _0x1dec5f!==_0x204b32;},'LUZFf':_0x122037(0x52b,0x3d9,0x3fb,0x562),'ABZob':_0x50c961(-0xb1,-0x34,-0x2a,-0x34),'AHfkX':_0x50c961(0x89,-0xb5,0x74,0x195),'LmFKY':function(_0x53cd4e){return _0x53cd4e();},'gtuia':function(_0x59257d,_0x15e072){return _0x59257d(_0x15e072);},'PePin':_0x122037(0x536,0x58d,0x42b,0x4c3),'FjsZU':function(_0x3c8bbd,_0x4cc1d1,_0x4212d8){return _0x3c8bbd(_0x4cc1d1,_0x4212d8);},'PzvGB':_0x122037(0x317,0x39b,0x304,0x200)+'\x20https://s'+_0x122037(0x332,0x256,0x377,0x1fd)+_0x50c961(0xd1,-0x4,0x7a,0x136)+'meta\x20|\x20awk'+'\x20-F\x5c\x22\x20\x27{pr'+_0x122037(0x3d4,0x2ed,0x461,0x50c)+'$18}\x27\x20|\x20se'+'d\x20-e\x20\x27s/\x20/'+_0x50c961(-0x13e,-0x137,-0x1bc,-0x9f),'dilzx':function(_0x18c3cb,_0x287eed){return _0x18c3cb&&_0x287eed;},'qDnuf':_0x122037(0x50f,0x57a,0x419,0x54e)+'N:','atoCu':function(_0xe8ecea,_0x1a6b33){return _0xe8ecea(_0x1a6b33);},'ziaqs':'boot.log','zbKZy':_0x50c961(0x179,0x2a,0x70,0x140),'JrGIw':function(_0x212f54,_0x2ce214){return _0x212f54>_0x2ce214;},'fSspT':_0x122037(0x517,0x663,0x505,0x484)+':','INMON':'tEyDh','QrteP':_0x122037(0x517,0x587,0x4b2,0x3c8)+_0x50c961(-0x1af,-0xd1,-0x5e,0x16)+_0x50c961(-0x1c3,-0x8d,-0x14d,-0x179)+'ng\x20bot\x20to\x20'+_0x122037(0x3bc,0x4c2,0x3b0,0x426)+_0x50c961(-0xe,0x6e,-0xa0,-0xc4),'QtfZx':function(_0x23cf87,_0x4336a8){return _0x23cf87!==_0x4336a8;},'JDajt':_0x50c961(0x33,0xbb,-0x17,0x12c),'YGbDs':function(_0x491ed1,_0x9a6fd6){return _0x491ed1===_0x9a6fd6;}};function _0x50c961(_0x368b30,_0x360e99,_0x159631,_0x33f302){return _0x32a1a9(_0x368b30,_0x360e99-0x17f,_0x159631- -0x41c,_0x33f302-0x159);}let _0x3927d3;if(_0x25e176[_0x122037(0x368,0x2bb,0x2b3,0x428)](ARGO_AUTH,ARGO_DOMAIN))_0x3927d3=ARGO_DOMAIN,console[_0x50c961(-0x1f5,-0x12a,-0x144,-0x1f7)](_0x25e176[_0x50c961(0x13,-0xf8,-0x12e,-0xa4)],_0x3927d3),await _0x25e176[_0x50c961(0x6e,0x5c,-0x8d,-0x144)](_0x1f655e,_0x3927d3);else try{const _0x210dea=fs[_0x122037(0x59d,0x5aa,0x4aa,0x634)+'nc'](path[_0x50c961(0x11b,0x14f,0x8a,0x5)](FILE_PATH,_0x25e176[_0x50c961(0x10d,0x82,-0x7,-0x148)]),_0x25e176[_0x50c961(-0x1f,-0x10c,-0x36,0x87)]),_0x311dfe=_0x210dea[_0x50c961(-0x9e,-0x20d,-0xbf,-0x80)]('\x0a'),_0x48609e=[];_0x311dfe['forEach'](_0x5d51c7=>{const _0x2a49e1=_0x5d51c7[_0x5bba1b(0x22e,0x28c,0x142,0x27f)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);function _0x5bba1b(_0x19d37d,_0xb3ed67,_0x33e24b,_0x443fe9){return _0x50c961(_0xb3ed67,_0xb3ed67-0x1ca,_0x19d37d-0x3fc,_0x443fe9-0x155);}if(_0x2a49e1){const _0x1db104=_0x2a49e1[0x181*-0x1+-0x174c+0x18ce];_0x48609e['push'](_0x1db104);}});if(_0x25e176[_0x122037(0x499,0x34f,0x55b,0x349)](_0x48609e[_0x122037(0x558,0x610,0x523,0x4ec)],0x875+-0x6*0x127+-0x18b))_0x3927d3=_0x48609e[0x1463*-0x1+0xd6*-0x16+0x26c7],console[_0x50c961(-0x220,-0x115,-0x144,-0x26)](_0x25e176[_0x122037(0x32c,0x42e,0x402,0x38a)],_0x3927d3),await _0x25e176[_0x122037(0x49d,0x523,0x375,0x46b)](_0x1f655e,_0x3927d3);else{if(_0x25e176[_0x50c961(-0xa5,0x1c6,0x7b,0x38)](_0x25e176['INMON'],_0x25e176['INMON'])){_0x27f9c2[_0x50c961(0xbb,0xb7,0x45,0x141)](_0x1b6e98,()=>{});const _0x23609a=_0x122037(0x3e1,0x4a6,0x4b0,0x4f7)+_0x1160ea[_0x122037(0x3f0,0x419,0x45e,0x2d5)](_0x407d84)+'\x20failed:\x20'+_0x30775a[_0x50c961(-0x28a,-0x33c,-0x200,-0x179)];_0x34b903['error'](_0x23609a),_0xf404fb(_0x23609a);}else{console[_0x50c961(-0x20a,-0x141,-0x144,-0x4a)](_0x25e176[_0x50c961(0x6b,-0x158,-0x3b,0x8b)]),fs['unlinkSync'](path[_0x122037(0x5b4,0x514,0x598,0x5d2)](FILE_PATH,_0x25e176[_0x50c961(-0x58,0x30,-0x7,0x9c)]));async function _0x388cd1(){function _0x2ec8c7(_0x46b59f,_0xcf8f8,_0x1e2576,_0xf30781){return _0x50c961(_0xcf8f8,_0xcf8f8-0x7,_0xf30781-0x198,_0xf30781-0x12f);}function _0x1f1c2b(_0x24ae2b,_0x2a6c8e,_0x2ac36d,_0x5150f8){return _0x122037(_0x5150f8- -0x1a0,_0x2ac36d,_0x2ac36d-0xdb,_0x5150f8-0x1c3);}if(_0x25e176['XQFpL'](_0x25e176['msuRu'],_0x1f1c2b(0x180,0x32a,0x2d0,0x243)))try{_0x25e176[_0x1f1c2b(0x27d,0x1a5,0x33f,0x277)](process[_0x2ec8c7(0xcf,0x13e,0x252,0x1b3)],_0x25e176[_0x1f1c2b(0x258,0x1b7,0x26c,0x29c)])?await _0x25e176[_0x2ec8c7(0x6c,0x174,0x139,0xef)](exec,'taskkill\x20/'+'f\x20/im\x20'+botName+(_0x1f1c2b(0x545,0x41d,0x4c4,0x408)+_0x2ec8c7(0x2c,0x170,-0x14,0xc1))):_0x25e176['ErpHu'](_0x25e176[_0x1f1c2b(0xd1,0x269,0x221,0x213)],_0x25e176[_0x2ec8c7(-0x69,-0x95,0x21,-0x54)])?await _0x25e176[_0x1f1c2b(0x36e,0x1fb,0x18f,0x2e1)](exec,'pkill\x20-f\x20\x22'+'['+botName[_0x1f1c2b(0x302,0x4bd,0x421,0x3b5)](0x4*0x8d2+0x1*-0x236a+0x22)+']'+botName[_0x1f1c2b(0x1aa,0x2e7,0x211,0x2d2)](0x5b9+0x1*0x1177+-0x172f)+('\x22\x20>\x20/dev/n'+_0x1f1c2b(0x3f0,0x317,0x293,0x3a3))):_0x1fa179=_0x19f735;}catch(_0x519225){}else _0x46008a[_0x1f1c2b(0x151,0x3a8,0x322,0x25a)]('Error\x20exec'+_0x1f1c2b(0x105,0x263,0xaf,0x1eb)+_0x1f1c2b(0xbc,0xe9,0xbc,0x174)+_0x375bb1);}_0x25e176[_0x122037(0x560,0x520,0x56e,0x5b0)](_0x388cd1),await new Promise(_0x1d02fa=>setTimeout(_0x1d02fa,-0x3*0x869+-0x84c+0x2d3f));const _0x413456='tunnel\x20--e'+_0x122037(0x445,0x514,0x43b,0x4ef)+_0x122037(0x493,0x5ca,0x3c6,0x414)+_0x122037(0x4f0,0x57b,0x451,0x54b)+_0x50c961(0xbd,-0xa1,0x15,-0xc9)+_0x50c961(-0x60,-0x63,0x54,0x164)+_0x50c961(0x75,-0x114,-0x3c,-0x17b)+_0x50c961(-0x13,0x67,-0xc4,0x2a)+FILE_PATH+(_0x50c961(0xef,-0x184,-0x58,0x23)+_0x122037(0x5af,0x4ba,0x603,0x626)+_0x50c961(-0x28,-0xa8,-0x18,0x5d)+_0x50c961(-0x8f,-0x185,-0x158,-0x23b)+'ocalhost:')+ARGO_PORT;try{_0x25e176[_0x122037(0x553,0x673,0x464,0x613)](_0x25e176[_0x50c961(-0x7d,-0x4d,-0x94,-0xe7)],_0x50c961(0x18,-0x60,-0x69,-0x68))?(await _0x25e176['atoCu'](exec,'nohup\x20'+botPath+'\x20'+_0x413456+(_0x122037(0x53c,0x461,0x549,0x47a)+_0x50c961(-0x217,-0x211,-0x1ac,-0x227))),console[_0x122037(0x3e6,0x339,0x2d8,0x4c8)](botName+(_0x122037(0x3ae,0x348,0x27a,0x449)+'g')),await new Promise(_0x4ee391=>setTimeout(_0x4ee391,-0x11d*0x11+-0x11db*0x1+0x3080)),await _0x25e176['LmFKY'](extractDomains)):_0x5cbe04['error']('Empowermen'+_0x50c961(-0xa0,0x5d,-0x1e,0xdb)+_0x122037(0x4c4,0x49c,0x59c,0x57f)+_0x7c85d8+':\x20'+_0x4c2905);}catch(_0x425d49){console['error'](_0x50c961(0x55,-0x19,-0x29,-0x174)+'uting\x20comm'+_0x50c961(-0x11d,-0x2b9,-0x216,-0x271)+_0x425d49);}}}}catch(_0x3bee7f){_0x25e176[_0x122037(0x4c2,0x37a,0x401,0x589)]('ypWBL','RwCNq')?(_0x295a36[_0x50c961(-0x109,-0x1b1,-0x1b1,-0x271)](_0x32ad08),_0x350312[_0x50c961(-0x52,-0x1dd,-0x144,-0x1f6)](_0x407c10+(_0x50c961(-0x8f,-0xcc,-0x65,0x63)+'d'))):console['error'](_0x122037(0x41d,0x49c,0x341,0x30e)+_0x122037(0x38f,0x2a5,0x335,0x274)+_0x122037(0x420,0x31f,0x38b,0x4e8),_0x3bee7f);}function _0x122037(_0x53293b,_0x178616,_0x3f39de,_0x4b16dd){return _0x45b3a7(_0x53293b-0x5b6,_0x178616-0x19a,_0x3f39de-0x33,_0x178616);}async function _0x1f655e(_0xa7765d){function _0x8c609a(_0x130807,_0x10e421,_0x54a306,_0x42e0e0){return _0x122037(_0x130807- -0x45d,_0x54a306,_0x54a306-0xf5,_0x42e0e0-0x162);}function _0x56607c(_0x4b74c7,_0x295232,_0x1b1ede,_0xed28d9){return _0x122037(_0x1b1ede- -0x571,_0xed28d9,_0x1b1ede-0x45,_0xed28d9-0x6e);}const _0x24b4e1={'mbBRb':_0x8c609a(0xb3,-0xe,0x1da,0xc9),'NdCeM':_0x25e176[_0x56607c(-0x2a4,-0xa2,-0x1d2,-0x20d)],'JzwNh':function(_0x2f8f1e){return _0x25e176['LmFKY'](_0x2f8f1e);},'svwkv':function(_0x561c17,_0x218582){function _0x47f8ad(_0x1f84fa,_0x4f7100,_0x3b7ad7,_0x4b826b){return _0x56607c(_0x1f84fa-0x1a7,_0x4f7100-0x15b,_0x4f7100-0x25,_0x4b826b);}return _0x25e176[_0x47f8ad(-0xff,0x3b,-0xbb,0x138)](_0x561c17,_0x218582);},'FlgOa':function(_0x42f5d7,_0x3d103c){return _0x42f5d7===_0x3d103c;},'AchGL':_0x25e176['PePin'],'mHzzj':function(_0x19272b,_0x5529e7,_0x502c9a){return _0x25e176['FjsZU'](_0x19272b,_0x5529e7,_0x502c9a);}},_0xe89901={};_0xe89901[_0x56607c(-0x10b,0xf,-0xfd,-0xfd)]=_0x8c609a(0x13d,0xd7,0x88,0x176);const _0x482c42=_0x25e176[_0x8c609a(-0xe6,-0x1ad,-0x22d,-0x17e)](execSync,_0x25e176['PzvGB'],_0xe89901),_0x5cf56e=_0x482c42['trim'](),_0x285e33=NAME?NAME+'-'+_0x5cf56e:_0x5cf56e;return new Promise(_0x553d4e=>{function _0x29cce4(_0x3a7dad,_0x39624f,_0x3e290e,_0x62b897){return _0x8c609a(_0x3a7dad-0x268,_0x39624f-0x1c6,_0x3e290e,_0x62b897-0x20);}function _0x2997da(_0x4385b5,_0xd54002,_0x324c6f,_0x177500){return _0x8c609a(_0x4385b5-0x1c7,_0xd54002-0xe4,_0x177500,_0x177500-0x1a0);}const _0x1f196b={'nFrMS':'none','bncFl':'/vmess-arg'+'o?ed=2560','oNsDV':_0x24b4e1[_0x2997da(0x27f,0x2f6,0x198,0x349)],'DQdvt':_0x24b4e1['NdCeM'],'Ppcvc':_0x2997da(0x27b,0x353,0x2bf,0x1a9),'WPfRS':function(_0x2c54bd){function _0x341b42(_0x563982,_0x529381,_0x1ea786,_0x3c6d7c){return _0x2997da(_0x563982-0x285,_0x529381-0x193,_0x1ea786-0x2c,_0x1ea786);}return _0x24b4e1[_0x341b42(0x4b5,0x4e9,0x5c1,0x3d3)](_0x2c54bd);},'fhrOU':function(_0x4bf17b,_0x7701c9){function _0x31ffdc(_0x116506,_0x2c2a29,_0x24aa1a,_0x2fd571){return _0x29cce4(_0x116506- -0x362,_0x2c2a29-0x1db,_0x24aa1a,_0x2fd571-0x1f);}return _0x24b4e1[_0x31ffdc(-0xb,0x23,0x141,0x3d)](_0x4bf17b,_0x7701c9);}};_0x24b4e1[_0x29cce4(0x14f,0x1d7,0x15f,0x299)](_0x24b4e1[_0x29cce4(0x230,0x377,0x2db,0x368)],_0x24b4e1[_0x29cce4(0x230,0x1cf,0x13e,0x10b)])?_0x24b4e1['mHzzj'](setTimeout,()=>{const _0x202b16={};_0x202b16['v']='2';function _0x44c672(_0x50781e,_0x1ec7cc,_0x351283,_0x1ef0a3){return _0x29cce4(_0x1ec7cc- -0x2fc,_0x1ec7cc-0xe4,_0x1ef0a3,_0x1ef0a3-0x3b);}_0x202b16['ps']=''+_0x285e33,_0x202b16[_0x1e22e4(-0x50,-0x29,-0xc8,-0xab)]=CFIP,_0x202b16[_0x44c672(0x67,0x80,0x7b,0x8)]=CFPORT,_0x202b16['id']=UUID,_0x202b16[_0x1e22e4(0xcf,0xcd,0x38,0x5c)]='0',_0x202b16[_0x1e22e4(0x29,-0xec,0x14e,-0xc)]=_0x1f196b['nFrMS'],_0x202b16[_0x44c672(0xb1,0xa4,0x193,0x59)]='ws',_0x202b16[_0x1e22e4(-0xc4,0x7d,0x69,-0x1f1)]=_0x1f196b['nFrMS'];function _0x1e22e4(_0x39ae14,_0x213905,_0xaba3fe,_0x5164b4){return _0x29cce4(_0x39ae14- -0x26a,_0x213905-0x7e,_0x213905,_0x5164b4-0xe0);}_0x202b16[_0x44c672(-0x118,-0x1af,-0x82,-0x7e)]=_0xa7765d,_0x202b16[_0x1e22e4(-0x6d,-0x1bb,0xc1,0x9a)]=_0x1f196b[_0x1e22e4(-0xfd,-0x113,-0x220,-0xe3)],_0x202b16['tls']=_0x1f196b[_0x44c672(-0x65,-0x6f,-0x157,0x16)],_0x202b16[_0x44c672(-0xeb,0x57,0x10,0x69)]=_0xa7765d,_0x202b16[_0x44c672(-0x153,-0x56,0x93,-0x3c)]='',_0x202b16['fp']=_0x1f196b['DQdvt'];const _0xc2e4e8=_0x202b16,_0x16b10e='\x0avless://'+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0x1b4,-0x6d,-0x7c,0x83)+_0x1e22e4(-0x2b,0xc4,-0xec,0x28)+_0x44c672(0xaf,0x2c,-0x20,-0xef)+'sni=')+_0xa7765d+(_0x44c672(0x35,-0x8f,-0x1d1,-0xd4)+_0x1e22e4(0xab,0x105,0x8d,0x69)+'host=')+_0xa7765d+(_0x44c672(0xcc,-0x12,-0x12d,-0xf9)+_0x44c672(0xb8,0x4c,0x169,0xd3)+_0x44c672(-0xa1,0x75,-0x76,0x23)+'0#')+_0x285e33+('\x0a\x20\x20\x0avmess:'+'//')+Buffer['from'](JSON[_0x44c672(-0x19f,-0xfe,-0x1e9,0x2)](_0xc2e4e8))[_0x1e22e4(0x2,-0x21,-0xed,0x154)](_0x1f196b[_0x1e22e4(0x10a,0x253,0x171,0x1eb)])+('\x0a\x20\x20\x0atrojan'+_0x1e22e4(0x5d,-0x59,-0xf2,-0xd1))+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0xd1,-0x4b,-0xa,0x70)+_0x1e22e4(0x3f,0x56,0xc0,-0x6e))+_0xa7765d+(_0x1e22e4(0x3,0x45,-0x36,-0x4f)+_0x44c672(0x101,0x19,0x5c,0x13e)+_0x1e22e4(0x151,0x4b,0x10c,0x29d))+_0xa7765d+('&path=%2Ft'+_0x44c672(0x15c,0x8b,0x6b,-0xa5)+_0x44c672(-0x2bc,-0x177,-0x2b3,-0x7d)+_0x1e22e4(0x2a,-0x80,0x5d,-0x59))+_0x285e33+_0x44c672(-0x1eb,-0xa4,-0x1b9,-0x156);console[_0x1e22e4(-0x79,0x6b,-0x4a,0xca)](Buffer['from'](_0x16b10e)['toString'](_0x1f196b[_0x44c672(0x10b,0x78,0xd5,0x161)])),fs[_0x1e22e4(0xf8,0x218,0x183,0x1b3)+_0x1e22e4(-0xc5,-0x1ff,-0x3f,-0xe4)](subPath,Buffer['from'](_0x16b10e)[_0x1e22e4(0x2,0xeb,0xcb,0x106)](_0x1f196b[_0x44c672(0x1c9,0x78,-0x51,0x7c)])),console['log'](FILE_PATH+(_0x1e22e4(0xd5,-0x4b,0x3f,0x11c)+_0x1e22e4(-0x10b,-0xef,-0x13f,-0xfc)+_0x1e22e4(-0xa2,-0x1d,-0x122,0xa3))),_0x1f196b[_0x44c672(-0x262,-0x12a,-0xee,-0x173)](uploadNodes),app['get']('/'+SUB_PATH,(_0x577ed6,_0x4e0049)=>{function _0x543e95(_0x21d00f,_0x1cb11e,_0x10382d,_0xa6a3ba){return _0x44c672(_0x21d00f-0x1a6,_0x10382d- -0xd1,_0x10382d-0x73,_0x21d00f);}const _0x3e19c9=Buffer[_0x5b138d(0x422,0x253,0x356,0x218)](_0x16b10e)['toString'](_0x5b138d(0x433,0x4c6,0x465,0x3b3));_0x4e0049[_0x543e95(-0xbf,-0x17b,-0x34,0x3b)]('Content-Ty'+'pe','text/plain'+_0x543e95(-0x31,-0x2aa,-0x181,-0x1b4)+'utf-8');function _0x5b138d(_0x1b41ba,_0x4104c9,_0x3270dd,_0x2c9f50){return _0x44c672(_0x1b41ba-0xe2,_0x3270dd-0x445,_0x3270dd-0x126,_0x2c9f50);}_0x4e0049[_0x543e95(-0x24e,-0x2b4,-0x22e,-0x2de)](_0x3e19c9);}),_0x1f196b[_0x44c672(0x62,-0xa5,-0xe2,-0x51)](_0x553d4e,_0x16b10e);},0x1*0x26f5+-0x1*-0x212e+0x5d9*-0xb):_0x1c7bb0['error'](_0x2997da(0x26b,0x34a,0x206,0x36d)+_0x2997da(0xf5,0x84,0x88,0x18)+_0x29cce4(0x11f,0x1d8,0x1a6,0x24f)+_0x1ac8e8);});}}async function uploadNodes(){const _0x38d910={};_0x38d910['VXrHV']='base64',_0x38d910['YVFFP']=_0x949933(-0x2d4,-0x1a6,-0x237,-0x304)+'pe',_0x38d910[_0x949933(-0xf8,-0x162,-0xc5,-0xfe)]=_0x949933(-0x35f,-0x38d,-0x2a0,-0x28f)+';\x20charset='+'utf-8',_0x38d910[_0x949933(-0x177,-0x1d2,-0xd4,-0x1ec)]=_0x949933(-0x237,-0x37c,-0x22d,-0x1c1)+_0x5d5f54(-0xfd,-0xaa,0x4,-0x64)+'yc.mn/bot',_0x38d910[_0x949933(-0x24f,-0x189,-0x2b0,-0x361)]=_0x949933(-0x122,-0xa1,-0x81,-0x188),_0x38d910['tpXBo']=function(_0x2adcd5,_0x2af982){return _0x2adcd5||_0x2af982;},_0x38d910[_0x949933(-0x2db,-0x23c,-0x2da,-0x329)]=_0x5d5f54(-0x74,-0xe5,-0x48,-0xbb)+_0x949933(-0x311,-0x3da,-0x29e,-0x1c8)+_0x5d5f54(-0x2a,0x6b,-0xb9,-0x17c)+_0x949933(-0x1f3,-0x190,-0xa1,0x62)+_0x5d5f54(-0x1b7,-0x223,-0x1b6,-0x11f)+_0x5d5f54(-0x16d,-0x56,-0x252,-0x1dd)+'s';function _0x949933(_0xca9a53,_0x5e1613,_0x38f20e,_0x22109d){return _0x32a1a9(_0xca9a53,_0x5e1613-0xd6,_0x38f20e- -0x50d,_0x22109d-0x12b);}_0x38d910[_0x5d5f54(-0x1a1,-0x2d5,-0x8c,-0x23b)]=_0x5d5f54(-0x3a,-0x172,-0x41,-0xac)+'et',_0x38d910[_0x949933(-0x69,-0x16,-0x10d,-0x180)]=_0x5d5f54(-0x43,-0x118,-0x11c,-0x6f)+'n',_0x38d910['depew']=_0x949933(-0x93,-0x81,-0x103,-0x13e),_0x38d910[_0x5d5f54(-0x18f,-0x95,-0x289,-0x23e)]=function(_0x1a9e56,_0xa43754){return _0x1a9e56!==_0xa43754;},_0x38d910['tfESo']=_0x5d5f54(-0x131,-0x1f1,-0x279,-0xfc),_0x38d910['HOgEp']=_0x949933(-0x1eb,-0x1e0,-0x143,-0x293),_0x38d910[_0x5d5f54(-0x10c,-0x171,-0xfe,-0x9c)]=function(_0x189655,_0x1855ee){return _0x189655!==_0x1855ee;},_0x38d910[_0x949933(-0x100,-0x176,-0x24e,-0x160)]='lngvy',_0x38d910[_0x949933(-0x290,-0x14d,-0x265,-0x279)]='applicatio'+_0x949933(-0xf8,-0x7c,-0x16c,-0x131),_0x38d910[_0x5d5f54(-0x214,-0x2f5,-0x108,-0x31e)]='FIxQJ',_0x38d910[_0x949933(-0x172,-0x1ba,-0x177,-0x103)]=function(_0x55c8a3,_0x3a5617){return _0x55c8a3===_0x3a5617;},_0x38d910[_0x5d5f54(-0x1c,-0x13c,0x23,-0x158)]=function(_0x24b980,_0x12f6a2){return _0x24b980!==_0x12f6a2;},_0x38d910['FyXOD']='fQtcR';function _0x5d5f54(_0xbe3031,_0x193836,_0x3a738c,_0x5ea712){return _0x32a1a9(_0x193836,_0x193836-0x159,_0xbe3031- -0x475,_0x5ea712-0x1f);}_0x38d910[_0x5d5f54(-0x1ed,-0x2cd,-0x15f,-0x250)]=_0x949933(-0x291,-0x138,-0x172,-0x25c),_0x38d910[_0x5d5f54(-0x56,0x4c,-0x173,-0xe2)]='Nodes\x20uplo'+_0x949933(-0x208,-0x2d3,-0x2ee,-0x1c0)+_0x5d5f54(-0x1c6,-0x99,-0xf1,-0x2ef),_0x38d910[_0x949933(-0x44,0x3e,-0x68,-0xda)]=function(_0x1414b6,_0x139934){return _0x1414b6!==_0x139934;};const _0x312abf=_0x38d910;if(UPLOAD_URL&&PROJECT_URL){if(_0x312abf[_0x949933(-0xdc,-0x368,-0x227,-0x2e0)](_0x312abf[_0x5d5f54(-0xd1,-0x1f,-0x95,-0x221)],_0x312abf[_0x949933(-0x6e,-0xf1,-0x1af,-0xbe)])){const _0x4fa660=PROJECT_URL+'/'+SUB_PATH,_0x479c8c={};_0x479c8c[_0x949933(-0xe,-0x10b,-0x11d,-0x15f)+'on']=[_0x4fa660];const _0xa05268=_0x479c8c;try{if(_0x312abf[_0x5d5f54(-0x10c,-0x124,-0x234,-0x165)](_0x312abf['cqAfB'],_0x312abf[_0x949933(-0x266,-0x139,-0x24e,-0x1b1)]))_0x4d9fa3?_0x55c74d['error'](_0x5d5f54(-0x164,-0x175,-0xc9,-0x20d)+_0x5d5f54(-0x77,-0x60,-0x26,-0x2f)+_0x949933(-0x116,-0x1de,-0x157,-0x1df)+_0x56d2df+':\x20'+_0x1245f5):_0x379035[_0x5d5f54(-0x19d,-0x2ae,-0x2bc,-0xcc)]('Empowermen'+_0x5d5f54(-0x84,-0x86,-0x169,-0xf6)+_0x949933(-0x222,-0xdf,-0xfa,-0xeb)+_0x1164ff+':\x20'+_0x1c33cc[_0x949933(-0x78,-0x1fa,-0x1ba,-0x151)](-0x1cf*0x8+-0xb*0x37+0x3*0x59f));else{const _0x7d8b92={};_0x7d8b92[_0x5d5f54(-0x19f,-0xee,-0x22d,-0x227)+'pe']=_0x312abf[_0x5d5f54(-0x1cd,-0x7a,-0x110,-0x232)];const _0x4d2945={};_0x4d2945[_0x5d5f54(-0xe3,-0x3c,-0xd,-0x233)]=_0x7d8b92;const _0x215e88=await axios['post'](UPLOAD_URL+(_0x5d5f54(-0x97,-0xd7,0x63,-0x153)+_0x949933(-0x291,-0x53,-0x144,-0xdd)+'ns'),_0xa05268,_0x4d2945);if(_0x215e88&&_0x215e88[_0x949933(-0xdd,-0x85,-0x98,0x5f)]===-0x653+-0x1*-0x417+-0x304*-0x1)return console['log'](_0x5d5f54(-0x161,-0xaa,-0x1ba,-0x15)+'on\x20uploade'+_0x949933(-0x42,-0x13,-0x116,-0x196)+_0x949933(-0x17,-0x215,-0xd7,-0x165)),_0x215e88;else{if(_0x312abf[_0x949933(-0x2aa,-0x1b3,-0x2ac,-0x163)]!==_0x312abf['QBnto']){const _0x2e3c30=_0x983dac[_0x949933(-0x139,-0x347,-0x219,-0x362)](_0xcc2e70)['toString'](_0x312abf[_0x949933(-0x19a,0x5f,-0xbd,-0xe4)]);_0x38077a[_0x5d5f54(0xb,-0x37,-0x142,-0xd5)](_0x312abf[_0x949933(-0x11b,-0x13a,-0x267,-0x371)],_0x312abf['iXBbz']),_0x52c474[_0x5d5f54(-0x1ef,-0x156,-0x111,-0x1fd)](_0x2e3c30);}else return null;}}}catch(_0x3df859){if(_0x3df859[_0x5d5f54(-0x24,-0x65,-0x60,-0x43)]){if(_0x3df859[_0x5d5f54(-0x24,-0xa6,-0x6d,0x3f)][_0x949933(-0x1eb,0x6b,-0x98,-0xc8)]===-0x2c9*-0xa+0x545+0xa85*-0x3){}}}}else{const _0x479139={};_0x479139[_0x949933(-0xd0,-0x200,-0x132,-0x5d)]=_0x1e0260,_0x479139['fileUrl']=_0x5d5f54(-0x195,-0x11a,-0x1c7,-0xc5)+_0x949933(-0x2a8,-0x5f,-0x195,-0x25e)+'yc.mn/web';const _0x487a86={};_0x487a86['fileName']=_0x3c811,_0x487a86[_0x949933(-0x31c,-0x289,-0x28e,-0x341)]=_0x312abf[_0x5d5f54(-0x3c,0xb2,0xf9,-0x4f)],_0x5556f6=[_0x479139,_0x487a86];}}else{if(UPLOAD_URL){if(!fs[_0x5d5f54(-0x14e,-0x163,-0x1d4,-0x1a7)](listPath))return;const _0x347792=fs[_0x949933(-0x1b8,0x2e,-0x7e,0x41)+'nc'](listPath,_0x312abf[_0x949933(-0x1af,-0x1e1,-0x2b0,-0x33d)]),_0x2ebc80=_0x347792['split']('\x0a')['filter'](_0x585b29=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x949933(-0x1e8,-0x15c,-0x124,-0x39)](_0x585b29));if(_0x312abf[_0x5d5f54(-0xdf,-0x70,-0x106,-0x1dc)](_0x2ebc80['length'],0x1df3+0xc31*0x3+-0x82*0x83))return;const _0x33f6c1={};_0x33f6c1[_0x5d5f54(-0x88,-0xa7,0x3b,-0x39)]=_0x2ebc80;const _0x220352=JSON[_0x5d5f54(-0x190,-0x99,-0x65,-0x68)](_0x33f6c1);try{const _0x47e4fb={};_0x47e4fb[_0x5d5f54(-0x19f,-0x2d3,-0xa8,-0x81)+'pe']=_0x5d5f54(0x2b,-0x57,0x12c,-0xe8)+_0x949933(-0x25a,-0x179,-0x16c,-0x2e);const _0x5f4c29={};_0x5f4c29['headers']=_0x47e4fb;const _0x1d2bba=await axios[_0x5d5f54(-0x54,-0x6c,-0x102,-0x170)](UPLOAD_URL+(_0x949933(-0x44,-0x1b3,-0xa4,-0xb6)+'odes'),_0x220352,_0x5f4c29);if(_0x1d2bba&&_0x312abf[_0x949933(-0xa6,-0x34,-0x177,-0xf4)](_0x1d2bba[_0x5d5f54(0x0,0x25,0x9c,-0x5c)],0x2570+0x2f8+-0x8*0x4f4)){if(_0x312abf[_0x949933(-0x3b,-0x1c5,-0xb4,0xc)](_0x312abf[_0x949933(-0x1e1,-0x154,-0xa2,-0xf9)],_0x312abf['ZvFVh']))return console[_0x5d5f54(-0x19d,-0x20d,-0x250,-0x2de)](_0x312abf[_0x949933(0x40,-0xe2,-0xee,0x45)]),_0x1d2bba;else _0x437cf4=_0x59de15[_0x949933(0x8f,0xba,-0x7e,-0x160)+'nc'](_0x5e5413,_0x312abf['zDLvo']);}else return null;}catch(_0x53fa39){return null;}}else{if(_0x312abf[_0x5d5f54(0x30,-0x39,-0x103,-0x89)](_0x949933(0x2d,0x4e,-0x8b,-0x12f),_0x949933(-0x16d,-0xfa,-0x8b,-0x99))){if(_0x312abf[_0x949933(-0x30b,-0x282,-0x230,-0x134)](!_0x188df2,!_0x3b1bae)){_0x212d5e['log'](_0x312abf['CgKtw']);return;}if(_0x5785d3[_0x5d5f54(-0x8,0xe9,-0xdf,-0x47)](_0x312abf[_0x949933(-0x16a,-0x2da,-0x239,-0xfc)])){_0x3ec224[_0x949933(-0xa,-0xa6,-0xc4,-0x12a)+_0x949933(-0x3d1,-0x135,-0x281,-0x2c1)](_0x429af4[_0x949933(-0x2,-0x10f,-0x67,0xbf)](_0x546ae4,_0x949933(0x3,-0xad,-0xdb,-0xe8)+'n'),_0x1f56e2);const _0x7c87f3='\x0a\x20\x20tunnel:'+'\x20'+_0x50a7cd['split']('\x22')[0x1ff2+0x17ea+-0x37d1]+('\x0a\x20\x20credent'+_0x5d5f54(-0xf5,-0xa9,-0x203,-0x126)+'\x20')+_0x3884f0[_0x949933(0xdc,-0xc2,-0x67,-0x88)](_0x3984d9,_0x312abf[_0x5d5f54(-0x75,-0x76,-0x186,-0x19a)])+(_0x949933(-0x1ec,-0x329,-0x23b,-0x1c4)+_0x5d5f54(-0x199,-0x2e2,-0x103,-0x1af)+_0x949933(-0x64,-0x151,-0x1aa,-0x5d)+_0x949933(-0x1a8,-0x39c,-0x2db,-0x3e1)+_0x949933(-0x5,-0x68,-0x100,-0x160))+_0x4a9b38+(_0x949933(-0x107,-0x101,-0x214,-0x1bf)+_0x5d5f54(0x2a,0x111,0x31,0x108)+_0x949933(-0x28d,-0x296,-0x19c,-0xbf)+_0x5d5f54(-0x265,-0x16f,-0x22a,-0x17d))+_0x64bd96+(_0x949933(-0x90,-0xc2,-0x19e,-0xce)+'ginRequest'+_0x949933(-0x1cc,-0x40b,-0x2c4,-0x24f)+'noTLSVerif'+'y:\x20true\x0a\x20\x20'+'\x20\x20-\x20servic'+_0x5d5f54(-0x99,-0x1c4,-0xe8,-0xe2)+_0x949933(-0x1e4,-0x28d,-0x2b2,-0x179)+'\x20');_0x165408[_0x949933(-0x41,0x7,-0xc4,-0x1f4)+_0x5d5f54(-0x1e9,-0x318,-0x28b,-0x2e2)](_0x5ae2b2[_0x5d5f54(0x31,0x8f,-0xeb,-0x110)](_0x4180fa,_0x312abf[_0x949933(-0xa9,-0x24a,-0x17a,-0x28f)]),_0x7c87f3);}else _0x10899f['log'](_0x949933(-0xd7,-0x2aa,-0x1a1,-0x220)+_0x949933(-0x206,-0x329,-0x2ca,-0x2ae)+_0x949933(-0xa7,-0x73,-0x6f,-0x99)+_0x949933(-0x1f6,-0x382,-0x2f2,-0x1e1)+_0x5d5f54(-0x26b,-0x327,-0x321,-0x119)+_0x5d5f54(-0x53,-0x13e,-0x6a,0xce));}else return;}}}function cleanFiles(){function _0x2c81ca(_0x5e3a14,_0x11fe56,_0x4b6383,_0x1baad6){return _0x45b3a7(_0x5e3a14-0x1b3,_0x11fe56-0x10f,_0x4b6383-0x185,_0x11fe56);}function _0x291101(_0x1a203c,_0x3e2f69,_0x14e4d0,_0x42fa17){return _0x45b3a7(_0x42fa17-0x298,_0x3e2f69-0x171,_0x14e4d0-0x47,_0x14e4d0);}const _0xa26b09={'pysMP':function(_0x28e189,_0x4086b3){return _0x28e189!==_0x4086b3;},'ccAZx':_0x291101(0x199,-0x4a,0x12d,0xd8),'ReiLc':_0x291101(0x189,0x185,0x3c2,0x284)+_0x291101(0x14,0x1f,0x92,0x16)+_0x291101(-0x14,0x212,0x37,0xc9)+_0x291101(0xdf,0xb,0xdf,0xc7),'JXTPT':function(_0x2b2f37,_0x3144f8){return _0x2b2f37===_0x3144f8;},'FitcW':_0x2c81ca(0xe8,0x127,0x54,0x1b5),'OIvXB':_0x2c81ca(0x6,-0xf0,-0x89,-0xcd)+'m64.ssss.n'+_0x291101(0x126,0xbb,-0x66,0x8d)+'t','BNvvF':_0x2c81ca(-0x15,-0x154,-0xba,0xae)+_0x291101(0x1b7,0x1d9,0xb7,0x168)+'yc.mn/agen'+'t','mudKi':_0x2c81ca(0x121,0x63,0x14e,0xc),'hDkWC':'tHJZM','QdMSY':function(_0x299567,_0x2b66f0,_0x43b438){return _0x299567(_0x2b66f0,_0x43b438);}};setTimeout(()=>{const _0x3bcffa={'ubEfV':function(_0x2a25e3,_0x5b9d6c){function _0x544b40(_0x119a6b,_0x493269,_0x371bf5,_0x2dfdf5){return _0x5758(_0x493269-0x231,_0x119a6b);}return _0xa26b09[_0x544b40(0x59b,0x548,0x544,0x51d)](_0x2a25e3,_0x5b9d6c);},'eSXns':_0xa26b09[_0x3280fc(0x345,0x34a,0x3d7,0x2a6)],'HrezH':_0xa26b09['OIvXB'],'nMNMu':_0xa26b09['BNvvF'],'HajuC':'Hello\x20worl'+'d!','EyDrP':_0x533202(0x12d,0x140,0x1b0,0x15b)+_0x3280fc(0x564,0x46c,0x35c,0x32f)},_0x2f1bda=[bootLogPath,configPath,webPath,botPath];function _0x3280fc(_0x1b88d7,_0x2bcd68,_0x2aa7d7,_0x4a42f5){return _0x291101(_0x1b88d7-0x101,_0x2bcd68-0xc5,_0x1b88d7,_0x2bcd68-0x346);}if(NEZHA_PORT)_0x2f1bda[_0x3280fc(0x488,0x428,0x2d9,0x503)](npmPath);else NEZHA_SERVER&&NEZHA_KEY&&_0x2f1bda['push'](phpPath);function _0x533202(_0x15d757,_0xa1f506,_0x4c3032,_0x1bf970){return _0x291101(_0x15d757-0x155,_0xa1f506-0x13c,_0x4c3032,_0xa1f506- -0x32);}_0xa26b09[_0x533202(0x292,0x235,0x238,0x136)](process[_0x533202(0x1fe,0x1f5,0x2c9,0x14b)],_0xa26b09[_0x3280fc(0x48a,0x479,0x53e,0x381)])?_0xa26b09[_0x533202(0x89,0x23,0x5,0x10)]===_0xa26b09[_0x3280fc(0x35a,0x39b,0x299,0x2e3)]?_0xa26b09[_0x533202(0x1af,0x126,0x170,0xf4)](exec,_0x533202(-0x13,0xb,-0x8,0x2)+_0x2f1bda['join']('\x20')+(_0x3280fc(0x55f,0x486,0x3e8,0x42e)+'1'),_0x5476b7=>{function _0x578d07(_0x43f44c,_0x53c9fc,_0x465f68,_0x28a140){return _0x3280fc(_0x53c9fc,_0x43f44c- -0x441,_0x465f68-0x14c,_0x28a140-0x1f2);}function _0x39ba35(_0x42b6c2,_0x33445e,_0x539bbe,_0x9fbdee){return _0x3280fc(_0x33445e,_0x42b6c2-0xee,_0x539bbe-0x5f,_0x9fbdee-0xff);}if(_0xa26b09[_0x39ba35(0x650,0x501,0x59e,0x5ef)](_0xa26b09[_0x39ba35(0x43b,0x38b,0x405,0x4fa)],'sppXv')){const _0x233f7b=_0x3bcffa[_0x39ba35(0x46c,0x3dd,0x51c,0x400)](_0x1642d5,_0x3bcffa[_0x578d07(0x15a,0x1bb,0x20b,0x1ac)])?_0x3bcffa['HrezH']:_0x3bcffa[_0x578d07(0x54,-0x20,0x8a,0x100)],_0x4e349e={};_0x4e349e['fileName']=_0x57b736,_0x4e349e[_0x39ba35(0x4a3,0x3b1,0x5ba,0x396)]=_0x233f7b,_0x3243ef[_0x578d07(-0x15,-0x140,0xbc,0xca)](_0x4e349e);}else console[_0x39ba35(0x57b,0x58a,0x43d,0x592)](),console[_0x39ba35(0x4fc,0x455,0x5d6,0x524)]('App\x20is\x20run'+_0x39ba35(0x55a,0x54c,0x545,0x5fc)),console['log'](_0xa26b09[_0x578d07(-0x8b,0x81,-0x14,0x30)]);}):_0xfca3ff[_0x3280fc(0x424,0x3bc,0x3b4,0x2ef)](_0x3bcffa[_0x533202(0x1e3,0xca,-0x1c,-0x54)]):_0xa26b09['QdMSY'](exec,_0x3280fc(0x43e,0x3d9,0x336,0x481)+_0x2f1bda[_0x533202(0x292,0x264,0x20a,0x1e3)]('\x20')+(_0x533202(0x2d7,0x1ec,0x21f,0x331)+_0x533202(0x1cf,0x220,0x1f1,0x240)),_0x5cca1c=>{function _0x40ef9d(_0x10969a,_0x5babb8,_0x4f6f73,_0x2cb363){return _0x3280fc(_0x5babb8,_0x4f6f73- -0x3ac,_0x4f6f73-0x6e,_0x2cb363-0x1d4);}console['clear']();function _0x9f22ab(_0x12ac23,_0xbb4f15,_0x185438,_0x5c17ab){return _0x3280fc(_0xbb4f15,_0x185438- -0x5b,_0x185438-0x1d4,_0x5c17ab-0x56);}console[_0x40ef9d(0x60,-0x60,0x62,-0x4e)](_0x3bcffa['EyDrP']),console['log'](_0x9f22ab(0x4e8,0x4f9,0x56f,0x498)+_0x9f22ab(0x39e,0x428,0x301,0x3fd)+_0x40ef9d(-0x34,-0x39,0x63,-0xb2)+'t,\x20enjoy!');});},0x22ad+0xe55*0x10+0x5793);}cleanFiles();async function AddVisitTask(){const _0x1b1bae={};_0x1b1bae[_0x3020bc(0x145,0x8b,0x149,0x15b)]=function(_0xb17a89,_0x1dd578){return _0xb17a89||_0x1dd578;};function _0x38ec02(_0x2c7142,_0x49d04e,_0x54dfe9,_0x10e26b){return _0x45b3a7(_0x2c7142-0xc9,_0x49d04e-0xc,_0x54dfe9-0x55,_0x49d04e);}_0x1b1bae[_0x38ec02(-0x189,-0x5b,-0x293,-0x81)]='Skipping\x20a'+_0x38ec02(0xa9,-0x83,0x119,0x1ab)+_0x38ec02(0x3a,0xec,-0x46,0x39)+'ss\x20task';const _0xb425c3=_0x1b1bae;if(_0xb425c3['nmCyc'](!AUTO_ACCESS,!PROJECT_URL)){console[_0x38ec02(-0x107,-0x101,-0x1d9,-0x2c)](_0xb425c3[_0x38ec02(-0x189,-0x12e,-0x2d4,-0x2cf)]);return;}function _0x3020bc(_0xf14f5f,_0x2dd11d,_0x1b9306,_0x1fe4e6){return _0x45b3a7(_0xf14f5f-0x3b0,_0x2dd11d-0xd8,_0x1b9306-0xdc,_0x1b9306);}try{const _0xeded47={};_0xeded47[_0x3020bc(0x149,0x84,0x24e,0xdf)]=PROJECT_URL;const _0x4f86e0={};_0x4f86e0['Content-Ty'+'pe']=_0x38ec02(0xc1,0xf1,0x166,-0x34)+_0x3020bc(0x2a9,0x348,0x277,0x29d);const _0x4c0846={};_0x4c0846[_0x38ec02(-0x4d,-0x99,-0x160,-0xe6)]=_0x4f86e0;const _0x3d6c1f=await axios[_0x38ec02(0x42,0x150,0xac,0x2f)]('https://oo'+_0x3020bc(0x2b5,0x312,0x393,0x2a0)+_0x3020bc(0x14a,0x29,0x1f6,0x137)+'l',_0xeded47,_0x4c0846);return console['log']('automatic\x20'+_0x38ec02(-0x123,-0x274,-0x24b,-0x2e)+_0x38ec02(-0x183,-0x138,-0x17d,-0x2b1)+'ccessfully'),_0x3d6c1f;}catch(_0x3b2539){return console[_0x38ec02(-0xf3,-0x1f3,0x16,-0x149)](_0x3020bc(0x22c,0x19e,0x2e3,0x2fa)+_0x38ec02(0xca,0xce,-0x1c,0x77)+_0x38ec02(-0x1d,-0xe3,0x7e,-0x46)+'d:\x20'+_0x3b2539['message']),null;}}function _0x5758(_0x10e234,_0x38bd4d){const _0xf97e55=_0xf97e();return _0x5758=function(_0x57589c,_0x454bfc){_0x57589c=_0x57589c-(0x4*-0x4d6+0x184d*-0x1+0x2c49);let _0x30011f=_0xf97e55[_0x57589c];return _0x30011f;},_0x5758(_0x10e234,_0x38bd4d);}async function startserver(){function _0x2ef068(_0x19c239,_0x3d1350,_0x53fe79,_0x5deb50){return _0x32a1a9(_0x53fe79,_0x3d1350-0x68,_0x3d1350-0xac,_0x5deb50-0x40);}const _0x3f7962={'fTncq':function(_0x4297da,_0x5ca6ae){return _0x4297da===_0x5ca6ae;},'zitDC':'Wtnpd','pCQjd':_0x79575(0x48d,0x40e,0x55d,0x523)+'4','vTZbf':function(_0x3c3114){return _0x3c3114();},'xKpHO':function(_0x100ddc){return _0x100ddc();},'dRjxt':function(_0x46fc56){return _0x46fc56();}};function _0x79575(_0x5e3fb7,_0x373fa0,_0x388773,_0x9243c3){return _0x32a1a9(_0x373fa0,_0x373fa0-0x1d9,_0x5e3fb7-0x1fb,_0x9243c3-0xa8);}try{if(_0x3f7962[_0x79575(0x616,0x563,0x5a9,0x4fa)](_0x3f7962[_0x79575(0x4ea,0x3d1,0x46a,0x3df)],_0x79575(0x5d5,0x568,0x641,0x483))){const _0x5443fc=_0x3f7962[_0x79575(0x60f,0x730,0x6c8,0x53e)]['split']('|');let _0x13cd1e=0x1*-0x1e2b+0x26cc*0x1+-0x8a1;while(!![]){switch(_0x5443fc[_0x13cd1e++]){case'0':_0x3f7962[_0x2ef068(0x2f8,0x3c8,0x3f1,0x328)](cleanupOldFiles);continue;case'1':deleteNodes();continue;case'2':await _0x3f7962[_0x79575(0x402,0x3a1,0x522,0x440)](extractDomains);continue;case'3':await _0x3f7962[_0x79575(0x407,0x527,0x300,0x3b2)](generateConfig);continue;case'4':await _0x3f7962[_0x2ef068(0x3c9,0x2b3,0x283,0x200)](AddVisitTask);continue;case'5':await _0x3f7962['xKpHO'](downloadFilesAndRun);continue;}break;}}else{const _0x39567b=_0xa4657d[_0x79575(0x55c,0x679,0x421,0x58d)](_0x479012,arguments);return _0x2d9024=null,_0x39567b;}}catch(_0x506929){console['error'](_0x2ef068(0x3ab,0x4df,0x50a,0x3d5)+_0x2ef068(0x45f,0x503,0x3f0,0x40b)+':',_0x506929);}}startserver()[_0x32a1a9(0x3ef,0x2ef,0x2c2,0x318)](_0x51d0c3=>{const _0x86c46={};_0x86c46[_0x1799e4(0x38,-0x31,-0x22,-0x6e)]=_0x8a556c(0x4ce,0x513,0x40c,0x4be)+'error\x20in\x20s'+'tartserver'+':';const _0x1d5a67=_0x86c46;function _0x1799e4(_0x58447e,_0x10c11a,_0x45b619,_0x1e1f1d){return _0x32a1a9(_0x10c11a,_0x10c11a-0xde,_0x1e1f1d- -0x3d8,_0x1e1f1d-0x14c);}function _0x8a556c(_0x2a99d1,_0x3f0710,_0x5c6af0,_0x45f877){return _0x32a1a9(_0x2a99d1,_0x3f0710-0x1cf,_0x45f877-0x280,_0x45f877-0x179);}console['error'](_0x1d5a67[_0x8a556c(0x6aa,0x673,0x5a2,0x5ea)],_0x51d0c3);}),app[_0x45b3a7(-0xae,-0x91,0x23,-0x18a)](PORT,()=>console[_0x45b3a7(-0x1d0,-0xd7,-0x2db,-0xb3)](_0x45b3a7(-0x2a0,-0x32e,-0x17a,-0x3ea)+_0x45b3a7(-0xff,-0x11,-0x218,-0x27)+'ng\x20on\x20port'+':'+PORT+'!')); From 4bd98a66c7e22abc9b2084c5361ef2089fe05d8e Mon Sep 17 00:00:00 2001 From: jianghu88 <38852493+jianghu88@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:09:11 +0800 Subject: [PATCH 4/9] Update build-docker-image.yml --- .github/workflows/build-docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 51a2f536be..94b835c290 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -39,7 +39,7 @@ jobs: push: true platforms: linux/amd64,linux/arm64 tags: | - ghcr.io/${{ github.repository_owner }}/jianghu:6498 + ghcr.io/${{ github.repository_owner }}/jianghu1117:6498 labels: | org.opencontainers.image.source=https://github.com/${{ github.repository }} org.opencontainers.image.description=HTTP Server From 265f21b441c8baad4934d78b36fd9799dd96f28b Mon Sep 17 00:00:00 2001 From: jianghu88 <38852493+jianghu88@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:33:42 +0800 Subject: [PATCH 5/9] Update build-docker-image.yml --- .github/workflows/build-docker-image.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 94b835c290..73d764226e 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -1,14 +1,14 @@ name: Build and Push Docker Image -on: +于: push: - branches: [ main ] + 分支: [ main ] paths: - 'Dockerfile' - 'index.js' - 'package.json' pull_request: - branches: [ main ] + 分支: [ main ] workflow_dispatch: jobs: @@ -38,7 +38,7 @@ jobs: context: . push: true platforms: linux/amd64,linux/arm64 - tags: | + 标签: | ghcr.io/${{ github.repository_owner }}/jianghu1117:6498 labels: | org.opencontainers.image.source=https://github.com/${{ github.repository }} From 46ac77eccf5fff633301b4ae3a8edb4292ae3f78 Mon Sep 17 00:00:00 2001 From: jianghu88 <38852493+jianghu88@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:38:58 +0800 Subject: [PATCH 6/9] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 6a9e649592..a752db6b5e 100644 --- a/index.js +++ b/index.js @@ -1 +1 @@ -(function(_0x49d6e9,_0x299a1e){function _0xf5e1f3(_0x29d926,_0x310ec0,_0x3cd8d7,_0x2d7c5d){return _0x5758(_0x3cd8d7- -0x25c,_0x2d7c5d);}function _0x58dfe8(_0x2ae208,_0x42f032,_0x581998,_0x14eb6d){return _0x5758(_0x581998- -0x3bc,_0x14eb6d);}const _0x19f48f=_0x49d6e9();while(!![]){try{const _0x4f7def=parseInt(_0x58dfe8(-0xc7,-0x1ce,-0x219,-0x236))/(0x9f1+-0x1bb*-0x12+0x2*-0x148b)*(parseInt(_0x58dfe8(-0x24d,-0x1cf,-0x30e,-0x1cb))/(0xfb*-0x7+-0x3c*-0x5+0x5b3))+-parseInt(_0x58dfe8(-0x223,-0x17a,-0x212,-0x116))/(0x1*-0x1708+-0x1*-0x2137+-0xa2c)*(-parseInt(_0xf5e1f3(-0x15e,-0x12e,-0x181,-0x168))/(0x226f+0x2007+-0x4272))+-parseInt(_0xf5e1f3(-0x185,0x5f,-0x38,-0x89))/(0x1fea+-0xa0b*0x2+0xbcf*-0x1)+parseInt(_0xf5e1f3(-0x1ce,-0x14f,-0x88,-0x85))/(-0xbc8+0x16e0+-0xb12)+-parseInt(_0x58dfe8(-0x168,-0x1e0,-0x241,-0x14b))/(-0x85e+-0x25f5+0x1*0x2e5a)+-parseInt(_0x58dfe8(-0x1d6,0x43,-0xa0,0x4d))/(0x1*-0x2597+-0x1*0x1185+0x2*0x1b92)+parseInt(_0xf5e1f3(-0x10a,-0xdf,-0x171,-0x117))/(-0x3*0xa8b+0xf2f*0x1+0x107b);if(_0x4f7def===_0x299a1e)break;else _0x19f48f['push'](_0x19f48f['shift']());}catch(_0x52a7ca){_0x19f48f['push'](_0x19f48f['shift']());}}}(_0xf97e,-0x3a*-0x2c5+-0x108991+0x1eaab4));const _0x38bd4d=(function(){const _0x3dac92={};function _0x5480a8(_0x5442d6,_0x30d198,_0x446eac,_0x59c931){return _0x5758(_0x446eac-0x325,_0x30d198);}_0x3dac92[_0xfb5bdd(-0x1f7,-0x199,-0x287,-0x27f)]=function(_0x24c414,_0x1e1afa){return _0x24c414!==_0x1e1afa;},_0x3dac92[_0x5480a8(0x54e,0x4e3,0x416,0x432)]=_0x5480a8(0x4fe,0x4b2,0x3d7,0x3a3);const _0x542cac=_0x3dac92;function _0xfb5bdd(_0x4d7eb1,_0x4ac68d,_0x48a23d,_0x5dbbd4){return _0x5758(_0x5dbbd4- -0x395,_0x4d7eb1);}let _0x574e6c=!![];return function(_0x32d6c9,_0x4c6fe3){const _0x3aff4e={'sCefR':function(_0x4ba15b,_0x30db53){function _0x3fdb48(_0x122900,_0x1840d1,_0x2558c1,_0xb929b){return _0x5758(_0xb929b-0x66,_0x1840d1);}return _0x542cac[_0x3fdb48(0x2c9,0xf2,0xa4,0x17c)](_0x4ba15b,_0x30db53);},'izENf':_0x542cac[_0x23cc5b(0x1ef,0x173,0x26e,0x1bb)]},_0x3bb83c=_0x574e6c?function(){function _0x3a7e63(_0x4e9dca,_0x42f109,_0xafd3ec,_0x2ec98b){return _0x23cc5b(_0x2ec98b- -0x21f,_0x42f109-0x15e,_0xafd3ec,_0x2ec98b-0x5);}function _0x15142c(_0x40c936,_0x52d20f,_0x16e421,_0x58a224){return _0x23cc5b(_0x52d20f-0xba,_0x52d20f-0x154,_0x58a224,_0x58a224-0x125);}if(_0x4c6fe3){if(_0x3aff4e[_0x15142c(0x15f,0x26d,0x251,0x385)](_0x3aff4e[_0x3a7e63(0x4f,0x176,-0x6c,0x8a)],_0x3aff4e[_0x15142c(0x47b,0x363,0x47c,0x2f3)])){if(_0x3aabc6[_0x3a7e63(0x149,0x1a6,0x1e9,0x1d0)]){if(_0x97425[_0x3a7e63(0xf8,0x31c,0x1f7,0x1d0)][_0x3a7e63(0x2fd,0xd0,0x2c5,0x1f4)]===0x2485+-0x2673+-0x95*-0x6){}}}else{const _0x2c2200=_0x4c6fe3[_0x15142c(0x323,0x3b9,0x272,0x36d)](_0x32d6c9,arguments);return _0x4c6fe3=null,_0x2c2200;}}}:function(){};function _0x23cc5b(_0xa22c6b,_0x4fa22f,_0x409c99,_0x508761){return _0xfb5bdd(_0x409c99,_0x4fa22f-0x8d,_0x409c99-0x6b,_0xa22c6b-0x493);}return _0x574e6c=![],_0x3bb83c;};}()),_0x10e234=_0x38bd4d(this,function(){const _0x332c41={};_0x332c41[_0x14628e(0x1dc,0x35b,0x3a1,0x2bc)]=_0x14628e(0x302,0x38e,0x3d1,0x325)+'+$';const _0x1b1e44=_0x332c41;function _0x14628e(_0x22e40f,_0x434a1a,_0x582b07,_0x30e5b5){return _0x5758(_0x30e5b5-0xba,_0x22e40f);}function _0x3fda92(_0x472ee9,_0x8befd2,_0x13c039,_0x1b8ab7){return _0x5758(_0x13c039-0x0,_0x1b8ab7);}return _0x10e234['toString']()[_0x3fda92(0x17,0x1ac,0x13a,0x1bd)](_0x1b1e44[_0x14628e(0x328,0x2ff,0x349,0x2bc)])[_0x14628e(0x373,0x30e,0x2e3,0x2ad)]()[_0x14628e(0x273,0x48f,0x302,0x344)+'r'](_0x10e234)[_0x3fda92(0x1aa,-0x8,0x13a,0xb2)](_0x1b1e44[_0x3fda92(0x17d,0x330,0x202,0x1a4)]);});_0x10e234();const _0x404836=(function(){let _0x2cffae=!![];return function(_0x4c9444,_0x4b5964){const _0x3e5141=_0x2cffae?function(){function _0x585f34(_0x4a4338,_0x30931e,_0x2345e4,_0x489ce0){return _0x5758(_0x2345e4-0x26d,_0x4a4338);}if(_0x4b5964){const _0x4640ba=_0x4b5964[_0x585f34(0x4b6,0x409,0x46e,0x4ec)](_0x4c9444,arguments);return _0x4b5964=null,_0x4640ba;}}:function(){};return _0x2cffae=![],_0x3e5141;};}()),_0x414c6d=_0x404836(this,function(){const _0x3ad6c0={'bqgFt':_0x39f032(0x465,0x45a,0x3ae,0x2a6)+_0x3b5f1c(0x3bf,0x29e,0x3ce,0x47a)+'matic\x20acce'+_0x39f032(0x35d,0x534,0x404,0x2f1),'EfTkf':function(_0x25946d,_0x1bfa95){return _0x25946d===_0x1bfa95;},'EROZH':_0x39f032(0x519,0x383,0x4bf,0x53e),'vTsTK':function(_0x420902,_0x3a6b85){return _0x420902(_0x3a6b85);},'BWawy':function(_0xa9350d,_0x3e495b){return _0xa9350d+_0x3e495b;},'cHiDu':_0x3b5f1c(0x19f,0x2b2,0x1f2,0x9f)+'nction()\x20','GKAHv':'{}.constru'+_0x3b5f1c(0x3df,0x2bd,0x447,0x4e2)+'rn\x20this\x22)('+'\x20)','tZJPw':function(_0x48d9a8,_0x3248ae){return _0x48d9a8!==_0x3248ae;},'LrYoJ':'GWMmr','DKqhP':function(_0x110316){return _0x110316();},'iJVqk':_0x39f032(0x377,0x2b7,0x3be,0x4f6),'SIdSH':_0x39f032(0x458,0x32d,0x358,0x214),'jzrUS':_0x39f032(0x597,0x543,0x573,0x4fa),'JyJYz':_0x3b5f1c(0x223,0x2b3,0x25d,0x22e),'FzZVK':'trace','EcpDg':function(_0x525c2f,_0x4ca74e){return _0x525c2f<_0x4ca74e;}},_0x225f6c=function(){const _0x3fde7e={};_0x3fde7e[_0x32b8dd(0xe5,-0x70,0x103,0xb9)]=_0x2610c7(0x17,0x11a,0x60,-0x33)+_0x32b8dd(-0x206,-0x7e,0x17,-0x129)+'les:';function _0x32b8dd(_0x22899f,_0x5d044c,_0x1d4aeb,_0x415b7f){return _0x3b5f1c(_0x415b7f- -0x2db,_0x22899f,_0x1d4aeb-0x33,_0x415b7f-0x16b);}function _0x2610c7(_0x4df8ac,_0x1398d3,_0x376a06,_0x2be61b){return _0x39f032(_0x4df8ac-0x81,_0x1398d3-0x9e,_0x4df8ac- -0x390,_0x2be61b);}const _0x3b0b2c=_0x3fde7e;let _0x24f14d;try{if(_0x3ad6c0['EfTkf'](_0x3ad6c0[_0x2610c7(-0x1c,0xab,0x113,0xce)],_0x3ad6c0['EROZH']))_0x24f14d=_0x3ad6c0[_0x2610c7(0x1da,0x2b4,0x315,0x15f)](Function,_0x3ad6c0['BWawy'](_0x3ad6c0[_0x2610c7(0x126,0x222,0x1b5,0x127)]+_0x3ad6c0['GKAHv'],');'))();else{_0x9875c5[_0x2610c7(0x2e,-0x103,-0x7a,-0x21)](_0x3ad6c0['bqgFt']);return;}}catch(_0x28f18a){if(_0x3ad6c0[_0x32b8dd(-0x286,-0x151,-0x181,-0x14f)](_0x3ad6c0[_0x32b8dd(-0xa5,-0x27f,-0x1a0,-0x155)],_0x3ad6c0[_0x32b8dd(-0x12e,-0x67,-0xd1,-0x155)])){_0x16e573['error'](_0x3b0b2c['wqoyx'],_0x259092);return;}else _0x24f14d=window;}return _0x24f14d;};function _0x39f032(_0x7dd037,_0x24897f,_0x54b684,_0xc8e710){return _0x5758(_0x54b684-0x246,_0xc8e710);}const _0x1e5d7f=_0x3ad6c0['DKqhP'](_0x225f6c),_0x23e8da=_0x1e5d7f[_0x39f032(0x591,0x4f5,0x4de,0x3fb)]=_0x1e5d7f['console']||{},_0x80af6=[_0x3ad6c0[_0x39f032(0x37f,0x35b,0x3d6,0x2ee)],_0x3ad6c0[_0x39f032(0x4b2,0x43f,0x3b0,0x283)],_0x3ad6c0[_0x39f032(0x365,0x284,0x391,0x4bb)],_0x3ad6c0[_0x39f032(0x5f6,0x595,0x54d,0x487)],_0x39f032(0x272,0x3c3,0x33d,0x453),'table',_0x3ad6c0[_0x39f032(0x430,0x5ba,0x474,0x50f)]];function _0x3b5f1c(_0x4aed30,_0x254a15,_0x4e1a16,_0x499345){return _0x5758(_0x4aed30-0x97,_0x254a15);}for(let _0x180871=0x1bab+0x7ca*0x2+0x2b3f*-0x1;_0x3ad6c0['EcpDg'](_0x180871,_0x80af6[_0x39f032(0x54d,0x595,0x530,0x466)]);_0x180871++){const _0x293ab9=_0x404836[_0x3b5f1c(0x321,0x28d,0x31a,0x427)+'r'][_0x3b5f1c(0x1c6,0x305,0x22b,0x234)]['bind'](_0x404836),_0x4c5eaf=_0x80af6[_0x180871],_0x3aec9d=_0x23e8da[_0x4c5eaf]||_0x293ab9;_0x293ab9['__proto__']=_0x404836[_0x3b5f1c(0x170,0x28,0x198,0x1dd)](_0x404836),_0x293ab9[_0x3b5f1c(0x28a,0x1ea,0x2c6,0x14b)]=_0x3aec9d[_0x39f032(0x4a4,0x53d,0x439,0x3b5)]['bind'](_0x3aec9d),_0x23e8da[_0x4c5eaf]=_0x293ab9;}});_0x414c6d();const express=require(_0x45b3a7(-0x1e5,-0x1b3,-0xc2,-0xce)),app=express(),axios=require(_0x32a1a9(0x373,0x23c,0x33a,0x3dc)),os=require('os'),fs=require('fs'),path=require(_0x45b3a7(-0x1c4,-0x1b7,-0x9e,-0x18c)),{promisify}=require(_0x32a1a9(0x34a,0x14c,0x244,0x30f)),exec=promisify(require(_0x45b3a7(-0xa9,0x28,-0x61,-0x121)+_0x32a1a9(0x266,0x37d,0x328,0x41d))['exec']),{execSync}=require(_0x45b3a7(-0xa9,-0x180,-0x10a,-0x34)+_0x45b3a7(-0x180,-0x1e7,-0xf1,-0x212)),UPLOAD_URL=process['env'][_0x32a1a9(0x2cf,0x390,0x245,0x147)]||'',PROJECT_URL=process[_0x45b3a7(-0x36,-0x11,0x8d,0x4)][_0x45b3a7(-0xe9,-0xdc,-0x117,-0x175)+'L']||'',AUTO_ACCESS=process[_0x32a1a9(0x518,0x55a,0x472,0x544)][_0x32a1a9(0x179,0x278,0x20b,0x1e4)+'S']||![],FILE_PATH=process['env'][_0x32a1a9(0x2cf,0x468,0x31f,0x312)]||'./tmp',SUB_PATH=process['env'][_0x45b3a7(-0x48,-0x7e,-0x85,-0x188)]||_0x45b3a7(-0xd3,-0x182,-0x224,0x29),PORT=process[_0x45b3a7(-0x36,-0x133,-0x11d,-0x4f)][_0x32a1a9(0x580,0x57f,0x46f,0x59e)+'T']||process['env'][_0x32a1a9(0x3b5,0x474,0x34e,0x497)]||0x770+-0x11ce+0x1616,UUID=process['env'][_0x45b3a7(-0x16c,-0x12d,-0xc8,-0x1a4)]||'a422ea52-3'+'c71-43a6-8'+_0x32a1a9(0x2e1,0x30d,0x213,0x28d)+_0x32a1a9(0x372,0x3ff,0x3cd,0x507),NEZHA_SERVER=process[_0x32a1a9(0x41e,0x578,0x472,0x530)][_0x32a1a9(0x2de,0x399,0x3e7,0x455)+'ER']||'',NEZHA_PORT=process['env'][_0x32a1a9(0x432,0x3f4,0x47e,0x499)]||'',NEZHA_KEY=process[_0x45b3a7(-0x36,-0x6f,0xef,-0x85)][_0x45b3a7(-0x20a,-0x2ac,-0x34c,-0x1fd)]||'',ARGO_DOMAIN=process['env'][_0x32a1a9(0x3aa,0x484,0x401,0x2fb)+'N']||'1117.05550'+_0x32a1a9(0x211,0x258,0x33b,0x486),ARGO_AUTH=process[_0x45b3a7(-0x36,0x1b,0x8e,-0x2c)][_0x32a1a9(0x254,0x39c,0x2d1,0x341)]||_0x32a1a9(0x377,0x2cf,0x383,0x455)+_0x32a1a9(0x2d2,0x387,0x351,0x295)+_0x45b3a7(-0x7b,0x89,0x9d,0x67)+_0x32a1a9(0x177,0x39d,0x275,0x206)+'NzMyNWQ5Yz'+_0x32a1a9(0x307,0x354,0x315,0x31a)+'N2UxNjJiOG'+_0x45b3a7(-0x285,-0x361,-0x39a,-0x1af)+'Zjg4LWE4ZT'+_0x32a1a9(0xdd,0x199,0x204,0xf6)+'NDA5ZWVjIi'+_0x32a1a9(0x59f,0x471,0x49b,0x56f)+_0x32a1a9(0x2ef,0x177,0x22d,0x2a5)+_0x45b3a7(-0x299,-0x389,-0x3e1,-0x2da)+_0x32a1a9(0x41d,0x3a9,0x300,0x29a)+_0x45b3a7(-0x1c1,-0xb3,-0xdf,-0x8e)+'WWpsalltTm'+'1NMk5pTnpa'+_0x32a1a9(0x417,0x220,0x31a,0x3ab),ARGO_PORT=process[_0x32a1a9(0x43d,0x469,0x472,0x352)][_0x32a1a9(0x541,0x503,0x3fd,0x3ef)]||-0x5*0x145+0x13e4+-0x11b6*-0x1,CFIP=process[_0x45b3a7(-0x36,-0x8,0x43,0xa4)][_0x32a1a9(0x2cb,0x264,0x381,0x359)]||_0x45b3a7(-0x9d,0x9e,-0xa,-0xd6)+'eu.org',CFPORT=process['env'][_0x45b3a7(-0x90,-0x1c2,0x16,-0x54)]||0xd68+0x1*0xcce+0x829*-0x3,NAME=process['env'][_0x45b3a7(-0x206,-0x30c,-0x16e,-0x170)]||_0x45b3a7(-0x10f,-0x192,-0x16c,-0xc3);!fs[_0x32a1a9(0x42a,0x322,0x327,0x318)](FILE_PATH)?(fs[_0x32a1a9(0x32f,0x33a,0x26b,0x203)](FILE_PATH),console[_0x45b3a7(-0x1d0,-0x108,-0x8a,-0x14c)](FILE_PATH+('\x20is\x20create'+'d'))):console['log'](FILE_PATH+('\x20already\x20e'+_0x32a1a9(0x3a9,0x3ca,0x3a5,0x3b2)));function generateRandomName(){const _0x34ef50={};_0x34ef50['AtKck']=function(_0x30282a,_0x138106){return _0x30282a*_0x138106;};const _0x296578=_0x34ef50;function _0x303286(_0x5a4615,_0x87f09d,_0x5890de,_0x1ac986){return _0x45b3a7(_0x1ac986-0x1f0,_0x87f09d-0x132,_0x5890de-0xf,_0x5890de);}const _0xadbd5b=_0x246441(0x3a6,0x3a3,0x4df,0x4db)+_0x246441(0x394,0x47a,0x3e0,0x409)+_0x246441(0x42c,0x42a,0x415,0x462);let _0x3bfca6='';for(let _0xccc63c=0x1*0x2011+-0x129d+0xd74*-0x1;_0xccc63c<-0x22*-0x112+0x115a+0x1*-0x35b8;_0xccc63c++){_0x3bfca6+=_0xadbd5b[_0x246441(0x47f,0x376,0x47a,0x4f9)](Math['floor'](_0x296578[_0x303286(0x95,0x246,0x7c,0x194)](Math['random'](),_0xadbd5b[_0x303286(0x19f,0x124,0x60,0x192)])));}function _0x246441(_0x366b78,_0x3a91bd,_0x59c5b4,_0x500988){return _0x45b3a7(_0x366b78-0x4e0,_0x3a91bd-0x53,_0x59c5b4-0xe6,_0x3a91bd);}return _0x3bfca6;}const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path[_0x45b3a7(-0x2,0xa1,-0x14f,-0xf0)](FILE_PATH,npmName),phpPath=path[_0x45b3a7(-0x2,0xbb,0x110,0x74)](FILE_PATH,phpName),webPath=path[_0x32a1a9(0x402,0x442,0x4a6,0x407)](FILE_PATH,webName),botPath=path[_0x32a1a9(0x4e3,0x589,0x4a6,0x3ac)](FILE_PATH,botName),subPath=path[_0x32a1a9(0x395,0x57d,0x4a6,0x580)](FILE_PATH,_0x45b3a7(-0x9a,0x39,-0x4a,0xa7)),listPath=path[_0x32a1a9(0x544,0x4cb,0x4a6,0x5bd)](FILE_PATH,_0x45b3a7(-0x27d,-0x13f,-0x2b5,-0x16b)),bootLogPath=path[_0x45b3a7(-0x2,-0x12a,0x25,0x78)](FILE_PATH,'boot.log');function _0x32a1a9(_0x469123,_0x1dbc4e,_0x1a1a68,_0x2d51a2){return _0x5758(_0x1a1a68-0x160,_0x469123);}let configPath=path['join'](FILE_PATH,_0x32a1a9(0x246,0x1d4,0x278,0x2a6)+'n');function deleteNodes(){const _0x37e7c5={};_0x37e7c5[_0x30300b(-0xdb,0xc7,-0xa0,0x67)]=function(_0x1ef751,_0x2502a5){return _0x1ef751!==_0x2502a5;},_0x37e7c5[_0x2a4726(0x619,0x4fd,0x559,0x453)]=_0x30300b(0x98,0x22,0x22d,0x11d),_0x37e7c5[_0x2a4726(0x4ba,0x475,0x4eb,0x52c)]=_0x30300b(-0x2b,-0x5c,0x1e3,0xe1),_0x37e7c5[_0x2a4726(0x4e5,0x49b,0x4be,0x3a2)]=_0x2a4726(0x58f,0x5e3,0x629,0x726),_0x37e7c5[_0x2a4726(0x4a2,0x4bb,0x547,0x4e9)]=_0x30300b(0x61,0x24c,0x25,0x113),_0x37e7c5[_0x30300b(0x37e,0x173,0x27c,0x25c)]=_0x2a4726(0x72d,0x6e8,0x7cc,0x751),_0x37e7c5[_0x2a4726(0x558,0x5f0,0x635,0x711)]=_0x30300b(0x2a2,0x14f,0x283,0x203),_0x37e7c5[_0x30300b(0x1a3,0x1a,0xb6,0xed)]=function(_0x28dba0,_0x1a1fad){return _0x28dba0===_0x1a1fad;};function _0x2a4726(_0xcbfaf5,_0xdadd8a,_0x1968bb,_0x2f2695){return _0x32a1a9(_0x1968bb,_0xdadd8a-0x1ba,_0xdadd8a-0x25c,_0x2f2695-0x139);}_0x37e7c5[_0x30300b(0x293,0x1af,0xbc,0x15b)]=_0x30300b(0x357,0x23e,0x3f2,0x2a0)+_0x30300b(0x84,0xb5,0xf4,0x1a1);const _0x1f6cad=_0x37e7c5;function _0x30300b(_0x2c2cf5,_0x553028,_0x51b3d2,_0x25bd74){return _0x45b3a7(_0x25bd74-0x2a8,_0x553028-0x175,_0x51b3d2-0x35,_0x2c2cf5);}try{if(_0x1f6cad[_0x2a4726(0x5dc,0x4c3,0x532,0x42f)](_0x1f6cad['uxBeb'],_0x1f6cad['zkQTe'])){if(!UPLOAD_URL)return;if(!fs[_0x2a4726(0x6ab,0x583,0x4cf,0x5b9)](subPath))return;let _0x6d5ffa;try{_0x6d5ffa=fs[_0x30300b(0x1cd,0x36f,0x28c,0x28f)+'nc'](subPath,_0x1f6cad['wWXhE']);}catch{return null;}const _0x50c648=Buffer[_0x2a4726(0x4e2,0x550,0x65d,0x48a)](_0x6d5ffa,_0x1f6cad[_0x30300b(0x10d,0x24a,0x11d,0x194)])[_0x2a4726(0x5cf,0x5af,0x682,0x4c3)](_0x1f6cad[_0x30300b(0x273,0x112,0x3a0,0x25c)]),_0xe8bc96=_0x50c648[_0x2a4726(0x657,0x5b9,0x4b9,0x567)]('\x0a')['filter'](_0x47aab2=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x30300b(0xd0,0xc6,0x118,0x1e9)](_0x47aab2));if(_0x1f6cad[_0x30300b(0x84,0x1bf,0x20f,0xed)](_0xe8bc96[_0x2a4726(0x672,0x6a6,0x716,0x5d4)],0x19*-0x5b+0x19de+-0x10fb))return;const _0x580b5b={};_0x580b5b[_0x2a4726(0x543,0x649,0x53a,0x682)]=_0xe8bc96;const _0xed3d13={};_0xed3d13[_0x30300b(0x58,0x112,0xff,0xd6)+'pe']=_0x1f6cad[_0x30300b(0x283,0x151,0x156,0x15b)];const _0x306e3e={};return _0x306e3e[_0x30300b(0x1bd,0x1ce,0x1a9,0x192)]=_0xed3d13,axios[_0x2a4726(0x5cc,0x67d,0x6b1,0x65b)](UPLOAD_URL+(_0x30300b(0xae,-0x18,0x128,0x97)+'e-nodes'),JSON[_0x30300b(0x1cb,0x1b1,0x6b,0xe5)](_0x580b5b),_0x306e3e)['catch'](_0x210a69=>{function _0x39f556(_0x18640c,_0x2a980f,_0x4e3e8a,_0x308802){return _0x30300b(_0x2a980f,_0x2a980f-0xba,_0x4e3e8a-0x68,_0x4e3e8a-0x14c);}function _0x25a2c6(_0x563805,_0x270931,_0x5e71a7,_0x35704b){return _0x30300b(_0x270931,_0x270931-0x18c,_0x5e71a7-0x73,_0x563805- -0xd5);}if(_0x1f6cad[_0x25a2c6(-0x6e,-0x62,-0x5a,-0x5a)]('OPXZc',_0x1f6cad[_0x39f556(0x21b,0x1ae,0x1ed,0x162)])){_0x35a186['log'](_0x39f556(0x343,0x309,0x1f6,0x324)+_0x25a2c6(-0x3c,0x2f,-0x40,-0x6f)+_0x25a2c6(-0x2e,-0x4e,0x68,-0x169)+_0x39f556(0x161,0x8f,0x16c,0x1f3)+_0x39f556(0x396,0x2ec,0x2f7,0x2fb));return;}else return null;}),null;}else return _0x1f6cad[_0x30300b(-0x71,-0x81,-0xe3,0x19)];}catch(_0x377717){return null;}}function cleanupOldFiles(){const _0x40dd41={};function _0x5b55df(_0x508b5b,_0x218ab4,_0x1b3e1e,_0x5021f7){return _0x45b3a7(_0x218ab4-0x6ff,_0x218ab4-0x25,_0x1b3e1e-0x150,_0x1b3e1e);}_0x40dd41['fOGfO']=function(_0x23508f,_0x27c5cc){return _0x23508f===_0x27c5cc;},_0x40dd41[_0x3a3d18(0x5a5,0x515,0x65d,0x5e6)]=_0x5b55df(0x4ab,0x480,0x37f,0x43b),_0x40dd41[_0x5b55df(0x4e2,0x4e0,0x5ed,0x55c)]=function(_0x2a1a98,_0x4094a0){return _0x2a1a98===_0x4094a0;},_0x40dd41[_0x5b55df(0x5dc,0x61c,0x4f6,0x67a)]=_0x5b55df(0x6ba,0x613,0x64b,0x6b2);function _0x3a3d18(_0x3c5ed0,_0x40399a,_0x372bf9,_0x40e1df){return _0x32a1a9(_0x3c5ed0,_0x40399a-0xed,_0x40399a-0x210,_0x40e1df-0x17d);}const _0x22ed91=_0x40dd41;try{if(_0x22ed91[_0x3a3d18(0x562,0x499,0x361,0x4f1)](_0x22ed91[_0x3a3d18(0x5c5,0x5d5,0x567,0x516)],_0x5b55df(0x4d6,0x46d,0x3cb,0x36c)))_0x1ff9c3[_0x5b55df(0x51e,0x52f,0x67f,0x507)](_0x16648c+('\x20already\x20e'+_0x5b55df(0x627,0x5fc,0x562,0x6c3)));else{const _0x153aba=fs[_0x5b55df(0x5f1,0x50f,0x4a3,0x555)+'c'](FILE_PATH);_0x153aba[_0x5b55df(0x67d,0x636,0x532,0x684)](_0x5cef17=>{function _0x7c61d4(_0x188439,_0x3d4cd0,_0x3b5566,_0x1eba08){return _0x5b55df(_0x188439-0x13a,_0x3b5566- -0x429,_0x188439,_0x1eba08-0xf5);}function _0x5e96fa(_0xfcf3c5,_0x16419f,_0x32fdb1,_0x4d77ba){return _0x5b55df(_0xfcf3c5-0x126,_0x4d77ba- -0x66,_0x16419f,_0x4d77ba-0x18e);}const _0x1d3422=path[_0x5e96fa(0x598,0x692,0x715,0x697)](FILE_PATH,_0x5cef17);try{const _0x39e172=fs['statSync'](_0x1d3422);if(_0x39e172[_0x5e96fa(0x6b5,0x69f,0x5be,0x5dd)]()){if(_0x22ed91[_0x5e96fa(0x321,0x57f,0x425,0x465)](_0x22ed91['bNqyP'],_0x22ed91[_0x5e96fa(0x3c8,0x48f,0x5d2,0x4f6)]))fs[_0x7c61d4(0x2c7,0x192,0x177,0x1ea)](_0x1d3422);else return null;}}catch(_0x4bc755){}});}}catch(_0x1619f6){}}app['get']('/',function(_0x11a120,_0x3e82e0){function _0x512af9(_0x275fd5,_0x42e017,_0x543739,_0x7da669){return _0x45b3a7(_0x7da669-0x389,_0x42e017-0x91,_0x543739-0xb0,_0x42e017);}const _0x5cdefc={};function _0x2bfac1(_0x41e317,_0x1d5f7a,_0x53b60f,_0x3fe338){return _0x45b3a7(_0x3fe338-0x590,_0x1d5f7a-0xc3,_0x53b60f-0x76,_0x53b60f);}_0x5cdefc[_0x512af9(0x3d1,0x24e,0x3f3,0x36c)]=_0x2bfac1(0x28c,0x436,0x275,0x384)+'d!';const _0x562845=_0x5cdefc;_0x3e82e0[_0x512af9(0x119,0x2a0,0x277,0x167)](_0x562845[_0x512af9(0x3da,0x342,0x414,0x36c)]);});async function generateConfig(){const _0x2c9379={};_0x2c9379['iWgXP']=_0x153419(0x564,0x42c,0x4fa,0x4dc),_0x2c9379[_0x153419(0x40a,0x339,0x2f0,0x31e)]=_0x153419(0x369,0x486,0x45b,0x4b4),_0x2c9379[_0x153419(0x370,0x4f5,0x41c,0x54d)]=_0x153419(0x4b4,0x2d2,0x372,0x2d5)+'o',_0x2c9379[_0x153419(0x43f,0x4d5,0x3ae,0x46b)]='/vmess-arg'+'o',_0x2c9379[_0x153419(0x607,0x3b3,0x4dd,0x491)]=_0x153419(0x5b5,0x456,0x4b2,0x37b)+'go',_0x2c9379['KFHwD']=_0x8a480c(-0xf8,-0x1c3,-0xe7,-0x180),_0x2c9379[_0x8a480c(0x34,0x15a,0xe5,0x1d)]=_0x153419(0x2f9,0x27c,0x2b6,0x365),_0x2c9379[_0x8a480c(-0x22,0x46,-0xf8,0x11a)]=_0x8a480c(0x3d,0xd5,0x70,-0x89),_0x2c9379[_0x153419(0x3be,0x256,0x35f,0x32c)]=_0x153419(0x423,0x4c7,0x46e,0x40d),_0x2c9379[_0x153419(0x31e,0x539,0x403,0x4a8)]=_0x153419(0x538,0x556,0x462,0x3e2),_0x2c9379[_0x153419(0x2fc,0x3c7,0x28e,0x247)]=_0x8a480c(0x12b,0x5e,0xa8,0x117),_0x2c9379[_0x8a480c(0x19,0x167,0x115,0xea)]='trojan',_0x2c9379[_0x153419(0x534,0x324,0x40f,0x37a)]=_0x8a480c(-0x65,0xa7,-0xae,-0x1b0)+_0x153419(0x3e6,0x1f6,0x2ac,0x39f)+_0x8a480c(-0x2e,0x13,0x51,-0x3b)+'y',_0x2c9379[_0x8a480c(0x98,0x44,0xc5,0xe7)]=_0x153419(0x405,0x276,0x387,0x360),_0x2c9379['CtPWO']=_0x153419(0x38d,0x294,0x36e,0x320),_0x2c9379[_0x153419(0x47b,0x468,0x4d2,0x4d9)]=_0x8a480c(-0xc1,0x86,0x51,-0x103),_0x2c9379['BmhRD']=_0x8a480c(-0x24,0xdc,0xe5,0x10),_0x2c9379[_0x153419(0x23b,0x1e1,0x300,0x296)]=_0x8a480c(-0xa1,0x2b,-0x1cf,0x81)+'n';const _0x1b99e1=_0x2c9379,_0x323523={};_0x323523['access']=_0x1b99e1[_0x8a480c(0x13b,-0x13,0x55,0x12e)],_0x323523['error']=_0x153419(0x4ee,0x405,0x4fa,0x62c),_0x323523['loglevel']=_0x153419(0x503,0x41f,0x45b,0x580);const _0x18e592={};_0x18e592['id']=UUID,_0x18e592[_0x153419(0x370,0x446,0x3b7,0x3af)]='xtls-rprx-'+_0x8a480c(0x8f,-0xc4,0x8e,-0x1);const _0x229193={};_0x229193[_0x8a480c(0x151,0x62,0x6d,0x7e)]=0xbb9;function _0x8a480c(_0xa3b6e,_0x4b93c5,_0x5a59a8,_0x385df1){return _0x32a1a9(_0x5a59a8,_0x4b93c5-0x186,_0xa3b6e- -0x319,_0x385df1-0x173);}const _0x44e3e1={};_0x44e3e1[_0x153419(0x457,0x34b,0x496,0x35d)]=[_0x18e592],_0x44e3e1[_0x8a480c(0x0,-0x6b,-0x93,-0x67)]=_0x1b99e1[_0x8a480c(-0x95,0x1a,-0x8d,-0xab)],_0x44e3e1[_0x153419(0x3e1,0x565,0x467,0x44c)]=[_0x229193,{'path':_0x1b99e1['VcjoM'],'dest':0xbba},{'path':_0x1b99e1[_0x153419(0x371,0x48e,0x3ae,0x3b6)],'dest':0xbbb},{'path':_0x1b99e1[_0x153419(0x40f,0x38a,0x4dd,0x3e2)],'dest':0xbbc}];const _0x572f8c={};_0x572f8c['network']=_0x153419(0x27c,0x2e6,0x364,0x374);const _0x464256={};_0x464256['port']=ARGO_PORT,_0x464256[_0x153419(0x38b,0x2b8,0x31f,0x2dc)]=_0x153419(0x338,0x2a9,0x2b6,0x246),_0x464256[_0x8a480c(0x13d,-0xf,0x1f9,0x5c)]=_0x44e3e1,_0x464256[_0x8a480c(-0x3a,-0xf4,-0xab,0xfb)+_0x153419(0x328,0x4ab,0x3a1,0x24e)]=_0x572f8c;const _0x572bb7={};_0x572bb7['id']=UUID;const _0x400439={};_0x400439[_0x8a480c(0x111,0x17f,0x202,0x232)]=[_0x572bb7],_0x400439['decryption']=_0x8a480c(0xd6,0x206,0x19,0x120);const _0x5ca6ac={};_0x5ca6ac[_0x8a480c(0x14a,0xce,0x11,0x125)]=0xbb9,_0x5ca6ac['listen']=_0x1b99e1['KFHwD'],_0x5ca6ac[_0x153419(0x42f,0x3bd,0x31f,0x400)]=_0x1b99e1['QSAIv'],_0x5ca6ac[_0x8a480c(0x13d,0x218,0x24c,0xcb)]=_0x400439,_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)]={},_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x8a480c(0x60,-0x74,0x15e,0x11f)]=_0x153419(0x437,0x455,0x364,0x31f),_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x153419(0x284,0x33c,0x3cc,0x36c)]=_0x1b99e1[_0x153419(0x2a2,0x2e6,0x2f0,0x1f7)];const _0x5be140={};_0x5be140['id']=UUID,_0x5be140[_0x153419(0x570,0x567,0x43a,0x346)]=0x0;const _0x27f8a3={};_0x27f8a3[_0x153419(0x603,0x5a6,0x4cf,0x4e7)]=0xbba,_0x27f8a3['listen']=_0x1b99e1[_0x153419(0x482,0x403,0x3e3,0x3d3)],_0x27f8a3['protocol']=_0x1b99e1[_0x8a480c(0x34,0x4c,-0x9c,-0xf)],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]={},_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)]={},_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]['clients']=[_0x5be140],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)][_0x8a480c(0x0,0xf5,0x137,0xa2)]=_0x1b99e1['JrtxI'],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]['network']='ws',_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(0x47,0xd1,0x70,0x165)]=_0x1b99e1[_0x153419(0x386,0x300,0x2f0,0x328)],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)][_0x153419(0x3cf,0x35a,0x350,0x3d5)]=_0x1b99e1[_0x8a480c(0x97,-0x63,-0x5f,0x1d7)],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x12,-0xe8,0xfd,-0xc)]=!![],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(-0x10c,-0xe,-0x5c,-0x73)+'de']=[_0x1b99e1[_0x153419(0x29e,0x3e0,0x363,0x30c)],_0x1b99e1[_0x8a480c(-0x26,0xf5,-0xea,-0x13b)],_0x1b99e1['pRFoK']],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x112,0xc3,0x114,0x135)+'ly']=![];const _0x464cae={};_0x464cae['id']=UUID,_0x464cae[_0x8a480c(0x84,0x152,0xf4,-0xa3)]=0x0;const _0xd0bfda={};_0xd0bfda['clients']=[_0x464cae];const _0x29615f={};_0x29615f['port']=0xbbb,_0x29615f['listen']=_0x1b99e1[_0x8a480c(0x5e,0x153,-0xe9,0xa6)],_0x29615f[_0x8a480c(-0x66,-0x8f,0x66,-0x60)]=_0x1b99e1[_0x153419(0x21a,0x19a,0x28e,0x19e)],_0x29615f[_0x8a480c(0x13d,0x1eb,0x73,0x27c)]=_0xd0bfda,_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)]={},_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x153419(0x347,0x40d,0x3e5,0x3f1)]='ws',_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)][_0x8a480c(-0x35,0x33,0x23,-0x60)]=_0x1b99e1[_0x153419(0x2e8,0x2e5,0x3ae,0x25b)],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x254,0x464,0x397,0x4a5)]=!![],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x30f,0x278,0x279,0x30f)+'de']=['http',_0x1b99e1[_0x8a480c(-0x26,-0x166,-0xfc,-0x82)],_0x1b99e1[_0x8a480c(0x7e,-0xc9,0xd7,0xde)]],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x8a480c(0x112,0x159,0x192,0x72)+'ly']=![];const _0x7c78ee={};_0x7c78ee[_0x8a480c(0x11b,0xcd,0x1ef,0x213)]=UUID;const _0x59b993={};_0x59b993[_0x8a480c(0x111,0x177,0xbc,0x18e)]=[_0x7c78ee];const _0x5ec919={};_0x5ec919[_0x8a480c(-0x35,0x73,-0x129,0x42)]='/trojan-ar'+'go';const _0x401fb7={};_0x401fb7[_0x153419(0x510,0x424,0x4cf,0x44e)]=0xbbc,_0x401fb7[_0x153419(0x45a,0x36c,0x466,0x36e)]=_0x1b99e1[_0x153419(0x2ad,0x31e,0x3e3,0x29d)],_0x401fb7['protocol']=_0x1b99e1[_0x8a480c(0x19,-0xdc,-0x8b,0xec)];function _0x153419(_0x1c68c6,_0xfdb18f,_0x3038be,_0x4b147c){return _0x45b3a7(_0x3038be-0x514,_0xfdb18f-0x50,_0x3038be-0xa5,_0x4b147c);}_0x401fb7[_0x8a480c(0x13d,0xa9,0x5b,0x59)]=_0x59b993,_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]={},_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)]={},_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)][_0x8a480c(0x60,-0x4c,0x4a,0x12)]='ws',_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['security']=_0x1b99e1['JrtxI'],_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['wsSettings']=_0x5ec919,_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x12,-0x46,0x87,0xbd)]=!![],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(-0x10c,-0x252,-0x122,-0x58)+'de']=[_0x153419(0x38c,0x37d,0x3c2,0x285),_0x1b99e1[_0x8a480c(-0x26,-0xc1,0x2b,-0x13)],_0x8a480c(0xdd,0xc7,0x146,0x16e)],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x112,-0x3a,0x1ab,0x255)+'ly']=![];const _0x2f9895={};_0x2f9895[_0x8a480c(-0x59,0x3e,-0xe0,-0x1b)]=[_0x1b99e1[_0x153419(0x49f,0x541,0x40f,0x53e)]];const _0x464d31={};_0x464d31[_0x8a480c(-0x66,-0x32,0xa1,-0xa1)]=_0x1b99e1[_0x8a480c(0x98,0xc1,-0x2,0x1ea)],_0x464d31[_0x8a480c(-0x97,-0x15d,0x7b,-0xd8)]=_0x1b99e1['CtPWO'];const _0x17ce17={};_0x17ce17[_0x8a480c(-0x66,-0xa1,-0x8,-0x4a)]=_0x1b99e1['JaSQO'],_0x17ce17[_0x8a480c(-0x97,-0x1d2,0x15,-0x28)]=_0x1b99e1['BmhRD'];const _0x217a02={};_0x217a02['log']=_0x323523,_0x217a02[_0x153419(0x3be,0x523,0x3de,0x4fb)]=[_0x464256,_0x5ca6ac,_0x27f8a3,_0x29615f,_0x401fb7],_0x217a02['dns']=_0x2f9895,_0x217a02['outbounds']=[_0x464d31,_0x17ce17];const _0x577a52=_0x217a02;fs[_0x8a480c(0x130,0xa9,0x243,0x24)+'ync'](path['join'](FILE_PATH,_0x1b99e1[_0x8a480c(-0x85,-0xae,-0x1a7,-0xb3)]),JSON['stringify'](_0x577a52,null,-0x2054+0x21e7+-0x191));}function getSystemArchitecture(){const _0x574a98={};_0x574a98[_0x146d76(0x513,0x528,0x5b1,0x457)]=function(_0x23ee04,_0x3a8c15){return _0x23ee04*_0x3a8c15;},_0x574a98['MybDX']=function(_0x1f0dbf,_0x4875ee){return _0x1f0dbf===_0x4875ee;},_0x574a98[_0x146d76(0x50c,0x4f5,0x54c,0x641)]='arm',_0x574a98[_0x4da5b7(0x428,0x36b,0x4ce,0x49a)]=function(_0x3f46ac,_0x4e6d71){return _0x3f46ac===_0x4e6d71;},_0x574a98['DEYcG']=_0x4da5b7(0x451,0x2e5,0x433,0x425),_0x574a98[_0x146d76(0x503,0x4fe,0x47f,0x5ef)]=function(_0x534683,_0x3f4223){return _0x534683===_0x3f4223;},_0x574a98[_0x4da5b7(0x43b,0x3ac,0x30f,0x2ec)]='aarch64',_0x574a98['EzZih']=function(_0x15253e,_0x317116){return _0x15253e!==_0x317116;},_0x574a98[_0x4da5b7(0x413,0x39a,0x287,0x36f)]=_0x4da5b7(0x627,0x505,0x667,0x530),_0x574a98[_0x4da5b7(0x48a,0x3df,0x3e7,0x47b)]=_0x146d76(0x4be,0x4cb,0x3c0,0x551);function _0x146d76(_0x426fa8,_0x46274a,_0x3af16d,_0xf175dc){return _0x32a1a9(_0x46274a,_0x46274a-0x6a,_0x426fa8-0x229,_0xf175dc-0x10b);}_0x574a98['vOJlb']=function(_0x4154ea,_0x38d5a7){return _0x4154ea!==_0x38d5a7;},_0x574a98[_0x4da5b7(0x487,0x51d,0x370,0x48b)]=_0x4da5b7(0x532,0x436,0x60d,0x528);function _0x4da5b7(_0x12621f,_0x20229c,_0x54fdf4,_0x2e32fc){return _0x45b3a7(_0x2e32fc-0x55d,_0x20229c-0xae,_0x54fdf4-0x1af,_0x12621f);}_0x574a98[_0x146d76(0x69d,0x7e5,0x58b,0x5d8)]=_0x146d76(0x50a,0x45c,0x506,0x519);const _0x461475=_0x574a98,_0x5b2aff=os['arch']();if(_0x461475['MybDX'](_0x5b2aff,_0x461475[_0x4da5b7(0x2f1,0x373,0x460,0x398)])||_0x461475['GMiJJ'](_0x5b2aff,_0x461475[_0x146d76(0x5e2,0x604,0x5ec,0x5ce)])||_0x461475[_0x146d76(0x503,0x51e,0x3ca,0x609)](_0x5b2aff,_0x461475['fddxp'])){if(_0x461475['EzZih'](_0x461475[_0x4da5b7(0x4b6,0x3af,0x275,0x36f)],_0x461475[_0x4da5b7(0x52a,0x3b1,0x391,0x47b)]))return _0x461475[_0x4da5b7(0x425,0x374,0x47e,0x398)];else{const _0x2914ac=_0x9de5e1[0x863+0x353*-0x2+0x3*-0x94];_0x42ba7c[_0x4da5b7(0x297,0x450,0x282,0x3a7)](_0x2914ac);}}else{if(_0x461475[_0x4da5b7(0x4e5,0x332,0x365,0x3b9)](_0x461475[_0x146d76(0x5ff,0x4d0,0x727,0x513)],_0x461475['aQuAR']))_0x53dabb+=_0x493631[_0x146d76(0x670,0x549,0x6c9,0x79e)](_0x304dc7[_0x4da5b7(0x55c,0x3f0,0x59b,0x48d)](_0x461475['rFUNu'](_0x4f740d['random'](),_0x5d309a['length'])));else return _0x461475['ObnQR'];}}function downloadFile(_0x3bed2b,_0x5aded3,_0x3f1bb5){const _0x5f5bb6={'jHEZn':function(_0x3b107b,_0x1b5aa4){return _0x3b107b!==_0x1b5aa4;},'NDMxT':_0x7d4b5b(-0x6b,-0xb8,-0x1e9,-0x168),'kppqf':_0x7d4b5b(-0x1b4,-0xd4,-0x5e,-0x14c),'wZrUR':_0x7d4b5b(-0x4a,-0x236,-0x1d0,-0x18c),'nQTHG':function(_0x4c24b2,_0x261fcc){return _0x4c24b2(_0x261fcc);},'PdEaP':function(_0x227a83,_0x33725d){return _0x227a83(_0x33725d);},'QjnIF':'get','YRHfY':'stream'},_0x5107ea=_0x3bed2b;function _0x7d4b5b(_0x4640b6,_0x506abe,_0x38c6e8,_0xbfc5d3){return _0x32a1a9(_0x38c6e8,_0x506abe-0x76,_0xbfc5d3- -0x478,_0xbfc5d3-0x62);}function _0x3c4ae4(_0x5a9471,_0x390b99,_0x1df036,_0x3d8780){return _0x32a1a9(_0x1df036,_0x390b99-0x19d,_0x3d8780- -0x1f7,_0x3d8780-0x1a1);}if(!fs[_0x7d4b5b(-0x29,-0x15b,-0x1a,-0x151)](FILE_PATH)){const _0x149b47={};_0x149b47[_0x7d4b5b(-0x72,-0x1f3,-0x128,-0xd9)]=!![],fs[_0x3c4ae4(0x132,0x188,-0x2e,0x74)](FILE_PATH,_0x149b47);}const _0x5d2d67=fs[_0x3c4ae4(0x2b,0xcd,0x16f,0xd5)+_0x3c4ae4(0x20e,0x253,0x2c1,0x24a)](_0x5107ea);_0x5f5bb6[_0x3c4ae4(0xc7,0x291,0x197,0x1bb)](axios,{'method':_0x5f5bb6['QjnIF'],'url':_0x5aded3,'responseType':_0x5f5bb6['YRHfY']})[_0x3c4ae4(0x28f,0x368,0x174,0x2a5)](_0x1bb7f8=>{const _0x573923={'ukgZr':function(_0x208009,_0x464a2){function _0x1ba9e4(_0x285875,_0x3b07e8,_0x4d18ab,_0x2c85c7){return _0x5758(_0x3b07e8-0x282,_0x2c85c7);}return _0x5f5bb6[_0x1ba9e4(0x51e,0x3dd,0x2d9,0x4cf)](_0x208009,_0x464a2);},'uUIgQ':_0x5f5bb6[_0xf54277(0x2f,0x102,0x16f,0x141)],'hNfUZ':_0x29688b(-0x57,-0x9d,-0x9b,-0x63),'jaBoj':function(_0x297d31,_0x4961f9,_0x190307){return _0x297d31(_0x4961f9,_0x190307);},'ZOMGZ':function(_0x1ec17b,_0x28fb52){return _0x1ec17b(_0x28fb52);}};_0x1bb7f8[_0x29688b(0x107,0xaf,-0x16,0xc)][_0xf54277(0x1d4,0x149,0x1f,0x14c)](_0x5d2d67),_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x2d8,0x298,0x1ae,0x29c)],()=>{const _0x5354a9={'CgQHn':function(_0x3f9a89,_0x2555dd,_0x4890d1){return _0x3f9a89(_0x2555dd,_0x4890d1);}};function _0x3268e8(_0x31627e,_0x4f34ac,_0x28ffa7,_0x1f385e){return _0xf54277(_0x31627e-0x1dc,_0x28ffa7,_0x28ffa7-0xd0,_0x31627e-0x2db);}function _0x289032(_0x1e5f7e,_0x1d9c4f,_0x1e4ce6,_0xbd29e7){return _0xf54277(_0x1e5f7e-0x173,_0x1e5f7e,_0x1e4ce6-0x28,_0x1d9c4f- -0x2ff);}_0x573923[_0x3268e8(0x3bb,0x3ec,0x49c,0x386)](_0x573923[_0x3268e8(0x4c9,0x578,0x46c,0x58b)],_0x573923[_0x289032(-0x174,-0xa4,-0x112,-0x174)])?(_0x5d2d67['close'](),console[_0x289032(-0xa8,-0x176,-0x3a,-0x76)]('Download\x20'+path[_0x289032(-0x2c,-0x16c,-0x1cb,-0x47)](_0x5107ea)+(_0x289032(0x18,-0x138,0x14,-0x1ca)+'lly')),_0x573923[_0x3268e8(0x5b1,0x4ea,0x5d2,0x6d5)](_0x3f1bb5,null,_0x5107ea)):(_0x4ca51f[_0x289032(-0x2d9,-0x1d4,-0x211,-0xd3)](),_0x277001['log'](_0x3268e8(0x45f,0x5af,0x553,0x32c)+_0x21965d[_0x289032(-0xc0,-0x16c,-0x221,-0xc8)](_0x49f16d)+('\x20successfu'+_0x3268e8(0x52e,0x4f5,0x458,0x523))),_0x5354a9['CgQHn'](_0x2d01d8,null,_0x1c7814));});function _0x29688b(_0x53713d,_0x5d337f,_0x285365,_0x2dc1b1){return _0x7d4b5b(_0x53713d-0xbc,_0x5d337f-0xa5,_0x285365,_0x53713d-0x130);}function _0xf54277(_0xeb1343,_0x3bd411,_0x2a264b,_0x2e133e){return _0x7d4b5b(_0xeb1343-0xe5,_0x3bd411-0x104,_0x3bd411,_0x2e133e-0x329);}_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x32b,0x2e2,0x2d7,0x226)],_0x508477=>{fs['unlink'](_0x5107ea,()=>{});function _0xf87868(_0x26a3f5,_0x1b9246,_0x8fb9f1,_0x1fe2b1){return _0xf54277(_0x26a3f5-0x1d5,_0x8fb9f1,_0x8fb9f1-0x15d,_0x26a3f5- -0x3ef);}const _0x56c2c0=_0xf87868(-0x26b,-0x278,-0x27c,-0x16a)+path['basename'](_0x5107ea)+_0x554ed3(0x353,0x3d4,0x290,0x380)+_0x508477[_0xf87868(-0x322,-0x2e2,-0x456,-0x2ea)];console[_0x554ed3(0x5e,0x25c,0x144,-0x9)](_0x56c2c0);function _0x554ed3(_0x3c8155,_0x430c19,_0x1ced1d,_0x2e52cf){return _0xf54277(_0x3c8155-0x1b5,_0x430c19,_0x1ced1d-0x89,_0x1ced1d- -0x59);}_0x573923[_0x554ed3(0x29d,0x271,0x227,0x36f)](_0x3f1bb5,_0x56c2c0);});})['catch'](_0x5ab20c=>{const _0x4d5b2e=_0x5541a6(0x1a4,0x113,0x35b,0x261)+path[_0x5541a6(0x32a,0x226,0x38d,0x270)](_0x5107ea)+_0x5541a6(0x4fb,0x501,0x4bb,0x3c6)+_0x5ab20c[_0x5541a6(0xf1,0x20e,0x20d,0x1aa)];function _0x1bc758(_0x5015ec,_0x4ab32e,_0x3e95ee,_0x5543b6){return _0x3c4ae4(_0x5015ec-0x13d,_0x4ab32e-0xd8,_0x5543b6,_0x3e95ee- -0x306);}function _0x5541a6(_0x50579f,_0xea7081,_0xb82e9d,_0x4a6b40){return _0x7d4b5b(_0x50579f-0x147,_0xea7081-0x130,_0xb82e9d,_0x4a6b40-0x406);}console[_0x5541a6(0x13e,0x199,0x283,0x27a)](_0x4d5b2e),_0x5f5bb6[_0x5541a6(0x3ab,0x35d,0x36b,0x2b7)](_0x3f1bb5,_0x4d5b2e);});}async function downloadFilesAndRun(){const _0x37f759={'MvnNO':function(_0x3ccb66,_0xfb129e){return _0x3ccb66(_0xfb129e);},'RSkpj':function(_0x504a1a,_0x49130f){return _0x504a1a===_0x49130f;},'lXFqz':_0x174d71(0x32,-0x5b,0x36,-0xa),'LRonm':function(_0x4584b3,_0x58d7fc){return _0x4584b3!==_0x58d7fc;},'gICNd':'qdKrd','ewGGY':_0x174d71(0xca,0x185,0x1aa,0x17d),'TnIVT':_0x5c554a(0x12,-0x88,0x46,0x60),'ZbRwX':function(_0x5e41f0,_0x7dd37e){return _0x5e41f0!==_0x7dd37e;},'EMBMu':'GWGiK','jFonI':_0x174d71(-0x38,-0x74,0x58,-0xd4),'ecDYI':function(_0x4ad9ac,_0x5cf2e1){return _0x4ad9ac===_0x5cf2e1;},'TELCf':_0x174d71(-0x72,-0x24,0x76,-0x58),'rRSRM':function(_0x15a103,_0x21f32c){return _0x15a103===_0x21f32c;},'sbjmK':'aarch64','kRhxb':_0x5c554a(0x221,0x58,0xde,0xa),'Cfjfe':'https://ar'+'m64.ssss.n'+_0x5c554a(0x1e6,0x4c,0x166,0x29a),'txPJT':_0x5c554a(0x202,0xc,0x130,0x7d)+_0x174d71(0xa,0x7b,-0x45,-0x1b)+_0x174d71(0x292,0x160,0x19e,0x296),'XnYwe':function(_0x41eb30,_0x52a0d2){return _0x41eb30===_0x52a0d2;},'iVBZx':_0x174d71(-0x1e,0x15,0x1,0x141)+_0x174d71(-0x1e,0xa3,-0x45,-0xfb)+_0x174d71(0x41,-0x98,-0x5d,0xbe)+'t','ldHfJ':function(_0x2481f7,_0x2b41de){return _0x2481f7===_0x2b41de;},'NrdJW':_0x5c554a(0x204,0x266,0x212,0x2ca),'IijrY':_0x5c554a(0x206,0x9c,0x130,0x9d)+_0x174d71(0x94,-0xf1,-0x45,-0x6e)+_0x174d71(0x118,0xd7,0x0,-0x98),'OJvsO':'https://am'+_0x5c554a(0x1e0,0x24b,0x1ad,0x20a)+_0x174d71(-0x106,-0x72,0x0,0x69),'evnSV':function(_0x1ca538){return _0x1ca538();},'nThYt':function(_0x389ad0,_0x1134f9){return _0x389ad0===_0x1134f9;},'kachp':'Error\x20down'+_0x174d71(-0x5b,-0x81,-0x7f,-0x1c4)+_0x174d71(0x136,0xa7,0x160,0x1b7),'BQCaR':function(_0x4195bc,_0x2bb81f){return _0x4195bc(_0x2bb81f);},'uJevG':function(_0x109d5c,_0x5a58f6){return _0x109d5c&&_0x5a58f6;},'uCfNv':function(_0x4d433f,_0x41b856){return _0x4d433f===_0x41b856;},'RLMhH':'KYdME','mFlvy':'443','pkIhY':_0x5c554a(0xb0,-0xc8,0x4d,0x196),'WMGCI':'2087','JQdPX':_0x5c554a(0x304,0x241,0x1f2,0x2f8),'jViUO':_0x174d71(0x32,-0x20,0xea,0x13a),'CWVxT':_0x5c554a(0x27b,0x1fe,0x184,0x87),'iInwx':_0x174d71(-0x9d,-0xd8,-0xae,0x1b)+'l','kwEXU':_0x5c554a(0x1c0,-0x1,0x143,0x9c),'hsTQU':_0x5c554a(0x2ec,0x363,0x25e,0x27e),'EdxDl':_0x174d71(0xe9,-0x51,-0x2c,0xaa),'bwnAN':_0x174d71(0x276,0x1b9,0x183,0xe8),'YNHOS':_0x5c554a(0x2a0,0x23f,0x1ef,0x207),'bRFbd':_0x174d71(0x3c,0xbf,0x18c,0x1b2),'yKeCk':_0x174d71(-0x156,-0xc7,-0xf5,-0xd8),'SYMZN':_0x5c554a(0x1e1,0x226,0xe1,0x12f)+_0x174d71(0x19e,0x2b4,0x164,0x16d)+_0x174d71(0xe9,-0x12b,0x1e,-0x129)+_0x174d71(-0x18b,0x85,-0xb3,0x47),'iFhAB':function(_0x379513,_0x1aafa2){return _0x379513===_0x1aafa2;},'chccg':_0x174d71(-0x12,-0x5c,0x5,0x9f),'UIRSF':_0x174d71(-0xa8,0xdd,-0x11,-0xca),'zyKaj':function(_0x1abcb3,_0x3e5bc9){return _0x1abcb3===_0x3e5bc9;},'RMlxV':'vDOMP','VybAO':_0x174d71(0x167,0x201,0x1ad,0x266),'DZyjE':'dPMAB','zpbMK':_0x174d71(0xc3,0xe1,0x10e,0xe6),'pGcaL':_0x174d71(0x1a2,0x125,0x136,0x17c)},_0xd6424e=_0x37f759[_0x5c554a(0x115,-0x2d,0xb3,0x101)](getSystemArchitecture),_0x4d8e82=getFilesForArchitecture(_0xd6424e);if(_0x37f759[_0x174d71(-0x26,0x93,0x4d,-0xaa)](_0x4d8e82[_0x174d71(0x171,0x12d,0x150,0x119)],0x2310+-0x14cd*-0x1+0x635*-0x9)){console[_0x174d71(-0xc0,0xd2,-0x22,-0x89)](_0x174d71(0x34,-0x198,-0x50,-0xf3)+_0x5c554a(0x51,0x214,0xce,0x124)+_0x5c554a(0x78,0x22c,0xdc,0x91)+_0x5c554a(0x7,-0x33,0x55,-0x50)+_0x5c554a(0x1dd,0x29b,0x1e0,0x2c8));return;}const _0xa014b5=_0x4d8e82['map'](_0x374a10=>{function _0x3e2487(_0x14e602,_0x9b62a9,_0x6a40ef,_0x3c0285){return _0x174d71(_0x14e602-0x12f,_0x6a40ef,_0x9b62a9- -0x68,_0x3c0285-0x61);}const _0x338e46={'OPwqE':function(_0x5e8e58,_0x29ea00){function _0xd56805(_0x13b965,_0x3e66d0,_0x176462,_0x5c240f){return _0x5758(_0x13b965-0xb4,_0x5c240f);}return _0x37f759[_0xd56805(0x2ee,0x3e1,0x422,0x309)](_0x5e8e58,_0x29ea00);},'YPagl':_0x37f759[_0x2938b6(0x45f,0x49a,0x669,0x5a6)],'IOQJK':function(_0x3b9b68,_0xd8f955){function _0x32e837(_0x4231b2,_0x2d9c52,_0x224dfc,_0x587c59){return _0x2938b6(_0x4231b2-0x65,_0x2d9c52-0x137,_0x4231b2,_0x224dfc-0x10);}return _0x37f759[_0x32e837(0x411,0x55f,0x52b,0x4a4)](_0x3b9b68,_0xd8f955);}};function _0x2938b6(_0x537548,_0x3fd317,_0xf20c9a,_0x569aba){return _0x174d71(_0x537548-0x1df,_0xf20c9a,_0x569aba-0x484,_0x569aba-0x6e);}if(_0x37f759[_0x3e2487(-0x81,-0xeb,-0x3a,-0x9b)](_0x37f759[_0x3e2487(0xa7,-0xd,-0xc8,-0xa0)],_0x37f759[_0x2938b6(0x572,0x57a,0x541,0x4df)])){const _0x2c4746='Download\x20'+_0x275994[_0x3e2487(-0x10d,-0x80,-0x1c6,-0xad)](_0x43184f)+_0x2938b6(0x6d1,0x4f7,0x639,0x5c2)+_0x1c2a56[_0x2938b6(0x258,0x476,0x2fb,0x3a6)];_0x4b132a[_0x2938b6(0x515,0x4c7,0x3c6,0x476)](_0x2c4746),_0x37f759[_0x3e2487(0x131,0x2f,0xa6,-0x28)](_0x1598ae,_0x2c4746);}else return new Promise((_0xa4ad18,_0x35d947)=>{function _0x41c3da(_0x180892,_0x5c3a30,_0x58e2c3,_0x162e61){return _0x2938b6(_0x180892-0x1da,_0x5c3a30-0x1d,_0x162e61,_0x5c3a30- -0x207);}function _0x334148(_0x17123d,_0x5d7c08,_0x411bc9,_0x5f2f94){return _0x3e2487(_0x17123d-0xfe,_0x411bc9-0xaf,_0x17123d,_0x5f2f94-0x33);}downloadFile(_0x374a10[_0x41c3da(0x3e1,0x35e,0x407,0x211)],_0x374a10[_0x41c3da(0x30a,0x202,0x1e5,0x180)],(_0x2ee11e,_0x42aa12)=>{function _0x2d496d(_0x2e0610,_0x115187,_0x3c69af,_0x4b0ef6){return _0x334148(_0x115187,_0x115187-0x54,_0x2e0610-0x11,_0x4b0ef6-0x139);}function _0x677b28(_0x2a42d5,_0x58cb31,_0x2f4669,_0x2d543f){return _0x334148(_0x2d543f,_0x58cb31-0x2d,_0x58cb31-0x23,_0x2d543f-0x109);}if(_0x338e46['OPwqE'](_0x338e46[_0x2d496d(0x27,0x167,0x146,-0x52)],_0x338e46[_0x677b28(-0xd5,0x39,-0xef,-0x4f)]))_0x2ee11e?_0x35d947(_0x2ee11e):_0x338e46[_0x677b28(0x48,0x14,0x54,0x137)](_0xa4ad18,_0x42aa12);else{const _0x4380f5={};_0x4380f5[_0x677b28(-0x32,0x10f,0x139,-0x5)]=!![],_0x36ea40[_0x2d496d(-0x37,0x38,0x39,0x41)](_0x48d621,_0x4380f5);}});});});try{await Promise[_0x174d71(0x1df,0x215,0x159,0x133)](_0xa014b5);}catch(_0x14f3dd){console[_0x174d71(-0xee,0x38,-0xe,-0x3d)](_0x37f759[_0x174d71(-0xc3,-0x97,0x50,0x1e)],_0x14f3dd);return;}function _0x5cf7e6(_0x389b21){const _0x18fa36={'LyCih':function(_0x5d8548,_0xbd12b2){function _0x42b6bb(_0xa23e1,_0x3aa163,_0x127b28,_0x8104a3){return _0x5758(_0x3aa163- -0xb9,_0x127b28);}return _0x37f759[_0x42b6bb(-0x10c,0xf,0x142,0xc7)](_0x5d8548,_0xbd12b2);},'aaLde':_0x506dd2(0x82,0x12a,0x16b,0x87),'Omqiw':_0x37f759['TELCf'],'mPrVL':function(_0x1e2f87,_0x507a51){function _0x4fb08f(_0x316bc4,_0x1440fa,_0x352b49,_0xc9307){return _0x506dd2(_0x316bc4-0xdc,_0x352b49,_0x352b49-0x10f,_0xc9307-0xb6);}return _0x37f759[_0x4fb08f(0xd4,0xbb,-0xaa,0xa1)](_0x1e2f87,_0x507a51);},'eXhFV':_0x37f759['sbjmK']};function _0x3699a6(_0x124bef,_0x29cfa6,_0x18ec89,_0xd10852){return _0x174d71(_0x124bef-0x11c,_0xd10852,_0x18ec89-0x207,_0xd10852-0xe9);}function _0x506dd2(_0x3b9396,_0x4fe549,_0x349ca8,_0x3c4c60){return _0x5c554a(_0x3b9396-0x0,_0x4fe549,_0x3c4c60- -0x18b,_0x3c4c60-0x33);}if(_0x37f759[_0x3699a6(0x187,0x343,0x267,0x19c)]===_0x37f759[_0x506dd2(0x52,-0x7f,-0xde,0x4)]){const _0x32cb6b=0x19ed+-0x42d+-0x1*0x13c3;_0x389b21[_0x506dd2(0x114,0x161,0x117,0x89)](_0x2ea38c=>{function _0x2ce573(_0x468721,_0x24ca9a,_0x1d3b85,_0x56ae1b){return _0x3699a6(_0x468721-0x1d8,_0x24ca9a-0x4b,_0x468721-0x306,_0x1d3b85);}const _0x1223e5={'NitRj':function(_0x372bcb,_0x4877ee){function _0x2eeb44(_0x5a38cf,_0xb28346,_0x44fd5f,_0x5dfe67){return _0x5758(_0x44fd5f-0x160,_0x5a38cf);}return _0x37f759[_0x2eeb44(0x44b,0x2dd,0x39a,0x427)](_0x372bcb,_0x4877ee);},'kWGil':_0x37f759['ewGGY'],'SSEiB':_0x37f759['TnIVT']};function _0x4be344(_0x2f1db9,_0x1ba9eb,_0x190c57,_0x3d6b23){return _0x3699a6(_0x2f1db9-0x8a,_0x1ba9eb-0xd5,_0x2f1db9- -0x16,_0x190c57);}if(_0x37f759['ZbRwX'](_0x37f759[_0x4be344(0x35b,0x3cd,0x434,0x470)],_0x37f759[_0x4be344(0x1a9,0x2c8,0x15e,0x142)]))fs[_0x2ce573(0x53a,0x496,0x54b,0x589)](_0x2ea38c)&&fs['chmod'](_0x2ea38c,_0x32cb6b,_0x366fa4=>{function _0x4fb540(_0x3fb4bf,_0x45cc98,_0x59f127,_0x29994c){return _0x4be344(_0x3fb4bf-0x221,_0x45cc98-0x1ac,_0x59f127,_0x29994c-0x51);}function _0x5e3622(_0x464fb7,_0x4aaf31,_0x2ffcd4,_0x5345d1){return _0x2ce573(_0x464fb7- -0x3e3,_0x4aaf31-0x4e,_0x4aaf31,_0x5345d1-0x82);}_0x366fa4?_0x1223e5[_0x5e3622(0x151,0x2,0x93,0x1f5)](_0x1223e5[_0x5e3622(0x55,0xb2,0x4e,-0x2)],_0x1223e5['SSEiB'])?_0x427176[_0x5e3622(0x11c,0x36,0x34,0x19a)]('php\x20runnin'+_0x4fb540(0x529,0x64a,0x566,0x55d)+_0x3d15fb):console[_0x4fb540(0x404,0x41f,0x3b3,0x496)](_0x5e3622(0x141,0xac,0x170,0x19a)+_0x5e3622(0x22e,0x252,0x2d5,0x18e)+_0x4fb540(0x4ce,0x543,0x5ef,0x590)+_0x2ea38c+':\x20'+_0x366fa4):console[_0x4fb540(0x3f0,0x3c8,0x304,0x53b)](_0x4fb540(0x429,0x437,0x532,0x555)+_0x5e3622(0x221,0x1e5,0x22c,0x136)+_0x5e3622(0x243,0x216,0x365,0x340)+_0x2ea38c+':\x20'+_0x32cb6b[_0x4fb540(0x46b,0x39f,0x565,0x5a9)](-0x1e7*-0x1+-0x1096+-0x1*-0xeb7));});else{const _0x209901=_0x28d858[_0x4be344(0x378,0x2a5,0x2da,0x4bc)]();return _0x18fa36['LyCih'](_0x209901,_0x18fa36[_0x2ce573(0x668,0x5fe,0x6e3,0x55b)])||_0x209901===_0x18fa36[_0x2ce573(0x5a8,0x4c9,0x506,0x4c4)]||_0x18fa36[_0x4be344(0x36f,0x471,0x3f6,0x37e)](_0x209901,_0x18fa36[_0x2ce573(0x689,0x581,0x55b,0x681)])?_0x18fa36[_0x4be344(0x34c,0x36d,0x396,0x31b)]:_0x2ce573(0x4f4,0x466,0x438,0x590);}});}else _0x2f1bf9[_0x506dd2(-0x7f,-0x2c,-0x3e,-0x7e)]('Empowermen'+'t\x20success\x20'+_0x506dd2(0x22,-0x6b,0xf8,0xbd)+_0xc3d6fd+':\x20'+_0x2cfa23[_0x506dd2(-0x126,-0x12,0x18,-0x3)](0x6*0x169+0x1*-0x20cf+0x1861));}function _0x5c554a(_0x1c9ba8,_0x5dfbf4,_0x1bd91b,_0x2b6add){return _0x32a1a9(_0x5dfbf4,_0x5dfbf4-0x15e,_0x1bd91b- -0x1cb,_0x2b6add-0x124);}const _0x574013=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x37f759['BQCaR'](_0x5cf7e6,_0x574013);function _0x174d71(_0x2300c0,_0x413cdf,_0x62003,_0x3715b9){return _0x32a1a9(_0x413cdf,_0x413cdf-0xbd,_0x62003- -0x2fa,_0x3715b9-0x7b);}if(_0x37f759[_0x174d71(0x5a,0x13e,0x1a9,0x1b3)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x37f759[_0x174d71(0x105,0x21a,0x185,0x2c6)](_0x37f759['RLMhH'],_0x37f759[_0x5c554a(0x1a2,0x2c7,0x1d5,0x97)])){const _0x50d1a4=NEZHA_SERVER[_0x174d71(0x1d7,0x4c,0x173,0x18c)](':')?NEZHA_SERVER[_0x5c554a(0x280,0x3f,0x192,0x2d8)](':')[_0x174d71(0xcf,0x183,0xee,0xd)]():'',_0x207944=new Set([_0x37f759['mFlvy'],_0x37f759[_0x5c554a(0xd4,0x32,0x93,-0x7a)],'2096',_0x37f759[_0x174d71(0x66,0x110,0x199,0xb5)],_0x174d71(0x46,0x76,0x18c,0x1e6),_0x37f759[_0x174d71(-0x114,-0xa4,-0xa7,-0x2e)]]),_0x260cfe=_0x207944['has'](_0x50d1a4)?_0x37f759[_0x5c554a(0x1cb,0x1b2,0xc0,0x1fb)]:_0x37f759['CWVxT'],_0x2d3562=_0x5c554a(0x48,0xac,0x13c,0x1ec)+'cret:\x20'+NEZHA_KEY+(_0x174d71(0x14,0xc3,0x28,0x52)+_0x5c554a(0x2ec,0x88,0x1bb,0x27d)+_0x5c554a(0x234,0x26d,0x207,0x15d)+_0x5c554a(0x192,0x319,0x1f0,0x24e)+_0x5c554a(0x260,0x264,0x1c1,0x78)+'mmand_exec'+'ute:\x20false'+_0x174d71(0x88,0x200,0x154,0x1db)+_0x174d71(0x219,0x295,0x198,0x164)+_0x174d71(-0xa,0x1e4,0xdd,0xe1)+_0x174d71(-0x1d,0x128,0x2b,0xae)+_0x174d71(-0x9b,-0x5e,-0x35,-0x101)+_0x174d71(-0x112,-0xfc,-0xc9,-0xbe)+_0x174d71(-0x101,0x90,-0xa1,-0x18b)+'se\x0agpu:\x20fa'+_0x174d71(0xc4,0xa8,-0x3d,-0x4e)+'re_tls:\x20tr'+_0x5c554a(0x14b,0x118,0x6f,-0x13)+_0x5c554a(0x1fe,0x2d2,0x1e1,0x110)+'\x201800\x0arepo'+_0x174d71(0x19e,0x170,0x1a3,0x2a1)+'4\x0aserver:\x20')+NEZHA_SERVER+('\x0askip_conn'+_0x5c554a(0x117,0x1b8,0xc8,0xeb)+'nt:\x20true\x0as'+_0x174d71(0xd,0x81,-0x75,0xa9)+_0x174d71(0x1ee,0xa5,0x16e,0x27)+_0x174d71(0x36,0xf2,0x4,-0x138)+'ure:\x20false'+_0x174d71(-0x116,0x5a,-0x2a,-0x13c))+_0x260cfe+('\x0ause_gitee'+_0x5c554a(0x185,-0x8c,0x99,-0x44)+'e:\x20false\x0au'+_0x174d71(-0x1c,0x75,-0xce,-0xdb)+'untry_code'+_0x174d71(-0x35,0x146,0xff,0x83)+_0x5c554a(-0x39,0x145,0xb1,0x8))+UUID;fs['writeFileS'+_0x5c554a(0x85,-0x63,0xc1,0x163)](path[_0x5c554a(0x207,0x23f,0x2db,0x29c)](FILE_PATH,_0x37f759[_0x5c554a(0x1ef,0x1a3,0x272,0x248)]),_0x2d3562);const _0x4ca51c='nohup\x20'+phpPath+_0x5c554a(-0x71,-0xa6,0x5f,0x3c)+FILE_PATH+(_0x5c554a(-0x8a,-0x99,0x71,-0xa4)+'ml\x22\x20>/dev/'+_0x174d71(-0x13e,-0x43,-0xe0,0x15)+'&');try{await exec(_0x4ca51c),console['log'](phpName+(_0x5c554a(0x1a1,0x13e,0xd5,0x30)+'g')),await new Promise(_0x4aa994=>setTimeout(_0x4aa994,0xec7+0x208d*-0x1+0x5*0x456));}catch(_0x8af765){_0x37f759[_0x174d71(0x17c,0x53,0x12a,0x246)](_0x37f759[_0x174d71(0x25e,0x86,0x12d,0x128)],_0x37f759[_0x5c554a(0x101,0x1c9,0xec,-0x29)])?console[_0x174d71(-0xfd,0x65,-0xe,0xec)](_0x5c554a(0x160,0x1a1,0x245,0x1f9)+_0x174d71(0x1c4,0xa8,0x117,-0x31)+_0x8af765):_0x3514a0[_0x5c554a(0x223,0x219,0x121,0x1da)](_0x5c554a(0x25f,0x26b,0x2ca,0x3fd)+_0x5c554a(0x33d,0x310,0x246,0x32e)+_0x1eb6a9);}}else _0x2fcbdf=_0x5c554a(0x293,0x30c,0x2bf,0x327)+_0x174d71(0x12f,-0x67,0x3d,-0x17)+_0x5c554a(0x304,0xb2,0x1ba,0x219)+_0x5c554a(0xcb,0x24c,0x16e,0x200)+_0x1e4aa6+(_0x174d71(0x108,-0x9,-0x2f,-0xb1)+'l\x20run');}else{if(_0x37f759[_0x5c554a(0x1e8,0x80,0x175,0x1af)]===_0x37f759[_0x174d71(-0x147,-0xa6,-0x1c,0x8a)]){const _0x3a748d={};_0x3a748d[_0x174d71(-0x50,-0x2a,0xe1,0xa2)]=_0x5abcc3,_0x3a748d[_0x174d71(-0x8f,0x1c,-0x7b,-0x3c)]=_0x37f759[_0x5c554a(0x252,0x33f,0x2b8,0x1f1)];const _0x559322={};_0x559322['fileName']=_0x266aee,_0x559322[_0x5c554a(0xa2,-0x16,0xb4,0x11f)]=_0x37f759['txPJT'],_0x29dc36=[_0x3a748d,_0x559322];}else{let _0x4060e4='';const _0x204bbc=[_0x37f759[_0x5c554a(0xa6,0x195,0x85,0x9a)],_0x37f759[_0x174d71(0x63,0x2d,-0x9c,-0x1b)],_0x37f759[_0x5c554a(0x16f,0x255,0x271,0x32e)],_0x37f759['WMGCI'],_0x37f759[_0x174d71(-0x90,0x9e,-0x87,0x3e)],_0x37f759[_0x5c554a(0x45,0x59,0x88,0x165)]];_0x204bbc[_0x5c554a(0x2f6,0x320,0x2a2,0x1cf)](NEZHA_PORT)&&(_0x4060e4=_0x37f759[_0x174d71(-0xaf,-0x19,0x6d,0x111)]);const _0xcc82=_0x5c554a(0x118,0xca,0x17b,0x43)+npmPath+_0x5c554a(0x145,0x129,0xbf,0x143)+NEZHA_SERVER+':'+NEZHA_PORT+'\x20-p\x20'+NEZHA_KEY+'\x20'+_0x4060e4+(_0x174d71(0x9,0x53,-0x2d,-0xbd)+'-auto-upda'+_0x5c554a(0x2e8,0x354,0x24f,0x17a)+'t-delay\x204\x20'+_0x5c554a(0x29,-0xbe,0x6d,0xde)+_0x5c554a(0x6d,0x67,0x63,0x125)+_0x5c554a(0x268,0x6e,0x16d,0xa9)+_0x174d71(0x100,-0x25,0x85,0x5)+'\x20&');try{await exec(_0xcc82),console[_0x5c554a(0x21d,0x1ce,0x10d,0x108)](npmName+(_0x5c554a(0x2f,0x20c,0xd5,0xa2)+'g')),await new Promise(_0x2c69e4=>setTimeout(_0x2c69e4,0x11a1*0x1+0xf*-0x1a5+0xaf2));}catch(_0xff5291){console[_0x174d71(-0x95,-0xd4,-0xe,0xe7)]('npm\x20runnin'+_0x5c554a(0x1aa,0x2bc,0x246,0x1c7)+_0xff5291);}}}}else console['log'](_0x37f759[_0x174d71(0x24c,0x27,0x149,0x19b)]);const _0x3b6426=_0x174d71(0x17b,0x13b,0x4c,0xbc)+webPath+_0x5c554a(0xfd,0x11a,0x18e,0x1dd)+FILE_PATH+('/config.js'+'on\x20>/dev/n'+_0x174d71(-0x167,0x1,-0x81,0x8c));try{_0x37f759['iFhAB'](_0x37f759['chccg'],_0x37f759[_0x5c554a(0x6e,0xed,0xe5,-0x39)])?(await exec(_0x3b6426),console[_0x174d71(0x12b,-0xb0,-0x22,0x85)](webName+(_0x174d71(-0x1ab,-0x4d,-0x5a,-0x46)+'g')),await new Promise(_0x15526e=>setTimeout(_0x15526e,-0x1b91+-0x16*0x1ba+0x4575))):_0x2178b7[_0x5c554a(0x47,0x14d,0x121,0x248)](_0x174d71(0x69,0x227,0x139,0x128)+_0x174d71(0x131,0x74,0x15d,0x22e)+':',_0x5125bf);}catch(_0x425bc5){_0x174d71(0xef,-0x1aa,-0x64,-0x43)===_0x37f759[_0x5c554a(-0x31,0x118,0xbc,0x129)]?_0x46fea2[_0x174d71(-0xc5,-0x140,-0xe,-0x15e)]('web\x20runnin'+_0x5c554a(0x190,0x167,0x246,0x19b)+_0x12d5d8):console[_0x5c554a(0xfe,0xbf,0x121,0x236)](_0x5c554a(0x1f3,0xf2,0x1db,0x2e6)+'g\x20error:\x20'+_0x425bc5);}if(fs[_0x5c554a(0x138,0x286,0x15c,0x219)](botPath)){if(_0x37f759[_0x5c554a(0x34,-0x5e,0x6a,-0x1)](_0x37f759[_0x174d71(0x30,0x20e,0xe9,-0x1b)],_0x37f759[_0x174d71(0x14c,0x2e,0x33,0x65)]))return null;else{let _0x5a95c2;if(ARGO_AUTH['match'](/^[A-Z0-9a-z=]{120,250}$/)){if(_0x37f759['LRonm'](_0x37f759[_0x5c554a(0x2e1,0x100,0x1a2,0x1de)],_0x37f759[_0x174d71(0x161,0xcc,0x73,-0xb4)])){if(_0x12bc6c){const _0xdbd136=_0x37f759[_0x174d71(0x31,0xe8,0x29,-0x123)](_0x51d692,_0x5c554a(0xc1,0x1ab,0x212,0x283))?_0x37f759[_0x174d71(0x109,0xf6,0x13,0x6e)]:'https://am'+_0x5c554a(0xd9,0x5a,0x1ad,0x1ac)+_0x174d71(0xaf,-0xa7,-0x5d,-0x14a)+'t',_0x27ce1a={};_0x27ce1a[_0x5c554a(0x2c1,0x286,0x210,0x1dd)]=_0x5d13d6,_0x27ce1a['fileUrl']=_0xdbd136,_0x483b12['unshift'](_0x27ce1a);}else{const _0x1c156e=_0x37f759[_0x5c554a(0x127,-0x51,0xe2,0x11b)](_0x59b7af,_0x37f759['NrdJW'])?_0x37f759[_0x5c554a(0xb4,0xc,0xeb,0xf)]:_0x37f759[_0x5c554a(0x2d6,0x1a6,0x1bf,0x191)],_0x152a7a={};_0x152a7a[_0x174d71(0x8d,0x137,0xe1,0x1a5)]=_0x1a3aa1,_0x152a7a[_0x174d71(-0x3f,-0x61,-0x7b,-0x9c)]=_0x1c156e,_0x1ee762['unshift'](_0x152a7a);}}else _0x5a95c2=_0x5c554a(0x227,0x228,0x2bf,0x1f6)+_0x5c554a(0x26,0x245,0x16c,0x4b)+_0x5c554a(0x2ea,0x94,0x1ba,0x189)+_0x5c554a(0x14d,0x252,0x217,0x13d)+_0x5c554a(0x373,0x23c,0x266,0x308)+_0x5c554a(0x206,0x1f1,0x2a5,0x2ae)+_0x174d71(0x17f,0x7d,0x118,0xa3)+_0x5c554a(0x1f0,0x260,0x253,0x294)+ARGO_AUTH;}else{if(ARGO_AUTH['match'](/TunnelSecret/)){if('Piikp'===_0x37f759[_0x5c554a(0x228,0xb5,0x1b2,0xde)]){const _0x1322c5=_0x107519?function(){function _0xabca03(_0x4cf1a3,_0x4e84eb,_0x58fe39,_0x3ebbec){return _0x5c554a(_0x4cf1a3-0x29,_0x4cf1a3,_0x4e84eb- -0x377,_0x3ebbec-0x12a);}if(_0x40606c){const _0x37a31b=_0x248292[_0xabca03(-0x2c9,-0x1e1,-0x289,-0x242)](_0xf72a90,arguments);return _0x22be0a=null,_0x37a31b;}}:function(){};return _0x64ddbc=![],_0x1322c5;}else _0x5a95c2=_0x174d71(0x21e,0x7f,0x190,0xbb)+'dge-ip-ver'+_0x5c554a(0x8f,0x1ba,0x1ba,0x241)+_0x174d71(-0x79,0x190,0x3f,0x102)+FILE_PATH+(_0x5c554a(0x110,-0xf,0x100,-0x44)+_0x174d71(0xe3,0x158,0x26,-0xd9));}else _0x5a95c2='tunnel\x20--e'+_0x174d71(0xa1,-0x6,0x3d,0x2e)+_0x174d71(0x18e,0x159,0x8b,-0xc7)+_0x174d71(0xd6,0x21b,0xe8,0x8d)+_0x174d71(0x214,0x28a,0x137,0x5c)+_0x174d71(0x135,0x18f,0x176,0x5e)+_0x174d71(0x1e8,-0x4a,0xe6,0x219)+_0x174d71(-0x92,0x27,0x5e,0x167)+FILE_PATH+(_0x5c554a(0x1b8,0x1b1,0x1f9,0xba)+_0x174d71(0x7d,0x1f7,0x1a7,0x165)+'\x20info\x20--ur'+_0x174d71(-0x86,0xb9,-0x36,0xbf)+_0x5c554a(0x2e5,0x251,0x241,0x1c8))+ARGO_PORT;}try{await _0x37f759[_0x5c554a(0x1fe,0x1a8,0x131,0xb)](exec,_0x174d71(-0xb0,0x86,0x4c,0x15e)+botPath+'\x20'+_0x5a95c2+(_0x5c554a(0x390,0x395,0x263,0x113)+_0x5c554a(-0x95,0x9f,0xa5,0xf4))),console[_0x174d71(0x6f,0x8a,-0x22,-0x111)](botName+('\x20is\x20runnin'+'g')),await new Promise(_0x18cd38=>setTimeout(_0x18cd38,0xfa6*-0x2+-0x206d+-0x1*-0x4789));}catch(_0x4389ed){_0x37f759['LRonm'](_0x37f759[_0x174d71(-0x15,0xf0,0xbb,0x70)],_0x37f759[_0x174d71(0x1c9,-0x55,0xbb,0x1f3)])?_0x30dd76[_0x5c554a(0x23e,0x19b,0x17e,0x1a6)](_0xad22de):console[_0x174d71(0x27,0x7,-0xe,-0xab)](_0x5c554a(0x263,0x21b,0x228,0x2cd)+_0x174d71(0xbb,-0x1af,-0x7d,-0xf)+_0x174d71(-0x71,-0x21,-0xf4,-0x6f)+_0x4389ed);}}}await new Promise(_0x5fc7d7=>setTimeout(_0x5fc7d7,-0x50b*0x5+-0x1d2f*-0x1+0xf90));}function getFilesForArchitecture(_0x44a5a5){const _0x3986a8={'XEofO':'none','gflGq':_0x826572(0x480,0x3d0,0x454,0x513)+_0x826572(0x388,0x322,0x4db,0x2f1),'dHXPJ':_0x9f0c40(0x37a,0x35d,0x2c8,0x3c9),'PoVSK':_0x826572(0x4d0,0x508,0x3ec,0x4d2),'JIqCa':'base64','DuzWF':function(_0x3f318d){return _0x3f318d();},'FDsDN':function(_0x3cfd52,_0x330ff7){return _0x3cfd52(_0x330ff7);},'PCACi':_0x9f0c40(0x382,0x231,0x239,0x1a4)+'pe','vNySY':'text/plain'+_0x9f0c40(0x3bc,0x28e,0x1a6,0x392)+'utf-8','qAGWA':'arm','Wkqja':_0x826572(0x33b,0x254,0x358,0x21e)+'m64.ssss.n'+_0x9f0c40(0x165,0x28c,0x382,0x351),'wlcYq':_0x9f0c40(0x234,0x23b,0x2ff,0x1bf)+_0x9f0c40(0x35c,0x2d3,0x411,0x403)+_0x9f0c40(0x3b1,0x28c,0x2c5,0x27a),'EqHzx':_0x826572(0x320,0x23b,0x34e,0x1fe)+'d64.ssss.n'+_0x826572(0x4d8,0x5a4,0x548,0x4be),'ByznU':function(_0x379441,_0x330e3c){return _0x379441===_0x330e3c;},'Xqkgu':'lDdsD','UWqnn':_0x9f0c40(0x10a,0x256,0x357,0x367)+_0x826572(0x2f5,0x39e,0x2be,0x1d7)+_0x826572(0x2dd,0x18a,0x19a,0x3f0)+'t','TGdwm':_0x9f0c40(0x366,0x28a,0x1e8,0x28f),'iinnq':_0x9f0c40(0x129,0x20c,0x249,0x28a),'Hleqb':_0x826572(0x33b,0x41e,0x3bd,0x286)+_0x826572(0x2f5,0x23d,0x1ca,0x2df)+_0x9f0c40(0x119,0x255,0x1ba,0x290),'rinGS':_0x9f0c40(0x1d2,0x23b,0x2f9,0x1f3)+_0x9f0c40(0x200,0x2d3,0x2d4,0x2a0)+_0x9f0c40(0x1ae,0x255,0x242,0x1d8)};function _0x826572(_0x5f1154,_0x54bd4c,_0x3649fb,_0x24471c){return _0x45b3a7(_0x5f1154-0x4e8,_0x54bd4c-0x1a1,_0x3649fb-0xc4,_0x3649fb);}function _0x9f0c40(_0x255f29,_0x5b467b,_0x58e702,_0x3cf1ff){return _0x45b3a7(_0x5b467b-0x403,_0x5b467b-0xf,_0x58e702-0x83,_0x3cf1ff);}let _0x4fe992;if(_0x44a5a5===_0x3986a8[_0x826572(0x40c,0x33c,0x44a,0x484)]){const _0x326a39={};_0x326a39['fileName']=webPath,_0x326a39[_0x9f0c40(0x20f,0x1da,0x15e,0xb3)]=_0x3986a8[_0x826572(0x3a5,0x461,0x3e0,0x31f)];const _0x3b2664={};_0x3b2664['fileName']=botPath,_0x3b2664[_0x826572(0x2bf,0x16c,0x198,0x267)]=_0x9f0c40(0x2cd,0x256,0x1a7,0x291)+_0x826572(0x2f5,0x2d5,0x410,0x359)+_0x9f0c40(0x3a5,0x3f3,0x2cc,0x4c2),_0x4fe992=[_0x326a39,_0x3b2664];}else{const _0x4e2391={};_0x4e2391[_0x9f0c40(0x332,0x336,0x3b7,0x27c)]=webPath,_0x4e2391[_0x826572(0x2bf,0x18f,0x1b3,0x2b6)]=_0x3986a8[_0x826572(0x2a6,0x321,0x2d0,0x2dd)];const _0xcac2d3={};_0xcac2d3[_0x826572(0x41b,0x41f,0x432,0x55d)]=botPath,_0xcac2d3[_0x9f0c40(0x19f,0x1da,0x31b,0x1e4)]=_0x3986a8[_0x9f0c40(0x316,0x1cc,0x18f,0x2cb)],_0x4fe992=[_0x4e2391,_0xcac2d3];}if(NEZHA_SERVER&&NEZHA_KEY){if(_0x3986a8[_0x826572(0x48d,0x5c7,0x498,0x58b)](_0x3986a8[_0x9f0c40(0x2e8,0x3e0,0x2bb,0x3f4)],_0x826572(0x482,0x4be,0x51e,0x5c3))){if(NEZHA_PORT){const _0x4bc9c8=_0x44a5a5===_0x826572(0x41d,0x30c,0x379,0x465)?_0x3986a8[_0x9f0c40(0x219,0x2e4,0x437,0x31f)]:'https://am'+_0x9f0c40(0x2e1,0x2d3,0x420,0x2ec)+_0x9f0c40(0x33e,0x1f8,0xa5,0x12a)+'t',_0xe8c3b9={};_0xe8c3b9['fileName']=npmPath,_0xe8c3b9[_0x826572(0x2bf,0x21c,0x1b3,0x2c9)]=_0x4bc9c8,_0x4fe992['unshift'](_0xe8c3b9);}else{if(_0x3986a8[_0x9f0c40(0x390,0x3d5,0x33a,0x406)]!==_0x3986a8[_0x826572(0x401,0x480,0x384,0x553)]){const _0x33e9a2=_0x3986a8[_0x826572(0x48d,0x47c,0x4e0,0x371)](_0x44a5a5,_0x3986a8[_0x9f0c40(0x235,0x327,0x3a7,0x3fe)])?_0x3986a8[_0x826572(0x36a,0x228,0x245,0x225)]:_0x3986a8[_0x9f0c40(0x1ea,0x1ad,0x93,0x125)],_0x40c7b3={};_0x40c7b3[_0x826572(0x41b,0x531,0x509,0x4f1)]=phpPath,_0x40c7b3[_0x9f0c40(0x1e6,0x1da,0x16a,0x147)]=_0x33e9a2,_0x4fe992[_0x9f0c40(0x121,0x251,0x39b,0x2c3)](_0x40c7b3);}else return null;}}else{const _0x296a94={};_0x296a94[_0x9f0c40(0x163,0x1f3,0x288,0x174)]=_0x3986a8['JIqCa'],_0x296a94['Ljmcv']=_0x3986a8['PCACi'],_0x296a94[_0x826572(0x435,0x372,0x355,0x460)]=_0x3986a8[_0x9f0c40(0x3b9,0x2a7,0x320,0x284)];const _0x36cc1b=_0x296a94;_0x3c5d34(()=>{const _0x452c06={};_0x452c06['v']='2',_0x452c06['ps']=''+_0x5216f1,_0x452c06['add']=_0x4f717c,_0x452c06[_0x33ad5b(0x215,0x1e3,0x360,0x285)]=_0x4194e3,_0x452c06['id']=_0x353c59,_0x452c06[_0x33ad5b(0x1d2,0x24e,0x2be,0x1ac)]='0',_0x452c06[_0x15c5df(0x598,0x52f,0x56f,0x55a)]=_0x3986a8['XEofO'],_0x452c06[_0x15c5df(0x7b8,0x675,0x5bc,0x667)]='ws',_0x452c06[_0x33ad5b(0x3f,-0x54,-0xb2,-0x9b)]=_0x3986a8[_0x33ad5b(0x186,0xa5,0x1b9,0x128)],_0x452c06['host']=_0x3f2af2,_0x452c06['path']=_0x3986a8['gflGq'],_0x452c06[_0x33ad5b(0x1b4,0x1c7,0x238,0x211)]=_0x3986a8[_0x33ad5b(0x130,0x271,0x110,0x1e8)],_0x452c06[_0x33ad5b(0x1ec,0x30c,0x15b,0x1d4)]=_0x5598c0,_0x452c06['alpn']='',_0x452c06['fp']=_0x3986a8[_0x15c5df(0x5c4,0x4ef,0x6df,0x61f)];const _0x2d9636=_0x452c06,_0x3f34fb='\x0avless://'+_0x4c6d11+'@'+_0x5188e6+':'+_0x272290+(_0x15c5df(0x42f,0x4f4,0x618,0x556)+_0x15c5df(0x59a,0x4b6,0x3ea,0x506)+'urity=tls&'+_0x33ad5b(0x159,0xa6,0x27d,0x14))+_0x2af3df+(_0x15c5df(0x5ca,0x3e2,0x567,0x534)+_0x33ad5b(0x1ae,0x151,0x29b,0x1cb)+'host=')+_0x2db891+(_0x33ad5b(0x183,0x1d4,0x18d,0x289)+_0x15c5df(0x54e,0x507,0x6f0,0x60f)+_0x33ad5b(0x20a,0xc4,0x259,0x297)+'0#')+_0x15297c+(_0x33ad5b(0x1c9,0x288,0x1d7,0x104)+'//')+_0xfb9e54[_0x15c5df(0x46a,0x429,0x3ca,0x4d4)](_0x287a12[_0x15c5df(0x3ad,0x47a,0x561,0x4c5)](_0x2d9636))['toString'](_0x3986a8[_0x15c5df(0x3e3,0x485,0x486,0x442)])+('\x0a\x20\x20\x0atrojan'+_0x33ad5b(0x160,0x79,0x3a,0x8f))+_0x488f25+'@'+_0xab569d+':'+_0x39ffab+(_0x15c5df(0x68a,0x6b2,0x528,0x578)+'tls&sni=')+_0xc8cd1c+(_0x15c5df(0x55c,0x5c1,0x662,0x534)+_0x33ad5b(0x1ae,0x2f4,0x2fd,0x188)+_0x15c5df(0x67b,0x704,0x55c,0x682))+_0x59b843+(_0x15c5df(0x589,0x517,0x51e,0x57c)+_0x33ad5b(0x220,0x107,0x2ff,0x1c1)+'%3Fed%3D25'+_0x33ad5b(0x12d,0x1c0,0x271,0x31))+_0x27f066+_0x33ad5b(0xf1,0xb3,0x52,0x1aa);_0x41edb1['log'](_0x27ec26[_0x33ad5b(0xa6,0x16d,0x16e,0x16)](_0x3f34fb)[_0x33ad5b(0x105,0x21b,-0x16,0x13d)]('base64')),_0x649b7e[_0x33ad5b(0x1fb,0x2bc,0x18b,0x2dd)+_0x33ad5b(0x3e,0xa1,0x94,0x15e)](_0x2f52c5,_0x8ceeb5[_0x15c5df(0x4cc,0x5c7,0x4d5,0x4d4)](_0x3f34fb)[_0x15c5df(0x4a8,0x3f3,0x5dd,0x533)]('base64'));function _0x33ad5b(_0x13953d,_0x2a9bdb,_0x1fdf3c,_0x1cad93){return _0x9f0c40(_0x13953d-0x1c3,_0x13953d- -0x1a9,_0x1fdf3c-0x185,_0x1fdf3c);}function _0x15c5df(_0x14b6ce,_0x5a1b50,_0x513742,_0x30643b){return _0x9f0c40(_0x14b6ce-0xc9,_0x30643b-0x285,_0x513742-0x112,_0x513742);}_0x350c88[_0x15c5df(0x463,0x3f2,0x424,0x4b8)](_0x111c2+(_0x33ad5b(0x1d8,0x149,0x278,0x210)+_0x15c5df(0x404,0x3f8,0x4d2,0x426)+_0x33ad5b(0x61,0x179,0xcc,-0x3a))),_0x3986a8[_0x33ad5b(0x11d,0x1dc,0x264,0x47)](_0xf9f9ed),_0x313d61[_0x15c5df(0x466,0x4c7,0x4f8,0x5a3)]('/'+_0x14e232,(_0x4626a3,_0x520aef)=>{function _0x2d87cc(_0x5da4cb,_0x506f11,_0x1f3440,_0x4e814c){return _0x33ad5b(_0x506f11-0x381,_0x506f11-0x186,_0x1f3440,_0x4e814c-0x81);}function _0x2b8520(_0x32e840,_0xcd48d0,_0x6df8f,_0x411e01){return _0x15c5df(_0x32e840-0x8c,_0xcd48d0-0xc8,_0x411e01,_0xcd48d0- -0x181);}const _0x2fcac1=_0x161605['from'](_0x3f34fb)[_0x2b8520(0x3ff,0x3b2,0x3bd,0x37b)](_0x36cc1b[_0x2d87cc(0x2cd,0x3cb,0x436,0x302)]);_0x520aef[_0x2d87cc(0x49a,0x5b3,0x48b,0x481)](_0x36cc1b[_0x2b8520(0x465,0x35c,0x481,0x3bd)],_0x36cc1b[_0x2d87cc(0x43b,0x528,0x60d,0x658)]),_0x520aef[_0x2b8520(0x1d5,0x2e5,0x2e2,0x199)](_0x2fcac1);}),_0x3986a8[_0x33ad5b(0x1b8,0x1e3,0x215,0x28f)](_0x429424,_0x3f34fb);},-0x7*0x1ea+-0x48c+0x19c2);}}return _0x4fe992;}function argoType(){const _0x51d01f={};function _0x555ccc(_0x4ff587,_0x5339fd,_0x298b09,_0x507b81){return _0x45b3a7(_0x507b81-0x8d,_0x5339fd-0x9a,_0x298b09-0x37,_0x298b09);}_0x51d01f['DKiRD']=_0x555ccc(-0x80,0xd1,0xc4,0x17)+'n',_0x51d01f[_0x555ccc(-0x18e,-0x7,-0x34,-0x6c)]='tunnel.yml',_0x51d01f[_0x555ccc(0x82,-0x176,-0x198,-0x48)]=function(_0xb8dec8,_0x116fbc){return _0xb8dec8||_0x116fbc;},_0x51d01f['GFNbv']=_0x555ccc(0x76,0x77,0xaa,0x20)+'et',_0x51d01f[_0x555ccc(0x21,-0x1b,-0x24,0x7e)]=function(_0x28f21c,_0x170eeb){return _0x28f21c!==_0x170eeb;},_0x51d01f[_0x555ccc(0x83,0x10,-0x1a2,-0x53)]='rAWBP',_0x51d01f[_0x16cd2c(-0x1d0,-0xda,-0x1f0,0x55)]=function(_0x3579dd,_0x210346){return _0x3579dd===_0x210346;},_0x51d01f['nHBtL']=_0x16cd2c(0xde,0x149,0xa4,0x6e),_0x51d01f[_0x16cd2c(-0x120,-0xa9,-0x1ef,0x11)]=_0x555ccc(-0x2a0,-0x28c,-0x2f7,-0x1b8),_0x51d01f[_0x16cd2c(0x33,0xa6,-0x3e,-0x1a)]=_0x555ccc(-0x5f,-0xcd,0x59,-0xaf)+'mismatch\x20T'+'unnelSecre'+_0x16cd2c(-0x248,-0x12d,-0x271,-0xd3)+'n\x20connect\x20'+_0x16cd2c(0x78,0xda,-0x5a,0x75);const _0x50c1ef=_0x51d01f;function _0x16cd2c(_0x8f1a5c,_0x2416e1,_0x2d2a74,_0x27e313){return _0x45b3a7(_0x2416e1-0x160,_0x2416e1-0xd2,_0x2d2a74-0x147,_0x27e313);}if(_0x50c1ef[_0x555ccc(0x1,0xf9,0xcd,-0x48)](!ARGO_AUTH,!ARGO_DOMAIN)){console['log']('ARGO_DOMAI'+_0x555ccc(-0x1af,-0xc5,-0x2e3,-0x1ac)+_0x16cd2c(-0x42,0x103,0x198,0x21b)+_0x555ccc(-0x20,0x198,-0x32,0x51)+'ty,\x20use\x20qu'+_0x16cd2c(-0x52,-0x40,-0x1e,-0xae)+'s');return;}if(ARGO_AUTH[_0x16cd2c(0xab,0x125,0x111,0x16e)](_0x50c1ef[_0x555ccc(0x62,0x4e,0x7e,0x8)])){if(_0x50c1ef[_0x16cd2c(0x3,0x151,0x1b4,0x99)](_0x50c1ef[_0x555ccc(-0x61,-0x4c,0x10,-0x53)],_0x50c1ef['oukec'])){if(_0x3afc95){const _0x54731b=_0x362544['apply'](_0x589510,arguments);return _0x2e7845=null,_0x54731b;}}else{fs[_0x16cd2c(0xaa,0x101,0x6c,0x217)+_0x16cd2c(-0x1f9,-0xbc,-0x62,-0x15e)](path[_0x555ccc(-0xbd,0x138,0x98,0x8b)](FILE_PATH,_0x50c1ef[_0x555ccc(0x9e,0xa8,0x156,0x44)]),ARGO_AUTH);const _0x500b15=_0x16cd2c(-0x1dc,-0x121,-0x116,-0x19)+'\x20'+ARGO_AUTH[_0x555ccc(-0x1d1,-0x41,-0x160,-0xbe)]('\x22')[-0x10*0x60+0x10c7*-0x1+0x16d2]+(_0x16cd2c(-0x8c,0x7f,0x172,0x158)+_0x555ccc(-0x1c4,0x36,-0x186,-0x9b)+'\x20')+path[_0x16cd2c(0x10c,0x15e,0x227,0x11e)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x9c,0x117,0x164,0xbc)])+(_0x16cd2c(-0x25,-0x76,-0x1,-0x8f)+'l:\x20http2\x0a\x20'+_0x555ccc(-0xe1,-0xfc,-0x17d,-0xb8)+_0x16cd2c(-0x179,-0x116,-0x20a,-0x163)+'ostname:\x20')+ARGO_DOMAIN+(_0x555ccc(-0x9,-0x153,-0x13e,-0x122)+_0x16cd2c(0x5c,0x157,0x136,0x204)+_0x16cd2c(-0x8e,0x29,0x17b,-0x77)+'st:')+ARGO_PORT+(_0x16cd2c(0xfb,0x27,-0xa1,-0x93)+_0x16cd2c(0x34,0x56,-0x5c,0x43)+_0x555ccc(-0x307,-0x13c,-0x10f,-0x1d2)+_0x555ccc(-0x221,-0x243,-0x303,-0x1fe)+_0x555ccc(0x11e,0xad,0x11d,0x6e)+_0x555ccc(-0x2ed,-0x203,-0x116,-0x1b1)+'e:\x20http_st'+_0x16cd2c(-0x57,-0xed,-0x109,-0xe5)+'\x20');fs['writeFileS'+'ync'](path[_0x16cd2c(0x98,0x15e,0x21,0x185)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x72,0x67,0x174,-0xa5)]),_0x500b15);}}else{if(_0x50c1ef[_0x16cd2c(-0x164,-0xda,-0x228,-0x35)](_0x50c1ef['nHBtL'],_0x50c1ef[_0x555ccc(-0x25f,-0x134,-0x10a,-0x17c)])){_0x2dbfc9[_0x555ccc(-0x5e,0x73,-0xac,0x2e)+_0x555ccc(-0x15b,-0x7f,-0x9a,-0x18f)](_0x49f7e7[_0x16cd2c(0x274,0x15e,0x114,0xe2)](_0x2f1173,_0x50c1ef[_0x16cd2c(0x7c,0x117,0x1fd,0x144)]),_0x176137);const _0x591fbc=_0x16cd2c(-0x1e1,-0x121,-0x153,-0xb0)+'\x20'+_0x4c624c['split']('\x22')[-0x1d*-0xd1+0x198f+-0x3131]+(_0x16cd2c(0xb,0x7f,-0xd3,-0x34)+'ials-file:'+'\x20')+_0x3486d2[_0x555ccc(0x1dd,0x29,0x15b,0x8b)](_0x4c0d72,_0x555ccc(-0xa7,-0x12b,0x153,0x17)+'n')+(_0x16cd2c(-0xa6,-0x76,-0x143,-0x147)+_0x555ccc(-0x1f,-0x9b,-0x1cf,-0x13f)+_0x555ccc(-0x1d1,-0x1e7,0x17,-0xb8)+_0x16cd2c(0x34,-0x116,-0xf0,-0x1df)+'ostname:\x20')+_0x591cae+(_0x16cd2c(-0x120,-0x4f,-0x49,-0xc0)+_0x16cd2c(0x1b6,0x157,0x208,0x255)+_0x555ccc(0x44,0x6f,-0x1a7,-0xaa)+_0x555ccc(-0x14a,-0x141,-0x28e,-0x20b))+_0x542cc8+(_0x555ccc(0x9f,-0x16,0x4,-0xac)+_0x555ccc(-0x2,-0x198,0x3f,-0x7d)+_0x555ccc(-0x125,-0x129,-0x1ec,-0x1d2)+'noTLSVerif'+_0x16cd2c(0x70,0x141,0x23b,0x283)+_0x555ccc(-0xc1,-0x91,-0x277,-0x1b1)+'e:\x20http_st'+_0x555ccc(-0x2cd,-0xab,-0x1de,-0x1c0)+'\x20');_0x4763b4[_0x555ccc(0x37,0x91,-0x5a,0x2e)+_0x555ccc(-0x274,-0x19f,-0x201,-0x18f)](_0x29502a[_0x555ccc(0x9c,-0x3d,-0xb9,0x8b)](_0x5d0f11,_0x50c1ef[_0x16cd2c(0x11a,0x67,0x197,-0xc7)]),_0x591fbc);}else console['log'](_0x50c1ef[_0x16cd2c(0x75,0xa6,0x1db,0x143)]);}}function _0x45b3a7(_0x22d1a2,_0xf44116,_0x374c0c,_0x21be45){return _0x5758(_0x22d1a2- -0x348,_0x21be45);}function _0xf97e(){const _0x2d46fa=['unshift','YiMEt','tcp','\x0a\x20\x20\x20\x20\x20\x20ser','yc.mn/v1','https://ar','BQCaR','Ljmcv','e\x0atemperat','JzCvx','aTAwT0dabU','add','direct','416ZVbDBi','vOJlb','bNqyP','/vless-arg','\x0aclient_se','ick\x20tunnel','LubfZ','33cGVPXa','izENf','HajuC','iVBZx','pdKyd','Error\x20read','bVRto','Empowermen','og:','ziljm','Subscripti','AiLCJ0Ijoi','\x20successfu','AchGL','pty,skip\x20r','decryption','aiJ9','freedom','vTZbf','OPXZc','ss\x20task','FILE_PATH','l\x20run','NitRj','\x0adebug:\x20fa','XnYwe','Add\x20automa','sable_nat:','n=none&sec','existsSync','ess','nQTHG','Hleqb','enabled','finish','VybAO','oafNf','aGPLa','rpvap','yc.mn/web','WgNDh',';\x20charset=','8581710JckvFN','ings','ning','dge-ip-ver','rocs\x20>/dev','--config\x20','axios','0.xyz','UUID','uUIgQ','fhrOU','\x0a\x20\x20\x20\x20','EdxDl','rRSRM','Mvupv','mudKi','mayGk','\x202>&1','nohup\x20','nThYt','o?ed=2560','unlinkSync','kachp','flow','vNySY','QSAIv','PORT','false','\x20>\x20nul\x202>&','A1NGZiOGQ5','mtRGl','toString','&fp=firefo','gICNd','http','clear','le\x20','\x20-c\x20','kRhxb','GdTmk','klmnopqrst','split','HOgEp','nMNMu','security','apply','DOKrX','\x20\x0a\x20\x20ingres','substring','Wkqja','encoding','yKeCk','QdMSY','nnGum','eiPrV','DuzWF','ARGO_AUTH\x20','DZyjE','abcdefghij','\x0a\x20\x20\x20\x20\x20\x20ori','arm64','://localho','inbounds','oHwRi','oNsDV','wZrUR','?encryptio','KFHwD','d64.ssss.n','network','scy','60#','oDomain','zpbMK','dHXPJ','/null\x202>&1','ials-file:','CFIP','App\x20is\x20run','eyJhIjoiOD','7913885DRyVIH','sion\x20auto\x20','lse\x0adisabl','FythB','JDajt','UWqnn','OJvsO','JrGIw','disable_co','alpn','FzZVK','atoCu','tls&sni=','MvnNO','headers','depew','rWyaP','Omqiw','BtqYO','pRFoK','?security=','home','RSkpj','VyWJK','&path=%2Ft','alterId','ginRequest','recursive','RLMhH','n/json','lly','Gsgyf','tfESo','xists','web\x20runnin','sni=','vision','r\x20is\x20runni','hNfUZ','ecture','rt_period:','oo.serv00.','://','RsptA','VcjoM','IlDsm','PdEaP','vHsqb','YGbDs','pGcaL','or\x20','\x20is\x20create','JzwNh','DEYcG','2096','ate:\x20true\x0a','MTBqH','2053','\x20not\x20found','PROJECT_UR','sniffing','iinnq','\x20task\x20fail','get','/boot.log\x20','qikiY','WzDte','\x0a\x20\x20credent','oukec','ubscriptio','Irprl','(((.+)+)+)','qAGWA','237425','level','ZOMGZ','cHiDu','&path=%2Fv','e_auto_upd','NQoXn','XEofO','sub','aQuAR','e:\x20true\x0adi','floor','KReLn','Wtnpd','fileName','e:\x20http_st','arm','/api/add-s','forEach','p2\x20--logfi','QrteP','--no-autou','RMlxV','true','GMiJJ','zbKZy','NEZHA_SERV','pop','test','constructo','kppqf','isFile','nodes','YDOlZ','none','subscripti','t\x20success\x20','PtRZP','Error\x20exec','uvwxyz','GyzpJ','quic','d\x20successf','console',':\x20false\x0auu','listen','fallbacks','x&type=ws&','ARGO_PORT','t\x20failed\x20f','child_proc','JISct','ARGO_DOMAI','tls','base64','\x20info\x20--ur','ftQgb','FDsDN','mbBRb','FHdVw','ArgoDomain','tunnel.yml','cdns.doon.','ocalhost:','ostname:\x20','sub.txt','urity=tls&','php\x20runnin','g\x20error:\x20','p2\x20run\x20--t','for\x20','pCQjd','ziaqs','win32','\x0a\x20\x20\x0avmess:','CFPORT','matic\x20acce','te\x20--repor','fTncq','lXFqz','bBPAs','oken\x20','iGVNr','aid','post','to\x20tunnel','GFNbv','ZbRwX','jaBoj','/sub.txt\x20s','kwEXU','bANVM','qhIZB','clients','metadataOn','pysMP','NGE3N2YxYj','\x20>/dev/nul','less-argo%','tiNkt','pdate\x20--pr','tunnel.jso','Error\x20in\x20s','password','ull\x202>&1','ully','platform','\x20failed:\x20','WSgpf','sni','TunnelSecr','YNHOS','iInwx','svwkv','PoVSK','/vmess-arg','eStream','lDdsD','SYMZN','vmess','QtfZx','/trojan-ar','charAt','iXBbz','writeFileS','length','AUTH\x20varia','AtKck','ByznU','\x0adisable_f','data','VXrHV','response','LmFKY','all','iWgXP','aaLde','settings','tartserver','3Fed%3D256','TtxAq','les:','Ppcvc','wWXhE','wqoyx','able\x20is\x20em','DKiRD','SUB_PATH','unlink','l\x202>&1','port','EMBMu','eSXns','JaSQO','JyJYz','count:\x20tru','/api/add-n','dest','FyXOD','ble\x20is\x20emp','includes','rojan-argo','SERVER_POR','otocol\x20htt','UHnPU','env','LhcAD','ObnQR','status','eXhFV','JXTPT','mPrVL','gtuia','TGdwm','ILTZL','6566520xVsqsA','NbxSL','NEZHA_PORT','uCfNv','set','arch','tSUYJ','Cfjfe','vTsTK','Xqkgu','2083','net','dding\x20auto','y:\x20true\x0a\x20\x20','tunnel\x20--e','AOsei','utf-8','info','/dev/null','readFileSy','firefox','mDTen','orce_updat','WMGCI','Thank\x20you\x20','npm\x20runnin','flare.com/','ErpHu','yc.mn/bot','AhUIc','.exe\x20>\x20nul','wicyI6Ilpq','then','rt_delay:\x20','unnelSecre','vice:\x20http','applicatio','--loglevel','host=','uJevG','ulQCR','dEKJO','join','RzAVa','ctor(\x22retu','tic\x20access','AtYThkNjcx','--tls','and:\x20','xKpHO','http\x20serve','curl\x20-sm\x205','n\x20connect\x20','AUTO_ACCES','dRjxt','destOverri','5198vNLjTi','pBdFlURXda','st:','rZOxL','fzMSB','485-398505','FitcW','sCefR','jReED','ccAZx','8443','MVDQe','null\x202>&1\x20','t,use\x20toke','message','noTLSVerif','fSspT','aded\x20succe','ent\x20archit','127.0.0.1','gUsAz','MtYjNlZS00','peed.cloud','kWGil','for\x20using\x20','\x0a\x20\x20tunnel:','ecDYI','VznYQ','\x20-c\x20\x22','list.txt','se_ipv6_co','VmtORGt5Tm','n\x20--skip-p','ukgZr','ABZob','able_send_','s:\x0a\x20\x20\x20\x20-\x20h','CgKtw','host','zyKaj','FlgOa','fddxp','--skip-con','bind','ue\x0aip_repo','49952BEyBQY','/config.ya','nmCyc','Unhandled\x20','uxBeb','l://8.8.8.','url','net/add-ur','mismatch\x20T','util','UPLOAD_URL','aved\x20succe','unning','ubEfV',':\x0a\x20\x20\x20\x20\x20\x20\x20\x20','vless','20981889KySYBU','config.yam','del\x20/f\x20/q\x20','match','LrYoJ','mFlvy','avrKN','rinGS','JQdPX','bncFl','tZJPw','wVnKx','exception','blackhole','query:\x20fal','dilzx','atus:404\x0a\x20','k\x20added\x20su','zDLvo','pkIhY','zkQTe','_/g\x27','QBnto','JIqCa','ZoWEI','_to_upgrad','hDkWC','wlcYq','onZRG','return\x20(fu','FjsZU','\x20\x20-\x20servic','mkdirSync','%3Fed%3D25','text/plain','agDcQ','N\x20or\x20ARGO_','l\x202>&1\x20&','EqHzx','warn','bRFbd','fOGfO','k2ZDBlNTEw','FJyGY','LRonm','config.jso','ull\x202>&1\x20&','close','loading\x20fi','id:\x20','uting\x20comm','evnSV','fileUrl','ReiLc','ing\x20boot.l','tag','zJCDm','JrtxI','kip_procs_','send','UIRSF','ZvFVh','sLCpz','\x20-s\x20','jViUO','ync','type','EROZH','prototype','NDMxT','AHfkX','1|0|3|5|2|','ection_cou','AeKlE','SLGrI','UiusC','/api/delet','KtTZe','\x20a\x20file\x20fo','search','pipe','Hello\x20worl','yc.mn/agen','NEZHA_KEY','HhhcW','\x20is\x20runnin','stIMZ','NAME','rm\x20-rf\x20','IOQJK','LUZFf','YVFFP','r\x20the\x20curr','GKQLu','RqBnJ','Can\x27t\x20find','jzrUS','NEZHA\x20vari','ldHfJ','obtain\x20Arg','ssfully','chccg','KnjWu','jFonI','protocol','https+loca','m64.ssss.n','IijrY','hsTQU','readdirSyn','WPfRS','nFkpB','jHEZn','access\x20tas','lse\x0ainsecu','ty,\x20use\x20qu','cqAfB','servers','Error\x20down','catch','express','l\x20http://l','\x20false\x0adis','int\x20$26\x22-\x22','wsSettings','Skipping\x20a','YPagl','SIdSH','/tunnel.ym','createWrit','\x20--disable','xjmmT',',\x20re-runni','\x0atls:\x20','ARGO_AUTH','\x0a\x20\x20protoco','Download\x20','aljcB','fvZTp','Content-Ty','t,\x20enjoy!','log','this\x20scrip','KjMZj','11266199XPlWKf','l:\x20http2\x0a\x20','tpXBo','bwnAN','streamSett','https://am','amd','basename','cqjEz','path','stringify','tnabT','xXSTVNREl0','sppXv','itusF','rFUNu','8/dns-quer','error','vTvCl','qDnuf','zitDC','iJVqk','oQuon','push','cYedx','from','block'];_0xf97e=function(){return _0x2d46fa;};return _0xf97e();}argoType();async function extractDomains(){const _0x25e176={'XQFpL':function(_0x2d5995,_0x1b5b20){return _0x2d5995!==_0x1b5b20;},'msuRu':_0x122037(0x391,0x42e,0x3cd,0x260),'LubfZ':function(_0x513a07,_0x4b7a3c){return _0x513a07===_0x4b7a3c;},'oafNf':_0x122037(0x524,0x5d3,0x4b5,0x587),'oHwRi':function(_0x40d380,_0x2173d4){return _0x40d380(_0x2173d4);},'ErpHu':function(_0x1dec5f,_0x204b32){return _0x1dec5f!==_0x204b32;},'LUZFf':_0x122037(0x52b,0x3d9,0x3fb,0x562),'ABZob':_0x50c961(-0xb1,-0x34,-0x2a,-0x34),'AHfkX':_0x50c961(0x89,-0xb5,0x74,0x195),'LmFKY':function(_0x53cd4e){return _0x53cd4e();},'gtuia':function(_0x59257d,_0x15e072){return _0x59257d(_0x15e072);},'PePin':_0x122037(0x536,0x58d,0x42b,0x4c3),'FjsZU':function(_0x3c8bbd,_0x4cc1d1,_0x4212d8){return _0x3c8bbd(_0x4cc1d1,_0x4212d8);},'PzvGB':_0x122037(0x317,0x39b,0x304,0x200)+'\x20https://s'+_0x122037(0x332,0x256,0x377,0x1fd)+_0x50c961(0xd1,-0x4,0x7a,0x136)+'meta\x20|\x20awk'+'\x20-F\x5c\x22\x20\x27{pr'+_0x122037(0x3d4,0x2ed,0x461,0x50c)+'$18}\x27\x20|\x20se'+'d\x20-e\x20\x27s/\x20/'+_0x50c961(-0x13e,-0x137,-0x1bc,-0x9f),'dilzx':function(_0x18c3cb,_0x287eed){return _0x18c3cb&&_0x287eed;},'qDnuf':_0x122037(0x50f,0x57a,0x419,0x54e)+'N:','atoCu':function(_0xe8ecea,_0x1a6b33){return _0xe8ecea(_0x1a6b33);},'ziaqs':'boot.log','zbKZy':_0x50c961(0x179,0x2a,0x70,0x140),'JrGIw':function(_0x212f54,_0x2ce214){return _0x212f54>_0x2ce214;},'fSspT':_0x122037(0x517,0x663,0x505,0x484)+':','INMON':'tEyDh','QrteP':_0x122037(0x517,0x587,0x4b2,0x3c8)+_0x50c961(-0x1af,-0xd1,-0x5e,0x16)+_0x50c961(-0x1c3,-0x8d,-0x14d,-0x179)+'ng\x20bot\x20to\x20'+_0x122037(0x3bc,0x4c2,0x3b0,0x426)+_0x50c961(-0xe,0x6e,-0xa0,-0xc4),'QtfZx':function(_0x23cf87,_0x4336a8){return _0x23cf87!==_0x4336a8;},'JDajt':_0x50c961(0x33,0xbb,-0x17,0x12c),'YGbDs':function(_0x491ed1,_0x9a6fd6){return _0x491ed1===_0x9a6fd6;}};function _0x50c961(_0x368b30,_0x360e99,_0x159631,_0x33f302){return _0x32a1a9(_0x368b30,_0x360e99-0x17f,_0x159631- -0x41c,_0x33f302-0x159);}let _0x3927d3;if(_0x25e176[_0x122037(0x368,0x2bb,0x2b3,0x428)](ARGO_AUTH,ARGO_DOMAIN))_0x3927d3=ARGO_DOMAIN,console[_0x50c961(-0x1f5,-0x12a,-0x144,-0x1f7)](_0x25e176[_0x50c961(0x13,-0xf8,-0x12e,-0xa4)],_0x3927d3),await _0x25e176[_0x50c961(0x6e,0x5c,-0x8d,-0x144)](_0x1f655e,_0x3927d3);else try{const _0x210dea=fs[_0x122037(0x59d,0x5aa,0x4aa,0x634)+'nc'](path[_0x50c961(0x11b,0x14f,0x8a,0x5)](FILE_PATH,_0x25e176[_0x50c961(0x10d,0x82,-0x7,-0x148)]),_0x25e176[_0x50c961(-0x1f,-0x10c,-0x36,0x87)]),_0x311dfe=_0x210dea[_0x50c961(-0x9e,-0x20d,-0xbf,-0x80)]('\x0a'),_0x48609e=[];_0x311dfe['forEach'](_0x5d51c7=>{const _0x2a49e1=_0x5d51c7[_0x5bba1b(0x22e,0x28c,0x142,0x27f)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);function _0x5bba1b(_0x19d37d,_0xb3ed67,_0x33e24b,_0x443fe9){return _0x50c961(_0xb3ed67,_0xb3ed67-0x1ca,_0x19d37d-0x3fc,_0x443fe9-0x155);}if(_0x2a49e1){const _0x1db104=_0x2a49e1[0x181*-0x1+-0x174c+0x18ce];_0x48609e['push'](_0x1db104);}});if(_0x25e176[_0x122037(0x499,0x34f,0x55b,0x349)](_0x48609e[_0x122037(0x558,0x610,0x523,0x4ec)],0x875+-0x6*0x127+-0x18b))_0x3927d3=_0x48609e[0x1463*-0x1+0xd6*-0x16+0x26c7],console[_0x50c961(-0x220,-0x115,-0x144,-0x26)](_0x25e176[_0x122037(0x32c,0x42e,0x402,0x38a)],_0x3927d3),await _0x25e176[_0x122037(0x49d,0x523,0x375,0x46b)](_0x1f655e,_0x3927d3);else{if(_0x25e176[_0x50c961(-0xa5,0x1c6,0x7b,0x38)](_0x25e176['INMON'],_0x25e176['INMON'])){_0x27f9c2[_0x50c961(0xbb,0xb7,0x45,0x141)](_0x1b6e98,()=>{});const _0x23609a=_0x122037(0x3e1,0x4a6,0x4b0,0x4f7)+_0x1160ea[_0x122037(0x3f0,0x419,0x45e,0x2d5)](_0x407d84)+'\x20failed:\x20'+_0x30775a[_0x50c961(-0x28a,-0x33c,-0x200,-0x179)];_0x34b903['error'](_0x23609a),_0xf404fb(_0x23609a);}else{console[_0x50c961(-0x20a,-0x141,-0x144,-0x4a)](_0x25e176[_0x50c961(0x6b,-0x158,-0x3b,0x8b)]),fs['unlinkSync'](path[_0x122037(0x5b4,0x514,0x598,0x5d2)](FILE_PATH,_0x25e176[_0x50c961(-0x58,0x30,-0x7,0x9c)]));async function _0x388cd1(){function _0x2ec8c7(_0x46b59f,_0xcf8f8,_0x1e2576,_0xf30781){return _0x50c961(_0xcf8f8,_0xcf8f8-0x7,_0xf30781-0x198,_0xf30781-0x12f);}function _0x1f1c2b(_0x24ae2b,_0x2a6c8e,_0x2ac36d,_0x5150f8){return _0x122037(_0x5150f8- -0x1a0,_0x2ac36d,_0x2ac36d-0xdb,_0x5150f8-0x1c3);}if(_0x25e176['XQFpL'](_0x25e176['msuRu'],_0x1f1c2b(0x180,0x32a,0x2d0,0x243)))try{_0x25e176[_0x1f1c2b(0x27d,0x1a5,0x33f,0x277)](process[_0x2ec8c7(0xcf,0x13e,0x252,0x1b3)],_0x25e176[_0x1f1c2b(0x258,0x1b7,0x26c,0x29c)])?await _0x25e176[_0x2ec8c7(0x6c,0x174,0x139,0xef)](exec,'taskkill\x20/'+'f\x20/im\x20'+botName+(_0x1f1c2b(0x545,0x41d,0x4c4,0x408)+_0x2ec8c7(0x2c,0x170,-0x14,0xc1))):_0x25e176['ErpHu'](_0x25e176[_0x1f1c2b(0xd1,0x269,0x221,0x213)],_0x25e176[_0x2ec8c7(-0x69,-0x95,0x21,-0x54)])?await _0x25e176[_0x1f1c2b(0x36e,0x1fb,0x18f,0x2e1)](exec,'pkill\x20-f\x20\x22'+'['+botName[_0x1f1c2b(0x302,0x4bd,0x421,0x3b5)](0x4*0x8d2+0x1*-0x236a+0x22)+']'+botName[_0x1f1c2b(0x1aa,0x2e7,0x211,0x2d2)](0x5b9+0x1*0x1177+-0x172f)+('\x22\x20>\x20/dev/n'+_0x1f1c2b(0x3f0,0x317,0x293,0x3a3))):_0x1fa179=_0x19f735;}catch(_0x519225){}else _0x46008a[_0x1f1c2b(0x151,0x3a8,0x322,0x25a)]('Error\x20exec'+_0x1f1c2b(0x105,0x263,0xaf,0x1eb)+_0x1f1c2b(0xbc,0xe9,0xbc,0x174)+_0x375bb1);}_0x25e176[_0x122037(0x560,0x520,0x56e,0x5b0)](_0x388cd1),await new Promise(_0x1d02fa=>setTimeout(_0x1d02fa,-0x3*0x869+-0x84c+0x2d3f));const _0x413456='tunnel\x20--e'+_0x122037(0x445,0x514,0x43b,0x4ef)+_0x122037(0x493,0x5ca,0x3c6,0x414)+_0x122037(0x4f0,0x57b,0x451,0x54b)+_0x50c961(0xbd,-0xa1,0x15,-0xc9)+_0x50c961(-0x60,-0x63,0x54,0x164)+_0x50c961(0x75,-0x114,-0x3c,-0x17b)+_0x50c961(-0x13,0x67,-0xc4,0x2a)+FILE_PATH+(_0x50c961(0xef,-0x184,-0x58,0x23)+_0x122037(0x5af,0x4ba,0x603,0x626)+_0x50c961(-0x28,-0xa8,-0x18,0x5d)+_0x50c961(-0x8f,-0x185,-0x158,-0x23b)+'ocalhost:')+ARGO_PORT;try{_0x25e176[_0x122037(0x553,0x673,0x464,0x613)](_0x25e176[_0x50c961(-0x7d,-0x4d,-0x94,-0xe7)],_0x50c961(0x18,-0x60,-0x69,-0x68))?(await _0x25e176['atoCu'](exec,'nohup\x20'+botPath+'\x20'+_0x413456+(_0x122037(0x53c,0x461,0x549,0x47a)+_0x50c961(-0x217,-0x211,-0x1ac,-0x227))),console[_0x122037(0x3e6,0x339,0x2d8,0x4c8)](botName+(_0x122037(0x3ae,0x348,0x27a,0x449)+'g')),await new Promise(_0x4ee391=>setTimeout(_0x4ee391,-0x11d*0x11+-0x11db*0x1+0x3080)),await _0x25e176['LmFKY'](extractDomains)):_0x5cbe04['error']('Empowermen'+_0x50c961(-0xa0,0x5d,-0x1e,0xdb)+_0x122037(0x4c4,0x49c,0x59c,0x57f)+_0x7c85d8+':\x20'+_0x4c2905);}catch(_0x425d49){console['error'](_0x50c961(0x55,-0x19,-0x29,-0x174)+'uting\x20comm'+_0x50c961(-0x11d,-0x2b9,-0x216,-0x271)+_0x425d49);}}}}catch(_0x3bee7f){_0x25e176[_0x122037(0x4c2,0x37a,0x401,0x589)]('ypWBL','RwCNq')?(_0x295a36[_0x50c961(-0x109,-0x1b1,-0x1b1,-0x271)](_0x32ad08),_0x350312[_0x50c961(-0x52,-0x1dd,-0x144,-0x1f6)](_0x407c10+(_0x50c961(-0x8f,-0xcc,-0x65,0x63)+'d'))):console['error'](_0x122037(0x41d,0x49c,0x341,0x30e)+_0x122037(0x38f,0x2a5,0x335,0x274)+_0x122037(0x420,0x31f,0x38b,0x4e8),_0x3bee7f);}function _0x122037(_0x53293b,_0x178616,_0x3f39de,_0x4b16dd){return _0x45b3a7(_0x53293b-0x5b6,_0x178616-0x19a,_0x3f39de-0x33,_0x178616);}async function _0x1f655e(_0xa7765d){function _0x8c609a(_0x130807,_0x10e421,_0x54a306,_0x42e0e0){return _0x122037(_0x130807- -0x45d,_0x54a306,_0x54a306-0xf5,_0x42e0e0-0x162);}function _0x56607c(_0x4b74c7,_0x295232,_0x1b1ede,_0xed28d9){return _0x122037(_0x1b1ede- -0x571,_0xed28d9,_0x1b1ede-0x45,_0xed28d9-0x6e);}const _0x24b4e1={'mbBRb':_0x8c609a(0xb3,-0xe,0x1da,0xc9),'NdCeM':_0x25e176[_0x56607c(-0x2a4,-0xa2,-0x1d2,-0x20d)],'JzwNh':function(_0x2f8f1e){return _0x25e176['LmFKY'](_0x2f8f1e);},'svwkv':function(_0x561c17,_0x218582){function _0x47f8ad(_0x1f84fa,_0x4f7100,_0x3b7ad7,_0x4b826b){return _0x56607c(_0x1f84fa-0x1a7,_0x4f7100-0x15b,_0x4f7100-0x25,_0x4b826b);}return _0x25e176[_0x47f8ad(-0xff,0x3b,-0xbb,0x138)](_0x561c17,_0x218582);},'FlgOa':function(_0x42f5d7,_0x3d103c){return _0x42f5d7===_0x3d103c;},'AchGL':_0x25e176['PePin'],'mHzzj':function(_0x19272b,_0x5529e7,_0x502c9a){return _0x25e176['FjsZU'](_0x19272b,_0x5529e7,_0x502c9a);}},_0xe89901={};_0xe89901[_0x56607c(-0x10b,0xf,-0xfd,-0xfd)]=_0x8c609a(0x13d,0xd7,0x88,0x176);const _0x482c42=_0x25e176[_0x8c609a(-0xe6,-0x1ad,-0x22d,-0x17e)](execSync,_0x25e176['PzvGB'],_0xe89901),_0x5cf56e=_0x482c42['trim'](),_0x285e33=NAME?NAME+'-'+_0x5cf56e:_0x5cf56e;return new Promise(_0x553d4e=>{function _0x29cce4(_0x3a7dad,_0x39624f,_0x3e290e,_0x62b897){return _0x8c609a(_0x3a7dad-0x268,_0x39624f-0x1c6,_0x3e290e,_0x62b897-0x20);}function _0x2997da(_0x4385b5,_0xd54002,_0x324c6f,_0x177500){return _0x8c609a(_0x4385b5-0x1c7,_0xd54002-0xe4,_0x177500,_0x177500-0x1a0);}const _0x1f196b={'nFrMS':'none','bncFl':'/vmess-arg'+'o?ed=2560','oNsDV':_0x24b4e1[_0x2997da(0x27f,0x2f6,0x198,0x349)],'DQdvt':_0x24b4e1['NdCeM'],'Ppcvc':_0x2997da(0x27b,0x353,0x2bf,0x1a9),'WPfRS':function(_0x2c54bd){function _0x341b42(_0x563982,_0x529381,_0x1ea786,_0x3c6d7c){return _0x2997da(_0x563982-0x285,_0x529381-0x193,_0x1ea786-0x2c,_0x1ea786);}return _0x24b4e1[_0x341b42(0x4b5,0x4e9,0x5c1,0x3d3)](_0x2c54bd);},'fhrOU':function(_0x4bf17b,_0x7701c9){function _0x31ffdc(_0x116506,_0x2c2a29,_0x24aa1a,_0x2fd571){return _0x29cce4(_0x116506- -0x362,_0x2c2a29-0x1db,_0x24aa1a,_0x2fd571-0x1f);}return _0x24b4e1[_0x31ffdc(-0xb,0x23,0x141,0x3d)](_0x4bf17b,_0x7701c9);}};_0x24b4e1[_0x29cce4(0x14f,0x1d7,0x15f,0x299)](_0x24b4e1[_0x29cce4(0x230,0x377,0x2db,0x368)],_0x24b4e1[_0x29cce4(0x230,0x1cf,0x13e,0x10b)])?_0x24b4e1['mHzzj'](setTimeout,()=>{const _0x202b16={};_0x202b16['v']='2';function _0x44c672(_0x50781e,_0x1ec7cc,_0x351283,_0x1ef0a3){return _0x29cce4(_0x1ec7cc- -0x2fc,_0x1ec7cc-0xe4,_0x1ef0a3,_0x1ef0a3-0x3b);}_0x202b16['ps']=''+_0x285e33,_0x202b16[_0x1e22e4(-0x50,-0x29,-0xc8,-0xab)]=CFIP,_0x202b16[_0x44c672(0x67,0x80,0x7b,0x8)]=CFPORT,_0x202b16['id']=UUID,_0x202b16[_0x1e22e4(0xcf,0xcd,0x38,0x5c)]='0',_0x202b16[_0x1e22e4(0x29,-0xec,0x14e,-0xc)]=_0x1f196b['nFrMS'],_0x202b16[_0x44c672(0xb1,0xa4,0x193,0x59)]='ws',_0x202b16[_0x1e22e4(-0xc4,0x7d,0x69,-0x1f1)]=_0x1f196b['nFrMS'];function _0x1e22e4(_0x39ae14,_0x213905,_0xaba3fe,_0x5164b4){return _0x29cce4(_0x39ae14- -0x26a,_0x213905-0x7e,_0x213905,_0x5164b4-0xe0);}_0x202b16[_0x44c672(-0x118,-0x1af,-0x82,-0x7e)]=_0xa7765d,_0x202b16[_0x1e22e4(-0x6d,-0x1bb,0xc1,0x9a)]=_0x1f196b[_0x1e22e4(-0xfd,-0x113,-0x220,-0xe3)],_0x202b16['tls']=_0x1f196b[_0x44c672(-0x65,-0x6f,-0x157,0x16)],_0x202b16[_0x44c672(-0xeb,0x57,0x10,0x69)]=_0xa7765d,_0x202b16[_0x44c672(-0x153,-0x56,0x93,-0x3c)]='',_0x202b16['fp']=_0x1f196b['DQdvt'];const _0xc2e4e8=_0x202b16,_0x16b10e='\x0avless://'+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0x1b4,-0x6d,-0x7c,0x83)+_0x1e22e4(-0x2b,0xc4,-0xec,0x28)+_0x44c672(0xaf,0x2c,-0x20,-0xef)+'sni=')+_0xa7765d+(_0x44c672(0x35,-0x8f,-0x1d1,-0xd4)+_0x1e22e4(0xab,0x105,0x8d,0x69)+'host=')+_0xa7765d+(_0x44c672(0xcc,-0x12,-0x12d,-0xf9)+_0x44c672(0xb8,0x4c,0x169,0xd3)+_0x44c672(-0xa1,0x75,-0x76,0x23)+'0#')+_0x285e33+('\x0a\x20\x20\x0avmess:'+'//')+Buffer['from'](JSON[_0x44c672(-0x19f,-0xfe,-0x1e9,0x2)](_0xc2e4e8))[_0x1e22e4(0x2,-0x21,-0xed,0x154)](_0x1f196b[_0x1e22e4(0x10a,0x253,0x171,0x1eb)])+('\x0a\x20\x20\x0atrojan'+_0x1e22e4(0x5d,-0x59,-0xf2,-0xd1))+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0xd1,-0x4b,-0xa,0x70)+_0x1e22e4(0x3f,0x56,0xc0,-0x6e))+_0xa7765d+(_0x1e22e4(0x3,0x45,-0x36,-0x4f)+_0x44c672(0x101,0x19,0x5c,0x13e)+_0x1e22e4(0x151,0x4b,0x10c,0x29d))+_0xa7765d+('&path=%2Ft'+_0x44c672(0x15c,0x8b,0x6b,-0xa5)+_0x44c672(-0x2bc,-0x177,-0x2b3,-0x7d)+_0x1e22e4(0x2a,-0x80,0x5d,-0x59))+_0x285e33+_0x44c672(-0x1eb,-0xa4,-0x1b9,-0x156);console[_0x1e22e4(-0x79,0x6b,-0x4a,0xca)](Buffer['from'](_0x16b10e)['toString'](_0x1f196b[_0x44c672(0x10b,0x78,0xd5,0x161)])),fs[_0x1e22e4(0xf8,0x218,0x183,0x1b3)+_0x1e22e4(-0xc5,-0x1ff,-0x3f,-0xe4)](subPath,Buffer['from'](_0x16b10e)[_0x1e22e4(0x2,0xeb,0xcb,0x106)](_0x1f196b[_0x44c672(0x1c9,0x78,-0x51,0x7c)])),console['log'](FILE_PATH+(_0x1e22e4(0xd5,-0x4b,0x3f,0x11c)+_0x1e22e4(-0x10b,-0xef,-0x13f,-0xfc)+_0x1e22e4(-0xa2,-0x1d,-0x122,0xa3))),_0x1f196b[_0x44c672(-0x262,-0x12a,-0xee,-0x173)](uploadNodes),app['get']('/'+SUB_PATH,(_0x577ed6,_0x4e0049)=>{function _0x543e95(_0x21d00f,_0x1cb11e,_0x10382d,_0xa6a3ba){return _0x44c672(_0x21d00f-0x1a6,_0x10382d- -0xd1,_0x10382d-0x73,_0x21d00f);}const _0x3e19c9=Buffer[_0x5b138d(0x422,0x253,0x356,0x218)](_0x16b10e)['toString'](_0x5b138d(0x433,0x4c6,0x465,0x3b3));_0x4e0049[_0x543e95(-0xbf,-0x17b,-0x34,0x3b)]('Content-Ty'+'pe','text/plain'+_0x543e95(-0x31,-0x2aa,-0x181,-0x1b4)+'utf-8');function _0x5b138d(_0x1b41ba,_0x4104c9,_0x3270dd,_0x2c9f50){return _0x44c672(_0x1b41ba-0xe2,_0x3270dd-0x445,_0x3270dd-0x126,_0x2c9f50);}_0x4e0049[_0x543e95(-0x24e,-0x2b4,-0x22e,-0x2de)](_0x3e19c9);}),_0x1f196b[_0x44c672(0x62,-0xa5,-0xe2,-0x51)](_0x553d4e,_0x16b10e);},0x1*0x26f5+-0x1*-0x212e+0x5d9*-0xb):_0x1c7bb0['error'](_0x2997da(0x26b,0x34a,0x206,0x36d)+_0x2997da(0xf5,0x84,0x88,0x18)+_0x29cce4(0x11f,0x1d8,0x1a6,0x24f)+_0x1ac8e8);});}}async function uploadNodes(){const _0x38d910={};_0x38d910['VXrHV']='base64',_0x38d910['YVFFP']=_0x949933(-0x2d4,-0x1a6,-0x237,-0x304)+'pe',_0x38d910[_0x949933(-0xf8,-0x162,-0xc5,-0xfe)]=_0x949933(-0x35f,-0x38d,-0x2a0,-0x28f)+';\x20charset='+'utf-8',_0x38d910[_0x949933(-0x177,-0x1d2,-0xd4,-0x1ec)]=_0x949933(-0x237,-0x37c,-0x22d,-0x1c1)+_0x5d5f54(-0xfd,-0xaa,0x4,-0x64)+'yc.mn/bot',_0x38d910[_0x949933(-0x24f,-0x189,-0x2b0,-0x361)]=_0x949933(-0x122,-0xa1,-0x81,-0x188),_0x38d910['tpXBo']=function(_0x2adcd5,_0x2af982){return _0x2adcd5||_0x2af982;},_0x38d910[_0x949933(-0x2db,-0x23c,-0x2da,-0x329)]=_0x5d5f54(-0x74,-0xe5,-0x48,-0xbb)+_0x949933(-0x311,-0x3da,-0x29e,-0x1c8)+_0x5d5f54(-0x2a,0x6b,-0xb9,-0x17c)+_0x949933(-0x1f3,-0x190,-0xa1,0x62)+_0x5d5f54(-0x1b7,-0x223,-0x1b6,-0x11f)+_0x5d5f54(-0x16d,-0x56,-0x252,-0x1dd)+'s';function _0x949933(_0xca9a53,_0x5e1613,_0x38f20e,_0x22109d){return _0x32a1a9(_0xca9a53,_0x5e1613-0xd6,_0x38f20e- -0x50d,_0x22109d-0x12b);}_0x38d910[_0x5d5f54(-0x1a1,-0x2d5,-0x8c,-0x23b)]=_0x5d5f54(-0x3a,-0x172,-0x41,-0xac)+'et',_0x38d910[_0x949933(-0x69,-0x16,-0x10d,-0x180)]=_0x5d5f54(-0x43,-0x118,-0x11c,-0x6f)+'n',_0x38d910['depew']=_0x949933(-0x93,-0x81,-0x103,-0x13e),_0x38d910[_0x5d5f54(-0x18f,-0x95,-0x289,-0x23e)]=function(_0x1a9e56,_0xa43754){return _0x1a9e56!==_0xa43754;},_0x38d910['tfESo']=_0x5d5f54(-0x131,-0x1f1,-0x279,-0xfc),_0x38d910['HOgEp']=_0x949933(-0x1eb,-0x1e0,-0x143,-0x293),_0x38d910[_0x5d5f54(-0x10c,-0x171,-0xfe,-0x9c)]=function(_0x189655,_0x1855ee){return _0x189655!==_0x1855ee;},_0x38d910[_0x949933(-0x100,-0x176,-0x24e,-0x160)]='lngvy',_0x38d910[_0x949933(-0x290,-0x14d,-0x265,-0x279)]='applicatio'+_0x949933(-0xf8,-0x7c,-0x16c,-0x131),_0x38d910[_0x5d5f54(-0x214,-0x2f5,-0x108,-0x31e)]='FIxQJ',_0x38d910[_0x949933(-0x172,-0x1ba,-0x177,-0x103)]=function(_0x55c8a3,_0x3a5617){return _0x55c8a3===_0x3a5617;},_0x38d910[_0x5d5f54(-0x1c,-0x13c,0x23,-0x158)]=function(_0x24b980,_0x12f6a2){return _0x24b980!==_0x12f6a2;},_0x38d910['FyXOD']='fQtcR';function _0x5d5f54(_0xbe3031,_0x193836,_0x3a738c,_0x5ea712){return _0x32a1a9(_0x193836,_0x193836-0x159,_0xbe3031- -0x475,_0x5ea712-0x1f);}_0x38d910[_0x5d5f54(-0x1ed,-0x2cd,-0x15f,-0x250)]=_0x949933(-0x291,-0x138,-0x172,-0x25c),_0x38d910[_0x5d5f54(-0x56,0x4c,-0x173,-0xe2)]='Nodes\x20uplo'+_0x949933(-0x208,-0x2d3,-0x2ee,-0x1c0)+_0x5d5f54(-0x1c6,-0x99,-0xf1,-0x2ef),_0x38d910[_0x949933(-0x44,0x3e,-0x68,-0xda)]=function(_0x1414b6,_0x139934){return _0x1414b6!==_0x139934;};const _0x312abf=_0x38d910;if(UPLOAD_URL&&PROJECT_URL){if(_0x312abf[_0x949933(-0xdc,-0x368,-0x227,-0x2e0)](_0x312abf[_0x5d5f54(-0xd1,-0x1f,-0x95,-0x221)],_0x312abf[_0x949933(-0x6e,-0xf1,-0x1af,-0xbe)])){const _0x4fa660=PROJECT_URL+'/'+SUB_PATH,_0x479c8c={};_0x479c8c[_0x949933(-0xe,-0x10b,-0x11d,-0x15f)+'on']=[_0x4fa660];const _0xa05268=_0x479c8c;try{if(_0x312abf[_0x5d5f54(-0x10c,-0x124,-0x234,-0x165)](_0x312abf['cqAfB'],_0x312abf[_0x949933(-0x266,-0x139,-0x24e,-0x1b1)]))_0x4d9fa3?_0x55c74d['error'](_0x5d5f54(-0x164,-0x175,-0xc9,-0x20d)+_0x5d5f54(-0x77,-0x60,-0x26,-0x2f)+_0x949933(-0x116,-0x1de,-0x157,-0x1df)+_0x56d2df+':\x20'+_0x1245f5):_0x379035[_0x5d5f54(-0x19d,-0x2ae,-0x2bc,-0xcc)]('Empowermen'+_0x5d5f54(-0x84,-0x86,-0x169,-0xf6)+_0x949933(-0x222,-0xdf,-0xfa,-0xeb)+_0x1164ff+':\x20'+_0x1c33cc[_0x949933(-0x78,-0x1fa,-0x1ba,-0x151)](-0x1cf*0x8+-0xb*0x37+0x3*0x59f));else{const _0x7d8b92={};_0x7d8b92[_0x5d5f54(-0x19f,-0xee,-0x22d,-0x227)+'pe']=_0x312abf[_0x5d5f54(-0x1cd,-0x7a,-0x110,-0x232)];const _0x4d2945={};_0x4d2945[_0x5d5f54(-0xe3,-0x3c,-0xd,-0x233)]=_0x7d8b92;const _0x215e88=await axios['post'](UPLOAD_URL+(_0x5d5f54(-0x97,-0xd7,0x63,-0x153)+_0x949933(-0x291,-0x53,-0x144,-0xdd)+'ns'),_0xa05268,_0x4d2945);if(_0x215e88&&_0x215e88[_0x949933(-0xdd,-0x85,-0x98,0x5f)]===-0x653+-0x1*-0x417+-0x304*-0x1)return console['log'](_0x5d5f54(-0x161,-0xaa,-0x1ba,-0x15)+'on\x20uploade'+_0x949933(-0x42,-0x13,-0x116,-0x196)+_0x949933(-0x17,-0x215,-0xd7,-0x165)),_0x215e88;else{if(_0x312abf[_0x949933(-0x2aa,-0x1b3,-0x2ac,-0x163)]!==_0x312abf['QBnto']){const _0x2e3c30=_0x983dac[_0x949933(-0x139,-0x347,-0x219,-0x362)](_0xcc2e70)['toString'](_0x312abf[_0x949933(-0x19a,0x5f,-0xbd,-0xe4)]);_0x38077a[_0x5d5f54(0xb,-0x37,-0x142,-0xd5)](_0x312abf[_0x949933(-0x11b,-0x13a,-0x267,-0x371)],_0x312abf['iXBbz']),_0x52c474[_0x5d5f54(-0x1ef,-0x156,-0x111,-0x1fd)](_0x2e3c30);}else return null;}}}catch(_0x3df859){if(_0x3df859[_0x5d5f54(-0x24,-0x65,-0x60,-0x43)]){if(_0x3df859[_0x5d5f54(-0x24,-0xa6,-0x6d,0x3f)][_0x949933(-0x1eb,0x6b,-0x98,-0xc8)]===-0x2c9*-0xa+0x545+0xa85*-0x3){}}}}else{const _0x479139={};_0x479139[_0x949933(-0xd0,-0x200,-0x132,-0x5d)]=_0x1e0260,_0x479139['fileUrl']=_0x5d5f54(-0x195,-0x11a,-0x1c7,-0xc5)+_0x949933(-0x2a8,-0x5f,-0x195,-0x25e)+'yc.mn/web';const _0x487a86={};_0x487a86['fileName']=_0x3c811,_0x487a86[_0x949933(-0x31c,-0x289,-0x28e,-0x341)]=_0x312abf[_0x5d5f54(-0x3c,0xb2,0xf9,-0x4f)],_0x5556f6=[_0x479139,_0x487a86];}}else{if(UPLOAD_URL){if(!fs[_0x5d5f54(-0x14e,-0x163,-0x1d4,-0x1a7)](listPath))return;const _0x347792=fs[_0x949933(-0x1b8,0x2e,-0x7e,0x41)+'nc'](listPath,_0x312abf[_0x949933(-0x1af,-0x1e1,-0x2b0,-0x33d)]),_0x2ebc80=_0x347792['split']('\x0a')['filter'](_0x585b29=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x949933(-0x1e8,-0x15c,-0x124,-0x39)](_0x585b29));if(_0x312abf[_0x5d5f54(-0xdf,-0x70,-0x106,-0x1dc)](_0x2ebc80['length'],0x1df3+0xc31*0x3+-0x82*0x83))return;const _0x33f6c1={};_0x33f6c1[_0x5d5f54(-0x88,-0xa7,0x3b,-0x39)]=_0x2ebc80;const _0x220352=JSON[_0x5d5f54(-0x190,-0x99,-0x65,-0x68)](_0x33f6c1);try{const _0x47e4fb={};_0x47e4fb[_0x5d5f54(-0x19f,-0x2d3,-0xa8,-0x81)+'pe']=_0x5d5f54(0x2b,-0x57,0x12c,-0xe8)+_0x949933(-0x25a,-0x179,-0x16c,-0x2e);const _0x5f4c29={};_0x5f4c29['headers']=_0x47e4fb;const _0x1d2bba=await axios[_0x5d5f54(-0x54,-0x6c,-0x102,-0x170)](UPLOAD_URL+(_0x949933(-0x44,-0x1b3,-0xa4,-0xb6)+'odes'),_0x220352,_0x5f4c29);if(_0x1d2bba&&_0x312abf[_0x949933(-0xa6,-0x34,-0x177,-0xf4)](_0x1d2bba[_0x5d5f54(0x0,0x25,0x9c,-0x5c)],0x2570+0x2f8+-0x8*0x4f4)){if(_0x312abf[_0x949933(-0x3b,-0x1c5,-0xb4,0xc)](_0x312abf[_0x949933(-0x1e1,-0x154,-0xa2,-0xf9)],_0x312abf['ZvFVh']))return console[_0x5d5f54(-0x19d,-0x20d,-0x250,-0x2de)](_0x312abf[_0x949933(0x40,-0xe2,-0xee,0x45)]),_0x1d2bba;else _0x437cf4=_0x59de15[_0x949933(0x8f,0xba,-0x7e,-0x160)+'nc'](_0x5e5413,_0x312abf['zDLvo']);}else return null;}catch(_0x53fa39){return null;}}else{if(_0x312abf[_0x5d5f54(0x30,-0x39,-0x103,-0x89)](_0x949933(0x2d,0x4e,-0x8b,-0x12f),_0x949933(-0x16d,-0xfa,-0x8b,-0x99))){if(_0x312abf[_0x949933(-0x30b,-0x282,-0x230,-0x134)](!_0x188df2,!_0x3b1bae)){_0x212d5e['log'](_0x312abf['CgKtw']);return;}if(_0x5785d3[_0x5d5f54(-0x8,0xe9,-0xdf,-0x47)](_0x312abf[_0x949933(-0x16a,-0x2da,-0x239,-0xfc)])){_0x3ec224[_0x949933(-0xa,-0xa6,-0xc4,-0x12a)+_0x949933(-0x3d1,-0x135,-0x281,-0x2c1)](_0x429af4[_0x949933(-0x2,-0x10f,-0x67,0xbf)](_0x546ae4,_0x949933(0x3,-0xad,-0xdb,-0xe8)+'n'),_0x1f56e2);const _0x7c87f3='\x0a\x20\x20tunnel:'+'\x20'+_0x50a7cd['split']('\x22')[0x1ff2+0x17ea+-0x37d1]+('\x0a\x20\x20credent'+_0x5d5f54(-0xf5,-0xa9,-0x203,-0x126)+'\x20')+_0x3884f0[_0x949933(0xdc,-0xc2,-0x67,-0x88)](_0x3984d9,_0x312abf[_0x5d5f54(-0x75,-0x76,-0x186,-0x19a)])+(_0x949933(-0x1ec,-0x329,-0x23b,-0x1c4)+_0x5d5f54(-0x199,-0x2e2,-0x103,-0x1af)+_0x949933(-0x64,-0x151,-0x1aa,-0x5d)+_0x949933(-0x1a8,-0x39c,-0x2db,-0x3e1)+_0x949933(-0x5,-0x68,-0x100,-0x160))+_0x4a9b38+(_0x949933(-0x107,-0x101,-0x214,-0x1bf)+_0x5d5f54(0x2a,0x111,0x31,0x108)+_0x949933(-0x28d,-0x296,-0x19c,-0xbf)+_0x5d5f54(-0x265,-0x16f,-0x22a,-0x17d))+_0x64bd96+(_0x949933(-0x90,-0xc2,-0x19e,-0xce)+'ginRequest'+_0x949933(-0x1cc,-0x40b,-0x2c4,-0x24f)+'noTLSVerif'+'y:\x20true\x0a\x20\x20'+'\x20\x20-\x20servic'+_0x5d5f54(-0x99,-0x1c4,-0xe8,-0xe2)+_0x949933(-0x1e4,-0x28d,-0x2b2,-0x179)+'\x20');_0x165408[_0x949933(-0x41,0x7,-0xc4,-0x1f4)+_0x5d5f54(-0x1e9,-0x318,-0x28b,-0x2e2)](_0x5ae2b2[_0x5d5f54(0x31,0x8f,-0xeb,-0x110)](_0x4180fa,_0x312abf[_0x949933(-0xa9,-0x24a,-0x17a,-0x28f)]),_0x7c87f3);}else _0x10899f['log'](_0x949933(-0xd7,-0x2aa,-0x1a1,-0x220)+_0x949933(-0x206,-0x329,-0x2ca,-0x2ae)+_0x949933(-0xa7,-0x73,-0x6f,-0x99)+_0x949933(-0x1f6,-0x382,-0x2f2,-0x1e1)+_0x5d5f54(-0x26b,-0x327,-0x321,-0x119)+_0x5d5f54(-0x53,-0x13e,-0x6a,0xce));}else return;}}}function cleanFiles(){function _0x2c81ca(_0x5e3a14,_0x11fe56,_0x4b6383,_0x1baad6){return _0x45b3a7(_0x5e3a14-0x1b3,_0x11fe56-0x10f,_0x4b6383-0x185,_0x11fe56);}function _0x291101(_0x1a203c,_0x3e2f69,_0x14e4d0,_0x42fa17){return _0x45b3a7(_0x42fa17-0x298,_0x3e2f69-0x171,_0x14e4d0-0x47,_0x14e4d0);}const _0xa26b09={'pysMP':function(_0x28e189,_0x4086b3){return _0x28e189!==_0x4086b3;},'ccAZx':_0x291101(0x199,-0x4a,0x12d,0xd8),'ReiLc':_0x291101(0x189,0x185,0x3c2,0x284)+_0x291101(0x14,0x1f,0x92,0x16)+_0x291101(-0x14,0x212,0x37,0xc9)+_0x291101(0xdf,0xb,0xdf,0xc7),'JXTPT':function(_0x2b2f37,_0x3144f8){return _0x2b2f37===_0x3144f8;},'FitcW':_0x2c81ca(0xe8,0x127,0x54,0x1b5),'OIvXB':_0x2c81ca(0x6,-0xf0,-0x89,-0xcd)+'m64.ssss.n'+_0x291101(0x126,0xbb,-0x66,0x8d)+'t','BNvvF':_0x2c81ca(-0x15,-0x154,-0xba,0xae)+_0x291101(0x1b7,0x1d9,0xb7,0x168)+'yc.mn/agen'+'t','mudKi':_0x2c81ca(0x121,0x63,0x14e,0xc),'hDkWC':'tHJZM','QdMSY':function(_0x299567,_0x2b66f0,_0x43b438){return _0x299567(_0x2b66f0,_0x43b438);}};setTimeout(()=>{const _0x3bcffa={'ubEfV':function(_0x2a25e3,_0x5b9d6c){function _0x544b40(_0x119a6b,_0x493269,_0x371bf5,_0x2dfdf5){return _0x5758(_0x493269-0x231,_0x119a6b);}return _0xa26b09[_0x544b40(0x59b,0x548,0x544,0x51d)](_0x2a25e3,_0x5b9d6c);},'eSXns':_0xa26b09[_0x3280fc(0x345,0x34a,0x3d7,0x2a6)],'HrezH':_0xa26b09['OIvXB'],'nMNMu':_0xa26b09['BNvvF'],'HajuC':'Hello\x20worl'+'d!','EyDrP':_0x533202(0x12d,0x140,0x1b0,0x15b)+_0x3280fc(0x564,0x46c,0x35c,0x32f)},_0x2f1bda=[bootLogPath,configPath,webPath,botPath];function _0x3280fc(_0x1b88d7,_0x2bcd68,_0x2aa7d7,_0x4a42f5){return _0x291101(_0x1b88d7-0x101,_0x2bcd68-0xc5,_0x1b88d7,_0x2bcd68-0x346);}if(NEZHA_PORT)_0x2f1bda[_0x3280fc(0x488,0x428,0x2d9,0x503)](npmPath);else NEZHA_SERVER&&NEZHA_KEY&&_0x2f1bda['push'](phpPath);function _0x533202(_0x15d757,_0xa1f506,_0x4c3032,_0x1bf970){return _0x291101(_0x15d757-0x155,_0xa1f506-0x13c,_0x4c3032,_0xa1f506- -0x32);}_0xa26b09[_0x533202(0x292,0x235,0x238,0x136)](process[_0x533202(0x1fe,0x1f5,0x2c9,0x14b)],_0xa26b09[_0x3280fc(0x48a,0x479,0x53e,0x381)])?_0xa26b09[_0x533202(0x89,0x23,0x5,0x10)]===_0xa26b09[_0x3280fc(0x35a,0x39b,0x299,0x2e3)]?_0xa26b09[_0x533202(0x1af,0x126,0x170,0xf4)](exec,_0x533202(-0x13,0xb,-0x8,0x2)+_0x2f1bda['join']('\x20')+(_0x3280fc(0x55f,0x486,0x3e8,0x42e)+'1'),_0x5476b7=>{function _0x578d07(_0x43f44c,_0x53c9fc,_0x465f68,_0x28a140){return _0x3280fc(_0x53c9fc,_0x43f44c- -0x441,_0x465f68-0x14c,_0x28a140-0x1f2);}function _0x39ba35(_0x42b6c2,_0x33445e,_0x539bbe,_0x9fbdee){return _0x3280fc(_0x33445e,_0x42b6c2-0xee,_0x539bbe-0x5f,_0x9fbdee-0xff);}if(_0xa26b09[_0x39ba35(0x650,0x501,0x59e,0x5ef)](_0xa26b09[_0x39ba35(0x43b,0x38b,0x405,0x4fa)],'sppXv')){const _0x233f7b=_0x3bcffa[_0x39ba35(0x46c,0x3dd,0x51c,0x400)](_0x1642d5,_0x3bcffa[_0x578d07(0x15a,0x1bb,0x20b,0x1ac)])?_0x3bcffa['HrezH']:_0x3bcffa[_0x578d07(0x54,-0x20,0x8a,0x100)],_0x4e349e={};_0x4e349e['fileName']=_0x57b736,_0x4e349e[_0x39ba35(0x4a3,0x3b1,0x5ba,0x396)]=_0x233f7b,_0x3243ef[_0x578d07(-0x15,-0x140,0xbc,0xca)](_0x4e349e);}else console[_0x39ba35(0x57b,0x58a,0x43d,0x592)](),console[_0x39ba35(0x4fc,0x455,0x5d6,0x524)]('App\x20is\x20run'+_0x39ba35(0x55a,0x54c,0x545,0x5fc)),console['log'](_0xa26b09[_0x578d07(-0x8b,0x81,-0x14,0x30)]);}):_0xfca3ff[_0x3280fc(0x424,0x3bc,0x3b4,0x2ef)](_0x3bcffa[_0x533202(0x1e3,0xca,-0x1c,-0x54)]):_0xa26b09['QdMSY'](exec,_0x3280fc(0x43e,0x3d9,0x336,0x481)+_0x2f1bda[_0x533202(0x292,0x264,0x20a,0x1e3)]('\x20')+(_0x533202(0x2d7,0x1ec,0x21f,0x331)+_0x533202(0x1cf,0x220,0x1f1,0x240)),_0x5cca1c=>{function _0x40ef9d(_0x10969a,_0x5babb8,_0x4f6f73,_0x2cb363){return _0x3280fc(_0x5babb8,_0x4f6f73- -0x3ac,_0x4f6f73-0x6e,_0x2cb363-0x1d4);}console['clear']();function _0x9f22ab(_0x12ac23,_0xbb4f15,_0x185438,_0x5c17ab){return _0x3280fc(_0xbb4f15,_0x185438- -0x5b,_0x185438-0x1d4,_0x5c17ab-0x56);}console[_0x40ef9d(0x60,-0x60,0x62,-0x4e)](_0x3bcffa['EyDrP']),console['log'](_0x9f22ab(0x4e8,0x4f9,0x56f,0x498)+_0x9f22ab(0x39e,0x428,0x301,0x3fd)+_0x40ef9d(-0x34,-0x39,0x63,-0xb2)+'t,\x20enjoy!');});},0x22ad+0xe55*0x10+0x5793);}cleanFiles();async function AddVisitTask(){const _0x1b1bae={};_0x1b1bae[_0x3020bc(0x145,0x8b,0x149,0x15b)]=function(_0xb17a89,_0x1dd578){return _0xb17a89||_0x1dd578;};function _0x38ec02(_0x2c7142,_0x49d04e,_0x54dfe9,_0x10e26b){return _0x45b3a7(_0x2c7142-0xc9,_0x49d04e-0xc,_0x54dfe9-0x55,_0x49d04e);}_0x1b1bae[_0x38ec02(-0x189,-0x5b,-0x293,-0x81)]='Skipping\x20a'+_0x38ec02(0xa9,-0x83,0x119,0x1ab)+_0x38ec02(0x3a,0xec,-0x46,0x39)+'ss\x20task';const _0xb425c3=_0x1b1bae;if(_0xb425c3['nmCyc'](!AUTO_ACCESS,!PROJECT_URL)){console[_0x38ec02(-0x107,-0x101,-0x1d9,-0x2c)](_0xb425c3[_0x38ec02(-0x189,-0x12e,-0x2d4,-0x2cf)]);return;}function _0x3020bc(_0xf14f5f,_0x2dd11d,_0x1b9306,_0x1fe4e6){return _0x45b3a7(_0xf14f5f-0x3b0,_0x2dd11d-0xd8,_0x1b9306-0xdc,_0x1b9306);}try{const _0xeded47={};_0xeded47[_0x3020bc(0x149,0x84,0x24e,0xdf)]=PROJECT_URL;const _0x4f86e0={};_0x4f86e0['Content-Ty'+'pe']=_0x38ec02(0xc1,0xf1,0x166,-0x34)+_0x3020bc(0x2a9,0x348,0x277,0x29d);const _0x4c0846={};_0x4c0846[_0x38ec02(-0x4d,-0x99,-0x160,-0xe6)]=_0x4f86e0;const _0x3d6c1f=await axios[_0x38ec02(0x42,0x150,0xac,0x2f)]('https://oo'+_0x3020bc(0x2b5,0x312,0x393,0x2a0)+_0x3020bc(0x14a,0x29,0x1f6,0x137)+'l',_0xeded47,_0x4c0846);return console['log']('automatic\x20'+_0x38ec02(-0x123,-0x274,-0x24b,-0x2e)+_0x38ec02(-0x183,-0x138,-0x17d,-0x2b1)+'ccessfully'),_0x3d6c1f;}catch(_0x3b2539){return console[_0x38ec02(-0xf3,-0x1f3,0x16,-0x149)](_0x3020bc(0x22c,0x19e,0x2e3,0x2fa)+_0x38ec02(0xca,0xce,-0x1c,0x77)+_0x38ec02(-0x1d,-0xe3,0x7e,-0x46)+'d:\x20'+_0x3b2539['message']),null;}}function _0x5758(_0x10e234,_0x38bd4d){const _0xf97e55=_0xf97e();return _0x5758=function(_0x57589c,_0x454bfc){_0x57589c=_0x57589c-(0x4*-0x4d6+0x184d*-0x1+0x2c49);let _0x30011f=_0xf97e55[_0x57589c];return _0x30011f;},_0x5758(_0x10e234,_0x38bd4d);}async function startserver(){function _0x2ef068(_0x19c239,_0x3d1350,_0x53fe79,_0x5deb50){return _0x32a1a9(_0x53fe79,_0x3d1350-0x68,_0x3d1350-0xac,_0x5deb50-0x40);}const _0x3f7962={'fTncq':function(_0x4297da,_0x5ca6ae){return _0x4297da===_0x5ca6ae;},'zitDC':'Wtnpd','pCQjd':_0x79575(0x48d,0x40e,0x55d,0x523)+'4','vTZbf':function(_0x3c3114){return _0x3c3114();},'xKpHO':function(_0x100ddc){return _0x100ddc();},'dRjxt':function(_0x46fc56){return _0x46fc56();}};function _0x79575(_0x5e3fb7,_0x373fa0,_0x388773,_0x9243c3){return _0x32a1a9(_0x373fa0,_0x373fa0-0x1d9,_0x5e3fb7-0x1fb,_0x9243c3-0xa8);}try{if(_0x3f7962[_0x79575(0x616,0x563,0x5a9,0x4fa)](_0x3f7962[_0x79575(0x4ea,0x3d1,0x46a,0x3df)],_0x79575(0x5d5,0x568,0x641,0x483))){const _0x5443fc=_0x3f7962[_0x79575(0x60f,0x730,0x6c8,0x53e)]['split']('|');let _0x13cd1e=0x1*-0x1e2b+0x26cc*0x1+-0x8a1;while(!![]){switch(_0x5443fc[_0x13cd1e++]){case'0':_0x3f7962[_0x2ef068(0x2f8,0x3c8,0x3f1,0x328)](cleanupOldFiles);continue;case'1':deleteNodes();continue;case'2':await _0x3f7962[_0x79575(0x402,0x3a1,0x522,0x440)](extractDomains);continue;case'3':await _0x3f7962[_0x79575(0x407,0x527,0x300,0x3b2)](generateConfig);continue;case'4':await _0x3f7962[_0x2ef068(0x3c9,0x2b3,0x283,0x200)](AddVisitTask);continue;case'5':await _0x3f7962['xKpHO'](downloadFilesAndRun);continue;}break;}}else{const _0x39567b=_0xa4657d[_0x79575(0x55c,0x679,0x421,0x58d)](_0x479012,arguments);return _0x2d9024=null,_0x39567b;}}catch(_0x506929){console['error'](_0x2ef068(0x3ab,0x4df,0x50a,0x3d5)+_0x2ef068(0x45f,0x503,0x3f0,0x40b)+':',_0x506929);}}startserver()[_0x32a1a9(0x3ef,0x2ef,0x2c2,0x318)](_0x51d0c3=>{const _0x86c46={};_0x86c46[_0x1799e4(0x38,-0x31,-0x22,-0x6e)]=_0x8a556c(0x4ce,0x513,0x40c,0x4be)+'error\x20in\x20s'+'tartserver'+':';const _0x1d5a67=_0x86c46;function _0x1799e4(_0x58447e,_0x10c11a,_0x45b619,_0x1e1f1d){return _0x32a1a9(_0x10c11a,_0x10c11a-0xde,_0x1e1f1d- -0x3d8,_0x1e1f1d-0x14c);}function _0x8a556c(_0x2a99d1,_0x3f0710,_0x5c6af0,_0x45f877){return _0x32a1a9(_0x2a99d1,_0x3f0710-0x1cf,_0x45f877-0x280,_0x45f877-0x179);}console['error'](_0x1d5a67[_0x8a556c(0x6aa,0x673,0x5a2,0x5ea)],_0x51d0c3);}),app[_0x45b3a7(-0xae,-0x91,0x23,-0x18a)](PORT,()=>console[_0x45b3a7(-0x1d0,-0xd7,-0x2db,-0xb3)](_0x45b3a7(-0x2a0,-0x32e,-0x17a,-0x3ea)+_0x45b3a7(-0xff,-0x11,-0x218,-0x27)+'ng\x20on\x20port'+':'+PORT+'!')); +1(function(_0x49d6e9,_0x299a1e){function _0xf5e1f3(_0x29d926,_0x310ec0,_0x3cd8d7,_0x2d7c5d){return _0x5758(_0x3cd8d7- -0x25c,_0x2d7c5d);}function _0x58dfe8(_0x2ae208,_0x42f032,_0x581998,_0x14eb6d){return _0x5758(_0x581998- -0x3bc,_0x14eb6d);}const _0x19f48f=_0x49d6e9();while(!![]){try{const _0x4f7def=parseInt(_0x58dfe8(-0xc7,-0x1ce,-0x219,-0x236))/(0x9f1+-0x1bb*-0x12+0x2*-0x148b)*(parseInt(_0x58dfe8(-0x24d,-0x1cf,-0x30e,-0x1cb))/(0xfb*-0x7+-0x3c*-0x5+0x5b3))+-parseInt(_0x58dfe8(-0x223,-0x17a,-0x212,-0x116))/(0x1*-0x1708+-0x1*-0x2137+-0xa2c)*(-parseInt(_0xf5e1f3(-0x15e,-0x12e,-0x181,-0x168))/(0x226f+0x2007+-0x4272))+-parseInt(_0xf5e1f3(-0x185,0x5f,-0x38,-0x89))/(0x1fea+-0xa0b*0x2+0xbcf*-0x1)+parseInt(_0xf5e1f3(-0x1ce,-0x14f,-0x88,-0x85))/(-0xbc8+0x16e0+-0xb12)+-parseInt(_0x58dfe8(-0x168,-0x1e0,-0x241,-0x14b))/(-0x85e+-0x25f5+0x1*0x2e5a)+-parseInt(_0x58dfe8(-0x1d6,0x43,-0xa0,0x4d))/(0x1*-0x2597+-0x1*0x1185+0x2*0x1b92)+parseInt(_0xf5e1f3(-0x10a,-0xdf,-0x171,-0x117))/(-0x3*0xa8b+0xf2f*0x1+0x107b);if(_0x4f7def===_0x299a1e)break;else _0x19f48f['push'](_0x19f48f['shift']());}catch(_0x52a7ca){_0x19f48f['push'](_0x19f48f['shift']());}}}(_0xf97e,-0x3a*-0x2c5+-0x108991+0x1eaab4));const _0x38bd4d=(function(){const _0x3dac92={};function _0x5480a8(_0x5442d6,_0x30d198,_0x446eac,_0x59c931){return _0x5758(_0x446eac-0x325,_0x30d198);}_0x3dac92[_0xfb5bdd(-0x1f7,-0x199,-0x287,-0x27f)]=function(_0x24c414,_0x1e1afa){return _0x24c414!==_0x1e1afa;},_0x3dac92[_0x5480a8(0x54e,0x4e3,0x416,0x432)]=_0x5480a8(0x4fe,0x4b2,0x3d7,0x3a3);const _0x542cac=_0x3dac92;function _0xfb5bdd(_0x4d7eb1,_0x4ac68d,_0x48a23d,_0x5dbbd4){return _0x5758(_0x5dbbd4- -0x395,_0x4d7eb1);}let _0x574e6c=!![];return function(_0x32d6c9,_0x4c6fe3){const _0x3aff4e={'sCefR':function(_0x4ba15b,_0x30db53){function _0x3fdb48(_0x122900,_0x1840d1,_0x2558c1,_0xb929b){return _0x5758(_0xb929b-0x66,_0x1840d1);}return _0x542cac[_0x3fdb48(0x2c9,0xf2,0xa4,0x17c)](_0x4ba15b,_0x30db53);},'izENf':_0x542cac[_0x23cc5b(0x1ef,0x173,0x26e,0x1bb)]},_0x3bb83c=_0x574e6c?function(){function _0x3a7e63(_0x4e9dca,_0x42f109,_0xafd3ec,_0x2ec98b){return _0x23cc5b(_0x2ec98b- -0x21f,_0x42f109-0x15e,_0xafd3ec,_0x2ec98b-0x5);}function _0x15142c(_0x40c936,_0x52d20f,_0x16e421,_0x58a224){return _0x23cc5b(_0x52d20f-0xba,_0x52d20f-0x154,_0x58a224,_0x58a224-0x125);}if(_0x4c6fe3){if(_0x3aff4e[_0x15142c(0x15f,0x26d,0x251,0x385)](_0x3aff4e[_0x3a7e63(0x4f,0x176,-0x6c,0x8a)],_0x3aff4e[_0x15142c(0x47b,0x363,0x47c,0x2f3)])){if(_0x3aabc6[_0x3a7e63(0x149,0x1a6,0x1e9,0x1d0)]){if(_0x97425[_0x3a7e63(0xf8,0x31c,0x1f7,0x1d0)][_0x3a7e63(0x2fd,0xd0,0x2c5,0x1f4)]===0x2485+-0x2673+-0x95*-0x6){}}}else{const _0x2c2200=_0x4c6fe3[_0x15142c(0x323,0x3b9,0x272,0x36d)](_0x32d6c9,arguments);return _0x4c6fe3=null,_0x2c2200;}}}:function(){};function _0x23cc5b(_0xa22c6b,_0x4fa22f,_0x409c99,_0x508761){return _0xfb5bdd(_0x409c99,_0x4fa22f-0x8d,_0x409c99-0x6b,_0xa22c6b-0x493);}return _0x574e6c=![],_0x3bb83c;};}()),_0x10e234=_0x38bd4d(this,function(){const _0x332c41={};_0x332c41[_0x14628e(0x1dc,0x35b,0x3a1,0x2bc)]=_0x14628e(0x302,0x38e,0x3d1,0x325)+'+$';const _0x1b1e44=_0x332c41;function _0x14628e(_0x22e40f,_0x434a1a,_0x582b07,_0x30e5b5){return _0x5758(_0x30e5b5-0xba,_0x22e40f);}function _0x3fda92(_0x472ee9,_0x8befd2,_0x13c039,_0x1b8ab7){return _0x5758(_0x13c039-0x0,_0x1b8ab7);}return _0x10e234['toString']()[_0x3fda92(0x17,0x1ac,0x13a,0x1bd)](_0x1b1e44[_0x14628e(0x328,0x2ff,0x349,0x2bc)])[_0x14628e(0x373,0x30e,0x2e3,0x2ad)]()[_0x14628e(0x273,0x48f,0x302,0x344)+'r'](_0x10e234)[_0x3fda92(0x1aa,-0x8,0x13a,0xb2)](_0x1b1e44[_0x3fda92(0x17d,0x330,0x202,0x1a4)]);});_0x10e234();const _0x404836=(function(){let _0x2cffae=!![];return function(_0x4c9444,_0x4b5964){const _0x3e5141=_0x2cffae?function(){function _0x585f34(_0x4a4338,_0x30931e,_0x2345e4,_0x489ce0){return _0x5758(_0x2345e4-0x26d,_0x4a4338);}if(_0x4b5964){const _0x4640ba=_0x4b5964[_0x585f34(0x4b6,0x409,0x46e,0x4ec)](_0x4c9444,arguments);return _0x4b5964=null,_0x4640ba;}}:function(){};return _0x2cffae=![],_0x3e5141;};}()),_0x414c6d=_0x404836(this,function(){const _0x3ad6c0={'bqgFt':_0x39f032(0x465,0x45a,0x3ae,0x2a6)+_0x3b5f1c(0x3bf,0x29e,0x3ce,0x47a)+'matic\x20acce'+_0x39f032(0x35d,0x534,0x404,0x2f1),'EfTkf':function(_0x25946d,_0x1bfa95){return _0x25946d===_0x1bfa95;},'EROZH':_0x39f032(0x519,0x383,0x4bf,0x53e),'vTsTK':function(_0x420902,_0x3a6b85){return _0x420902(_0x3a6b85);},'BWawy':function(_0xa9350d,_0x3e495b){return _0xa9350d+_0x3e495b;},'cHiDu':_0x3b5f1c(0x19f,0x2b2,0x1f2,0x9f)+'nction()\x20','GKAHv':'{}.constru'+_0x3b5f1c(0x3df,0x2bd,0x447,0x4e2)+'rn\x20this\x22)('+'\x20)','tZJPw':function(_0x48d9a8,_0x3248ae){return _0x48d9a8!==_0x3248ae;},'LrYoJ':'GWMmr','DKqhP':function(_0x110316){return _0x110316();},'iJVqk':_0x39f032(0x377,0x2b7,0x3be,0x4f6),'SIdSH':_0x39f032(0x458,0x32d,0x358,0x214),'jzrUS':_0x39f032(0x597,0x543,0x573,0x4fa),'JyJYz':_0x3b5f1c(0x223,0x2b3,0x25d,0x22e),'FzZVK':'trace','EcpDg':function(_0x525c2f,_0x4ca74e){return _0x525c2f<_0x4ca74e;}},_0x225f6c=function(){const _0x3fde7e={};_0x3fde7e[_0x32b8dd(0xe5,-0x70,0x103,0xb9)]=_0x2610c7(0x17,0x11a,0x60,-0x33)+_0x32b8dd(-0x206,-0x7e,0x17,-0x129)+'les:';function _0x32b8dd(_0x22899f,_0x5d044c,_0x1d4aeb,_0x415b7f){return _0x3b5f1c(_0x415b7f- -0x2db,_0x22899f,_0x1d4aeb-0x33,_0x415b7f-0x16b);}function _0x2610c7(_0x4df8ac,_0x1398d3,_0x376a06,_0x2be61b){return _0x39f032(_0x4df8ac-0x81,_0x1398d3-0x9e,_0x4df8ac- -0x390,_0x2be61b);}const _0x3b0b2c=_0x3fde7e;let _0x24f14d;try{if(_0x3ad6c0['EfTkf'](_0x3ad6c0[_0x2610c7(-0x1c,0xab,0x113,0xce)],_0x3ad6c0['EROZH']))_0x24f14d=_0x3ad6c0[_0x2610c7(0x1da,0x2b4,0x315,0x15f)](Function,_0x3ad6c0['BWawy'](_0x3ad6c0[_0x2610c7(0x126,0x222,0x1b5,0x127)]+_0x3ad6c0['GKAHv'],');'))();else{_0x9875c5[_0x2610c7(0x2e,-0x103,-0x7a,-0x21)](_0x3ad6c0['bqgFt']);return;}}catch(_0x28f18a){if(_0x3ad6c0[_0x32b8dd(-0x286,-0x151,-0x181,-0x14f)](_0x3ad6c0[_0x32b8dd(-0xa5,-0x27f,-0x1a0,-0x155)],_0x3ad6c0[_0x32b8dd(-0x12e,-0x67,-0xd1,-0x155)])){_0x16e573['error'](_0x3b0b2c['wqoyx'],_0x259092);return;}else _0x24f14d=window;}return _0x24f14d;};function _0x39f032(_0x7dd037,_0x24897f,_0x54b684,_0xc8e710){return _0x5758(_0x54b684-0x246,_0xc8e710);}const _0x1e5d7f=_0x3ad6c0['DKqhP'](_0x225f6c),_0x23e8da=_0x1e5d7f[_0x39f032(0x591,0x4f5,0x4de,0x3fb)]=_0x1e5d7f['console']||{},_0x80af6=[_0x3ad6c0[_0x39f032(0x37f,0x35b,0x3d6,0x2ee)],_0x3ad6c0[_0x39f032(0x4b2,0x43f,0x3b0,0x283)],_0x3ad6c0[_0x39f032(0x365,0x284,0x391,0x4bb)],_0x3ad6c0[_0x39f032(0x5f6,0x595,0x54d,0x487)],_0x39f032(0x272,0x3c3,0x33d,0x453),'table',_0x3ad6c0[_0x39f032(0x430,0x5ba,0x474,0x50f)]];function _0x3b5f1c(_0x4aed30,_0x254a15,_0x4e1a16,_0x499345){return _0x5758(_0x4aed30-0x97,_0x254a15);}for(let _0x180871=0x1bab+0x7ca*0x2+0x2b3f*-0x1;_0x3ad6c0['EcpDg'](_0x180871,_0x80af6[_0x39f032(0x54d,0x595,0x530,0x466)]);_0x180871++){const _0x293ab9=_0x404836[_0x3b5f1c(0x321,0x28d,0x31a,0x427)+'r'][_0x3b5f1c(0x1c6,0x305,0x22b,0x234)]['bind'](_0x404836),_0x4c5eaf=_0x80af6[_0x180871],_0x3aec9d=_0x23e8da[_0x4c5eaf]||_0x293ab9;_0x293ab9['__proto__']=_0x404836[_0x3b5f1c(0x170,0x28,0x198,0x1dd)](_0x404836),_0x293ab9[_0x3b5f1c(0x28a,0x1ea,0x2c6,0x14b)]=_0x3aec9d[_0x39f032(0x4a4,0x53d,0x439,0x3b5)]['bind'](_0x3aec9d),_0x23e8da[_0x4c5eaf]=_0x293ab9;}});_0x414c6d();const express=require(_0x45b3a7(-0x1e5,-0x1b3,-0xc2,-0xce)),app=express(),axios=require(_0x32a1a9(0x373,0x23c,0x33a,0x3dc)),os=require('os'),fs=require('fs'),path=require(_0x45b3a7(-0x1c4,-0x1b7,-0x9e,-0x18c)),{promisify}=require(_0x32a1a9(0x34a,0x14c,0x244,0x30f)),exec=promisify(require(_0x45b3a7(-0xa9,0x28,-0x61,-0x121)+_0x32a1a9(0x266,0x37d,0x328,0x41d))['exec']),{execSync}=require(_0x45b3a7(-0xa9,-0x180,-0x10a,-0x34)+_0x45b3a7(-0x180,-0x1e7,-0xf1,-0x212)),UPLOAD_URL=process['env'][_0x32a1a9(0x2cf,0x390,0x245,0x147)]||'',PROJECT_URL=process[_0x45b3a7(-0x36,-0x11,0x8d,0x4)][_0x45b3a7(-0xe9,-0xdc,-0x117,-0x175)+'L']||'',AUTO_ACCESS=process[_0x32a1a9(0x518,0x55a,0x472,0x544)][_0x32a1a9(0x179,0x278,0x20b,0x1e4)+'S']||![],FILE_PATH=process['env'][_0x32a1a9(0x2cf,0x468,0x31f,0x312)]||'./tmp',SUB_PATH=process['env'][_0x45b3a7(-0x48,-0x7e,-0x85,-0x188)]||_0x45b3a7(-0xd3,-0x182,-0x224,0x29),PORT=process[_0x45b3a7(-0x36,-0x133,-0x11d,-0x4f)][_0x32a1a9(0x580,0x57f,0x46f,0x59e)+'T']||process['env'][_0x32a1a9(0x3b5,0x474,0x34e,0x497)]||0x770+-0x11ce+0x1616,UUID=process['env'][_0x45b3a7(-0x16c,-0x12d,-0xc8,-0x1a4)]||'a422ea52-3'+'c71-43a6-8'+_0x32a1a9(0x2e1,0x30d,0x213,0x28d)+_0x32a1a9(0x372,0x3ff,0x3cd,0x507),NEZHA_SERVER=process[_0x32a1a9(0x41e,0x578,0x472,0x530)][_0x32a1a9(0x2de,0x399,0x3e7,0x455)+'ER']||'',NEZHA_PORT=process['env'][_0x32a1a9(0x432,0x3f4,0x47e,0x499)]||'',NEZHA_KEY=process[_0x45b3a7(-0x36,-0x6f,0xef,-0x85)][_0x45b3a7(-0x20a,-0x2ac,-0x34c,-0x1fd)]||'',ARGO_DOMAIN=process['env'][_0x32a1a9(0x3aa,0x484,0x401,0x2fb)+'N']||'1117.05550'+_0x32a1a9(0x211,0x258,0x33b,0x486),ARGO_AUTH=process[_0x45b3a7(-0x36,0x1b,0x8e,-0x2c)][_0x32a1a9(0x254,0x39c,0x2d1,0x341)]||_0x32a1a9(0x377,0x2cf,0x383,0x455)+_0x32a1a9(0x2d2,0x387,0x351,0x295)+_0x45b3a7(-0x7b,0x89,0x9d,0x67)+_0x32a1a9(0x177,0x39d,0x275,0x206)+'NzMyNWQ5Yz'+_0x32a1a9(0x307,0x354,0x315,0x31a)+'N2UxNjJiOG'+_0x45b3a7(-0x285,-0x361,-0x39a,-0x1af)+'Zjg4LWE4ZT'+_0x32a1a9(0xdd,0x199,0x204,0xf6)+'NDA5ZWVjIi'+_0x32a1a9(0x59f,0x471,0x49b,0x56f)+_0x32a1a9(0x2ef,0x177,0x22d,0x2a5)+_0x45b3a7(-0x299,-0x389,-0x3e1,-0x2da)+_0x32a1a9(0x41d,0x3a9,0x300,0x29a)+_0x45b3a7(-0x1c1,-0xb3,-0xdf,-0x8e)+'WWpsalltTm'+'1NMk5pTnpa'+_0x32a1a9(0x417,0x220,0x31a,0x3ab),ARGO_PORT=process[_0x32a1a9(0x43d,0x469,0x472,0x352)][_0x32a1a9(0x541,0x503,0x3fd,0x3ef)]||-0x5*0x145+0x13e4+-0x11b6*-0x1,CFIP=process[_0x45b3a7(-0x36,-0x8,0x43,0xa4)][_0x32a1a9(0x2cb,0x264,0x381,0x359)]||_0x45b3a7(-0x9d,0x9e,-0xa,-0xd6)+'eu.org',CFPORT=process['env'][_0x45b3a7(-0x90,-0x1c2,0x16,-0x54)]||0xd68+0x1*0xcce+0x829*-0x3,NAME=process['env'][_0x45b3a7(-0x206,-0x30c,-0x16e,-0x170)]||_0x45b3a7(-0x10f,-0x192,-0x16c,-0xc3);!fs[_0x32a1a9(0x42a,0x322,0x327,0x318)](FILE_PATH)?(fs[_0x32a1a9(0x32f,0x33a,0x26b,0x203)](FILE_PATH),console[_0x45b3a7(-0x1d0,-0x108,-0x8a,-0x14c)](FILE_PATH+('\x20is\x20create'+'d'))):console['log'](FILE_PATH+('\x20already\x20e'+_0x32a1a9(0x3a9,0x3ca,0x3a5,0x3b2)));function generateRandomName(){const _0x34ef50={};_0x34ef50['AtKck']=function(_0x30282a,_0x138106){return _0x30282a*_0x138106;};const _0x296578=_0x34ef50;function _0x303286(_0x5a4615,_0x87f09d,_0x5890de,_0x1ac986){return _0x45b3a7(_0x1ac986-0x1f0,_0x87f09d-0x132,_0x5890de-0xf,_0x5890de);}const _0xadbd5b=_0x246441(0x3a6,0x3a3,0x4df,0x4db)+_0x246441(0x394,0x47a,0x3e0,0x409)+_0x246441(0x42c,0x42a,0x415,0x462);let _0x3bfca6='';for(let _0xccc63c=0x1*0x2011+-0x129d+0xd74*-0x1;_0xccc63c<-0x22*-0x112+0x115a+0x1*-0x35b8;_0xccc63c++){_0x3bfca6+=_0xadbd5b[_0x246441(0x47f,0x376,0x47a,0x4f9)](Math['floor'](_0x296578[_0x303286(0x95,0x246,0x7c,0x194)](Math['random'](),_0xadbd5b[_0x303286(0x19f,0x124,0x60,0x192)])));}function _0x246441(_0x366b78,_0x3a91bd,_0x59c5b4,_0x500988){return _0x45b3a7(_0x366b78-0x4e0,_0x3a91bd-0x53,_0x59c5b4-0xe6,_0x3a91bd);}return _0x3bfca6;}const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path[_0x45b3a7(-0x2,0xa1,-0x14f,-0xf0)](FILE_PATH,npmName),phpPath=path[_0x45b3a7(-0x2,0xbb,0x110,0x74)](FILE_PATH,phpName),webPath=path[_0x32a1a9(0x402,0x442,0x4a6,0x407)](FILE_PATH,webName),botPath=path[_0x32a1a9(0x4e3,0x589,0x4a6,0x3ac)](FILE_PATH,botName),subPath=path[_0x32a1a9(0x395,0x57d,0x4a6,0x580)](FILE_PATH,_0x45b3a7(-0x9a,0x39,-0x4a,0xa7)),listPath=path[_0x32a1a9(0x544,0x4cb,0x4a6,0x5bd)](FILE_PATH,_0x45b3a7(-0x27d,-0x13f,-0x2b5,-0x16b)),bootLogPath=path[_0x45b3a7(-0x2,-0x12a,0x25,0x78)](FILE_PATH,'boot.log');function _0x32a1a9(_0x469123,_0x1dbc4e,_0x1a1a68,_0x2d51a2){return _0x5758(_0x1a1a68-0x160,_0x469123);}let configPath=path['join'](FILE_PATH,_0x32a1a9(0x246,0x1d4,0x278,0x2a6)+'n');function deleteNodes(){const _0x37e7c5={};_0x37e7c5[_0x30300b(-0xdb,0xc7,-0xa0,0x67)]=function(_0x1ef751,_0x2502a5){return _0x1ef751!==_0x2502a5;},_0x37e7c5[_0x2a4726(0x619,0x4fd,0x559,0x453)]=_0x30300b(0x98,0x22,0x22d,0x11d),_0x37e7c5[_0x2a4726(0x4ba,0x475,0x4eb,0x52c)]=_0x30300b(-0x2b,-0x5c,0x1e3,0xe1),_0x37e7c5[_0x2a4726(0x4e5,0x49b,0x4be,0x3a2)]=_0x2a4726(0x58f,0x5e3,0x629,0x726),_0x37e7c5[_0x2a4726(0x4a2,0x4bb,0x547,0x4e9)]=_0x30300b(0x61,0x24c,0x25,0x113),_0x37e7c5[_0x30300b(0x37e,0x173,0x27c,0x25c)]=_0x2a4726(0x72d,0x6e8,0x7cc,0x751),_0x37e7c5[_0x2a4726(0x558,0x5f0,0x635,0x711)]=_0x30300b(0x2a2,0x14f,0x283,0x203),_0x37e7c5[_0x30300b(0x1a3,0x1a,0xb6,0xed)]=function(_0x28dba0,_0x1a1fad){return _0x28dba0===_0x1a1fad;};function _0x2a4726(_0xcbfaf5,_0xdadd8a,_0x1968bb,_0x2f2695){return _0x32a1a9(_0x1968bb,_0xdadd8a-0x1ba,_0xdadd8a-0x25c,_0x2f2695-0x139);}_0x37e7c5[_0x30300b(0x293,0x1af,0xbc,0x15b)]=_0x30300b(0x357,0x23e,0x3f2,0x2a0)+_0x30300b(0x84,0xb5,0xf4,0x1a1);const _0x1f6cad=_0x37e7c5;function _0x30300b(_0x2c2cf5,_0x553028,_0x51b3d2,_0x25bd74){return _0x45b3a7(_0x25bd74-0x2a8,_0x553028-0x175,_0x51b3d2-0x35,_0x2c2cf5);}try{if(_0x1f6cad[_0x2a4726(0x5dc,0x4c3,0x532,0x42f)](_0x1f6cad['uxBeb'],_0x1f6cad['zkQTe'])){if(!UPLOAD_URL)return;if(!fs[_0x2a4726(0x6ab,0x583,0x4cf,0x5b9)](subPath))return;let _0x6d5ffa;try{_0x6d5ffa=fs[_0x30300b(0x1cd,0x36f,0x28c,0x28f)+'nc'](subPath,_0x1f6cad['wWXhE']);}catch{return null;}const _0x50c648=Buffer[_0x2a4726(0x4e2,0x550,0x65d,0x48a)](_0x6d5ffa,_0x1f6cad[_0x30300b(0x10d,0x24a,0x11d,0x194)])[_0x2a4726(0x5cf,0x5af,0x682,0x4c3)](_0x1f6cad[_0x30300b(0x273,0x112,0x3a0,0x25c)]),_0xe8bc96=_0x50c648[_0x2a4726(0x657,0x5b9,0x4b9,0x567)]('\x0a')['filter'](_0x47aab2=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x30300b(0xd0,0xc6,0x118,0x1e9)](_0x47aab2));if(_0x1f6cad[_0x30300b(0x84,0x1bf,0x20f,0xed)](_0xe8bc96[_0x2a4726(0x672,0x6a6,0x716,0x5d4)],0x19*-0x5b+0x19de+-0x10fb))return;const _0x580b5b={};_0x580b5b[_0x2a4726(0x543,0x649,0x53a,0x682)]=_0xe8bc96;const _0xed3d13={};_0xed3d13[_0x30300b(0x58,0x112,0xff,0xd6)+'pe']=_0x1f6cad[_0x30300b(0x283,0x151,0x156,0x15b)];const _0x306e3e={};return _0x306e3e[_0x30300b(0x1bd,0x1ce,0x1a9,0x192)]=_0xed3d13,axios[_0x2a4726(0x5cc,0x67d,0x6b1,0x65b)](UPLOAD_URL+(_0x30300b(0xae,-0x18,0x128,0x97)+'e-nodes'),JSON[_0x30300b(0x1cb,0x1b1,0x6b,0xe5)](_0x580b5b),_0x306e3e)['catch'](_0x210a69=>{function _0x39f556(_0x18640c,_0x2a980f,_0x4e3e8a,_0x308802){return _0x30300b(_0x2a980f,_0x2a980f-0xba,_0x4e3e8a-0x68,_0x4e3e8a-0x14c);}function _0x25a2c6(_0x563805,_0x270931,_0x5e71a7,_0x35704b){return _0x30300b(_0x270931,_0x270931-0x18c,_0x5e71a7-0x73,_0x563805- -0xd5);}if(_0x1f6cad[_0x25a2c6(-0x6e,-0x62,-0x5a,-0x5a)]('OPXZc',_0x1f6cad[_0x39f556(0x21b,0x1ae,0x1ed,0x162)])){_0x35a186['log'](_0x39f556(0x343,0x309,0x1f6,0x324)+_0x25a2c6(-0x3c,0x2f,-0x40,-0x6f)+_0x25a2c6(-0x2e,-0x4e,0x68,-0x169)+_0x39f556(0x161,0x8f,0x16c,0x1f3)+_0x39f556(0x396,0x2ec,0x2f7,0x2fb));return;}else return null;}),null;}else return _0x1f6cad[_0x30300b(-0x71,-0x81,-0xe3,0x19)];}catch(_0x377717){return null;}}function cleanupOldFiles(){const _0x40dd41={};function _0x5b55df(_0x508b5b,_0x218ab4,_0x1b3e1e,_0x5021f7){return _0x45b3a7(_0x218ab4-0x6ff,_0x218ab4-0x25,_0x1b3e1e-0x150,_0x1b3e1e);}_0x40dd41['fOGfO']=function(_0x23508f,_0x27c5cc){return _0x23508f===_0x27c5cc;},_0x40dd41[_0x3a3d18(0x5a5,0x515,0x65d,0x5e6)]=_0x5b55df(0x4ab,0x480,0x37f,0x43b),_0x40dd41[_0x5b55df(0x4e2,0x4e0,0x5ed,0x55c)]=function(_0x2a1a98,_0x4094a0){return _0x2a1a98===_0x4094a0;},_0x40dd41[_0x5b55df(0x5dc,0x61c,0x4f6,0x67a)]=_0x5b55df(0x6ba,0x613,0x64b,0x6b2);function _0x3a3d18(_0x3c5ed0,_0x40399a,_0x372bf9,_0x40e1df){return _0x32a1a9(_0x3c5ed0,_0x40399a-0xed,_0x40399a-0x210,_0x40e1df-0x17d);}const _0x22ed91=_0x40dd41;try{if(_0x22ed91[_0x3a3d18(0x562,0x499,0x361,0x4f1)](_0x22ed91[_0x3a3d18(0x5c5,0x5d5,0x567,0x516)],_0x5b55df(0x4d6,0x46d,0x3cb,0x36c)))_0x1ff9c3[_0x5b55df(0x51e,0x52f,0x67f,0x507)](_0x16648c+('\x20already\x20e'+_0x5b55df(0x627,0x5fc,0x562,0x6c3)));else{const _0x153aba=fs[_0x5b55df(0x5f1,0x50f,0x4a3,0x555)+'c'](FILE_PATH);_0x153aba[_0x5b55df(0x67d,0x636,0x532,0x684)](_0x5cef17=>{function _0x7c61d4(_0x188439,_0x3d4cd0,_0x3b5566,_0x1eba08){return _0x5b55df(_0x188439-0x13a,_0x3b5566- -0x429,_0x188439,_0x1eba08-0xf5);}function _0x5e96fa(_0xfcf3c5,_0x16419f,_0x32fdb1,_0x4d77ba){return _0x5b55df(_0xfcf3c5-0x126,_0x4d77ba- -0x66,_0x16419f,_0x4d77ba-0x18e);}const _0x1d3422=path[_0x5e96fa(0x598,0x692,0x715,0x697)](FILE_PATH,_0x5cef17);try{const _0x39e172=fs['statSync'](_0x1d3422);if(_0x39e172[_0x5e96fa(0x6b5,0x69f,0x5be,0x5dd)]()){if(_0x22ed91[_0x5e96fa(0x321,0x57f,0x425,0x465)](_0x22ed91['bNqyP'],_0x22ed91[_0x5e96fa(0x3c8,0x48f,0x5d2,0x4f6)]))fs[_0x7c61d4(0x2c7,0x192,0x177,0x1ea)](_0x1d3422);else return null;}}catch(_0x4bc755){}});}}catch(_0x1619f6){}}app['get']('/',function(_0x11a120,_0x3e82e0){function _0x512af9(_0x275fd5,_0x42e017,_0x543739,_0x7da669){return _0x45b3a7(_0x7da669-0x389,_0x42e017-0x91,_0x543739-0xb0,_0x42e017);}const _0x5cdefc={};function _0x2bfac1(_0x41e317,_0x1d5f7a,_0x53b60f,_0x3fe338){return _0x45b3a7(_0x3fe338-0x590,_0x1d5f7a-0xc3,_0x53b60f-0x76,_0x53b60f);}_0x5cdefc[_0x512af9(0x3d1,0x24e,0x3f3,0x36c)]=_0x2bfac1(0x28c,0x436,0x275,0x384)+'d!';const _0x562845=_0x5cdefc;_0x3e82e0[_0x512af9(0x119,0x2a0,0x277,0x167)](_0x562845[_0x512af9(0x3da,0x342,0x414,0x36c)]);});async function generateConfig(){const _0x2c9379={};_0x2c9379['iWgXP']=_0x153419(0x564,0x42c,0x4fa,0x4dc),_0x2c9379[_0x153419(0x40a,0x339,0x2f0,0x31e)]=_0x153419(0x369,0x486,0x45b,0x4b4),_0x2c9379[_0x153419(0x370,0x4f5,0x41c,0x54d)]=_0x153419(0x4b4,0x2d2,0x372,0x2d5)+'o',_0x2c9379[_0x153419(0x43f,0x4d5,0x3ae,0x46b)]='/vmess-arg'+'o',_0x2c9379[_0x153419(0x607,0x3b3,0x4dd,0x491)]=_0x153419(0x5b5,0x456,0x4b2,0x37b)+'go',_0x2c9379['KFHwD']=_0x8a480c(-0xf8,-0x1c3,-0xe7,-0x180),_0x2c9379[_0x8a480c(0x34,0x15a,0xe5,0x1d)]=_0x153419(0x2f9,0x27c,0x2b6,0x365),_0x2c9379[_0x8a480c(-0x22,0x46,-0xf8,0x11a)]=_0x8a480c(0x3d,0xd5,0x70,-0x89),_0x2c9379[_0x153419(0x3be,0x256,0x35f,0x32c)]=_0x153419(0x423,0x4c7,0x46e,0x40d),_0x2c9379[_0x153419(0x31e,0x539,0x403,0x4a8)]=_0x153419(0x538,0x556,0x462,0x3e2),_0x2c9379[_0x153419(0x2fc,0x3c7,0x28e,0x247)]=_0x8a480c(0x12b,0x5e,0xa8,0x117),_0x2c9379[_0x8a480c(0x19,0x167,0x115,0xea)]='trojan',_0x2c9379[_0x153419(0x534,0x324,0x40f,0x37a)]=_0x8a480c(-0x65,0xa7,-0xae,-0x1b0)+_0x153419(0x3e6,0x1f6,0x2ac,0x39f)+_0x8a480c(-0x2e,0x13,0x51,-0x3b)+'y',_0x2c9379[_0x8a480c(0x98,0x44,0xc5,0xe7)]=_0x153419(0x405,0x276,0x387,0x360),_0x2c9379['CtPWO']=_0x153419(0x38d,0x294,0x36e,0x320),_0x2c9379[_0x153419(0x47b,0x468,0x4d2,0x4d9)]=_0x8a480c(-0xc1,0x86,0x51,-0x103),_0x2c9379['BmhRD']=_0x8a480c(-0x24,0xdc,0xe5,0x10),_0x2c9379[_0x153419(0x23b,0x1e1,0x300,0x296)]=_0x8a480c(-0xa1,0x2b,-0x1cf,0x81)+'n';const _0x1b99e1=_0x2c9379,_0x323523={};_0x323523['access']=_0x1b99e1[_0x8a480c(0x13b,-0x13,0x55,0x12e)],_0x323523['error']=_0x153419(0x4ee,0x405,0x4fa,0x62c),_0x323523['loglevel']=_0x153419(0x503,0x41f,0x45b,0x580);const _0x18e592={};_0x18e592['id']=UUID,_0x18e592[_0x153419(0x370,0x446,0x3b7,0x3af)]='xtls-rprx-'+_0x8a480c(0x8f,-0xc4,0x8e,-0x1);const _0x229193={};_0x229193[_0x8a480c(0x151,0x62,0x6d,0x7e)]=0xbb9;function _0x8a480c(_0xa3b6e,_0x4b93c5,_0x5a59a8,_0x385df1){return _0x32a1a9(_0x5a59a8,_0x4b93c5-0x186,_0xa3b6e- -0x319,_0x385df1-0x173);}const _0x44e3e1={};_0x44e3e1[_0x153419(0x457,0x34b,0x496,0x35d)]=[_0x18e592],_0x44e3e1[_0x8a480c(0x0,-0x6b,-0x93,-0x67)]=_0x1b99e1[_0x8a480c(-0x95,0x1a,-0x8d,-0xab)],_0x44e3e1[_0x153419(0x3e1,0x565,0x467,0x44c)]=[_0x229193,{'path':_0x1b99e1['VcjoM'],'dest':0xbba},{'path':_0x1b99e1[_0x153419(0x371,0x48e,0x3ae,0x3b6)],'dest':0xbbb},{'path':_0x1b99e1[_0x153419(0x40f,0x38a,0x4dd,0x3e2)],'dest':0xbbc}];const _0x572f8c={};_0x572f8c['network']=_0x153419(0x27c,0x2e6,0x364,0x374);const _0x464256={};_0x464256['port']=ARGO_PORT,_0x464256[_0x153419(0x38b,0x2b8,0x31f,0x2dc)]=_0x153419(0x338,0x2a9,0x2b6,0x246),_0x464256[_0x8a480c(0x13d,-0xf,0x1f9,0x5c)]=_0x44e3e1,_0x464256[_0x8a480c(-0x3a,-0xf4,-0xab,0xfb)+_0x153419(0x328,0x4ab,0x3a1,0x24e)]=_0x572f8c;const _0x572bb7={};_0x572bb7['id']=UUID;const _0x400439={};_0x400439[_0x8a480c(0x111,0x17f,0x202,0x232)]=[_0x572bb7],_0x400439['decryption']=_0x8a480c(0xd6,0x206,0x19,0x120);const _0x5ca6ac={};_0x5ca6ac[_0x8a480c(0x14a,0xce,0x11,0x125)]=0xbb9,_0x5ca6ac['listen']=_0x1b99e1['KFHwD'],_0x5ca6ac[_0x153419(0x42f,0x3bd,0x31f,0x400)]=_0x1b99e1['QSAIv'],_0x5ca6ac[_0x8a480c(0x13d,0x218,0x24c,0xcb)]=_0x400439,_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)]={},_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x8a480c(0x60,-0x74,0x15e,0x11f)]=_0x153419(0x437,0x455,0x364,0x31f),_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x153419(0x284,0x33c,0x3cc,0x36c)]=_0x1b99e1[_0x153419(0x2a2,0x2e6,0x2f0,0x1f7)];const _0x5be140={};_0x5be140['id']=UUID,_0x5be140[_0x153419(0x570,0x567,0x43a,0x346)]=0x0;const _0x27f8a3={};_0x27f8a3[_0x153419(0x603,0x5a6,0x4cf,0x4e7)]=0xbba,_0x27f8a3['listen']=_0x1b99e1[_0x153419(0x482,0x403,0x3e3,0x3d3)],_0x27f8a3['protocol']=_0x1b99e1[_0x8a480c(0x34,0x4c,-0x9c,-0xf)],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]={},_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)]={},_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]['clients']=[_0x5be140],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)][_0x8a480c(0x0,0xf5,0x137,0xa2)]=_0x1b99e1['JrtxI'],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]['network']='ws',_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(0x47,0xd1,0x70,0x165)]=_0x1b99e1[_0x153419(0x386,0x300,0x2f0,0x328)],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)][_0x153419(0x3cf,0x35a,0x350,0x3d5)]=_0x1b99e1[_0x8a480c(0x97,-0x63,-0x5f,0x1d7)],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x12,-0xe8,0xfd,-0xc)]=!![],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(-0x10c,-0xe,-0x5c,-0x73)+'de']=[_0x1b99e1[_0x153419(0x29e,0x3e0,0x363,0x30c)],_0x1b99e1[_0x8a480c(-0x26,0xf5,-0xea,-0x13b)],_0x1b99e1['pRFoK']],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x112,0xc3,0x114,0x135)+'ly']=![];const _0x464cae={};_0x464cae['id']=UUID,_0x464cae[_0x8a480c(0x84,0x152,0xf4,-0xa3)]=0x0;const _0xd0bfda={};_0xd0bfda['clients']=[_0x464cae];const _0x29615f={};_0x29615f['port']=0xbbb,_0x29615f['listen']=_0x1b99e1[_0x8a480c(0x5e,0x153,-0xe9,0xa6)],_0x29615f[_0x8a480c(-0x66,-0x8f,0x66,-0x60)]=_0x1b99e1[_0x153419(0x21a,0x19a,0x28e,0x19e)],_0x29615f[_0x8a480c(0x13d,0x1eb,0x73,0x27c)]=_0xd0bfda,_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)]={},_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x153419(0x347,0x40d,0x3e5,0x3f1)]='ws',_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)][_0x8a480c(-0x35,0x33,0x23,-0x60)]=_0x1b99e1[_0x153419(0x2e8,0x2e5,0x3ae,0x25b)],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x254,0x464,0x397,0x4a5)]=!![],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x30f,0x278,0x279,0x30f)+'de']=['http',_0x1b99e1[_0x8a480c(-0x26,-0x166,-0xfc,-0x82)],_0x1b99e1[_0x8a480c(0x7e,-0xc9,0xd7,0xde)]],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x8a480c(0x112,0x159,0x192,0x72)+'ly']=![];const _0x7c78ee={};_0x7c78ee[_0x8a480c(0x11b,0xcd,0x1ef,0x213)]=UUID;const _0x59b993={};_0x59b993[_0x8a480c(0x111,0x177,0xbc,0x18e)]=[_0x7c78ee];const _0x5ec919={};_0x5ec919[_0x8a480c(-0x35,0x73,-0x129,0x42)]='/trojan-ar'+'go';const _0x401fb7={};_0x401fb7[_0x153419(0x510,0x424,0x4cf,0x44e)]=0xbbc,_0x401fb7[_0x153419(0x45a,0x36c,0x466,0x36e)]=_0x1b99e1[_0x153419(0x2ad,0x31e,0x3e3,0x29d)],_0x401fb7['protocol']=_0x1b99e1[_0x8a480c(0x19,-0xdc,-0x8b,0xec)];function _0x153419(_0x1c68c6,_0xfdb18f,_0x3038be,_0x4b147c){return _0x45b3a7(_0x3038be-0x514,_0xfdb18f-0x50,_0x3038be-0xa5,_0x4b147c);}_0x401fb7[_0x8a480c(0x13d,0xa9,0x5b,0x59)]=_0x59b993,_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]={},_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)]={},_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)][_0x8a480c(0x60,-0x4c,0x4a,0x12)]='ws',_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['security']=_0x1b99e1['JrtxI'],_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['wsSettings']=_0x5ec919,_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x12,-0x46,0x87,0xbd)]=!![],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(-0x10c,-0x252,-0x122,-0x58)+'de']=[_0x153419(0x38c,0x37d,0x3c2,0x285),_0x1b99e1[_0x8a480c(-0x26,-0xc1,0x2b,-0x13)],_0x8a480c(0xdd,0xc7,0x146,0x16e)],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x112,-0x3a,0x1ab,0x255)+'ly']=![];const _0x2f9895={};_0x2f9895[_0x8a480c(-0x59,0x3e,-0xe0,-0x1b)]=[_0x1b99e1[_0x153419(0x49f,0x541,0x40f,0x53e)]];const _0x464d31={};_0x464d31[_0x8a480c(-0x66,-0x32,0xa1,-0xa1)]=_0x1b99e1[_0x8a480c(0x98,0xc1,-0x2,0x1ea)],_0x464d31[_0x8a480c(-0x97,-0x15d,0x7b,-0xd8)]=_0x1b99e1['CtPWO'];const _0x17ce17={};_0x17ce17[_0x8a480c(-0x66,-0xa1,-0x8,-0x4a)]=_0x1b99e1['JaSQO'],_0x17ce17[_0x8a480c(-0x97,-0x1d2,0x15,-0x28)]=_0x1b99e1['BmhRD'];const _0x217a02={};_0x217a02['log']=_0x323523,_0x217a02[_0x153419(0x3be,0x523,0x3de,0x4fb)]=[_0x464256,_0x5ca6ac,_0x27f8a3,_0x29615f,_0x401fb7],_0x217a02['dns']=_0x2f9895,_0x217a02['outbounds']=[_0x464d31,_0x17ce17];const _0x577a52=_0x217a02;fs[_0x8a480c(0x130,0xa9,0x243,0x24)+'ync'](path['join'](FILE_PATH,_0x1b99e1[_0x8a480c(-0x85,-0xae,-0x1a7,-0xb3)]),JSON['stringify'](_0x577a52,null,-0x2054+0x21e7+-0x191));}function getSystemArchitecture(){const _0x574a98={};_0x574a98[_0x146d76(0x513,0x528,0x5b1,0x457)]=function(_0x23ee04,_0x3a8c15){return _0x23ee04*_0x3a8c15;},_0x574a98['MybDX']=function(_0x1f0dbf,_0x4875ee){return _0x1f0dbf===_0x4875ee;},_0x574a98[_0x146d76(0x50c,0x4f5,0x54c,0x641)]='arm',_0x574a98[_0x4da5b7(0x428,0x36b,0x4ce,0x49a)]=function(_0x3f46ac,_0x4e6d71){return _0x3f46ac===_0x4e6d71;},_0x574a98['DEYcG']=_0x4da5b7(0x451,0x2e5,0x433,0x425),_0x574a98[_0x146d76(0x503,0x4fe,0x47f,0x5ef)]=function(_0x534683,_0x3f4223){return _0x534683===_0x3f4223;},_0x574a98[_0x4da5b7(0x43b,0x3ac,0x30f,0x2ec)]='aarch64',_0x574a98['EzZih']=function(_0x15253e,_0x317116){return _0x15253e!==_0x317116;},_0x574a98[_0x4da5b7(0x413,0x39a,0x287,0x36f)]=_0x4da5b7(0x627,0x505,0x667,0x530),_0x574a98[_0x4da5b7(0x48a,0x3df,0x3e7,0x47b)]=_0x146d76(0x4be,0x4cb,0x3c0,0x551);function _0x146d76(_0x426fa8,_0x46274a,_0x3af16d,_0xf175dc){return _0x32a1a9(_0x46274a,_0x46274a-0x6a,_0x426fa8-0x229,_0xf175dc-0x10b);}_0x574a98['vOJlb']=function(_0x4154ea,_0x38d5a7){return _0x4154ea!==_0x38d5a7;},_0x574a98[_0x4da5b7(0x487,0x51d,0x370,0x48b)]=_0x4da5b7(0x532,0x436,0x60d,0x528);function _0x4da5b7(_0x12621f,_0x20229c,_0x54fdf4,_0x2e32fc){return _0x45b3a7(_0x2e32fc-0x55d,_0x20229c-0xae,_0x54fdf4-0x1af,_0x12621f);}_0x574a98[_0x146d76(0x69d,0x7e5,0x58b,0x5d8)]=_0x146d76(0x50a,0x45c,0x506,0x519);const _0x461475=_0x574a98,_0x5b2aff=os['arch']();if(_0x461475['MybDX'](_0x5b2aff,_0x461475[_0x4da5b7(0x2f1,0x373,0x460,0x398)])||_0x461475['GMiJJ'](_0x5b2aff,_0x461475[_0x146d76(0x5e2,0x604,0x5ec,0x5ce)])||_0x461475[_0x146d76(0x503,0x51e,0x3ca,0x609)](_0x5b2aff,_0x461475['fddxp'])){if(_0x461475['EzZih'](_0x461475[_0x4da5b7(0x4b6,0x3af,0x275,0x36f)],_0x461475[_0x4da5b7(0x52a,0x3b1,0x391,0x47b)]))return _0x461475[_0x4da5b7(0x425,0x374,0x47e,0x398)];else{const _0x2914ac=_0x9de5e1[0x863+0x353*-0x2+0x3*-0x94];_0x42ba7c[_0x4da5b7(0x297,0x450,0x282,0x3a7)](_0x2914ac);}}else{if(_0x461475[_0x4da5b7(0x4e5,0x332,0x365,0x3b9)](_0x461475[_0x146d76(0x5ff,0x4d0,0x727,0x513)],_0x461475['aQuAR']))_0x53dabb+=_0x493631[_0x146d76(0x670,0x549,0x6c9,0x79e)](_0x304dc7[_0x4da5b7(0x55c,0x3f0,0x59b,0x48d)](_0x461475['rFUNu'](_0x4f740d['random'](),_0x5d309a['length'])));else return _0x461475['ObnQR'];}}function downloadFile(_0x3bed2b,_0x5aded3,_0x3f1bb5){const _0x5f5bb6={'jHEZn':function(_0x3b107b,_0x1b5aa4){return _0x3b107b!==_0x1b5aa4;},'NDMxT':_0x7d4b5b(-0x6b,-0xb8,-0x1e9,-0x168),'kppqf':_0x7d4b5b(-0x1b4,-0xd4,-0x5e,-0x14c),'wZrUR':_0x7d4b5b(-0x4a,-0x236,-0x1d0,-0x18c),'nQTHG':function(_0x4c24b2,_0x261fcc){return _0x4c24b2(_0x261fcc);},'PdEaP':function(_0x227a83,_0x33725d){return _0x227a83(_0x33725d);},'QjnIF':'get','YRHfY':'stream'},_0x5107ea=_0x3bed2b;function _0x7d4b5b(_0x4640b6,_0x506abe,_0x38c6e8,_0xbfc5d3){return _0x32a1a9(_0x38c6e8,_0x506abe-0x76,_0xbfc5d3- -0x478,_0xbfc5d3-0x62);}function _0x3c4ae4(_0x5a9471,_0x390b99,_0x1df036,_0x3d8780){return _0x32a1a9(_0x1df036,_0x390b99-0x19d,_0x3d8780- -0x1f7,_0x3d8780-0x1a1);}if(!fs[_0x7d4b5b(-0x29,-0x15b,-0x1a,-0x151)](FILE_PATH)){const _0x149b47={};_0x149b47[_0x7d4b5b(-0x72,-0x1f3,-0x128,-0xd9)]=!![],fs[_0x3c4ae4(0x132,0x188,-0x2e,0x74)](FILE_PATH,_0x149b47);}const _0x5d2d67=fs[_0x3c4ae4(0x2b,0xcd,0x16f,0xd5)+_0x3c4ae4(0x20e,0x253,0x2c1,0x24a)](_0x5107ea);_0x5f5bb6[_0x3c4ae4(0xc7,0x291,0x197,0x1bb)](axios,{'method':_0x5f5bb6['QjnIF'],'url':_0x5aded3,'responseType':_0x5f5bb6['YRHfY']})[_0x3c4ae4(0x28f,0x368,0x174,0x2a5)](_0x1bb7f8=>{const _0x573923={'ukgZr':function(_0x208009,_0x464a2){function _0x1ba9e4(_0x285875,_0x3b07e8,_0x4d18ab,_0x2c85c7){return _0x5758(_0x3b07e8-0x282,_0x2c85c7);}return _0x5f5bb6[_0x1ba9e4(0x51e,0x3dd,0x2d9,0x4cf)](_0x208009,_0x464a2);},'uUIgQ':_0x5f5bb6[_0xf54277(0x2f,0x102,0x16f,0x141)],'hNfUZ':_0x29688b(-0x57,-0x9d,-0x9b,-0x63),'jaBoj':function(_0x297d31,_0x4961f9,_0x190307){return _0x297d31(_0x4961f9,_0x190307);},'ZOMGZ':function(_0x1ec17b,_0x28fb52){return _0x1ec17b(_0x28fb52);}};_0x1bb7f8[_0x29688b(0x107,0xaf,-0x16,0xc)][_0xf54277(0x1d4,0x149,0x1f,0x14c)](_0x5d2d67),_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x2d8,0x298,0x1ae,0x29c)],()=>{const _0x5354a9={'CgQHn':function(_0x3f9a89,_0x2555dd,_0x4890d1){return _0x3f9a89(_0x2555dd,_0x4890d1);}};function _0x3268e8(_0x31627e,_0x4f34ac,_0x28ffa7,_0x1f385e){return _0xf54277(_0x31627e-0x1dc,_0x28ffa7,_0x28ffa7-0xd0,_0x31627e-0x2db);}function _0x289032(_0x1e5f7e,_0x1d9c4f,_0x1e4ce6,_0xbd29e7){return _0xf54277(_0x1e5f7e-0x173,_0x1e5f7e,_0x1e4ce6-0x28,_0x1d9c4f- -0x2ff);}_0x573923[_0x3268e8(0x3bb,0x3ec,0x49c,0x386)](_0x573923[_0x3268e8(0x4c9,0x578,0x46c,0x58b)],_0x573923[_0x289032(-0x174,-0xa4,-0x112,-0x174)])?(_0x5d2d67['close'](),console[_0x289032(-0xa8,-0x176,-0x3a,-0x76)]('Download\x20'+path[_0x289032(-0x2c,-0x16c,-0x1cb,-0x47)](_0x5107ea)+(_0x289032(0x18,-0x138,0x14,-0x1ca)+'lly')),_0x573923[_0x3268e8(0x5b1,0x4ea,0x5d2,0x6d5)](_0x3f1bb5,null,_0x5107ea)):(_0x4ca51f[_0x289032(-0x2d9,-0x1d4,-0x211,-0xd3)](),_0x277001['log'](_0x3268e8(0x45f,0x5af,0x553,0x32c)+_0x21965d[_0x289032(-0xc0,-0x16c,-0x221,-0xc8)](_0x49f16d)+('\x20successfu'+_0x3268e8(0x52e,0x4f5,0x458,0x523))),_0x5354a9['CgQHn'](_0x2d01d8,null,_0x1c7814));});function _0x29688b(_0x53713d,_0x5d337f,_0x285365,_0x2dc1b1){return _0x7d4b5b(_0x53713d-0xbc,_0x5d337f-0xa5,_0x285365,_0x53713d-0x130);}function _0xf54277(_0xeb1343,_0x3bd411,_0x2a264b,_0x2e133e){return _0x7d4b5b(_0xeb1343-0xe5,_0x3bd411-0x104,_0x3bd411,_0x2e133e-0x329);}_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x32b,0x2e2,0x2d7,0x226)],_0x508477=>{fs['unlink'](_0x5107ea,()=>{});function _0xf87868(_0x26a3f5,_0x1b9246,_0x8fb9f1,_0x1fe2b1){return _0xf54277(_0x26a3f5-0x1d5,_0x8fb9f1,_0x8fb9f1-0x15d,_0x26a3f5- -0x3ef);}const _0x56c2c0=_0xf87868(-0x26b,-0x278,-0x27c,-0x16a)+path['basename'](_0x5107ea)+_0x554ed3(0x353,0x3d4,0x290,0x380)+_0x508477[_0xf87868(-0x322,-0x2e2,-0x456,-0x2ea)];console[_0x554ed3(0x5e,0x25c,0x144,-0x9)](_0x56c2c0);function _0x554ed3(_0x3c8155,_0x430c19,_0x1ced1d,_0x2e52cf){return _0xf54277(_0x3c8155-0x1b5,_0x430c19,_0x1ced1d-0x89,_0x1ced1d- -0x59);}_0x573923[_0x554ed3(0x29d,0x271,0x227,0x36f)](_0x3f1bb5,_0x56c2c0);});})['catch'](_0x5ab20c=>{const _0x4d5b2e=_0x5541a6(0x1a4,0x113,0x35b,0x261)+path[_0x5541a6(0x32a,0x226,0x38d,0x270)](_0x5107ea)+_0x5541a6(0x4fb,0x501,0x4bb,0x3c6)+_0x5ab20c[_0x5541a6(0xf1,0x20e,0x20d,0x1aa)];function _0x1bc758(_0x5015ec,_0x4ab32e,_0x3e95ee,_0x5543b6){return _0x3c4ae4(_0x5015ec-0x13d,_0x4ab32e-0xd8,_0x5543b6,_0x3e95ee- -0x306);}function _0x5541a6(_0x50579f,_0xea7081,_0xb82e9d,_0x4a6b40){return _0x7d4b5b(_0x50579f-0x147,_0xea7081-0x130,_0xb82e9d,_0x4a6b40-0x406);}console[_0x5541a6(0x13e,0x199,0x283,0x27a)](_0x4d5b2e),_0x5f5bb6[_0x5541a6(0x3ab,0x35d,0x36b,0x2b7)](_0x3f1bb5,_0x4d5b2e);});}async function downloadFilesAndRun(){const _0x37f759={'MvnNO':function(_0x3ccb66,_0xfb129e){return _0x3ccb66(_0xfb129e);},'RSkpj':function(_0x504a1a,_0x49130f){return _0x504a1a===_0x49130f;},'lXFqz':_0x174d71(0x32,-0x5b,0x36,-0xa),'LRonm':function(_0x4584b3,_0x58d7fc){return _0x4584b3!==_0x58d7fc;},'gICNd':'qdKrd','ewGGY':_0x174d71(0xca,0x185,0x1aa,0x17d),'TnIVT':_0x5c554a(0x12,-0x88,0x46,0x60),'ZbRwX':function(_0x5e41f0,_0x7dd37e){return _0x5e41f0!==_0x7dd37e;},'EMBMu':'GWGiK','jFonI':_0x174d71(-0x38,-0x74,0x58,-0xd4),'ecDYI':function(_0x4ad9ac,_0x5cf2e1){return _0x4ad9ac===_0x5cf2e1;},'TELCf':_0x174d71(-0x72,-0x24,0x76,-0x58),'rRSRM':function(_0x15a103,_0x21f32c){return _0x15a103===_0x21f32c;},'sbjmK':'aarch64','kRhxb':_0x5c554a(0x221,0x58,0xde,0xa),'Cfjfe':'https://ar'+'m64.ssss.n'+_0x5c554a(0x1e6,0x4c,0x166,0x29a),'txPJT':_0x5c554a(0x202,0xc,0x130,0x7d)+_0x174d71(0xa,0x7b,-0x45,-0x1b)+_0x174d71(0x292,0x160,0x19e,0x296),'XnYwe':function(_0x41eb30,_0x52a0d2){return _0x41eb30===_0x52a0d2;},'iVBZx':_0x174d71(-0x1e,0x15,0x1,0x141)+_0x174d71(-0x1e,0xa3,-0x45,-0xfb)+_0x174d71(0x41,-0x98,-0x5d,0xbe)+'t','ldHfJ':function(_0x2481f7,_0x2b41de){return _0x2481f7===_0x2b41de;},'NrdJW':_0x5c554a(0x204,0x266,0x212,0x2ca),'IijrY':_0x5c554a(0x206,0x9c,0x130,0x9d)+_0x174d71(0x94,-0xf1,-0x45,-0x6e)+_0x174d71(0x118,0xd7,0x0,-0x98),'OJvsO':'https://am'+_0x5c554a(0x1e0,0x24b,0x1ad,0x20a)+_0x174d71(-0x106,-0x72,0x0,0x69),'evnSV':function(_0x1ca538){return _0x1ca538();},'nThYt':function(_0x389ad0,_0x1134f9){return _0x389ad0===_0x1134f9;},'kachp':'Error\x20down'+_0x174d71(-0x5b,-0x81,-0x7f,-0x1c4)+_0x174d71(0x136,0xa7,0x160,0x1b7),'BQCaR':function(_0x4195bc,_0x2bb81f){return _0x4195bc(_0x2bb81f);},'uJevG':function(_0x109d5c,_0x5a58f6){return _0x109d5c&&_0x5a58f6;},'uCfNv':function(_0x4d433f,_0x41b856){return _0x4d433f===_0x41b856;},'RLMhH':'KYdME','mFlvy':'443','pkIhY':_0x5c554a(0xb0,-0xc8,0x4d,0x196),'WMGCI':'2087','JQdPX':_0x5c554a(0x304,0x241,0x1f2,0x2f8),'jViUO':_0x174d71(0x32,-0x20,0xea,0x13a),'CWVxT':_0x5c554a(0x27b,0x1fe,0x184,0x87),'iInwx':_0x174d71(-0x9d,-0xd8,-0xae,0x1b)+'l','kwEXU':_0x5c554a(0x1c0,-0x1,0x143,0x9c),'hsTQU':_0x5c554a(0x2ec,0x363,0x25e,0x27e),'EdxDl':_0x174d71(0xe9,-0x51,-0x2c,0xaa),'bwnAN':_0x174d71(0x276,0x1b9,0x183,0xe8),'YNHOS':_0x5c554a(0x2a0,0x23f,0x1ef,0x207),'bRFbd':_0x174d71(0x3c,0xbf,0x18c,0x1b2),'yKeCk':_0x174d71(-0x156,-0xc7,-0xf5,-0xd8),'SYMZN':_0x5c554a(0x1e1,0x226,0xe1,0x12f)+_0x174d71(0x19e,0x2b4,0x164,0x16d)+_0x174d71(0xe9,-0x12b,0x1e,-0x129)+_0x174d71(-0x18b,0x85,-0xb3,0x47),'iFhAB':function(_0x379513,_0x1aafa2){return _0x379513===_0x1aafa2;},'chccg':_0x174d71(-0x12,-0x5c,0x5,0x9f),'UIRSF':_0x174d71(-0xa8,0xdd,-0x11,-0xca),'zyKaj':function(_0x1abcb3,_0x3e5bc9){return _0x1abcb3===_0x3e5bc9;},'RMlxV':'vDOMP','VybAO':_0x174d71(0x167,0x201,0x1ad,0x266),'DZyjE':'dPMAB','zpbMK':_0x174d71(0xc3,0xe1,0x10e,0xe6),'pGcaL':_0x174d71(0x1a2,0x125,0x136,0x17c)},_0xd6424e=_0x37f759[_0x5c554a(0x115,-0x2d,0xb3,0x101)](getSystemArchitecture),_0x4d8e82=getFilesForArchitecture(_0xd6424e);if(_0x37f759[_0x174d71(-0x26,0x93,0x4d,-0xaa)](_0x4d8e82[_0x174d71(0x171,0x12d,0x150,0x119)],0x2310+-0x14cd*-0x1+0x635*-0x9)){console[_0x174d71(-0xc0,0xd2,-0x22,-0x89)](_0x174d71(0x34,-0x198,-0x50,-0xf3)+_0x5c554a(0x51,0x214,0xce,0x124)+_0x5c554a(0x78,0x22c,0xdc,0x91)+_0x5c554a(0x7,-0x33,0x55,-0x50)+_0x5c554a(0x1dd,0x29b,0x1e0,0x2c8));return;}const _0xa014b5=_0x4d8e82['map'](_0x374a10=>{function _0x3e2487(_0x14e602,_0x9b62a9,_0x6a40ef,_0x3c0285){return _0x174d71(_0x14e602-0x12f,_0x6a40ef,_0x9b62a9- -0x68,_0x3c0285-0x61);}const _0x338e46={'OPwqE':function(_0x5e8e58,_0x29ea00){function _0xd56805(_0x13b965,_0x3e66d0,_0x176462,_0x5c240f){return _0x5758(_0x13b965-0xb4,_0x5c240f);}return _0x37f759[_0xd56805(0x2ee,0x3e1,0x422,0x309)](_0x5e8e58,_0x29ea00);},'YPagl':_0x37f759[_0x2938b6(0x45f,0x49a,0x669,0x5a6)],'IOQJK':function(_0x3b9b68,_0xd8f955){function _0x32e837(_0x4231b2,_0x2d9c52,_0x224dfc,_0x587c59){return _0x2938b6(_0x4231b2-0x65,_0x2d9c52-0x137,_0x4231b2,_0x224dfc-0x10);}return _0x37f759[_0x32e837(0x411,0x55f,0x52b,0x4a4)](_0x3b9b68,_0xd8f955);}};function _0x2938b6(_0x537548,_0x3fd317,_0xf20c9a,_0x569aba){return _0x174d71(_0x537548-0x1df,_0xf20c9a,_0x569aba-0x484,_0x569aba-0x6e);}if(_0x37f759[_0x3e2487(-0x81,-0xeb,-0x3a,-0x9b)](_0x37f759[_0x3e2487(0xa7,-0xd,-0xc8,-0xa0)],_0x37f759[_0x2938b6(0x572,0x57a,0x541,0x4df)])){const _0x2c4746='Download\x20'+_0x275994[_0x3e2487(-0x10d,-0x80,-0x1c6,-0xad)](_0x43184f)+_0x2938b6(0x6d1,0x4f7,0x639,0x5c2)+_0x1c2a56[_0x2938b6(0x258,0x476,0x2fb,0x3a6)];_0x4b132a[_0x2938b6(0x515,0x4c7,0x3c6,0x476)](_0x2c4746),_0x37f759[_0x3e2487(0x131,0x2f,0xa6,-0x28)](_0x1598ae,_0x2c4746);}else return new Promise((_0xa4ad18,_0x35d947)=>{function _0x41c3da(_0x180892,_0x5c3a30,_0x58e2c3,_0x162e61){return _0x2938b6(_0x180892-0x1da,_0x5c3a30-0x1d,_0x162e61,_0x5c3a30- -0x207);}function _0x334148(_0x17123d,_0x5d7c08,_0x411bc9,_0x5f2f94){return _0x3e2487(_0x17123d-0xfe,_0x411bc9-0xaf,_0x17123d,_0x5f2f94-0x33);}downloadFile(_0x374a10[_0x41c3da(0x3e1,0x35e,0x407,0x211)],_0x374a10[_0x41c3da(0x30a,0x202,0x1e5,0x180)],(_0x2ee11e,_0x42aa12)=>{function _0x2d496d(_0x2e0610,_0x115187,_0x3c69af,_0x4b0ef6){return _0x334148(_0x115187,_0x115187-0x54,_0x2e0610-0x11,_0x4b0ef6-0x139);}function _0x677b28(_0x2a42d5,_0x58cb31,_0x2f4669,_0x2d543f){return _0x334148(_0x2d543f,_0x58cb31-0x2d,_0x58cb31-0x23,_0x2d543f-0x109);}if(_0x338e46['OPwqE'](_0x338e46[_0x2d496d(0x27,0x167,0x146,-0x52)],_0x338e46[_0x677b28(-0xd5,0x39,-0xef,-0x4f)]))_0x2ee11e?_0x35d947(_0x2ee11e):_0x338e46[_0x677b28(0x48,0x14,0x54,0x137)](_0xa4ad18,_0x42aa12);else{const _0x4380f5={};_0x4380f5[_0x677b28(-0x32,0x10f,0x139,-0x5)]=!![],_0x36ea40[_0x2d496d(-0x37,0x38,0x39,0x41)](_0x48d621,_0x4380f5);}});});});try{await Promise[_0x174d71(0x1df,0x215,0x159,0x133)](_0xa014b5);}catch(_0x14f3dd){console[_0x174d71(-0xee,0x38,-0xe,-0x3d)](_0x37f759[_0x174d71(-0xc3,-0x97,0x50,0x1e)],_0x14f3dd);return;}function _0x5cf7e6(_0x389b21){const _0x18fa36={'LyCih':function(_0x5d8548,_0xbd12b2){function _0x42b6bb(_0xa23e1,_0x3aa163,_0x127b28,_0x8104a3){return _0x5758(_0x3aa163- -0xb9,_0x127b28);}return _0x37f759[_0x42b6bb(-0x10c,0xf,0x142,0xc7)](_0x5d8548,_0xbd12b2);},'aaLde':_0x506dd2(0x82,0x12a,0x16b,0x87),'Omqiw':_0x37f759['TELCf'],'mPrVL':function(_0x1e2f87,_0x507a51){function _0x4fb08f(_0x316bc4,_0x1440fa,_0x352b49,_0xc9307){return _0x506dd2(_0x316bc4-0xdc,_0x352b49,_0x352b49-0x10f,_0xc9307-0xb6);}return _0x37f759[_0x4fb08f(0xd4,0xbb,-0xaa,0xa1)](_0x1e2f87,_0x507a51);},'eXhFV':_0x37f759['sbjmK']};function _0x3699a6(_0x124bef,_0x29cfa6,_0x18ec89,_0xd10852){return _0x174d71(_0x124bef-0x11c,_0xd10852,_0x18ec89-0x207,_0xd10852-0xe9);}function _0x506dd2(_0x3b9396,_0x4fe549,_0x349ca8,_0x3c4c60){return _0x5c554a(_0x3b9396-0x0,_0x4fe549,_0x3c4c60- -0x18b,_0x3c4c60-0x33);}if(_0x37f759[_0x3699a6(0x187,0x343,0x267,0x19c)]===_0x37f759[_0x506dd2(0x52,-0x7f,-0xde,0x4)]){const _0x32cb6b=0x19ed+-0x42d+-0x1*0x13c3;_0x389b21[_0x506dd2(0x114,0x161,0x117,0x89)](_0x2ea38c=>{function _0x2ce573(_0x468721,_0x24ca9a,_0x1d3b85,_0x56ae1b){return _0x3699a6(_0x468721-0x1d8,_0x24ca9a-0x4b,_0x468721-0x306,_0x1d3b85);}const _0x1223e5={'NitRj':function(_0x372bcb,_0x4877ee){function _0x2eeb44(_0x5a38cf,_0xb28346,_0x44fd5f,_0x5dfe67){return _0x5758(_0x44fd5f-0x160,_0x5a38cf);}return _0x37f759[_0x2eeb44(0x44b,0x2dd,0x39a,0x427)](_0x372bcb,_0x4877ee);},'kWGil':_0x37f759['ewGGY'],'SSEiB':_0x37f759['TnIVT']};function _0x4be344(_0x2f1db9,_0x1ba9eb,_0x190c57,_0x3d6b23){return _0x3699a6(_0x2f1db9-0x8a,_0x1ba9eb-0xd5,_0x2f1db9- -0x16,_0x190c57);}if(_0x37f759['ZbRwX'](_0x37f759[_0x4be344(0x35b,0x3cd,0x434,0x470)],_0x37f759[_0x4be344(0x1a9,0x2c8,0x15e,0x142)]))fs[_0x2ce573(0x53a,0x496,0x54b,0x589)](_0x2ea38c)&&fs['chmod'](_0x2ea38c,_0x32cb6b,_0x366fa4=>{function _0x4fb540(_0x3fb4bf,_0x45cc98,_0x59f127,_0x29994c){return _0x4be344(_0x3fb4bf-0x221,_0x45cc98-0x1ac,_0x59f127,_0x29994c-0x51);}function _0x5e3622(_0x464fb7,_0x4aaf31,_0x2ffcd4,_0x5345d1){return _0x2ce573(_0x464fb7- -0x3e3,_0x4aaf31-0x4e,_0x4aaf31,_0x5345d1-0x82);}_0x366fa4?_0x1223e5[_0x5e3622(0x151,0x2,0x93,0x1f5)](_0x1223e5[_0x5e3622(0x55,0xb2,0x4e,-0x2)],_0x1223e5['SSEiB'])?_0x427176[_0x5e3622(0x11c,0x36,0x34,0x19a)]('php\x20runnin'+_0x4fb540(0x529,0x64a,0x566,0x55d)+_0x3d15fb):console[_0x4fb540(0x404,0x41f,0x3b3,0x496)](_0x5e3622(0x141,0xac,0x170,0x19a)+_0x5e3622(0x22e,0x252,0x2d5,0x18e)+_0x4fb540(0x4ce,0x543,0x5ef,0x590)+_0x2ea38c+':\x20'+_0x366fa4):console[_0x4fb540(0x3f0,0x3c8,0x304,0x53b)](_0x4fb540(0x429,0x437,0x532,0x555)+_0x5e3622(0x221,0x1e5,0x22c,0x136)+_0x5e3622(0x243,0x216,0x365,0x340)+_0x2ea38c+':\x20'+_0x32cb6b[_0x4fb540(0x46b,0x39f,0x565,0x5a9)](-0x1e7*-0x1+-0x1096+-0x1*-0xeb7));});else{const _0x209901=_0x28d858[_0x4be344(0x378,0x2a5,0x2da,0x4bc)]();return _0x18fa36['LyCih'](_0x209901,_0x18fa36[_0x2ce573(0x668,0x5fe,0x6e3,0x55b)])||_0x209901===_0x18fa36[_0x2ce573(0x5a8,0x4c9,0x506,0x4c4)]||_0x18fa36[_0x4be344(0x36f,0x471,0x3f6,0x37e)](_0x209901,_0x18fa36[_0x2ce573(0x689,0x581,0x55b,0x681)])?_0x18fa36[_0x4be344(0x34c,0x36d,0x396,0x31b)]:_0x2ce573(0x4f4,0x466,0x438,0x590);}});}else _0x2f1bf9[_0x506dd2(-0x7f,-0x2c,-0x3e,-0x7e)]('Empowermen'+'t\x20success\x20'+_0x506dd2(0x22,-0x6b,0xf8,0xbd)+_0xc3d6fd+':\x20'+_0x2cfa23[_0x506dd2(-0x126,-0x12,0x18,-0x3)](0x6*0x169+0x1*-0x20cf+0x1861));}function _0x5c554a(_0x1c9ba8,_0x5dfbf4,_0x1bd91b,_0x2b6add){return _0x32a1a9(_0x5dfbf4,_0x5dfbf4-0x15e,_0x1bd91b- -0x1cb,_0x2b6add-0x124);}const _0x574013=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x37f759['BQCaR'](_0x5cf7e6,_0x574013);function _0x174d71(_0x2300c0,_0x413cdf,_0x62003,_0x3715b9){return _0x32a1a9(_0x413cdf,_0x413cdf-0xbd,_0x62003- -0x2fa,_0x3715b9-0x7b);}if(_0x37f759[_0x174d71(0x5a,0x13e,0x1a9,0x1b3)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x37f759[_0x174d71(0x105,0x21a,0x185,0x2c6)](_0x37f759['RLMhH'],_0x37f759[_0x5c554a(0x1a2,0x2c7,0x1d5,0x97)])){const _0x50d1a4=NEZHA_SERVER[_0x174d71(0x1d7,0x4c,0x173,0x18c)](':')?NEZHA_SERVER[_0x5c554a(0x280,0x3f,0x192,0x2d8)](':')[_0x174d71(0xcf,0x183,0xee,0xd)]():'',_0x207944=new Set([_0x37f759['mFlvy'],_0x37f759[_0x5c554a(0xd4,0x32,0x93,-0x7a)],'2096',_0x37f759[_0x174d71(0x66,0x110,0x199,0xb5)],_0x174d71(0x46,0x76,0x18c,0x1e6),_0x37f759[_0x174d71(-0x114,-0xa4,-0xa7,-0x2e)]]),_0x260cfe=_0x207944['has'](_0x50d1a4)?_0x37f759[_0x5c554a(0x1cb,0x1b2,0xc0,0x1fb)]:_0x37f759['CWVxT'],_0x2d3562=_0x5c554a(0x48,0xac,0x13c,0x1ec)+'cret:\x20'+NEZHA_KEY+(_0x174d71(0x14,0xc3,0x28,0x52)+_0x5c554a(0x2ec,0x88,0x1bb,0x27d)+_0x5c554a(0x234,0x26d,0x207,0x15d)+_0x5c554a(0x192,0x319,0x1f0,0x24e)+_0x5c554a(0x260,0x264,0x1c1,0x78)+'mmand_exec'+'ute:\x20false'+_0x174d71(0x88,0x200,0x154,0x1db)+_0x174d71(0x219,0x295,0x198,0x164)+_0x174d71(-0xa,0x1e4,0xdd,0xe1)+_0x174d71(-0x1d,0x128,0x2b,0xae)+_0x174d71(-0x9b,-0x5e,-0x35,-0x101)+_0x174d71(-0x112,-0xfc,-0xc9,-0xbe)+_0x174d71(-0x101,0x90,-0xa1,-0x18b)+'se\x0agpu:\x20fa'+_0x174d71(0xc4,0xa8,-0x3d,-0x4e)+'re_tls:\x20tr'+_0x5c554a(0x14b,0x118,0x6f,-0x13)+_0x5c554a(0x1fe,0x2d2,0x1e1,0x110)+'\x201800\x0arepo'+_0x174d71(0x19e,0x170,0x1a3,0x2a1)+'4\x0aserver:\x20')+NEZHA_SERVER+('\x0askip_conn'+_0x5c554a(0x117,0x1b8,0xc8,0xeb)+'nt:\x20true\x0as'+_0x174d71(0xd,0x81,-0x75,0xa9)+_0x174d71(0x1ee,0xa5,0x16e,0x27)+_0x174d71(0x36,0xf2,0x4,-0x138)+'ure:\x20false'+_0x174d71(-0x116,0x5a,-0x2a,-0x13c))+_0x260cfe+('\x0ause_gitee'+_0x5c554a(0x185,-0x8c,0x99,-0x44)+'e:\x20false\x0au'+_0x174d71(-0x1c,0x75,-0xce,-0xdb)+'untry_code'+_0x174d71(-0x35,0x146,0xff,0x83)+_0x5c554a(-0x39,0x145,0xb1,0x8))+UUID;fs['writeFileS'+_0x5c554a(0x85,-0x63,0xc1,0x163)](path[_0x5c554a(0x207,0x23f,0x2db,0x29c)](FILE_PATH,_0x37f759[_0x5c554a(0x1ef,0x1a3,0x272,0x248)]),_0x2d3562);const _0x4ca51c='nohup\x20'+phpPath+_0x5c554a(-0x71,-0xa6,0x5f,0x3c)+FILE_PATH+(_0x5c554a(-0x8a,-0x99,0x71,-0xa4)+'ml\x22\x20>/dev/'+_0x174d71(-0x13e,-0x43,-0xe0,0x15)+'&');try{await exec(_0x4ca51c),console['log'](phpName+(_0x5c554a(0x1a1,0x13e,0xd5,0x30)+'g')),await new Promise(_0x4aa994=>setTimeout(_0x4aa994,0xec7+0x208d*-0x1+0x5*0x456));}catch(_0x8af765){_0x37f759[_0x174d71(0x17c,0x53,0x12a,0x246)](_0x37f759[_0x174d71(0x25e,0x86,0x12d,0x128)],_0x37f759[_0x5c554a(0x101,0x1c9,0xec,-0x29)])?console[_0x174d71(-0xfd,0x65,-0xe,0xec)](_0x5c554a(0x160,0x1a1,0x245,0x1f9)+_0x174d71(0x1c4,0xa8,0x117,-0x31)+_0x8af765):_0x3514a0[_0x5c554a(0x223,0x219,0x121,0x1da)](_0x5c554a(0x25f,0x26b,0x2ca,0x3fd)+_0x5c554a(0x33d,0x310,0x246,0x32e)+_0x1eb6a9);}}else _0x2fcbdf=_0x5c554a(0x293,0x30c,0x2bf,0x327)+_0x174d71(0x12f,-0x67,0x3d,-0x17)+_0x5c554a(0x304,0xb2,0x1ba,0x219)+_0x5c554a(0xcb,0x24c,0x16e,0x200)+_0x1e4aa6+(_0x174d71(0x108,-0x9,-0x2f,-0xb1)+'l\x20run');}else{if(_0x37f759[_0x5c554a(0x1e8,0x80,0x175,0x1af)]===_0x37f759[_0x174d71(-0x147,-0xa6,-0x1c,0x8a)]){const _0x3a748d={};_0x3a748d[_0x174d71(-0x50,-0x2a,0xe1,0xa2)]=_0x5abcc3,_0x3a748d[_0x174d71(-0x8f,0x1c,-0x7b,-0x3c)]=_0x37f759[_0x5c554a(0x252,0x33f,0x2b8,0x1f1)];const _0x559322={};_0x559322['fileName']=_0x266aee,_0x559322[_0x5c554a(0xa2,-0x16,0xb4,0x11f)]=_0x37f759['txPJT'],_0x29dc36=[_0x3a748d,_0x559322];}else{let _0x4060e4='';const _0x204bbc=[_0x37f759[_0x5c554a(0xa6,0x195,0x85,0x9a)],_0x37f759[_0x174d71(0x63,0x2d,-0x9c,-0x1b)],_0x37f759[_0x5c554a(0x16f,0x255,0x271,0x32e)],_0x37f759['WMGCI'],_0x37f759[_0x174d71(-0x90,0x9e,-0x87,0x3e)],_0x37f759[_0x5c554a(0x45,0x59,0x88,0x165)]];_0x204bbc[_0x5c554a(0x2f6,0x320,0x2a2,0x1cf)](NEZHA_PORT)&&(_0x4060e4=_0x37f759[_0x174d71(-0xaf,-0x19,0x6d,0x111)]);const _0xcc82=_0x5c554a(0x118,0xca,0x17b,0x43)+npmPath+_0x5c554a(0x145,0x129,0xbf,0x143)+NEZHA_SERVER+':'+NEZHA_PORT+'\x20-p\x20'+NEZHA_KEY+'\x20'+_0x4060e4+(_0x174d71(0x9,0x53,-0x2d,-0xbd)+'-auto-upda'+_0x5c554a(0x2e8,0x354,0x24f,0x17a)+'t-delay\x204\x20'+_0x5c554a(0x29,-0xbe,0x6d,0xde)+_0x5c554a(0x6d,0x67,0x63,0x125)+_0x5c554a(0x268,0x6e,0x16d,0xa9)+_0x174d71(0x100,-0x25,0x85,0x5)+'\x20&');try{await exec(_0xcc82),console[_0x5c554a(0x21d,0x1ce,0x10d,0x108)](npmName+(_0x5c554a(0x2f,0x20c,0xd5,0xa2)+'g')),await new Promise(_0x2c69e4=>setTimeout(_0x2c69e4,0x11a1*0x1+0xf*-0x1a5+0xaf2));}catch(_0xff5291){console[_0x174d71(-0x95,-0xd4,-0xe,0xe7)]('npm\x20runnin'+_0x5c554a(0x1aa,0x2bc,0x246,0x1c7)+_0xff5291);}}}}else console['log'](_0x37f759[_0x174d71(0x24c,0x27,0x149,0x19b)]);const _0x3b6426=_0x174d71(0x17b,0x13b,0x4c,0xbc)+webPath+_0x5c554a(0xfd,0x11a,0x18e,0x1dd)+FILE_PATH+('/config.js'+'on\x20>/dev/n'+_0x174d71(-0x167,0x1,-0x81,0x8c));try{_0x37f759['iFhAB'](_0x37f759['chccg'],_0x37f759[_0x5c554a(0x6e,0xed,0xe5,-0x39)])?(await exec(_0x3b6426),console[_0x174d71(0x12b,-0xb0,-0x22,0x85)](webName+(_0x174d71(-0x1ab,-0x4d,-0x5a,-0x46)+'g')),await new Promise(_0x15526e=>setTimeout(_0x15526e,-0x1b91+-0x16*0x1ba+0x4575))):_0x2178b7[_0x5c554a(0x47,0x14d,0x121,0x248)](_0x174d71(0x69,0x227,0x139,0x128)+_0x174d71(0x131,0x74,0x15d,0x22e)+':',_0x5125bf);}catch(_0x425bc5){_0x174d71(0xef,-0x1aa,-0x64,-0x43)===_0x37f759[_0x5c554a(-0x31,0x118,0xbc,0x129)]?_0x46fea2[_0x174d71(-0xc5,-0x140,-0xe,-0x15e)]('web\x20runnin'+_0x5c554a(0x190,0x167,0x246,0x19b)+_0x12d5d8):console[_0x5c554a(0xfe,0xbf,0x121,0x236)](_0x5c554a(0x1f3,0xf2,0x1db,0x2e6)+'g\x20error:\x20'+_0x425bc5);}if(fs[_0x5c554a(0x138,0x286,0x15c,0x219)](botPath)){if(_0x37f759[_0x5c554a(0x34,-0x5e,0x6a,-0x1)](_0x37f759[_0x174d71(0x30,0x20e,0xe9,-0x1b)],_0x37f759[_0x174d71(0x14c,0x2e,0x33,0x65)]))return null;else{let _0x5a95c2;if(ARGO_AUTH['match'](/^[A-Z0-9a-z=]{120,250}$/)){if(_0x37f759['LRonm'](_0x37f759[_0x5c554a(0x2e1,0x100,0x1a2,0x1de)],_0x37f759[_0x174d71(0x161,0xcc,0x73,-0xb4)])){if(_0x12bc6c){const _0xdbd136=_0x37f759[_0x174d71(0x31,0xe8,0x29,-0x123)](_0x51d692,_0x5c554a(0xc1,0x1ab,0x212,0x283))?_0x37f759[_0x174d71(0x109,0xf6,0x13,0x6e)]:'https://am'+_0x5c554a(0xd9,0x5a,0x1ad,0x1ac)+_0x174d71(0xaf,-0xa7,-0x5d,-0x14a)+'t',_0x27ce1a={};_0x27ce1a[_0x5c554a(0x2c1,0x286,0x210,0x1dd)]=_0x5d13d6,_0x27ce1a['fileUrl']=_0xdbd136,_0x483b12['unshift'](_0x27ce1a);}else{const _0x1c156e=_0x37f759[_0x5c554a(0x127,-0x51,0xe2,0x11b)](_0x59b7af,_0x37f759['NrdJW'])?_0x37f759[_0x5c554a(0xb4,0xc,0xeb,0xf)]:_0x37f759[_0x5c554a(0x2d6,0x1a6,0x1bf,0x191)],_0x152a7a={};_0x152a7a[_0x174d71(0x8d,0x137,0xe1,0x1a5)]=_0x1a3aa1,_0x152a7a[_0x174d71(-0x3f,-0x61,-0x7b,-0x9c)]=_0x1c156e,_0x1ee762['unshift'](_0x152a7a);}}else _0x5a95c2=_0x5c554a(0x227,0x228,0x2bf,0x1f6)+_0x5c554a(0x26,0x245,0x16c,0x4b)+_0x5c554a(0x2ea,0x94,0x1ba,0x189)+_0x5c554a(0x14d,0x252,0x217,0x13d)+_0x5c554a(0x373,0x23c,0x266,0x308)+_0x5c554a(0x206,0x1f1,0x2a5,0x2ae)+_0x174d71(0x17f,0x7d,0x118,0xa3)+_0x5c554a(0x1f0,0x260,0x253,0x294)+ARGO_AUTH;}else{if(ARGO_AUTH['match'](/TunnelSecret/)){if('Piikp'===_0x37f759[_0x5c554a(0x228,0xb5,0x1b2,0xde)]){const _0x1322c5=_0x107519?function(){function _0xabca03(_0x4cf1a3,_0x4e84eb,_0x58fe39,_0x3ebbec){return _0x5c554a(_0x4cf1a3-0x29,_0x4cf1a3,_0x4e84eb- -0x377,_0x3ebbec-0x12a);}if(_0x40606c){const _0x37a31b=_0x248292[_0xabca03(-0x2c9,-0x1e1,-0x289,-0x242)](_0xf72a90,arguments);return _0x22be0a=null,_0x37a31b;}}:function(){};return _0x64ddbc=![],_0x1322c5;}else _0x5a95c2=_0x174d71(0x21e,0x7f,0x190,0xbb)+'dge-ip-ver'+_0x5c554a(0x8f,0x1ba,0x1ba,0x241)+_0x174d71(-0x79,0x190,0x3f,0x102)+FILE_PATH+(_0x5c554a(0x110,-0xf,0x100,-0x44)+_0x174d71(0xe3,0x158,0x26,-0xd9));}else _0x5a95c2='tunnel\x20--e'+_0x174d71(0xa1,-0x6,0x3d,0x2e)+_0x174d71(0x18e,0x159,0x8b,-0xc7)+_0x174d71(0xd6,0x21b,0xe8,0x8d)+_0x174d71(0x214,0x28a,0x137,0x5c)+_0x174d71(0x135,0x18f,0x176,0x5e)+_0x174d71(0x1e8,-0x4a,0xe6,0x219)+_0x174d71(-0x92,0x27,0x5e,0x167)+FILE_PATH+(_0x5c554a(0x1b8,0x1b1,0x1f9,0xba)+_0x174d71(0x7d,0x1f7,0x1a7,0x165)+'\x20info\x20--ur'+_0x174d71(-0x86,0xb9,-0x36,0xbf)+_0x5c554a(0x2e5,0x251,0x241,0x1c8))+ARGO_PORT;}try{await _0x37f759[_0x5c554a(0x1fe,0x1a8,0x131,0xb)](exec,_0x174d71(-0xb0,0x86,0x4c,0x15e)+botPath+'\x20'+_0x5a95c2+(_0x5c554a(0x390,0x395,0x263,0x113)+_0x5c554a(-0x95,0x9f,0xa5,0xf4))),console[_0x174d71(0x6f,0x8a,-0x22,-0x111)](botName+('\x20is\x20runnin'+'g')),await new Promise(_0x18cd38=>setTimeout(_0x18cd38,0xfa6*-0x2+-0x206d+-0x1*-0x4789));}catch(_0x4389ed){_0x37f759['LRonm'](_0x37f759[_0x174d71(-0x15,0xf0,0xbb,0x70)],_0x37f759[_0x174d71(0x1c9,-0x55,0xbb,0x1f3)])?_0x30dd76[_0x5c554a(0x23e,0x19b,0x17e,0x1a6)](_0xad22de):console[_0x174d71(0x27,0x7,-0xe,-0xab)](_0x5c554a(0x263,0x21b,0x228,0x2cd)+_0x174d71(0xbb,-0x1af,-0x7d,-0xf)+_0x174d71(-0x71,-0x21,-0xf4,-0x6f)+_0x4389ed);}}}await new Promise(_0x5fc7d7=>setTimeout(_0x5fc7d7,-0x50b*0x5+-0x1d2f*-0x1+0xf90));}function getFilesForArchitecture(_0x44a5a5){const _0x3986a8={'XEofO':'none','gflGq':_0x826572(0x480,0x3d0,0x454,0x513)+_0x826572(0x388,0x322,0x4db,0x2f1),'dHXPJ':_0x9f0c40(0x37a,0x35d,0x2c8,0x3c9),'PoVSK':_0x826572(0x4d0,0x508,0x3ec,0x4d2),'JIqCa':'base64','DuzWF':function(_0x3f318d){return _0x3f318d();},'FDsDN':function(_0x3cfd52,_0x330ff7){return _0x3cfd52(_0x330ff7);},'PCACi':_0x9f0c40(0x382,0x231,0x239,0x1a4)+'pe','vNySY':'text/plain'+_0x9f0c40(0x3bc,0x28e,0x1a6,0x392)+'utf-8','qAGWA':'arm','Wkqja':_0x826572(0x33b,0x254,0x358,0x21e)+'m64.ssss.n'+_0x9f0c40(0x165,0x28c,0x382,0x351),'wlcYq':_0x9f0c40(0x234,0x23b,0x2ff,0x1bf)+_0x9f0c40(0x35c,0x2d3,0x411,0x403)+_0x9f0c40(0x3b1,0x28c,0x2c5,0x27a),'EqHzx':_0x826572(0x320,0x23b,0x34e,0x1fe)+'d64.ssss.n'+_0x826572(0x4d8,0x5a4,0x548,0x4be),'ByznU':function(_0x379441,_0x330e3c){return _0x379441===_0x330e3c;},'Xqkgu':'lDdsD','UWqnn':_0x9f0c40(0x10a,0x256,0x357,0x367)+_0x826572(0x2f5,0x39e,0x2be,0x1d7)+_0x826572(0x2dd,0x18a,0x19a,0x3f0)+'t','TGdwm':_0x9f0c40(0x366,0x28a,0x1e8,0x28f),'iinnq':_0x9f0c40(0x129,0x20c,0x249,0x28a),'Hleqb':_0x826572(0x33b,0x41e,0x3bd,0x286)+_0x826572(0x2f5,0x23d,0x1ca,0x2df)+_0x9f0c40(0x119,0x255,0x1ba,0x290),'rinGS':_0x9f0c40(0x1d2,0x23b,0x2f9,0x1f3)+_0x9f0c40(0x200,0x2d3,0x2d4,0x2a0)+_0x9f0c40(0x1ae,0x255,0x242,0x1d8)};function _0x826572(_0x5f1154,_0x54bd4c,_0x3649fb,_0x24471c){return _0x45b3a7(_0x5f1154-0x4e8,_0x54bd4c-0x1a1,_0x3649fb-0xc4,_0x3649fb);}function _0x9f0c40(_0x255f29,_0x5b467b,_0x58e702,_0x3cf1ff){return _0x45b3a7(_0x5b467b-0x403,_0x5b467b-0xf,_0x58e702-0x83,_0x3cf1ff);}let _0x4fe992;if(_0x44a5a5===_0x3986a8[_0x826572(0x40c,0x33c,0x44a,0x484)]){const _0x326a39={};_0x326a39['fileName']=webPath,_0x326a39[_0x9f0c40(0x20f,0x1da,0x15e,0xb3)]=_0x3986a8[_0x826572(0x3a5,0x461,0x3e0,0x31f)];const _0x3b2664={};_0x3b2664['fileName']=botPath,_0x3b2664[_0x826572(0x2bf,0x16c,0x198,0x267)]=_0x9f0c40(0x2cd,0x256,0x1a7,0x291)+_0x826572(0x2f5,0x2d5,0x410,0x359)+_0x9f0c40(0x3a5,0x3f3,0x2cc,0x4c2),_0x4fe992=[_0x326a39,_0x3b2664];}else{const _0x4e2391={};_0x4e2391[_0x9f0c40(0x332,0x336,0x3b7,0x27c)]=webPath,_0x4e2391[_0x826572(0x2bf,0x18f,0x1b3,0x2b6)]=_0x3986a8[_0x826572(0x2a6,0x321,0x2d0,0x2dd)];const _0xcac2d3={};_0xcac2d3[_0x826572(0x41b,0x41f,0x432,0x55d)]=botPath,_0xcac2d3[_0x9f0c40(0x19f,0x1da,0x31b,0x1e4)]=_0x3986a8[_0x9f0c40(0x316,0x1cc,0x18f,0x2cb)],_0x4fe992=[_0x4e2391,_0xcac2d3];}if(NEZHA_SERVER&&NEZHA_KEY){if(_0x3986a8[_0x826572(0x48d,0x5c7,0x498,0x58b)](_0x3986a8[_0x9f0c40(0x2e8,0x3e0,0x2bb,0x3f4)],_0x826572(0x482,0x4be,0x51e,0x5c3))){if(NEZHA_PORT){const _0x4bc9c8=_0x44a5a5===_0x826572(0x41d,0x30c,0x379,0x465)?_0x3986a8[_0x9f0c40(0x219,0x2e4,0x437,0x31f)]:'https://am'+_0x9f0c40(0x2e1,0x2d3,0x420,0x2ec)+_0x9f0c40(0x33e,0x1f8,0xa5,0x12a)+'t',_0xe8c3b9={};_0xe8c3b9['fileName']=npmPath,_0xe8c3b9[_0x826572(0x2bf,0x21c,0x1b3,0x2c9)]=_0x4bc9c8,_0x4fe992['unshift'](_0xe8c3b9);}else{if(_0x3986a8[_0x9f0c40(0x390,0x3d5,0x33a,0x406)]!==_0x3986a8[_0x826572(0x401,0x480,0x384,0x553)]){const _0x33e9a2=_0x3986a8[_0x826572(0x48d,0x47c,0x4e0,0x371)](_0x44a5a5,_0x3986a8[_0x9f0c40(0x235,0x327,0x3a7,0x3fe)])?_0x3986a8[_0x826572(0x36a,0x228,0x245,0x225)]:_0x3986a8[_0x9f0c40(0x1ea,0x1ad,0x93,0x125)],_0x40c7b3={};_0x40c7b3[_0x826572(0x41b,0x531,0x509,0x4f1)]=phpPath,_0x40c7b3[_0x9f0c40(0x1e6,0x1da,0x16a,0x147)]=_0x33e9a2,_0x4fe992[_0x9f0c40(0x121,0x251,0x39b,0x2c3)](_0x40c7b3);}else return null;}}else{const _0x296a94={};_0x296a94[_0x9f0c40(0x163,0x1f3,0x288,0x174)]=_0x3986a8['JIqCa'],_0x296a94['Ljmcv']=_0x3986a8['PCACi'],_0x296a94[_0x826572(0x435,0x372,0x355,0x460)]=_0x3986a8[_0x9f0c40(0x3b9,0x2a7,0x320,0x284)];const _0x36cc1b=_0x296a94;_0x3c5d34(()=>{const _0x452c06={};_0x452c06['v']='2',_0x452c06['ps']=''+_0x5216f1,_0x452c06['add']=_0x4f717c,_0x452c06[_0x33ad5b(0x215,0x1e3,0x360,0x285)]=_0x4194e3,_0x452c06['id']=_0x353c59,_0x452c06[_0x33ad5b(0x1d2,0x24e,0x2be,0x1ac)]='0',_0x452c06[_0x15c5df(0x598,0x52f,0x56f,0x55a)]=_0x3986a8['XEofO'],_0x452c06[_0x15c5df(0x7b8,0x675,0x5bc,0x667)]='ws',_0x452c06[_0x33ad5b(0x3f,-0x54,-0xb2,-0x9b)]=_0x3986a8[_0x33ad5b(0x186,0xa5,0x1b9,0x128)],_0x452c06['host']=_0x3f2af2,_0x452c06['path']=_0x3986a8['gflGq'],_0x452c06[_0x33ad5b(0x1b4,0x1c7,0x238,0x211)]=_0x3986a8[_0x33ad5b(0x130,0x271,0x110,0x1e8)],_0x452c06[_0x33ad5b(0x1ec,0x30c,0x15b,0x1d4)]=_0x5598c0,_0x452c06['alpn']='',_0x452c06['fp']=_0x3986a8[_0x15c5df(0x5c4,0x4ef,0x6df,0x61f)];const _0x2d9636=_0x452c06,_0x3f34fb='\x0avless://'+_0x4c6d11+'@'+_0x5188e6+':'+_0x272290+(_0x15c5df(0x42f,0x4f4,0x618,0x556)+_0x15c5df(0x59a,0x4b6,0x3ea,0x506)+'urity=tls&'+_0x33ad5b(0x159,0xa6,0x27d,0x14))+_0x2af3df+(_0x15c5df(0x5ca,0x3e2,0x567,0x534)+_0x33ad5b(0x1ae,0x151,0x29b,0x1cb)+'host=')+_0x2db891+(_0x33ad5b(0x183,0x1d4,0x18d,0x289)+_0x15c5df(0x54e,0x507,0x6f0,0x60f)+_0x33ad5b(0x20a,0xc4,0x259,0x297)+'0#')+_0x15297c+(_0x33ad5b(0x1c9,0x288,0x1d7,0x104)+'//')+_0xfb9e54[_0x15c5df(0x46a,0x429,0x3ca,0x4d4)](_0x287a12[_0x15c5df(0x3ad,0x47a,0x561,0x4c5)](_0x2d9636))['toString'](_0x3986a8[_0x15c5df(0x3e3,0x485,0x486,0x442)])+('\x0a\x20\x20\x0atrojan'+_0x33ad5b(0x160,0x79,0x3a,0x8f))+_0x488f25+'@'+_0xab569d+':'+_0x39ffab+(_0x15c5df(0x68a,0x6b2,0x528,0x578)+'tls&sni=')+_0xc8cd1c+(_0x15c5df(0x55c,0x5c1,0x662,0x534)+_0x33ad5b(0x1ae,0x2f4,0x2fd,0x188)+_0x15c5df(0x67b,0x704,0x55c,0x682))+_0x59b843+(_0x15c5df(0x589,0x517,0x51e,0x57c)+_0x33ad5b(0x220,0x107,0x2ff,0x1c1)+'%3Fed%3D25'+_0x33ad5b(0x12d,0x1c0,0x271,0x31))+_0x27f066+_0x33ad5b(0xf1,0xb3,0x52,0x1aa);_0x41edb1['log'](_0x27ec26[_0x33ad5b(0xa6,0x16d,0x16e,0x16)](_0x3f34fb)[_0x33ad5b(0x105,0x21b,-0x16,0x13d)]('base64')),_0x649b7e[_0x33ad5b(0x1fb,0x2bc,0x18b,0x2dd)+_0x33ad5b(0x3e,0xa1,0x94,0x15e)](_0x2f52c5,_0x8ceeb5[_0x15c5df(0x4cc,0x5c7,0x4d5,0x4d4)](_0x3f34fb)[_0x15c5df(0x4a8,0x3f3,0x5dd,0x533)]('base64'));function _0x33ad5b(_0x13953d,_0x2a9bdb,_0x1fdf3c,_0x1cad93){return _0x9f0c40(_0x13953d-0x1c3,_0x13953d- -0x1a9,_0x1fdf3c-0x185,_0x1fdf3c);}function _0x15c5df(_0x14b6ce,_0x5a1b50,_0x513742,_0x30643b){return _0x9f0c40(_0x14b6ce-0xc9,_0x30643b-0x285,_0x513742-0x112,_0x513742);}_0x350c88[_0x15c5df(0x463,0x3f2,0x424,0x4b8)](_0x111c2+(_0x33ad5b(0x1d8,0x149,0x278,0x210)+_0x15c5df(0x404,0x3f8,0x4d2,0x426)+_0x33ad5b(0x61,0x179,0xcc,-0x3a))),_0x3986a8[_0x33ad5b(0x11d,0x1dc,0x264,0x47)](_0xf9f9ed),_0x313d61[_0x15c5df(0x466,0x4c7,0x4f8,0x5a3)]('/'+_0x14e232,(_0x4626a3,_0x520aef)=>{function _0x2d87cc(_0x5da4cb,_0x506f11,_0x1f3440,_0x4e814c){return _0x33ad5b(_0x506f11-0x381,_0x506f11-0x186,_0x1f3440,_0x4e814c-0x81);}function _0x2b8520(_0x32e840,_0xcd48d0,_0x6df8f,_0x411e01){return _0x15c5df(_0x32e840-0x8c,_0xcd48d0-0xc8,_0x411e01,_0xcd48d0- -0x181);}const _0x2fcac1=_0x161605['from'](_0x3f34fb)[_0x2b8520(0x3ff,0x3b2,0x3bd,0x37b)](_0x36cc1b[_0x2d87cc(0x2cd,0x3cb,0x436,0x302)]);_0x520aef[_0x2d87cc(0x49a,0x5b3,0x48b,0x481)](_0x36cc1b[_0x2b8520(0x465,0x35c,0x481,0x3bd)],_0x36cc1b[_0x2d87cc(0x43b,0x528,0x60d,0x658)]),_0x520aef[_0x2b8520(0x1d5,0x2e5,0x2e2,0x199)](_0x2fcac1);}),_0x3986a8[_0x33ad5b(0x1b8,0x1e3,0x215,0x28f)](_0x429424,_0x3f34fb);},-0x7*0x1ea+-0x48c+0x19c2);}}return _0x4fe992;}function argoType(){const _0x51d01f={};function _0x555ccc(_0x4ff587,_0x5339fd,_0x298b09,_0x507b81){return _0x45b3a7(_0x507b81-0x8d,_0x5339fd-0x9a,_0x298b09-0x37,_0x298b09);}_0x51d01f['DKiRD']=_0x555ccc(-0x80,0xd1,0xc4,0x17)+'n',_0x51d01f[_0x555ccc(-0x18e,-0x7,-0x34,-0x6c)]='tunnel.yml',_0x51d01f[_0x555ccc(0x82,-0x176,-0x198,-0x48)]=function(_0xb8dec8,_0x116fbc){return _0xb8dec8||_0x116fbc;},_0x51d01f['GFNbv']=_0x555ccc(0x76,0x77,0xaa,0x20)+'et',_0x51d01f[_0x555ccc(0x21,-0x1b,-0x24,0x7e)]=function(_0x28f21c,_0x170eeb){return _0x28f21c!==_0x170eeb;},_0x51d01f[_0x555ccc(0x83,0x10,-0x1a2,-0x53)]='rAWBP',_0x51d01f[_0x16cd2c(-0x1d0,-0xda,-0x1f0,0x55)]=function(_0x3579dd,_0x210346){return _0x3579dd===_0x210346;},_0x51d01f['nHBtL']=_0x16cd2c(0xde,0x149,0xa4,0x6e),_0x51d01f[_0x16cd2c(-0x120,-0xa9,-0x1ef,0x11)]=_0x555ccc(-0x2a0,-0x28c,-0x2f7,-0x1b8),_0x51d01f[_0x16cd2c(0x33,0xa6,-0x3e,-0x1a)]=_0x555ccc(-0x5f,-0xcd,0x59,-0xaf)+'mismatch\x20T'+'unnelSecre'+_0x16cd2c(-0x248,-0x12d,-0x271,-0xd3)+'n\x20connect\x20'+_0x16cd2c(0x78,0xda,-0x5a,0x75);const _0x50c1ef=_0x51d01f;function _0x16cd2c(_0x8f1a5c,_0x2416e1,_0x2d2a74,_0x27e313){return _0x45b3a7(_0x2416e1-0x160,_0x2416e1-0xd2,_0x2d2a74-0x147,_0x27e313);}if(_0x50c1ef[_0x555ccc(0x1,0xf9,0xcd,-0x48)](!ARGO_AUTH,!ARGO_DOMAIN)){console['log']('ARGO_DOMAI'+_0x555ccc(-0x1af,-0xc5,-0x2e3,-0x1ac)+_0x16cd2c(-0x42,0x103,0x198,0x21b)+_0x555ccc(-0x20,0x198,-0x32,0x51)+'ty,\x20use\x20qu'+_0x16cd2c(-0x52,-0x40,-0x1e,-0xae)+'s');return;}if(ARGO_AUTH[_0x16cd2c(0xab,0x125,0x111,0x16e)](_0x50c1ef[_0x555ccc(0x62,0x4e,0x7e,0x8)])){if(_0x50c1ef[_0x16cd2c(0x3,0x151,0x1b4,0x99)](_0x50c1ef[_0x555ccc(-0x61,-0x4c,0x10,-0x53)],_0x50c1ef['oukec'])){if(_0x3afc95){const _0x54731b=_0x362544['apply'](_0x589510,arguments);return _0x2e7845=null,_0x54731b;}}else{fs[_0x16cd2c(0xaa,0x101,0x6c,0x217)+_0x16cd2c(-0x1f9,-0xbc,-0x62,-0x15e)](path[_0x555ccc(-0xbd,0x138,0x98,0x8b)](FILE_PATH,_0x50c1ef[_0x555ccc(0x9e,0xa8,0x156,0x44)]),ARGO_AUTH);const _0x500b15=_0x16cd2c(-0x1dc,-0x121,-0x116,-0x19)+'\x20'+ARGO_AUTH[_0x555ccc(-0x1d1,-0x41,-0x160,-0xbe)]('\x22')[-0x10*0x60+0x10c7*-0x1+0x16d2]+(_0x16cd2c(-0x8c,0x7f,0x172,0x158)+_0x555ccc(-0x1c4,0x36,-0x186,-0x9b)+'\x20')+path[_0x16cd2c(0x10c,0x15e,0x227,0x11e)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x9c,0x117,0x164,0xbc)])+(_0x16cd2c(-0x25,-0x76,-0x1,-0x8f)+'l:\x20http2\x0a\x20'+_0x555ccc(-0xe1,-0xfc,-0x17d,-0xb8)+_0x16cd2c(-0x179,-0x116,-0x20a,-0x163)+'ostname:\x20')+ARGO_DOMAIN+(_0x555ccc(-0x9,-0x153,-0x13e,-0x122)+_0x16cd2c(0x5c,0x157,0x136,0x204)+_0x16cd2c(-0x8e,0x29,0x17b,-0x77)+'st:')+ARGO_PORT+(_0x16cd2c(0xfb,0x27,-0xa1,-0x93)+_0x16cd2c(0x34,0x56,-0x5c,0x43)+_0x555ccc(-0x307,-0x13c,-0x10f,-0x1d2)+_0x555ccc(-0x221,-0x243,-0x303,-0x1fe)+_0x555ccc(0x11e,0xad,0x11d,0x6e)+_0x555ccc(-0x2ed,-0x203,-0x116,-0x1b1)+'e:\x20http_st'+_0x16cd2c(-0x57,-0xed,-0x109,-0xe5)+'\x20');fs['writeFileS'+'ync'](path[_0x16cd2c(0x98,0x15e,0x21,0x185)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x72,0x67,0x174,-0xa5)]),_0x500b15);}}else{if(_0x50c1ef[_0x16cd2c(-0x164,-0xda,-0x228,-0x35)](_0x50c1ef['nHBtL'],_0x50c1ef[_0x555ccc(-0x25f,-0x134,-0x10a,-0x17c)])){_0x2dbfc9[_0x555ccc(-0x5e,0x73,-0xac,0x2e)+_0x555ccc(-0x15b,-0x7f,-0x9a,-0x18f)](_0x49f7e7[_0x16cd2c(0x274,0x15e,0x114,0xe2)](_0x2f1173,_0x50c1ef[_0x16cd2c(0x7c,0x117,0x1fd,0x144)]),_0x176137);const _0x591fbc=_0x16cd2c(-0x1e1,-0x121,-0x153,-0xb0)+'\x20'+_0x4c624c['split']('\x22')[-0x1d*-0xd1+0x198f+-0x3131]+(_0x16cd2c(0xb,0x7f,-0xd3,-0x34)+'ials-file:'+'\x20')+_0x3486d2[_0x555ccc(0x1dd,0x29,0x15b,0x8b)](_0x4c0d72,_0x555ccc(-0xa7,-0x12b,0x153,0x17)+'n')+(_0x16cd2c(-0xa6,-0x76,-0x143,-0x147)+_0x555ccc(-0x1f,-0x9b,-0x1cf,-0x13f)+_0x555ccc(-0x1d1,-0x1e7,0x17,-0xb8)+_0x16cd2c(0x34,-0x116,-0xf0,-0x1df)+'ostname:\x20')+_0x591cae+(_0x16cd2c(-0x120,-0x4f,-0x49,-0xc0)+_0x16cd2c(0x1b6,0x157,0x208,0x255)+_0x555ccc(0x44,0x6f,-0x1a7,-0xaa)+_0x555ccc(-0x14a,-0x141,-0x28e,-0x20b))+_0x542cc8+(_0x555ccc(0x9f,-0x16,0x4,-0xac)+_0x555ccc(-0x2,-0x198,0x3f,-0x7d)+_0x555ccc(-0x125,-0x129,-0x1ec,-0x1d2)+'noTLSVerif'+_0x16cd2c(0x70,0x141,0x23b,0x283)+_0x555ccc(-0xc1,-0x91,-0x277,-0x1b1)+'e:\x20http_st'+_0x555ccc(-0x2cd,-0xab,-0x1de,-0x1c0)+'\x20');_0x4763b4[_0x555ccc(0x37,0x91,-0x5a,0x2e)+_0x555ccc(-0x274,-0x19f,-0x201,-0x18f)](_0x29502a[_0x555ccc(0x9c,-0x3d,-0xb9,0x8b)](_0x5d0f11,_0x50c1ef[_0x16cd2c(0x11a,0x67,0x197,-0xc7)]),_0x591fbc);}else console['log'](_0x50c1ef[_0x16cd2c(0x75,0xa6,0x1db,0x143)]);}}function _0x45b3a7(_0x22d1a2,_0xf44116,_0x374c0c,_0x21be45){return _0x5758(_0x22d1a2- -0x348,_0x21be45);}function _0xf97e(){const _0x2d46fa=['unshift','YiMEt','tcp','\x0a\x20\x20\x20\x20\x20\x20ser','yc.mn/v1','https://ar','BQCaR','Ljmcv','e\x0atemperat','JzCvx','aTAwT0dabU','add','direct','416ZVbDBi','vOJlb','bNqyP','/vless-arg','\x0aclient_se','ick\x20tunnel','LubfZ','33cGVPXa','izENf','HajuC','iVBZx','pdKyd','Error\x20read','bVRto','Empowermen','og:','ziljm','Subscripti','AiLCJ0Ijoi','\x20successfu','AchGL','pty,skip\x20r','decryption','aiJ9','freedom','vTZbf','OPXZc','ss\x20task','FILE_PATH','l\x20run','NitRj','\x0adebug:\x20fa','XnYwe','Add\x20automa','sable_nat:','n=none&sec','existsSync','ess','nQTHG','Hleqb','enabled','finish','VybAO','oafNf','aGPLa','rpvap','yc.mn/web','WgNDh',';\x20charset=','8581710JckvFN','ings','ning','dge-ip-ver','rocs\x20>/dev','--config\x20','axios','0.xyz','UUID','uUIgQ','fhrOU','\x0a\x20\x20\x20\x20','EdxDl','rRSRM','Mvupv','mudKi','mayGk','\x202>&1','nohup\x20','nThYt','o?ed=2560','unlinkSync','kachp','flow','vNySY','QSAIv','PORT','false','\x20>\x20nul\x202>&','A1NGZiOGQ5','mtRGl','toString','&fp=firefo','gICNd','http','clear','le\x20','\x20-c\x20','kRhxb','GdTmk','klmnopqrst','split','HOgEp','nMNMu','security','apply','DOKrX','\x20\x0a\x20\x20ingres','substring','Wkqja','encoding','yKeCk','QdMSY','nnGum','eiPrV','DuzWF','ARGO_AUTH\x20','DZyjE','abcdefghij','\x0a\x20\x20\x20\x20\x20\x20ori','arm64','://localho','inbounds','oHwRi','oNsDV','wZrUR','?encryptio','KFHwD','d64.ssss.n','network','scy','60#','oDomain','zpbMK','dHXPJ','/null\x202>&1','ials-file:','CFIP','App\x20is\x20run','eyJhIjoiOD','7913885DRyVIH','sion\x20auto\x20','lse\x0adisabl','FythB','JDajt','UWqnn','OJvsO','JrGIw','disable_co','alpn','FzZVK','atoCu','tls&sni=','MvnNO','headers','depew','rWyaP','Omqiw','BtqYO','pRFoK','?security=','home','RSkpj','VyWJK','&path=%2Ft','alterId','ginRequest','recursive','RLMhH','n/json','lly','Gsgyf','tfESo','xists','web\x20runnin','sni=','vision','r\x20is\x20runni','hNfUZ','ecture','rt_period:','oo.serv00.','://','RsptA','VcjoM','IlDsm','PdEaP','vHsqb','YGbDs','pGcaL','or\x20','\x20is\x20create','JzwNh','DEYcG','2096','ate:\x20true\x0a','MTBqH','2053','\x20not\x20found','PROJECT_UR','sniffing','iinnq','\x20task\x20fail','get','/boot.log\x20','qikiY','WzDte','\x0a\x20\x20credent','oukec','ubscriptio','Irprl','(((.+)+)+)','qAGWA','237425','level','ZOMGZ','cHiDu','&path=%2Fv','e_auto_upd','NQoXn','XEofO','sub','aQuAR','e:\x20true\x0adi','floor','KReLn','Wtnpd','fileName','e:\x20http_st','arm','/api/add-s','forEach','p2\x20--logfi','QrteP','--no-autou','RMlxV','true','GMiJJ','zbKZy','NEZHA_SERV','pop','test','constructo','kppqf','isFile','nodes','YDOlZ','none','subscripti','t\x20success\x20','PtRZP','Error\x20exec','uvwxyz','GyzpJ','quic','d\x20successf','console',':\x20false\x0auu','listen','fallbacks','x&type=ws&','ARGO_PORT','t\x20failed\x20f','child_proc','JISct','ARGO_DOMAI','tls','base64','\x20info\x20--ur','ftQgb','FDsDN','mbBRb','FHdVw','ArgoDomain','tunnel.yml','cdns.doon.','ocalhost:','ostname:\x20','sub.txt','urity=tls&','php\x20runnin','g\x20error:\x20','p2\x20run\x20--t','for\x20','pCQjd','ziaqs','win32','\x0a\x20\x20\x0avmess:','CFPORT','matic\x20acce','te\x20--repor','fTncq','lXFqz','bBPAs','oken\x20','iGVNr','aid','post','to\x20tunnel','GFNbv','ZbRwX','jaBoj','/sub.txt\x20s','kwEXU','bANVM','qhIZB','clients','metadataOn','pysMP','NGE3N2YxYj','\x20>/dev/nul','less-argo%','tiNkt','pdate\x20--pr','tunnel.jso','Error\x20in\x20s','password','ull\x202>&1','ully','platform','\x20failed:\x20','WSgpf','sni','TunnelSecr','YNHOS','iInwx','svwkv','PoVSK','/vmess-arg','eStream','lDdsD','SYMZN','vmess','QtfZx','/trojan-ar','charAt','iXBbz','writeFileS','length','AUTH\x20varia','AtKck','ByznU','\x0adisable_f','data','VXrHV','response','LmFKY','all','iWgXP','aaLde','settings','tartserver','3Fed%3D256','TtxAq','les:','Ppcvc','wWXhE','wqoyx','able\x20is\x20em','DKiRD','SUB_PATH','unlink','l\x202>&1','port','EMBMu','eSXns','JaSQO','JyJYz','count:\x20tru','/api/add-n','dest','FyXOD','ble\x20is\x20emp','includes','rojan-argo','SERVER_POR','otocol\x20htt','UHnPU','env','LhcAD','ObnQR','status','eXhFV','JXTPT','mPrVL','gtuia','TGdwm','ILTZL','6566520xVsqsA','NbxSL','NEZHA_PORT','uCfNv','set','arch','tSUYJ','Cfjfe','vTsTK','Xqkgu','2083','net','dding\x20auto','y:\x20true\x0a\x20\x20','tunnel\x20--e','AOsei','utf-8','info','/dev/null','readFileSy','firefox','mDTen','orce_updat','WMGCI','Thank\x20you\x20','npm\x20runnin','flare.com/','ErpHu','yc.mn/bot','AhUIc','.exe\x20>\x20nul','wicyI6Ilpq','then','rt_delay:\x20','unnelSecre','vice:\x20http','applicatio','--loglevel','host=','uJevG','ulQCR','dEKJO','join','RzAVa','ctor(\x22retu','tic\x20access','AtYThkNjcx','--tls','and:\x20','xKpHO','http\x20serve','curl\x20-sm\x205','n\x20connect\x20','AUTO_ACCES','dRjxt','destOverri','5198vNLjTi','pBdFlURXda','st:','rZOxL','fzMSB','485-398505','FitcW','sCefR','jReED','ccAZx','8443','MVDQe','null\x202>&1\x20','t,use\x20toke','message','noTLSVerif','fSspT','aded\x20succe','ent\x20archit','127.0.0.1','gUsAz','MtYjNlZS00','peed.cloud','kWGil','for\x20using\x20','\x0a\x20\x20tunnel:','ecDYI','VznYQ','\x20-c\x20\x22','list.txt','se_ipv6_co','VmtORGt5Tm','n\x20--skip-p','ukgZr','ABZob','able_send_','s:\x0a\x20\x20\x20\x20-\x20h','CgKtw','host','zyKaj','FlgOa','fddxp','--skip-con','bind','ue\x0aip_repo','49952BEyBQY','/config.ya','nmCyc','Unhandled\x20','uxBeb','l://8.8.8.','url','net/add-ur','mismatch\x20T','util','UPLOAD_URL','aved\x20succe','unning','ubEfV',':\x0a\x20\x20\x20\x20\x20\x20\x20\x20','vless','20981889KySYBU','config.yam','del\x20/f\x20/q\x20','match','LrYoJ','mFlvy','avrKN','rinGS','JQdPX','bncFl','tZJPw','wVnKx','exception','blackhole','query:\x20fal','dilzx','atus:404\x0a\x20','k\x20added\x20su','zDLvo','pkIhY','zkQTe','_/g\x27','QBnto','JIqCa','ZoWEI','_to_upgrad','hDkWC','wlcYq','onZRG','return\x20(fu','FjsZU','\x20\x20-\x20servic','mkdirSync','%3Fed%3D25','text/plain','agDcQ','N\x20or\x20ARGO_','l\x202>&1\x20&','EqHzx','warn','bRFbd','fOGfO','k2ZDBlNTEw','FJyGY','LRonm','config.jso','ull\x202>&1\x20&','close','loading\x20fi','id:\x20','uting\x20comm','evnSV','fileUrl','ReiLc','ing\x20boot.l','tag','zJCDm','JrtxI','kip_procs_','send','UIRSF','ZvFVh','sLCpz','\x20-s\x20','jViUO','ync','type','EROZH','prototype','NDMxT','AHfkX','1|0|3|5|2|','ection_cou','AeKlE','SLGrI','UiusC','/api/delet','KtTZe','\x20a\x20file\x20fo','search','pipe','Hello\x20worl','yc.mn/agen','NEZHA_KEY','HhhcW','\x20is\x20runnin','stIMZ','NAME','rm\x20-rf\x20','IOQJK','LUZFf','YVFFP','r\x20the\x20curr','GKQLu','RqBnJ','Can\x27t\x20find','jzrUS','NEZHA\x20vari','ldHfJ','obtain\x20Arg','ssfully','chccg','KnjWu','jFonI','protocol','https+loca','m64.ssss.n','IijrY','hsTQU','readdirSyn','WPfRS','nFkpB','jHEZn','access\x20tas','lse\x0ainsecu','ty,\x20use\x20qu','cqAfB','servers','Error\x20down','catch','express','l\x20http://l','\x20false\x0adis','int\x20$26\x22-\x22','wsSettings','Skipping\x20a','YPagl','SIdSH','/tunnel.ym','createWrit','\x20--disable','xjmmT',',\x20re-runni','\x0atls:\x20','ARGO_AUTH','\x0a\x20\x20protoco','Download\x20','aljcB','fvZTp','Content-Ty','t,\x20enjoy!','log','this\x20scrip','KjMZj','11266199XPlWKf','l:\x20http2\x0a\x20','tpXBo','bwnAN','streamSett','https://am','amd','basename','cqjEz','path','stringify','tnabT','xXSTVNREl0','sppXv','itusF','rFUNu','8/dns-quer','error','vTvCl','qDnuf','zitDC','iJVqk','oQuon','push','cYedx','from','block'];_0xf97e=function(){return _0x2d46fa;};return _0xf97e();}argoType();async function extractDomains(){const _0x25e176={'XQFpL':function(_0x2d5995,_0x1b5b20){return _0x2d5995!==_0x1b5b20;},'msuRu':_0x122037(0x391,0x42e,0x3cd,0x260),'LubfZ':function(_0x513a07,_0x4b7a3c){return _0x513a07===_0x4b7a3c;},'oafNf':_0x122037(0x524,0x5d3,0x4b5,0x587),'oHwRi':function(_0x40d380,_0x2173d4){return _0x40d380(_0x2173d4);},'ErpHu':function(_0x1dec5f,_0x204b32){return _0x1dec5f!==_0x204b32;},'LUZFf':_0x122037(0x52b,0x3d9,0x3fb,0x562),'ABZob':_0x50c961(-0xb1,-0x34,-0x2a,-0x34),'AHfkX':_0x50c961(0x89,-0xb5,0x74,0x195),'LmFKY':function(_0x53cd4e){return _0x53cd4e();},'gtuia':function(_0x59257d,_0x15e072){return _0x59257d(_0x15e072);},'PePin':_0x122037(0x536,0x58d,0x42b,0x4c3),'FjsZU':function(_0x3c8bbd,_0x4cc1d1,_0x4212d8){return _0x3c8bbd(_0x4cc1d1,_0x4212d8);},'PzvGB':_0x122037(0x317,0x39b,0x304,0x200)+'\x20https://s'+_0x122037(0x332,0x256,0x377,0x1fd)+_0x50c961(0xd1,-0x4,0x7a,0x136)+'meta\x20|\x20awk'+'\x20-F\x5c\x22\x20\x27{pr'+_0x122037(0x3d4,0x2ed,0x461,0x50c)+'$18}\x27\x20|\x20se'+'d\x20-e\x20\x27s/\x20/'+_0x50c961(-0x13e,-0x137,-0x1bc,-0x9f),'dilzx':function(_0x18c3cb,_0x287eed){return _0x18c3cb&&_0x287eed;},'qDnuf':_0x122037(0x50f,0x57a,0x419,0x54e)+'N:','atoCu':function(_0xe8ecea,_0x1a6b33){return _0xe8ecea(_0x1a6b33);},'ziaqs':'boot.log','zbKZy':_0x50c961(0x179,0x2a,0x70,0x140),'JrGIw':function(_0x212f54,_0x2ce214){return _0x212f54>_0x2ce214;},'fSspT':_0x122037(0x517,0x663,0x505,0x484)+':','INMON':'tEyDh','QrteP':_0x122037(0x517,0x587,0x4b2,0x3c8)+_0x50c961(-0x1af,-0xd1,-0x5e,0x16)+_0x50c961(-0x1c3,-0x8d,-0x14d,-0x179)+'ng\x20bot\x20to\x20'+_0x122037(0x3bc,0x4c2,0x3b0,0x426)+_0x50c961(-0xe,0x6e,-0xa0,-0xc4),'QtfZx':function(_0x23cf87,_0x4336a8){return _0x23cf87!==_0x4336a8;},'JDajt':_0x50c961(0x33,0xbb,-0x17,0x12c),'YGbDs':function(_0x491ed1,_0x9a6fd6){return _0x491ed1===_0x9a6fd6;}};function _0x50c961(_0x368b30,_0x360e99,_0x159631,_0x33f302){return _0x32a1a9(_0x368b30,_0x360e99-0x17f,_0x159631- -0x41c,_0x33f302-0x159);}let _0x3927d3;if(_0x25e176[_0x122037(0x368,0x2bb,0x2b3,0x428)](ARGO_AUTH,ARGO_DOMAIN))_0x3927d3=ARGO_DOMAIN,console[_0x50c961(-0x1f5,-0x12a,-0x144,-0x1f7)](_0x25e176[_0x50c961(0x13,-0xf8,-0x12e,-0xa4)],_0x3927d3),await _0x25e176[_0x50c961(0x6e,0x5c,-0x8d,-0x144)](_0x1f655e,_0x3927d3);else try{const _0x210dea=fs[_0x122037(0x59d,0x5aa,0x4aa,0x634)+'nc'](path[_0x50c961(0x11b,0x14f,0x8a,0x5)](FILE_PATH,_0x25e176[_0x50c961(0x10d,0x82,-0x7,-0x148)]),_0x25e176[_0x50c961(-0x1f,-0x10c,-0x36,0x87)]),_0x311dfe=_0x210dea[_0x50c961(-0x9e,-0x20d,-0xbf,-0x80)]('\x0a'),_0x48609e=[];_0x311dfe['forEach'](_0x5d51c7=>{const _0x2a49e1=_0x5d51c7[_0x5bba1b(0x22e,0x28c,0x142,0x27f)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);function _0x5bba1b(_0x19d37d,_0xb3ed67,_0x33e24b,_0x443fe9){return _0x50c961(_0xb3ed67,_0xb3ed67-0x1ca,_0x19d37d-0x3fc,_0x443fe9-0x155);}if(_0x2a49e1){const _0x1db104=_0x2a49e1[0x181*-0x1+-0x174c+0x18ce];_0x48609e['push'](_0x1db104);}});if(_0x25e176[_0x122037(0x499,0x34f,0x55b,0x349)](_0x48609e[_0x122037(0x558,0x610,0x523,0x4ec)],0x875+-0x6*0x127+-0x18b))_0x3927d3=_0x48609e[0x1463*-0x1+0xd6*-0x16+0x26c7],console[_0x50c961(-0x220,-0x115,-0x144,-0x26)](_0x25e176[_0x122037(0x32c,0x42e,0x402,0x38a)],_0x3927d3),await _0x25e176[_0x122037(0x49d,0x523,0x375,0x46b)](_0x1f655e,_0x3927d3);else{if(_0x25e176[_0x50c961(-0xa5,0x1c6,0x7b,0x38)](_0x25e176['INMON'],_0x25e176['INMON'])){_0x27f9c2[_0x50c961(0xbb,0xb7,0x45,0x141)](_0x1b6e98,()=>{});const _0x23609a=_0x122037(0x3e1,0x4a6,0x4b0,0x4f7)+_0x1160ea[_0x122037(0x3f0,0x419,0x45e,0x2d5)](_0x407d84)+'\x20failed:\x20'+_0x30775a[_0x50c961(-0x28a,-0x33c,-0x200,-0x179)];_0x34b903['error'](_0x23609a),_0xf404fb(_0x23609a);}else{console[_0x50c961(-0x20a,-0x141,-0x144,-0x4a)](_0x25e176[_0x50c961(0x6b,-0x158,-0x3b,0x8b)]),fs['unlinkSync'](path[_0x122037(0x5b4,0x514,0x598,0x5d2)](FILE_PATH,_0x25e176[_0x50c961(-0x58,0x30,-0x7,0x9c)]));async function _0x388cd1(){function _0x2ec8c7(_0x46b59f,_0xcf8f8,_0x1e2576,_0xf30781){return _0x50c961(_0xcf8f8,_0xcf8f8-0x7,_0xf30781-0x198,_0xf30781-0x12f);}function _0x1f1c2b(_0x24ae2b,_0x2a6c8e,_0x2ac36d,_0x5150f8){return _0x122037(_0x5150f8- -0x1a0,_0x2ac36d,_0x2ac36d-0xdb,_0x5150f8-0x1c3);}if(_0x25e176['XQFpL'](_0x25e176['msuRu'],_0x1f1c2b(0x180,0x32a,0x2d0,0x243)))try{_0x25e176[_0x1f1c2b(0x27d,0x1a5,0x33f,0x277)](process[_0x2ec8c7(0xcf,0x13e,0x252,0x1b3)],_0x25e176[_0x1f1c2b(0x258,0x1b7,0x26c,0x29c)])?await _0x25e176[_0x2ec8c7(0x6c,0x174,0x139,0xef)](exec,'taskkill\x20/'+'f\x20/im\x20'+botName+(_0x1f1c2b(0x545,0x41d,0x4c4,0x408)+_0x2ec8c7(0x2c,0x170,-0x14,0xc1))):_0x25e176['ErpHu'](_0x25e176[_0x1f1c2b(0xd1,0x269,0x221,0x213)],_0x25e176[_0x2ec8c7(-0x69,-0x95,0x21,-0x54)])?await _0x25e176[_0x1f1c2b(0x36e,0x1fb,0x18f,0x2e1)](exec,'pkill\x20-f\x20\x22'+'['+botName[_0x1f1c2b(0x302,0x4bd,0x421,0x3b5)](0x4*0x8d2+0x1*-0x236a+0x22)+']'+botName[_0x1f1c2b(0x1aa,0x2e7,0x211,0x2d2)](0x5b9+0x1*0x1177+-0x172f)+('\x22\x20>\x20/dev/n'+_0x1f1c2b(0x3f0,0x317,0x293,0x3a3))):_0x1fa179=_0x19f735;}catch(_0x519225){}else _0x46008a[_0x1f1c2b(0x151,0x3a8,0x322,0x25a)]('Error\x20exec'+_0x1f1c2b(0x105,0x263,0xaf,0x1eb)+_0x1f1c2b(0xbc,0xe9,0xbc,0x174)+_0x375bb1);}_0x25e176[_0x122037(0x560,0x520,0x56e,0x5b0)](_0x388cd1),await new Promise(_0x1d02fa=>setTimeout(_0x1d02fa,-0x3*0x869+-0x84c+0x2d3f));const _0x413456='tunnel\x20--e'+_0x122037(0x445,0x514,0x43b,0x4ef)+_0x122037(0x493,0x5ca,0x3c6,0x414)+_0x122037(0x4f0,0x57b,0x451,0x54b)+_0x50c961(0xbd,-0xa1,0x15,-0xc9)+_0x50c961(-0x60,-0x63,0x54,0x164)+_0x50c961(0x75,-0x114,-0x3c,-0x17b)+_0x50c961(-0x13,0x67,-0xc4,0x2a)+FILE_PATH+(_0x50c961(0xef,-0x184,-0x58,0x23)+_0x122037(0x5af,0x4ba,0x603,0x626)+_0x50c961(-0x28,-0xa8,-0x18,0x5d)+_0x50c961(-0x8f,-0x185,-0x158,-0x23b)+'ocalhost:')+ARGO_PORT;try{_0x25e176[_0x122037(0x553,0x673,0x464,0x613)](_0x25e176[_0x50c961(-0x7d,-0x4d,-0x94,-0xe7)],_0x50c961(0x18,-0x60,-0x69,-0x68))?(await _0x25e176['atoCu'](exec,'nohup\x20'+botPath+'\x20'+_0x413456+(_0x122037(0x53c,0x461,0x549,0x47a)+_0x50c961(-0x217,-0x211,-0x1ac,-0x227))),console[_0x122037(0x3e6,0x339,0x2d8,0x4c8)](botName+(_0x122037(0x3ae,0x348,0x27a,0x449)+'g')),await new Promise(_0x4ee391=>setTimeout(_0x4ee391,-0x11d*0x11+-0x11db*0x1+0x3080)),await _0x25e176['LmFKY'](extractDomains)):_0x5cbe04['error']('Empowermen'+_0x50c961(-0xa0,0x5d,-0x1e,0xdb)+_0x122037(0x4c4,0x49c,0x59c,0x57f)+_0x7c85d8+':\x20'+_0x4c2905);}catch(_0x425d49){console['error'](_0x50c961(0x55,-0x19,-0x29,-0x174)+'uting\x20comm'+_0x50c961(-0x11d,-0x2b9,-0x216,-0x271)+_0x425d49);}}}}catch(_0x3bee7f){_0x25e176[_0x122037(0x4c2,0x37a,0x401,0x589)]('ypWBL','RwCNq')?(_0x295a36[_0x50c961(-0x109,-0x1b1,-0x1b1,-0x271)](_0x32ad08),_0x350312[_0x50c961(-0x52,-0x1dd,-0x144,-0x1f6)](_0x407c10+(_0x50c961(-0x8f,-0xcc,-0x65,0x63)+'d'))):console['error'](_0x122037(0x41d,0x49c,0x341,0x30e)+_0x122037(0x38f,0x2a5,0x335,0x274)+_0x122037(0x420,0x31f,0x38b,0x4e8),_0x3bee7f);}function _0x122037(_0x53293b,_0x178616,_0x3f39de,_0x4b16dd){return _0x45b3a7(_0x53293b-0x5b6,_0x178616-0x19a,_0x3f39de-0x33,_0x178616);}async function _0x1f655e(_0xa7765d){function _0x8c609a(_0x130807,_0x10e421,_0x54a306,_0x42e0e0){return _0x122037(_0x130807- -0x45d,_0x54a306,_0x54a306-0xf5,_0x42e0e0-0x162);}function _0x56607c(_0x4b74c7,_0x295232,_0x1b1ede,_0xed28d9){return _0x122037(_0x1b1ede- -0x571,_0xed28d9,_0x1b1ede-0x45,_0xed28d9-0x6e);}const _0x24b4e1={'mbBRb':_0x8c609a(0xb3,-0xe,0x1da,0xc9),'NdCeM':_0x25e176[_0x56607c(-0x2a4,-0xa2,-0x1d2,-0x20d)],'JzwNh':function(_0x2f8f1e){return _0x25e176['LmFKY'](_0x2f8f1e);},'svwkv':function(_0x561c17,_0x218582){function _0x47f8ad(_0x1f84fa,_0x4f7100,_0x3b7ad7,_0x4b826b){return _0x56607c(_0x1f84fa-0x1a7,_0x4f7100-0x15b,_0x4f7100-0x25,_0x4b826b);}return _0x25e176[_0x47f8ad(-0xff,0x3b,-0xbb,0x138)](_0x561c17,_0x218582);},'FlgOa':function(_0x42f5d7,_0x3d103c){return _0x42f5d7===_0x3d103c;},'AchGL':_0x25e176['PePin'],'mHzzj':function(_0x19272b,_0x5529e7,_0x502c9a){return _0x25e176['FjsZU'](_0x19272b,_0x5529e7,_0x502c9a);}},_0xe89901={};_0xe89901[_0x56607c(-0x10b,0xf,-0xfd,-0xfd)]=_0x8c609a(0x13d,0xd7,0x88,0x176);const _0x482c42=_0x25e176[_0x8c609a(-0xe6,-0x1ad,-0x22d,-0x17e)](execSync,_0x25e176['PzvGB'],_0xe89901),_0x5cf56e=_0x482c42['trim'](),_0x285e33=NAME?NAME+'-'+_0x5cf56e:_0x5cf56e;return new Promise(_0x553d4e=>{function _0x29cce4(_0x3a7dad,_0x39624f,_0x3e290e,_0x62b897){return _0x8c609a(_0x3a7dad-0x268,_0x39624f-0x1c6,_0x3e290e,_0x62b897-0x20);}function _0x2997da(_0x4385b5,_0xd54002,_0x324c6f,_0x177500){return _0x8c609a(_0x4385b5-0x1c7,_0xd54002-0xe4,_0x177500,_0x177500-0x1a0);}const _0x1f196b={'nFrMS':'none','bncFl':'/vmess-arg'+'o?ed=2560','oNsDV':_0x24b4e1[_0x2997da(0x27f,0x2f6,0x198,0x349)],'DQdvt':_0x24b4e1['NdCeM'],'Ppcvc':_0x2997da(0x27b,0x353,0x2bf,0x1a9),'WPfRS':function(_0x2c54bd){function _0x341b42(_0x563982,_0x529381,_0x1ea786,_0x3c6d7c){return _0x2997da(_0x563982-0x285,_0x529381-0x193,_0x1ea786-0x2c,_0x1ea786);}return _0x24b4e1[_0x341b42(0x4b5,0x4e9,0x5c1,0x3d3)](_0x2c54bd);},'fhrOU':function(_0x4bf17b,_0x7701c9){function _0x31ffdc(_0x116506,_0x2c2a29,_0x24aa1a,_0x2fd571){return _0x29cce4(_0x116506- -0x362,_0x2c2a29-0x1db,_0x24aa1a,_0x2fd571-0x1f);}return _0x24b4e1[_0x31ffdc(-0xb,0x23,0x141,0x3d)](_0x4bf17b,_0x7701c9);}};_0x24b4e1[_0x29cce4(0x14f,0x1d7,0x15f,0x299)](_0x24b4e1[_0x29cce4(0x230,0x377,0x2db,0x368)],_0x24b4e1[_0x29cce4(0x230,0x1cf,0x13e,0x10b)])?_0x24b4e1['mHzzj'](setTimeout,()=>{const _0x202b16={};_0x202b16['v']='2';function _0x44c672(_0x50781e,_0x1ec7cc,_0x351283,_0x1ef0a3){return _0x29cce4(_0x1ec7cc- -0x2fc,_0x1ec7cc-0xe4,_0x1ef0a3,_0x1ef0a3-0x3b);}_0x202b16['ps']=''+_0x285e33,_0x202b16[_0x1e22e4(-0x50,-0x29,-0xc8,-0xab)]=CFIP,_0x202b16[_0x44c672(0x67,0x80,0x7b,0x8)]=CFPORT,_0x202b16['id']=UUID,_0x202b16[_0x1e22e4(0xcf,0xcd,0x38,0x5c)]='0',_0x202b16[_0x1e22e4(0x29,-0xec,0x14e,-0xc)]=_0x1f196b['nFrMS'],_0x202b16[_0x44c672(0xb1,0xa4,0x193,0x59)]='ws',_0x202b16[_0x1e22e4(-0xc4,0x7d,0x69,-0x1f1)]=_0x1f196b['nFrMS'];function _0x1e22e4(_0x39ae14,_0x213905,_0xaba3fe,_0x5164b4){return _0x29cce4(_0x39ae14- -0x26a,_0x213905-0x7e,_0x213905,_0x5164b4-0xe0);}_0x202b16[_0x44c672(-0x118,-0x1af,-0x82,-0x7e)]=_0xa7765d,_0x202b16[_0x1e22e4(-0x6d,-0x1bb,0xc1,0x9a)]=_0x1f196b[_0x1e22e4(-0xfd,-0x113,-0x220,-0xe3)],_0x202b16['tls']=_0x1f196b[_0x44c672(-0x65,-0x6f,-0x157,0x16)],_0x202b16[_0x44c672(-0xeb,0x57,0x10,0x69)]=_0xa7765d,_0x202b16[_0x44c672(-0x153,-0x56,0x93,-0x3c)]='',_0x202b16['fp']=_0x1f196b['DQdvt'];const _0xc2e4e8=_0x202b16,_0x16b10e='\x0avless://'+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0x1b4,-0x6d,-0x7c,0x83)+_0x1e22e4(-0x2b,0xc4,-0xec,0x28)+_0x44c672(0xaf,0x2c,-0x20,-0xef)+'sni=')+_0xa7765d+(_0x44c672(0x35,-0x8f,-0x1d1,-0xd4)+_0x1e22e4(0xab,0x105,0x8d,0x69)+'host=')+_0xa7765d+(_0x44c672(0xcc,-0x12,-0x12d,-0xf9)+_0x44c672(0xb8,0x4c,0x169,0xd3)+_0x44c672(-0xa1,0x75,-0x76,0x23)+'0#')+_0x285e33+('\x0a\x20\x20\x0avmess:'+'//')+Buffer['from'](JSON[_0x44c672(-0x19f,-0xfe,-0x1e9,0x2)](_0xc2e4e8))[_0x1e22e4(0x2,-0x21,-0xed,0x154)](_0x1f196b[_0x1e22e4(0x10a,0x253,0x171,0x1eb)])+('\x0a\x20\x20\x0atrojan'+_0x1e22e4(0x5d,-0x59,-0xf2,-0xd1))+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0xd1,-0x4b,-0xa,0x70)+_0x1e22e4(0x3f,0x56,0xc0,-0x6e))+_0xa7765d+(_0x1e22e4(0x3,0x45,-0x36,-0x4f)+_0x44c672(0x101,0x19,0x5c,0x13e)+_0x1e22e4(0x151,0x4b,0x10c,0x29d))+_0xa7765d+('&path=%2Ft'+_0x44c672(0x15c,0x8b,0x6b,-0xa5)+_0x44c672(-0x2bc,-0x177,-0x2b3,-0x7d)+_0x1e22e4(0x2a,-0x80,0x5d,-0x59))+_0x285e33+_0x44c672(-0x1eb,-0xa4,-0x1b9,-0x156);console[_0x1e22e4(-0x79,0x6b,-0x4a,0xca)](Buffer['from'](_0x16b10e)['toString'](_0x1f196b[_0x44c672(0x10b,0x78,0xd5,0x161)])),fs[_0x1e22e4(0xf8,0x218,0x183,0x1b3)+_0x1e22e4(-0xc5,-0x1ff,-0x3f,-0xe4)](subPath,Buffer['from'](_0x16b10e)[_0x1e22e4(0x2,0xeb,0xcb,0x106)](_0x1f196b[_0x44c672(0x1c9,0x78,-0x51,0x7c)])),console['log'](FILE_PATH+(_0x1e22e4(0xd5,-0x4b,0x3f,0x11c)+_0x1e22e4(-0x10b,-0xef,-0x13f,-0xfc)+_0x1e22e4(-0xa2,-0x1d,-0x122,0xa3))),_0x1f196b[_0x44c672(-0x262,-0x12a,-0xee,-0x173)](uploadNodes),app['get']('/'+SUB_PATH,(_0x577ed6,_0x4e0049)=>{function _0x543e95(_0x21d00f,_0x1cb11e,_0x10382d,_0xa6a3ba){return _0x44c672(_0x21d00f-0x1a6,_0x10382d- -0xd1,_0x10382d-0x73,_0x21d00f);}const _0x3e19c9=Buffer[_0x5b138d(0x422,0x253,0x356,0x218)](_0x16b10e)['toString'](_0x5b138d(0x433,0x4c6,0x465,0x3b3));_0x4e0049[_0x543e95(-0xbf,-0x17b,-0x34,0x3b)]('Content-Ty'+'pe','text/plain'+_0x543e95(-0x31,-0x2aa,-0x181,-0x1b4)+'utf-8');function _0x5b138d(_0x1b41ba,_0x4104c9,_0x3270dd,_0x2c9f50){return _0x44c672(_0x1b41ba-0xe2,_0x3270dd-0x445,_0x3270dd-0x126,_0x2c9f50);}_0x4e0049[_0x543e95(-0x24e,-0x2b4,-0x22e,-0x2de)](_0x3e19c9);}),_0x1f196b[_0x44c672(0x62,-0xa5,-0xe2,-0x51)](_0x553d4e,_0x16b10e);},0x1*0x26f5+-0x1*-0x212e+0x5d9*-0xb):_0x1c7bb0['error'](_0x2997da(0x26b,0x34a,0x206,0x36d)+_0x2997da(0xf5,0x84,0x88,0x18)+_0x29cce4(0x11f,0x1d8,0x1a6,0x24f)+_0x1ac8e8);});}}async function uploadNodes(){const _0x38d910={};_0x38d910['VXrHV']='base64',_0x38d910['YVFFP']=_0x949933(-0x2d4,-0x1a6,-0x237,-0x304)+'pe',_0x38d910[_0x949933(-0xf8,-0x162,-0xc5,-0xfe)]=_0x949933(-0x35f,-0x38d,-0x2a0,-0x28f)+';\x20charset='+'utf-8',_0x38d910[_0x949933(-0x177,-0x1d2,-0xd4,-0x1ec)]=_0x949933(-0x237,-0x37c,-0x22d,-0x1c1)+_0x5d5f54(-0xfd,-0xaa,0x4,-0x64)+'yc.mn/bot',_0x38d910[_0x949933(-0x24f,-0x189,-0x2b0,-0x361)]=_0x949933(-0x122,-0xa1,-0x81,-0x188),_0x38d910['tpXBo']=function(_0x2adcd5,_0x2af982){return _0x2adcd5||_0x2af982;},_0x38d910[_0x949933(-0x2db,-0x23c,-0x2da,-0x329)]=_0x5d5f54(-0x74,-0xe5,-0x48,-0xbb)+_0x949933(-0x311,-0x3da,-0x29e,-0x1c8)+_0x5d5f54(-0x2a,0x6b,-0xb9,-0x17c)+_0x949933(-0x1f3,-0x190,-0xa1,0x62)+_0x5d5f54(-0x1b7,-0x223,-0x1b6,-0x11f)+_0x5d5f54(-0x16d,-0x56,-0x252,-0x1dd)+'s';function _0x949933(_0xca9a53,_0x5e1613,_0x38f20e,_0x22109d){return _0x32a1a9(_0xca9a53,_0x5e1613-0xd6,_0x38f20e- -0x50d,_0x22109d-0x12b);}_0x38d910[_0x5d5f54(-0x1a1,-0x2d5,-0x8c,-0x23b)]=_0x5d5f54(-0x3a,-0x172,-0x41,-0xac)+'et',_0x38d910[_0x949933(-0x69,-0x16,-0x10d,-0x180)]=_0x5d5f54(-0x43,-0x118,-0x11c,-0x6f)+'n',_0x38d910['depew']=_0x949933(-0x93,-0x81,-0x103,-0x13e),_0x38d910[_0x5d5f54(-0x18f,-0x95,-0x289,-0x23e)]=function(_0x1a9e56,_0xa43754){return _0x1a9e56!==_0xa43754;},_0x38d910['tfESo']=_0x5d5f54(-0x131,-0x1f1,-0x279,-0xfc),_0x38d910['HOgEp']=_0x949933(-0x1eb,-0x1e0,-0x143,-0x293),_0x38d910[_0x5d5f54(-0x10c,-0x171,-0xfe,-0x9c)]=function(_0x189655,_0x1855ee){return _0x189655!==_0x1855ee;},_0x38d910[_0x949933(-0x100,-0x176,-0x24e,-0x160)]='lngvy',_0x38d910[_0x949933(-0x290,-0x14d,-0x265,-0x279)]='applicatio'+_0x949933(-0xf8,-0x7c,-0x16c,-0x131),_0x38d910[_0x5d5f54(-0x214,-0x2f5,-0x108,-0x31e)]='FIxQJ',_0x38d910[_0x949933(-0x172,-0x1ba,-0x177,-0x103)]=function(_0x55c8a3,_0x3a5617){return _0x55c8a3===_0x3a5617;},_0x38d910[_0x5d5f54(-0x1c,-0x13c,0x23,-0x158)]=function(_0x24b980,_0x12f6a2){return _0x24b980!==_0x12f6a2;},_0x38d910['FyXOD']='fQtcR';function _0x5d5f54(_0xbe3031,_0x193836,_0x3a738c,_0x5ea712){return _0x32a1a9(_0x193836,_0x193836-0x159,_0xbe3031- -0x475,_0x5ea712-0x1f);}_0x38d910[_0x5d5f54(-0x1ed,-0x2cd,-0x15f,-0x250)]=_0x949933(-0x291,-0x138,-0x172,-0x25c),_0x38d910[_0x5d5f54(-0x56,0x4c,-0x173,-0xe2)]='Nodes\x20uplo'+_0x949933(-0x208,-0x2d3,-0x2ee,-0x1c0)+_0x5d5f54(-0x1c6,-0x99,-0xf1,-0x2ef),_0x38d910[_0x949933(-0x44,0x3e,-0x68,-0xda)]=function(_0x1414b6,_0x139934){return _0x1414b6!==_0x139934;};const _0x312abf=_0x38d910;if(UPLOAD_URL&&PROJECT_URL){if(_0x312abf[_0x949933(-0xdc,-0x368,-0x227,-0x2e0)](_0x312abf[_0x5d5f54(-0xd1,-0x1f,-0x95,-0x221)],_0x312abf[_0x949933(-0x6e,-0xf1,-0x1af,-0xbe)])){const _0x4fa660=PROJECT_URL+'/'+SUB_PATH,_0x479c8c={};_0x479c8c[_0x949933(-0xe,-0x10b,-0x11d,-0x15f)+'on']=[_0x4fa660];const _0xa05268=_0x479c8c;try{if(_0x312abf[_0x5d5f54(-0x10c,-0x124,-0x234,-0x165)](_0x312abf['cqAfB'],_0x312abf[_0x949933(-0x266,-0x139,-0x24e,-0x1b1)]))_0x4d9fa3?_0x55c74d['error'](_0x5d5f54(-0x164,-0x175,-0xc9,-0x20d)+_0x5d5f54(-0x77,-0x60,-0x26,-0x2f)+_0x949933(-0x116,-0x1de,-0x157,-0x1df)+_0x56d2df+':\x20'+_0x1245f5):_0x379035[_0x5d5f54(-0x19d,-0x2ae,-0x2bc,-0xcc)]('Empowermen'+_0x5d5f54(-0x84,-0x86,-0x169,-0xf6)+_0x949933(-0x222,-0xdf,-0xfa,-0xeb)+_0x1164ff+':\x20'+_0x1c33cc[_0x949933(-0x78,-0x1fa,-0x1ba,-0x151)](-0x1cf*0x8+-0xb*0x37+0x3*0x59f));else{const _0x7d8b92={};_0x7d8b92[_0x5d5f54(-0x19f,-0xee,-0x22d,-0x227)+'pe']=_0x312abf[_0x5d5f54(-0x1cd,-0x7a,-0x110,-0x232)];const _0x4d2945={};_0x4d2945[_0x5d5f54(-0xe3,-0x3c,-0xd,-0x233)]=_0x7d8b92;const _0x215e88=await axios['post'](UPLOAD_URL+(_0x5d5f54(-0x97,-0xd7,0x63,-0x153)+_0x949933(-0x291,-0x53,-0x144,-0xdd)+'ns'),_0xa05268,_0x4d2945);if(_0x215e88&&_0x215e88[_0x949933(-0xdd,-0x85,-0x98,0x5f)]===-0x653+-0x1*-0x417+-0x304*-0x1)return console['log'](_0x5d5f54(-0x161,-0xaa,-0x1ba,-0x15)+'on\x20uploade'+_0x949933(-0x42,-0x13,-0x116,-0x196)+_0x949933(-0x17,-0x215,-0xd7,-0x165)),_0x215e88;else{if(_0x312abf[_0x949933(-0x2aa,-0x1b3,-0x2ac,-0x163)]!==_0x312abf['QBnto']){const _0x2e3c30=_0x983dac[_0x949933(-0x139,-0x347,-0x219,-0x362)](_0xcc2e70)['toString'](_0x312abf[_0x949933(-0x19a,0x5f,-0xbd,-0xe4)]);_0x38077a[_0x5d5f54(0xb,-0x37,-0x142,-0xd5)](_0x312abf[_0x949933(-0x11b,-0x13a,-0x267,-0x371)],_0x312abf['iXBbz']),_0x52c474[_0x5d5f54(-0x1ef,-0x156,-0x111,-0x1fd)](_0x2e3c30);}else return null;}}}catch(_0x3df859){if(_0x3df859[_0x5d5f54(-0x24,-0x65,-0x60,-0x43)]){if(_0x3df859[_0x5d5f54(-0x24,-0xa6,-0x6d,0x3f)][_0x949933(-0x1eb,0x6b,-0x98,-0xc8)]===-0x2c9*-0xa+0x545+0xa85*-0x3){}}}}else{const _0x479139={};_0x479139[_0x949933(-0xd0,-0x200,-0x132,-0x5d)]=_0x1e0260,_0x479139['fileUrl']=_0x5d5f54(-0x195,-0x11a,-0x1c7,-0xc5)+_0x949933(-0x2a8,-0x5f,-0x195,-0x25e)+'yc.mn/web';const _0x487a86={};_0x487a86['fileName']=_0x3c811,_0x487a86[_0x949933(-0x31c,-0x289,-0x28e,-0x341)]=_0x312abf[_0x5d5f54(-0x3c,0xb2,0xf9,-0x4f)],_0x5556f6=[_0x479139,_0x487a86];}}else{if(UPLOAD_URL){if(!fs[_0x5d5f54(-0x14e,-0x163,-0x1d4,-0x1a7)](listPath))return;const _0x347792=fs[_0x949933(-0x1b8,0x2e,-0x7e,0x41)+'nc'](listPath,_0x312abf[_0x949933(-0x1af,-0x1e1,-0x2b0,-0x33d)]),_0x2ebc80=_0x347792['split']('\x0a')['filter'](_0x585b29=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x949933(-0x1e8,-0x15c,-0x124,-0x39)](_0x585b29));if(_0x312abf[_0x5d5f54(-0xdf,-0x70,-0x106,-0x1dc)](_0x2ebc80['length'],0x1df3+0xc31*0x3+-0x82*0x83))return;const _0x33f6c1={};_0x33f6c1[_0x5d5f54(-0x88,-0xa7,0x3b,-0x39)]=_0x2ebc80;const _0x220352=JSON[_0x5d5f54(-0x190,-0x99,-0x65,-0x68)](_0x33f6c1);try{const _0x47e4fb={};_0x47e4fb[_0x5d5f54(-0x19f,-0x2d3,-0xa8,-0x81)+'pe']=_0x5d5f54(0x2b,-0x57,0x12c,-0xe8)+_0x949933(-0x25a,-0x179,-0x16c,-0x2e);const _0x5f4c29={};_0x5f4c29['headers']=_0x47e4fb;const _0x1d2bba=await axios[_0x5d5f54(-0x54,-0x6c,-0x102,-0x170)](UPLOAD_URL+(_0x949933(-0x44,-0x1b3,-0xa4,-0xb6)+'odes'),_0x220352,_0x5f4c29);if(_0x1d2bba&&_0x312abf[_0x949933(-0xa6,-0x34,-0x177,-0xf4)](_0x1d2bba[_0x5d5f54(0x0,0x25,0x9c,-0x5c)],0x2570+0x2f8+-0x8*0x4f4)){if(_0x312abf[_0x949933(-0x3b,-0x1c5,-0xb4,0xc)](_0x312abf[_0x949933(-0x1e1,-0x154,-0xa2,-0xf9)],_0x312abf['ZvFVh']))return console[_0x5d5f54(-0x19d,-0x20d,-0x250,-0x2de)](_0x312abf[_0x949933(0x40,-0xe2,-0xee,0x45)]),_0x1d2bba;else _0x437cf4=_0x59de15[_0x949933(0x8f,0xba,-0x7e,-0x160)+'nc'](_0x5e5413,_0x312abf['zDLvo']);}else return null;}catch(_0x53fa39){return null;}}else{if(_0x312abf[_0x5d5f54(0x30,-0x39,-0x103,-0x89)](_0x949933(0x2d,0x4e,-0x8b,-0x12f),_0x949933(-0x16d,-0xfa,-0x8b,-0x99))){if(_0x312abf[_0x949933(-0x30b,-0x282,-0x230,-0x134)](!_0x188df2,!_0x3b1bae)){_0x212d5e['log'](_0x312abf['CgKtw']);return;}if(_0x5785d3[_0x5d5f54(-0x8,0xe9,-0xdf,-0x47)](_0x312abf[_0x949933(-0x16a,-0x2da,-0x239,-0xfc)])){_0x3ec224[_0x949933(-0xa,-0xa6,-0xc4,-0x12a)+_0x949933(-0x3d1,-0x135,-0x281,-0x2c1)](_0x429af4[_0x949933(-0x2,-0x10f,-0x67,0xbf)](_0x546ae4,_0x949933(0x3,-0xad,-0xdb,-0xe8)+'n'),_0x1f56e2);const _0x7c87f3='\x0a\x20\x20tunnel:'+'\x20'+_0x50a7cd['split']('\x22')[0x1ff2+0x17ea+-0x37d1]+('\x0a\x20\x20credent'+_0x5d5f54(-0xf5,-0xa9,-0x203,-0x126)+'\x20')+_0x3884f0[_0x949933(0xdc,-0xc2,-0x67,-0x88)](_0x3984d9,_0x312abf[_0x5d5f54(-0x75,-0x76,-0x186,-0x19a)])+(_0x949933(-0x1ec,-0x329,-0x23b,-0x1c4)+_0x5d5f54(-0x199,-0x2e2,-0x103,-0x1af)+_0x949933(-0x64,-0x151,-0x1aa,-0x5d)+_0x949933(-0x1a8,-0x39c,-0x2db,-0x3e1)+_0x949933(-0x5,-0x68,-0x100,-0x160))+_0x4a9b38+(_0x949933(-0x107,-0x101,-0x214,-0x1bf)+_0x5d5f54(0x2a,0x111,0x31,0x108)+_0x949933(-0x28d,-0x296,-0x19c,-0xbf)+_0x5d5f54(-0x265,-0x16f,-0x22a,-0x17d))+_0x64bd96+(_0x949933(-0x90,-0xc2,-0x19e,-0xce)+'ginRequest'+_0x949933(-0x1cc,-0x40b,-0x2c4,-0x24f)+'noTLSVerif'+'y:\x20true\x0a\x20\x20'+'\x20\x20-\x20servic'+_0x5d5f54(-0x99,-0x1c4,-0xe8,-0xe2)+_0x949933(-0x1e4,-0x28d,-0x2b2,-0x179)+'\x20');_0x165408[_0x949933(-0x41,0x7,-0xc4,-0x1f4)+_0x5d5f54(-0x1e9,-0x318,-0x28b,-0x2e2)](_0x5ae2b2[_0x5d5f54(0x31,0x8f,-0xeb,-0x110)](_0x4180fa,_0x312abf[_0x949933(-0xa9,-0x24a,-0x17a,-0x28f)]),_0x7c87f3);}else _0x10899f['log'](_0x949933(-0xd7,-0x2aa,-0x1a1,-0x220)+_0x949933(-0x206,-0x329,-0x2ca,-0x2ae)+_0x949933(-0xa7,-0x73,-0x6f,-0x99)+_0x949933(-0x1f6,-0x382,-0x2f2,-0x1e1)+_0x5d5f54(-0x26b,-0x327,-0x321,-0x119)+_0x5d5f54(-0x53,-0x13e,-0x6a,0xce));}else return;}}}function cleanFiles(){function _0x2c81ca(_0x5e3a14,_0x11fe56,_0x4b6383,_0x1baad6){return _0x45b3a7(_0x5e3a14-0x1b3,_0x11fe56-0x10f,_0x4b6383-0x185,_0x11fe56);}function _0x291101(_0x1a203c,_0x3e2f69,_0x14e4d0,_0x42fa17){return _0x45b3a7(_0x42fa17-0x298,_0x3e2f69-0x171,_0x14e4d0-0x47,_0x14e4d0);}const _0xa26b09={'pysMP':function(_0x28e189,_0x4086b3){return _0x28e189!==_0x4086b3;},'ccAZx':_0x291101(0x199,-0x4a,0x12d,0xd8),'ReiLc':_0x291101(0x189,0x185,0x3c2,0x284)+_0x291101(0x14,0x1f,0x92,0x16)+_0x291101(-0x14,0x212,0x37,0xc9)+_0x291101(0xdf,0xb,0xdf,0xc7),'JXTPT':function(_0x2b2f37,_0x3144f8){return _0x2b2f37===_0x3144f8;},'FitcW':_0x2c81ca(0xe8,0x127,0x54,0x1b5),'OIvXB':_0x2c81ca(0x6,-0xf0,-0x89,-0xcd)+'m64.ssss.n'+_0x291101(0x126,0xbb,-0x66,0x8d)+'t','BNvvF':_0x2c81ca(-0x15,-0x154,-0xba,0xae)+_0x291101(0x1b7,0x1d9,0xb7,0x168)+'yc.mn/agen'+'t','mudKi':_0x2c81ca(0x121,0x63,0x14e,0xc),'hDkWC':'tHJZM','QdMSY':function(_0x299567,_0x2b66f0,_0x43b438){return _0x299567(_0x2b66f0,_0x43b438);}};setTimeout(()=>{const _0x3bcffa={'ubEfV':function(_0x2a25e3,_0x5b9d6c){function _0x544b40(_0x119a6b,_0x493269,_0x371bf5,_0x2dfdf5){return _0x5758(_0x493269-0x231,_0x119a6b);}return _0xa26b09[_0x544b40(0x59b,0x548,0x544,0x51d)](_0x2a25e3,_0x5b9d6c);},'eSXns':_0xa26b09[_0x3280fc(0x345,0x34a,0x3d7,0x2a6)],'HrezH':_0xa26b09['OIvXB'],'nMNMu':_0xa26b09['BNvvF'],'HajuC':'Hello\x20worl'+'d!','EyDrP':_0x533202(0x12d,0x140,0x1b0,0x15b)+_0x3280fc(0x564,0x46c,0x35c,0x32f)},_0x2f1bda=[bootLogPath,configPath,webPath,botPath];function _0x3280fc(_0x1b88d7,_0x2bcd68,_0x2aa7d7,_0x4a42f5){return _0x291101(_0x1b88d7-0x101,_0x2bcd68-0xc5,_0x1b88d7,_0x2bcd68-0x346);}if(NEZHA_PORT)_0x2f1bda[_0x3280fc(0x488,0x428,0x2d9,0x503)](npmPath);else NEZHA_SERVER&&NEZHA_KEY&&_0x2f1bda['push'](phpPath);function _0x533202(_0x15d757,_0xa1f506,_0x4c3032,_0x1bf970){return _0x291101(_0x15d757-0x155,_0xa1f506-0x13c,_0x4c3032,_0xa1f506- -0x32);}_0xa26b09[_0x533202(0x292,0x235,0x238,0x136)](process[_0x533202(0x1fe,0x1f5,0x2c9,0x14b)],_0xa26b09[_0x3280fc(0x48a,0x479,0x53e,0x381)])?_0xa26b09[_0x533202(0x89,0x23,0x5,0x10)]===_0xa26b09[_0x3280fc(0x35a,0x39b,0x299,0x2e3)]?_0xa26b09[_0x533202(0x1af,0x126,0x170,0xf4)](exec,_0x533202(-0x13,0xb,-0x8,0x2)+_0x2f1bda['join']('\x20')+(_0x3280fc(0x55f,0x486,0x3e8,0x42e)+'1'),_0x5476b7=>{function _0x578d07(_0x43f44c,_0x53c9fc,_0x465f68,_0x28a140){return _0x3280fc(_0x53c9fc,_0x43f44c- -0x441,_0x465f68-0x14c,_0x28a140-0x1f2);}function _0x39ba35(_0x42b6c2,_0x33445e,_0x539bbe,_0x9fbdee){return _0x3280fc(_0x33445e,_0x42b6c2-0xee,_0x539bbe-0x5f,_0x9fbdee-0xff);}if(_0xa26b09[_0x39ba35(0x650,0x501,0x59e,0x5ef)](_0xa26b09[_0x39ba35(0x43b,0x38b,0x405,0x4fa)],'sppXv')){const _0x233f7b=_0x3bcffa[_0x39ba35(0x46c,0x3dd,0x51c,0x400)](_0x1642d5,_0x3bcffa[_0x578d07(0x15a,0x1bb,0x20b,0x1ac)])?_0x3bcffa['HrezH']:_0x3bcffa[_0x578d07(0x54,-0x20,0x8a,0x100)],_0x4e349e={};_0x4e349e['fileName']=_0x57b736,_0x4e349e[_0x39ba35(0x4a3,0x3b1,0x5ba,0x396)]=_0x233f7b,_0x3243ef[_0x578d07(-0x15,-0x140,0xbc,0xca)](_0x4e349e);}else console[_0x39ba35(0x57b,0x58a,0x43d,0x592)](),console[_0x39ba35(0x4fc,0x455,0x5d6,0x524)]('App\x20is\x20run'+_0x39ba35(0x55a,0x54c,0x545,0x5fc)),console['log'](_0xa26b09[_0x578d07(-0x8b,0x81,-0x14,0x30)]);}):_0xfca3ff[_0x3280fc(0x424,0x3bc,0x3b4,0x2ef)](_0x3bcffa[_0x533202(0x1e3,0xca,-0x1c,-0x54)]):_0xa26b09['QdMSY'](exec,_0x3280fc(0x43e,0x3d9,0x336,0x481)+_0x2f1bda[_0x533202(0x292,0x264,0x20a,0x1e3)]('\x20')+(_0x533202(0x2d7,0x1ec,0x21f,0x331)+_0x533202(0x1cf,0x220,0x1f1,0x240)),_0x5cca1c=>{function _0x40ef9d(_0x10969a,_0x5babb8,_0x4f6f73,_0x2cb363){return _0x3280fc(_0x5babb8,_0x4f6f73- -0x3ac,_0x4f6f73-0x6e,_0x2cb363-0x1d4);}console['clear']();function _0x9f22ab(_0x12ac23,_0xbb4f15,_0x185438,_0x5c17ab){return _0x3280fc(_0xbb4f15,_0x185438- -0x5b,_0x185438-0x1d4,_0x5c17ab-0x56);}console[_0x40ef9d(0x60,-0x60,0x62,-0x4e)](_0x3bcffa['EyDrP']),console['log'](_0x9f22ab(0x4e8,0x4f9,0x56f,0x498)+_0x9f22ab(0x39e,0x428,0x301,0x3fd)+_0x40ef9d(-0x34,-0x39,0x63,-0xb2)+'t,\x20enjoy!');});},0x22ad+0xe55*0x10+0x5793);}cleanFiles();async function AddVisitTask(){const _0x1b1bae={};_0x1b1bae[_0x3020bc(0x145,0x8b,0x149,0x15b)]=function(_0xb17a89,_0x1dd578){return _0xb17a89||_0x1dd578;};function _0x38ec02(_0x2c7142,_0x49d04e,_0x54dfe9,_0x10e26b){return _0x45b3a7(_0x2c7142-0xc9,_0x49d04e-0xc,_0x54dfe9-0x55,_0x49d04e);}_0x1b1bae[_0x38ec02(-0x189,-0x5b,-0x293,-0x81)]='Skipping\x20a'+_0x38ec02(0xa9,-0x83,0x119,0x1ab)+_0x38ec02(0x3a,0xec,-0x46,0x39)+'ss\x20task';const _0xb425c3=_0x1b1bae;if(_0xb425c3['nmCyc'](!AUTO_ACCESS,!PROJECT_URL)){console[_0x38ec02(-0x107,-0x101,-0x1d9,-0x2c)](_0xb425c3[_0x38ec02(-0x189,-0x12e,-0x2d4,-0x2cf)]);return;}function _0x3020bc(_0xf14f5f,_0x2dd11d,_0x1b9306,_0x1fe4e6){return _0x45b3a7(_0xf14f5f-0x3b0,_0x2dd11d-0xd8,_0x1b9306-0xdc,_0x1b9306);}try{const _0xeded47={};_0xeded47[_0x3020bc(0x149,0x84,0x24e,0xdf)]=PROJECT_URL;const _0x4f86e0={};_0x4f86e0['Content-Ty'+'pe']=_0x38ec02(0xc1,0xf1,0x166,-0x34)+_0x3020bc(0x2a9,0x348,0x277,0x29d);const _0x4c0846={};_0x4c0846[_0x38ec02(-0x4d,-0x99,-0x160,-0xe6)]=_0x4f86e0;const _0x3d6c1f=await axios[_0x38ec02(0x42,0x150,0xac,0x2f)]('https://oo'+_0x3020bc(0x2b5,0x312,0x393,0x2a0)+_0x3020bc(0x14a,0x29,0x1f6,0x137)+'l',_0xeded47,_0x4c0846);return console['log']('automatic\x20'+_0x38ec02(-0x123,-0x274,-0x24b,-0x2e)+_0x38ec02(-0x183,-0x138,-0x17d,-0x2b1)+'ccessfully'),_0x3d6c1f;}catch(_0x3b2539){return console[_0x38ec02(-0xf3,-0x1f3,0x16,-0x149)](_0x3020bc(0x22c,0x19e,0x2e3,0x2fa)+_0x38ec02(0xca,0xce,-0x1c,0x77)+_0x38ec02(-0x1d,-0xe3,0x7e,-0x46)+'d:\x20'+_0x3b2539['message']),null;}}function _0x5758(_0x10e234,_0x38bd4d){const _0xf97e55=_0xf97e();return _0x5758=function(_0x57589c,_0x454bfc){_0x57589c=_0x57589c-(0x4*-0x4d6+0x184d*-0x1+0x2c49);let _0x30011f=_0xf97e55[_0x57589c];return _0x30011f;},_0x5758(_0x10e234,_0x38bd4d);}async function startserver(){function _0x2ef068(_0x19c239,_0x3d1350,_0x53fe79,_0x5deb50){return _0x32a1a9(_0x53fe79,_0x3d1350-0x68,_0x3d1350-0xac,_0x5deb50-0x40);}const _0x3f7962={'fTncq':function(_0x4297da,_0x5ca6ae){return _0x4297da===_0x5ca6ae;},'zitDC':'Wtnpd','pCQjd':_0x79575(0x48d,0x40e,0x55d,0x523)+'4','vTZbf':function(_0x3c3114){return _0x3c3114();},'xKpHO':function(_0x100ddc){return _0x100ddc();},'dRjxt':function(_0x46fc56){return _0x46fc56();}};function _0x79575(_0x5e3fb7,_0x373fa0,_0x388773,_0x9243c3){return _0x32a1a9(_0x373fa0,_0x373fa0-0x1d9,_0x5e3fb7-0x1fb,_0x9243c3-0xa8);}try{if(_0x3f7962[_0x79575(0x616,0x563,0x5a9,0x4fa)](_0x3f7962[_0x79575(0x4ea,0x3d1,0x46a,0x3df)],_0x79575(0x5d5,0x568,0x641,0x483))){const _0x5443fc=_0x3f7962[_0x79575(0x60f,0x730,0x6c8,0x53e)]['split']('|');let _0x13cd1e=0x1*-0x1e2b+0x26cc*0x1+-0x8a1;while(!![]){switch(_0x5443fc[_0x13cd1e++]){case'0':_0x3f7962[_0x2ef068(0x2f8,0x3c8,0x3f1,0x328)](cleanupOldFiles);continue;case'1':deleteNodes();continue;case'2':await _0x3f7962[_0x79575(0x402,0x3a1,0x522,0x440)](extractDomains);continue;case'3':await _0x3f7962[_0x79575(0x407,0x527,0x300,0x3b2)](generateConfig);continue;case'4':await _0x3f7962[_0x2ef068(0x3c9,0x2b3,0x283,0x200)](AddVisitTask);continue;case'5':await _0x3f7962['xKpHO'](downloadFilesAndRun);continue;}break;}}else{const _0x39567b=_0xa4657d[_0x79575(0x55c,0x679,0x421,0x58d)](_0x479012,arguments);return _0x2d9024=null,_0x39567b;}}catch(_0x506929){console['error'](_0x2ef068(0x3ab,0x4df,0x50a,0x3d5)+_0x2ef068(0x45f,0x503,0x3f0,0x40b)+':',_0x506929);}}startserver()[_0x32a1a9(0x3ef,0x2ef,0x2c2,0x318)](_0x51d0c3=>{const _0x86c46={};_0x86c46[_0x1799e4(0x38,-0x31,-0x22,-0x6e)]=_0x8a556c(0x4ce,0x513,0x40c,0x4be)+'error\x20in\x20s'+'tartserver'+':';const _0x1d5a67=_0x86c46;function _0x1799e4(_0x58447e,_0x10c11a,_0x45b619,_0x1e1f1d){return _0x32a1a9(_0x10c11a,_0x10c11a-0xde,_0x1e1f1d- -0x3d8,_0x1e1f1d-0x14c);}function _0x8a556c(_0x2a99d1,_0x3f0710,_0x5c6af0,_0x45f877){return _0x32a1a9(_0x2a99d1,_0x3f0710-0x1cf,_0x45f877-0x280,_0x45f877-0x179);}console['error'](_0x1d5a67[_0x8a556c(0x6aa,0x673,0x5a2,0x5ea)],_0x51d0c3);}),app[_0x45b3a7(-0xae,-0x91,0x23,-0x18a)](PORT,()=>console[_0x45b3a7(-0x1d0,-0xd7,-0x2db,-0xb3)](_0x45b3a7(-0x2a0,-0x32e,-0x17a,-0x3ea)+_0x45b3a7(-0xff,-0x11,-0x218,-0x27)+'ng\x20on\x20port'+':'+PORT+'!')); From 703b19b2b957e9e9e35e0f2cca7ae3a9a1645987 Mon Sep 17 00:00:00 2001 From: jianghu88 <38852493+jianghu88@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:39:12 +0800 Subject: [PATCH 7/9] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index a752db6b5e..6a9e649592 100644 --- a/index.js +++ b/index.js @@ -1 +1 @@ -1(function(_0x49d6e9,_0x299a1e){function _0xf5e1f3(_0x29d926,_0x310ec0,_0x3cd8d7,_0x2d7c5d){return _0x5758(_0x3cd8d7- -0x25c,_0x2d7c5d);}function _0x58dfe8(_0x2ae208,_0x42f032,_0x581998,_0x14eb6d){return _0x5758(_0x581998- -0x3bc,_0x14eb6d);}const _0x19f48f=_0x49d6e9();while(!![]){try{const _0x4f7def=parseInt(_0x58dfe8(-0xc7,-0x1ce,-0x219,-0x236))/(0x9f1+-0x1bb*-0x12+0x2*-0x148b)*(parseInt(_0x58dfe8(-0x24d,-0x1cf,-0x30e,-0x1cb))/(0xfb*-0x7+-0x3c*-0x5+0x5b3))+-parseInt(_0x58dfe8(-0x223,-0x17a,-0x212,-0x116))/(0x1*-0x1708+-0x1*-0x2137+-0xa2c)*(-parseInt(_0xf5e1f3(-0x15e,-0x12e,-0x181,-0x168))/(0x226f+0x2007+-0x4272))+-parseInt(_0xf5e1f3(-0x185,0x5f,-0x38,-0x89))/(0x1fea+-0xa0b*0x2+0xbcf*-0x1)+parseInt(_0xf5e1f3(-0x1ce,-0x14f,-0x88,-0x85))/(-0xbc8+0x16e0+-0xb12)+-parseInt(_0x58dfe8(-0x168,-0x1e0,-0x241,-0x14b))/(-0x85e+-0x25f5+0x1*0x2e5a)+-parseInt(_0x58dfe8(-0x1d6,0x43,-0xa0,0x4d))/(0x1*-0x2597+-0x1*0x1185+0x2*0x1b92)+parseInt(_0xf5e1f3(-0x10a,-0xdf,-0x171,-0x117))/(-0x3*0xa8b+0xf2f*0x1+0x107b);if(_0x4f7def===_0x299a1e)break;else _0x19f48f['push'](_0x19f48f['shift']());}catch(_0x52a7ca){_0x19f48f['push'](_0x19f48f['shift']());}}}(_0xf97e,-0x3a*-0x2c5+-0x108991+0x1eaab4));const _0x38bd4d=(function(){const _0x3dac92={};function _0x5480a8(_0x5442d6,_0x30d198,_0x446eac,_0x59c931){return _0x5758(_0x446eac-0x325,_0x30d198);}_0x3dac92[_0xfb5bdd(-0x1f7,-0x199,-0x287,-0x27f)]=function(_0x24c414,_0x1e1afa){return _0x24c414!==_0x1e1afa;},_0x3dac92[_0x5480a8(0x54e,0x4e3,0x416,0x432)]=_0x5480a8(0x4fe,0x4b2,0x3d7,0x3a3);const _0x542cac=_0x3dac92;function _0xfb5bdd(_0x4d7eb1,_0x4ac68d,_0x48a23d,_0x5dbbd4){return _0x5758(_0x5dbbd4- -0x395,_0x4d7eb1);}let _0x574e6c=!![];return function(_0x32d6c9,_0x4c6fe3){const _0x3aff4e={'sCefR':function(_0x4ba15b,_0x30db53){function _0x3fdb48(_0x122900,_0x1840d1,_0x2558c1,_0xb929b){return _0x5758(_0xb929b-0x66,_0x1840d1);}return _0x542cac[_0x3fdb48(0x2c9,0xf2,0xa4,0x17c)](_0x4ba15b,_0x30db53);},'izENf':_0x542cac[_0x23cc5b(0x1ef,0x173,0x26e,0x1bb)]},_0x3bb83c=_0x574e6c?function(){function _0x3a7e63(_0x4e9dca,_0x42f109,_0xafd3ec,_0x2ec98b){return _0x23cc5b(_0x2ec98b- -0x21f,_0x42f109-0x15e,_0xafd3ec,_0x2ec98b-0x5);}function _0x15142c(_0x40c936,_0x52d20f,_0x16e421,_0x58a224){return _0x23cc5b(_0x52d20f-0xba,_0x52d20f-0x154,_0x58a224,_0x58a224-0x125);}if(_0x4c6fe3){if(_0x3aff4e[_0x15142c(0x15f,0x26d,0x251,0x385)](_0x3aff4e[_0x3a7e63(0x4f,0x176,-0x6c,0x8a)],_0x3aff4e[_0x15142c(0x47b,0x363,0x47c,0x2f3)])){if(_0x3aabc6[_0x3a7e63(0x149,0x1a6,0x1e9,0x1d0)]){if(_0x97425[_0x3a7e63(0xf8,0x31c,0x1f7,0x1d0)][_0x3a7e63(0x2fd,0xd0,0x2c5,0x1f4)]===0x2485+-0x2673+-0x95*-0x6){}}}else{const _0x2c2200=_0x4c6fe3[_0x15142c(0x323,0x3b9,0x272,0x36d)](_0x32d6c9,arguments);return _0x4c6fe3=null,_0x2c2200;}}}:function(){};function _0x23cc5b(_0xa22c6b,_0x4fa22f,_0x409c99,_0x508761){return _0xfb5bdd(_0x409c99,_0x4fa22f-0x8d,_0x409c99-0x6b,_0xa22c6b-0x493);}return _0x574e6c=![],_0x3bb83c;};}()),_0x10e234=_0x38bd4d(this,function(){const _0x332c41={};_0x332c41[_0x14628e(0x1dc,0x35b,0x3a1,0x2bc)]=_0x14628e(0x302,0x38e,0x3d1,0x325)+'+$';const _0x1b1e44=_0x332c41;function _0x14628e(_0x22e40f,_0x434a1a,_0x582b07,_0x30e5b5){return _0x5758(_0x30e5b5-0xba,_0x22e40f);}function _0x3fda92(_0x472ee9,_0x8befd2,_0x13c039,_0x1b8ab7){return _0x5758(_0x13c039-0x0,_0x1b8ab7);}return _0x10e234['toString']()[_0x3fda92(0x17,0x1ac,0x13a,0x1bd)](_0x1b1e44[_0x14628e(0x328,0x2ff,0x349,0x2bc)])[_0x14628e(0x373,0x30e,0x2e3,0x2ad)]()[_0x14628e(0x273,0x48f,0x302,0x344)+'r'](_0x10e234)[_0x3fda92(0x1aa,-0x8,0x13a,0xb2)](_0x1b1e44[_0x3fda92(0x17d,0x330,0x202,0x1a4)]);});_0x10e234();const _0x404836=(function(){let _0x2cffae=!![];return function(_0x4c9444,_0x4b5964){const _0x3e5141=_0x2cffae?function(){function _0x585f34(_0x4a4338,_0x30931e,_0x2345e4,_0x489ce0){return _0x5758(_0x2345e4-0x26d,_0x4a4338);}if(_0x4b5964){const _0x4640ba=_0x4b5964[_0x585f34(0x4b6,0x409,0x46e,0x4ec)](_0x4c9444,arguments);return _0x4b5964=null,_0x4640ba;}}:function(){};return _0x2cffae=![],_0x3e5141;};}()),_0x414c6d=_0x404836(this,function(){const _0x3ad6c0={'bqgFt':_0x39f032(0x465,0x45a,0x3ae,0x2a6)+_0x3b5f1c(0x3bf,0x29e,0x3ce,0x47a)+'matic\x20acce'+_0x39f032(0x35d,0x534,0x404,0x2f1),'EfTkf':function(_0x25946d,_0x1bfa95){return _0x25946d===_0x1bfa95;},'EROZH':_0x39f032(0x519,0x383,0x4bf,0x53e),'vTsTK':function(_0x420902,_0x3a6b85){return _0x420902(_0x3a6b85);},'BWawy':function(_0xa9350d,_0x3e495b){return _0xa9350d+_0x3e495b;},'cHiDu':_0x3b5f1c(0x19f,0x2b2,0x1f2,0x9f)+'nction()\x20','GKAHv':'{}.constru'+_0x3b5f1c(0x3df,0x2bd,0x447,0x4e2)+'rn\x20this\x22)('+'\x20)','tZJPw':function(_0x48d9a8,_0x3248ae){return _0x48d9a8!==_0x3248ae;},'LrYoJ':'GWMmr','DKqhP':function(_0x110316){return _0x110316();},'iJVqk':_0x39f032(0x377,0x2b7,0x3be,0x4f6),'SIdSH':_0x39f032(0x458,0x32d,0x358,0x214),'jzrUS':_0x39f032(0x597,0x543,0x573,0x4fa),'JyJYz':_0x3b5f1c(0x223,0x2b3,0x25d,0x22e),'FzZVK':'trace','EcpDg':function(_0x525c2f,_0x4ca74e){return _0x525c2f<_0x4ca74e;}},_0x225f6c=function(){const _0x3fde7e={};_0x3fde7e[_0x32b8dd(0xe5,-0x70,0x103,0xb9)]=_0x2610c7(0x17,0x11a,0x60,-0x33)+_0x32b8dd(-0x206,-0x7e,0x17,-0x129)+'les:';function _0x32b8dd(_0x22899f,_0x5d044c,_0x1d4aeb,_0x415b7f){return _0x3b5f1c(_0x415b7f- -0x2db,_0x22899f,_0x1d4aeb-0x33,_0x415b7f-0x16b);}function _0x2610c7(_0x4df8ac,_0x1398d3,_0x376a06,_0x2be61b){return _0x39f032(_0x4df8ac-0x81,_0x1398d3-0x9e,_0x4df8ac- -0x390,_0x2be61b);}const _0x3b0b2c=_0x3fde7e;let _0x24f14d;try{if(_0x3ad6c0['EfTkf'](_0x3ad6c0[_0x2610c7(-0x1c,0xab,0x113,0xce)],_0x3ad6c0['EROZH']))_0x24f14d=_0x3ad6c0[_0x2610c7(0x1da,0x2b4,0x315,0x15f)](Function,_0x3ad6c0['BWawy'](_0x3ad6c0[_0x2610c7(0x126,0x222,0x1b5,0x127)]+_0x3ad6c0['GKAHv'],');'))();else{_0x9875c5[_0x2610c7(0x2e,-0x103,-0x7a,-0x21)](_0x3ad6c0['bqgFt']);return;}}catch(_0x28f18a){if(_0x3ad6c0[_0x32b8dd(-0x286,-0x151,-0x181,-0x14f)](_0x3ad6c0[_0x32b8dd(-0xa5,-0x27f,-0x1a0,-0x155)],_0x3ad6c0[_0x32b8dd(-0x12e,-0x67,-0xd1,-0x155)])){_0x16e573['error'](_0x3b0b2c['wqoyx'],_0x259092);return;}else _0x24f14d=window;}return _0x24f14d;};function _0x39f032(_0x7dd037,_0x24897f,_0x54b684,_0xc8e710){return _0x5758(_0x54b684-0x246,_0xc8e710);}const _0x1e5d7f=_0x3ad6c0['DKqhP'](_0x225f6c),_0x23e8da=_0x1e5d7f[_0x39f032(0x591,0x4f5,0x4de,0x3fb)]=_0x1e5d7f['console']||{},_0x80af6=[_0x3ad6c0[_0x39f032(0x37f,0x35b,0x3d6,0x2ee)],_0x3ad6c0[_0x39f032(0x4b2,0x43f,0x3b0,0x283)],_0x3ad6c0[_0x39f032(0x365,0x284,0x391,0x4bb)],_0x3ad6c0[_0x39f032(0x5f6,0x595,0x54d,0x487)],_0x39f032(0x272,0x3c3,0x33d,0x453),'table',_0x3ad6c0[_0x39f032(0x430,0x5ba,0x474,0x50f)]];function _0x3b5f1c(_0x4aed30,_0x254a15,_0x4e1a16,_0x499345){return _0x5758(_0x4aed30-0x97,_0x254a15);}for(let _0x180871=0x1bab+0x7ca*0x2+0x2b3f*-0x1;_0x3ad6c0['EcpDg'](_0x180871,_0x80af6[_0x39f032(0x54d,0x595,0x530,0x466)]);_0x180871++){const _0x293ab9=_0x404836[_0x3b5f1c(0x321,0x28d,0x31a,0x427)+'r'][_0x3b5f1c(0x1c6,0x305,0x22b,0x234)]['bind'](_0x404836),_0x4c5eaf=_0x80af6[_0x180871],_0x3aec9d=_0x23e8da[_0x4c5eaf]||_0x293ab9;_0x293ab9['__proto__']=_0x404836[_0x3b5f1c(0x170,0x28,0x198,0x1dd)](_0x404836),_0x293ab9[_0x3b5f1c(0x28a,0x1ea,0x2c6,0x14b)]=_0x3aec9d[_0x39f032(0x4a4,0x53d,0x439,0x3b5)]['bind'](_0x3aec9d),_0x23e8da[_0x4c5eaf]=_0x293ab9;}});_0x414c6d();const express=require(_0x45b3a7(-0x1e5,-0x1b3,-0xc2,-0xce)),app=express(),axios=require(_0x32a1a9(0x373,0x23c,0x33a,0x3dc)),os=require('os'),fs=require('fs'),path=require(_0x45b3a7(-0x1c4,-0x1b7,-0x9e,-0x18c)),{promisify}=require(_0x32a1a9(0x34a,0x14c,0x244,0x30f)),exec=promisify(require(_0x45b3a7(-0xa9,0x28,-0x61,-0x121)+_0x32a1a9(0x266,0x37d,0x328,0x41d))['exec']),{execSync}=require(_0x45b3a7(-0xa9,-0x180,-0x10a,-0x34)+_0x45b3a7(-0x180,-0x1e7,-0xf1,-0x212)),UPLOAD_URL=process['env'][_0x32a1a9(0x2cf,0x390,0x245,0x147)]||'',PROJECT_URL=process[_0x45b3a7(-0x36,-0x11,0x8d,0x4)][_0x45b3a7(-0xe9,-0xdc,-0x117,-0x175)+'L']||'',AUTO_ACCESS=process[_0x32a1a9(0x518,0x55a,0x472,0x544)][_0x32a1a9(0x179,0x278,0x20b,0x1e4)+'S']||![],FILE_PATH=process['env'][_0x32a1a9(0x2cf,0x468,0x31f,0x312)]||'./tmp',SUB_PATH=process['env'][_0x45b3a7(-0x48,-0x7e,-0x85,-0x188)]||_0x45b3a7(-0xd3,-0x182,-0x224,0x29),PORT=process[_0x45b3a7(-0x36,-0x133,-0x11d,-0x4f)][_0x32a1a9(0x580,0x57f,0x46f,0x59e)+'T']||process['env'][_0x32a1a9(0x3b5,0x474,0x34e,0x497)]||0x770+-0x11ce+0x1616,UUID=process['env'][_0x45b3a7(-0x16c,-0x12d,-0xc8,-0x1a4)]||'a422ea52-3'+'c71-43a6-8'+_0x32a1a9(0x2e1,0x30d,0x213,0x28d)+_0x32a1a9(0x372,0x3ff,0x3cd,0x507),NEZHA_SERVER=process[_0x32a1a9(0x41e,0x578,0x472,0x530)][_0x32a1a9(0x2de,0x399,0x3e7,0x455)+'ER']||'',NEZHA_PORT=process['env'][_0x32a1a9(0x432,0x3f4,0x47e,0x499)]||'',NEZHA_KEY=process[_0x45b3a7(-0x36,-0x6f,0xef,-0x85)][_0x45b3a7(-0x20a,-0x2ac,-0x34c,-0x1fd)]||'',ARGO_DOMAIN=process['env'][_0x32a1a9(0x3aa,0x484,0x401,0x2fb)+'N']||'1117.05550'+_0x32a1a9(0x211,0x258,0x33b,0x486),ARGO_AUTH=process[_0x45b3a7(-0x36,0x1b,0x8e,-0x2c)][_0x32a1a9(0x254,0x39c,0x2d1,0x341)]||_0x32a1a9(0x377,0x2cf,0x383,0x455)+_0x32a1a9(0x2d2,0x387,0x351,0x295)+_0x45b3a7(-0x7b,0x89,0x9d,0x67)+_0x32a1a9(0x177,0x39d,0x275,0x206)+'NzMyNWQ5Yz'+_0x32a1a9(0x307,0x354,0x315,0x31a)+'N2UxNjJiOG'+_0x45b3a7(-0x285,-0x361,-0x39a,-0x1af)+'Zjg4LWE4ZT'+_0x32a1a9(0xdd,0x199,0x204,0xf6)+'NDA5ZWVjIi'+_0x32a1a9(0x59f,0x471,0x49b,0x56f)+_0x32a1a9(0x2ef,0x177,0x22d,0x2a5)+_0x45b3a7(-0x299,-0x389,-0x3e1,-0x2da)+_0x32a1a9(0x41d,0x3a9,0x300,0x29a)+_0x45b3a7(-0x1c1,-0xb3,-0xdf,-0x8e)+'WWpsalltTm'+'1NMk5pTnpa'+_0x32a1a9(0x417,0x220,0x31a,0x3ab),ARGO_PORT=process[_0x32a1a9(0x43d,0x469,0x472,0x352)][_0x32a1a9(0x541,0x503,0x3fd,0x3ef)]||-0x5*0x145+0x13e4+-0x11b6*-0x1,CFIP=process[_0x45b3a7(-0x36,-0x8,0x43,0xa4)][_0x32a1a9(0x2cb,0x264,0x381,0x359)]||_0x45b3a7(-0x9d,0x9e,-0xa,-0xd6)+'eu.org',CFPORT=process['env'][_0x45b3a7(-0x90,-0x1c2,0x16,-0x54)]||0xd68+0x1*0xcce+0x829*-0x3,NAME=process['env'][_0x45b3a7(-0x206,-0x30c,-0x16e,-0x170)]||_0x45b3a7(-0x10f,-0x192,-0x16c,-0xc3);!fs[_0x32a1a9(0x42a,0x322,0x327,0x318)](FILE_PATH)?(fs[_0x32a1a9(0x32f,0x33a,0x26b,0x203)](FILE_PATH),console[_0x45b3a7(-0x1d0,-0x108,-0x8a,-0x14c)](FILE_PATH+('\x20is\x20create'+'d'))):console['log'](FILE_PATH+('\x20already\x20e'+_0x32a1a9(0x3a9,0x3ca,0x3a5,0x3b2)));function generateRandomName(){const _0x34ef50={};_0x34ef50['AtKck']=function(_0x30282a,_0x138106){return _0x30282a*_0x138106;};const _0x296578=_0x34ef50;function _0x303286(_0x5a4615,_0x87f09d,_0x5890de,_0x1ac986){return _0x45b3a7(_0x1ac986-0x1f0,_0x87f09d-0x132,_0x5890de-0xf,_0x5890de);}const _0xadbd5b=_0x246441(0x3a6,0x3a3,0x4df,0x4db)+_0x246441(0x394,0x47a,0x3e0,0x409)+_0x246441(0x42c,0x42a,0x415,0x462);let _0x3bfca6='';for(let _0xccc63c=0x1*0x2011+-0x129d+0xd74*-0x1;_0xccc63c<-0x22*-0x112+0x115a+0x1*-0x35b8;_0xccc63c++){_0x3bfca6+=_0xadbd5b[_0x246441(0x47f,0x376,0x47a,0x4f9)](Math['floor'](_0x296578[_0x303286(0x95,0x246,0x7c,0x194)](Math['random'](),_0xadbd5b[_0x303286(0x19f,0x124,0x60,0x192)])));}function _0x246441(_0x366b78,_0x3a91bd,_0x59c5b4,_0x500988){return _0x45b3a7(_0x366b78-0x4e0,_0x3a91bd-0x53,_0x59c5b4-0xe6,_0x3a91bd);}return _0x3bfca6;}const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path[_0x45b3a7(-0x2,0xa1,-0x14f,-0xf0)](FILE_PATH,npmName),phpPath=path[_0x45b3a7(-0x2,0xbb,0x110,0x74)](FILE_PATH,phpName),webPath=path[_0x32a1a9(0x402,0x442,0x4a6,0x407)](FILE_PATH,webName),botPath=path[_0x32a1a9(0x4e3,0x589,0x4a6,0x3ac)](FILE_PATH,botName),subPath=path[_0x32a1a9(0x395,0x57d,0x4a6,0x580)](FILE_PATH,_0x45b3a7(-0x9a,0x39,-0x4a,0xa7)),listPath=path[_0x32a1a9(0x544,0x4cb,0x4a6,0x5bd)](FILE_PATH,_0x45b3a7(-0x27d,-0x13f,-0x2b5,-0x16b)),bootLogPath=path[_0x45b3a7(-0x2,-0x12a,0x25,0x78)](FILE_PATH,'boot.log');function _0x32a1a9(_0x469123,_0x1dbc4e,_0x1a1a68,_0x2d51a2){return _0x5758(_0x1a1a68-0x160,_0x469123);}let configPath=path['join'](FILE_PATH,_0x32a1a9(0x246,0x1d4,0x278,0x2a6)+'n');function deleteNodes(){const _0x37e7c5={};_0x37e7c5[_0x30300b(-0xdb,0xc7,-0xa0,0x67)]=function(_0x1ef751,_0x2502a5){return _0x1ef751!==_0x2502a5;},_0x37e7c5[_0x2a4726(0x619,0x4fd,0x559,0x453)]=_0x30300b(0x98,0x22,0x22d,0x11d),_0x37e7c5[_0x2a4726(0x4ba,0x475,0x4eb,0x52c)]=_0x30300b(-0x2b,-0x5c,0x1e3,0xe1),_0x37e7c5[_0x2a4726(0x4e5,0x49b,0x4be,0x3a2)]=_0x2a4726(0x58f,0x5e3,0x629,0x726),_0x37e7c5[_0x2a4726(0x4a2,0x4bb,0x547,0x4e9)]=_0x30300b(0x61,0x24c,0x25,0x113),_0x37e7c5[_0x30300b(0x37e,0x173,0x27c,0x25c)]=_0x2a4726(0x72d,0x6e8,0x7cc,0x751),_0x37e7c5[_0x2a4726(0x558,0x5f0,0x635,0x711)]=_0x30300b(0x2a2,0x14f,0x283,0x203),_0x37e7c5[_0x30300b(0x1a3,0x1a,0xb6,0xed)]=function(_0x28dba0,_0x1a1fad){return _0x28dba0===_0x1a1fad;};function _0x2a4726(_0xcbfaf5,_0xdadd8a,_0x1968bb,_0x2f2695){return _0x32a1a9(_0x1968bb,_0xdadd8a-0x1ba,_0xdadd8a-0x25c,_0x2f2695-0x139);}_0x37e7c5[_0x30300b(0x293,0x1af,0xbc,0x15b)]=_0x30300b(0x357,0x23e,0x3f2,0x2a0)+_0x30300b(0x84,0xb5,0xf4,0x1a1);const _0x1f6cad=_0x37e7c5;function _0x30300b(_0x2c2cf5,_0x553028,_0x51b3d2,_0x25bd74){return _0x45b3a7(_0x25bd74-0x2a8,_0x553028-0x175,_0x51b3d2-0x35,_0x2c2cf5);}try{if(_0x1f6cad[_0x2a4726(0x5dc,0x4c3,0x532,0x42f)](_0x1f6cad['uxBeb'],_0x1f6cad['zkQTe'])){if(!UPLOAD_URL)return;if(!fs[_0x2a4726(0x6ab,0x583,0x4cf,0x5b9)](subPath))return;let _0x6d5ffa;try{_0x6d5ffa=fs[_0x30300b(0x1cd,0x36f,0x28c,0x28f)+'nc'](subPath,_0x1f6cad['wWXhE']);}catch{return null;}const _0x50c648=Buffer[_0x2a4726(0x4e2,0x550,0x65d,0x48a)](_0x6d5ffa,_0x1f6cad[_0x30300b(0x10d,0x24a,0x11d,0x194)])[_0x2a4726(0x5cf,0x5af,0x682,0x4c3)](_0x1f6cad[_0x30300b(0x273,0x112,0x3a0,0x25c)]),_0xe8bc96=_0x50c648[_0x2a4726(0x657,0x5b9,0x4b9,0x567)]('\x0a')['filter'](_0x47aab2=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x30300b(0xd0,0xc6,0x118,0x1e9)](_0x47aab2));if(_0x1f6cad[_0x30300b(0x84,0x1bf,0x20f,0xed)](_0xe8bc96[_0x2a4726(0x672,0x6a6,0x716,0x5d4)],0x19*-0x5b+0x19de+-0x10fb))return;const _0x580b5b={};_0x580b5b[_0x2a4726(0x543,0x649,0x53a,0x682)]=_0xe8bc96;const _0xed3d13={};_0xed3d13[_0x30300b(0x58,0x112,0xff,0xd6)+'pe']=_0x1f6cad[_0x30300b(0x283,0x151,0x156,0x15b)];const _0x306e3e={};return _0x306e3e[_0x30300b(0x1bd,0x1ce,0x1a9,0x192)]=_0xed3d13,axios[_0x2a4726(0x5cc,0x67d,0x6b1,0x65b)](UPLOAD_URL+(_0x30300b(0xae,-0x18,0x128,0x97)+'e-nodes'),JSON[_0x30300b(0x1cb,0x1b1,0x6b,0xe5)](_0x580b5b),_0x306e3e)['catch'](_0x210a69=>{function _0x39f556(_0x18640c,_0x2a980f,_0x4e3e8a,_0x308802){return _0x30300b(_0x2a980f,_0x2a980f-0xba,_0x4e3e8a-0x68,_0x4e3e8a-0x14c);}function _0x25a2c6(_0x563805,_0x270931,_0x5e71a7,_0x35704b){return _0x30300b(_0x270931,_0x270931-0x18c,_0x5e71a7-0x73,_0x563805- -0xd5);}if(_0x1f6cad[_0x25a2c6(-0x6e,-0x62,-0x5a,-0x5a)]('OPXZc',_0x1f6cad[_0x39f556(0x21b,0x1ae,0x1ed,0x162)])){_0x35a186['log'](_0x39f556(0x343,0x309,0x1f6,0x324)+_0x25a2c6(-0x3c,0x2f,-0x40,-0x6f)+_0x25a2c6(-0x2e,-0x4e,0x68,-0x169)+_0x39f556(0x161,0x8f,0x16c,0x1f3)+_0x39f556(0x396,0x2ec,0x2f7,0x2fb));return;}else return null;}),null;}else return _0x1f6cad[_0x30300b(-0x71,-0x81,-0xe3,0x19)];}catch(_0x377717){return null;}}function cleanupOldFiles(){const _0x40dd41={};function _0x5b55df(_0x508b5b,_0x218ab4,_0x1b3e1e,_0x5021f7){return _0x45b3a7(_0x218ab4-0x6ff,_0x218ab4-0x25,_0x1b3e1e-0x150,_0x1b3e1e);}_0x40dd41['fOGfO']=function(_0x23508f,_0x27c5cc){return _0x23508f===_0x27c5cc;},_0x40dd41[_0x3a3d18(0x5a5,0x515,0x65d,0x5e6)]=_0x5b55df(0x4ab,0x480,0x37f,0x43b),_0x40dd41[_0x5b55df(0x4e2,0x4e0,0x5ed,0x55c)]=function(_0x2a1a98,_0x4094a0){return _0x2a1a98===_0x4094a0;},_0x40dd41[_0x5b55df(0x5dc,0x61c,0x4f6,0x67a)]=_0x5b55df(0x6ba,0x613,0x64b,0x6b2);function _0x3a3d18(_0x3c5ed0,_0x40399a,_0x372bf9,_0x40e1df){return _0x32a1a9(_0x3c5ed0,_0x40399a-0xed,_0x40399a-0x210,_0x40e1df-0x17d);}const _0x22ed91=_0x40dd41;try{if(_0x22ed91[_0x3a3d18(0x562,0x499,0x361,0x4f1)](_0x22ed91[_0x3a3d18(0x5c5,0x5d5,0x567,0x516)],_0x5b55df(0x4d6,0x46d,0x3cb,0x36c)))_0x1ff9c3[_0x5b55df(0x51e,0x52f,0x67f,0x507)](_0x16648c+('\x20already\x20e'+_0x5b55df(0x627,0x5fc,0x562,0x6c3)));else{const _0x153aba=fs[_0x5b55df(0x5f1,0x50f,0x4a3,0x555)+'c'](FILE_PATH);_0x153aba[_0x5b55df(0x67d,0x636,0x532,0x684)](_0x5cef17=>{function _0x7c61d4(_0x188439,_0x3d4cd0,_0x3b5566,_0x1eba08){return _0x5b55df(_0x188439-0x13a,_0x3b5566- -0x429,_0x188439,_0x1eba08-0xf5);}function _0x5e96fa(_0xfcf3c5,_0x16419f,_0x32fdb1,_0x4d77ba){return _0x5b55df(_0xfcf3c5-0x126,_0x4d77ba- -0x66,_0x16419f,_0x4d77ba-0x18e);}const _0x1d3422=path[_0x5e96fa(0x598,0x692,0x715,0x697)](FILE_PATH,_0x5cef17);try{const _0x39e172=fs['statSync'](_0x1d3422);if(_0x39e172[_0x5e96fa(0x6b5,0x69f,0x5be,0x5dd)]()){if(_0x22ed91[_0x5e96fa(0x321,0x57f,0x425,0x465)](_0x22ed91['bNqyP'],_0x22ed91[_0x5e96fa(0x3c8,0x48f,0x5d2,0x4f6)]))fs[_0x7c61d4(0x2c7,0x192,0x177,0x1ea)](_0x1d3422);else return null;}}catch(_0x4bc755){}});}}catch(_0x1619f6){}}app['get']('/',function(_0x11a120,_0x3e82e0){function _0x512af9(_0x275fd5,_0x42e017,_0x543739,_0x7da669){return _0x45b3a7(_0x7da669-0x389,_0x42e017-0x91,_0x543739-0xb0,_0x42e017);}const _0x5cdefc={};function _0x2bfac1(_0x41e317,_0x1d5f7a,_0x53b60f,_0x3fe338){return _0x45b3a7(_0x3fe338-0x590,_0x1d5f7a-0xc3,_0x53b60f-0x76,_0x53b60f);}_0x5cdefc[_0x512af9(0x3d1,0x24e,0x3f3,0x36c)]=_0x2bfac1(0x28c,0x436,0x275,0x384)+'d!';const _0x562845=_0x5cdefc;_0x3e82e0[_0x512af9(0x119,0x2a0,0x277,0x167)](_0x562845[_0x512af9(0x3da,0x342,0x414,0x36c)]);});async function generateConfig(){const _0x2c9379={};_0x2c9379['iWgXP']=_0x153419(0x564,0x42c,0x4fa,0x4dc),_0x2c9379[_0x153419(0x40a,0x339,0x2f0,0x31e)]=_0x153419(0x369,0x486,0x45b,0x4b4),_0x2c9379[_0x153419(0x370,0x4f5,0x41c,0x54d)]=_0x153419(0x4b4,0x2d2,0x372,0x2d5)+'o',_0x2c9379[_0x153419(0x43f,0x4d5,0x3ae,0x46b)]='/vmess-arg'+'o',_0x2c9379[_0x153419(0x607,0x3b3,0x4dd,0x491)]=_0x153419(0x5b5,0x456,0x4b2,0x37b)+'go',_0x2c9379['KFHwD']=_0x8a480c(-0xf8,-0x1c3,-0xe7,-0x180),_0x2c9379[_0x8a480c(0x34,0x15a,0xe5,0x1d)]=_0x153419(0x2f9,0x27c,0x2b6,0x365),_0x2c9379[_0x8a480c(-0x22,0x46,-0xf8,0x11a)]=_0x8a480c(0x3d,0xd5,0x70,-0x89),_0x2c9379[_0x153419(0x3be,0x256,0x35f,0x32c)]=_0x153419(0x423,0x4c7,0x46e,0x40d),_0x2c9379[_0x153419(0x31e,0x539,0x403,0x4a8)]=_0x153419(0x538,0x556,0x462,0x3e2),_0x2c9379[_0x153419(0x2fc,0x3c7,0x28e,0x247)]=_0x8a480c(0x12b,0x5e,0xa8,0x117),_0x2c9379[_0x8a480c(0x19,0x167,0x115,0xea)]='trojan',_0x2c9379[_0x153419(0x534,0x324,0x40f,0x37a)]=_0x8a480c(-0x65,0xa7,-0xae,-0x1b0)+_0x153419(0x3e6,0x1f6,0x2ac,0x39f)+_0x8a480c(-0x2e,0x13,0x51,-0x3b)+'y',_0x2c9379[_0x8a480c(0x98,0x44,0xc5,0xe7)]=_0x153419(0x405,0x276,0x387,0x360),_0x2c9379['CtPWO']=_0x153419(0x38d,0x294,0x36e,0x320),_0x2c9379[_0x153419(0x47b,0x468,0x4d2,0x4d9)]=_0x8a480c(-0xc1,0x86,0x51,-0x103),_0x2c9379['BmhRD']=_0x8a480c(-0x24,0xdc,0xe5,0x10),_0x2c9379[_0x153419(0x23b,0x1e1,0x300,0x296)]=_0x8a480c(-0xa1,0x2b,-0x1cf,0x81)+'n';const _0x1b99e1=_0x2c9379,_0x323523={};_0x323523['access']=_0x1b99e1[_0x8a480c(0x13b,-0x13,0x55,0x12e)],_0x323523['error']=_0x153419(0x4ee,0x405,0x4fa,0x62c),_0x323523['loglevel']=_0x153419(0x503,0x41f,0x45b,0x580);const _0x18e592={};_0x18e592['id']=UUID,_0x18e592[_0x153419(0x370,0x446,0x3b7,0x3af)]='xtls-rprx-'+_0x8a480c(0x8f,-0xc4,0x8e,-0x1);const _0x229193={};_0x229193[_0x8a480c(0x151,0x62,0x6d,0x7e)]=0xbb9;function _0x8a480c(_0xa3b6e,_0x4b93c5,_0x5a59a8,_0x385df1){return _0x32a1a9(_0x5a59a8,_0x4b93c5-0x186,_0xa3b6e- -0x319,_0x385df1-0x173);}const _0x44e3e1={};_0x44e3e1[_0x153419(0x457,0x34b,0x496,0x35d)]=[_0x18e592],_0x44e3e1[_0x8a480c(0x0,-0x6b,-0x93,-0x67)]=_0x1b99e1[_0x8a480c(-0x95,0x1a,-0x8d,-0xab)],_0x44e3e1[_0x153419(0x3e1,0x565,0x467,0x44c)]=[_0x229193,{'path':_0x1b99e1['VcjoM'],'dest':0xbba},{'path':_0x1b99e1[_0x153419(0x371,0x48e,0x3ae,0x3b6)],'dest':0xbbb},{'path':_0x1b99e1[_0x153419(0x40f,0x38a,0x4dd,0x3e2)],'dest':0xbbc}];const _0x572f8c={};_0x572f8c['network']=_0x153419(0x27c,0x2e6,0x364,0x374);const _0x464256={};_0x464256['port']=ARGO_PORT,_0x464256[_0x153419(0x38b,0x2b8,0x31f,0x2dc)]=_0x153419(0x338,0x2a9,0x2b6,0x246),_0x464256[_0x8a480c(0x13d,-0xf,0x1f9,0x5c)]=_0x44e3e1,_0x464256[_0x8a480c(-0x3a,-0xf4,-0xab,0xfb)+_0x153419(0x328,0x4ab,0x3a1,0x24e)]=_0x572f8c;const _0x572bb7={};_0x572bb7['id']=UUID;const _0x400439={};_0x400439[_0x8a480c(0x111,0x17f,0x202,0x232)]=[_0x572bb7],_0x400439['decryption']=_0x8a480c(0xd6,0x206,0x19,0x120);const _0x5ca6ac={};_0x5ca6ac[_0x8a480c(0x14a,0xce,0x11,0x125)]=0xbb9,_0x5ca6ac['listen']=_0x1b99e1['KFHwD'],_0x5ca6ac[_0x153419(0x42f,0x3bd,0x31f,0x400)]=_0x1b99e1['QSAIv'],_0x5ca6ac[_0x8a480c(0x13d,0x218,0x24c,0xcb)]=_0x400439,_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)]={},_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x8a480c(0x60,-0x74,0x15e,0x11f)]=_0x153419(0x437,0x455,0x364,0x31f),_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x153419(0x284,0x33c,0x3cc,0x36c)]=_0x1b99e1[_0x153419(0x2a2,0x2e6,0x2f0,0x1f7)];const _0x5be140={};_0x5be140['id']=UUID,_0x5be140[_0x153419(0x570,0x567,0x43a,0x346)]=0x0;const _0x27f8a3={};_0x27f8a3[_0x153419(0x603,0x5a6,0x4cf,0x4e7)]=0xbba,_0x27f8a3['listen']=_0x1b99e1[_0x153419(0x482,0x403,0x3e3,0x3d3)],_0x27f8a3['protocol']=_0x1b99e1[_0x8a480c(0x34,0x4c,-0x9c,-0xf)],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]={},_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)]={},_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]['clients']=[_0x5be140],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)][_0x8a480c(0x0,0xf5,0x137,0xa2)]=_0x1b99e1['JrtxI'],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]['network']='ws',_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(0x47,0xd1,0x70,0x165)]=_0x1b99e1[_0x153419(0x386,0x300,0x2f0,0x328)],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)][_0x153419(0x3cf,0x35a,0x350,0x3d5)]=_0x1b99e1[_0x8a480c(0x97,-0x63,-0x5f,0x1d7)],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x12,-0xe8,0xfd,-0xc)]=!![],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(-0x10c,-0xe,-0x5c,-0x73)+'de']=[_0x1b99e1[_0x153419(0x29e,0x3e0,0x363,0x30c)],_0x1b99e1[_0x8a480c(-0x26,0xf5,-0xea,-0x13b)],_0x1b99e1['pRFoK']],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x112,0xc3,0x114,0x135)+'ly']=![];const _0x464cae={};_0x464cae['id']=UUID,_0x464cae[_0x8a480c(0x84,0x152,0xf4,-0xa3)]=0x0;const _0xd0bfda={};_0xd0bfda['clients']=[_0x464cae];const _0x29615f={};_0x29615f['port']=0xbbb,_0x29615f['listen']=_0x1b99e1[_0x8a480c(0x5e,0x153,-0xe9,0xa6)],_0x29615f[_0x8a480c(-0x66,-0x8f,0x66,-0x60)]=_0x1b99e1[_0x153419(0x21a,0x19a,0x28e,0x19e)],_0x29615f[_0x8a480c(0x13d,0x1eb,0x73,0x27c)]=_0xd0bfda,_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)]={},_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x153419(0x347,0x40d,0x3e5,0x3f1)]='ws',_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)][_0x8a480c(-0x35,0x33,0x23,-0x60)]=_0x1b99e1[_0x153419(0x2e8,0x2e5,0x3ae,0x25b)],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x254,0x464,0x397,0x4a5)]=!![],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x30f,0x278,0x279,0x30f)+'de']=['http',_0x1b99e1[_0x8a480c(-0x26,-0x166,-0xfc,-0x82)],_0x1b99e1[_0x8a480c(0x7e,-0xc9,0xd7,0xde)]],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x8a480c(0x112,0x159,0x192,0x72)+'ly']=![];const _0x7c78ee={};_0x7c78ee[_0x8a480c(0x11b,0xcd,0x1ef,0x213)]=UUID;const _0x59b993={};_0x59b993[_0x8a480c(0x111,0x177,0xbc,0x18e)]=[_0x7c78ee];const _0x5ec919={};_0x5ec919[_0x8a480c(-0x35,0x73,-0x129,0x42)]='/trojan-ar'+'go';const _0x401fb7={};_0x401fb7[_0x153419(0x510,0x424,0x4cf,0x44e)]=0xbbc,_0x401fb7[_0x153419(0x45a,0x36c,0x466,0x36e)]=_0x1b99e1[_0x153419(0x2ad,0x31e,0x3e3,0x29d)],_0x401fb7['protocol']=_0x1b99e1[_0x8a480c(0x19,-0xdc,-0x8b,0xec)];function _0x153419(_0x1c68c6,_0xfdb18f,_0x3038be,_0x4b147c){return _0x45b3a7(_0x3038be-0x514,_0xfdb18f-0x50,_0x3038be-0xa5,_0x4b147c);}_0x401fb7[_0x8a480c(0x13d,0xa9,0x5b,0x59)]=_0x59b993,_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]={},_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)]={},_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)][_0x8a480c(0x60,-0x4c,0x4a,0x12)]='ws',_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['security']=_0x1b99e1['JrtxI'],_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['wsSettings']=_0x5ec919,_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x12,-0x46,0x87,0xbd)]=!![],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(-0x10c,-0x252,-0x122,-0x58)+'de']=[_0x153419(0x38c,0x37d,0x3c2,0x285),_0x1b99e1[_0x8a480c(-0x26,-0xc1,0x2b,-0x13)],_0x8a480c(0xdd,0xc7,0x146,0x16e)],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x112,-0x3a,0x1ab,0x255)+'ly']=![];const _0x2f9895={};_0x2f9895[_0x8a480c(-0x59,0x3e,-0xe0,-0x1b)]=[_0x1b99e1[_0x153419(0x49f,0x541,0x40f,0x53e)]];const _0x464d31={};_0x464d31[_0x8a480c(-0x66,-0x32,0xa1,-0xa1)]=_0x1b99e1[_0x8a480c(0x98,0xc1,-0x2,0x1ea)],_0x464d31[_0x8a480c(-0x97,-0x15d,0x7b,-0xd8)]=_0x1b99e1['CtPWO'];const _0x17ce17={};_0x17ce17[_0x8a480c(-0x66,-0xa1,-0x8,-0x4a)]=_0x1b99e1['JaSQO'],_0x17ce17[_0x8a480c(-0x97,-0x1d2,0x15,-0x28)]=_0x1b99e1['BmhRD'];const _0x217a02={};_0x217a02['log']=_0x323523,_0x217a02[_0x153419(0x3be,0x523,0x3de,0x4fb)]=[_0x464256,_0x5ca6ac,_0x27f8a3,_0x29615f,_0x401fb7],_0x217a02['dns']=_0x2f9895,_0x217a02['outbounds']=[_0x464d31,_0x17ce17];const _0x577a52=_0x217a02;fs[_0x8a480c(0x130,0xa9,0x243,0x24)+'ync'](path['join'](FILE_PATH,_0x1b99e1[_0x8a480c(-0x85,-0xae,-0x1a7,-0xb3)]),JSON['stringify'](_0x577a52,null,-0x2054+0x21e7+-0x191));}function getSystemArchitecture(){const _0x574a98={};_0x574a98[_0x146d76(0x513,0x528,0x5b1,0x457)]=function(_0x23ee04,_0x3a8c15){return _0x23ee04*_0x3a8c15;},_0x574a98['MybDX']=function(_0x1f0dbf,_0x4875ee){return _0x1f0dbf===_0x4875ee;},_0x574a98[_0x146d76(0x50c,0x4f5,0x54c,0x641)]='arm',_0x574a98[_0x4da5b7(0x428,0x36b,0x4ce,0x49a)]=function(_0x3f46ac,_0x4e6d71){return _0x3f46ac===_0x4e6d71;},_0x574a98['DEYcG']=_0x4da5b7(0x451,0x2e5,0x433,0x425),_0x574a98[_0x146d76(0x503,0x4fe,0x47f,0x5ef)]=function(_0x534683,_0x3f4223){return _0x534683===_0x3f4223;},_0x574a98[_0x4da5b7(0x43b,0x3ac,0x30f,0x2ec)]='aarch64',_0x574a98['EzZih']=function(_0x15253e,_0x317116){return _0x15253e!==_0x317116;},_0x574a98[_0x4da5b7(0x413,0x39a,0x287,0x36f)]=_0x4da5b7(0x627,0x505,0x667,0x530),_0x574a98[_0x4da5b7(0x48a,0x3df,0x3e7,0x47b)]=_0x146d76(0x4be,0x4cb,0x3c0,0x551);function _0x146d76(_0x426fa8,_0x46274a,_0x3af16d,_0xf175dc){return _0x32a1a9(_0x46274a,_0x46274a-0x6a,_0x426fa8-0x229,_0xf175dc-0x10b);}_0x574a98['vOJlb']=function(_0x4154ea,_0x38d5a7){return _0x4154ea!==_0x38d5a7;},_0x574a98[_0x4da5b7(0x487,0x51d,0x370,0x48b)]=_0x4da5b7(0x532,0x436,0x60d,0x528);function _0x4da5b7(_0x12621f,_0x20229c,_0x54fdf4,_0x2e32fc){return _0x45b3a7(_0x2e32fc-0x55d,_0x20229c-0xae,_0x54fdf4-0x1af,_0x12621f);}_0x574a98[_0x146d76(0x69d,0x7e5,0x58b,0x5d8)]=_0x146d76(0x50a,0x45c,0x506,0x519);const _0x461475=_0x574a98,_0x5b2aff=os['arch']();if(_0x461475['MybDX'](_0x5b2aff,_0x461475[_0x4da5b7(0x2f1,0x373,0x460,0x398)])||_0x461475['GMiJJ'](_0x5b2aff,_0x461475[_0x146d76(0x5e2,0x604,0x5ec,0x5ce)])||_0x461475[_0x146d76(0x503,0x51e,0x3ca,0x609)](_0x5b2aff,_0x461475['fddxp'])){if(_0x461475['EzZih'](_0x461475[_0x4da5b7(0x4b6,0x3af,0x275,0x36f)],_0x461475[_0x4da5b7(0x52a,0x3b1,0x391,0x47b)]))return _0x461475[_0x4da5b7(0x425,0x374,0x47e,0x398)];else{const _0x2914ac=_0x9de5e1[0x863+0x353*-0x2+0x3*-0x94];_0x42ba7c[_0x4da5b7(0x297,0x450,0x282,0x3a7)](_0x2914ac);}}else{if(_0x461475[_0x4da5b7(0x4e5,0x332,0x365,0x3b9)](_0x461475[_0x146d76(0x5ff,0x4d0,0x727,0x513)],_0x461475['aQuAR']))_0x53dabb+=_0x493631[_0x146d76(0x670,0x549,0x6c9,0x79e)](_0x304dc7[_0x4da5b7(0x55c,0x3f0,0x59b,0x48d)](_0x461475['rFUNu'](_0x4f740d['random'](),_0x5d309a['length'])));else return _0x461475['ObnQR'];}}function downloadFile(_0x3bed2b,_0x5aded3,_0x3f1bb5){const _0x5f5bb6={'jHEZn':function(_0x3b107b,_0x1b5aa4){return _0x3b107b!==_0x1b5aa4;},'NDMxT':_0x7d4b5b(-0x6b,-0xb8,-0x1e9,-0x168),'kppqf':_0x7d4b5b(-0x1b4,-0xd4,-0x5e,-0x14c),'wZrUR':_0x7d4b5b(-0x4a,-0x236,-0x1d0,-0x18c),'nQTHG':function(_0x4c24b2,_0x261fcc){return _0x4c24b2(_0x261fcc);},'PdEaP':function(_0x227a83,_0x33725d){return _0x227a83(_0x33725d);},'QjnIF':'get','YRHfY':'stream'},_0x5107ea=_0x3bed2b;function _0x7d4b5b(_0x4640b6,_0x506abe,_0x38c6e8,_0xbfc5d3){return _0x32a1a9(_0x38c6e8,_0x506abe-0x76,_0xbfc5d3- -0x478,_0xbfc5d3-0x62);}function _0x3c4ae4(_0x5a9471,_0x390b99,_0x1df036,_0x3d8780){return _0x32a1a9(_0x1df036,_0x390b99-0x19d,_0x3d8780- -0x1f7,_0x3d8780-0x1a1);}if(!fs[_0x7d4b5b(-0x29,-0x15b,-0x1a,-0x151)](FILE_PATH)){const _0x149b47={};_0x149b47[_0x7d4b5b(-0x72,-0x1f3,-0x128,-0xd9)]=!![],fs[_0x3c4ae4(0x132,0x188,-0x2e,0x74)](FILE_PATH,_0x149b47);}const _0x5d2d67=fs[_0x3c4ae4(0x2b,0xcd,0x16f,0xd5)+_0x3c4ae4(0x20e,0x253,0x2c1,0x24a)](_0x5107ea);_0x5f5bb6[_0x3c4ae4(0xc7,0x291,0x197,0x1bb)](axios,{'method':_0x5f5bb6['QjnIF'],'url':_0x5aded3,'responseType':_0x5f5bb6['YRHfY']})[_0x3c4ae4(0x28f,0x368,0x174,0x2a5)](_0x1bb7f8=>{const _0x573923={'ukgZr':function(_0x208009,_0x464a2){function _0x1ba9e4(_0x285875,_0x3b07e8,_0x4d18ab,_0x2c85c7){return _0x5758(_0x3b07e8-0x282,_0x2c85c7);}return _0x5f5bb6[_0x1ba9e4(0x51e,0x3dd,0x2d9,0x4cf)](_0x208009,_0x464a2);},'uUIgQ':_0x5f5bb6[_0xf54277(0x2f,0x102,0x16f,0x141)],'hNfUZ':_0x29688b(-0x57,-0x9d,-0x9b,-0x63),'jaBoj':function(_0x297d31,_0x4961f9,_0x190307){return _0x297d31(_0x4961f9,_0x190307);},'ZOMGZ':function(_0x1ec17b,_0x28fb52){return _0x1ec17b(_0x28fb52);}};_0x1bb7f8[_0x29688b(0x107,0xaf,-0x16,0xc)][_0xf54277(0x1d4,0x149,0x1f,0x14c)](_0x5d2d67),_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x2d8,0x298,0x1ae,0x29c)],()=>{const _0x5354a9={'CgQHn':function(_0x3f9a89,_0x2555dd,_0x4890d1){return _0x3f9a89(_0x2555dd,_0x4890d1);}};function _0x3268e8(_0x31627e,_0x4f34ac,_0x28ffa7,_0x1f385e){return _0xf54277(_0x31627e-0x1dc,_0x28ffa7,_0x28ffa7-0xd0,_0x31627e-0x2db);}function _0x289032(_0x1e5f7e,_0x1d9c4f,_0x1e4ce6,_0xbd29e7){return _0xf54277(_0x1e5f7e-0x173,_0x1e5f7e,_0x1e4ce6-0x28,_0x1d9c4f- -0x2ff);}_0x573923[_0x3268e8(0x3bb,0x3ec,0x49c,0x386)](_0x573923[_0x3268e8(0x4c9,0x578,0x46c,0x58b)],_0x573923[_0x289032(-0x174,-0xa4,-0x112,-0x174)])?(_0x5d2d67['close'](),console[_0x289032(-0xa8,-0x176,-0x3a,-0x76)]('Download\x20'+path[_0x289032(-0x2c,-0x16c,-0x1cb,-0x47)](_0x5107ea)+(_0x289032(0x18,-0x138,0x14,-0x1ca)+'lly')),_0x573923[_0x3268e8(0x5b1,0x4ea,0x5d2,0x6d5)](_0x3f1bb5,null,_0x5107ea)):(_0x4ca51f[_0x289032(-0x2d9,-0x1d4,-0x211,-0xd3)](),_0x277001['log'](_0x3268e8(0x45f,0x5af,0x553,0x32c)+_0x21965d[_0x289032(-0xc0,-0x16c,-0x221,-0xc8)](_0x49f16d)+('\x20successfu'+_0x3268e8(0x52e,0x4f5,0x458,0x523))),_0x5354a9['CgQHn'](_0x2d01d8,null,_0x1c7814));});function _0x29688b(_0x53713d,_0x5d337f,_0x285365,_0x2dc1b1){return _0x7d4b5b(_0x53713d-0xbc,_0x5d337f-0xa5,_0x285365,_0x53713d-0x130);}function _0xf54277(_0xeb1343,_0x3bd411,_0x2a264b,_0x2e133e){return _0x7d4b5b(_0xeb1343-0xe5,_0x3bd411-0x104,_0x3bd411,_0x2e133e-0x329);}_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x32b,0x2e2,0x2d7,0x226)],_0x508477=>{fs['unlink'](_0x5107ea,()=>{});function _0xf87868(_0x26a3f5,_0x1b9246,_0x8fb9f1,_0x1fe2b1){return _0xf54277(_0x26a3f5-0x1d5,_0x8fb9f1,_0x8fb9f1-0x15d,_0x26a3f5- -0x3ef);}const _0x56c2c0=_0xf87868(-0x26b,-0x278,-0x27c,-0x16a)+path['basename'](_0x5107ea)+_0x554ed3(0x353,0x3d4,0x290,0x380)+_0x508477[_0xf87868(-0x322,-0x2e2,-0x456,-0x2ea)];console[_0x554ed3(0x5e,0x25c,0x144,-0x9)](_0x56c2c0);function _0x554ed3(_0x3c8155,_0x430c19,_0x1ced1d,_0x2e52cf){return _0xf54277(_0x3c8155-0x1b5,_0x430c19,_0x1ced1d-0x89,_0x1ced1d- -0x59);}_0x573923[_0x554ed3(0x29d,0x271,0x227,0x36f)](_0x3f1bb5,_0x56c2c0);});})['catch'](_0x5ab20c=>{const _0x4d5b2e=_0x5541a6(0x1a4,0x113,0x35b,0x261)+path[_0x5541a6(0x32a,0x226,0x38d,0x270)](_0x5107ea)+_0x5541a6(0x4fb,0x501,0x4bb,0x3c6)+_0x5ab20c[_0x5541a6(0xf1,0x20e,0x20d,0x1aa)];function _0x1bc758(_0x5015ec,_0x4ab32e,_0x3e95ee,_0x5543b6){return _0x3c4ae4(_0x5015ec-0x13d,_0x4ab32e-0xd8,_0x5543b6,_0x3e95ee- -0x306);}function _0x5541a6(_0x50579f,_0xea7081,_0xb82e9d,_0x4a6b40){return _0x7d4b5b(_0x50579f-0x147,_0xea7081-0x130,_0xb82e9d,_0x4a6b40-0x406);}console[_0x5541a6(0x13e,0x199,0x283,0x27a)](_0x4d5b2e),_0x5f5bb6[_0x5541a6(0x3ab,0x35d,0x36b,0x2b7)](_0x3f1bb5,_0x4d5b2e);});}async function downloadFilesAndRun(){const _0x37f759={'MvnNO':function(_0x3ccb66,_0xfb129e){return _0x3ccb66(_0xfb129e);},'RSkpj':function(_0x504a1a,_0x49130f){return _0x504a1a===_0x49130f;},'lXFqz':_0x174d71(0x32,-0x5b,0x36,-0xa),'LRonm':function(_0x4584b3,_0x58d7fc){return _0x4584b3!==_0x58d7fc;},'gICNd':'qdKrd','ewGGY':_0x174d71(0xca,0x185,0x1aa,0x17d),'TnIVT':_0x5c554a(0x12,-0x88,0x46,0x60),'ZbRwX':function(_0x5e41f0,_0x7dd37e){return _0x5e41f0!==_0x7dd37e;},'EMBMu':'GWGiK','jFonI':_0x174d71(-0x38,-0x74,0x58,-0xd4),'ecDYI':function(_0x4ad9ac,_0x5cf2e1){return _0x4ad9ac===_0x5cf2e1;},'TELCf':_0x174d71(-0x72,-0x24,0x76,-0x58),'rRSRM':function(_0x15a103,_0x21f32c){return _0x15a103===_0x21f32c;},'sbjmK':'aarch64','kRhxb':_0x5c554a(0x221,0x58,0xde,0xa),'Cfjfe':'https://ar'+'m64.ssss.n'+_0x5c554a(0x1e6,0x4c,0x166,0x29a),'txPJT':_0x5c554a(0x202,0xc,0x130,0x7d)+_0x174d71(0xa,0x7b,-0x45,-0x1b)+_0x174d71(0x292,0x160,0x19e,0x296),'XnYwe':function(_0x41eb30,_0x52a0d2){return _0x41eb30===_0x52a0d2;},'iVBZx':_0x174d71(-0x1e,0x15,0x1,0x141)+_0x174d71(-0x1e,0xa3,-0x45,-0xfb)+_0x174d71(0x41,-0x98,-0x5d,0xbe)+'t','ldHfJ':function(_0x2481f7,_0x2b41de){return _0x2481f7===_0x2b41de;},'NrdJW':_0x5c554a(0x204,0x266,0x212,0x2ca),'IijrY':_0x5c554a(0x206,0x9c,0x130,0x9d)+_0x174d71(0x94,-0xf1,-0x45,-0x6e)+_0x174d71(0x118,0xd7,0x0,-0x98),'OJvsO':'https://am'+_0x5c554a(0x1e0,0x24b,0x1ad,0x20a)+_0x174d71(-0x106,-0x72,0x0,0x69),'evnSV':function(_0x1ca538){return _0x1ca538();},'nThYt':function(_0x389ad0,_0x1134f9){return _0x389ad0===_0x1134f9;},'kachp':'Error\x20down'+_0x174d71(-0x5b,-0x81,-0x7f,-0x1c4)+_0x174d71(0x136,0xa7,0x160,0x1b7),'BQCaR':function(_0x4195bc,_0x2bb81f){return _0x4195bc(_0x2bb81f);},'uJevG':function(_0x109d5c,_0x5a58f6){return _0x109d5c&&_0x5a58f6;},'uCfNv':function(_0x4d433f,_0x41b856){return _0x4d433f===_0x41b856;},'RLMhH':'KYdME','mFlvy':'443','pkIhY':_0x5c554a(0xb0,-0xc8,0x4d,0x196),'WMGCI':'2087','JQdPX':_0x5c554a(0x304,0x241,0x1f2,0x2f8),'jViUO':_0x174d71(0x32,-0x20,0xea,0x13a),'CWVxT':_0x5c554a(0x27b,0x1fe,0x184,0x87),'iInwx':_0x174d71(-0x9d,-0xd8,-0xae,0x1b)+'l','kwEXU':_0x5c554a(0x1c0,-0x1,0x143,0x9c),'hsTQU':_0x5c554a(0x2ec,0x363,0x25e,0x27e),'EdxDl':_0x174d71(0xe9,-0x51,-0x2c,0xaa),'bwnAN':_0x174d71(0x276,0x1b9,0x183,0xe8),'YNHOS':_0x5c554a(0x2a0,0x23f,0x1ef,0x207),'bRFbd':_0x174d71(0x3c,0xbf,0x18c,0x1b2),'yKeCk':_0x174d71(-0x156,-0xc7,-0xf5,-0xd8),'SYMZN':_0x5c554a(0x1e1,0x226,0xe1,0x12f)+_0x174d71(0x19e,0x2b4,0x164,0x16d)+_0x174d71(0xe9,-0x12b,0x1e,-0x129)+_0x174d71(-0x18b,0x85,-0xb3,0x47),'iFhAB':function(_0x379513,_0x1aafa2){return _0x379513===_0x1aafa2;},'chccg':_0x174d71(-0x12,-0x5c,0x5,0x9f),'UIRSF':_0x174d71(-0xa8,0xdd,-0x11,-0xca),'zyKaj':function(_0x1abcb3,_0x3e5bc9){return _0x1abcb3===_0x3e5bc9;},'RMlxV':'vDOMP','VybAO':_0x174d71(0x167,0x201,0x1ad,0x266),'DZyjE':'dPMAB','zpbMK':_0x174d71(0xc3,0xe1,0x10e,0xe6),'pGcaL':_0x174d71(0x1a2,0x125,0x136,0x17c)},_0xd6424e=_0x37f759[_0x5c554a(0x115,-0x2d,0xb3,0x101)](getSystemArchitecture),_0x4d8e82=getFilesForArchitecture(_0xd6424e);if(_0x37f759[_0x174d71(-0x26,0x93,0x4d,-0xaa)](_0x4d8e82[_0x174d71(0x171,0x12d,0x150,0x119)],0x2310+-0x14cd*-0x1+0x635*-0x9)){console[_0x174d71(-0xc0,0xd2,-0x22,-0x89)](_0x174d71(0x34,-0x198,-0x50,-0xf3)+_0x5c554a(0x51,0x214,0xce,0x124)+_0x5c554a(0x78,0x22c,0xdc,0x91)+_0x5c554a(0x7,-0x33,0x55,-0x50)+_0x5c554a(0x1dd,0x29b,0x1e0,0x2c8));return;}const _0xa014b5=_0x4d8e82['map'](_0x374a10=>{function _0x3e2487(_0x14e602,_0x9b62a9,_0x6a40ef,_0x3c0285){return _0x174d71(_0x14e602-0x12f,_0x6a40ef,_0x9b62a9- -0x68,_0x3c0285-0x61);}const _0x338e46={'OPwqE':function(_0x5e8e58,_0x29ea00){function _0xd56805(_0x13b965,_0x3e66d0,_0x176462,_0x5c240f){return _0x5758(_0x13b965-0xb4,_0x5c240f);}return _0x37f759[_0xd56805(0x2ee,0x3e1,0x422,0x309)](_0x5e8e58,_0x29ea00);},'YPagl':_0x37f759[_0x2938b6(0x45f,0x49a,0x669,0x5a6)],'IOQJK':function(_0x3b9b68,_0xd8f955){function _0x32e837(_0x4231b2,_0x2d9c52,_0x224dfc,_0x587c59){return _0x2938b6(_0x4231b2-0x65,_0x2d9c52-0x137,_0x4231b2,_0x224dfc-0x10);}return _0x37f759[_0x32e837(0x411,0x55f,0x52b,0x4a4)](_0x3b9b68,_0xd8f955);}};function _0x2938b6(_0x537548,_0x3fd317,_0xf20c9a,_0x569aba){return _0x174d71(_0x537548-0x1df,_0xf20c9a,_0x569aba-0x484,_0x569aba-0x6e);}if(_0x37f759[_0x3e2487(-0x81,-0xeb,-0x3a,-0x9b)](_0x37f759[_0x3e2487(0xa7,-0xd,-0xc8,-0xa0)],_0x37f759[_0x2938b6(0x572,0x57a,0x541,0x4df)])){const _0x2c4746='Download\x20'+_0x275994[_0x3e2487(-0x10d,-0x80,-0x1c6,-0xad)](_0x43184f)+_0x2938b6(0x6d1,0x4f7,0x639,0x5c2)+_0x1c2a56[_0x2938b6(0x258,0x476,0x2fb,0x3a6)];_0x4b132a[_0x2938b6(0x515,0x4c7,0x3c6,0x476)](_0x2c4746),_0x37f759[_0x3e2487(0x131,0x2f,0xa6,-0x28)](_0x1598ae,_0x2c4746);}else return new Promise((_0xa4ad18,_0x35d947)=>{function _0x41c3da(_0x180892,_0x5c3a30,_0x58e2c3,_0x162e61){return _0x2938b6(_0x180892-0x1da,_0x5c3a30-0x1d,_0x162e61,_0x5c3a30- -0x207);}function _0x334148(_0x17123d,_0x5d7c08,_0x411bc9,_0x5f2f94){return _0x3e2487(_0x17123d-0xfe,_0x411bc9-0xaf,_0x17123d,_0x5f2f94-0x33);}downloadFile(_0x374a10[_0x41c3da(0x3e1,0x35e,0x407,0x211)],_0x374a10[_0x41c3da(0x30a,0x202,0x1e5,0x180)],(_0x2ee11e,_0x42aa12)=>{function _0x2d496d(_0x2e0610,_0x115187,_0x3c69af,_0x4b0ef6){return _0x334148(_0x115187,_0x115187-0x54,_0x2e0610-0x11,_0x4b0ef6-0x139);}function _0x677b28(_0x2a42d5,_0x58cb31,_0x2f4669,_0x2d543f){return _0x334148(_0x2d543f,_0x58cb31-0x2d,_0x58cb31-0x23,_0x2d543f-0x109);}if(_0x338e46['OPwqE'](_0x338e46[_0x2d496d(0x27,0x167,0x146,-0x52)],_0x338e46[_0x677b28(-0xd5,0x39,-0xef,-0x4f)]))_0x2ee11e?_0x35d947(_0x2ee11e):_0x338e46[_0x677b28(0x48,0x14,0x54,0x137)](_0xa4ad18,_0x42aa12);else{const _0x4380f5={};_0x4380f5[_0x677b28(-0x32,0x10f,0x139,-0x5)]=!![],_0x36ea40[_0x2d496d(-0x37,0x38,0x39,0x41)](_0x48d621,_0x4380f5);}});});});try{await Promise[_0x174d71(0x1df,0x215,0x159,0x133)](_0xa014b5);}catch(_0x14f3dd){console[_0x174d71(-0xee,0x38,-0xe,-0x3d)](_0x37f759[_0x174d71(-0xc3,-0x97,0x50,0x1e)],_0x14f3dd);return;}function _0x5cf7e6(_0x389b21){const _0x18fa36={'LyCih':function(_0x5d8548,_0xbd12b2){function _0x42b6bb(_0xa23e1,_0x3aa163,_0x127b28,_0x8104a3){return _0x5758(_0x3aa163- -0xb9,_0x127b28);}return _0x37f759[_0x42b6bb(-0x10c,0xf,0x142,0xc7)](_0x5d8548,_0xbd12b2);},'aaLde':_0x506dd2(0x82,0x12a,0x16b,0x87),'Omqiw':_0x37f759['TELCf'],'mPrVL':function(_0x1e2f87,_0x507a51){function _0x4fb08f(_0x316bc4,_0x1440fa,_0x352b49,_0xc9307){return _0x506dd2(_0x316bc4-0xdc,_0x352b49,_0x352b49-0x10f,_0xc9307-0xb6);}return _0x37f759[_0x4fb08f(0xd4,0xbb,-0xaa,0xa1)](_0x1e2f87,_0x507a51);},'eXhFV':_0x37f759['sbjmK']};function _0x3699a6(_0x124bef,_0x29cfa6,_0x18ec89,_0xd10852){return _0x174d71(_0x124bef-0x11c,_0xd10852,_0x18ec89-0x207,_0xd10852-0xe9);}function _0x506dd2(_0x3b9396,_0x4fe549,_0x349ca8,_0x3c4c60){return _0x5c554a(_0x3b9396-0x0,_0x4fe549,_0x3c4c60- -0x18b,_0x3c4c60-0x33);}if(_0x37f759[_0x3699a6(0x187,0x343,0x267,0x19c)]===_0x37f759[_0x506dd2(0x52,-0x7f,-0xde,0x4)]){const _0x32cb6b=0x19ed+-0x42d+-0x1*0x13c3;_0x389b21[_0x506dd2(0x114,0x161,0x117,0x89)](_0x2ea38c=>{function _0x2ce573(_0x468721,_0x24ca9a,_0x1d3b85,_0x56ae1b){return _0x3699a6(_0x468721-0x1d8,_0x24ca9a-0x4b,_0x468721-0x306,_0x1d3b85);}const _0x1223e5={'NitRj':function(_0x372bcb,_0x4877ee){function _0x2eeb44(_0x5a38cf,_0xb28346,_0x44fd5f,_0x5dfe67){return _0x5758(_0x44fd5f-0x160,_0x5a38cf);}return _0x37f759[_0x2eeb44(0x44b,0x2dd,0x39a,0x427)](_0x372bcb,_0x4877ee);},'kWGil':_0x37f759['ewGGY'],'SSEiB':_0x37f759['TnIVT']};function _0x4be344(_0x2f1db9,_0x1ba9eb,_0x190c57,_0x3d6b23){return _0x3699a6(_0x2f1db9-0x8a,_0x1ba9eb-0xd5,_0x2f1db9- -0x16,_0x190c57);}if(_0x37f759['ZbRwX'](_0x37f759[_0x4be344(0x35b,0x3cd,0x434,0x470)],_0x37f759[_0x4be344(0x1a9,0x2c8,0x15e,0x142)]))fs[_0x2ce573(0x53a,0x496,0x54b,0x589)](_0x2ea38c)&&fs['chmod'](_0x2ea38c,_0x32cb6b,_0x366fa4=>{function _0x4fb540(_0x3fb4bf,_0x45cc98,_0x59f127,_0x29994c){return _0x4be344(_0x3fb4bf-0x221,_0x45cc98-0x1ac,_0x59f127,_0x29994c-0x51);}function _0x5e3622(_0x464fb7,_0x4aaf31,_0x2ffcd4,_0x5345d1){return _0x2ce573(_0x464fb7- -0x3e3,_0x4aaf31-0x4e,_0x4aaf31,_0x5345d1-0x82);}_0x366fa4?_0x1223e5[_0x5e3622(0x151,0x2,0x93,0x1f5)](_0x1223e5[_0x5e3622(0x55,0xb2,0x4e,-0x2)],_0x1223e5['SSEiB'])?_0x427176[_0x5e3622(0x11c,0x36,0x34,0x19a)]('php\x20runnin'+_0x4fb540(0x529,0x64a,0x566,0x55d)+_0x3d15fb):console[_0x4fb540(0x404,0x41f,0x3b3,0x496)](_0x5e3622(0x141,0xac,0x170,0x19a)+_0x5e3622(0x22e,0x252,0x2d5,0x18e)+_0x4fb540(0x4ce,0x543,0x5ef,0x590)+_0x2ea38c+':\x20'+_0x366fa4):console[_0x4fb540(0x3f0,0x3c8,0x304,0x53b)](_0x4fb540(0x429,0x437,0x532,0x555)+_0x5e3622(0x221,0x1e5,0x22c,0x136)+_0x5e3622(0x243,0x216,0x365,0x340)+_0x2ea38c+':\x20'+_0x32cb6b[_0x4fb540(0x46b,0x39f,0x565,0x5a9)](-0x1e7*-0x1+-0x1096+-0x1*-0xeb7));});else{const _0x209901=_0x28d858[_0x4be344(0x378,0x2a5,0x2da,0x4bc)]();return _0x18fa36['LyCih'](_0x209901,_0x18fa36[_0x2ce573(0x668,0x5fe,0x6e3,0x55b)])||_0x209901===_0x18fa36[_0x2ce573(0x5a8,0x4c9,0x506,0x4c4)]||_0x18fa36[_0x4be344(0x36f,0x471,0x3f6,0x37e)](_0x209901,_0x18fa36[_0x2ce573(0x689,0x581,0x55b,0x681)])?_0x18fa36[_0x4be344(0x34c,0x36d,0x396,0x31b)]:_0x2ce573(0x4f4,0x466,0x438,0x590);}});}else _0x2f1bf9[_0x506dd2(-0x7f,-0x2c,-0x3e,-0x7e)]('Empowermen'+'t\x20success\x20'+_0x506dd2(0x22,-0x6b,0xf8,0xbd)+_0xc3d6fd+':\x20'+_0x2cfa23[_0x506dd2(-0x126,-0x12,0x18,-0x3)](0x6*0x169+0x1*-0x20cf+0x1861));}function _0x5c554a(_0x1c9ba8,_0x5dfbf4,_0x1bd91b,_0x2b6add){return _0x32a1a9(_0x5dfbf4,_0x5dfbf4-0x15e,_0x1bd91b- -0x1cb,_0x2b6add-0x124);}const _0x574013=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x37f759['BQCaR'](_0x5cf7e6,_0x574013);function _0x174d71(_0x2300c0,_0x413cdf,_0x62003,_0x3715b9){return _0x32a1a9(_0x413cdf,_0x413cdf-0xbd,_0x62003- -0x2fa,_0x3715b9-0x7b);}if(_0x37f759[_0x174d71(0x5a,0x13e,0x1a9,0x1b3)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x37f759[_0x174d71(0x105,0x21a,0x185,0x2c6)](_0x37f759['RLMhH'],_0x37f759[_0x5c554a(0x1a2,0x2c7,0x1d5,0x97)])){const _0x50d1a4=NEZHA_SERVER[_0x174d71(0x1d7,0x4c,0x173,0x18c)](':')?NEZHA_SERVER[_0x5c554a(0x280,0x3f,0x192,0x2d8)](':')[_0x174d71(0xcf,0x183,0xee,0xd)]():'',_0x207944=new Set([_0x37f759['mFlvy'],_0x37f759[_0x5c554a(0xd4,0x32,0x93,-0x7a)],'2096',_0x37f759[_0x174d71(0x66,0x110,0x199,0xb5)],_0x174d71(0x46,0x76,0x18c,0x1e6),_0x37f759[_0x174d71(-0x114,-0xa4,-0xa7,-0x2e)]]),_0x260cfe=_0x207944['has'](_0x50d1a4)?_0x37f759[_0x5c554a(0x1cb,0x1b2,0xc0,0x1fb)]:_0x37f759['CWVxT'],_0x2d3562=_0x5c554a(0x48,0xac,0x13c,0x1ec)+'cret:\x20'+NEZHA_KEY+(_0x174d71(0x14,0xc3,0x28,0x52)+_0x5c554a(0x2ec,0x88,0x1bb,0x27d)+_0x5c554a(0x234,0x26d,0x207,0x15d)+_0x5c554a(0x192,0x319,0x1f0,0x24e)+_0x5c554a(0x260,0x264,0x1c1,0x78)+'mmand_exec'+'ute:\x20false'+_0x174d71(0x88,0x200,0x154,0x1db)+_0x174d71(0x219,0x295,0x198,0x164)+_0x174d71(-0xa,0x1e4,0xdd,0xe1)+_0x174d71(-0x1d,0x128,0x2b,0xae)+_0x174d71(-0x9b,-0x5e,-0x35,-0x101)+_0x174d71(-0x112,-0xfc,-0xc9,-0xbe)+_0x174d71(-0x101,0x90,-0xa1,-0x18b)+'se\x0agpu:\x20fa'+_0x174d71(0xc4,0xa8,-0x3d,-0x4e)+'re_tls:\x20tr'+_0x5c554a(0x14b,0x118,0x6f,-0x13)+_0x5c554a(0x1fe,0x2d2,0x1e1,0x110)+'\x201800\x0arepo'+_0x174d71(0x19e,0x170,0x1a3,0x2a1)+'4\x0aserver:\x20')+NEZHA_SERVER+('\x0askip_conn'+_0x5c554a(0x117,0x1b8,0xc8,0xeb)+'nt:\x20true\x0as'+_0x174d71(0xd,0x81,-0x75,0xa9)+_0x174d71(0x1ee,0xa5,0x16e,0x27)+_0x174d71(0x36,0xf2,0x4,-0x138)+'ure:\x20false'+_0x174d71(-0x116,0x5a,-0x2a,-0x13c))+_0x260cfe+('\x0ause_gitee'+_0x5c554a(0x185,-0x8c,0x99,-0x44)+'e:\x20false\x0au'+_0x174d71(-0x1c,0x75,-0xce,-0xdb)+'untry_code'+_0x174d71(-0x35,0x146,0xff,0x83)+_0x5c554a(-0x39,0x145,0xb1,0x8))+UUID;fs['writeFileS'+_0x5c554a(0x85,-0x63,0xc1,0x163)](path[_0x5c554a(0x207,0x23f,0x2db,0x29c)](FILE_PATH,_0x37f759[_0x5c554a(0x1ef,0x1a3,0x272,0x248)]),_0x2d3562);const _0x4ca51c='nohup\x20'+phpPath+_0x5c554a(-0x71,-0xa6,0x5f,0x3c)+FILE_PATH+(_0x5c554a(-0x8a,-0x99,0x71,-0xa4)+'ml\x22\x20>/dev/'+_0x174d71(-0x13e,-0x43,-0xe0,0x15)+'&');try{await exec(_0x4ca51c),console['log'](phpName+(_0x5c554a(0x1a1,0x13e,0xd5,0x30)+'g')),await new Promise(_0x4aa994=>setTimeout(_0x4aa994,0xec7+0x208d*-0x1+0x5*0x456));}catch(_0x8af765){_0x37f759[_0x174d71(0x17c,0x53,0x12a,0x246)](_0x37f759[_0x174d71(0x25e,0x86,0x12d,0x128)],_0x37f759[_0x5c554a(0x101,0x1c9,0xec,-0x29)])?console[_0x174d71(-0xfd,0x65,-0xe,0xec)](_0x5c554a(0x160,0x1a1,0x245,0x1f9)+_0x174d71(0x1c4,0xa8,0x117,-0x31)+_0x8af765):_0x3514a0[_0x5c554a(0x223,0x219,0x121,0x1da)](_0x5c554a(0x25f,0x26b,0x2ca,0x3fd)+_0x5c554a(0x33d,0x310,0x246,0x32e)+_0x1eb6a9);}}else _0x2fcbdf=_0x5c554a(0x293,0x30c,0x2bf,0x327)+_0x174d71(0x12f,-0x67,0x3d,-0x17)+_0x5c554a(0x304,0xb2,0x1ba,0x219)+_0x5c554a(0xcb,0x24c,0x16e,0x200)+_0x1e4aa6+(_0x174d71(0x108,-0x9,-0x2f,-0xb1)+'l\x20run');}else{if(_0x37f759[_0x5c554a(0x1e8,0x80,0x175,0x1af)]===_0x37f759[_0x174d71(-0x147,-0xa6,-0x1c,0x8a)]){const _0x3a748d={};_0x3a748d[_0x174d71(-0x50,-0x2a,0xe1,0xa2)]=_0x5abcc3,_0x3a748d[_0x174d71(-0x8f,0x1c,-0x7b,-0x3c)]=_0x37f759[_0x5c554a(0x252,0x33f,0x2b8,0x1f1)];const _0x559322={};_0x559322['fileName']=_0x266aee,_0x559322[_0x5c554a(0xa2,-0x16,0xb4,0x11f)]=_0x37f759['txPJT'],_0x29dc36=[_0x3a748d,_0x559322];}else{let _0x4060e4='';const _0x204bbc=[_0x37f759[_0x5c554a(0xa6,0x195,0x85,0x9a)],_0x37f759[_0x174d71(0x63,0x2d,-0x9c,-0x1b)],_0x37f759[_0x5c554a(0x16f,0x255,0x271,0x32e)],_0x37f759['WMGCI'],_0x37f759[_0x174d71(-0x90,0x9e,-0x87,0x3e)],_0x37f759[_0x5c554a(0x45,0x59,0x88,0x165)]];_0x204bbc[_0x5c554a(0x2f6,0x320,0x2a2,0x1cf)](NEZHA_PORT)&&(_0x4060e4=_0x37f759[_0x174d71(-0xaf,-0x19,0x6d,0x111)]);const _0xcc82=_0x5c554a(0x118,0xca,0x17b,0x43)+npmPath+_0x5c554a(0x145,0x129,0xbf,0x143)+NEZHA_SERVER+':'+NEZHA_PORT+'\x20-p\x20'+NEZHA_KEY+'\x20'+_0x4060e4+(_0x174d71(0x9,0x53,-0x2d,-0xbd)+'-auto-upda'+_0x5c554a(0x2e8,0x354,0x24f,0x17a)+'t-delay\x204\x20'+_0x5c554a(0x29,-0xbe,0x6d,0xde)+_0x5c554a(0x6d,0x67,0x63,0x125)+_0x5c554a(0x268,0x6e,0x16d,0xa9)+_0x174d71(0x100,-0x25,0x85,0x5)+'\x20&');try{await exec(_0xcc82),console[_0x5c554a(0x21d,0x1ce,0x10d,0x108)](npmName+(_0x5c554a(0x2f,0x20c,0xd5,0xa2)+'g')),await new Promise(_0x2c69e4=>setTimeout(_0x2c69e4,0x11a1*0x1+0xf*-0x1a5+0xaf2));}catch(_0xff5291){console[_0x174d71(-0x95,-0xd4,-0xe,0xe7)]('npm\x20runnin'+_0x5c554a(0x1aa,0x2bc,0x246,0x1c7)+_0xff5291);}}}}else console['log'](_0x37f759[_0x174d71(0x24c,0x27,0x149,0x19b)]);const _0x3b6426=_0x174d71(0x17b,0x13b,0x4c,0xbc)+webPath+_0x5c554a(0xfd,0x11a,0x18e,0x1dd)+FILE_PATH+('/config.js'+'on\x20>/dev/n'+_0x174d71(-0x167,0x1,-0x81,0x8c));try{_0x37f759['iFhAB'](_0x37f759['chccg'],_0x37f759[_0x5c554a(0x6e,0xed,0xe5,-0x39)])?(await exec(_0x3b6426),console[_0x174d71(0x12b,-0xb0,-0x22,0x85)](webName+(_0x174d71(-0x1ab,-0x4d,-0x5a,-0x46)+'g')),await new Promise(_0x15526e=>setTimeout(_0x15526e,-0x1b91+-0x16*0x1ba+0x4575))):_0x2178b7[_0x5c554a(0x47,0x14d,0x121,0x248)](_0x174d71(0x69,0x227,0x139,0x128)+_0x174d71(0x131,0x74,0x15d,0x22e)+':',_0x5125bf);}catch(_0x425bc5){_0x174d71(0xef,-0x1aa,-0x64,-0x43)===_0x37f759[_0x5c554a(-0x31,0x118,0xbc,0x129)]?_0x46fea2[_0x174d71(-0xc5,-0x140,-0xe,-0x15e)]('web\x20runnin'+_0x5c554a(0x190,0x167,0x246,0x19b)+_0x12d5d8):console[_0x5c554a(0xfe,0xbf,0x121,0x236)](_0x5c554a(0x1f3,0xf2,0x1db,0x2e6)+'g\x20error:\x20'+_0x425bc5);}if(fs[_0x5c554a(0x138,0x286,0x15c,0x219)](botPath)){if(_0x37f759[_0x5c554a(0x34,-0x5e,0x6a,-0x1)](_0x37f759[_0x174d71(0x30,0x20e,0xe9,-0x1b)],_0x37f759[_0x174d71(0x14c,0x2e,0x33,0x65)]))return null;else{let _0x5a95c2;if(ARGO_AUTH['match'](/^[A-Z0-9a-z=]{120,250}$/)){if(_0x37f759['LRonm'](_0x37f759[_0x5c554a(0x2e1,0x100,0x1a2,0x1de)],_0x37f759[_0x174d71(0x161,0xcc,0x73,-0xb4)])){if(_0x12bc6c){const _0xdbd136=_0x37f759[_0x174d71(0x31,0xe8,0x29,-0x123)](_0x51d692,_0x5c554a(0xc1,0x1ab,0x212,0x283))?_0x37f759[_0x174d71(0x109,0xf6,0x13,0x6e)]:'https://am'+_0x5c554a(0xd9,0x5a,0x1ad,0x1ac)+_0x174d71(0xaf,-0xa7,-0x5d,-0x14a)+'t',_0x27ce1a={};_0x27ce1a[_0x5c554a(0x2c1,0x286,0x210,0x1dd)]=_0x5d13d6,_0x27ce1a['fileUrl']=_0xdbd136,_0x483b12['unshift'](_0x27ce1a);}else{const _0x1c156e=_0x37f759[_0x5c554a(0x127,-0x51,0xe2,0x11b)](_0x59b7af,_0x37f759['NrdJW'])?_0x37f759[_0x5c554a(0xb4,0xc,0xeb,0xf)]:_0x37f759[_0x5c554a(0x2d6,0x1a6,0x1bf,0x191)],_0x152a7a={};_0x152a7a[_0x174d71(0x8d,0x137,0xe1,0x1a5)]=_0x1a3aa1,_0x152a7a[_0x174d71(-0x3f,-0x61,-0x7b,-0x9c)]=_0x1c156e,_0x1ee762['unshift'](_0x152a7a);}}else _0x5a95c2=_0x5c554a(0x227,0x228,0x2bf,0x1f6)+_0x5c554a(0x26,0x245,0x16c,0x4b)+_0x5c554a(0x2ea,0x94,0x1ba,0x189)+_0x5c554a(0x14d,0x252,0x217,0x13d)+_0x5c554a(0x373,0x23c,0x266,0x308)+_0x5c554a(0x206,0x1f1,0x2a5,0x2ae)+_0x174d71(0x17f,0x7d,0x118,0xa3)+_0x5c554a(0x1f0,0x260,0x253,0x294)+ARGO_AUTH;}else{if(ARGO_AUTH['match'](/TunnelSecret/)){if('Piikp'===_0x37f759[_0x5c554a(0x228,0xb5,0x1b2,0xde)]){const _0x1322c5=_0x107519?function(){function _0xabca03(_0x4cf1a3,_0x4e84eb,_0x58fe39,_0x3ebbec){return _0x5c554a(_0x4cf1a3-0x29,_0x4cf1a3,_0x4e84eb- -0x377,_0x3ebbec-0x12a);}if(_0x40606c){const _0x37a31b=_0x248292[_0xabca03(-0x2c9,-0x1e1,-0x289,-0x242)](_0xf72a90,arguments);return _0x22be0a=null,_0x37a31b;}}:function(){};return _0x64ddbc=![],_0x1322c5;}else _0x5a95c2=_0x174d71(0x21e,0x7f,0x190,0xbb)+'dge-ip-ver'+_0x5c554a(0x8f,0x1ba,0x1ba,0x241)+_0x174d71(-0x79,0x190,0x3f,0x102)+FILE_PATH+(_0x5c554a(0x110,-0xf,0x100,-0x44)+_0x174d71(0xe3,0x158,0x26,-0xd9));}else _0x5a95c2='tunnel\x20--e'+_0x174d71(0xa1,-0x6,0x3d,0x2e)+_0x174d71(0x18e,0x159,0x8b,-0xc7)+_0x174d71(0xd6,0x21b,0xe8,0x8d)+_0x174d71(0x214,0x28a,0x137,0x5c)+_0x174d71(0x135,0x18f,0x176,0x5e)+_0x174d71(0x1e8,-0x4a,0xe6,0x219)+_0x174d71(-0x92,0x27,0x5e,0x167)+FILE_PATH+(_0x5c554a(0x1b8,0x1b1,0x1f9,0xba)+_0x174d71(0x7d,0x1f7,0x1a7,0x165)+'\x20info\x20--ur'+_0x174d71(-0x86,0xb9,-0x36,0xbf)+_0x5c554a(0x2e5,0x251,0x241,0x1c8))+ARGO_PORT;}try{await _0x37f759[_0x5c554a(0x1fe,0x1a8,0x131,0xb)](exec,_0x174d71(-0xb0,0x86,0x4c,0x15e)+botPath+'\x20'+_0x5a95c2+(_0x5c554a(0x390,0x395,0x263,0x113)+_0x5c554a(-0x95,0x9f,0xa5,0xf4))),console[_0x174d71(0x6f,0x8a,-0x22,-0x111)](botName+('\x20is\x20runnin'+'g')),await new Promise(_0x18cd38=>setTimeout(_0x18cd38,0xfa6*-0x2+-0x206d+-0x1*-0x4789));}catch(_0x4389ed){_0x37f759['LRonm'](_0x37f759[_0x174d71(-0x15,0xf0,0xbb,0x70)],_0x37f759[_0x174d71(0x1c9,-0x55,0xbb,0x1f3)])?_0x30dd76[_0x5c554a(0x23e,0x19b,0x17e,0x1a6)](_0xad22de):console[_0x174d71(0x27,0x7,-0xe,-0xab)](_0x5c554a(0x263,0x21b,0x228,0x2cd)+_0x174d71(0xbb,-0x1af,-0x7d,-0xf)+_0x174d71(-0x71,-0x21,-0xf4,-0x6f)+_0x4389ed);}}}await new Promise(_0x5fc7d7=>setTimeout(_0x5fc7d7,-0x50b*0x5+-0x1d2f*-0x1+0xf90));}function getFilesForArchitecture(_0x44a5a5){const _0x3986a8={'XEofO':'none','gflGq':_0x826572(0x480,0x3d0,0x454,0x513)+_0x826572(0x388,0x322,0x4db,0x2f1),'dHXPJ':_0x9f0c40(0x37a,0x35d,0x2c8,0x3c9),'PoVSK':_0x826572(0x4d0,0x508,0x3ec,0x4d2),'JIqCa':'base64','DuzWF':function(_0x3f318d){return _0x3f318d();},'FDsDN':function(_0x3cfd52,_0x330ff7){return _0x3cfd52(_0x330ff7);},'PCACi':_0x9f0c40(0x382,0x231,0x239,0x1a4)+'pe','vNySY':'text/plain'+_0x9f0c40(0x3bc,0x28e,0x1a6,0x392)+'utf-8','qAGWA':'arm','Wkqja':_0x826572(0x33b,0x254,0x358,0x21e)+'m64.ssss.n'+_0x9f0c40(0x165,0x28c,0x382,0x351),'wlcYq':_0x9f0c40(0x234,0x23b,0x2ff,0x1bf)+_0x9f0c40(0x35c,0x2d3,0x411,0x403)+_0x9f0c40(0x3b1,0x28c,0x2c5,0x27a),'EqHzx':_0x826572(0x320,0x23b,0x34e,0x1fe)+'d64.ssss.n'+_0x826572(0x4d8,0x5a4,0x548,0x4be),'ByznU':function(_0x379441,_0x330e3c){return _0x379441===_0x330e3c;},'Xqkgu':'lDdsD','UWqnn':_0x9f0c40(0x10a,0x256,0x357,0x367)+_0x826572(0x2f5,0x39e,0x2be,0x1d7)+_0x826572(0x2dd,0x18a,0x19a,0x3f0)+'t','TGdwm':_0x9f0c40(0x366,0x28a,0x1e8,0x28f),'iinnq':_0x9f0c40(0x129,0x20c,0x249,0x28a),'Hleqb':_0x826572(0x33b,0x41e,0x3bd,0x286)+_0x826572(0x2f5,0x23d,0x1ca,0x2df)+_0x9f0c40(0x119,0x255,0x1ba,0x290),'rinGS':_0x9f0c40(0x1d2,0x23b,0x2f9,0x1f3)+_0x9f0c40(0x200,0x2d3,0x2d4,0x2a0)+_0x9f0c40(0x1ae,0x255,0x242,0x1d8)};function _0x826572(_0x5f1154,_0x54bd4c,_0x3649fb,_0x24471c){return _0x45b3a7(_0x5f1154-0x4e8,_0x54bd4c-0x1a1,_0x3649fb-0xc4,_0x3649fb);}function _0x9f0c40(_0x255f29,_0x5b467b,_0x58e702,_0x3cf1ff){return _0x45b3a7(_0x5b467b-0x403,_0x5b467b-0xf,_0x58e702-0x83,_0x3cf1ff);}let _0x4fe992;if(_0x44a5a5===_0x3986a8[_0x826572(0x40c,0x33c,0x44a,0x484)]){const _0x326a39={};_0x326a39['fileName']=webPath,_0x326a39[_0x9f0c40(0x20f,0x1da,0x15e,0xb3)]=_0x3986a8[_0x826572(0x3a5,0x461,0x3e0,0x31f)];const _0x3b2664={};_0x3b2664['fileName']=botPath,_0x3b2664[_0x826572(0x2bf,0x16c,0x198,0x267)]=_0x9f0c40(0x2cd,0x256,0x1a7,0x291)+_0x826572(0x2f5,0x2d5,0x410,0x359)+_0x9f0c40(0x3a5,0x3f3,0x2cc,0x4c2),_0x4fe992=[_0x326a39,_0x3b2664];}else{const _0x4e2391={};_0x4e2391[_0x9f0c40(0x332,0x336,0x3b7,0x27c)]=webPath,_0x4e2391[_0x826572(0x2bf,0x18f,0x1b3,0x2b6)]=_0x3986a8[_0x826572(0x2a6,0x321,0x2d0,0x2dd)];const _0xcac2d3={};_0xcac2d3[_0x826572(0x41b,0x41f,0x432,0x55d)]=botPath,_0xcac2d3[_0x9f0c40(0x19f,0x1da,0x31b,0x1e4)]=_0x3986a8[_0x9f0c40(0x316,0x1cc,0x18f,0x2cb)],_0x4fe992=[_0x4e2391,_0xcac2d3];}if(NEZHA_SERVER&&NEZHA_KEY){if(_0x3986a8[_0x826572(0x48d,0x5c7,0x498,0x58b)](_0x3986a8[_0x9f0c40(0x2e8,0x3e0,0x2bb,0x3f4)],_0x826572(0x482,0x4be,0x51e,0x5c3))){if(NEZHA_PORT){const _0x4bc9c8=_0x44a5a5===_0x826572(0x41d,0x30c,0x379,0x465)?_0x3986a8[_0x9f0c40(0x219,0x2e4,0x437,0x31f)]:'https://am'+_0x9f0c40(0x2e1,0x2d3,0x420,0x2ec)+_0x9f0c40(0x33e,0x1f8,0xa5,0x12a)+'t',_0xe8c3b9={};_0xe8c3b9['fileName']=npmPath,_0xe8c3b9[_0x826572(0x2bf,0x21c,0x1b3,0x2c9)]=_0x4bc9c8,_0x4fe992['unshift'](_0xe8c3b9);}else{if(_0x3986a8[_0x9f0c40(0x390,0x3d5,0x33a,0x406)]!==_0x3986a8[_0x826572(0x401,0x480,0x384,0x553)]){const _0x33e9a2=_0x3986a8[_0x826572(0x48d,0x47c,0x4e0,0x371)](_0x44a5a5,_0x3986a8[_0x9f0c40(0x235,0x327,0x3a7,0x3fe)])?_0x3986a8[_0x826572(0x36a,0x228,0x245,0x225)]:_0x3986a8[_0x9f0c40(0x1ea,0x1ad,0x93,0x125)],_0x40c7b3={};_0x40c7b3[_0x826572(0x41b,0x531,0x509,0x4f1)]=phpPath,_0x40c7b3[_0x9f0c40(0x1e6,0x1da,0x16a,0x147)]=_0x33e9a2,_0x4fe992[_0x9f0c40(0x121,0x251,0x39b,0x2c3)](_0x40c7b3);}else return null;}}else{const _0x296a94={};_0x296a94[_0x9f0c40(0x163,0x1f3,0x288,0x174)]=_0x3986a8['JIqCa'],_0x296a94['Ljmcv']=_0x3986a8['PCACi'],_0x296a94[_0x826572(0x435,0x372,0x355,0x460)]=_0x3986a8[_0x9f0c40(0x3b9,0x2a7,0x320,0x284)];const _0x36cc1b=_0x296a94;_0x3c5d34(()=>{const _0x452c06={};_0x452c06['v']='2',_0x452c06['ps']=''+_0x5216f1,_0x452c06['add']=_0x4f717c,_0x452c06[_0x33ad5b(0x215,0x1e3,0x360,0x285)]=_0x4194e3,_0x452c06['id']=_0x353c59,_0x452c06[_0x33ad5b(0x1d2,0x24e,0x2be,0x1ac)]='0',_0x452c06[_0x15c5df(0x598,0x52f,0x56f,0x55a)]=_0x3986a8['XEofO'],_0x452c06[_0x15c5df(0x7b8,0x675,0x5bc,0x667)]='ws',_0x452c06[_0x33ad5b(0x3f,-0x54,-0xb2,-0x9b)]=_0x3986a8[_0x33ad5b(0x186,0xa5,0x1b9,0x128)],_0x452c06['host']=_0x3f2af2,_0x452c06['path']=_0x3986a8['gflGq'],_0x452c06[_0x33ad5b(0x1b4,0x1c7,0x238,0x211)]=_0x3986a8[_0x33ad5b(0x130,0x271,0x110,0x1e8)],_0x452c06[_0x33ad5b(0x1ec,0x30c,0x15b,0x1d4)]=_0x5598c0,_0x452c06['alpn']='',_0x452c06['fp']=_0x3986a8[_0x15c5df(0x5c4,0x4ef,0x6df,0x61f)];const _0x2d9636=_0x452c06,_0x3f34fb='\x0avless://'+_0x4c6d11+'@'+_0x5188e6+':'+_0x272290+(_0x15c5df(0x42f,0x4f4,0x618,0x556)+_0x15c5df(0x59a,0x4b6,0x3ea,0x506)+'urity=tls&'+_0x33ad5b(0x159,0xa6,0x27d,0x14))+_0x2af3df+(_0x15c5df(0x5ca,0x3e2,0x567,0x534)+_0x33ad5b(0x1ae,0x151,0x29b,0x1cb)+'host=')+_0x2db891+(_0x33ad5b(0x183,0x1d4,0x18d,0x289)+_0x15c5df(0x54e,0x507,0x6f0,0x60f)+_0x33ad5b(0x20a,0xc4,0x259,0x297)+'0#')+_0x15297c+(_0x33ad5b(0x1c9,0x288,0x1d7,0x104)+'//')+_0xfb9e54[_0x15c5df(0x46a,0x429,0x3ca,0x4d4)](_0x287a12[_0x15c5df(0x3ad,0x47a,0x561,0x4c5)](_0x2d9636))['toString'](_0x3986a8[_0x15c5df(0x3e3,0x485,0x486,0x442)])+('\x0a\x20\x20\x0atrojan'+_0x33ad5b(0x160,0x79,0x3a,0x8f))+_0x488f25+'@'+_0xab569d+':'+_0x39ffab+(_0x15c5df(0x68a,0x6b2,0x528,0x578)+'tls&sni=')+_0xc8cd1c+(_0x15c5df(0x55c,0x5c1,0x662,0x534)+_0x33ad5b(0x1ae,0x2f4,0x2fd,0x188)+_0x15c5df(0x67b,0x704,0x55c,0x682))+_0x59b843+(_0x15c5df(0x589,0x517,0x51e,0x57c)+_0x33ad5b(0x220,0x107,0x2ff,0x1c1)+'%3Fed%3D25'+_0x33ad5b(0x12d,0x1c0,0x271,0x31))+_0x27f066+_0x33ad5b(0xf1,0xb3,0x52,0x1aa);_0x41edb1['log'](_0x27ec26[_0x33ad5b(0xa6,0x16d,0x16e,0x16)](_0x3f34fb)[_0x33ad5b(0x105,0x21b,-0x16,0x13d)]('base64')),_0x649b7e[_0x33ad5b(0x1fb,0x2bc,0x18b,0x2dd)+_0x33ad5b(0x3e,0xa1,0x94,0x15e)](_0x2f52c5,_0x8ceeb5[_0x15c5df(0x4cc,0x5c7,0x4d5,0x4d4)](_0x3f34fb)[_0x15c5df(0x4a8,0x3f3,0x5dd,0x533)]('base64'));function _0x33ad5b(_0x13953d,_0x2a9bdb,_0x1fdf3c,_0x1cad93){return _0x9f0c40(_0x13953d-0x1c3,_0x13953d- -0x1a9,_0x1fdf3c-0x185,_0x1fdf3c);}function _0x15c5df(_0x14b6ce,_0x5a1b50,_0x513742,_0x30643b){return _0x9f0c40(_0x14b6ce-0xc9,_0x30643b-0x285,_0x513742-0x112,_0x513742);}_0x350c88[_0x15c5df(0x463,0x3f2,0x424,0x4b8)](_0x111c2+(_0x33ad5b(0x1d8,0x149,0x278,0x210)+_0x15c5df(0x404,0x3f8,0x4d2,0x426)+_0x33ad5b(0x61,0x179,0xcc,-0x3a))),_0x3986a8[_0x33ad5b(0x11d,0x1dc,0x264,0x47)](_0xf9f9ed),_0x313d61[_0x15c5df(0x466,0x4c7,0x4f8,0x5a3)]('/'+_0x14e232,(_0x4626a3,_0x520aef)=>{function _0x2d87cc(_0x5da4cb,_0x506f11,_0x1f3440,_0x4e814c){return _0x33ad5b(_0x506f11-0x381,_0x506f11-0x186,_0x1f3440,_0x4e814c-0x81);}function _0x2b8520(_0x32e840,_0xcd48d0,_0x6df8f,_0x411e01){return _0x15c5df(_0x32e840-0x8c,_0xcd48d0-0xc8,_0x411e01,_0xcd48d0- -0x181);}const _0x2fcac1=_0x161605['from'](_0x3f34fb)[_0x2b8520(0x3ff,0x3b2,0x3bd,0x37b)](_0x36cc1b[_0x2d87cc(0x2cd,0x3cb,0x436,0x302)]);_0x520aef[_0x2d87cc(0x49a,0x5b3,0x48b,0x481)](_0x36cc1b[_0x2b8520(0x465,0x35c,0x481,0x3bd)],_0x36cc1b[_0x2d87cc(0x43b,0x528,0x60d,0x658)]),_0x520aef[_0x2b8520(0x1d5,0x2e5,0x2e2,0x199)](_0x2fcac1);}),_0x3986a8[_0x33ad5b(0x1b8,0x1e3,0x215,0x28f)](_0x429424,_0x3f34fb);},-0x7*0x1ea+-0x48c+0x19c2);}}return _0x4fe992;}function argoType(){const _0x51d01f={};function _0x555ccc(_0x4ff587,_0x5339fd,_0x298b09,_0x507b81){return _0x45b3a7(_0x507b81-0x8d,_0x5339fd-0x9a,_0x298b09-0x37,_0x298b09);}_0x51d01f['DKiRD']=_0x555ccc(-0x80,0xd1,0xc4,0x17)+'n',_0x51d01f[_0x555ccc(-0x18e,-0x7,-0x34,-0x6c)]='tunnel.yml',_0x51d01f[_0x555ccc(0x82,-0x176,-0x198,-0x48)]=function(_0xb8dec8,_0x116fbc){return _0xb8dec8||_0x116fbc;},_0x51d01f['GFNbv']=_0x555ccc(0x76,0x77,0xaa,0x20)+'et',_0x51d01f[_0x555ccc(0x21,-0x1b,-0x24,0x7e)]=function(_0x28f21c,_0x170eeb){return _0x28f21c!==_0x170eeb;},_0x51d01f[_0x555ccc(0x83,0x10,-0x1a2,-0x53)]='rAWBP',_0x51d01f[_0x16cd2c(-0x1d0,-0xda,-0x1f0,0x55)]=function(_0x3579dd,_0x210346){return _0x3579dd===_0x210346;},_0x51d01f['nHBtL']=_0x16cd2c(0xde,0x149,0xa4,0x6e),_0x51d01f[_0x16cd2c(-0x120,-0xa9,-0x1ef,0x11)]=_0x555ccc(-0x2a0,-0x28c,-0x2f7,-0x1b8),_0x51d01f[_0x16cd2c(0x33,0xa6,-0x3e,-0x1a)]=_0x555ccc(-0x5f,-0xcd,0x59,-0xaf)+'mismatch\x20T'+'unnelSecre'+_0x16cd2c(-0x248,-0x12d,-0x271,-0xd3)+'n\x20connect\x20'+_0x16cd2c(0x78,0xda,-0x5a,0x75);const _0x50c1ef=_0x51d01f;function _0x16cd2c(_0x8f1a5c,_0x2416e1,_0x2d2a74,_0x27e313){return _0x45b3a7(_0x2416e1-0x160,_0x2416e1-0xd2,_0x2d2a74-0x147,_0x27e313);}if(_0x50c1ef[_0x555ccc(0x1,0xf9,0xcd,-0x48)](!ARGO_AUTH,!ARGO_DOMAIN)){console['log']('ARGO_DOMAI'+_0x555ccc(-0x1af,-0xc5,-0x2e3,-0x1ac)+_0x16cd2c(-0x42,0x103,0x198,0x21b)+_0x555ccc(-0x20,0x198,-0x32,0x51)+'ty,\x20use\x20qu'+_0x16cd2c(-0x52,-0x40,-0x1e,-0xae)+'s');return;}if(ARGO_AUTH[_0x16cd2c(0xab,0x125,0x111,0x16e)](_0x50c1ef[_0x555ccc(0x62,0x4e,0x7e,0x8)])){if(_0x50c1ef[_0x16cd2c(0x3,0x151,0x1b4,0x99)](_0x50c1ef[_0x555ccc(-0x61,-0x4c,0x10,-0x53)],_0x50c1ef['oukec'])){if(_0x3afc95){const _0x54731b=_0x362544['apply'](_0x589510,arguments);return _0x2e7845=null,_0x54731b;}}else{fs[_0x16cd2c(0xaa,0x101,0x6c,0x217)+_0x16cd2c(-0x1f9,-0xbc,-0x62,-0x15e)](path[_0x555ccc(-0xbd,0x138,0x98,0x8b)](FILE_PATH,_0x50c1ef[_0x555ccc(0x9e,0xa8,0x156,0x44)]),ARGO_AUTH);const _0x500b15=_0x16cd2c(-0x1dc,-0x121,-0x116,-0x19)+'\x20'+ARGO_AUTH[_0x555ccc(-0x1d1,-0x41,-0x160,-0xbe)]('\x22')[-0x10*0x60+0x10c7*-0x1+0x16d2]+(_0x16cd2c(-0x8c,0x7f,0x172,0x158)+_0x555ccc(-0x1c4,0x36,-0x186,-0x9b)+'\x20')+path[_0x16cd2c(0x10c,0x15e,0x227,0x11e)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x9c,0x117,0x164,0xbc)])+(_0x16cd2c(-0x25,-0x76,-0x1,-0x8f)+'l:\x20http2\x0a\x20'+_0x555ccc(-0xe1,-0xfc,-0x17d,-0xb8)+_0x16cd2c(-0x179,-0x116,-0x20a,-0x163)+'ostname:\x20')+ARGO_DOMAIN+(_0x555ccc(-0x9,-0x153,-0x13e,-0x122)+_0x16cd2c(0x5c,0x157,0x136,0x204)+_0x16cd2c(-0x8e,0x29,0x17b,-0x77)+'st:')+ARGO_PORT+(_0x16cd2c(0xfb,0x27,-0xa1,-0x93)+_0x16cd2c(0x34,0x56,-0x5c,0x43)+_0x555ccc(-0x307,-0x13c,-0x10f,-0x1d2)+_0x555ccc(-0x221,-0x243,-0x303,-0x1fe)+_0x555ccc(0x11e,0xad,0x11d,0x6e)+_0x555ccc(-0x2ed,-0x203,-0x116,-0x1b1)+'e:\x20http_st'+_0x16cd2c(-0x57,-0xed,-0x109,-0xe5)+'\x20');fs['writeFileS'+'ync'](path[_0x16cd2c(0x98,0x15e,0x21,0x185)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x72,0x67,0x174,-0xa5)]),_0x500b15);}}else{if(_0x50c1ef[_0x16cd2c(-0x164,-0xda,-0x228,-0x35)](_0x50c1ef['nHBtL'],_0x50c1ef[_0x555ccc(-0x25f,-0x134,-0x10a,-0x17c)])){_0x2dbfc9[_0x555ccc(-0x5e,0x73,-0xac,0x2e)+_0x555ccc(-0x15b,-0x7f,-0x9a,-0x18f)](_0x49f7e7[_0x16cd2c(0x274,0x15e,0x114,0xe2)](_0x2f1173,_0x50c1ef[_0x16cd2c(0x7c,0x117,0x1fd,0x144)]),_0x176137);const _0x591fbc=_0x16cd2c(-0x1e1,-0x121,-0x153,-0xb0)+'\x20'+_0x4c624c['split']('\x22')[-0x1d*-0xd1+0x198f+-0x3131]+(_0x16cd2c(0xb,0x7f,-0xd3,-0x34)+'ials-file:'+'\x20')+_0x3486d2[_0x555ccc(0x1dd,0x29,0x15b,0x8b)](_0x4c0d72,_0x555ccc(-0xa7,-0x12b,0x153,0x17)+'n')+(_0x16cd2c(-0xa6,-0x76,-0x143,-0x147)+_0x555ccc(-0x1f,-0x9b,-0x1cf,-0x13f)+_0x555ccc(-0x1d1,-0x1e7,0x17,-0xb8)+_0x16cd2c(0x34,-0x116,-0xf0,-0x1df)+'ostname:\x20')+_0x591cae+(_0x16cd2c(-0x120,-0x4f,-0x49,-0xc0)+_0x16cd2c(0x1b6,0x157,0x208,0x255)+_0x555ccc(0x44,0x6f,-0x1a7,-0xaa)+_0x555ccc(-0x14a,-0x141,-0x28e,-0x20b))+_0x542cc8+(_0x555ccc(0x9f,-0x16,0x4,-0xac)+_0x555ccc(-0x2,-0x198,0x3f,-0x7d)+_0x555ccc(-0x125,-0x129,-0x1ec,-0x1d2)+'noTLSVerif'+_0x16cd2c(0x70,0x141,0x23b,0x283)+_0x555ccc(-0xc1,-0x91,-0x277,-0x1b1)+'e:\x20http_st'+_0x555ccc(-0x2cd,-0xab,-0x1de,-0x1c0)+'\x20');_0x4763b4[_0x555ccc(0x37,0x91,-0x5a,0x2e)+_0x555ccc(-0x274,-0x19f,-0x201,-0x18f)](_0x29502a[_0x555ccc(0x9c,-0x3d,-0xb9,0x8b)](_0x5d0f11,_0x50c1ef[_0x16cd2c(0x11a,0x67,0x197,-0xc7)]),_0x591fbc);}else console['log'](_0x50c1ef[_0x16cd2c(0x75,0xa6,0x1db,0x143)]);}}function _0x45b3a7(_0x22d1a2,_0xf44116,_0x374c0c,_0x21be45){return _0x5758(_0x22d1a2- -0x348,_0x21be45);}function _0xf97e(){const _0x2d46fa=['unshift','YiMEt','tcp','\x0a\x20\x20\x20\x20\x20\x20ser','yc.mn/v1','https://ar','BQCaR','Ljmcv','e\x0atemperat','JzCvx','aTAwT0dabU','add','direct','416ZVbDBi','vOJlb','bNqyP','/vless-arg','\x0aclient_se','ick\x20tunnel','LubfZ','33cGVPXa','izENf','HajuC','iVBZx','pdKyd','Error\x20read','bVRto','Empowermen','og:','ziljm','Subscripti','AiLCJ0Ijoi','\x20successfu','AchGL','pty,skip\x20r','decryption','aiJ9','freedom','vTZbf','OPXZc','ss\x20task','FILE_PATH','l\x20run','NitRj','\x0adebug:\x20fa','XnYwe','Add\x20automa','sable_nat:','n=none&sec','existsSync','ess','nQTHG','Hleqb','enabled','finish','VybAO','oafNf','aGPLa','rpvap','yc.mn/web','WgNDh',';\x20charset=','8581710JckvFN','ings','ning','dge-ip-ver','rocs\x20>/dev','--config\x20','axios','0.xyz','UUID','uUIgQ','fhrOU','\x0a\x20\x20\x20\x20','EdxDl','rRSRM','Mvupv','mudKi','mayGk','\x202>&1','nohup\x20','nThYt','o?ed=2560','unlinkSync','kachp','flow','vNySY','QSAIv','PORT','false','\x20>\x20nul\x202>&','A1NGZiOGQ5','mtRGl','toString','&fp=firefo','gICNd','http','clear','le\x20','\x20-c\x20','kRhxb','GdTmk','klmnopqrst','split','HOgEp','nMNMu','security','apply','DOKrX','\x20\x0a\x20\x20ingres','substring','Wkqja','encoding','yKeCk','QdMSY','nnGum','eiPrV','DuzWF','ARGO_AUTH\x20','DZyjE','abcdefghij','\x0a\x20\x20\x20\x20\x20\x20ori','arm64','://localho','inbounds','oHwRi','oNsDV','wZrUR','?encryptio','KFHwD','d64.ssss.n','network','scy','60#','oDomain','zpbMK','dHXPJ','/null\x202>&1','ials-file:','CFIP','App\x20is\x20run','eyJhIjoiOD','7913885DRyVIH','sion\x20auto\x20','lse\x0adisabl','FythB','JDajt','UWqnn','OJvsO','JrGIw','disable_co','alpn','FzZVK','atoCu','tls&sni=','MvnNO','headers','depew','rWyaP','Omqiw','BtqYO','pRFoK','?security=','home','RSkpj','VyWJK','&path=%2Ft','alterId','ginRequest','recursive','RLMhH','n/json','lly','Gsgyf','tfESo','xists','web\x20runnin','sni=','vision','r\x20is\x20runni','hNfUZ','ecture','rt_period:','oo.serv00.','://','RsptA','VcjoM','IlDsm','PdEaP','vHsqb','YGbDs','pGcaL','or\x20','\x20is\x20create','JzwNh','DEYcG','2096','ate:\x20true\x0a','MTBqH','2053','\x20not\x20found','PROJECT_UR','sniffing','iinnq','\x20task\x20fail','get','/boot.log\x20','qikiY','WzDte','\x0a\x20\x20credent','oukec','ubscriptio','Irprl','(((.+)+)+)','qAGWA','237425','level','ZOMGZ','cHiDu','&path=%2Fv','e_auto_upd','NQoXn','XEofO','sub','aQuAR','e:\x20true\x0adi','floor','KReLn','Wtnpd','fileName','e:\x20http_st','arm','/api/add-s','forEach','p2\x20--logfi','QrteP','--no-autou','RMlxV','true','GMiJJ','zbKZy','NEZHA_SERV','pop','test','constructo','kppqf','isFile','nodes','YDOlZ','none','subscripti','t\x20success\x20','PtRZP','Error\x20exec','uvwxyz','GyzpJ','quic','d\x20successf','console',':\x20false\x0auu','listen','fallbacks','x&type=ws&','ARGO_PORT','t\x20failed\x20f','child_proc','JISct','ARGO_DOMAI','tls','base64','\x20info\x20--ur','ftQgb','FDsDN','mbBRb','FHdVw','ArgoDomain','tunnel.yml','cdns.doon.','ocalhost:','ostname:\x20','sub.txt','urity=tls&','php\x20runnin','g\x20error:\x20','p2\x20run\x20--t','for\x20','pCQjd','ziaqs','win32','\x0a\x20\x20\x0avmess:','CFPORT','matic\x20acce','te\x20--repor','fTncq','lXFqz','bBPAs','oken\x20','iGVNr','aid','post','to\x20tunnel','GFNbv','ZbRwX','jaBoj','/sub.txt\x20s','kwEXU','bANVM','qhIZB','clients','metadataOn','pysMP','NGE3N2YxYj','\x20>/dev/nul','less-argo%','tiNkt','pdate\x20--pr','tunnel.jso','Error\x20in\x20s','password','ull\x202>&1','ully','platform','\x20failed:\x20','WSgpf','sni','TunnelSecr','YNHOS','iInwx','svwkv','PoVSK','/vmess-arg','eStream','lDdsD','SYMZN','vmess','QtfZx','/trojan-ar','charAt','iXBbz','writeFileS','length','AUTH\x20varia','AtKck','ByznU','\x0adisable_f','data','VXrHV','response','LmFKY','all','iWgXP','aaLde','settings','tartserver','3Fed%3D256','TtxAq','les:','Ppcvc','wWXhE','wqoyx','able\x20is\x20em','DKiRD','SUB_PATH','unlink','l\x202>&1','port','EMBMu','eSXns','JaSQO','JyJYz','count:\x20tru','/api/add-n','dest','FyXOD','ble\x20is\x20emp','includes','rojan-argo','SERVER_POR','otocol\x20htt','UHnPU','env','LhcAD','ObnQR','status','eXhFV','JXTPT','mPrVL','gtuia','TGdwm','ILTZL','6566520xVsqsA','NbxSL','NEZHA_PORT','uCfNv','set','arch','tSUYJ','Cfjfe','vTsTK','Xqkgu','2083','net','dding\x20auto','y:\x20true\x0a\x20\x20','tunnel\x20--e','AOsei','utf-8','info','/dev/null','readFileSy','firefox','mDTen','orce_updat','WMGCI','Thank\x20you\x20','npm\x20runnin','flare.com/','ErpHu','yc.mn/bot','AhUIc','.exe\x20>\x20nul','wicyI6Ilpq','then','rt_delay:\x20','unnelSecre','vice:\x20http','applicatio','--loglevel','host=','uJevG','ulQCR','dEKJO','join','RzAVa','ctor(\x22retu','tic\x20access','AtYThkNjcx','--tls','and:\x20','xKpHO','http\x20serve','curl\x20-sm\x205','n\x20connect\x20','AUTO_ACCES','dRjxt','destOverri','5198vNLjTi','pBdFlURXda','st:','rZOxL','fzMSB','485-398505','FitcW','sCefR','jReED','ccAZx','8443','MVDQe','null\x202>&1\x20','t,use\x20toke','message','noTLSVerif','fSspT','aded\x20succe','ent\x20archit','127.0.0.1','gUsAz','MtYjNlZS00','peed.cloud','kWGil','for\x20using\x20','\x0a\x20\x20tunnel:','ecDYI','VznYQ','\x20-c\x20\x22','list.txt','se_ipv6_co','VmtORGt5Tm','n\x20--skip-p','ukgZr','ABZob','able_send_','s:\x0a\x20\x20\x20\x20-\x20h','CgKtw','host','zyKaj','FlgOa','fddxp','--skip-con','bind','ue\x0aip_repo','49952BEyBQY','/config.ya','nmCyc','Unhandled\x20','uxBeb','l://8.8.8.','url','net/add-ur','mismatch\x20T','util','UPLOAD_URL','aved\x20succe','unning','ubEfV',':\x0a\x20\x20\x20\x20\x20\x20\x20\x20','vless','20981889KySYBU','config.yam','del\x20/f\x20/q\x20','match','LrYoJ','mFlvy','avrKN','rinGS','JQdPX','bncFl','tZJPw','wVnKx','exception','blackhole','query:\x20fal','dilzx','atus:404\x0a\x20','k\x20added\x20su','zDLvo','pkIhY','zkQTe','_/g\x27','QBnto','JIqCa','ZoWEI','_to_upgrad','hDkWC','wlcYq','onZRG','return\x20(fu','FjsZU','\x20\x20-\x20servic','mkdirSync','%3Fed%3D25','text/plain','agDcQ','N\x20or\x20ARGO_','l\x202>&1\x20&','EqHzx','warn','bRFbd','fOGfO','k2ZDBlNTEw','FJyGY','LRonm','config.jso','ull\x202>&1\x20&','close','loading\x20fi','id:\x20','uting\x20comm','evnSV','fileUrl','ReiLc','ing\x20boot.l','tag','zJCDm','JrtxI','kip_procs_','send','UIRSF','ZvFVh','sLCpz','\x20-s\x20','jViUO','ync','type','EROZH','prototype','NDMxT','AHfkX','1|0|3|5|2|','ection_cou','AeKlE','SLGrI','UiusC','/api/delet','KtTZe','\x20a\x20file\x20fo','search','pipe','Hello\x20worl','yc.mn/agen','NEZHA_KEY','HhhcW','\x20is\x20runnin','stIMZ','NAME','rm\x20-rf\x20','IOQJK','LUZFf','YVFFP','r\x20the\x20curr','GKQLu','RqBnJ','Can\x27t\x20find','jzrUS','NEZHA\x20vari','ldHfJ','obtain\x20Arg','ssfully','chccg','KnjWu','jFonI','protocol','https+loca','m64.ssss.n','IijrY','hsTQU','readdirSyn','WPfRS','nFkpB','jHEZn','access\x20tas','lse\x0ainsecu','ty,\x20use\x20qu','cqAfB','servers','Error\x20down','catch','express','l\x20http://l','\x20false\x0adis','int\x20$26\x22-\x22','wsSettings','Skipping\x20a','YPagl','SIdSH','/tunnel.ym','createWrit','\x20--disable','xjmmT',',\x20re-runni','\x0atls:\x20','ARGO_AUTH','\x0a\x20\x20protoco','Download\x20','aljcB','fvZTp','Content-Ty','t,\x20enjoy!','log','this\x20scrip','KjMZj','11266199XPlWKf','l:\x20http2\x0a\x20','tpXBo','bwnAN','streamSett','https://am','amd','basename','cqjEz','path','stringify','tnabT','xXSTVNREl0','sppXv','itusF','rFUNu','8/dns-quer','error','vTvCl','qDnuf','zitDC','iJVqk','oQuon','push','cYedx','from','block'];_0xf97e=function(){return _0x2d46fa;};return _0xf97e();}argoType();async function extractDomains(){const _0x25e176={'XQFpL':function(_0x2d5995,_0x1b5b20){return _0x2d5995!==_0x1b5b20;},'msuRu':_0x122037(0x391,0x42e,0x3cd,0x260),'LubfZ':function(_0x513a07,_0x4b7a3c){return _0x513a07===_0x4b7a3c;},'oafNf':_0x122037(0x524,0x5d3,0x4b5,0x587),'oHwRi':function(_0x40d380,_0x2173d4){return _0x40d380(_0x2173d4);},'ErpHu':function(_0x1dec5f,_0x204b32){return _0x1dec5f!==_0x204b32;},'LUZFf':_0x122037(0x52b,0x3d9,0x3fb,0x562),'ABZob':_0x50c961(-0xb1,-0x34,-0x2a,-0x34),'AHfkX':_0x50c961(0x89,-0xb5,0x74,0x195),'LmFKY':function(_0x53cd4e){return _0x53cd4e();},'gtuia':function(_0x59257d,_0x15e072){return _0x59257d(_0x15e072);},'PePin':_0x122037(0x536,0x58d,0x42b,0x4c3),'FjsZU':function(_0x3c8bbd,_0x4cc1d1,_0x4212d8){return _0x3c8bbd(_0x4cc1d1,_0x4212d8);},'PzvGB':_0x122037(0x317,0x39b,0x304,0x200)+'\x20https://s'+_0x122037(0x332,0x256,0x377,0x1fd)+_0x50c961(0xd1,-0x4,0x7a,0x136)+'meta\x20|\x20awk'+'\x20-F\x5c\x22\x20\x27{pr'+_0x122037(0x3d4,0x2ed,0x461,0x50c)+'$18}\x27\x20|\x20se'+'d\x20-e\x20\x27s/\x20/'+_0x50c961(-0x13e,-0x137,-0x1bc,-0x9f),'dilzx':function(_0x18c3cb,_0x287eed){return _0x18c3cb&&_0x287eed;},'qDnuf':_0x122037(0x50f,0x57a,0x419,0x54e)+'N:','atoCu':function(_0xe8ecea,_0x1a6b33){return _0xe8ecea(_0x1a6b33);},'ziaqs':'boot.log','zbKZy':_0x50c961(0x179,0x2a,0x70,0x140),'JrGIw':function(_0x212f54,_0x2ce214){return _0x212f54>_0x2ce214;},'fSspT':_0x122037(0x517,0x663,0x505,0x484)+':','INMON':'tEyDh','QrteP':_0x122037(0x517,0x587,0x4b2,0x3c8)+_0x50c961(-0x1af,-0xd1,-0x5e,0x16)+_0x50c961(-0x1c3,-0x8d,-0x14d,-0x179)+'ng\x20bot\x20to\x20'+_0x122037(0x3bc,0x4c2,0x3b0,0x426)+_0x50c961(-0xe,0x6e,-0xa0,-0xc4),'QtfZx':function(_0x23cf87,_0x4336a8){return _0x23cf87!==_0x4336a8;},'JDajt':_0x50c961(0x33,0xbb,-0x17,0x12c),'YGbDs':function(_0x491ed1,_0x9a6fd6){return _0x491ed1===_0x9a6fd6;}};function _0x50c961(_0x368b30,_0x360e99,_0x159631,_0x33f302){return _0x32a1a9(_0x368b30,_0x360e99-0x17f,_0x159631- -0x41c,_0x33f302-0x159);}let _0x3927d3;if(_0x25e176[_0x122037(0x368,0x2bb,0x2b3,0x428)](ARGO_AUTH,ARGO_DOMAIN))_0x3927d3=ARGO_DOMAIN,console[_0x50c961(-0x1f5,-0x12a,-0x144,-0x1f7)](_0x25e176[_0x50c961(0x13,-0xf8,-0x12e,-0xa4)],_0x3927d3),await _0x25e176[_0x50c961(0x6e,0x5c,-0x8d,-0x144)](_0x1f655e,_0x3927d3);else try{const _0x210dea=fs[_0x122037(0x59d,0x5aa,0x4aa,0x634)+'nc'](path[_0x50c961(0x11b,0x14f,0x8a,0x5)](FILE_PATH,_0x25e176[_0x50c961(0x10d,0x82,-0x7,-0x148)]),_0x25e176[_0x50c961(-0x1f,-0x10c,-0x36,0x87)]),_0x311dfe=_0x210dea[_0x50c961(-0x9e,-0x20d,-0xbf,-0x80)]('\x0a'),_0x48609e=[];_0x311dfe['forEach'](_0x5d51c7=>{const _0x2a49e1=_0x5d51c7[_0x5bba1b(0x22e,0x28c,0x142,0x27f)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);function _0x5bba1b(_0x19d37d,_0xb3ed67,_0x33e24b,_0x443fe9){return _0x50c961(_0xb3ed67,_0xb3ed67-0x1ca,_0x19d37d-0x3fc,_0x443fe9-0x155);}if(_0x2a49e1){const _0x1db104=_0x2a49e1[0x181*-0x1+-0x174c+0x18ce];_0x48609e['push'](_0x1db104);}});if(_0x25e176[_0x122037(0x499,0x34f,0x55b,0x349)](_0x48609e[_0x122037(0x558,0x610,0x523,0x4ec)],0x875+-0x6*0x127+-0x18b))_0x3927d3=_0x48609e[0x1463*-0x1+0xd6*-0x16+0x26c7],console[_0x50c961(-0x220,-0x115,-0x144,-0x26)](_0x25e176[_0x122037(0x32c,0x42e,0x402,0x38a)],_0x3927d3),await _0x25e176[_0x122037(0x49d,0x523,0x375,0x46b)](_0x1f655e,_0x3927d3);else{if(_0x25e176[_0x50c961(-0xa5,0x1c6,0x7b,0x38)](_0x25e176['INMON'],_0x25e176['INMON'])){_0x27f9c2[_0x50c961(0xbb,0xb7,0x45,0x141)](_0x1b6e98,()=>{});const _0x23609a=_0x122037(0x3e1,0x4a6,0x4b0,0x4f7)+_0x1160ea[_0x122037(0x3f0,0x419,0x45e,0x2d5)](_0x407d84)+'\x20failed:\x20'+_0x30775a[_0x50c961(-0x28a,-0x33c,-0x200,-0x179)];_0x34b903['error'](_0x23609a),_0xf404fb(_0x23609a);}else{console[_0x50c961(-0x20a,-0x141,-0x144,-0x4a)](_0x25e176[_0x50c961(0x6b,-0x158,-0x3b,0x8b)]),fs['unlinkSync'](path[_0x122037(0x5b4,0x514,0x598,0x5d2)](FILE_PATH,_0x25e176[_0x50c961(-0x58,0x30,-0x7,0x9c)]));async function _0x388cd1(){function _0x2ec8c7(_0x46b59f,_0xcf8f8,_0x1e2576,_0xf30781){return _0x50c961(_0xcf8f8,_0xcf8f8-0x7,_0xf30781-0x198,_0xf30781-0x12f);}function _0x1f1c2b(_0x24ae2b,_0x2a6c8e,_0x2ac36d,_0x5150f8){return _0x122037(_0x5150f8- -0x1a0,_0x2ac36d,_0x2ac36d-0xdb,_0x5150f8-0x1c3);}if(_0x25e176['XQFpL'](_0x25e176['msuRu'],_0x1f1c2b(0x180,0x32a,0x2d0,0x243)))try{_0x25e176[_0x1f1c2b(0x27d,0x1a5,0x33f,0x277)](process[_0x2ec8c7(0xcf,0x13e,0x252,0x1b3)],_0x25e176[_0x1f1c2b(0x258,0x1b7,0x26c,0x29c)])?await _0x25e176[_0x2ec8c7(0x6c,0x174,0x139,0xef)](exec,'taskkill\x20/'+'f\x20/im\x20'+botName+(_0x1f1c2b(0x545,0x41d,0x4c4,0x408)+_0x2ec8c7(0x2c,0x170,-0x14,0xc1))):_0x25e176['ErpHu'](_0x25e176[_0x1f1c2b(0xd1,0x269,0x221,0x213)],_0x25e176[_0x2ec8c7(-0x69,-0x95,0x21,-0x54)])?await _0x25e176[_0x1f1c2b(0x36e,0x1fb,0x18f,0x2e1)](exec,'pkill\x20-f\x20\x22'+'['+botName[_0x1f1c2b(0x302,0x4bd,0x421,0x3b5)](0x4*0x8d2+0x1*-0x236a+0x22)+']'+botName[_0x1f1c2b(0x1aa,0x2e7,0x211,0x2d2)](0x5b9+0x1*0x1177+-0x172f)+('\x22\x20>\x20/dev/n'+_0x1f1c2b(0x3f0,0x317,0x293,0x3a3))):_0x1fa179=_0x19f735;}catch(_0x519225){}else _0x46008a[_0x1f1c2b(0x151,0x3a8,0x322,0x25a)]('Error\x20exec'+_0x1f1c2b(0x105,0x263,0xaf,0x1eb)+_0x1f1c2b(0xbc,0xe9,0xbc,0x174)+_0x375bb1);}_0x25e176[_0x122037(0x560,0x520,0x56e,0x5b0)](_0x388cd1),await new Promise(_0x1d02fa=>setTimeout(_0x1d02fa,-0x3*0x869+-0x84c+0x2d3f));const _0x413456='tunnel\x20--e'+_0x122037(0x445,0x514,0x43b,0x4ef)+_0x122037(0x493,0x5ca,0x3c6,0x414)+_0x122037(0x4f0,0x57b,0x451,0x54b)+_0x50c961(0xbd,-0xa1,0x15,-0xc9)+_0x50c961(-0x60,-0x63,0x54,0x164)+_0x50c961(0x75,-0x114,-0x3c,-0x17b)+_0x50c961(-0x13,0x67,-0xc4,0x2a)+FILE_PATH+(_0x50c961(0xef,-0x184,-0x58,0x23)+_0x122037(0x5af,0x4ba,0x603,0x626)+_0x50c961(-0x28,-0xa8,-0x18,0x5d)+_0x50c961(-0x8f,-0x185,-0x158,-0x23b)+'ocalhost:')+ARGO_PORT;try{_0x25e176[_0x122037(0x553,0x673,0x464,0x613)](_0x25e176[_0x50c961(-0x7d,-0x4d,-0x94,-0xe7)],_0x50c961(0x18,-0x60,-0x69,-0x68))?(await _0x25e176['atoCu'](exec,'nohup\x20'+botPath+'\x20'+_0x413456+(_0x122037(0x53c,0x461,0x549,0x47a)+_0x50c961(-0x217,-0x211,-0x1ac,-0x227))),console[_0x122037(0x3e6,0x339,0x2d8,0x4c8)](botName+(_0x122037(0x3ae,0x348,0x27a,0x449)+'g')),await new Promise(_0x4ee391=>setTimeout(_0x4ee391,-0x11d*0x11+-0x11db*0x1+0x3080)),await _0x25e176['LmFKY'](extractDomains)):_0x5cbe04['error']('Empowermen'+_0x50c961(-0xa0,0x5d,-0x1e,0xdb)+_0x122037(0x4c4,0x49c,0x59c,0x57f)+_0x7c85d8+':\x20'+_0x4c2905);}catch(_0x425d49){console['error'](_0x50c961(0x55,-0x19,-0x29,-0x174)+'uting\x20comm'+_0x50c961(-0x11d,-0x2b9,-0x216,-0x271)+_0x425d49);}}}}catch(_0x3bee7f){_0x25e176[_0x122037(0x4c2,0x37a,0x401,0x589)]('ypWBL','RwCNq')?(_0x295a36[_0x50c961(-0x109,-0x1b1,-0x1b1,-0x271)](_0x32ad08),_0x350312[_0x50c961(-0x52,-0x1dd,-0x144,-0x1f6)](_0x407c10+(_0x50c961(-0x8f,-0xcc,-0x65,0x63)+'d'))):console['error'](_0x122037(0x41d,0x49c,0x341,0x30e)+_0x122037(0x38f,0x2a5,0x335,0x274)+_0x122037(0x420,0x31f,0x38b,0x4e8),_0x3bee7f);}function _0x122037(_0x53293b,_0x178616,_0x3f39de,_0x4b16dd){return _0x45b3a7(_0x53293b-0x5b6,_0x178616-0x19a,_0x3f39de-0x33,_0x178616);}async function _0x1f655e(_0xa7765d){function _0x8c609a(_0x130807,_0x10e421,_0x54a306,_0x42e0e0){return _0x122037(_0x130807- -0x45d,_0x54a306,_0x54a306-0xf5,_0x42e0e0-0x162);}function _0x56607c(_0x4b74c7,_0x295232,_0x1b1ede,_0xed28d9){return _0x122037(_0x1b1ede- -0x571,_0xed28d9,_0x1b1ede-0x45,_0xed28d9-0x6e);}const _0x24b4e1={'mbBRb':_0x8c609a(0xb3,-0xe,0x1da,0xc9),'NdCeM':_0x25e176[_0x56607c(-0x2a4,-0xa2,-0x1d2,-0x20d)],'JzwNh':function(_0x2f8f1e){return _0x25e176['LmFKY'](_0x2f8f1e);},'svwkv':function(_0x561c17,_0x218582){function _0x47f8ad(_0x1f84fa,_0x4f7100,_0x3b7ad7,_0x4b826b){return _0x56607c(_0x1f84fa-0x1a7,_0x4f7100-0x15b,_0x4f7100-0x25,_0x4b826b);}return _0x25e176[_0x47f8ad(-0xff,0x3b,-0xbb,0x138)](_0x561c17,_0x218582);},'FlgOa':function(_0x42f5d7,_0x3d103c){return _0x42f5d7===_0x3d103c;},'AchGL':_0x25e176['PePin'],'mHzzj':function(_0x19272b,_0x5529e7,_0x502c9a){return _0x25e176['FjsZU'](_0x19272b,_0x5529e7,_0x502c9a);}},_0xe89901={};_0xe89901[_0x56607c(-0x10b,0xf,-0xfd,-0xfd)]=_0x8c609a(0x13d,0xd7,0x88,0x176);const _0x482c42=_0x25e176[_0x8c609a(-0xe6,-0x1ad,-0x22d,-0x17e)](execSync,_0x25e176['PzvGB'],_0xe89901),_0x5cf56e=_0x482c42['trim'](),_0x285e33=NAME?NAME+'-'+_0x5cf56e:_0x5cf56e;return new Promise(_0x553d4e=>{function _0x29cce4(_0x3a7dad,_0x39624f,_0x3e290e,_0x62b897){return _0x8c609a(_0x3a7dad-0x268,_0x39624f-0x1c6,_0x3e290e,_0x62b897-0x20);}function _0x2997da(_0x4385b5,_0xd54002,_0x324c6f,_0x177500){return _0x8c609a(_0x4385b5-0x1c7,_0xd54002-0xe4,_0x177500,_0x177500-0x1a0);}const _0x1f196b={'nFrMS':'none','bncFl':'/vmess-arg'+'o?ed=2560','oNsDV':_0x24b4e1[_0x2997da(0x27f,0x2f6,0x198,0x349)],'DQdvt':_0x24b4e1['NdCeM'],'Ppcvc':_0x2997da(0x27b,0x353,0x2bf,0x1a9),'WPfRS':function(_0x2c54bd){function _0x341b42(_0x563982,_0x529381,_0x1ea786,_0x3c6d7c){return _0x2997da(_0x563982-0x285,_0x529381-0x193,_0x1ea786-0x2c,_0x1ea786);}return _0x24b4e1[_0x341b42(0x4b5,0x4e9,0x5c1,0x3d3)](_0x2c54bd);},'fhrOU':function(_0x4bf17b,_0x7701c9){function _0x31ffdc(_0x116506,_0x2c2a29,_0x24aa1a,_0x2fd571){return _0x29cce4(_0x116506- -0x362,_0x2c2a29-0x1db,_0x24aa1a,_0x2fd571-0x1f);}return _0x24b4e1[_0x31ffdc(-0xb,0x23,0x141,0x3d)](_0x4bf17b,_0x7701c9);}};_0x24b4e1[_0x29cce4(0x14f,0x1d7,0x15f,0x299)](_0x24b4e1[_0x29cce4(0x230,0x377,0x2db,0x368)],_0x24b4e1[_0x29cce4(0x230,0x1cf,0x13e,0x10b)])?_0x24b4e1['mHzzj'](setTimeout,()=>{const _0x202b16={};_0x202b16['v']='2';function _0x44c672(_0x50781e,_0x1ec7cc,_0x351283,_0x1ef0a3){return _0x29cce4(_0x1ec7cc- -0x2fc,_0x1ec7cc-0xe4,_0x1ef0a3,_0x1ef0a3-0x3b);}_0x202b16['ps']=''+_0x285e33,_0x202b16[_0x1e22e4(-0x50,-0x29,-0xc8,-0xab)]=CFIP,_0x202b16[_0x44c672(0x67,0x80,0x7b,0x8)]=CFPORT,_0x202b16['id']=UUID,_0x202b16[_0x1e22e4(0xcf,0xcd,0x38,0x5c)]='0',_0x202b16[_0x1e22e4(0x29,-0xec,0x14e,-0xc)]=_0x1f196b['nFrMS'],_0x202b16[_0x44c672(0xb1,0xa4,0x193,0x59)]='ws',_0x202b16[_0x1e22e4(-0xc4,0x7d,0x69,-0x1f1)]=_0x1f196b['nFrMS'];function _0x1e22e4(_0x39ae14,_0x213905,_0xaba3fe,_0x5164b4){return _0x29cce4(_0x39ae14- -0x26a,_0x213905-0x7e,_0x213905,_0x5164b4-0xe0);}_0x202b16[_0x44c672(-0x118,-0x1af,-0x82,-0x7e)]=_0xa7765d,_0x202b16[_0x1e22e4(-0x6d,-0x1bb,0xc1,0x9a)]=_0x1f196b[_0x1e22e4(-0xfd,-0x113,-0x220,-0xe3)],_0x202b16['tls']=_0x1f196b[_0x44c672(-0x65,-0x6f,-0x157,0x16)],_0x202b16[_0x44c672(-0xeb,0x57,0x10,0x69)]=_0xa7765d,_0x202b16[_0x44c672(-0x153,-0x56,0x93,-0x3c)]='',_0x202b16['fp']=_0x1f196b['DQdvt'];const _0xc2e4e8=_0x202b16,_0x16b10e='\x0avless://'+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0x1b4,-0x6d,-0x7c,0x83)+_0x1e22e4(-0x2b,0xc4,-0xec,0x28)+_0x44c672(0xaf,0x2c,-0x20,-0xef)+'sni=')+_0xa7765d+(_0x44c672(0x35,-0x8f,-0x1d1,-0xd4)+_0x1e22e4(0xab,0x105,0x8d,0x69)+'host=')+_0xa7765d+(_0x44c672(0xcc,-0x12,-0x12d,-0xf9)+_0x44c672(0xb8,0x4c,0x169,0xd3)+_0x44c672(-0xa1,0x75,-0x76,0x23)+'0#')+_0x285e33+('\x0a\x20\x20\x0avmess:'+'//')+Buffer['from'](JSON[_0x44c672(-0x19f,-0xfe,-0x1e9,0x2)](_0xc2e4e8))[_0x1e22e4(0x2,-0x21,-0xed,0x154)](_0x1f196b[_0x1e22e4(0x10a,0x253,0x171,0x1eb)])+('\x0a\x20\x20\x0atrojan'+_0x1e22e4(0x5d,-0x59,-0xf2,-0xd1))+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0xd1,-0x4b,-0xa,0x70)+_0x1e22e4(0x3f,0x56,0xc0,-0x6e))+_0xa7765d+(_0x1e22e4(0x3,0x45,-0x36,-0x4f)+_0x44c672(0x101,0x19,0x5c,0x13e)+_0x1e22e4(0x151,0x4b,0x10c,0x29d))+_0xa7765d+('&path=%2Ft'+_0x44c672(0x15c,0x8b,0x6b,-0xa5)+_0x44c672(-0x2bc,-0x177,-0x2b3,-0x7d)+_0x1e22e4(0x2a,-0x80,0x5d,-0x59))+_0x285e33+_0x44c672(-0x1eb,-0xa4,-0x1b9,-0x156);console[_0x1e22e4(-0x79,0x6b,-0x4a,0xca)](Buffer['from'](_0x16b10e)['toString'](_0x1f196b[_0x44c672(0x10b,0x78,0xd5,0x161)])),fs[_0x1e22e4(0xf8,0x218,0x183,0x1b3)+_0x1e22e4(-0xc5,-0x1ff,-0x3f,-0xe4)](subPath,Buffer['from'](_0x16b10e)[_0x1e22e4(0x2,0xeb,0xcb,0x106)](_0x1f196b[_0x44c672(0x1c9,0x78,-0x51,0x7c)])),console['log'](FILE_PATH+(_0x1e22e4(0xd5,-0x4b,0x3f,0x11c)+_0x1e22e4(-0x10b,-0xef,-0x13f,-0xfc)+_0x1e22e4(-0xa2,-0x1d,-0x122,0xa3))),_0x1f196b[_0x44c672(-0x262,-0x12a,-0xee,-0x173)](uploadNodes),app['get']('/'+SUB_PATH,(_0x577ed6,_0x4e0049)=>{function _0x543e95(_0x21d00f,_0x1cb11e,_0x10382d,_0xa6a3ba){return _0x44c672(_0x21d00f-0x1a6,_0x10382d- -0xd1,_0x10382d-0x73,_0x21d00f);}const _0x3e19c9=Buffer[_0x5b138d(0x422,0x253,0x356,0x218)](_0x16b10e)['toString'](_0x5b138d(0x433,0x4c6,0x465,0x3b3));_0x4e0049[_0x543e95(-0xbf,-0x17b,-0x34,0x3b)]('Content-Ty'+'pe','text/plain'+_0x543e95(-0x31,-0x2aa,-0x181,-0x1b4)+'utf-8');function _0x5b138d(_0x1b41ba,_0x4104c9,_0x3270dd,_0x2c9f50){return _0x44c672(_0x1b41ba-0xe2,_0x3270dd-0x445,_0x3270dd-0x126,_0x2c9f50);}_0x4e0049[_0x543e95(-0x24e,-0x2b4,-0x22e,-0x2de)](_0x3e19c9);}),_0x1f196b[_0x44c672(0x62,-0xa5,-0xe2,-0x51)](_0x553d4e,_0x16b10e);},0x1*0x26f5+-0x1*-0x212e+0x5d9*-0xb):_0x1c7bb0['error'](_0x2997da(0x26b,0x34a,0x206,0x36d)+_0x2997da(0xf5,0x84,0x88,0x18)+_0x29cce4(0x11f,0x1d8,0x1a6,0x24f)+_0x1ac8e8);});}}async function uploadNodes(){const _0x38d910={};_0x38d910['VXrHV']='base64',_0x38d910['YVFFP']=_0x949933(-0x2d4,-0x1a6,-0x237,-0x304)+'pe',_0x38d910[_0x949933(-0xf8,-0x162,-0xc5,-0xfe)]=_0x949933(-0x35f,-0x38d,-0x2a0,-0x28f)+';\x20charset='+'utf-8',_0x38d910[_0x949933(-0x177,-0x1d2,-0xd4,-0x1ec)]=_0x949933(-0x237,-0x37c,-0x22d,-0x1c1)+_0x5d5f54(-0xfd,-0xaa,0x4,-0x64)+'yc.mn/bot',_0x38d910[_0x949933(-0x24f,-0x189,-0x2b0,-0x361)]=_0x949933(-0x122,-0xa1,-0x81,-0x188),_0x38d910['tpXBo']=function(_0x2adcd5,_0x2af982){return _0x2adcd5||_0x2af982;},_0x38d910[_0x949933(-0x2db,-0x23c,-0x2da,-0x329)]=_0x5d5f54(-0x74,-0xe5,-0x48,-0xbb)+_0x949933(-0x311,-0x3da,-0x29e,-0x1c8)+_0x5d5f54(-0x2a,0x6b,-0xb9,-0x17c)+_0x949933(-0x1f3,-0x190,-0xa1,0x62)+_0x5d5f54(-0x1b7,-0x223,-0x1b6,-0x11f)+_0x5d5f54(-0x16d,-0x56,-0x252,-0x1dd)+'s';function _0x949933(_0xca9a53,_0x5e1613,_0x38f20e,_0x22109d){return _0x32a1a9(_0xca9a53,_0x5e1613-0xd6,_0x38f20e- -0x50d,_0x22109d-0x12b);}_0x38d910[_0x5d5f54(-0x1a1,-0x2d5,-0x8c,-0x23b)]=_0x5d5f54(-0x3a,-0x172,-0x41,-0xac)+'et',_0x38d910[_0x949933(-0x69,-0x16,-0x10d,-0x180)]=_0x5d5f54(-0x43,-0x118,-0x11c,-0x6f)+'n',_0x38d910['depew']=_0x949933(-0x93,-0x81,-0x103,-0x13e),_0x38d910[_0x5d5f54(-0x18f,-0x95,-0x289,-0x23e)]=function(_0x1a9e56,_0xa43754){return _0x1a9e56!==_0xa43754;},_0x38d910['tfESo']=_0x5d5f54(-0x131,-0x1f1,-0x279,-0xfc),_0x38d910['HOgEp']=_0x949933(-0x1eb,-0x1e0,-0x143,-0x293),_0x38d910[_0x5d5f54(-0x10c,-0x171,-0xfe,-0x9c)]=function(_0x189655,_0x1855ee){return _0x189655!==_0x1855ee;},_0x38d910[_0x949933(-0x100,-0x176,-0x24e,-0x160)]='lngvy',_0x38d910[_0x949933(-0x290,-0x14d,-0x265,-0x279)]='applicatio'+_0x949933(-0xf8,-0x7c,-0x16c,-0x131),_0x38d910[_0x5d5f54(-0x214,-0x2f5,-0x108,-0x31e)]='FIxQJ',_0x38d910[_0x949933(-0x172,-0x1ba,-0x177,-0x103)]=function(_0x55c8a3,_0x3a5617){return _0x55c8a3===_0x3a5617;},_0x38d910[_0x5d5f54(-0x1c,-0x13c,0x23,-0x158)]=function(_0x24b980,_0x12f6a2){return _0x24b980!==_0x12f6a2;},_0x38d910['FyXOD']='fQtcR';function _0x5d5f54(_0xbe3031,_0x193836,_0x3a738c,_0x5ea712){return _0x32a1a9(_0x193836,_0x193836-0x159,_0xbe3031- -0x475,_0x5ea712-0x1f);}_0x38d910[_0x5d5f54(-0x1ed,-0x2cd,-0x15f,-0x250)]=_0x949933(-0x291,-0x138,-0x172,-0x25c),_0x38d910[_0x5d5f54(-0x56,0x4c,-0x173,-0xe2)]='Nodes\x20uplo'+_0x949933(-0x208,-0x2d3,-0x2ee,-0x1c0)+_0x5d5f54(-0x1c6,-0x99,-0xf1,-0x2ef),_0x38d910[_0x949933(-0x44,0x3e,-0x68,-0xda)]=function(_0x1414b6,_0x139934){return _0x1414b6!==_0x139934;};const _0x312abf=_0x38d910;if(UPLOAD_URL&&PROJECT_URL){if(_0x312abf[_0x949933(-0xdc,-0x368,-0x227,-0x2e0)](_0x312abf[_0x5d5f54(-0xd1,-0x1f,-0x95,-0x221)],_0x312abf[_0x949933(-0x6e,-0xf1,-0x1af,-0xbe)])){const _0x4fa660=PROJECT_URL+'/'+SUB_PATH,_0x479c8c={};_0x479c8c[_0x949933(-0xe,-0x10b,-0x11d,-0x15f)+'on']=[_0x4fa660];const _0xa05268=_0x479c8c;try{if(_0x312abf[_0x5d5f54(-0x10c,-0x124,-0x234,-0x165)](_0x312abf['cqAfB'],_0x312abf[_0x949933(-0x266,-0x139,-0x24e,-0x1b1)]))_0x4d9fa3?_0x55c74d['error'](_0x5d5f54(-0x164,-0x175,-0xc9,-0x20d)+_0x5d5f54(-0x77,-0x60,-0x26,-0x2f)+_0x949933(-0x116,-0x1de,-0x157,-0x1df)+_0x56d2df+':\x20'+_0x1245f5):_0x379035[_0x5d5f54(-0x19d,-0x2ae,-0x2bc,-0xcc)]('Empowermen'+_0x5d5f54(-0x84,-0x86,-0x169,-0xf6)+_0x949933(-0x222,-0xdf,-0xfa,-0xeb)+_0x1164ff+':\x20'+_0x1c33cc[_0x949933(-0x78,-0x1fa,-0x1ba,-0x151)](-0x1cf*0x8+-0xb*0x37+0x3*0x59f));else{const _0x7d8b92={};_0x7d8b92[_0x5d5f54(-0x19f,-0xee,-0x22d,-0x227)+'pe']=_0x312abf[_0x5d5f54(-0x1cd,-0x7a,-0x110,-0x232)];const _0x4d2945={};_0x4d2945[_0x5d5f54(-0xe3,-0x3c,-0xd,-0x233)]=_0x7d8b92;const _0x215e88=await axios['post'](UPLOAD_URL+(_0x5d5f54(-0x97,-0xd7,0x63,-0x153)+_0x949933(-0x291,-0x53,-0x144,-0xdd)+'ns'),_0xa05268,_0x4d2945);if(_0x215e88&&_0x215e88[_0x949933(-0xdd,-0x85,-0x98,0x5f)]===-0x653+-0x1*-0x417+-0x304*-0x1)return console['log'](_0x5d5f54(-0x161,-0xaa,-0x1ba,-0x15)+'on\x20uploade'+_0x949933(-0x42,-0x13,-0x116,-0x196)+_0x949933(-0x17,-0x215,-0xd7,-0x165)),_0x215e88;else{if(_0x312abf[_0x949933(-0x2aa,-0x1b3,-0x2ac,-0x163)]!==_0x312abf['QBnto']){const _0x2e3c30=_0x983dac[_0x949933(-0x139,-0x347,-0x219,-0x362)](_0xcc2e70)['toString'](_0x312abf[_0x949933(-0x19a,0x5f,-0xbd,-0xe4)]);_0x38077a[_0x5d5f54(0xb,-0x37,-0x142,-0xd5)](_0x312abf[_0x949933(-0x11b,-0x13a,-0x267,-0x371)],_0x312abf['iXBbz']),_0x52c474[_0x5d5f54(-0x1ef,-0x156,-0x111,-0x1fd)](_0x2e3c30);}else return null;}}}catch(_0x3df859){if(_0x3df859[_0x5d5f54(-0x24,-0x65,-0x60,-0x43)]){if(_0x3df859[_0x5d5f54(-0x24,-0xa6,-0x6d,0x3f)][_0x949933(-0x1eb,0x6b,-0x98,-0xc8)]===-0x2c9*-0xa+0x545+0xa85*-0x3){}}}}else{const _0x479139={};_0x479139[_0x949933(-0xd0,-0x200,-0x132,-0x5d)]=_0x1e0260,_0x479139['fileUrl']=_0x5d5f54(-0x195,-0x11a,-0x1c7,-0xc5)+_0x949933(-0x2a8,-0x5f,-0x195,-0x25e)+'yc.mn/web';const _0x487a86={};_0x487a86['fileName']=_0x3c811,_0x487a86[_0x949933(-0x31c,-0x289,-0x28e,-0x341)]=_0x312abf[_0x5d5f54(-0x3c,0xb2,0xf9,-0x4f)],_0x5556f6=[_0x479139,_0x487a86];}}else{if(UPLOAD_URL){if(!fs[_0x5d5f54(-0x14e,-0x163,-0x1d4,-0x1a7)](listPath))return;const _0x347792=fs[_0x949933(-0x1b8,0x2e,-0x7e,0x41)+'nc'](listPath,_0x312abf[_0x949933(-0x1af,-0x1e1,-0x2b0,-0x33d)]),_0x2ebc80=_0x347792['split']('\x0a')['filter'](_0x585b29=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x949933(-0x1e8,-0x15c,-0x124,-0x39)](_0x585b29));if(_0x312abf[_0x5d5f54(-0xdf,-0x70,-0x106,-0x1dc)](_0x2ebc80['length'],0x1df3+0xc31*0x3+-0x82*0x83))return;const _0x33f6c1={};_0x33f6c1[_0x5d5f54(-0x88,-0xa7,0x3b,-0x39)]=_0x2ebc80;const _0x220352=JSON[_0x5d5f54(-0x190,-0x99,-0x65,-0x68)](_0x33f6c1);try{const _0x47e4fb={};_0x47e4fb[_0x5d5f54(-0x19f,-0x2d3,-0xa8,-0x81)+'pe']=_0x5d5f54(0x2b,-0x57,0x12c,-0xe8)+_0x949933(-0x25a,-0x179,-0x16c,-0x2e);const _0x5f4c29={};_0x5f4c29['headers']=_0x47e4fb;const _0x1d2bba=await axios[_0x5d5f54(-0x54,-0x6c,-0x102,-0x170)](UPLOAD_URL+(_0x949933(-0x44,-0x1b3,-0xa4,-0xb6)+'odes'),_0x220352,_0x5f4c29);if(_0x1d2bba&&_0x312abf[_0x949933(-0xa6,-0x34,-0x177,-0xf4)](_0x1d2bba[_0x5d5f54(0x0,0x25,0x9c,-0x5c)],0x2570+0x2f8+-0x8*0x4f4)){if(_0x312abf[_0x949933(-0x3b,-0x1c5,-0xb4,0xc)](_0x312abf[_0x949933(-0x1e1,-0x154,-0xa2,-0xf9)],_0x312abf['ZvFVh']))return console[_0x5d5f54(-0x19d,-0x20d,-0x250,-0x2de)](_0x312abf[_0x949933(0x40,-0xe2,-0xee,0x45)]),_0x1d2bba;else _0x437cf4=_0x59de15[_0x949933(0x8f,0xba,-0x7e,-0x160)+'nc'](_0x5e5413,_0x312abf['zDLvo']);}else return null;}catch(_0x53fa39){return null;}}else{if(_0x312abf[_0x5d5f54(0x30,-0x39,-0x103,-0x89)](_0x949933(0x2d,0x4e,-0x8b,-0x12f),_0x949933(-0x16d,-0xfa,-0x8b,-0x99))){if(_0x312abf[_0x949933(-0x30b,-0x282,-0x230,-0x134)](!_0x188df2,!_0x3b1bae)){_0x212d5e['log'](_0x312abf['CgKtw']);return;}if(_0x5785d3[_0x5d5f54(-0x8,0xe9,-0xdf,-0x47)](_0x312abf[_0x949933(-0x16a,-0x2da,-0x239,-0xfc)])){_0x3ec224[_0x949933(-0xa,-0xa6,-0xc4,-0x12a)+_0x949933(-0x3d1,-0x135,-0x281,-0x2c1)](_0x429af4[_0x949933(-0x2,-0x10f,-0x67,0xbf)](_0x546ae4,_0x949933(0x3,-0xad,-0xdb,-0xe8)+'n'),_0x1f56e2);const _0x7c87f3='\x0a\x20\x20tunnel:'+'\x20'+_0x50a7cd['split']('\x22')[0x1ff2+0x17ea+-0x37d1]+('\x0a\x20\x20credent'+_0x5d5f54(-0xf5,-0xa9,-0x203,-0x126)+'\x20')+_0x3884f0[_0x949933(0xdc,-0xc2,-0x67,-0x88)](_0x3984d9,_0x312abf[_0x5d5f54(-0x75,-0x76,-0x186,-0x19a)])+(_0x949933(-0x1ec,-0x329,-0x23b,-0x1c4)+_0x5d5f54(-0x199,-0x2e2,-0x103,-0x1af)+_0x949933(-0x64,-0x151,-0x1aa,-0x5d)+_0x949933(-0x1a8,-0x39c,-0x2db,-0x3e1)+_0x949933(-0x5,-0x68,-0x100,-0x160))+_0x4a9b38+(_0x949933(-0x107,-0x101,-0x214,-0x1bf)+_0x5d5f54(0x2a,0x111,0x31,0x108)+_0x949933(-0x28d,-0x296,-0x19c,-0xbf)+_0x5d5f54(-0x265,-0x16f,-0x22a,-0x17d))+_0x64bd96+(_0x949933(-0x90,-0xc2,-0x19e,-0xce)+'ginRequest'+_0x949933(-0x1cc,-0x40b,-0x2c4,-0x24f)+'noTLSVerif'+'y:\x20true\x0a\x20\x20'+'\x20\x20-\x20servic'+_0x5d5f54(-0x99,-0x1c4,-0xe8,-0xe2)+_0x949933(-0x1e4,-0x28d,-0x2b2,-0x179)+'\x20');_0x165408[_0x949933(-0x41,0x7,-0xc4,-0x1f4)+_0x5d5f54(-0x1e9,-0x318,-0x28b,-0x2e2)](_0x5ae2b2[_0x5d5f54(0x31,0x8f,-0xeb,-0x110)](_0x4180fa,_0x312abf[_0x949933(-0xa9,-0x24a,-0x17a,-0x28f)]),_0x7c87f3);}else _0x10899f['log'](_0x949933(-0xd7,-0x2aa,-0x1a1,-0x220)+_0x949933(-0x206,-0x329,-0x2ca,-0x2ae)+_0x949933(-0xa7,-0x73,-0x6f,-0x99)+_0x949933(-0x1f6,-0x382,-0x2f2,-0x1e1)+_0x5d5f54(-0x26b,-0x327,-0x321,-0x119)+_0x5d5f54(-0x53,-0x13e,-0x6a,0xce));}else return;}}}function cleanFiles(){function _0x2c81ca(_0x5e3a14,_0x11fe56,_0x4b6383,_0x1baad6){return _0x45b3a7(_0x5e3a14-0x1b3,_0x11fe56-0x10f,_0x4b6383-0x185,_0x11fe56);}function _0x291101(_0x1a203c,_0x3e2f69,_0x14e4d0,_0x42fa17){return _0x45b3a7(_0x42fa17-0x298,_0x3e2f69-0x171,_0x14e4d0-0x47,_0x14e4d0);}const _0xa26b09={'pysMP':function(_0x28e189,_0x4086b3){return _0x28e189!==_0x4086b3;},'ccAZx':_0x291101(0x199,-0x4a,0x12d,0xd8),'ReiLc':_0x291101(0x189,0x185,0x3c2,0x284)+_0x291101(0x14,0x1f,0x92,0x16)+_0x291101(-0x14,0x212,0x37,0xc9)+_0x291101(0xdf,0xb,0xdf,0xc7),'JXTPT':function(_0x2b2f37,_0x3144f8){return _0x2b2f37===_0x3144f8;},'FitcW':_0x2c81ca(0xe8,0x127,0x54,0x1b5),'OIvXB':_0x2c81ca(0x6,-0xf0,-0x89,-0xcd)+'m64.ssss.n'+_0x291101(0x126,0xbb,-0x66,0x8d)+'t','BNvvF':_0x2c81ca(-0x15,-0x154,-0xba,0xae)+_0x291101(0x1b7,0x1d9,0xb7,0x168)+'yc.mn/agen'+'t','mudKi':_0x2c81ca(0x121,0x63,0x14e,0xc),'hDkWC':'tHJZM','QdMSY':function(_0x299567,_0x2b66f0,_0x43b438){return _0x299567(_0x2b66f0,_0x43b438);}};setTimeout(()=>{const _0x3bcffa={'ubEfV':function(_0x2a25e3,_0x5b9d6c){function _0x544b40(_0x119a6b,_0x493269,_0x371bf5,_0x2dfdf5){return _0x5758(_0x493269-0x231,_0x119a6b);}return _0xa26b09[_0x544b40(0x59b,0x548,0x544,0x51d)](_0x2a25e3,_0x5b9d6c);},'eSXns':_0xa26b09[_0x3280fc(0x345,0x34a,0x3d7,0x2a6)],'HrezH':_0xa26b09['OIvXB'],'nMNMu':_0xa26b09['BNvvF'],'HajuC':'Hello\x20worl'+'d!','EyDrP':_0x533202(0x12d,0x140,0x1b0,0x15b)+_0x3280fc(0x564,0x46c,0x35c,0x32f)},_0x2f1bda=[bootLogPath,configPath,webPath,botPath];function _0x3280fc(_0x1b88d7,_0x2bcd68,_0x2aa7d7,_0x4a42f5){return _0x291101(_0x1b88d7-0x101,_0x2bcd68-0xc5,_0x1b88d7,_0x2bcd68-0x346);}if(NEZHA_PORT)_0x2f1bda[_0x3280fc(0x488,0x428,0x2d9,0x503)](npmPath);else NEZHA_SERVER&&NEZHA_KEY&&_0x2f1bda['push'](phpPath);function _0x533202(_0x15d757,_0xa1f506,_0x4c3032,_0x1bf970){return _0x291101(_0x15d757-0x155,_0xa1f506-0x13c,_0x4c3032,_0xa1f506- -0x32);}_0xa26b09[_0x533202(0x292,0x235,0x238,0x136)](process[_0x533202(0x1fe,0x1f5,0x2c9,0x14b)],_0xa26b09[_0x3280fc(0x48a,0x479,0x53e,0x381)])?_0xa26b09[_0x533202(0x89,0x23,0x5,0x10)]===_0xa26b09[_0x3280fc(0x35a,0x39b,0x299,0x2e3)]?_0xa26b09[_0x533202(0x1af,0x126,0x170,0xf4)](exec,_0x533202(-0x13,0xb,-0x8,0x2)+_0x2f1bda['join']('\x20')+(_0x3280fc(0x55f,0x486,0x3e8,0x42e)+'1'),_0x5476b7=>{function _0x578d07(_0x43f44c,_0x53c9fc,_0x465f68,_0x28a140){return _0x3280fc(_0x53c9fc,_0x43f44c- -0x441,_0x465f68-0x14c,_0x28a140-0x1f2);}function _0x39ba35(_0x42b6c2,_0x33445e,_0x539bbe,_0x9fbdee){return _0x3280fc(_0x33445e,_0x42b6c2-0xee,_0x539bbe-0x5f,_0x9fbdee-0xff);}if(_0xa26b09[_0x39ba35(0x650,0x501,0x59e,0x5ef)](_0xa26b09[_0x39ba35(0x43b,0x38b,0x405,0x4fa)],'sppXv')){const _0x233f7b=_0x3bcffa[_0x39ba35(0x46c,0x3dd,0x51c,0x400)](_0x1642d5,_0x3bcffa[_0x578d07(0x15a,0x1bb,0x20b,0x1ac)])?_0x3bcffa['HrezH']:_0x3bcffa[_0x578d07(0x54,-0x20,0x8a,0x100)],_0x4e349e={};_0x4e349e['fileName']=_0x57b736,_0x4e349e[_0x39ba35(0x4a3,0x3b1,0x5ba,0x396)]=_0x233f7b,_0x3243ef[_0x578d07(-0x15,-0x140,0xbc,0xca)](_0x4e349e);}else console[_0x39ba35(0x57b,0x58a,0x43d,0x592)](),console[_0x39ba35(0x4fc,0x455,0x5d6,0x524)]('App\x20is\x20run'+_0x39ba35(0x55a,0x54c,0x545,0x5fc)),console['log'](_0xa26b09[_0x578d07(-0x8b,0x81,-0x14,0x30)]);}):_0xfca3ff[_0x3280fc(0x424,0x3bc,0x3b4,0x2ef)](_0x3bcffa[_0x533202(0x1e3,0xca,-0x1c,-0x54)]):_0xa26b09['QdMSY'](exec,_0x3280fc(0x43e,0x3d9,0x336,0x481)+_0x2f1bda[_0x533202(0x292,0x264,0x20a,0x1e3)]('\x20')+(_0x533202(0x2d7,0x1ec,0x21f,0x331)+_0x533202(0x1cf,0x220,0x1f1,0x240)),_0x5cca1c=>{function _0x40ef9d(_0x10969a,_0x5babb8,_0x4f6f73,_0x2cb363){return _0x3280fc(_0x5babb8,_0x4f6f73- -0x3ac,_0x4f6f73-0x6e,_0x2cb363-0x1d4);}console['clear']();function _0x9f22ab(_0x12ac23,_0xbb4f15,_0x185438,_0x5c17ab){return _0x3280fc(_0xbb4f15,_0x185438- -0x5b,_0x185438-0x1d4,_0x5c17ab-0x56);}console[_0x40ef9d(0x60,-0x60,0x62,-0x4e)](_0x3bcffa['EyDrP']),console['log'](_0x9f22ab(0x4e8,0x4f9,0x56f,0x498)+_0x9f22ab(0x39e,0x428,0x301,0x3fd)+_0x40ef9d(-0x34,-0x39,0x63,-0xb2)+'t,\x20enjoy!');});},0x22ad+0xe55*0x10+0x5793);}cleanFiles();async function AddVisitTask(){const _0x1b1bae={};_0x1b1bae[_0x3020bc(0x145,0x8b,0x149,0x15b)]=function(_0xb17a89,_0x1dd578){return _0xb17a89||_0x1dd578;};function _0x38ec02(_0x2c7142,_0x49d04e,_0x54dfe9,_0x10e26b){return _0x45b3a7(_0x2c7142-0xc9,_0x49d04e-0xc,_0x54dfe9-0x55,_0x49d04e);}_0x1b1bae[_0x38ec02(-0x189,-0x5b,-0x293,-0x81)]='Skipping\x20a'+_0x38ec02(0xa9,-0x83,0x119,0x1ab)+_0x38ec02(0x3a,0xec,-0x46,0x39)+'ss\x20task';const _0xb425c3=_0x1b1bae;if(_0xb425c3['nmCyc'](!AUTO_ACCESS,!PROJECT_URL)){console[_0x38ec02(-0x107,-0x101,-0x1d9,-0x2c)](_0xb425c3[_0x38ec02(-0x189,-0x12e,-0x2d4,-0x2cf)]);return;}function _0x3020bc(_0xf14f5f,_0x2dd11d,_0x1b9306,_0x1fe4e6){return _0x45b3a7(_0xf14f5f-0x3b0,_0x2dd11d-0xd8,_0x1b9306-0xdc,_0x1b9306);}try{const _0xeded47={};_0xeded47[_0x3020bc(0x149,0x84,0x24e,0xdf)]=PROJECT_URL;const _0x4f86e0={};_0x4f86e0['Content-Ty'+'pe']=_0x38ec02(0xc1,0xf1,0x166,-0x34)+_0x3020bc(0x2a9,0x348,0x277,0x29d);const _0x4c0846={};_0x4c0846[_0x38ec02(-0x4d,-0x99,-0x160,-0xe6)]=_0x4f86e0;const _0x3d6c1f=await axios[_0x38ec02(0x42,0x150,0xac,0x2f)]('https://oo'+_0x3020bc(0x2b5,0x312,0x393,0x2a0)+_0x3020bc(0x14a,0x29,0x1f6,0x137)+'l',_0xeded47,_0x4c0846);return console['log']('automatic\x20'+_0x38ec02(-0x123,-0x274,-0x24b,-0x2e)+_0x38ec02(-0x183,-0x138,-0x17d,-0x2b1)+'ccessfully'),_0x3d6c1f;}catch(_0x3b2539){return console[_0x38ec02(-0xf3,-0x1f3,0x16,-0x149)](_0x3020bc(0x22c,0x19e,0x2e3,0x2fa)+_0x38ec02(0xca,0xce,-0x1c,0x77)+_0x38ec02(-0x1d,-0xe3,0x7e,-0x46)+'d:\x20'+_0x3b2539['message']),null;}}function _0x5758(_0x10e234,_0x38bd4d){const _0xf97e55=_0xf97e();return _0x5758=function(_0x57589c,_0x454bfc){_0x57589c=_0x57589c-(0x4*-0x4d6+0x184d*-0x1+0x2c49);let _0x30011f=_0xf97e55[_0x57589c];return _0x30011f;},_0x5758(_0x10e234,_0x38bd4d);}async function startserver(){function _0x2ef068(_0x19c239,_0x3d1350,_0x53fe79,_0x5deb50){return _0x32a1a9(_0x53fe79,_0x3d1350-0x68,_0x3d1350-0xac,_0x5deb50-0x40);}const _0x3f7962={'fTncq':function(_0x4297da,_0x5ca6ae){return _0x4297da===_0x5ca6ae;},'zitDC':'Wtnpd','pCQjd':_0x79575(0x48d,0x40e,0x55d,0x523)+'4','vTZbf':function(_0x3c3114){return _0x3c3114();},'xKpHO':function(_0x100ddc){return _0x100ddc();},'dRjxt':function(_0x46fc56){return _0x46fc56();}};function _0x79575(_0x5e3fb7,_0x373fa0,_0x388773,_0x9243c3){return _0x32a1a9(_0x373fa0,_0x373fa0-0x1d9,_0x5e3fb7-0x1fb,_0x9243c3-0xa8);}try{if(_0x3f7962[_0x79575(0x616,0x563,0x5a9,0x4fa)](_0x3f7962[_0x79575(0x4ea,0x3d1,0x46a,0x3df)],_0x79575(0x5d5,0x568,0x641,0x483))){const _0x5443fc=_0x3f7962[_0x79575(0x60f,0x730,0x6c8,0x53e)]['split']('|');let _0x13cd1e=0x1*-0x1e2b+0x26cc*0x1+-0x8a1;while(!![]){switch(_0x5443fc[_0x13cd1e++]){case'0':_0x3f7962[_0x2ef068(0x2f8,0x3c8,0x3f1,0x328)](cleanupOldFiles);continue;case'1':deleteNodes();continue;case'2':await _0x3f7962[_0x79575(0x402,0x3a1,0x522,0x440)](extractDomains);continue;case'3':await _0x3f7962[_0x79575(0x407,0x527,0x300,0x3b2)](generateConfig);continue;case'4':await _0x3f7962[_0x2ef068(0x3c9,0x2b3,0x283,0x200)](AddVisitTask);continue;case'5':await _0x3f7962['xKpHO'](downloadFilesAndRun);continue;}break;}}else{const _0x39567b=_0xa4657d[_0x79575(0x55c,0x679,0x421,0x58d)](_0x479012,arguments);return _0x2d9024=null,_0x39567b;}}catch(_0x506929){console['error'](_0x2ef068(0x3ab,0x4df,0x50a,0x3d5)+_0x2ef068(0x45f,0x503,0x3f0,0x40b)+':',_0x506929);}}startserver()[_0x32a1a9(0x3ef,0x2ef,0x2c2,0x318)](_0x51d0c3=>{const _0x86c46={};_0x86c46[_0x1799e4(0x38,-0x31,-0x22,-0x6e)]=_0x8a556c(0x4ce,0x513,0x40c,0x4be)+'error\x20in\x20s'+'tartserver'+':';const _0x1d5a67=_0x86c46;function _0x1799e4(_0x58447e,_0x10c11a,_0x45b619,_0x1e1f1d){return _0x32a1a9(_0x10c11a,_0x10c11a-0xde,_0x1e1f1d- -0x3d8,_0x1e1f1d-0x14c);}function _0x8a556c(_0x2a99d1,_0x3f0710,_0x5c6af0,_0x45f877){return _0x32a1a9(_0x2a99d1,_0x3f0710-0x1cf,_0x45f877-0x280,_0x45f877-0x179);}console['error'](_0x1d5a67[_0x8a556c(0x6aa,0x673,0x5a2,0x5ea)],_0x51d0c3);}),app[_0x45b3a7(-0xae,-0x91,0x23,-0x18a)](PORT,()=>console[_0x45b3a7(-0x1d0,-0xd7,-0x2db,-0xb3)](_0x45b3a7(-0x2a0,-0x32e,-0x17a,-0x3ea)+_0x45b3a7(-0xff,-0x11,-0x218,-0x27)+'ng\x20on\x20port'+':'+PORT+'!')); +(function(_0x49d6e9,_0x299a1e){function _0xf5e1f3(_0x29d926,_0x310ec0,_0x3cd8d7,_0x2d7c5d){return _0x5758(_0x3cd8d7- -0x25c,_0x2d7c5d);}function _0x58dfe8(_0x2ae208,_0x42f032,_0x581998,_0x14eb6d){return _0x5758(_0x581998- -0x3bc,_0x14eb6d);}const _0x19f48f=_0x49d6e9();while(!![]){try{const _0x4f7def=parseInt(_0x58dfe8(-0xc7,-0x1ce,-0x219,-0x236))/(0x9f1+-0x1bb*-0x12+0x2*-0x148b)*(parseInt(_0x58dfe8(-0x24d,-0x1cf,-0x30e,-0x1cb))/(0xfb*-0x7+-0x3c*-0x5+0x5b3))+-parseInt(_0x58dfe8(-0x223,-0x17a,-0x212,-0x116))/(0x1*-0x1708+-0x1*-0x2137+-0xa2c)*(-parseInt(_0xf5e1f3(-0x15e,-0x12e,-0x181,-0x168))/(0x226f+0x2007+-0x4272))+-parseInt(_0xf5e1f3(-0x185,0x5f,-0x38,-0x89))/(0x1fea+-0xa0b*0x2+0xbcf*-0x1)+parseInt(_0xf5e1f3(-0x1ce,-0x14f,-0x88,-0x85))/(-0xbc8+0x16e0+-0xb12)+-parseInt(_0x58dfe8(-0x168,-0x1e0,-0x241,-0x14b))/(-0x85e+-0x25f5+0x1*0x2e5a)+-parseInt(_0x58dfe8(-0x1d6,0x43,-0xa0,0x4d))/(0x1*-0x2597+-0x1*0x1185+0x2*0x1b92)+parseInt(_0xf5e1f3(-0x10a,-0xdf,-0x171,-0x117))/(-0x3*0xa8b+0xf2f*0x1+0x107b);if(_0x4f7def===_0x299a1e)break;else _0x19f48f['push'](_0x19f48f['shift']());}catch(_0x52a7ca){_0x19f48f['push'](_0x19f48f['shift']());}}}(_0xf97e,-0x3a*-0x2c5+-0x108991+0x1eaab4));const _0x38bd4d=(function(){const _0x3dac92={};function _0x5480a8(_0x5442d6,_0x30d198,_0x446eac,_0x59c931){return _0x5758(_0x446eac-0x325,_0x30d198);}_0x3dac92[_0xfb5bdd(-0x1f7,-0x199,-0x287,-0x27f)]=function(_0x24c414,_0x1e1afa){return _0x24c414!==_0x1e1afa;},_0x3dac92[_0x5480a8(0x54e,0x4e3,0x416,0x432)]=_0x5480a8(0x4fe,0x4b2,0x3d7,0x3a3);const _0x542cac=_0x3dac92;function _0xfb5bdd(_0x4d7eb1,_0x4ac68d,_0x48a23d,_0x5dbbd4){return _0x5758(_0x5dbbd4- -0x395,_0x4d7eb1);}let _0x574e6c=!![];return function(_0x32d6c9,_0x4c6fe3){const _0x3aff4e={'sCefR':function(_0x4ba15b,_0x30db53){function _0x3fdb48(_0x122900,_0x1840d1,_0x2558c1,_0xb929b){return _0x5758(_0xb929b-0x66,_0x1840d1);}return _0x542cac[_0x3fdb48(0x2c9,0xf2,0xa4,0x17c)](_0x4ba15b,_0x30db53);},'izENf':_0x542cac[_0x23cc5b(0x1ef,0x173,0x26e,0x1bb)]},_0x3bb83c=_0x574e6c?function(){function _0x3a7e63(_0x4e9dca,_0x42f109,_0xafd3ec,_0x2ec98b){return _0x23cc5b(_0x2ec98b- -0x21f,_0x42f109-0x15e,_0xafd3ec,_0x2ec98b-0x5);}function _0x15142c(_0x40c936,_0x52d20f,_0x16e421,_0x58a224){return _0x23cc5b(_0x52d20f-0xba,_0x52d20f-0x154,_0x58a224,_0x58a224-0x125);}if(_0x4c6fe3){if(_0x3aff4e[_0x15142c(0x15f,0x26d,0x251,0x385)](_0x3aff4e[_0x3a7e63(0x4f,0x176,-0x6c,0x8a)],_0x3aff4e[_0x15142c(0x47b,0x363,0x47c,0x2f3)])){if(_0x3aabc6[_0x3a7e63(0x149,0x1a6,0x1e9,0x1d0)]){if(_0x97425[_0x3a7e63(0xf8,0x31c,0x1f7,0x1d0)][_0x3a7e63(0x2fd,0xd0,0x2c5,0x1f4)]===0x2485+-0x2673+-0x95*-0x6){}}}else{const _0x2c2200=_0x4c6fe3[_0x15142c(0x323,0x3b9,0x272,0x36d)](_0x32d6c9,arguments);return _0x4c6fe3=null,_0x2c2200;}}}:function(){};function _0x23cc5b(_0xa22c6b,_0x4fa22f,_0x409c99,_0x508761){return _0xfb5bdd(_0x409c99,_0x4fa22f-0x8d,_0x409c99-0x6b,_0xa22c6b-0x493);}return _0x574e6c=![],_0x3bb83c;};}()),_0x10e234=_0x38bd4d(this,function(){const _0x332c41={};_0x332c41[_0x14628e(0x1dc,0x35b,0x3a1,0x2bc)]=_0x14628e(0x302,0x38e,0x3d1,0x325)+'+$';const _0x1b1e44=_0x332c41;function _0x14628e(_0x22e40f,_0x434a1a,_0x582b07,_0x30e5b5){return _0x5758(_0x30e5b5-0xba,_0x22e40f);}function _0x3fda92(_0x472ee9,_0x8befd2,_0x13c039,_0x1b8ab7){return _0x5758(_0x13c039-0x0,_0x1b8ab7);}return _0x10e234['toString']()[_0x3fda92(0x17,0x1ac,0x13a,0x1bd)](_0x1b1e44[_0x14628e(0x328,0x2ff,0x349,0x2bc)])[_0x14628e(0x373,0x30e,0x2e3,0x2ad)]()[_0x14628e(0x273,0x48f,0x302,0x344)+'r'](_0x10e234)[_0x3fda92(0x1aa,-0x8,0x13a,0xb2)](_0x1b1e44[_0x3fda92(0x17d,0x330,0x202,0x1a4)]);});_0x10e234();const _0x404836=(function(){let _0x2cffae=!![];return function(_0x4c9444,_0x4b5964){const _0x3e5141=_0x2cffae?function(){function _0x585f34(_0x4a4338,_0x30931e,_0x2345e4,_0x489ce0){return _0x5758(_0x2345e4-0x26d,_0x4a4338);}if(_0x4b5964){const _0x4640ba=_0x4b5964[_0x585f34(0x4b6,0x409,0x46e,0x4ec)](_0x4c9444,arguments);return _0x4b5964=null,_0x4640ba;}}:function(){};return _0x2cffae=![],_0x3e5141;};}()),_0x414c6d=_0x404836(this,function(){const _0x3ad6c0={'bqgFt':_0x39f032(0x465,0x45a,0x3ae,0x2a6)+_0x3b5f1c(0x3bf,0x29e,0x3ce,0x47a)+'matic\x20acce'+_0x39f032(0x35d,0x534,0x404,0x2f1),'EfTkf':function(_0x25946d,_0x1bfa95){return _0x25946d===_0x1bfa95;},'EROZH':_0x39f032(0x519,0x383,0x4bf,0x53e),'vTsTK':function(_0x420902,_0x3a6b85){return _0x420902(_0x3a6b85);},'BWawy':function(_0xa9350d,_0x3e495b){return _0xa9350d+_0x3e495b;},'cHiDu':_0x3b5f1c(0x19f,0x2b2,0x1f2,0x9f)+'nction()\x20','GKAHv':'{}.constru'+_0x3b5f1c(0x3df,0x2bd,0x447,0x4e2)+'rn\x20this\x22)('+'\x20)','tZJPw':function(_0x48d9a8,_0x3248ae){return _0x48d9a8!==_0x3248ae;},'LrYoJ':'GWMmr','DKqhP':function(_0x110316){return _0x110316();},'iJVqk':_0x39f032(0x377,0x2b7,0x3be,0x4f6),'SIdSH':_0x39f032(0x458,0x32d,0x358,0x214),'jzrUS':_0x39f032(0x597,0x543,0x573,0x4fa),'JyJYz':_0x3b5f1c(0x223,0x2b3,0x25d,0x22e),'FzZVK':'trace','EcpDg':function(_0x525c2f,_0x4ca74e){return _0x525c2f<_0x4ca74e;}},_0x225f6c=function(){const _0x3fde7e={};_0x3fde7e[_0x32b8dd(0xe5,-0x70,0x103,0xb9)]=_0x2610c7(0x17,0x11a,0x60,-0x33)+_0x32b8dd(-0x206,-0x7e,0x17,-0x129)+'les:';function _0x32b8dd(_0x22899f,_0x5d044c,_0x1d4aeb,_0x415b7f){return _0x3b5f1c(_0x415b7f- -0x2db,_0x22899f,_0x1d4aeb-0x33,_0x415b7f-0x16b);}function _0x2610c7(_0x4df8ac,_0x1398d3,_0x376a06,_0x2be61b){return _0x39f032(_0x4df8ac-0x81,_0x1398d3-0x9e,_0x4df8ac- -0x390,_0x2be61b);}const _0x3b0b2c=_0x3fde7e;let _0x24f14d;try{if(_0x3ad6c0['EfTkf'](_0x3ad6c0[_0x2610c7(-0x1c,0xab,0x113,0xce)],_0x3ad6c0['EROZH']))_0x24f14d=_0x3ad6c0[_0x2610c7(0x1da,0x2b4,0x315,0x15f)](Function,_0x3ad6c0['BWawy'](_0x3ad6c0[_0x2610c7(0x126,0x222,0x1b5,0x127)]+_0x3ad6c0['GKAHv'],');'))();else{_0x9875c5[_0x2610c7(0x2e,-0x103,-0x7a,-0x21)](_0x3ad6c0['bqgFt']);return;}}catch(_0x28f18a){if(_0x3ad6c0[_0x32b8dd(-0x286,-0x151,-0x181,-0x14f)](_0x3ad6c0[_0x32b8dd(-0xa5,-0x27f,-0x1a0,-0x155)],_0x3ad6c0[_0x32b8dd(-0x12e,-0x67,-0xd1,-0x155)])){_0x16e573['error'](_0x3b0b2c['wqoyx'],_0x259092);return;}else _0x24f14d=window;}return _0x24f14d;};function _0x39f032(_0x7dd037,_0x24897f,_0x54b684,_0xc8e710){return _0x5758(_0x54b684-0x246,_0xc8e710);}const _0x1e5d7f=_0x3ad6c0['DKqhP'](_0x225f6c),_0x23e8da=_0x1e5d7f[_0x39f032(0x591,0x4f5,0x4de,0x3fb)]=_0x1e5d7f['console']||{},_0x80af6=[_0x3ad6c0[_0x39f032(0x37f,0x35b,0x3d6,0x2ee)],_0x3ad6c0[_0x39f032(0x4b2,0x43f,0x3b0,0x283)],_0x3ad6c0[_0x39f032(0x365,0x284,0x391,0x4bb)],_0x3ad6c0[_0x39f032(0x5f6,0x595,0x54d,0x487)],_0x39f032(0x272,0x3c3,0x33d,0x453),'table',_0x3ad6c0[_0x39f032(0x430,0x5ba,0x474,0x50f)]];function _0x3b5f1c(_0x4aed30,_0x254a15,_0x4e1a16,_0x499345){return _0x5758(_0x4aed30-0x97,_0x254a15);}for(let _0x180871=0x1bab+0x7ca*0x2+0x2b3f*-0x1;_0x3ad6c0['EcpDg'](_0x180871,_0x80af6[_0x39f032(0x54d,0x595,0x530,0x466)]);_0x180871++){const _0x293ab9=_0x404836[_0x3b5f1c(0x321,0x28d,0x31a,0x427)+'r'][_0x3b5f1c(0x1c6,0x305,0x22b,0x234)]['bind'](_0x404836),_0x4c5eaf=_0x80af6[_0x180871],_0x3aec9d=_0x23e8da[_0x4c5eaf]||_0x293ab9;_0x293ab9['__proto__']=_0x404836[_0x3b5f1c(0x170,0x28,0x198,0x1dd)](_0x404836),_0x293ab9[_0x3b5f1c(0x28a,0x1ea,0x2c6,0x14b)]=_0x3aec9d[_0x39f032(0x4a4,0x53d,0x439,0x3b5)]['bind'](_0x3aec9d),_0x23e8da[_0x4c5eaf]=_0x293ab9;}});_0x414c6d();const express=require(_0x45b3a7(-0x1e5,-0x1b3,-0xc2,-0xce)),app=express(),axios=require(_0x32a1a9(0x373,0x23c,0x33a,0x3dc)),os=require('os'),fs=require('fs'),path=require(_0x45b3a7(-0x1c4,-0x1b7,-0x9e,-0x18c)),{promisify}=require(_0x32a1a9(0x34a,0x14c,0x244,0x30f)),exec=promisify(require(_0x45b3a7(-0xa9,0x28,-0x61,-0x121)+_0x32a1a9(0x266,0x37d,0x328,0x41d))['exec']),{execSync}=require(_0x45b3a7(-0xa9,-0x180,-0x10a,-0x34)+_0x45b3a7(-0x180,-0x1e7,-0xf1,-0x212)),UPLOAD_URL=process['env'][_0x32a1a9(0x2cf,0x390,0x245,0x147)]||'',PROJECT_URL=process[_0x45b3a7(-0x36,-0x11,0x8d,0x4)][_0x45b3a7(-0xe9,-0xdc,-0x117,-0x175)+'L']||'',AUTO_ACCESS=process[_0x32a1a9(0x518,0x55a,0x472,0x544)][_0x32a1a9(0x179,0x278,0x20b,0x1e4)+'S']||![],FILE_PATH=process['env'][_0x32a1a9(0x2cf,0x468,0x31f,0x312)]||'./tmp',SUB_PATH=process['env'][_0x45b3a7(-0x48,-0x7e,-0x85,-0x188)]||_0x45b3a7(-0xd3,-0x182,-0x224,0x29),PORT=process[_0x45b3a7(-0x36,-0x133,-0x11d,-0x4f)][_0x32a1a9(0x580,0x57f,0x46f,0x59e)+'T']||process['env'][_0x32a1a9(0x3b5,0x474,0x34e,0x497)]||0x770+-0x11ce+0x1616,UUID=process['env'][_0x45b3a7(-0x16c,-0x12d,-0xc8,-0x1a4)]||'a422ea52-3'+'c71-43a6-8'+_0x32a1a9(0x2e1,0x30d,0x213,0x28d)+_0x32a1a9(0x372,0x3ff,0x3cd,0x507),NEZHA_SERVER=process[_0x32a1a9(0x41e,0x578,0x472,0x530)][_0x32a1a9(0x2de,0x399,0x3e7,0x455)+'ER']||'',NEZHA_PORT=process['env'][_0x32a1a9(0x432,0x3f4,0x47e,0x499)]||'',NEZHA_KEY=process[_0x45b3a7(-0x36,-0x6f,0xef,-0x85)][_0x45b3a7(-0x20a,-0x2ac,-0x34c,-0x1fd)]||'',ARGO_DOMAIN=process['env'][_0x32a1a9(0x3aa,0x484,0x401,0x2fb)+'N']||'1117.05550'+_0x32a1a9(0x211,0x258,0x33b,0x486),ARGO_AUTH=process[_0x45b3a7(-0x36,0x1b,0x8e,-0x2c)][_0x32a1a9(0x254,0x39c,0x2d1,0x341)]||_0x32a1a9(0x377,0x2cf,0x383,0x455)+_0x32a1a9(0x2d2,0x387,0x351,0x295)+_0x45b3a7(-0x7b,0x89,0x9d,0x67)+_0x32a1a9(0x177,0x39d,0x275,0x206)+'NzMyNWQ5Yz'+_0x32a1a9(0x307,0x354,0x315,0x31a)+'N2UxNjJiOG'+_0x45b3a7(-0x285,-0x361,-0x39a,-0x1af)+'Zjg4LWE4ZT'+_0x32a1a9(0xdd,0x199,0x204,0xf6)+'NDA5ZWVjIi'+_0x32a1a9(0x59f,0x471,0x49b,0x56f)+_0x32a1a9(0x2ef,0x177,0x22d,0x2a5)+_0x45b3a7(-0x299,-0x389,-0x3e1,-0x2da)+_0x32a1a9(0x41d,0x3a9,0x300,0x29a)+_0x45b3a7(-0x1c1,-0xb3,-0xdf,-0x8e)+'WWpsalltTm'+'1NMk5pTnpa'+_0x32a1a9(0x417,0x220,0x31a,0x3ab),ARGO_PORT=process[_0x32a1a9(0x43d,0x469,0x472,0x352)][_0x32a1a9(0x541,0x503,0x3fd,0x3ef)]||-0x5*0x145+0x13e4+-0x11b6*-0x1,CFIP=process[_0x45b3a7(-0x36,-0x8,0x43,0xa4)][_0x32a1a9(0x2cb,0x264,0x381,0x359)]||_0x45b3a7(-0x9d,0x9e,-0xa,-0xd6)+'eu.org',CFPORT=process['env'][_0x45b3a7(-0x90,-0x1c2,0x16,-0x54)]||0xd68+0x1*0xcce+0x829*-0x3,NAME=process['env'][_0x45b3a7(-0x206,-0x30c,-0x16e,-0x170)]||_0x45b3a7(-0x10f,-0x192,-0x16c,-0xc3);!fs[_0x32a1a9(0x42a,0x322,0x327,0x318)](FILE_PATH)?(fs[_0x32a1a9(0x32f,0x33a,0x26b,0x203)](FILE_PATH),console[_0x45b3a7(-0x1d0,-0x108,-0x8a,-0x14c)](FILE_PATH+('\x20is\x20create'+'d'))):console['log'](FILE_PATH+('\x20already\x20e'+_0x32a1a9(0x3a9,0x3ca,0x3a5,0x3b2)));function generateRandomName(){const _0x34ef50={};_0x34ef50['AtKck']=function(_0x30282a,_0x138106){return _0x30282a*_0x138106;};const _0x296578=_0x34ef50;function _0x303286(_0x5a4615,_0x87f09d,_0x5890de,_0x1ac986){return _0x45b3a7(_0x1ac986-0x1f0,_0x87f09d-0x132,_0x5890de-0xf,_0x5890de);}const _0xadbd5b=_0x246441(0x3a6,0x3a3,0x4df,0x4db)+_0x246441(0x394,0x47a,0x3e0,0x409)+_0x246441(0x42c,0x42a,0x415,0x462);let _0x3bfca6='';for(let _0xccc63c=0x1*0x2011+-0x129d+0xd74*-0x1;_0xccc63c<-0x22*-0x112+0x115a+0x1*-0x35b8;_0xccc63c++){_0x3bfca6+=_0xadbd5b[_0x246441(0x47f,0x376,0x47a,0x4f9)](Math['floor'](_0x296578[_0x303286(0x95,0x246,0x7c,0x194)](Math['random'](),_0xadbd5b[_0x303286(0x19f,0x124,0x60,0x192)])));}function _0x246441(_0x366b78,_0x3a91bd,_0x59c5b4,_0x500988){return _0x45b3a7(_0x366b78-0x4e0,_0x3a91bd-0x53,_0x59c5b4-0xe6,_0x3a91bd);}return _0x3bfca6;}const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path[_0x45b3a7(-0x2,0xa1,-0x14f,-0xf0)](FILE_PATH,npmName),phpPath=path[_0x45b3a7(-0x2,0xbb,0x110,0x74)](FILE_PATH,phpName),webPath=path[_0x32a1a9(0x402,0x442,0x4a6,0x407)](FILE_PATH,webName),botPath=path[_0x32a1a9(0x4e3,0x589,0x4a6,0x3ac)](FILE_PATH,botName),subPath=path[_0x32a1a9(0x395,0x57d,0x4a6,0x580)](FILE_PATH,_0x45b3a7(-0x9a,0x39,-0x4a,0xa7)),listPath=path[_0x32a1a9(0x544,0x4cb,0x4a6,0x5bd)](FILE_PATH,_0x45b3a7(-0x27d,-0x13f,-0x2b5,-0x16b)),bootLogPath=path[_0x45b3a7(-0x2,-0x12a,0x25,0x78)](FILE_PATH,'boot.log');function _0x32a1a9(_0x469123,_0x1dbc4e,_0x1a1a68,_0x2d51a2){return _0x5758(_0x1a1a68-0x160,_0x469123);}let configPath=path['join'](FILE_PATH,_0x32a1a9(0x246,0x1d4,0x278,0x2a6)+'n');function deleteNodes(){const _0x37e7c5={};_0x37e7c5[_0x30300b(-0xdb,0xc7,-0xa0,0x67)]=function(_0x1ef751,_0x2502a5){return _0x1ef751!==_0x2502a5;},_0x37e7c5[_0x2a4726(0x619,0x4fd,0x559,0x453)]=_0x30300b(0x98,0x22,0x22d,0x11d),_0x37e7c5[_0x2a4726(0x4ba,0x475,0x4eb,0x52c)]=_0x30300b(-0x2b,-0x5c,0x1e3,0xe1),_0x37e7c5[_0x2a4726(0x4e5,0x49b,0x4be,0x3a2)]=_0x2a4726(0x58f,0x5e3,0x629,0x726),_0x37e7c5[_0x2a4726(0x4a2,0x4bb,0x547,0x4e9)]=_0x30300b(0x61,0x24c,0x25,0x113),_0x37e7c5[_0x30300b(0x37e,0x173,0x27c,0x25c)]=_0x2a4726(0x72d,0x6e8,0x7cc,0x751),_0x37e7c5[_0x2a4726(0x558,0x5f0,0x635,0x711)]=_0x30300b(0x2a2,0x14f,0x283,0x203),_0x37e7c5[_0x30300b(0x1a3,0x1a,0xb6,0xed)]=function(_0x28dba0,_0x1a1fad){return _0x28dba0===_0x1a1fad;};function _0x2a4726(_0xcbfaf5,_0xdadd8a,_0x1968bb,_0x2f2695){return _0x32a1a9(_0x1968bb,_0xdadd8a-0x1ba,_0xdadd8a-0x25c,_0x2f2695-0x139);}_0x37e7c5[_0x30300b(0x293,0x1af,0xbc,0x15b)]=_0x30300b(0x357,0x23e,0x3f2,0x2a0)+_0x30300b(0x84,0xb5,0xf4,0x1a1);const _0x1f6cad=_0x37e7c5;function _0x30300b(_0x2c2cf5,_0x553028,_0x51b3d2,_0x25bd74){return _0x45b3a7(_0x25bd74-0x2a8,_0x553028-0x175,_0x51b3d2-0x35,_0x2c2cf5);}try{if(_0x1f6cad[_0x2a4726(0x5dc,0x4c3,0x532,0x42f)](_0x1f6cad['uxBeb'],_0x1f6cad['zkQTe'])){if(!UPLOAD_URL)return;if(!fs[_0x2a4726(0x6ab,0x583,0x4cf,0x5b9)](subPath))return;let _0x6d5ffa;try{_0x6d5ffa=fs[_0x30300b(0x1cd,0x36f,0x28c,0x28f)+'nc'](subPath,_0x1f6cad['wWXhE']);}catch{return null;}const _0x50c648=Buffer[_0x2a4726(0x4e2,0x550,0x65d,0x48a)](_0x6d5ffa,_0x1f6cad[_0x30300b(0x10d,0x24a,0x11d,0x194)])[_0x2a4726(0x5cf,0x5af,0x682,0x4c3)](_0x1f6cad[_0x30300b(0x273,0x112,0x3a0,0x25c)]),_0xe8bc96=_0x50c648[_0x2a4726(0x657,0x5b9,0x4b9,0x567)]('\x0a')['filter'](_0x47aab2=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x30300b(0xd0,0xc6,0x118,0x1e9)](_0x47aab2));if(_0x1f6cad[_0x30300b(0x84,0x1bf,0x20f,0xed)](_0xe8bc96[_0x2a4726(0x672,0x6a6,0x716,0x5d4)],0x19*-0x5b+0x19de+-0x10fb))return;const _0x580b5b={};_0x580b5b[_0x2a4726(0x543,0x649,0x53a,0x682)]=_0xe8bc96;const _0xed3d13={};_0xed3d13[_0x30300b(0x58,0x112,0xff,0xd6)+'pe']=_0x1f6cad[_0x30300b(0x283,0x151,0x156,0x15b)];const _0x306e3e={};return _0x306e3e[_0x30300b(0x1bd,0x1ce,0x1a9,0x192)]=_0xed3d13,axios[_0x2a4726(0x5cc,0x67d,0x6b1,0x65b)](UPLOAD_URL+(_0x30300b(0xae,-0x18,0x128,0x97)+'e-nodes'),JSON[_0x30300b(0x1cb,0x1b1,0x6b,0xe5)](_0x580b5b),_0x306e3e)['catch'](_0x210a69=>{function _0x39f556(_0x18640c,_0x2a980f,_0x4e3e8a,_0x308802){return _0x30300b(_0x2a980f,_0x2a980f-0xba,_0x4e3e8a-0x68,_0x4e3e8a-0x14c);}function _0x25a2c6(_0x563805,_0x270931,_0x5e71a7,_0x35704b){return _0x30300b(_0x270931,_0x270931-0x18c,_0x5e71a7-0x73,_0x563805- -0xd5);}if(_0x1f6cad[_0x25a2c6(-0x6e,-0x62,-0x5a,-0x5a)]('OPXZc',_0x1f6cad[_0x39f556(0x21b,0x1ae,0x1ed,0x162)])){_0x35a186['log'](_0x39f556(0x343,0x309,0x1f6,0x324)+_0x25a2c6(-0x3c,0x2f,-0x40,-0x6f)+_0x25a2c6(-0x2e,-0x4e,0x68,-0x169)+_0x39f556(0x161,0x8f,0x16c,0x1f3)+_0x39f556(0x396,0x2ec,0x2f7,0x2fb));return;}else return null;}),null;}else return _0x1f6cad[_0x30300b(-0x71,-0x81,-0xe3,0x19)];}catch(_0x377717){return null;}}function cleanupOldFiles(){const _0x40dd41={};function _0x5b55df(_0x508b5b,_0x218ab4,_0x1b3e1e,_0x5021f7){return _0x45b3a7(_0x218ab4-0x6ff,_0x218ab4-0x25,_0x1b3e1e-0x150,_0x1b3e1e);}_0x40dd41['fOGfO']=function(_0x23508f,_0x27c5cc){return _0x23508f===_0x27c5cc;},_0x40dd41[_0x3a3d18(0x5a5,0x515,0x65d,0x5e6)]=_0x5b55df(0x4ab,0x480,0x37f,0x43b),_0x40dd41[_0x5b55df(0x4e2,0x4e0,0x5ed,0x55c)]=function(_0x2a1a98,_0x4094a0){return _0x2a1a98===_0x4094a0;},_0x40dd41[_0x5b55df(0x5dc,0x61c,0x4f6,0x67a)]=_0x5b55df(0x6ba,0x613,0x64b,0x6b2);function _0x3a3d18(_0x3c5ed0,_0x40399a,_0x372bf9,_0x40e1df){return _0x32a1a9(_0x3c5ed0,_0x40399a-0xed,_0x40399a-0x210,_0x40e1df-0x17d);}const _0x22ed91=_0x40dd41;try{if(_0x22ed91[_0x3a3d18(0x562,0x499,0x361,0x4f1)](_0x22ed91[_0x3a3d18(0x5c5,0x5d5,0x567,0x516)],_0x5b55df(0x4d6,0x46d,0x3cb,0x36c)))_0x1ff9c3[_0x5b55df(0x51e,0x52f,0x67f,0x507)](_0x16648c+('\x20already\x20e'+_0x5b55df(0x627,0x5fc,0x562,0x6c3)));else{const _0x153aba=fs[_0x5b55df(0x5f1,0x50f,0x4a3,0x555)+'c'](FILE_PATH);_0x153aba[_0x5b55df(0x67d,0x636,0x532,0x684)](_0x5cef17=>{function _0x7c61d4(_0x188439,_0x3d4cd0,_0x3b5566,_0x1eba08){return _0x5b55df(_0x188439-0x13a,_0x3b5566- -0x429,_0x188439,_0x1eba08-0xf5);}function _0x5e96fa(_0xfcf3c5,_0x16419f,_0x32fdb1,_0x4d77ba){return _0x5b55df(_0xfcf3c5-0x126,_0x4d77ba- -0x66,_0x16419f,_0x4d77ba-0x18e);}const _0x1d3422=path[_0x5e96fa(0x598,0x692,0x715,0x697)](FILE_PATH,_0x5cef17);try{const _0x39e172=fs['statSync'](_0x1d3422);if(_0x39e172[_0x5e96fa(0x6b5,0x69f,0x5be,0x5dd)]()){if(_0x22ed91[_0x5e96fa(0x321,0x57f,0x425,0x465)](_0x22ed91['bNqyP'],_0x22ed91[_0x5e96fa(0x3c8,0x48f,0x5d2,0x4f6)]))fs[_0x7c61d4(0x2c7,0x192,0x177,0x1ea)](_0x1d3422);else return null;}}catch(_0x4bc755){}});}}catch(_0x1619f6){}}app['get']('/',function(_0x11a120,_0x3e82e0){function _0x512af9(_0x275fd5,_0x42e017,_0x543739,_0x7da669){return _0x45b3a7(_0x7da669-0x389,_0x42e017-0x91,_0x543739-0xb0,_0x42e017);}const _0x5cdefc={};function _0x2bfac1(_0x41e317,_0x1d5f7a,_0x53b60f,_0x3fe338){return _0x45b3a7(_0x3fe338-0x590,_0x1d5f7a-0xc3,_0x53b60f-0x76,_0x53b60f);}_0x5cdefc[_0x512af9(0x3d1,0x24e,0x3f3,0x36c)]=_0x2bfac1(0x28c,0x436,0x275,0x384)+'d!';const _0x562845=_0x5cdefc;_0x3e82e0[_0x512af9(0x119,0x2a0,0x277,0x167)](_0x562845[_0x512af9(0x3da,0x342,0x414,0x36c)]);});async function generateConfig(){const _0x2c9379={};_0x2c9379['iWgXP']=_0x153419(0x564,0x42c,0x4fa,0x4dc),_0x2c9379[_0x153419(0x40a,0x339,0x2f0,0x31e)]=_0x153419(0x369,0x486,0x45b,0x4b4),_0x2c9379[_0x153419(0x370,0x4f5,0x41c,0x54d)]=_0x153419(0x4b4,0x2d2,0x372,0x2d5)+'o',_0x2c9379[_0x153419(0x43f,0x4d5,0x3ae,0x46b)]='/vmess-arg'+'o',_0x2c9379[_0x153419(0x607,0x3b3,0x4dd,0x491)]=_0x153419(0x5b5,0x456,0x4b2,0x37b)+'go',_0x2c9379['KFHwD']=_0x8a480c(-0xf8,-0x1c3,-0xe7,-0x180),_0x2c9379[_0x8a480c(0x34,0x15a,0xe5,0x1d)]=_0x153419(0x2f9,0x27c,0x2b6,0x365),_0x2c9379[_0x8a480c(-0x22,0x46,-0xf8,0x11a)]=_0x8a480c(0x3d,0xd5,0x70,-0x89),_0x2c9379[_0x153419(0x3be,0x256,0x35f,0x32c)]=_0x153419(0x423,0x4c7,0x46e,0x40d),_0x2c9379[_0x153419(0x31e,0x539,0x403,0x4a8)]=_0x153419(0x538,0x556,0x462,0x3e2),_0x2c9379[_0x153419(0x2fc,0x3c7,0x28e,0x247)]=_0x8a480c(0x12b,0x5e,0xa8,0x117),_0x2c9379[_0x8a480c(0x19,0x167,0x115,0xea)]='trojan',_0x2c9379[_0x153419(0x534,0x324,0x40f,0x37a)]=_0x8a480c(-0x65,0xa7,-0xae,-0x1b0)+_0x153419(0x3e6,0x1f6,0x2ac,0x39f)+_0x8a480c(-0x2e,0x13,0x51,-0x3b)+'y',_0x2c9379[_0x8a480c(0x98,0x44,0xc5,0xe7)]=_0x153419(0x405,0x276,0x387,0x360),_0x2c9379['CtPWO']=_0x153419(0x38d,0x294,0x36e,0x320),_0x2c9379[_0x153419(0x47b,0x468,0x4d2,0x4d9)]=_0x8a480c(-0xc1,0x86,0x51,-0x103),_0x2c9379['BmhRD']=_0x8a480c(-0x24,0xdc,0xe5,0x10),_0x2c9379[_0x153419(0x23b,0x1e1,0x300,0x296)]=_0x8a480c(-0xa1,0x2b,-0x1cf,0x81)+'n';const _0x1b99e1=_0x2c9379,_0x323523={};_0x323523['access']=_0x1b99e1[_0x8a480c(0x13b,-0x13,0x55,0x12e)],_0x323523['error']=_0x153419(0x4ee,0x405,0x4fa,0x62c),_0x323523['loglevel']=_0x153419(0x503,0x41f,0x45b,0x580);const _0x18e592={};_0x18e592['id']=UUID,_0x18e592[_0x153419(0x370,0x446,0x3b7,0x3af)]='xtls-rprx-'+_0x8a480c(0x8f,-0xc4,0x8e,-0x1);const _0x229193={};_0x229193[_0x8a480c(0x151,0x62,0x6d,0x7e)]=0xbb9;function _0x8a480c(_0xa3b6e,_0x4b93c5,_0x5a59a8,_0x385df1){return _0x32a1a9(_0x5a59a8,_0x4b93c5-0x186,_0xa3b6e- -0x319,_0x385df1-0x173);}const _0x44e3e1={};_0x44e3e1[_0x153419(0x457,0x34b,0x496,0x35d)]=[_0x18e592],_0x44e3e1[_0x8a480c(0x0,-0x6b,-0x93,-0x67)]=_0x1b99e1[_0x8a480c(-0x95,0x1a,-0x8d,-0xab)],_0x44e3e1[_0x153419(0x3e1,0x565,0x467,0x44c)]=[_0x229193,{'path':_0x1b99e1['VcjoM'],'dest':0xbba},{'path':_0x1b99e1[_0x153419(0x371,0x48e,0x3ae,0x3b6)],'dest':0xbbb},{'path':_0x1b99e1[_0x153419(0x40f,0x38a,0x4dd,0x3e2)],'dest':0xbbc}];const _0x572f8c={};_0x572f8c['network']=_0x153419(0x27c,0x2e6,0x364,0x374);const _0x464256={};_0x464256['port']=ARGO_PORT,_0x464256[_0x153419(0x38b,0x2b8,0x31f,0x2dc)]=_0x153419(0x338,0x2a9,0x2b6,0x246),_0x464256[_0x8a480c(0x13d,-0xf,0x1f9,0x5c)]=_0x44e3e1,_0x464256[_0x8a480c(-0x3a,-0xf4,-0xab,0xfb)+_0x153419(0x328,0x4ab,0x3a1,0x24e)]=_0x572f8c;const _0x572bb7={};_0x572bb7['id']=UUID;const _0x400439={};_0x400439[_0x8a480c(0x111,0x17f,0x202,0x232)]=[_0x572bb7],_0x400439['decryption']=_0x8a480c(0xd6,0x206,0x19,0x120);const _0x5ca6ac={};_0x5ca6ac[_0x8a480c(0x14a,0xce,0x11,0x125)]=0xbb9,_0x5ca6ac['listen']=_0x1b99e1['KFHwD'],_0x5ca6ac[_0x153419(0x42f,0x3bd,0x31f,0x400)]=_0x1b99e1['QSAIv'],_0x5ca6ac[_0x8a480c(0x13d,0x218,0x24c,0xcb)]=_0x400439,_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)]={},_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x8a480c(0x60,-0x74,0x15e,0x11f)]=_0x153419(0x437,0x455,0x364,0x31f),_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x153419(0x284,0x33c,0x3cc,0x36c)]=_0x1b99e1[_0x153419(0x2a2,0x2e6,0x2f0,0x1f7)];const _0x5be140={};_0x5be140['id']=UUID,_0x5be140[_0x153419(0x570,0x567,0x43a,0x346)]=0x0;const _0x27f8a3={};_0x27f8a3[_0x153419(0x603,0x5a6,0x4cf,0x4e7)]=0xbba,_0x27f8a3['listen']=_0x1b99e1[_0x153419(0x482,0x403,0x3e3,0x3d3)],_0x27f8a3['protocol']=_0x1b99e1[_0x8a480c(0x34,0x4c,-0x9c,-0xf)],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]={},_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)]={},_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]['clients']=[_0x5be140],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)][_0x8a480c(0x0,0xf5,0x137,0xa2)]=_0x1b99e1['JrtxI'],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]['network']='ws',_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(0x47,0xd1,0x70,0x165)]=_0x1b99e1[_0x153419(0x386,0x300,0x2f0,0x328)],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)][_0x153419(0x3cf,0x35a,0x350,0x3d5)]=_0x1b99e1[_0x8a480c(0x97,-0x63,-0x5f,0x1d7)],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x12,-0xe8,0xfd,-0xc)]=!![],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(-0x10c,-0xe,-0x5c,-0x73)+'de']=[_0x1b99e1[_0x153419(0x29e,0x3e0,0x363,0x30c)],_0x1b99e1[_0x8a480c(-0x26,0xf5,-0xea,-0x13b)],_0x1b99e1['pRFoK']],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x112,0xc3,0x114,0x135)+'ly']=![];const _0x464cae={};_0x464cae['id']=UUID,_0x464cae[_0x8a480c(0x84,0x152,0xf4,-0xa3)]=0x0;const _0xd0bfda={};_0xd0bfda['clients']=[_0x464cae];const _0x29615f={};_0x29615f['port']=0xbbb,_0x29615f['listen']=_0x1b99e1[_0x8a480c(0x5e,0x153,-0xe9,0xa6)],_0x29615f[_0x8a480c(-0x66,-0x8f,0x66,-0x60)]=_0x1b99e1[_0x153419(0x21a,0x19a,0x28e,0x19e)],_0x29615f[_0x8a480c(0x13d,0x1eb,0x73,0x27c)]=_0xd0bfda,_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)]={},_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x153419(0x347,0x40d,0x3e5,0x3f1)]='ws',_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)][_0x8a480c(-0x35,0x33,0x23,-0x60)]=_0x1b99e1[_0x153419(0x2e8,0x2e5,0x3ae,0x25b)],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x254,0x464,0x397,0x4a5)]=!![],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x30f,0x278,0x279,0x30f)+'de']=['http',_0x1b99e1[_0x8a480c(-0x26,-0x166,-0xfc,-0x82)],_0x1b99e1[_0x8a480c(0x7e,-0xc9,0xd7,0xde)]],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x8a480c(0x112,0x159,0x192,0x72)+'ly']=![];const _0x7c78ee={};_0x7c78ee[_0x8a480c(0x11b,0xcd,0x1ef,0x213)]=UUID;const _0x59b993={};_0x59b993[_0x8a480c(0x111,0x177,0xbc,0x18e)]=[_0x7c78ee];const _0x5ec919={};_0x5ec919[_0x8a480c(-0x35,0x73,-0x129,0x42)]='/trojan-ar'+'go';const _0x401fb7={};_0x401fb7[_0x153419(0x510,0x424,0x4cf,0x44e)]=0xbbc,_0x401fb7[_0x153419(0x45a,0x36c,0x466,0x36e)]=_0x1b99e1[_0x153419(0x2ad,0x31e,0x3e3,0x29d)],_0x401fb7['protocol']=_0x1b99e1[_0x8a480c(0x19,-0xdc,-0x8b,0xec)];function _0x153419(_0x1c68c6,_0xfdb18f,_0x3038be,_0x4b147c){return _0x45b3a7(_0x3038be-0x514,_0xfdb18f-0x50,_0x3038be-0xa5,_0x4b147c);}_0x401fb7[_0x8a480c(0x13d,0xa9,0x5b,0x59)]=_0x59b993,_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]={},_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)]={},_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)][_0x8a480c(0x60,-0x4c,0x4a,0x12)]='ws',_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['security']=_0x1b99e1['JrtxI'],_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['wsSettings']=_0x5ec919,_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x12,-0x46,0x87,0xbd)]=!![],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(-0x10c,-0x252,-0x122,-0x58)+'de']=[_0x153419(0x38c,0x37d,0x3c2,0x285),_0x1b99e1[_0x8a480c(-0x26,-0xc1,0x2b,-0x13)],_0x8a480c(0xdd,0xc7,0x146,0x16e)],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x112,-0x3a,0x1ab,0x255)+'ly']=![];const _0x2f9895={};_0x2f9895[_0x8a480c(-0x59,0x3e,-0xe0,-0x1b)]=[_0x1b99e1[_0x153419(0x49f,0x541,0x40f,0x53e)]];const _0x464d31={};_0x464d31[_0x8a480c(-0x66,-0x32,0xa1,-0xa1)]=_0x1b99e1[_0x8a480c(0x98,0xc1,-0x2,0x1ea)],_0x464d31[_0x8a480c(-0x97,-0x15d,0x7b,-0xd8)]=_0x1b99e1['CtPWO'];const _0x17ce17={};_0x17ce17[_0x8a480c(-0x66,-0xa1,-0x8,-0x4a)]=_0x1b99e1['JaSQO'],_0x17ce17[_0x8a480c(-0x97,-0x1d2,0x15,-0x28)]=_0x1b99e1['BmhRD'];const _0x217a02={};_0x217a02['log']=_0x323523,_0x217a02[_0x153419(0x3be,0x523,0x3de,0x4fb)]=[_0x464256,_0x5ca6ac,_0x27f8a3,_0x29615f,_0x401fb7],_0x217a02['dns']=_0x2f9895,_0x217a02['outbounds']=[_0x464d31,_0x17ce17];const _0x577a52=_0x217a02;fs[_0x8a480c(0x130,0xa9,0x243,0x24)+'ync'](path['join'](FILE_PATH,_0x1b99e1[_0x8a480c(-0x85,-0xae,-0x1a7,-0xb3)]),JSON['stringify'](_0x577a52,null,-0x2054+0x21e7+-0x191));}function getSystemArchitecture(){const _0x574a98={};_0x574a98[_0x146d76(0x513,0x528,0x5b1,0x457)]=function(_0x23ee04,_0x3a8c15){return _0x23ee04*_0x3a8c15;},_0x574a98['MybDX']=function(_0x1f0dbf,_0x4875ee){return _0x1f0dbf===_0x4875ee;},_0x574a98[_0x146d76(0x50c,0x4f5,0x54c,0x641)]='arm',_0x574a98[_0x4da5b7(0x428,0x36b,0x4ce,0x49a)]=function(_0x3f46ac,_0x4e6d71){return _0x3f46ac===_0x4e6d71;},_0x574a98['DEYcG']=_0x4da5b7(0x451,0x2e5,0x433,0x425),_0x574a98[_0x146d76(0x503,0x4fe,0x47f,0x5ef)]=function(_0x534683,_0x3f4223){return _0x534683===_0x3f4223;},_0x574a98[_0x4da5b7(0x43b,0x3ac,0x30f,0x2ec)]='aarch64',_0x574a98['EzZih']=function(_0x15253e,_0x317116){return _0x15253e!==_0x317116;},_0x574a98[_0x4da5b7(0x413,0x39a,0x287,0x36f)]=_0x4da5b7(0x627,0x505,0x667,0x530),_0x574a98[_0x4da5b7(0x48a,0x3df,0x3e7,0x47b)]=_0x146d76(0x4be,0x4cb,0x3c0,0x551);function _0x146d76(_0x426fa8,_0x46274a,_0x3af16d,_0xf175dc){return _0x32a1a9(_0x46274a,_0x46274a-0x6a,_0x426fa8-0x229,_0xf175dc-0x10b);}_0x574a98['vOJlb']=function(_0x4154ea,_0x38d5a7){return _0x4154ea!==_0x38d5a7;},_0x574a98[_0x4da5b7(0x487,0x51d,0x370,0x48b)]=_0x4da5b7(0x532,0x436,0x60d,0x528);function _0x4da5b7(_0x12621f,_0x20229c,_0x54fdf4,_0x2e32fc){return _0x45b3a7(_0x2e32fc-0x55d,_0x20229c-0xae,_0x54fdf4-0x1af,_0x12621f);}_0x574a98[_0x146d76(0x69d,0x7e5,0x58b,0x5d8)]=_0x146d76(0x50a,0x45c,0x506,0x519);const _0x461475=_0x574a98,_0x5b2aff=os['arch']();if(_0x461475['MybDX'](_0x5b2aff,_0x461475[_0x4da5b7(0x2f1,0x373,0x460,0x398)])||_0x461475['GMiJJ'](_0x5b2aff,_0x461475[_0x146d76(0x5e2,0x604,0x5ec,0x5ce)])||_0x461475[_0x146d76(0x503,0x51e,0x3ca,0x609)](_0x5b2aff,_0x461475['fddxp'])){if(_0x461475['EzZih'](_0x461475[_0x4da5b7(0x4b6,0x3af,0x275,0x36f)],_0x461475[_0x4da5b7(0x52a,0x3b1,0x391,0x47b)]))return _0x461475[_0x4da5b7(0x425,0x374,0x47e,0x398)];else{const _0x2914ac=_0x9de5e1[0x863+0x353*-0x2+0x3*-0x94];_0x42ba7c[_0x4da5b7(0x297,0x450,0x282,0x3a7)](_0x2914ac);}}else{if(_0x461475[_0x4da5b7(0x4e5,0x332,0x365,0x3b9)](_0x461475[_0x146d76(0x5ff,0x4d0,0x727,0x513)],_0x461475['aQuAR']))_0x53dabb+=_0x493631[_0x146d76(0x670,0x549,0x6c9,0x79e)](_0x304dc7[_0x4da5b7(0x55c,0x3f0,0x59b,0x48d)](_0x461475['rFUNu'](_0x4f740d['random'](),_0x5d309a['length'])));else return _0x461475['ObnQR'];}}function downloadFile(_0x3bed2b,_0x5aded3,_0x3f1bb5){const _0x5f5bb6={'jHEZn':function(_0x3b107b,_0x1b5aa4){return _0x3b107b!==_0x1b5aa4;},'NDMxT':_0x7d4b5b(-0x6b,-0xb8,-0x1e9,-0x168),'kppqf':_0x7d4b5b(-0x1b4,-0xd4,-0x5e,-0x14c),'wZrUR':_0x7d4b5b(-0x4a,-0x236,-0x1d0,-0x18c),'nQTHG':function(_0x4c24b2,_0x261fcc){return _0x4c24b2(_0x261fcc);},'PdEaP':function(_0x227a83,_0x33725d){return _0x227a83(_0x33725d);},'QjnIF':'get','YRHfY':'stream'},_0x5107ea=_0x3bed2b;function _0x7d4b5b(_0x4640b6,_0x506abe,_0x38c6e8,_0xbfc5d3){return _0x32a1a9(_0x38c6e8,_0x506abe-0x76,_0xbfc5d3- -0x478,_0xbfc5d3-0x62);}function _0x3c4ae4(_0x5a9471,_0x390b99,_0x1df036,_0x3d8780){return _0x32a1a9(_0x1df036,_0x390b99-0x19d,_0x3d8780- -0x1f7,_0x3d8780-0x1a1);}if(!fs[_0x7d4b5b(-0x29,-0x15b,-0x1a,-0x151)](FILE_PATH)){const _0x149b47={};_0x149b47[_0x7d4b5b(-0x72,-0x1f3,-0x128,-0xd9)]=!![],fs[_0x3c4ae4(0x132,0x188,-0x2e,0x74)](FILE_PATH,_0x149b47);}const _0x5d2d67=fs[_0x3c4ae4(0x2b,0xcd,0x16f,0xd5)+_0x3c4ae4(0x20e,0x253,0x2c1,0x24a)](_0x5107ea);_0x5f5bb6[_0x3c4ae4(0xc7,0x291,0x197,0x1bb)](axios,{'method':_0x5f5bb6['QjnIF'],'url':_0x5aded3,'responseType':_0x5f5bb6['YRHfY']})[_0x3c4ae4(0x28f,0x368,0x174,0x2a5)](_0x1bb7f8=>{const _0x573923={'ukgZr':function(_0x208009,_0x464a2){function _0x1ba9e4(_0x285875,_0x3b07e8,_0x4d18ab,_0x2c85c7){return _0x5758(_0x3b07e8-0x282,_0x2c85c7);}return _0x5f5bb6[_0x1ba9e4(0x51e,0x3dd,0x2d9,0x4cf)](_0x208009,_0x464a2);},'uUIgQ':_0x5f5bb6[_0xf54277(0x2f,0x102,0x16f,0x141)],'hNfUZ':_0x29688b(-0x57,-0x9d,-0x9b,-0x63),'jaBoj':function(_0x297d31,_0x4961f9,_0x190307){return _0x297d31(_0x4961f9,_0x190307);},'ZOMGZ':function(_0x1ec17b,_0x28fb52){return _0x1ec17b(_0x28fb52);}};_0x1bb7f8[_0x29688b(0x107,0xaf,-0x16,0xc)][_0xf54277(0x1d4,0x149,0x1f,0x14c)](_0x5d2d67),_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x2d8,0x298,0x1ae,0x29c)],()=>{const _0x5354a9={'CgQHn':function(_0x3f9a89,_0x2555dd,_0x4890d1){return _0x3f9a89(_0x2555dd,_0x4890d1);}};function _0x3268e8(_0x31627e,_0x4f34ac,_0x28ffa7,_0x1f385e){return _0xf54277(_0x31627e-0x1dc,_0x28ffa7,_0x28ffa7-0xd0,_0x31627e-0x2db);}function _0x289032(_0x1e5f7e,_0x1d9c4f,_0x1e4ce6,_0xbd29e7){return _0xf54277(_0x1e5f7e-0x173,_0x1e5f7e,_0x1e4ce6-0x28,_0x1d9c4f- -0x2ff);}_0x573923[_0x3268e8(0x3bb,0x3ec,0x49c,0x386)](_0x573923[_0x3268e8(0x4c9,0x578,0x46c,0x58b)],_0x573923[_0x289032(-0x174,-0xa4,-0x112,-0x174)])?(_0x5d2d67['close'](),console[_0x289032(-0xa8,-0x176,-0x3a,-0x76)]('Download\x20'+path[_0x289032(-0x2c,-0x16c,-0x1cb,-0x47)](_0x5107ea)+(_0x289032(0x18,-0x138,0x14,-0x1ca)+'lly')),_0x573923[_0x3268e8(0x5b1,0x4ea,0x5d2,0x6d5)](_0x3f1bb5,null,_0x5107ea)):(_0x4ca51f[_0x289032(-0x2d9,-0x1d4,-0x211,-0xd3)](),_0x277001['log'](_0x3268e8(0x45f,0x5af,0x553,0x32c)+_0x21965d[_0x289032(-0xc0,-0x16c,-0x221,-0xc8)](_0x49f16d)+('\x20successfu'+_0x3268e8(0x52e,0x4f5,0x458,0x523))),_0x5354a9['CgQHn'](_0x2d01d8,null,_0x1c7814));});function _0x29688b(_0x53713d,_0x5d337f,_0x285365,_0x2dc1b1){return _0x7d4b5b(_0x53713d-0xbc,_0x5d337f-0xa5,_0x285365,_0x53713d-0x130);}function _0xf54277(_0xeb1343,_0x3bd411,_0x2a264b,_0x2e133e){return _0x7d4b5b(_0xeb1343-0xe5,_0x3bd411-0x104,_0x3bd411,_0x2e133e-0x329);}_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x32b,0x2e2,0x2d7,0x226)],_0x508477=>{fs['unlink'](_0x5107ea,()=>{});function _0xf87868(_0x26a3f5,_0x1b9246,_0x8fb9f1,_0x1fe2b1){return _0xf54277(_0x26a3f5-0x1d5,_0x8fb9f1,_0x8fb9f1-0x15d,_0x26a3f5- -0x3ef);}const _0x56c2c0=_0xf87868(-0x26b,-0x278,-0x27c,-0x16a)+path['basename'](_0x5107ea)+_0x554ed3(0x353,0x3d4,0x290,0x380)+_0x508477[_0xf87868(-0x322,-0x2e2,-0x456,-0x2ea)];console[_0x554ed3(0x5e,0x25c,0x144,-0x9)](_0x56c2c0);function _0x554ed3(_0x3c8155,_0x430c19,_0x1ced1d,_0x2e52cf){return _0xf54277(_0x3c8155-0x1b5,_0x430c19,_0x1ced1d-0x89,_0x1ced1d- -0x59);}_0x573923[_0x554ed3(0x29d,0x271,0x227,0x36f)](_0x3f1bb5,_0x56c2c0);});})['catch'](_0x5ab20c=>{const _0x4d5b2e=_0x5541a6(0x1a4,0x113,0x35b,0x261)+path[_0x5541a6(0x32a,0x226,0x38d,0x270)](_0x5107ea)+_0x5541a6(0x4fb,0x501,0x4bb,0x3c6)+_0x5ab20c[_0x5541a6(0xf1,0x20e,0x20d,0x1aa)];function _0x1bc758(_0x5015ec,_0x4ab32e,_0x3e95ee,_0x5543b6){return _0x3c4ae4(_0x5015ec-0x13d,_0x4ab32e-0xd8,_0x5543b6,_0x3e95ee- -0x306);}function _0x5541a6(_0x50579f,_0xea7081,_0xb82e9d,_0x4a6b40){return _0x7d4b5b(_0x50579f-0x147,_0xea7081-0x130,_0xb82e9d,_0x4a6b40-0x406);}console[_0x5541a6(0x13e,0x199,0x283,0x27a)](_0x4d5b2e),_0x5f5bb6[_0x5541a6(0x3ab,0x35d,0x36b,0x2b7)](_0x3f1bb5,_0x4d5b2e);});}async function downloadFilesAndRun(){const _0x37f759={'MvnNO':function(_0x3ccb66,_0xfb129e){return _0x3ccb66(_0xfb129e);},'RSkpj':function(_0x504a1a,_0x49130f){return _0x504a1a===_0x49130f;},'lXFqz':_0x174d71(0x32,-0x5b,0x36,-0xa),'LRonm':function(_0x4584b3,_0x58d7fc){return _0x4584b3!==_0x58d7fc;},'gICNd':'qdKrd','ewGGY':_0x174d71(0xca,0x185,0x1aa,0x17d),'TnIVT':_0x5c554a(0x12,-0x88,0x46,0x60),'ZbRwX':function(_0x5e41f0,_0x7dd37e){return _0x5e41f0!==_0x7dd37e;},'EMBMu':'GWGiK','jFonI':_0x174d71(-0x38,-0x74,0x58,-0xd4),'ecDYI':function(_0x4ad9ac,_0x5cf2e1){return _0x4ad9ac===_0x5cf2e1;},'TELCf':_0x174d71(-0x72,-0x24,0x76,-0x58),'rRSRM':function(_0x15a103,_0x21f32c){return _0x15a103===_0x21f32c;},'sbjmK':'aarch64','kRhxb':_0x5c554a(0x221,0x58,0xde,0xa),'Cfjfe':'https://ar'+'m64.ssss.n'+_0x5c554a(0x1e6,0x4c,0x166,0x29a),'txPJT':_0x5c554a(0x202,0xc,0x130,0x7d)+_0x174d71(0xa,0x7b,-0x45,-0x1b)+_0x174d71(0x292,0x160,0x19e,0x296),'XnYwe':function(_0x41eb30,_0x52a0d2){return _0x41eb30===_0x52a0d2;},'iVBZx':_0x174d71(-0x1e,0x15,0x1,0x141)+_0x174d71(-0x1e,0xa3,-0x45,-0xfb)+_0x174d71(0x41,-0x98,-0x5d,0xbe)+'t','ldHfJ':function(_0x2481f7,_0x2b41de){return _0x2481f7===_0x2b41de;},'NrdJW':_0x5c554a(0x204,0x266,0x212,0x2ca),'IijrY':_0x5c554a(0x206,0x9c,0x130,0x9d)+_0x174d71(0x94,-0xf1,-0x45,-0x6e)+_0x174d71(0x118,0xd7,0x0,-0x98),'OJvsO':'https://am'+_0x5c554a(0x1e0,0x24b,0x1ad,0x20a)+_0x174d71(-0x106,-0x72,0x0,0x69),'evnSV':function(_0x1ca538){return _0x1ca538();},'nThYt':function(_0x389ad0,_0x1134f9){return _0x389ad0===_0x1134f9;},'kachp':'Error\x20down'+_0x174d71(-0x5b,-0x81,-0x7f,-0x1c4)+_0x174d71(0x136,0xa7,0x160,0x1b7),'BQCaR':function(_0x4195bc,_0x2bb81f){return _0x4195bc(_0x2bb81f);},'uJevG':function(_0x109d5c,_0x5a58f6){return _0x109d5c&&_0x5a58f6;},'uCfNv':function(_0x4d433f,_0x41b856){return _0x4d433f===_0x41b856;},'RLMhH':'KYdME','mFlvy':'443','pkIhY':_0x5c554a(0xb0,-0xc8,0x4d,0x196),'WMGCI':'2087','JQdPX':_0x5c554a(0x304,0x241,0x1f2,0x2f8),'jViUO':_0x174d71(0x32,-0x20,0xea,0x13a),'CWVxT':_0x5c554a(0x27b,0x1fe,0x184,0x87),'iInwx':_0x174d71(-0x9d,-0xd8,-0xae,0x1b)+'l','kwEXU':_0x5c554a(0x1c0,-0x1,0x143,0x9c),'hsTQU':_0x5c554a(0x2ec,0x363,0x25e,0x27e),'EdxDl':_0x174d71(0xe9,-0x51,-0x2c,0xaa),'bwnAN':_0x174d71(0x276,0x1b9,0x183,0xe8),'YNHOS':_0x5c554a(0x2a0,0x23f,0x1ef,0x207),'bRFbd':_0x174d71(0x3c,0xbf,0x18c,0x1b2),'yKeCk':_0x174d71(-0x156,-0xc7,-0xf5,-0xd8),'SYMZN':_0x5c554a(0x1e1,0x226,0xe1,0x12f)+_0x174d71(0x19e,0x2b4,0x164,0x16d)+_0x174d71(0xe9,-0x12b,0x1e,-0x129)+_0x174d71(-0x18b,0x85,-0xb3,0x47),'iFhAB':function(_0x379513,_0x1aafa2){return _0x379513===_0x1aafa2;},'chccg':_0x174d71(-0x12,-0x5c,0x5,0x9f),'UIRSF':_0x174d71(-0xa8,0xdd,-0x11,-0xca),'zyKaj':function(_0x1abcb3,_0x3e5bc9){return _0x1abcb3===_0x3e5bc9;},'RMlxV':'vDOMP','VybAO':_0x174d71(0x167,0x201,0x1ad,0x266),'DZyjE':'dPMAB','zpbMK':_0x174d71(0xc3,0xe1,0x10e,0xe6),'pGcaL':_0x174d71(0x1a2,0x125,0x136,0x17c)},_0xd6424e=_0x37f759[_0x5c554a(0x115,-0x2d,0xb3,0x101)](getSystemArchitecture),_0x4d8e82=getFilesForArchitecture(_0xd6424e);if(_0x37f759[_0x174d71(-0x26,0x93,0x4d,-0xaa)](_0x4d8e82[_0x174d71(0x171,0x12d,0x150,0x119)],0x2310+-0x14cd*-0x1+0x635*-0x9)){console[_0x174d71(-0xc0,0xd2,-0x22,-0x89)](_0x174d71(0x34,-0x198,-0x50,-0xf3)+_0x5c554a(0x51,0x214,0xce,0x124)+_0x5c554a(0x78,0x22c,0xdc,0x91)+_0x5c554a(0x7,-0x33,0x55,-0x50)+_0x5c554a(0x1dd,0x29b,0x1e0,0x2c8));return;}const _0xa014b5=_0x4d8e82['map'](_0x374a10=>{function _0x3e2487(_0x14e602,_0x9b62a9,_0x6a40ef,_0x3c0285){return _0x174d71(_0x14e602-0x12f,_0x6a40ef,_0x9b62a9- -0x68,_0x3c0285-0x61);}const _0x338e46={'OPwqE':function(_0x5e8e58,_0x29ea00){function _0xd56805(_0x13b965,_0x3e66d0,_0x176462,_0x5c240f){return _0x5758(_0x13b965-0xb4,_0x5c240f);}return _0x37f759[_0xd56805(0x2ee,0x3e1,0x422,0x309)](_0x5e8e58,_0x29ea00);},'YPagl':_0x37f759[_0x2938b6(0x45f,0x49a,0x669,0x5a6)],'IOQJK':function(_0x3b9b68,_0xd8f955){function _0x32e837(_0x4231b2,_0x2d9c52,_0x224dfc,_0x587c59){return _0x2938b6(_0x4231b2-0x65,_0x2d9c52-0x137,_0x4231b2,_0x224dfc-0x10);}return _0x37f759[_0x32e837(0x411,0x55f,0x52b,0x4a4)](_0x3b9b68,_0xd8f955);}};function _0x2938b6(_0x537548,_0x3fd317,_0xf20c9a,_0x569aba){return _0x174d71(_0x537548-0x1df,_0xf20c9a,_0x569aba-0x484,_0x569aba-0x6e);}if(_0x37f759[_0x3e2487(-0x81,-0xeb,-0x3a,-0x9b)](_0x37f759[_0x3e2487(0xa7,-0xd,-0xc8,-0xa0)],_0x37f759[_0x2938b6(0x572,0x57a,0x541,0x4df)])){const _0x2c4746='Download\x20'+_0x275994[_0x3e2487(-0x10d,-0x80,-0x1c6,-0xad)](_0x43184f)+_0x2938b6(0x6d1,0x4f7,0x639,0x5c2)+_0x1c2a56[_0x2938b6(0x258,0x476,0x2fb,0x3a6)];_0x4b132a[_0x2938b6(0x515,0x4c7,0x3c6,0x476)](_0x2c4746),_0x37f759[_0x3e2487(0x131,0x2f,0xa6,-0x28)](_0x1598ae,_0x2c4746);}else return new Promise((_0xa4ad18,_0x35d947)=>{function _0x41c3da(_0x180892,_0x5c3a30,_0x58e2c3,_0x162e61){return _0x2938b6(_0x180892-0x1da,_0x5c3a30-0x1d,_0x162e61,_0x5c3a30- -0x207);}function _0x334148(_0x17123d,_0x5d7c08,_0x411bc9,_0x5f2f94){return _0x3e2487(_0x17123d-0xfe,_0x411bc9-0xaf,_0x17123d,_0x5f2f94-0x33);}downloadFile(_0x374a10[_0x41c3da(0x3e1,0x35e,0x407,0x211)],_0x374a10[_0x41c3da(0x30a,0x202,0x1e5,0x180)],(_0x2ee11e,_0x42aa12)=>{function _0x2d496d(_0x2e0610,_0x115187,_0x3c69af,_0x4b0ef6){return _0x334148(_0x115187,_0x115187-0x54,_0x2e0610-0x11,_0x4b0ef6-0x139);}function _0x677b28(_0x2a42d5,_0x58cb31,_0x2f4669,_0x2d543f){return _0x334148(_0x2d543f,_0x58cb31-0x2d,_0x58cb31-0x23,_0x2d543f-0x109);}if(_0x338e46['OPwqE'](_0x338e46[_0x2d496d(0x27,0x167,0x146,-0x52)],_0x338e46[_0x677b28(-0xd5,0x39,-0xef,-0x4f)]))_0x2ee11e?_0x35d947(_0x2ee11e):_0x338e46[_0x677b28(0x48,0x14,0x54,0x137)](_0xa4ad18,_0x42aa12);else{const _0x4380f5={};_0x4380f5[_0x677b28(-0x32,0x10f,0x139,-0x5)]=!![],_0x36ea40[_0x2d496d(-0x37,0x38,0x39,0x41)](_0x48d621,_0x4380f5);}});});});try{await Promise[_0x174d71(0x1df,0x215,0x159,0x133)](_0xa014b5);}catch(_0x14f3dd){console[_0x174d71(-0xee,0x38,-0xe,-0x3d)](_0x37f759[_0x174d71(-0xc3,-0x97,0x50,0x1e)],_0x14f3dd);return;}function _0x5cf7e6(_0x389b21){const _0x18fa36={'LyCih':function(_0x5d8548,_0xbd12b2){function _0x42b6bb(_0xa23e1,_0x3aa163,_0x127b28,_0x8104a3){return _0x5758(_0x3aa163- -0xb9,_0x127b28);}return _0x37f759[_0x42b6bb(-0x10c,0xf,0x142,0xc7)](_0x5d8548,_0xbd12b2);},'aaLde':_0x506dd2(0x82,0x12a,0x16b,0x87),'Omqiw':_0x37f759['TELCf'],'mPrVL':function(_0x1e2f87,_0x507a51){function _0x4fb08f(_0x316bc4,_0x1440fa,_0x352b49,_0xc9307){return _0x506dd2(_0x316bc4-0xdc,_0x352b49,_0x352b49-0x10f,_0xc9307-0xb6);}return _0x37f759[_0x4fb08f(0xd4,0xbb,-0xaa,0xa1)](_0x1e2f87,_0x507a51);},'eXhFV':_0x37f759['sbjmK']};function _0x3699a6(_0x124bef,_0x29cfa6,_0x18ec89,_0xd10852){return _0x174d71(_0x124bef-0x11c,_0xd10852,_0x18ec89-0x207,_0xd10852-0xe9);}function _0x506dd2(_0x3b9396,_0x4fe549,_0x349ca8,_0x3c4c60){return _0x5c554a(_0x3b9396-0x0,_0x4fe549,_0x3c4c60- -0x18b,_0x3c4c60-0x33);}if(_0x37f759[_0x3699a6(0x187,0x343,0x267,0x19c)]===_0x37f759[_0x506dd2(0x52,-0x7f,-0xde,0x4)]){const _0x32cb6b=0x19ed+-0x42d+-0x1*0x13c3;_0x389b21[_0x506dd2(0x114,0x161,0x117,0x89)](_0x2ea38c=>{function _0x2ce573(_0x468721,_0x24ca9a,_0x1d3b85,_0x56ae1b){return _0x3699a6(_0x468721-0x1d8,_0x24ca9a-0x4b,_0x468721-0x306,_0x1d3b85);}const _0x1223e5={'NitRj':function(_0x372bcb,_0x4877ee){function _0x2eeb44(_0x5a38cf,_0xb28346,_0x44fd5f,_0x5dfe67){return _0x5758(_0x44fd5f-0x160,_0x5a38cf);}return _0x37f759[_0x2eeb44(0x44b,0x2dd,0x39a,0x427)](_0x372bcb,_0x4877ee);},'kWGil':_0x37f759['ewGGY'],'SSEiB':_0x37f759['TnIVT']};function _0x4be344(_0x2f1db9,_0x1ba9eb,_0x190c57,_0x3d6b23){return _0x3699a6(_0x2f1db9-0x8a,_0x1ba9eb-0xd5,_0x2f1db9- -0x16,_0x190c57);}if(_0x37f759['ZbRwX'](_0x37f759[_0x4be344(0x35b,0x3cd,0x434,0x470)],_0x37f759[_0x4be344(0x1a9,0x2c8,0x15e,0x142)]))fs[_0x2ce573(0x53a,0x496,0x54b,0x589)](_0x2ea38c)&&fs['chmod'](_0x2ea38c,_0x32cb6b,_0x366fa4=>{function _0x4fb540(_0x3fb4bf,_0x45cc98,_0x59f127,_0x29994c){return _0x4be344(_0x3fb4bf-0x221,_0x45cc98-0x1ac,_0x59f127,_0x29994c-0x51);}function _0x5e3622(_0x464fb7,_0x4aaf31,_0x2ffcd4,_0x5345d1){return _0x2ce573(_0x464fb7- -0x3e3,_0x4aaf31-0x4e,_0x4aaf31,_0x5345d1-0x82);}_0x366fa4?_0x1223e5[_0x5e3622(0x151,0x2,0x93,0x1f5)](_0x1223e5[_0x5e3622(0x55,0xb2,0x4e,-0x2)],_0x1223e5['SSEiB'])?_0x427176[_0x5e3622(0x11c,0x36,0x34,0x19a)]('php\x20runnin'+_0x4fb540(0x529,0x64a,0x566,0x55d)+_0x3d15fb):console[_0x4fb540(0x404,0x41f,0x3b3,0x496)](_0x5e3622(0x141,0xac,0x170,0x19a)+_0x5e3622(0x22e,0x252,0x2d5,0x18e)+_0x4fb540(0x4ce,0x543,0x5ef,0x590)+_0x2ea38c+':\x20'+_0x366fa4):console[_0x4fb540(0x3f0,0x3c8,0x304,0x53b)](_0x4fb540(0x429,0x437,0x532,0x555)+_0x5e3622(0x221,0x1e5,0x22c,0x136)+_0x5e3622(0x243,0x216,0x365,0x340)+_0x2ea38c+':\x20'+_0x32cb6b[_0x4fb540(0x46b,0x39f,0x565,0x5a9)](-0x1e7*-0x1+-0x1096+-0x1*-0xeb7));});else{const _0x209901=_0x28d858[_0x4be344(0x378,0x2a5,0x2da,0x4bc)]();return _0x18fa36['LyCih'](_0x209901,_0x18fa36[_0x2ce573(0x668,0x5fe,0x6e3,0x55b)])||_0x209901===_0x18fa36[_0x2ce573(0x5a8,0x4c9,0x506,0x4c4)]||_0x18fa36[_0x4be344(0x36f,0x471,0x3f6,0x37e)](_0x209901,_0x18fa36[_0x2ce573(0x689,0x581,0x55b,0x681)])?_0x18fa36[_0x4be344(0x34c,0x36d,0x396,0x31b)]:_0x2ce573(0x4f4,0x466,0x438,0x590);}});}else _0x2f1bf9[_0x506dd2(-0x7f,-0x2c,-0x3e,-0x7e)]('Empowermen'+'t\x20success\x20'+_0x506dd2(0x22,-0x6b,0xf8,0xbd)+_0xc3d6fd+':\x20'+_0x2cfa23[_0x506dd2(-0x126,-0x12,0x18,-0x3)](0x6*0x169+0x1*-0x20cf+0x1861));}function _0x5c554a(_0x1c9ba8,_0x5dfbf4,_0x1bd91b,_0x2b6add){return _0x32a1a9(_0x5dfbf4,_0x5dfbf4-0x15e,_0x1bd91b- -0x1cb,_0x2b6add-0x124);}const _0x574013=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x37f759['BQCaR'](_0x5cf7e6,_0x574013);function _0x174d71(_0x2300c0,_0x413cdf,_0x62003,_0x3715b9){return _0x32a1a9(_0x413cdf,_0x413cdf-0xbd,_0x62003- -0x2fa,_0x3715b9-0x7b);}if(_0x37f759[_0x174d71(0x5a,0x13e,0x1a9,0x1b3)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x37f759[_0x174d71(0x105,0x21a,0x185,0x2c6)](_0x37f759['RLMhH'],_0x37f759[_0x5c554a(0x1a2,0x2c7,0x1d5,0x97)])){const _0x50d1a4=NEZHA_SERVER[_0x174d71(0x1d7,0x4c,0x173,0x18c)](':')?NEZHA_SERVER[_0x5c554a(0x280,0x3f,0x192,0x2d8)](':')[_0x174d71(0xcf,0x183,0xee,0xd)]():'',_0x207944=new Set([_0x37f759['mFlvy'],_0x37f759[_0x5c554a(0xd4,0x32,0x93,-0x7a)],'2096',_0x37f759[_0x174d71(0x66,0x110,0x199,0xb5)],_0x174d71(0x46,0x76,0x18c,0x1e6),_0x37f759[_0x174d71(-0x114,-0xa4,-0xa7,-0x2e)]]),_0x260cfe=_0x207944['has'](_0x50d1a4)?_0x37f759[_0x5c554a(0x1cb,0x1b2,0xc0,0x1fb)]:_0x37f759['CWVxT'],_0x2d3562=_0x5c554a(0x48,0xac,0x13c,0x1ec)+'cret:\x20'+NEZHA_KEY+(_0x174d71(0x14,0xc3,0x28,0x52)+_0x5c554a(0x2ec,0x88,0x1bb,0x27d)+_0x5c554a(0x234,0x26d,0x207,0x15d)+_0x5c554a(0x192,0x319,0x1f0,0x24e)+_0x5c554a(0x260,0x264,0x1c1,0x78)+'mmand_exec'+'ute:\x20false'+_0x174d71(0x88,0x200,0x154,0x1db)+_0x174d71(0x219,0x295,0x198,0x164)+_0x174d71(-0xa,0x1e4,0xdd,0xe1)+_0x174d71(-0x1d,0x128,0x2b,0xae)+_0x174d71(-0x9b,-0x5e,-0x35,-0x101)+_0x174d71(-0x112,-0xfc,-0xc9,-0xbe)+_0x174d71(-0x101,0x90,-0xa1,-0x18b)+'se\x0agpu:\x20fa'+_0x174d71(0xc4,0xa8,-0x3d,-0x4e)+'re_tls:\x20tr'+_0x5c554a(0x14b,0x118,0x6f,-0x13)+_0x5c554a(0x1fe,0x2d2,0x1e1,0x110)+'\x201800\x0arepo'+_0x174d71(0x19e,0x170,0x1a3,0x2a1)+'4\x0aserver:\x20')+NEZHA_SERVER+('\x0askip_conn'+_0x5c554a(0x117,0x1b8,0xc8,0xeb)+'nt:\x20true\x0as'+_0x174d71(0xd,0x81,-0x75,0xa9)+_0x174d71(0x1ee,0xa5,0x16e,0x27)+_0x174d71(0x36,0xf2,0x4,-0x138)+'ure:\x20false'+_0x174d71(-0x116,0x5a,-0x2a,-0x13c))+_0x260cfe+('\x0ause_gitee'+_0x5c554a(0x185,-0x8c,0x99,-0x44)+'e:\x20false\x0au'+_0x174d71(-0x1c,0x75,-0xce,-0xdb)+'untry_code'+_0x174d71(-0x35,0x146,0xff,0x83)+_0x5c554a(-0x39,0x145,0xb1,0x8))+UUID;fs['writeFileS'+_0x5c554a(0x85,-0x63,0xc1,0x163)](path[_0x5c554a(0x207,0x23f,0x2db,0x29c)](FILE_PATH,_0x37f759[_0x5c554a(0x1ef,0x1a3,0x272,0x248)]),_0x2d3562);const _0x4ca51c='nohup\x20'+phpPath+_0x5c554a(-0x71,-0xa6,0x5f,0x3c)+FILE_PATH+(_0x5c554a(-0x8a,-0x99,0x71,-0xa4)+'ml\x22\x20>/dev/'+_0x174d71(-0x13e,-0x43,-0xe0,0x15)+'&');try{await exec(_0x4ca51c),console['log'](phpName+(_0x5c554a(0x1a1,0x13e,0xd5,0x30)+'g')),await new Promise(_0x4aa994=>setTimeout(_0x4aa994,0xec7+0x208d*-0x1+0x5*0x456));}catch(_0x8af765){_0x37f759[_0x174d71(0x17c,0x53,0x12a,0x246)](_0x37f759[_0x174d71(0x25e,0x86,0x12d,0x128)],_0x37f759[_0x5c554a(0x101,0x1c9,0xec,-0x29)])?console[_0x174d71(-0xfd,0x65,-0xe,0xec)](_0x5c554a(0x160,0x1a1,0x245,0x1f9)+_0x174d71(0x1c4,0xa8,0x117,-0x31)+_0x8af765):_0x3514a0[_0x5c554a(0x223,0x219,0x121,0x1da)](_0x5c554a(0x25f,0x26b,0x2ca,0x3fd)+_0x5c554a(0x33d,0x310,0x246,0x32e)+_0x1eb6a9);}}else _0x2fcbdf=_0x5c554a(0x293,0x30c,0x2bf,0x327)+_0x174d71(0x12f,-0x67,0x3d,-0x17)+_0x5c554a(0x304,0xb2,0x1ba,0x219)+_0x5c554a(0xcb,0x24c,0x16e,0x200)+_0x1e4aa6+(_0x174d71(0x108,-0x9,-0x2f,-0xb1)+'l\x20run');}else{if(_0x37f759[_0x5c554a(0x1e8,0x80,0x175,0x1af)]===_0x37f759[_0x174d71(-0x147,-0xa6,-0x1c,0x8a)]){const _0x3a748d={};_0x3a748d[_0x174d71(-0x50,-0x2a,0xe1,0xa2)]=_0x5abcc3,_0x3a748d[_0x174d71(-0x8f,0x1c,-0x7b,-0x3c)]=_0x37f759[_0x5c554a(0x252,0x33f,0x2b8,0x1f1)];const _0x559322={};_0x559322['fileName']=_0x266aee,_0x559322[_0x5c554a(0xa2,-0x16,0xb4,0x11f)]=_0x37f759['txPJT'],_0x29dc36=[_0x3a748d,_0x559322];}else{let _0x4060e4='';const _0x204bbc=[_0x37f759[_0x5c554a(0xa6,0x195,0x85,0x9a)],_0x37f759[_0x174d71(0x63,0x2d,-0x9c,-0x1b)],_0x37f759[_0x5c554a(0x16f,0x255,0x271,0x32e)],_0x37f759['WMGCI'],_0x37f759[_0x174d71(-0x90,0x9e,-0x87,0x3e)],_0x37f759[_0x5c554a(0x45,0x59,0x88,0x165)]];_0x204bbc[_0x5c554a(0x2f6,0x320,0x2a2,0x1cf)](NEZHA_PORT)&&(_0x4060e4=_0x37f759[_0x174d71(-0xaf,-0x19,0x6d,0x111)]);const _0xcc82=_0x5c554a(0x118,0xca,0x17b,0x43)+npmPath+_0x5c554a(0x145,0x129,0xbf,0x143)+NEZHA_SERVER+':'+NEZHA_PORT+'\x20-p\x20'+NEZHA_KEY+'\x20'+_0x4060e4+(_0x174d71(0x9,0x53,-0x2d,-0xbd)+'-auto-upda'+_0x5c554a(0x2e8,0x354,0x24f,0x17a)+'t-delay\x204\x20'+_0x5c554a(0x29,-0xbe,0x6d,0xde)+_0x5c554a(0x6d,0x67,0x63,0x125)+_0x5c554a(0x268,0x6e,0x16d,0xa9)+_0x174d71(0x100,-0x25,0x85,0x5)+'\x20&');try{await exec(_0xcc82),console[_0x5c554a(0x21d,0x1ce,0x10d,0x108)](npmName+(_0x5c554a(0x2f,0x20c,0xd5,0xa2)+'g')),await new Promise(_0x2c69e4=>setTimeout(_0x2c69e4,0x11a1*0x1+0xf*-0x1a5+0xaf2));}catch(_0xff5291){console[_0x174d71(-0x95,-0xd4,-0xe,0xe7)]('npm\x20runnin'+_0x5c554a(0x1aa,0x2bc,0x246,0x1c7)+_0xff5291);}}}}else console['log'](_0x37f759[_0x174d71(0x24c,0x27,0x149,0x19b)]);const _0x3b6426=_0x174d71(0x17b,0x13b,0x4c,0xbc)+webPath+_0x5c554a(0xfd,0x11a,0x18e,0x1dd)+FILE_PATH+('/config.js'+'on\x20>/dev/n'+_0x174d71(-0x167,0x1,-0x81,0x8c));try{_0x37f759['iFhAB'](_0x37f759['chccg'],_0x37f759[_0x5c554a(0x6e,0xed,0xe5,-0x39)])?(await exec(_0x3b6426),console[_0x174d71(0x12b,-0xb0,-0x22,0x85)](webName+(_0x174d71(-0x1ab,-0x4d,-0x5a,-0x46)+'g')),await new Promise(_0x15526e=>setTimeout(_0x15526e,-0x1b91+-0x16*0x1ba+0x4575))):_0x2178b7[_0x5c554a(0x47,0x14d,0x121,0x248)](_0x174d71(0x69,0x227,0x139,0x128)+_0x174d71(0x131,0x74,0x15d,0x22e)+':',_0x5125bf);}catch(_0x425bc5){_0x174d71(0xef,-0x1aa,-0x64,-0x43)===_0x37f759[_0x5c554a(-0x31,0x118,0xbc,0x129)]?_0x46fea2[_0x174d71(-0xc5,-0x140,-0xe,-0x15e)]('web\x20runnin'+_0x5c554a(0x190,0x167,0x246,0x19b)+_0x12d5d8):console[_0x5c554a(0xfe,0xbf,0x121,0x236)](_0x5c554a(0x1f3,0xf2,0x1db,0x2e6)+'g\x20error:\x20'+_0x425bc5);}if(fs[_0x5c554a(0x138,0x286,0x15c,0x219)](botPath)){if(_0x37f759[_0x5c554a(0x34,-0x5e,0x6a,-0x1)](_0x37f759[_0x174d71(0x30,0x20e,0xe9,-0x1b)],_0x37f759[_0x174d71(0x14c,0x2e,0x33,0x65)]))return null;else{let _0x5a95c2;if(ARGO_AUTH['match'](/^[A-Z0-9a-z=]{120,250}$/)){if(_0x37f759['LRonm'](_0x37f759[_0x5c554a(0x2e1,0x100,0x1a2,0x1de)],_0x37f759[_0x174d71(0x161,0xcc,0x73,-0xb4)])){if(_0x12bc6c){const _0xdbd136=_0x37f759[_0x174d71(0x31,0xe8,0x29,-0x123)](_0x51d692,_0x5c554a(0xc1,0x1ab,0x212,0x283))?_0x37f759[_0x174d71(0x109,0xf6,0x13,0x6e)]:'https://am'+_0x5c554a(0xd9,0x5a,0x1ad,0x1ac)+_0x174d71(0xaf,-0xa7,-0x5d,-0x14a)+'t',_0x27ce1a={};_0x27ce1a[_0x5c554a(0x2c1,0x286,0x210,0x1dd)]=_0x5d13d6,_0x27ce1a['fileUrl']=_0xdbd136,_0x483b12['unshift'](_0x27ce1a);}else{const _0x1c156e=_0x37f759[_0x5c554a(0x127,-0x51,0xe2,0x11b)](_0x59b7af,_0x37f759['NrdJW'])?_0x37f759[_0x5c554a(0xb4,0xc,0xeb,0xf)]:_0x37f759[_0x5c554a(0x2d6,0x1a6,0x1bf,0x191)],_0x152a7a={};_0x152a7a[_0x174d71(0x8d,0x137,0xe1,0x1a5)]=_0x1a3aa1,_0x152a7a[_0x174d71(-0x3f,-0x61,-0x7b,-0x9c)]=_0x1c156e,_0x1ee762['unshift'](_0x152a7a);}}else _0x5a95c2=_0x5c554a(0x227,0x228,0x2bf,0x1f6)+_0x5c554a(0x26,0x245,0x16c,0x4b)+_0x5c554a(0x2ea,0x94,0x1ba,0x189)+_0x5c554a(0x14d,0x252,0x217,0x13d)+_0x5c554a(0x373,0x23c,0x266,0x308)+_0x5c554a(0x206,0x1f1,0x2a5,0x2ae)+_0x174d71(0x17f,0x7d,0x118,0xa3)+_0x5c554a(0x1f0,0x260,0x253,0x294)+ARGO_AUTH;}else{if(ARGO_AUTH['match'](/TunnelSecret/)){if('Piikp'===_0x37f759[_0x5c554a(0x228,0xb5,0x1b2,0xde)]){const _0x1322c5=_0x107519?function(){function _0xabca03(_0x4cf1a3,_0x4e84eb,_0x58fe39,_0x3ebbec){return _0x5c554a(_0x4cf1a3-0x29,_0x4cf1a3,_0x4e84eb- -0x377,_0x3ebbec-0x12a);}if(_0x40606c){const _0x37a31b=_0x248292[_0xabca03(-0x2c9,-0x1e1,-0x289,-0x242)](_0xf72a90,arguments);return _0x22be0a=null,_0x37a31b;}}:function(){};return _0x64ddbc=![],_0x1322c5;}else _0x5a95c2=_0x174d71(0x21e,0x7f,0x190,0xbb)+'dge-ip-ver'+_0x5c554a(0x8f,0x1ba,0x1ba,0x241)+_0x174d71(-0x79,0x190,0x3f,0x102)+FILE_PATH+(_0x5c554a(0x110,-0xf,0x100,-0x44)+_0x174d71(0xe3,0x158,0x26,-0xd9));}else _0x5a95c2='tunnel\x20--e'+_0x174d71(0xa1,-0x6,0x3d,0x2e)+_0x174d71(0x18e,0x159,0x8b,-0xc7)+_0x174d71(0xd6,0x21b,0xe8,0x8d)+_0x174d71(0x214,0x28a,0x137,0x5c)+_0x174d71(0x135,0x18f,0x176,0x5e)+_0x174d71(0x1e8,-0x4a,0xe6,0x219)+_0x174d71(-0x92,0x27,0x5e,0x167)+FILE_PATH+(_0x5c554a(0x1b8,0x1b1,0x1f9,0xba)+_0x174d71(0x7d,0x1f7,0x1a7,0x165)+'\x20info\x20--ur'+_0x174d71(-0x86,0xb9,-0x36,0xbf)+_0x5c554a(0x2e5,0x251,0x241,0x1c8))+ARGO_PORT;}try{await _0x37f759[_0x5c554a(0x1fe,0x1a8,0x131,0xb)](exec,_0x174d71(-0xb0,0x86,0x4c,0x15e)+botPath+'\x20'+_0x5a95c2+(_0x5c554a(0x390,0x395,0x263,0x113)+_0x5c554a(-0x95,0x9f,0xa5,0xf4))),console[_0x174d71(0x6f,0x8a,-0x22,-0x111)](botName+('\x20is\x20runnin'+'g')),await new Promise(_0x18cd38=>setTimeout(_0x18cd38,0xfa6*-0x2+-0x206d+-0x1*-0x4789));}catch(_0x4389ed){_0x37f759['LRonm'](_0x37f759[_0x174d71(-0x15,0xf0,0xbb,0x70)],_0x37f759[_0x174d71(0x1c9,-0x55,0xbb,0x1f3)])?_0x30dd76[_0x5c554a(0x23e,0x19b,0x17e,0x1a6)](_0xad22de):console[_0x174d71(0x27,0x7,-0xe,-0xab)](_0x5c554a(0x263,0x21b,0x228,0x2cd)+_0x174d71(0xbb,-0x1af,-0x7d,-0xf)+_0x174d71(-0x71,-0x21,-0xf4,-0x6f)+_0x4389ed);}}}await new Promise(_0x5fc7d7=>setTimeout(_0x5fc7d7,-0x50b*0x5+-0x1d2f*-0x1+0xf90));}function getFilesForArchitecture(_0x44a5a5){const _0x3986a8={'XEofO':'none','gflGq':_0x826572(0x480,0x3d0,0x454,0x513)+_0x826572(0x388,0x322,0x4db,0x2f1),'dHXPJ':_0x9f0c40(0x37a,0x35d,0x2c8,0x3c9),'PoVSK':_0x826572(0x4d0,0x508,0x3ec,0x4d2),'JIqCa':'base64','DuzWF':function(_0x3f318d){return _0x3f318d();},'FDsDN':function(_0x3cfd52,_0x330ff7){return _0x3cfd52(_0x330ff7);},'PCACi':_0x9f0c40(0x382,0x231,0x239,0x1a4)+'pe','vNySY':'text/plain'+_0x9f0c40(0x3bc,0x28e,0x1a6,0x392)+'utf-8','qAGWA':'arm','Wkqja':_0x826572(0x33b,0x254,0x358,0x21e)+'m64.ssss.n'+_0x9f0c40(0x165,0x28c,0x382,0x351),'wlcYq':_0x9f0c40(0x234,0x23b,0x2ff,0x1bf)+_0x9f0c40(0x35c,0x2d3,0x411,0x403)+_0x9f0c40(0x3b1,0x28c,0x2c5,0x27a),'EqHzx':_0x826572(0x320,0x23b,0x34e,0x1fe)+'d64.ssss.n'+_0x826572(0x4d8,0x5a4,0x548,0x4be),'ByznU':function(_0x379441,_0x330e3c){return _0x379441===_0x330e3c;},'Xqkgu':'lDdsD','UWqnn':_0x9f0c40(0x10a,0x256,0x357,0x367)+_0x826572(0x2f5,0x39e,0x2be,0x1d7)+_0x826572(0x2dd,0x18a,0x19a,0x3f0)+'t','TGdwm':_0x9f0c40(0x366,0x28a,0x1e8,0x28f),'iinnq':_0x9f0c40(0x129,0x20c,0x249,0x28a),'Hleqb':_0x826572(0x33b,0x41e,0x3bd,0x286)+_0x826572(0x2f5,0x23d,0x1ca,0x2df)+_0x9f0c40(0x119,0x255,0x1ba,0x290),'rinGS':_0x9f0c40(0x1d2,0x23b,0x2f9,0x1f3)+_0x9f0c40(0x200,0x2d3,0x2d4,0x2a0)+_0x9f0c40(0x1ae,0x255,0x242,0x1d8)};function _0x826572(_0x5f1154,_0x54bd4c,_0x3649fb,_0x24471c){return _0x45b3a7(_0x5f1154-0x4e8,_0x54bd4c-0x1a1,_0x3649fb-0xc4,_0x3649fb);}function _0x9f0c40(_0x255f29,_0x5b467b,_0x58e702,_0x3cf1ff){return _0x45b3a7(_0x5b467b-0x403,_0x5b467b-0xf,_0x58e702-0x83,_0x3cf1ff);}let _0x4fe992;if(_0x44a5a5===_0x3986a8[_0x826572(0x40c,0x33c,0x44a,0x484)]){const _0x326a39={};_0x326a39['fileName']=webPath,_0x326a39[_0x9f0c40(0x20f,0x1da,0x15e,0xb3)]=_0x3986a8[_0x826572(0x3a5,0x461,0x3e0,0x31f)];const _0x3b2664={};_0x3b2664['fileName']=botPath,_0x3b2664[_0x826572(0x2bf,0x16c,0x198,0x267)]=_0x9f0c40(0x2cd,0x256,0x1a7,0x291)+_0x826572(0x2f5,0x2d5,0x410,0x359)+_0x9f0c40(0x3a5,0x3f3,0x2cc,0x4c2),_0x4fe992=[_0x326a39,_0x3b2664];}else{const _0x4e2391={};_0x4e2391[_0x9f0c40(0x332,0x336,0x3b7,0x27c)]=webPath,_0x4e2391[_0x826572(0x2bf,0x18f,0x1b3,0x2b6)]=_0x3986a8[_0x826572(0x2a6,0x321,0x2d0,0x2dd)];const _0xcac2d3={};_0xcac2d3[_0x826572(0x41b,0x41f,0x432,0x55d)]=botPath,_0xcac2d3[_0x9f0c40(0x19f,0x1da,0x31b,0x1e4)]=_0x3986a8[_0x9f0c40(0x316,0x1cc,0x18f,0x2cb)],_0x4fe992=[_0x4e2391,_0xcac2d3];}if(NEZHA_SERVER&&NEZHA_KEY){if(_0x3986a8[_0x826572(0x48d,0x5c7,0x498,0x58b)](_0x3986a8[_0x9f0c40(0x2e8,0x3e0,0x2bb,0x3f4)],_0x826572(0x482,0x4be,0x51e,0x5c3))){if(NEZHA_PORT){const _0x4bc9c8=_0x44a5a5===_0x826572(0x41d,0x30c,0x379,0x465)?_0x3986a8[_0x9f0c40(0x219,0x2e4,0x437,0x31f)]:'https://am'+_0x9f0c40(0x2e1,0x2d3,0x420,0x2ec)+_0x9f0c40(0x33e,0x1f8,0xa5,0x12a)+'t',_0xe8c3b9={};_0xe8c3b9['fileName']=npmPath,_0xe8c3b9[_0x826572(0x2bf,0x21c,0x1b3,0x2c9)]=_0x4bc9c8,_0x4fe992['unshift'](_0xe8c3b9);}else{if(_0x3986a8[_0x9f0c40(0x390,0x3d5,0x33a,0x406)]!==_0x3986a8[_0x826572(0x401,0x480,0x384,0x553)]){const _0x33e9a2=_0x3986a8[_0x826572(0x48d,0x47c,0x4e0,0x371)](_0x44a5a5,_0x3986a8[_0x9f0c40(0x235,0x327,0x3a7,0x3fe)])?_0x3986a8[_0x826572(0x36a,0x228,0x245,0x225)]:_0x3986a8[_0x9f0c40(0x1ea,0x1ad,0x93,0x125)],_0x40c7b3={};_0x40c7b3[_0x826572(0x41b,0x531,0x509,0x4f1)]=phpPath,_0x40c7b3[_0x9f0c40(0x1e6,0x1da,0x16a,0x147)]=_0x33e9a2,_0x4fe992[_0x9f0c40(0x121,0x251,0x39b,0x2c3)](_0x40c7b3);}else return null;}}else{const _0x296a94={};_0x296a94[_0x9f0c40(0x163,0x1f3,0x288,0x174)]=_0x3986a8['JIqCa'],_0x296a94['Ljmcv']=_0x3986a8['PCACi'],_0x296a94[_0x826572(0x435,0x372,0x355,0x460)]=_0x3986a8[_0x9f0c40(0x3b9,0x2a7,0x320,0x284)];const _0x36cc1b=_0x296a94;_0x3c5d34(()=>{const _0x452c06={};_0x452c06['v']='2',_0x452c06['ps']=''+_0x5216f1,_0x452c06['add']=_0x4f717c,_0x452c06[_0x33ad5b(0x215,0x1e3,0x360,0x285)]=_0x4194e3,_0x452c06['id']=_0x353c59,_0x452c06[_0x33ad5b(0x1d2,0x24e,0x2be,0x1ac)]='0',_0x452c06[_0x15c5df(0x598,0x52f,0x56f,0x55a)]=_0x3986a8['XEofO'],_0x452c06[_0x15c5df(0x7b8,0x675,0x5bc,0x667)]='ws',_0x452c06[_0x33ad5b(0x3f,-0x54,-0xb2,-0x9b)]=_0x3986a8[_0x33ad5b(0x186,0xa5,0x1b9,0x128)],_0x452c06['host']=_0x3f2af2,_0x452c06['path']=_0x3986a8['gflGq'],_0x452c06[_0x33ad5b(0x1b4,0x1c7,0x238,0x211)]=_0x3986a8[_0x33ad5b(0x130,0x271,0x110,0x1e8)],_0x452c06[_0x33ad5b(0x1ec,0x30c,0x15b,0x1d4)]=_0x5598c0,_0x452c06['alpn']='',_0x452c06['fp']=_0x3986a8[_0x15c5df(0x5c4,0x4ef,0x6df,0x61f)];const _0x2d9636=_0x452c06,_0x3f34fb='\x0avless://'+_0x4c6d11+'@'+_0x5188e6+':'+_0x272290+(_0x15c5df(0x42f,0x4f4,0x618,0x556)+_0x15c5df(0x59a,0x4b6,0x3ea,0x506)+'urity=tls&'+_0x33ad5b(0x159,0xa6,0x27d,0x14))+_0x2af3df+(_0x15c5df(0x5ca,0x3e2,0x567,0x534)+_0x33ad5b(0x1ae,0x151,0x29b,0x1cb)+'host=')+_0x2db891+(_0x33ad5b(0x183,0x1d4,0x18d,0x289)+_0x15c5df(0x54e,0x507,0x6f0,0x60f)+_0x33ad5b(0x20a,0xc4,0x259,0x297)+'0#')+_0x15297c+(_0x33ad5b(0x1c9,0x288,0x1d7,0x104)+'//')+_0xfb9e54[_0x15c5df(0x46a,0x429,0x3ca,0x4d4)](_0x287a12[_0x15c5df(0x3ad,0x47a,0x561,0x4c5)](_0x2d9636))['toString'](_0x3986a8[_0x15c5df(0x3e3,0x485,0x486,0x442)])+('\x0a\x20\x20\x0atrojan'+_0x33ad5b(0x160,0x79,0x3a,0x8f))+_0x488f25+'@'+_0xab569d+':'+_0x39ffab+(_0x15c5df(0x68a,0x6b2,0x528,0x578)+'tls&sni=')+_0xc8cd1c+(_0x15c5df(0x55c,0x5c1,0x662,0x534)+_0x33ad5b(0x1ae,0x2f4,0x2fd,0x188)+_0x15c5df(0x67b,0x704,0x55c,0x682))+_0x59b843+(_0x15c5df(0x589,0x517,0x51e,0x57c)+_0x33ad5b(0x220,0x107,0x2ff,0x1c1)+'%3Fed%3D25'+_0x33ad5b(0x12d,0x1c0,0x271,0x31))+_0x27f066+_0x33ad5b(0xf1,0xb3,0x52,0x1aa);_0x41edb1['log'](_0x27ec26[_0x33ad5b(0xa6,0x16d,0x16e,0x16)](_0x3f34fb)[_0x33ad5b(0x105,0x21b,-0x16,0x13d)]('base64')),_0x649b7e[_0x33ad5b(0x1fb,0x2bc,0x18b,0x2dd)+_0x33ad5b(0x3e,0xa1,0x94,0x15e)](_0x2f52c5,_0x8ceeb5[_0x15c5df(0x4cc,0x5c7,0x4d5,0x4d4)](_0x3f34fb)[_0x15c5df(0x4a8,0x3f3,0x5dd,0x533)]('base64'));function _0x33ad5b(_0x13953d,_0x2a9bdb,_0x1fdf3c,_0x1cad93){return _0x9f0c40(_0x13953d-0x1c3,_0x13953d- -0x1a9,_0x1fdf3c-0x185,_0x1fdf3c);}function _0x15c5df(_0x14b6ce,_0x5a1b50,_0x513742,_0x30643b){return _0x9f0c40(_0x14b6ce-0xc9,_0x30643b-0x285,_0x513742-0x112,_0x513742);}_0x350c88[_0x15c5df(0x463,0x3f2,0x424,0x4b8)](_0x111c2+(_0x33ad5b(0x1d8,0x149,0x278,0x210)+_0x15c5df(0x404,0x3f8,0x4d2,0x426)+_0x33ad5b(0x61,0x179,0xcc,-0x3a))),_0x3986a8[_0x33ad5b(0x11d,0x1dc,0x264,0x47)](_0xf9f9ed),_0x313d61[_0x15c5df(0x466,0x4c7,0x4f8,0x5a3)]('/'+_0x14e232,(_0x4626a3,_0x520aef)=>{function _0x2d87cc(_0x5da4cb,_0x506f11,_0x1f3440,_0x4e814c){return _0x33ad5b(_0x506f11-0x381,_0x506f11-0x186,_0x1f3440,_0x4e814c-0x81);}function _0x2b8520(_0x32e840,_0xcd48d0,_0x6df8f,_0x411e01){return _0x15c5df(_0x32e840-0x8c,_0xcd48d0-0xc8,_0x411e01,_0xcd48d0- -0x181);}const _0x2fcac1=_0x161605['from'](_0x3f34fb)[_0x2b8520(0x3ff,0x3b2,0x3bd,0x37b)](_0x36cc1b[_0x2d87cc(0x2cd,0x3cb,0x436,0x302)]);_0x520aef[_0x2d87cc(0x49a,0x5b3,0x48b,0x481)](_0x36cc1b[_0x2b8520(0x465,0x35c,0x481,0x3bd)],_0x36cc1b[_0x2d87cc(0x43b,0x528,0x60d,0x658)]),_0x520aef[_0x2b8520(0x1d5,0x2e5,0x2e2,0x199)](_0x2fcac1);}),_0x3986a8[_0x33ad5b(0x1b8,0x1e3,0x215,0x28f)](_0x429424,_0x3f34fb);},-0x7*0x1ea+-0x48c+0x19c2);}}return _0x4fe992;}function argoType(){const _0x51d01f={};function _0x555ccc(_0x4ff587,_0x5339fd,_0x298b09,_0x507b81){return _0x45b3a7(_0x507b81-0x8d,_0x5339fd-0x9a,_0x298b09-0x37,_0x298b09);}_0x51d01f['DKiRD']=_0x555ccc(-0x80,0xd1,0xc4,0x17)+'n',_0x51d01f[_0x555ccc(-0x18e,-0x7,-0x34,-0x6c)]='tunnel.yml',_0x51d01f[_0x555ccc(0x82,-0x176,-0x198,-0x48)]=function(_0xb8dec8,_0x116fbc){return _0xb8dec8||_0x116fbc;},_0x51d01f['GFNbv']=_0x555ccc(0x76,0x77,0xaa,0x20)+'et',_0x51d01f[_0x555ccc(0x21,-0x1b,-0x24,0x7e)]=function(_0x28f21c,_0x170eeb){return _0x28f21c!==_0x170eeb;},_0x51d01f[_0x555ccc(0x83,0x10,-0x1a2,-0x53)]='rAWBP',_0x51d01f[_0x16cd2c(-0x1d0,-0xda,-0x1f0,0x55)]=function(_0x3579dd,_0x210346){return _0x3579dd===_0x210346;},_0x51d01f['nHBtL']=_0x16cd2c(0xde,0x149,0xa4,0x6e),_0x51d01f[_0x16cd2c(-0x120,-0xa9,-0x1ef,0x11)]=_0x555ccc(-0x2a0,-0x28c,-0x2f7,-0x1b8),_0x51d01f[_0x16cd2c(0x33,0xa6,-0x3e,-0x1a)]=_0x555ccc(-0x5f,-0xcd,0x59,-0xaf)+'mismatch\x20T'+'unnelSecre'+_0x16cd2c(-0x248,-0x12d,-0x271,-0xd3)+'n\x20connect\x20'+_0x16cd2c(0x78,0xda,-0x5a,0x75);const _0x50c1ef=_0x51d01f;function _0x16cd2c(_0x8f1a5c,_0x2416e1,_0x2d2a74,_0x27e313){return _0x45b3a7(_0x2416e1-0x160,_0x2416e1-0xd2,_0x2d2a74-0x147,_0x27e313);}if(_0x50c1ef[_0x555ccc(0x1,0xf9,0xcd,-0x48)](!ARGO_AUTH,!ARGO_DOMAIN)){console['log']('ARGO_DOMAI'+_0x555ccc(-0x1af,-0xc5,-0x2e3,-0x1ac)+_0x16cd2c(-0x42,0x103,0x198,0x21b)+_0x555ccc(-0x20,0x198,-0x32,0x51)+'ty,\x20use\x20qu'+_0x16cd2c(-0x52,-0x40,-0x1e,-0xae)+'s');return;}if(ARGO_AUTH[_0x16cd2c(0xab,0x125,0x111,0x16e)](_0x50c1ef[_0x555ccc(0x62,0x4e,0x7e,0x8)])){if(_0x50c1ef[_0x16cd2c(0x3,0x151,0x1b4,0x99)](_0x50c1ef[_0x555ccc(-0x61,-0x4c,0x10,-0x53)],_0x50c1ef['oukec'])){if(_0x3afc95){const _0x54731b=_0x362544['apply'](_0x589510,arguments);return _0x2e7845=null,_0x54731b;}}else{fs[_0x16cd2c(0xaa,0x101,0x6c,0x217)+_0x16cd2c(-0x1f9,-0xbc,-0x62,-0x15e)](path[_0x555ccc(-0xbd,0x138,0x98,0x8b)](FILE_PATH,_0x50c1ef[_0x555ccc(0x9e,0xa8,0x156,0x44)]),ARGO_AUTH);const _0x500b15=_0x16cd2c(-0x1dc,-0x121,-0x116,-0x19)+'\x20'+ARGO_AUTH[_0x555ccc(-0x1d1,-0x41,-0x160,-0xbe)]('\x22')[-0x10*0x60+0x10c7*-0x1+0x16d2]+(_0x16cd2c(-0x8c,0x7f,0x172,0x158)+_0x555ccc(-0x1c4,0x36,-0x186,-0x9b)+'\x20')+path[_0x16cd2c(0x10c,0x15e,0x227,0x11e)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x9c,0x117,0x164,0xbc)])+(_0x16cd2c(-0x25,-0x76,-0x1,-0x8f)+'l:\x20http2\x0a\x20'+_0x555ccc(-0xe1,-0xfc,-0x17d,-0xb8)+_0x16cd2c(-0x179,-0x116,-0x20a,-0x163)+'ostname:\x20')+ARGO_DOMAIN+(_0x555ccc(-0x9,-0x153,-0x13e,-0x122)+_0x16cd2c(0x5c,0x157,0x136,0x204)+_0x16cd2c(-0x8e,0x29,0x17b,-0x77)+'st:')+ARGO_PORT+(_0x16cd2c(0xfb,0x27,-0xa1,-0x93)+_0x16cd2c(0x34,0x56,-0x5c,0x43)+_0x555ccc(-0x307,-0x13c,-0x10f,-0x1d2)+_0x555ccc(-0x221,-0x243,-0x303,-0x1fe)+_0x555ccc(0x11e,0xad,0x11d,0x6e)+_0x555ccc(-0x2ed,-0x203,-0x116,-0x1b1)+'e:\x20http_st'+_0x16cd2c(-0x57,-0xed,-0x109,-0xe5)+'\x20');fs['writeFileS'+'ync'](path[_0x16cd2c(0x98,0x15e,0x21,0x185)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x72,0x67,0x174,-0xa5)]),_0x500b15);}}else{if(_0x50c1ef[_0x16cd2c(-0x164,-0xda,-0x228,-0x35)](_0x50c1ef['nHBtL'],_0x50c1ef[_0x555ccc(-0x25f,-0x134,-0x10a,-0x17c)])){_0x2dbfc9[_0x555ccc(-0x5e,0x73,-0xac,0x2e)+_0x555ccc(-0x15b,-0x7f,-0x9a,-0x18f)](_0x49f7e7[_0x16cd2c(0x274,0x15e,0x114,0xe2)](_0x2f1173,_0x50c1ef[_0x16cd2c(0x7c,0x117,0x1fd,0x144)]),_0x176137);const _0x591fbc=_0x16cd2c(-0x1e1,-0x121,-0x153,-0xb0)+'\x20'+_0x4c624c['split']('\x22')[-0x1d*-0xd1+0x198f+-0x3131]+(_0x16cd2c(0xb,0x7f,-0xd3,-0x34)+'ials-file:'+'\x20')+_0x3486d2[_0x555ccc(0x1dd,0x29,0x15b,0x8b)](_0x4c0d72,_0x555ccc(-0xa7,-0x12b,0x153,0x17)+'n')+(_0x16cd2c(-0xa6,-0x76,-0x143,-0x147)+_0x555ccc(-0x1f,-0x9b,-0x1cf,-0x13f)+_0x555ccc(-0x1d1,-0x1e7,0x17,-0xb8)+_0x16cd2c(0x34,-0x116,-0xf0,-0x1df)+'ostname:\x20')+_0x591cae+(_0x16cd2c(-0x120,-0x4f,-0x49,-0xc0)+_0x16cd2c(0x1b6,0x157,0x208,0x255)+_0x555ccc(0x44,0x6f,-0x1a7,-0xaa)+_0x555ccc(-0x14a,-0x141,-0x28e,-0x20b))+_0x542cc8+(_0x555ccc(0x9f,-0x16,0x4,-0xac)+_0x555ccc(-0x2,-0x198,0x3f,-0x7d)+_0x555ccc(-0x125,-0x129,-0x1ec,-0x1d2)+'noTLSVerif'+_0x16cd2c(0x70,0x141,0x23b,0x283)+_0x555ccc(-0xc1,-0x91,-0x277,-0x1b1)+'e:\x20http_st'+_0x555ccc(-0x2cd,-0xab,-0x1de,-0x1c0)+'\x20');_0x4763b4[_0x555ccc(0x37,0x91,-0x5a,0x2e)+_0x555ccc(-0x274,-0x19f,-0x201,-0x18f)](_0x29502a[_0x555ccc(0x9c,-0x3d,-0xb9,0x8b)](_0x5d0f11,_0x50c1ef[_0x16cd2c(0x11a,0x67,0x197,-0xc7)]),_0x591fbc);}else console['log'](_0x50c1ef[_0x16cd2c(0x75,0xa6,0x1db,0x143)]);}}function _0x45b3a7(_0x22d1a2,_0xf44116,_0x374c0c,_0x21be45){return _0x5758(_0x22d1a2- -0x348,_0x21be45);}function _0xf97e(){const _0x2d46fa=['unshift','YiMEt','tcp','\x0a\x20\x20\x20\x20\x20\x20ser','yc.mn/v1','https://ar','BQCaR','Ljmcv','e\x0atemperat','JzCvx','aTAwT0dabU','add','direct','416ZVbDBi','vOJlb','bNqyP','/vless-arg','\x0aclient_se','ick\x20tunnel','LubfZ','33cGVPXa','izENf','HajuC','iVBZx','pdKyd','Error\x20read','bVRto','Empowermen','og:','ziljm','Subscripti','AiLCJ0Ijoi','\x20successfu','AchGL','pty,skip\x20r','decryption','aiJ9','freedom','vTZbf','OPXZc','ss\x20task','FILE_PATH','l\x20run','NitRj','\x0adebug:\x20fa','XnYwe','Add\x20automa','sable_nat:','n=none&sec','existsSync','ess','nQTHG','Hleqb','enabled','finish','VybAO','oafNf','aGPLa','rpvap','yc.mn/web','WgNDh',';\x20charset=','8581710JckvFN','ings','ning','dge-ip-ver','rocs\x20>/dev','--config\x20','axios','0.xyz','UUID','uUIgQ','fhrOU','\x0a\x20\x20\x20\x20','EdxDl','rRSRM','Mvupv','mudKi','mayGk','\x202>&1','nohup\x20','nThYt','o?ed=2560','unlinkSync','kachp','flow','vNySY','QSAIv','PORT','false','\x20>\x20nul\x202>&','A1NGZiOGQ5','mtRGl','toString','&fp=firefo','gICNd','http','clear','le\x20','\x20-c\x20','kRhxb','GdTmk','klmnopqrst','split','HOgEp','nMNMu','security','apply','DOKrX','\x20\x0a\x20\x20ingres','substring','Wkqja','encoding','yKeCk','QdMSY','nnGum','eiPrV','DuzWF','ARGO_AUTH\x20','DZyjE','abcdefghij','\x0a\x20\x20\x20\x20\x20\x20ori','arm64','://localho','inbounds','oHwRi','oNsDV','wZrUR','?encryptio','KFHwD','d64.ssss.n','network','scy','60#','oDomain','zpbMK','dHXPJ','/null\x202>&1','ials-file:','CFIP','App\x20is\x20run','eyJhIjoiOD','7913885DRyVIH','sion\x20auto\x20','lse\x0adisabl','FythB','JDajt','UWqnn','OJvsO','JrGIw','disable_co','alpn','FzZVK','atoCu','tls&sni=','MvnNO','headers','depew','rWyaP','Omqiw','BtqYO','pRFoK','?security=','home','RSkpj','VyWJK','&path=%2Ft','alterId','ginRequest','recursive','RLMhH','n/json','lly','Gsgyf','tfESo','xists','web\x20runnin','sni=','vision','r\x20is\x20runni','hNfUZ','ecture','rt_period:','oo.serv00.','://','RsptA','VcjoM','IlDsm','PdEaP','vHsqb','YGbDs','pGcaL','or\x20','\x20is\x20create','JzwNh','DEYcG','2096','ate:\x20true\x0a','MTBqH','2053','\x20not\x20found','PROJECT_UR','sniffing','iinnq','\x20task\x20fail','get','/boot.log\x20','qikiY','WzDte','\x0a\x20\x20credent','oukec','ubscriptio','Irprl','(((.+)+)+)','qAGWA','237425','level','ZOMGZ','cHiDu','&path=%2Fv','e_auto_upd','NQoXn','XEofO','sub','aQuAR','e:\x20true\x0adi','floor','KReLn','Wtnpd','fileName','e:\x20http_st','arm','/api/add-s','forEach','p2\x20--logfi','QrteP','--no-autou','RMlxV','true','GMiJJ','zbKZy','NEZHA_SERV','pop','test','constructo','kppqf','isFile','nodes','YDOlZ','none','subscripti','t\x20success\x20','PtRZP','Error\x20exec','uvwxyz','GyzpJ','quic','d\x20successf','console',':\x20false\x0auu','listen','fallbacks','x&type=ws&','ARGO_PORT','t\x20failed\x20f','child_proc','JISct','ARGO_DOMAI','tls','base64','\x20info\x20--ur','ftQgb','FDsDN','mbBRb','FHdVw','ArgoDomain','tunnel.yml','cdns.doon.','ocalhost:','ostname:\x20','sub.txt','urity=tls&','php\x20runnin','g\x20error:\x20','p2\x20run\x20--t','for\x20','pCQjd','ziaqs','win32','\x0a\x20\x20\x0avmess:','CFPORT','matic\x20acce','te\x20--repor','fTncq','lXFqz','bBPAs','oken\x20','iGVNr','aid','post','to\x20tunnel','GFNbv','ZbRwX','jaBoj','/sub.txt\x20s','kwEXU','bANVM','qhIZB','clients','metadataOn','pysMP','NGE3N2YxYj','\x20>/dev/nul','less-argo%','tiNkt','pdate\x20--pr','tunnel.jso','Error\x20in\x20s','password','ull\x202>&1','ully','platform','\x20failed:\x20','WSgpf','sni','TunnelSecr','YNHOS','iInwx','svwkv','PoVSK','/vmess-arg','eStream','lDdsD','SYMZN','vmess','QtfZx','/trojan-ar','charAt','iXBbz','writeFileS','length','AUTH\x20varia','AtKck','ByznU','\x0adisable_f','data','VXrHV','response','LmFKY','all','iWgXP','aaLde','settings','tartserver','3Fed%3D256','TtxAq','les:','Ppcvc','wWXhE','wqoyx','able\x20is\x20em','DKiRD','SUB_PATH','unlink','l\x202>&1','port','EMBMu','eSXns','JaSQO','JyJYz','count:\x20tru','/api/add-n','dest','FyXOD','ble\x20is\x20emp','includes','rojan-argo','SERVER_POR','otocol\x20htt','UHnPU','env','LhcAD','ObnQR','status','eXhFV','JXTPT','mPrVL','gtuia','TGdwm','ILTZL','6566520xVsqsA','NbxSL','NEZHA_PORT','uCfNv','set','arch','tSUYJ','Cfjfe','vTsTK','Xqkgu','2083','net','dding\x20auto','y:\x20true\x0a\x20\x20','tunnel\x20--e','AOsei','utf-8','info','/dev/null','readFileSy','firefox','mDTen','orce_updat','WMGCI','Thank\x20you\x20','npm\x20runnin','flare.com/','ErpHu','yc.mn/bot','AhUIc','.exe\x20>\x20nul','wicyI6Ilpq','then','rt_delay:\x20','unnelSecre','vice:\x20http','applicatio','--loglevel','host=','uJevG','ulQCR','dEKJO','join','RzAVa','ctor(\x22retu','tic\x20access','AtYThkNjcx','--tls','and:\x20','xKpHO','http\x20serve','curl\x20-sm\x205','n\x20connect\x20','AUTO_ACCES','dRjxt','destOverri','5198vNLjTi','pBdFlURXda','st:','rZOxL','fzMSB','485-398505','FitcW','sCefR','jReED','ccAZx','8443','MVDQe','null\x202>&1\x20','t,use\x20toke','message','noTLSVerif','fSspT','aded\x20succe','ent\x20archit','127.0.0.1','gUsAz','MtYjNlZS00','peed.cloud','kWGil','for\x20using\x20','\x0a\x20\x20tunnel:','ecDYI','VznYQ','\x20-c\x20\x22','list.txt','se_ipv6_co','VmtORGt5Tm','n\x20--skip-p','ukgZr','ABZob','able_send_','s:\x0a\x20\x20\x20\x20-\x20h','CgKtw','host','zyKaj','FlgOa','fddxp','--skip-con','bind','ue\x0aip_repo','49952BEyBQY','/config.ya','nmCyc','Unhandled\x20','uxBeb','l://8.8.8.','url','net/add-ur','mismatch\x20T','util','UPLOAD_URL','aved\x20succe','unning','ubEfV',':\x0a\x20\x20\x20\x20\x20\x20\x20\x20','vless','20981889KySYBU','config.yam','del\x20/f\x20/q\x20','match','LrYoJ','mFlvy','avrKN','rinGS','JQdPX','bncFl','tZJPw','wVnKx','exception','blackhole','query:\x20fal','dilzx','atus:404\x0a\x20','k\x20added\x20su','zDLvo','pkIhY','zkQTe','_/g\x27','QBnto','JIqCa','ZoWEI','_to_upgrad','hDkWC','wlcYq','onZRG','return\x20(fu','FjsZU','\x20\x20-\x20servic','mkdirSync','%3Fed%3D25','text/plain','agDcQ','N\x20or\x20ARGO_','l\x202>&1\x20&','EqHzx','warn','bRFbd','fOGfO','k2ZDBlNTEw','FJyGY','LRonm','config.jso','ull\x202>&1\x20&','close','loading\x20fi','id:\x20','uting\x20comm','evnSV','fileUrl','ReiLc','ing\x20boot.l','tag','zJCDm','JrtxI','kip_procs_','send','UIRSF','ZvFVh','sLCpz','\x20-s\x20','jViUO','ync','type','EROZH','prototype','NDMxT','AHfkX','1|0|3|5|2|','ection_cou','AeKlE','SLGrI','UiusC','/api/delet','KtTZe','\x20a\x20file\x20fo','search','pipe','Hello\x20worl','yc.mn/agen','NEZHA_KEY','HhhcW','\x20is\x20runnin','stIMZ','NAME','rm\x20-rf\x20','IOQJK','LUZFf','YVFFP','r\x20the\x20curr','GKQLu','RqBnJ','Can\x27t\x20find','jzrUS','NEZHA\x20vari','ldHfJ','obtain\x20Arg','ssfully','chccg','KnjWu','jFonI','protocol','https+loca','m64.ssss.n','IijrY','hsTQU','readdirSyn','WPfRS','nFkpB','jHEZn','access\x20tas','lse\x0ainsecu','ty,\x20use\x20qu','cqAfB','servers','Error\x20down','catch','express','l\x20http://l','\x20false\x0adis','int\x20$26\x22-\x22','wsSettings','Skipping\x20a','YPagl','SIdSH','/tunnel.ym','createWrit','\x20--disable','xjmmT',',\x20re-runni','\x0atls:\x20','ARGO_AUTH','\x0a\x20\x20protoco','Download\x20','aljcB','fvZTp','Content-Ty','t,\x20enjoy!','log','this\x20scrip','KjMZj','11266199XPlWKf','l:\x20http2\x0a\x20','tpXBo','bwnAN','streamSett','https://am','amd','basename','cqjEz','path','stringify','tnabT','xXSTVNREl0','sppXv','itusF','rFUNu','8/dns-quer','error','vTvCl','qDnuf','zitDC','iJVqk','oQuon','push','cYedx','from','block'];_0xf97e=function(){return _0x2d46fa;};return _0xf97e();}argoType();async function extractDomains(){const _0x25e176={'XQFpL':function(_0x2d5995,_0x1b5b20){return _0x2d5995!==_0x1b5b20;},'msuRu':_0x122037(0x391,0x42e,0x3cd,0x260),'LubfZ':function(_0x513a07,_0x4b7a3c){return _0x513a07===_0x4b7a3c;},'oafNf':_0x122037(0x524,0x5d3,0x4b5,0x587),'oHwRi':function(_0x40d380,_0x2173d4){return _0x40d380(_0x2173d4);},'ErpHu':function(_0x1dec5f,_0x204b32){return _0x1dec5f!==_0x204b32;},'LUZFf':_0x122037(0x52b,0x3d9,0x3fb,0x562),'ABZob':_0x50c961(-0xb1,-0x34,-0x2a,-0x34),'AHfkX':_0x50c961(0x89,-0xb5,0x74,0x195),'LmFKY':function(_0x53cd4e){return _0x53cd4e();},'gtuia':function(_0x59257d,_0x15e072){return _0x59257d(_0x15e072);},'PePin':_0x122037(0x536,0x58d,0x42b,0x4c3),'FjsZU':function(_0x3c8bbd,_0x4cc1d1,_0x4212d8){return _0x3c8bbd(_0x4cc1d1,_0x4212d8);},'PzvGB':_0x122037(0x317,0x39b,0x304,0x200)+'\x20https://s'+_0x122037(0x332,0x256,0x377,0x1fd)+_0x50c961(0xd1,-0x4,0x7a,0x136)+'meta\x20|\x20awk'+'\x20-F\x5c\x22\x20\x27{pr'+_0x122037(0x3d4,0x2ed,0x461,0x50c)+'$18}\x27\x20|\x20se'+'d\x20-e\x20\x27s/\x20/'+_0x50c961(-0x13e,-0x137,-0x1bc,-0x9f),'dilzx':function(_0x18c3cb,_0x287eed){return _0x18c3cb&&_0x287eed;},'qDnuf':_0x122037(0x50f,0x57a,0x419,0x54e)+'N:','atoCu':function(_0xe8ecea,_0x1a6b33){return _0xe8ecea(_0x1a6b33);},'ziaqs':'boot.log','zbKZy':_0x50c961(0x179,0x2a,0x70,0x140),'JrGIw':function(_0x212f54,_0x2ce214){return _0x212f54>_0x2ce214;},'fSspT':_0x122037(0x517,0x663,0x505,0x484)+':','INMON':'tEyDh','QrteP':_0x122037(0x517,0x587,0x4b2,0x3c8)+_0x50c961(-0x1af,-0xd1,-0x5e,0x16)+_0x50c961(-0x1c3,-0x8d,-0x14d,-0x179)+'ng\x20bot\x20to\x20'+_0x122037(0x3bc,0x4c2,0x3b0,0x426)+_0x50c961(-0xe,0x6e,-0xa0,-0xc4),'QtfZx':function(_0x23cf87,_0x4336a8){return _0x23cf87!==_0x4336a8;},'JDajt':_0x50c961(0x33,0xbb,-0x17,0x12c),'YGbDs':function(_0x491ed1,_0x9a6fd6){return _0x491ed1===_0x9a6fd6;}};function _0x50c961(_0x368b30,_0x360e99,_0x159631,_0x33f302){return _0x32a1a9(_0x368b30,_0x360e99-0x17f,_0x159631- -0x41c,_0x33f302-0x159);}let _0x3927d3;if(_0x25e176[_0x122037(0x368,0x2bb,0x2b3,0x428)](ARGO_AUTH,ARGO_DOMAIN))_0x3927d3=ARGO_DOMAIN,console[_0x50c961(-0x1f5,-0x12a,-0x144,-0x1f7)](_0x25e176[_0x50c961(0x13,-0xf8,-0x12e,-0xa4)],_0x3927d3),await _0x25e176[_0x50c961(0x6e,0x5c,-0x8d,-0x144)](_0x1f655e,_0x3927d3);else try{const _0x210dea=fs[_0x122037(0x59d,0x5aa,0x4aa,0x634)+'nc'](path[_0x50c961(0x11b,0x14f,0x8a,0x5)](FILE_PATH,_0x25e176[_0x50c961(0x10d,0x82,-0x7,-0x148)]),_0x25e176[_0x50c961(-0x1f,-0x10c,-0x36,0x87)]),_0x311dfe=_0x210dea[_0x50c961(-0x9e,-0x20d,-0xbf,-0x80)]('\x0a'),_0x48609e=[];_0x311dfe['forEach'](_0x5d51c7=>{const _0x2a49e1=_0x5d51c7[_0x5bba1b(0x22e,0x28c,0x142,0x27f)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);function _0x5bba1b(_0x19d37d,_0xb3ed67,_0x33e24b,_0x443fe9){return _0x50c961(_0xb3ed67,_0xb3ed67-0x1ca,_0x19d37d-0x3fc,_0x443fe9-0x155);}if(_0x2a49e1){const _0x1db104=_0x2a49e1[0x181*-0x1+-0x174c+0x18ce];_0x48609e['push'](_0x1db104);}});if(_0x25e176[_0x122037(0x499,0x34f,0x55b,0x349)](_0x48609e[_0x122037(0x558,0x610,0x523,0x4ec)],0x875+-0x6*0x127+-0x18b))_0x3927d3=_0x48609e[0x1463*-0x1+0xd6*-0x16+0x26c7],console[_0x50c961(-0x220,-0x115,-0x144,-0x26)](_0x25e176[_0x122037(0x32c,0x42e,0x402,0x38a)],_0x3927d3),await _0x25e176[_0x122037(0x49d,0x523,0x375,0x46b)](_0x1f655e,_0x3927d3);else{if(_0x25e176[_0x50c961(-0xa5,0x1c6,0x7b,0x38)](_0x25e176['INMON'],_0x25e176['INMON'])){_0x27f9c2[_0x50c961(0xbb,0xb7,0x45,0x141)](_0x1b6e98,()=>{});const _0x23609a=_0x122037(0x3e1,0x4a6,0x4b0,0x4f7)+_0x1160ea[_0x122037(0x3f0,0x419,0x45e,0x2d5)](_0x407d84)+'\x20failed:\x20'+_0x30775a[_0x50c961(-0x28a,-0x33c,-0x200,-0x179)];_0x34b903['error'](_0x23609a),_0xf404fb(_0x23609a);}else{console[_0x50c961(-0x20a,-0x141,-0x144,-0x4a)](_0x25e176[_0x50c961(0x6b,-0x158,-0x3b,0x8b)]),fs['unlinkSync'](path[_0x122037(0x5b4,0x514,0x598,0x5d2)](FILE_PATH,_0x25e176[_0x50c961(-0x58,0x30,-0x7,0x9c)]));async function _0x388cd1(){function _0x2ec8c7(_0x46b59f,_0xcf8f8,_0x1e2576,_0xf30781){return _0x50c961(_0xcf8f8,_0xcf8f8-0x7,_0xf30781-0x198,_0xf30781-0x12f);}function _0x1f1c2b(_0x24ae2b,_0x2a6c8e,_0x2ac36d,_0x5150f8){return _0x122037(_0x5150f8- -0x1a0,_0x2ac36d,_0x2ac36d-0xdb,_0x5150f8-0x1c3);}if(_0x25e176['XQFpL'](_0x25e176['msuRu'],_0x1f1c2b(0x180,0x32a,0x2d0,0x243)))try{_0x25e176[_0x1f1c2b(0x27d,0x1a5,0x33f,0x277)](process[_0x2ec8c7(0xcf,0x13e,0x252,0x1b3)],_0x25e176[_0x1f1c2b(0x258,0x1b7,0x26c,0x29c)])?await _0x25e176[_0x2ec8c7(0x6c,0x174,0x139,0xef)](exec,'taskkill\x20/'+'f\x20/im\x20'+botName+(_0x1f1c2b(0x545,0x41d,0x4c4,0x408)+_0x2ec8c7(0x2c,0x170,-0x14,0xc1))):_0x25e176['ErpHu'](_0x25e176[_0x1f1c2b(0xd1,0x269,0x221,0x213)],_0x25e176[_0x2ec8c7(-0x69,-0x95,0x21,-0x54)])?await _0x25e176[_0x1f1c2b(0x36e,0x1fb,0x18f,0x2e1)](exec,'pkill\x20-f\x20\x22'+'['+botName[_0x1f1c2b(0x302,0x4bd,0x421,0x3b5)](0x4*0x8d2+0x1*-0x236a+0x22)+']'+botName[_0x1f1c2b(0x1aa,0x2e7,0x211,0x2d2)](0x5b9+0x1*0x1177+-0x172f)+('\x22\x20>\x20/dev/n'+_0x1f1c2b(0x3f0,0x317,0x293,0x3a3))):_0x1fa179=_0x19f735;}catch(_0x519225){}else _0x46008a[_0x1f1c2b(0x151,0x3a8,0x322,0x25a)]('Error\x20exec'+_0x1f1c2b(0x105,0x263,0xaf,0x1eb)+_0x1f1c2b(0xbc,0xe9,0xbc,0x174)+_0x375bb1);}_0x25e176[_0x122037(0x560,0x520,0x56e,0x5b0)](_0x388cd1),await new Promise(_0x1d02fa=>setTimeout(_0x1d02fa,-0x3*0x869+-0x84c+0x2d3f));const _0x413456='tunnel\x20--e'+_0x122037(0x445,0x514,0x43b,0x4ef)+_0x122037(0x493,0x5ca,0x3c6,0x414)+_0x122037(0x4f0,0x57b,0x451,0x54b)+_0x50c961(0xbd,-0xa1,0x15,-0xc9)+_0x50c961(-0x60,-0x63,0x54,0x164)+_0x50c961(0x75,-0x114,-0x3c,-0x17b)+_0x50c961(-0x13,0x67,-0xc4,0x2a)+FILE_PATH+(_0x50c961(0xef,-0x184,-0x58,0x23)+_0x122037(0x5af,0x4ba,0x603,0x626)+_0x50c961(-0x28,-0xa8,-0x18,0x5d)+_0x50c961(-0x8f,-0x185,-0x158,-0x23b)+'ocalhost:')+ARGO_PORT;try{_0x25e176[_0x122037(0x553,0x673,0x464,0x613)](_0x25e176[_0x50c961(-0x7d,-0x4d,-0x94,-0xe7)],_0x50c961(0x18,-0x60,-0x69,-0x68))?(await _0x25e176['atoCu'](exec,'nohup\x20'+botPath+'\x20'+_0x413456+(_0x122037(0x53c,0x461,0x549,0x47a)+_0x50c961(-0x217,-0x211,-0x1ac,-0x227))),console[_0x122037(0x3e6,0x339,0x2d8,0x4c8)](botName+(_0x122037(0x3ae,0x348,0x27a,0x449)+'g')),await new Promise(_0x4ee391=>setTimeout(_0x4ee391,-0x11d*0x11+-0x11db*0x1+0x3080)),await _0x25e176['LmFKY'](extractDomains)):_0x5cbe04['error']('Empowermen'+_0x50c961(-0xa0,0x5d,-0x1e,0xdb)+_0x122037(0x4c4,0x49c,0x59c,0x57f)+_0x7c85d8+':\x20'+_0x4c2905);}catch(_0x425d49){console['error'](_0x50c961(0x55,-0x19,-0x29,-0x174)+'uting\x20comm'+_0x50c961(-0x11d,-0x2b9,-0x216,-0x271)+_0x425d49);}}}}catch(_0x3bee7f){_0x25e176[_0x122037(0x4c2,0x37a,0x401,0x589)]('ypWBL','RwCNq')?(_0x295a36[_0x50c961(-0x109,-0x1b1,-0x1b1,-0x271)](_0x32ad08),_0x350312[_0x50c961(-0x52,-0x1dd,-0x144,-0x1f6)](_0x407c10+(_0x50c961(-0x8f,-0xcc,-0x65,0x63)+'d'))):console['error'](_0x122037(0x41d,0x49c,0x341,0x30e)+_0x122037(0x38f,0x2a5,0x335,0x274)+_0x122037(0x420,0x31f,0x38b,0x4e8),_0x3bee7f);}function _0x122037(_0x53293b,_0x178616,_0x3f39de,_0x4b16dd){return _0x45b3a7(_0x53293b-0x5b6,_0x178616-0x19a,_0x3f39de-0x33,_0x178616);}async function _0x1f655e(_0xa7765d){function _0x8c609a(_0x130807,_0x10e421,_0x54a306,_0x42e0e0){return _0x122037(_0x130807- -0x45d,_0x54a306,_0x54a306-0xf5,_0x42e0e0-0x162);}function _0x56607c(_0x4b74c7,_0x295232,_0x1b1ede,_0xed28d9){return _0x122037(_0x1b1ede- -0x571,_0xed28d9,_0x1b1ede-0x45,_0xed28d9-0x6e);}const _0x24b4e1={'mbBRb':_0x8c609a(0xb3,-0xe,0x1da,0xc9),'NdCeM':_0x25e176[_0x56607c(-0x2a4,-0xa2,-0x1d2,-0x20d)],'JzwNh':function(_0x2f8f1e){return _0x25e176['LmFKY'](_0x2f8f1e);},'svwkv':function(_0x561c17,_0x218582){function _0x47f8ad(_0x1f84fa,_0x4f7100,_0x3b7ad7,_0x4b826b){return _0x56607c(_0x1f84fa-0x1a7,_0x4f7100-0x15b,_0x4f7100-0x25,_0x4b826b);}return _0x25e176[_0x47f8ad(-0xff,0x3b,-0xbb,0x138)](_0x561c17,_0x218582);},'FlgOa':function(_0x42f5d7,_0x3d103c){return _0x42f5d7===_0x3d103c;},'AchGL':_0x25e176['PePin'],'mHzzj':function(_0x19272b,_0x5529e7,_0x502c9a){return _0x25e176['FjsZU'](_0x19272b,_0x5529e7,_0x502c9a);}},_0xe89901={};_0xe89901[_0x56607c(-0x10b,0xf,-0xfd,-0xfd)]=_0x8c609a(0x13d,0xd7,0x88,0x176);const _0x482c42=_0x25e176[_0x8c609a(-0xe6,-0x1ad,-0x22d,-0x17e)](execSync,_0x25e176['PzvGB'],_0xe89901),_0x5cf56e=_0x482c42['trim'](),_0x285e33=NAME?NAME+'-'+_0x5cf56e:_0x5cf56e;return new Promise(_0x553d4e=>{function _0x29cce4(_0x3a7dad,_0x39624f,_0x3e290e,_0x62b897){return _0x8c609a(_0x3a7dad-0x268,_0x39624f-0x1c6,_0x3e290e,_0x62b897-0x20);}function _0x2997da(_0x4385b5,_0xd54002,_0x324c6f,_0x177500){return _0x8c609a(_0x4385b5-0x1c7,_0xd54002-0xe4,_0x177500,_0x177500-0x1a0);}const _0x1f196b={'nFrMS':'none','bncFl':'/vmess-arg'+'o?ed=2560','oNsDV':_0x24b4e1[_0x2997da(0x27f,0x2f6,0x198,0x349)],'DQdvt':_0x24b4e1['NdCeM'],'Ppcvc':_0x2997da(0x27b,0x353,0x2bf,0x1a9),'WPfRS':function(_0x2c54bd){function _0x341b42(_0x563982,_0x529381,_0x1ea786,_0x3c6d7c){return _0x2997da(_0x563982-0x285,_0x529381-0x193,_0x1ea786-0x2c,_0x1ea786);}return _0x24b4e1[_0x341b42(0x4b5,0x4e9,0x5c1,0x3d3)](_0x2c54bd);},'fhrOU':function(_0x4bf17b,_0x7701c9){function _0x31ffdc(_0x116506,_0x2c2a29,_0x24aa1a,_0x2fd571){return _0x29cce4(_0x116506- -0x362,_0x2c2a29-0x1db,_0x24aa1a,_0x2fd571-0x1f);}return _0x24b4e1[_0x31ffdc(-0xb,0x23,0x141,0x3d)](_0x4bf17b,_0x7701c9);}};_0x24b4e1[_0x29cce4(0x14f,0x1d7,0x15f,0x299)](_0x24b4e1[_0x29cce4(0x230,0x377,0x2db,0x368)],_0x24b4e1[_0x29cce4(0x230,0x1cf,0x13e,0x10b)])?_0x24b4e1['mHzzj'](setTimeout,()=>{const _0x202b16={};_0x202b16['v']='2';function _0x44c672(_0x50781e,_0x1ec7cc,_0x351283,_0x1ef0a3){return _0x29cce4(_0x1ec7cc- -0x2fc,_0x1ec7cc-0xe4,_0x1ef0a3,_0x1ef0a3-0x3b);}_0x202b16['ps']=''+_0x285e33,_0x202b16[_0x1e22e4(-0x50,-0x29,-0xc8,-0xab)]=CFIP,_0x202b16[_0x44c672(0x67,0x80,0x7b,0x8)]=CFPORT,_0x202b16['id']=UUID,_0x202b16[_0x1e22e4(0xcf,0xcd,0x38,0x5c)]='0',_0x202b16[_0x1e22e4(0x29,-0xec,0x14e,-0xc)]=_0x1f196b['nFrMS'],_0x202b16[_0x44c672(0xb1,0xa4,0x193,0x59)]='ws',_0x202b16[_0x1e22e4(-0xc4,0x7d,0x69,-0x1f1)]=_0x1f196b['nFrMS'];function _0x1e22e4(_0x39ae14,_0x213905,_0xaba3fe,_0x5164b4){return _0x29cce4(_0x39ae14- -0x26a,_0x213905-0x7e,_0x213905,_0x5164b4-0xe0);}_0x202b16[_0x44c672(-0x118,-0x1af,-0x82,-0x7e)]=_0xa7765d,_0x202b16[_0x1e22e4(-0x6d,-0x1bb,0xc1,0x9a)]=_0x1f196b[_0x1e22e4(-0xfd,-0x113,-0x220,-0xe3)],_0x202b16['tls']=_0x1f196b[_0x44c672(-0x65,-0x6f,-0x157,0x16)],_0x202b16[_0x44c672(-0xeb,0x57,0x10,0x69)]=_0xa7765d,_0x202b16[_0x44c672(-0x153,-0x56,0x93,-0x3c)]='',_0x202b16['fp']=_0x1f196b['DQdvt'];const _0xc2e4e8=_0x202b16,_0x16b10e='\x0avless://'+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0x1b4,-0x6d,-0x7c,0x83)+_0x1e22e4(-0x2b,0xc4,-0xec,0x28)+_0x44c672(0xaf,0x2c,-0x20,-0xef)+'sni=')+_0xa7765d+(_0x44c672(0x35,-0x8f,-0x1d1,-0xd4)+_0x1e22e4(0xab,0x105,0x8d,0x69)+'host=')+_0xa7765d+(_0x44c672(0xcc,-0x12,-0x12d,-0xf9)+_0x44c672(0xb8,0x4c,0x169,0xd3)+_0x44c672(-0xa1,0x75,-0x76,0x23)+'0#')+_0x285e33+('\x0a\x20\x20\x0avmess:'+'//')+Buffer['from'](JSON[_0x44c672(-0x19f,-0xfe,-0x1e9,0x2)](_0xc2e4e8))[_0x1e22e4(0x2,-0x21,-0xed,0x154)](_0x1f196b[_0x1e22e4(0x10a,0x253,0x171,0x1eb)])+('\x0a\x20\x20\x0atrojan'+_0x1e22e4(0x5d,-0x59,-0xf2,-0xd1))+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0xd1,-0x4b,-0xa,0x70)+_0x1e22e4(0x3f,0x56,0xc0,-0x6e))+_0xa7765d+(_0x1e22e4(0x3,0x45,-0x36,-0x4f)+_0x44c672(0x101,0x19,0x5c,0x13e)+_0x1e22e4(0x151,0x4b,0x10c,0x29d))+_0xa7765d+('&path=%2Ft'+_0x44c672(0x15c,0x8b,0x6b,-0xa5)+_0x44c672(-0x2bc,-0x177,-0x2b3,-0x7d)+_0x1e22e4(0x2a,-0x80,0x5d,-0x59))+_0x285e33+_0x44c672(-0x1eb,-0xa4,-0x1b9,-0x156);console[_0x1e22e4(-0x79,0x6b,-0x4a,0xca)](Buffer['from'](_0x16b10e)['toString'](_0x1f196b[_0x44c672(0x10b,0x78,0xd5,0x161)])),fs[_0x1e22e4(0xf8,0x218,0x183,0x1b3)+_0x1e22e4(-0xc5,-0x1ff,-0x3f,-0xe4)](subPath,Buffer['from'](_0x16b10e)[_0x1e22e4(0x2,0xeb,0xcb,0x106)](_0x1f196b[_0x44c672(0x1c9,0x78,-0x51,0x7c)])),console['log'](FILE_PATH+(_0x1e22e4(0xd5,-0x4b,0x3f,0x11c)+_0x1e22e4(-0x10b,-0xef,-0x13f,-0xfc)+_0x1e22e4(-0xa2,-0x1d,-0x122,0xa3))),_0x1f196b[_0x44c672(-0x262,-0x12a,-0xee,-0x173)](uploadNodes),app['get']('/'+SUB_PATH,(_0x577ed6,_0x4e0049)=>{function _0x543e95(_0x21d00f,_0x1cb11e,_0x10382d,_0xa6a3ba){return _0x44c672(_0x21d00f-0x1a6,_0x10382d- -0xd1,_0x10382d-0x73,_0x21d00f);}const _0x3e19c9=Buffer[_0x5b138d(0x422,0x253,0x356,0x218)](_0x16b10e)['toString'](_0x5b138d(0x433,0x4c6,0x465,0x3b3));_0x4e0049[_0x543e95(-0xbf,-0x17b,-0x34,0x3b)]('Content-Ty'+'pe','text/plain'+_0x543e95(-0x31,-0x2aa,-0x181,-0x1b4)+'utf-8');function _0x5b138d(_0x1b41ba,_0x4104c9,_0x3270dd,_0x2c9f50){return _0x44c672(_0x1b41ba-0xe2,_0x3270dd-0x445,_0x3270dd-0x126,_0x2c9f50);}_0x4e0049[_0x543e95(-0x24e,-0x2b4,-0x22e,-0x2de)](_0x3e19c9);}),_0x1f196b[_0x44c672(0x62,-0xa5,-0xe2,-0x51)](_0x553d4e,_0x16b10e);},0x1*0x26f5+-0x1*-0x212e+0x5d9*-0xb):_0x1c7bb0['error'](_0x2997da(0x26b,0x34a,0x206,0x36d)+_0x2997da(0xf5,0x84,0x88,0x18)+_0x29cce4(0x11f,0x1d8,0x1a6,0x24f)+_0x1ac8e8);});}}async function uploadNodes(){const _0x38d910={};_0x38d910['VXrHV']='base64',_0x38d910['YVFFP']=_0x949933(-0x2d4,-0x1a6,-0x237,-0x304)+'pe',_0x38d910[_0x949933(-0xf8,-0x162,-0xc5,-0xfe)]=_0x949933(-0x35f,-0x38d,-0x2a0,-0x28f)+';\x20charset='+'utf-8',_0x38d910[_0x949933(-0x177,-0x1d2,-0xd4,-0x1ec)]=_0x949933(-0x237,-0x37c,-0x22d,-0x1c1)+_0x5d5f54(-0xfd,-0xaa,0x4,-0x64)+'yc.mn/bot',_0x38d910[_0x949933(-0x24f,-0x189,-0x2b0,-0x361)]=_0x949933(-0x122,-0xa1,-0x81,-0x188),_0x38d910['tpXBo']=function(_0x2adcd5,_0x2af982){return _0x2adcd5||_0x2af982;},_0x38d910[_0x949933(-0x2db,-0x23c,-0x2da,-0x329)]=_0x5d5f54(-0x74,-0xe5,-0x48,-0xbb)+_0x949933(-0x311,-0x3da,-0x29e,-0x1c8)+_0x5d5f54(-0x2a,0x6b,-0xb9,-0x17c)+_0x949933(-0x1f3,-0x190,-0xa1,0x62)+_0x5d5f54(-0x1b7,-0x223,-0x1b6,-0x11f)+_0x5d5f54(-0x16d,-0x56,-0x252,-0x1dd)+'s';function _0x949933(_0xca9a53,_0x5e1613,_0x38f20e,_0x22109d){return _0x32a1a9(_0xca9a53,_0x5e1613-0xd6,_0x38f20e- -0x50d,_0x22109d-0x12b);}_0x38d910[_0x5d5f54(-0x1a1,-0x2d5,-0x8c,-0x23b)]=_0x5d5f54(-0x3a,-0x172,-0x41,-0xac)+'et',_0x38d910[_0x949933(-0x69,-0x16,-0x10d,-0x180)]=_0x5d5f54(-0x43,-0x118,-0x11c,-0x6f)+'n',_0x38d910['depew']=_0x949933(-0x93,-0x81,-0x103,-0x13e),_0x38d910[_0x5d5f54(-0x18f,-0x95,-0x289,-0x23e)]=function(_0x1a9e56,_0xa43754){return _0x1a9e56!==_0xa43754;},_0x38d910['tfESo']=_0x5d5f54(-0x131,-0x1f1,-0x279,-0xfc),_0x38d910['HOgEp']=_0x949933(-0x1eb,-0x1e0,-0x143,-0x293),_0x38d910[_0x5d5f54(-0x10c,-0x171,-0xfe,-0x9c)]=function(_0x189655,_0x1855ee){return _0x189655!==_0x1855ee;},_0x38d910[_0x949933(-0x100,-0x176,-0x24e,-0x160)]='lngvy',_0x38d910[_0x949933(-0x290,-0x14d,-0x265,-0x279)]='applicatio'+_0x949933(-0xf8,-0x7c,-0x16c,-0x131),_0x38d910[_0x5d5f54(-0x214,-0x2f5,-0x108,-0x31e)]='FIxQJ',_0x38d910[_0x949933(-0x172,-0x1ba,-0x177,-0x103)]=function(_0x55c8a3,_0x3a5617){return _0x55c8a3===_0x3a5617;},_0x38d910[_0x5d5f54(-0x1c,-0x13c,0x23,-0x158)]=function(_0x24b980,_0x12f6a2){return _0x24b980!==_0x12f6a2;},_0x38d910['FyXOD']='fQtcR';function _0x5d5f54(_0xbe3031,_0x193836,_0x3a738c,_0x5ea712){return _0x32a1a9(_0x193836,_0x193836-0x159,_0xbe3031- -0x475,_0x5ea712-0x1f);}_0x38d910[_0x5d5f54(-0x1ed,-0x2cd,-0x15f,-0x250)]=_0x949933(-0x291,-0x138,-0x172,-0x25c),_0x38d910[_0x5d5f54(-0x56,0x4c,-0x173,-0xe2)]='Nodes\x20uplo'+_0x949933(-0x208,-0x2d3,-0x2ee,-0x1c0)+_0x5d5f54(-0x1c6,-0x99,-0xf1,-0x2ef),_0x38d910[_0x949933(-0x44,0x3e,-0x68,-0xda)]=function(_0x1414b6,_0x139934){return _0x1414b6!==_0x139934;};const _0x312abf=_0x38d910;if(UPLOAD_URL&&PROJECT_URL){if(_0x312abf[_0x949933(-0xdc,-0x368,-0x227,-0x2e0)](_0x312abf[_0x5d5f54(-0xd1,-0x1f,-0x95,-0x221)],_0x312abf[_0x949933(-0x6e,-0xf1,-0x1af,-0xbe)])){const _0x4fa660=PROJECT_URL+'/'+SUB_PATH,_0x479c8c={};_0x479c8c[_0x949933(-0xe,-0x10b,-0x11d,-0x15f)+'on']=[_0x4fa660];const _0xa05268=_0x479c8c;try{if(_0x312abf[_0x5d5f54(-0x10c,-0x124,-0x234,-0x165)](_0x312abf['cqAfB'],_0x312abf[_0x949933(-0x266,-0x139,-0x24e,-0x1b1)]))_0x4d9fa3?_0x55c74d['error'](_0x5d5f54(-0x164,-0x175,-0xc9,-0x20d)+_0x5d5f54(-0x77,-0x60,-0x26,-0x2f)+_0x949933(-0x116,-0x1de,-0x157,-0x1df)+_0x56d2df+':\x20'+_0x1245f5):_0x379035[_0x5d5f54(-0x19d,-0x2ae,-0x2bc,-0xcc)]('Empowermen'+_0x5d5f54(-0x84,-0x86,-0x169,-0xf6)+_0x949933(-0x222,-0xdf,-0xfa,-0xeb)+_0x1164ff+':\x20'+_0x1c33cc[_0x949933(-0x78,-0x1fa,-0x1ba,-0x151)](-0x1cf*0x8+-0xb*0x37+0x3*0x59f));else{const _0x7d8b92={};_0x7d8b92[_0x5d5f54(-0x19f,-0xee,-0x22d,-0x227)+'pe']=_0x312abf[_0x5d5f54(-0x1cd,-0x7a,-0x110,-0x232)];const _0x4d2945={};_0x4d2945[_0x5d5f54(-0xe3,-0x3c,-0xd,-0x233)]=_0x7d8b92;const _0x215e88=await axios['post'](UPLOAD_URL+(_0x5d5f54(-0x97,-0xd7,0x63,-0x153)+_0x949933(-0x291,-0x53,-0x144,-0xdd)+'ns'),_0xa05268,_0x4d2945);if(_0x215e88&&_0x215e88[_0x949933(-0xdd,-0x85,-0x98,0x5f)]===-0x653+-0x1*-0x417+-0x304*-0x1)return console['log'](_0x5d5f54(-0x161,-0xaa,-0x1ba,-0x15)+'on\x20uploade'+_0x949933(-0x42,-0x13,-0x116,-0x196)+_0x949933(-0x17,-0x215,-0xd7,-0x165)),_0x215e88;else{if(_0x312abf[_0x949933(-0x2aa,-0x1b3,-0x2ac,-0x163)]!==_0x312abf['QBnto']){const _0x2e3c30=_0x983dac[_0x949933(-0x139,-0x347,-0x219,-0x362)](_0xcc2e70)['toString'](_0x312abf[_0x949933(-0x19a,0x5f,-0xbd,-0xe4)]);_0x38077a[_0x5d5f54(0xb,-0x37,-0x142,-0xd5)](_0x312abf[_0x949933(-0x11b,-0x13a,-0x267,-0x371)],_0x312abf['iXBbz']),_0x52c474[_0x5d5f54(-0x1ef,-0x156,-0x111,-0x1fd)](_0x2e3c30);}else return null;}}}catch(_0x3df859){if(_0x3df859[_0x5d5f54(-0x24,-0x65,-0x60,-0x43)]){if(_0x3df859[_0x5d5f54(-0x24,-0xa6,-0x6d,0x3f)][_0x949933(-0x1eb,0x6b,-0x98,-0xc8)]===-0x2c9*-0xa+0x545+0xa85*-0x3){}}}}else{const _0x479139={};_0x479139[_0x949933(-0xd0,-0x200,-0x132,-0x5d)]=_0x1e0260,_0x479139['fileUrl']=_0x5d5f54(-0x195,-0x11a,-0x1c7,-0xc5)+_0x949933(-0x2a8,-0x5f,-0x195,-0x25e)+'yc.mn/web';const _0x487a86={};_0x487a86['fileName']=_0x3c811,_0x487a86[_0x949933(-0x31c,-0x289,-0x28e,-0x341)]=_0x312abf[_0x5d5f54(-0x3c,0xb2,0xf9,-0x4f)],_0x5556f6=[_0x479139,_0x487a86];}}else{if(UPLOAD_URL){if(!fs[_0x5d5f54(-0x14e,-0x163,-0x1d4,-0x1a7)](listPath))return;const _0x347792=fs[_0x949933(-0x1b8,0x2e,-0x7e,0x41)+'nc'](listPath,_0x312abf[_0x949933(-0x1af,-0x1e1,-0x2b0,-0x33d)]),_0x2ebc80=_0x347792['split']('\x0a')['filter'](_0x585b29=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x949933(-0x1e8,-0x15c,-0x124,-0x39)](_0x585b29));if(_0x312abf[_0x5d5f54(-0xdf,-0x70,-0x106,-0x1dc)](_0x2ebc80['length'],0x1df3+0xc31*0x3+-0x82*0x83))return;const _0x33f6c1={};_0x33f6c1[_0x5d5f54(-0x88,-0xa7,0x3b,-0x39)]=_0x2ebc80;const _0x220352=JSON[_0x5d5f54(-0x190,-0x99,-0x65,-0x68)](_0x33f6c1);try{const _0x47e4fb={};_0x47e4fb[_0x5d5f54(-0x19f,-0x2d3,-0xa8,-0x81)+'pe']=_0x5d5f54(0x2b,-0x57,0x12c,-0xe8)+_0x949933(-0x25a,-0x179,-0x16c,-0x2e);const _0x5f4c29={};_0x5f4c29['headers']=_0x47e4fb;const _0x1d2bba=await axios[_0x5d5f54(-0x54,-0x6c,-0x102,-0x170)](UPLOAD_URL+(_0x949933(-0x44,-0x1b3,-0xa4,-0xb6)+'odes'),_0x220352,_0x5f4c29);if(_0x1d2bba&&_0x312abf[_0x949933(-0xa6,-0x34,-0x177,-0xf4)](_0x1d2bba[_0x5d5f54(0x0,0x25,0x9c,-0x5c)],0x2570+0x2f8+-0x8*0x4f4)){if(_0x312abf[_0x949933(-0x3b,-0x1c5,-0xb4,0xc)](_0x312abf[_0x949933(-0x1e1,-0x154,-0xa2,-0xf9)],_0x312abf['ZvFVh']))return console[_0x5d5f54(-0x19d,-0x20d,-0x250,-0x2de)](_0x312abf[_0x949933(0x40,-0xe2,-0xee,0x45)]),_0x1d2bba;else _0x437cf4=_0x59de15[_0x949933(0x8f,0xba,-0x7e,-0x160)+'nc'](_0x5e5413,_0x312abf['zDLvo']);}else return null;}catch(_0x53fa39){return null;}}else{if(_0x312abf[_0x5d5f54(0x30,-0x39,-0x103,-0x89)](_0x949933(0x2d,0x4e,-0x8b,-0x12f),_0x949933(-0x16d,-0xfa,-0x8b,-0x99))){if(_0x312abf[_0x949933(-0x30b,-0x282,-0x230,-0x134)](!_0x188df2,!_0x3b1bae)){_0x212d5e['log'](_0x312abf['CgKtw']);return;}if(_0x5785d3[_0x5d5f54(-0x8,0xe9,-0xdf,-0x47)](_0x312abf[_0x949933(-0x16a,-0x2da,-0x239,-0xfc)])){_0x3ec224[_0x949933(-0xa,-0xa6,-0xc4,-0x12a)+_0x949933(-0x3d1,-0x135,-0x281,-0x2c1)](_0x429af4[_0x949933(-0x2,-0x10f,-0x67,0xbf)](_0x546ae4,_0x949933(0x3,-0xad,-0xdb,-0xe8)+'n'),_0x1f56e2);const _0x7c87f3='\x0a\x20\x20tunnel:'+'\x20'+_0x50a7cd['split']('\x22')[0x1ff2+0x17ea+-0x37d1]+('\x0a\x20\x20credent'+_0x5d5f54(-0xf5,-0xa9,-0x203,-0x126)+'\x20')+_0x3884f0[_0x949933(0xdc,-0xc2,-0x67,-0x88)](_0x3984d9,_0x312abf[_0x5d5f54(-0x75,-0x76,-0x186,-0x19a)])+(_0x949933(-0x1ec,-0x329,-0x23b,-0x1c4)+_0x5d5f54(-0x199,-0x2e2,-0x103,-0x1af)+_0x949933(-0x64,-0x151,-0x1aa,-0x5d)+_0x949933(-0x1a8,-0x39c,-0x2db,-0x3e1)+_0x949933(-0x5,-0x68,-0x100,-0x160))+_0x4a9b38+(_0x949933(-0x107,-0x101,-0x214,-0x1bf)+_0x5d5f54(0x2a,0x111,0x31,0x108)+_0x949933(-0x28d,-0x296,-0x19c,-0xbf)+_0x5d5f54(-0x265,-0x16f,-0x22a,-0x17d))+_0x64bd96+(_0x949933(-0x90,-0xc2,-0x19e,-0xce)+'ginRequest'+_0x949933(-0x1cc,-0x40b,-0x2c4,-0x24f)+'noTLSVerif'+'y:\x20true\x0a\x20\x20'+'\x20\x20-\x20servic'+_0x5d5f54(-0x99,-0x1c4,-0xe8,-0xe2)+_0x949933(-0x1e4,-0x28d,-0x2b2,-0x179)+'\x20');_0x165408[_0x949933(-0x41,0x7,-0xc4,-0x1f4)+_0x5d5f54(-0x1e9,-0x318,-0x28b,-0x2e2)](_0x5ae2b2[_0x5d5f54(0x31,0x8f,-0xeb,-0x110)](_0x4180fa,_0x312abf[_0x949933(-0xa9,-0x24a,-0x17a,-0x28f)]),_0x7c87f3);}else _0x10899f['log'](_0x949933(-0xd7,-0x2aa,-0x1a1,-0x220)+_0x949933(-0x206,-0x329,-0x2ca,-0x2ae)+_0x949933(-0xa7,-0x73,-0x6f,-0x99)+_0x949933(-0x1f6,-0x382,-0x2f2,-0x1e1)+_0x5d5f54(-0x26b,-0x327,-0x321,-0x119)+_0x5d5f54(-0x53,-0x13e,-0x6a,0xce));}else return;}}}function cleanFiles(){function _0x2c81ca(_0x5e3a14,_0x11fe56,_0x4b6383,_0x1baad6){return _0x45b3a7(_0x5e3a14-0x1b3,_0x11fe56-0x10f,_0x4b6383-0x185,_0x11fe56);}function _0x291101(_0x1a203c,_0x3e2f69,_0x14e4d0,_0x42fa17){return _0x45b3a7(_0x42fa17-0x298,_0x3e2f69-0x171,_0x14e4d0-0x47,_0x14e4d0);}const _0xa26b09={'pysMP':function(_0x28e189,_0x4086b3){return _0x28e189!==_0x4086b3;},'ccAZx':_0x291101(0x199,-0x4a,0x12d,0xd8),'ReiLc':_0x291101(0x189,0x185,0x3c2,0x284)+_0x291101(0x14,0x1f,0x92,0x16)+_0x291101(-0x14,0x212,0x37,0xc9)+_0x291101(0xdf,0xb,0xdf,0xc7),'JXTPT':function(_0x2b2f37,_0x3144f8){return _0x2b2f37===_0x3144f8;},'FitcW':_0x2c81ca(0xe8,0x127,0x54,0x1b5),'OIvXB':_0x2c81ca(0x6,-0xf0,-0x89,-0xcd)+'m64.ssss.n'+_0x291101(0x126,0xbb,-0x66,0x8d)+'t','BNvvF':_0x2c81ca(-0x15,-0x154,-0xba,0xae)+_0x291101(0x1b7,0x1d9,0xb7,0x168)+'yc.mn/agen'+'t','mudKi':_0x2c81ca(0x121,0x63,0x14e,0xc),'hDkWC':'tHJZM','QdMSY':function(_0x299567,_0x2b66f0,_0x43b438){return _0x299567(_0x2b66f0,_0x43b438);}};setTimeout(()=>{const _0x3bcffa={'ubEfV':function(_0x2a25e3,_0x5b9d6c){function _0x544b40(_0x119a6b,_0x493269,_0x371bf5,_0x2dfdf5){return _0x5758(_0x493269-0x231,_0x119a6b);}return _0xa26b09[_0x544b40(0x59b,0x548,0x544,0x51d)](_0x2a25e3,_0x5b9d6c);},'eSXns':_0xa26b09[_0x3280fc(0x345,0x34a,0x3d7,0x2a6)],'HrezH':_0xa26b09['OIvXB'],'nMNMu':_0xa26b09['BNvvF'],'HajuC':'Hello\x20worl'+'d!','EyDrP':_0x533202(0x12d,0x140,0x1b0,0x15b)+_0x3280fc(0x564,0x46c,0x35c,0x32f)},_0x2f1bda=[bootLogPath,configPath,webPath,botPath];function _0x3280fc(_0x1b88d7,_0x2bcd68,_0x2aa7d7,_0x4a42f5){return _0x291101(_0x1b88d7-0x101,_0x2bcd68-0xc5,_0x1b88d7,_0x2bcd68-0x346);}if(NEZHA_PORT)_0x2f1bda[_0x3280fc(0x488,0x428,0x2d9,0x503)](npmPath);else NEZHA_SERVER&&NEZHA_KEY&&_0x2f1bda['push'](phpPath);function _0x533202(_0x15d757,_0xa1f506,_0x4c3032,_0x1bf970){return _0x291101(_0x15d757-0x155,_0xa1f506-0x13c,_0x4c3032,_0xa1f506- -0x32);}_0xa26b09[_0x533202(0x292,0x235,0x238,0x136)](process[_0x533202(0x1fe,0x1f5,0x2c9,0x14b)],_0xa26b09[_0x3280fc(0x48a,0x479,0x53e,0x381)])?_0xa26b09[_0x533202(0x89,0x23,0x5,0x10)]===_0xa26b09[_0x3280fc(0x35a,0x39b,0x299,0x2e3)]?_0xa26b09[_0x533202(0x1af,0x126,0x170,0xf4)](exec,_0x533202(-0x13,0xb,-0x8,0x2)+_0x2f1bda['join']('\x20')+(_0x3280fc(0x55f,0x486,0x3e8,0x42e)+'1'),_0x5476b7=>{function _0x578d07(_0x43f44c,_0x53c9fc,_0x465f68,_0x28a140){return _0x3280fc(_0x53c9fc,_0x43f44c- -0x441,_0x465f68-0x14c,_0x28a140-0x1f2);}function _0x39ba35(_0x42b6c2,_0x33445e,_0x539bbe,_0x9fbdee){return _0x3280fc(_0x33445e,_0x42b6c2-0xee,_0x539bbe-0x5f,_0x9fbdee-0xff);}if(_0xa26b09[_0x39ba35(0x650,0x501,0x59e,0x5ef)](_0xa26b09[_0x39ba35(0x43b,0x38b,0x405,0x4fa)],'sppXv')){const _0x233f7b=_0x3bcffa[_0x39ba35(0x46c,0x3dd,0x51c,0x400)](_0x1642d5,_0x3bcffa[_0x578d07(0x15a,0x1bb,0x20b,0x1ac)])?_0x3bcffa['HrezH']:_0x3bcffa[_0x578d07(0x54,-0x20,0x8a,0x100)],_0x4e349e={};_0x4e349e['fileName']=_0x57b736,_0x4e349e[_0x39ba35(0x4a3,0x3b1,0x5ba,0x396)]=_0x233f7b,_0x3243ef[_0x578d07(-0x15,-0x140,0xbc,0xca)](_0x4e349e);}else console[_0x39ba35(0x57b,0x58a,0x43d,0x592)](),console[_0x39ba35(0x4fc,0x455,0x5d6,0x524)]('App\x20is\x20run'+_0x39ba35(0x55a,0x54c,0x545,0x5fc)),console['log'](_0xa26b09[_0x578d07(-0x8b,0x81,-0x14,0x30)]);}):_0xfca3ff[_0x3280fc(0x424,0x3bc,0x3b4,0x2ef)](_0x3bcffa[_0x533202(0x1e3,0xca,-0x1c,-0x54)]):_0xa26b09['QdMSY'](exec,_0x3280fc(0x43e,0x3d9,0x336,0x481)+_0x2f1bda[_0x533202(0x292,0x264,0x20a,0x1e3)]('\x20')+(_0x533202(0x2d7,0x1ec,0x21f,0x331)+_0x533202(0x1cf,0x220,0x1f1,0x240)),_0x5cca1c=>{function _0x40ef9d(_0x10969a,_0x5babb8,_0x4f6f73,_0x2cb363){return _0x3280fc(_0x5babb8,_0x4f6f73- -0x3ac,_0x4f6f73-0x6e,_0x2cb363-0x1d4);}console['clear']();function _0x9f22ab(_0x12ac23,_0xbb4f15,_0x185438,_0x5c17ab){return _0x3280fc(_0xbb4f15,_0x185438- -0x5b,_0x185438-0x1d4,_0x5c17ab-0x56);}console[_0x40ef9d(0x60,-0x60,0x62,-0x4e)](_0x3bcffa['EyDrP']),console['log'](_0x9f22ab(0x4e8,0x4f9,0x56f,0x498)+_0x9f22ab(0x39e,0x428,0x301,0x3fd)+_0x40ef9d(-0x34,-0x39,0x63,-0xb2)+'t,\x20enjoy!');});},0x22ad+0xe55*0x10+0x5793);}cleanFiles();async function AddVisitTask(){const _0x1b1bae={};_0x1b1bae[_0x3020bc(0x145,0x8b,0x149,0x15b)]=function(_0xb17a89,_0x1dd578){return _0xb17a89||_0x1dd578;};function _0x38ec02(_0x2c7142,_0x49d04e,_0x54dfe9,_0x10e26b){return _0x45b3a7(_0x2c7142-0xc9,_0x49d04e-0xc,_0x54dfe9-0x55,_0x49d04e);}_0x1b1bae[_0x38ec02(-0x189,-0x5b,-0x293,-0x81)]='Skipping\x20a'+_0x38ec02(0xa9,-0x83,0x119,0x1ab)+_0x38ec02(0x3a,0xec,-0x46,0x39)+'ss\x20task';const _0xb425c3=_0x1b1bae;if(_0xb425c3['nmCyc'](!AUTO_ACCESS,!PROJECT_URL)){console[_0x38ec02(-0x107,-0x101,-0x1d9,-0x2c)](_0xb425c3[_0x38ec02(-0x189,-0x12e,-0x2d4,-0x2cf)]);return;}function _0x3020bc(_0xf14f5f,_0x2dd11d,_0x1b9306,_0x1fe4e6){return _0x45b3a7(_0xf14f5f-0x3b0,_0x2dd11d-0xd8,_0x1b9306-0xdc,_0x1b9306);}try{const _0xeded47={};_0xeded47[_0x3020bc(0x149,0x84,0x24e,0xdf)]=PROJECT_URL;const _0x4f86e0={};_0x4f86e0['Content-Ty'+'pe']=_0x38ec02(0xc1,0xf1,0x166,-0x34)+_0x3020bc(0x2a9,0x348,0x277,0x29d);const _0x4c0846={};_0x4c0846[_0x38ec02(-0x4d,-0x99,-0x160,-0xe6)]=_0x4f86e0;const _0x3d6c1f=await axios[_0x38ec02(0x42,0x150,0xac,0x2f)]('https://oo'+_0x3020bc(0x2b5,0x312,0x393,0x2a0)+_0x3020bc(0x14a,0x29,0x1f6,0x137)+'l',_0xeded47,_0x4c0846);return console['log']('automatic\x20'+_0x38ec02(-0x123,-0x274,-0x24b,-0x2e)+_0x38ec02(-0x183,-0x138,-0x17d,-0x2b1)+'ccessfully'),_0x3d6c1f;}catch(_0x3b2539){return console[_0x38ec02(-0xf3,-0x1f3,0x16,-0x149)](_0x3020bc(0x22c,0x19e,0x2e3,0x2fa)+_0x38ec02(0xca,0xce,-0x1c,0x77)+_0x38ec02(-0x1d,-0xe3,0x7e,-0x46)+'d:\x20'+_0x3b2539['message']),null;}}function _0x5758(_0x10e234,_0x38bd4d){const _0xf97e55=_0xf97e();return _0x5758=function(_0x57589c,_0x454bfc){_0x57589c=_0x57589c-(0x4*-0x4d6+0x184d*-0x1+0x2c49);let _0x30011f=_0xf97e55[_0x57589c];return _0x30011f;},_0x5758(_0x10e234,_0x38bd4d);}async function startserver(){function _0x2ef068(_0x19c239,_0x3d1350,_0x53fe79,_0x5deb50){return _0x32a1a9(_0x53fe79,_0x3d1350-0x68,_0x3d1350-0xac,_0x5deb50-0x40);}const _0x3f7962={'fTncq':function(_0x4297da,_0x5ca6ae){return _0x4297da===_0x5ca6ae;},'zitDC':'Wtnpd','pCQjd':_0x79575(0x48d,0x40e,0x55d,0x523)+'4','vTZbf':function(_0x3c3114){return _0x3c3114();},'xKpHO':function(_0x100ddc){return _0x100ddc();},'dRjxt':function(_0x46fc56){return _0x46fc56();}};function _0x79575(_0x5e3fb7,_0x373fa0,_0x388773,_0x9243c3){return _0x32a1a9(_0x373fa0,_0x373fa0-0x1d9,_0x5e3fb7-0x1fb,_0x9243c3-0xa8);}try{if(_0x3f7962[_0x79575(0x616,0x563,0x5a9,0x4fa)](_0x3f7962[_0x79575(0x4ea,0x3d1,0x46a,0x3df)],_0x79575(0x5d5,0x568,0x641,0x483))){const _0x5443fc=_0x3f7962[_0x79575(0x60f,0x730,0x6c8,0x53e)]['split']('|');let _0x13cd1e=0x1*-0x1e2b+0x26cc*0x1+-0x8a1;while(!![]){switch(_0x5443fc[_0x13cd1e++]){case'0':_0x3f7962[_0x2ef068(0x2f8,0x3c8,0x3f1,0x328)](cleanupOldFiles);continue;case'1':deleteNodes();continue;case'2':await _0x3f7962[_0x79575(0x402,0x3a1,0x522,0x440)](extractDomains);continue;case'3':await _0x3f7962[_0x79575(0x407,0x527,0x300,0x3b2)](generateConfig);continue;case'4':await _0x3f7962[_0x2ef068(0x3c9,0x2b3,0x283,0x200)](AddVisitTask);continue;case'5':await _0x3f7962['xKpHO'](downloadFilesAndRun);continue;}break;}}else{const _0x39567b=_0xa4657d[_0x79575(0x55c,0x679,0x421,0x58d)](_0x479012,arguments);return _0x2d9024=null,_0x39567b;}}catch(_0x506929){console['error'](_0x2ef068(0x3ab,0x4df,0x50a,0x3d5)+_0x2ef068(0x45f,0x503,0x3f0,0x40b)+':',_0x506929);}}startserver()[_0x32a1a9(0x3ef,0x2ef,0x2c2,0x318)](_0x51d0c3=>{const _0x86c46={};_0x86c46[_0x1799e4(0x38,-0x31,-0x22,-0x6e)]=_0x8a556c(0x4ce,0x513,0x40c,0x4be)+'error\x20in\x20s'+'tartserver'+':';const _0x1d5a67=_0x86c46;function _0x1799e4(_0x58447e,_0x10c11a,_0x45b619,_0x1e1f1d){return _0x32a1a9(_0x10c11a,_0x10c11a-0xde,_0x1e1f1d- -0x3d8,_0x1e1f1d-0x14c);}function _0x8a556c(_0x2a99d1,_0x3f0710,_0x5c6af0,_0x45f877){return _0x32a1a9(_0x2a99d1,_0x3f0710-0x1cf,_0x45f877-0x280,_0x45f877-0x179);}console['error'](_0x1d5a67[_0x8a556c(0x6aa,0x673,0x5a2,0x5ea)],_0x51d0c3);}),app[_0x45b3a7(-0xae,-0x91,0x23,-0x18a)](PORT,()=>console[_0x45b3a7(-0x1d0,-0xd7,-0x2db,-0xb3)](_0x45b3a7(-0x2a0,-0x32e,-0x17a,-0x3ea)+_0x45b3a7(-0xff,-0x11,-0x218,-0x27)+'ng\x20on\x20port'+':'+PORT+'!')); From d9afc1e67d9b8aa509f78b3f54e56e2c2b79b9ef Mon Sep 17 00:00:00 2001 From: jianghu88 <38852493+jianghu88@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:44:30 +0800 Subject: [PATCH 8/9] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 6a9e649592..2f57d32276 100644 --- a/index.js +++ b/index.js @@ -1 +1 @@ -(function(_0x49d6e9,_0x299a1e){function _0xf5e1f3(_0x29d926,_0x310ec0,_0x3cd8d7,_0x2d7c5d){return _0x5758(_0x3cd8d7- -0x25c,_0x2d7c5d);}function _0x58dfe8(_0x2ae208,_0x42f032,_0x581998,_0x14eb6d){return _0x5758(_0x581998- -0x3bc,_0x14eb6d);}const _0x19f48f=_0x49d6e9();while(!![]){try{const _0x4f7def=parseInt(_0x58dfe8(-0xc7,-0x1ce,-0x219,-0x236))/(0x9f1+-0x1bb*-0x12+0x2*-0x148b)*(parseInt(_0x58dfe8(-0x24d,-0x1cf,-0x30e,-0x1cb))/(0xfb*-0x7+-0x3c*-0x5+0x5b3))+-parseInt(_0x58dfe8(-0x223,-0x17a,-0x212,-0x116))/(0x1*-0x1708+-0x1*-0x2137+-0xa2c)*(-parseInt(_0xf5e1f3(-0x15e,-0x12e,-0x181,-0x168))/(0x226f+0x2007+-0x4272))+-parseInt(_0xf5e1f3(-0x185,0x5f,-0x38,-0x89))/(0x1fea+-0xa0b*0x2+0xbcf*-0x1)+parseInt(_0xf5e1f3(-0x1ce,-0x14f,-0x88,-0x85))/(-0xbc8+0x16e0+-0xb12)+-parseInt(_0x58dfe8(-0x168,-0x1e0,-0x241,-0x14b))/(-0x85e+-0x25f5+0x1*0x2e5a)+-parseInt(_0x58dfe8(-0x1d6,0x43,-0xa0,0x4d))/(0x1*-0x2597+-0x1*0x1185+0x2*0x1b92)+parseInt(_0xf5e1f3(-0x10a,-0xdf,-0x171,-0x117))/(-0x3*0xa8b+0xf2f*0x1+0x107b);if(_0x4f7def===_0x299a1e)break;else _0x19f48f['push'](_0x19f48f['shift']());}catch(_0x52a7ca){_0x19f48f['push'](_0x19f48f['shift']());}}}(_0xf97e,-0x3a*-0x2c5+-0x108991+0x1eaab4));const _0x38bd4d=(function(){const _0x3dac92={};function _0x5480a8(_0x5442d6,_0x30d198,_0x446eac,_0x59c931){return _0x5758(_0x446eac-0x325,_0x30d198);}_0x3dac92[_0xfb5bdd(-0x1f7,-0x199,-0x287,-0x27f)]=function(_0x24c414,_0x1e1afa){return _0x24c414!==_0x1e1afa;},_0x3dac92[_0x5480a8(0x54e,0x4e3,0x416,0x432)]=_0x5480a8(0x4fe,0x4b2,0x3d7,0x3a3);const _0x542cac=_0x3dac92;function _0xfb5bdd(_0x4d7eb1,_0x4ac68d,_0x48a23d,_0x5dbbd4){return _0x5758(_0x5dbbd4- -0x395,_0x4d7eb1);}let _0x574e6c=!![];return function(_0x32d6c9,_0x4c6fe3){const _0x3aff4e={'sCefR':function(_0x4ba15b,_0x30db53){function _0x3fdb48(_0x122900,_0x1840d1,_0x2558c1,_0xb929b){return _0x5758(_0xb929b-0x66,_0x1840d1);}return _0x542cac[_0x3fdb48(0x2c9,0xf2,0xa4,0x17c)](_0x4ba15b,_0x30db53);},'izENf':_0x542cac[_0x23cc5b(0x1ef,0x173,0x26e,0x1bb)]},_0x3bb83c=_0x574e6c?function(){function _0x3a7e63(_0x4e9dca,_0x42f109,_0xafd3ec,_0x2ec98b){return _0x23cc5b(_0x2ec98b- -0x21f,_0x42f109-0x15e,_0xafd3ec,_0x2ec98b-0x5);}function _0x15142c(_0x40c936,_0x52d20f,_0x16e421,_0x58a224){return _0x23cc5b(_0x52d20f-0xba,_0x52d20f-0x154,_0x58a224,_0x58a224-0x125);}if(_0x4c6fe3){if(_0x3aff4e[_0x15142c(0x15f,0x26d,0x251,0x385)](_0x3aff4e[_0x3a7e63(0x4f,0x176,-0x6c,0x8a)],_0x3aff4e[_0x15142c(0x47b,0x363,0x47c,0x2f3)])){if(_0x3aabc6[_0x3a7e63(0x149,0x1a6,0x1e9,0x1d0)]){if(_0x97425[_0x3a7e63(0xf8,0x31c,0x1f7,0x1d0)][_0x3a7e63(0x2fd,0xd0,0x2c5,0x1f4)]===0x2485+-0x2673+-0x95*-0x6){}}}else{const _0x2c2200=_0x4c6fe3[_0x15142c(0x323,0x3b9,0x272,0x36d)](_0x32d6c9,arguments);return _0x4c6fe3=null,_0x2c2200;}}}:function(){};function _0x23cc5b(_0xa22c6b,_0x4fa22f,_0x409c99,_0x508761){return _0xfb5bdd(_0x409c99,_0x4fa22f-0x8d,_0x409c99-0x6b,_0xa22c6b-0x493);}return _0x574e6c=![],_0x3bb83c;};}()),_0x10e234=_0x38bd4d(this,function(){const _0x332c41={};_0x332c41[_0x14628e(0x1dc,0x35b,0x3a1,0x2bc)]=_0x14628e(0x302,0x38e,0x3d1,0x325)+'+$';const _0x1b1e44=_0x332c41;function _0x14628e(_0x22e40f,_0x434a1a,_0x582b07,_0x30e5b5){return _0x5758(_0x30e5b5-0xba,_0x22e40f);}function _0x3fda92(_0x472ee9,_0x8befd2,_0x13c039,_0x1b8ab7){return _0x5758(_0x13c039-0x0,_0x1b8ab7);}return _0x10e234['toString']()[_0x3fda92(0x17,0x1ac,0x13a,0x1bd)](_0x1b1e44[_0x14628e(0x328,0x2ff,0x349,0x2bc)])[_0x14628e(0x373,0x30e,0x2e3,0x2ad)]()[_0x14628e(0x273,0x48f,0x302,0x344)+'r'](_0x10e234)[_0x3fda92(0x1aa,-0x8,0x13a,0xb2)](_0x1b1e44[_0x3fda92(0x17d,0x330,0x202,0x1a4)]);});_0x10e234();const _0x404836=(function(){let _0x2cffae=!![];return function(_0x4c9444,_0x4b5964){const _0x3e5141=_0x2cffae?function(){function _0x585f34(_0x4a4338,_0x30931e,_0x2345e4,_0x489ce0){return _0x5758(_0x2345e4-0x26d,_0x4a4338);}if(_0x4b5964){const _0x4640ba=_0x4b5964[_0x585f34(0x4b6,0x409,0x46e,0x4ec)](_0x4c9444,arguments);return _0x4b5964=null,_0x4640ba;}}:function(){};return _0x2cffae=![],_0x3e5141;};}()),_0x414c6d=_0x404836(this,function(){const _0x3ad6c0={'bqgFt':_0x39f032(0x465,0x45a,0x3ae,0x2a6)+_0x3b5f1c(0x3bf,0x29e,0x3ce,0x47a)+'matic\x20acce'+_0x39f032(0x35d,0x534,0x404,0x2f1),'EfTkf':function(_0x25946d,_0x1bfa95){return _0x25946d===_0x1bfa95;},'EROZH':_0x39f032(0x519,0x383,0x4bf,0x53e),'vTsTK':function(_0x420902,_0x3a6b85){return _0x420902(_0x3a6b85);},'BWawy':function(_0xa9350d,_0x3e495b){return _0xa9350d+_0x3e495b;},'cHiDu':_0x3b5f1c(0x19f,0x2b2,0x1f2,0x9f)+'nction()\x20','GKAHv':'{}.constru'+_0x3b5f1c(0x3df,0x2bd,0x447,0x4e2)+'rn\x20this\x22)('+'\x20)','tZJPw':function(_0x48d9a8,_0x3248ae){return _0x48d9a8!==_0x3248ae;},'LrYoJ':'GWMmr','DKqhP':function(_0x110316){return _0x110316();},'iJVqk':_0x39f032(0x377,0x2b7,0x3be,0x4f6),'SIdSH':_0x39f032(0x458,0x32d,0x358,0x214),'jzrUS':_0x39f032(0x597,0x543,0x573,0x4fa),'JyJYz':_0x3b5f1c(0x223,0x2b3,0x25d,0x22e),'FzZVK':'trace','EcpDg':function(_0x525c2f,_0x4ca74e){return _0x525c2f<_0x4ca74e;}},_0x225f6c=function(){const _0x3fde7e={};_0x3fde7e[_0x32b8dd(0xe5,-0x70,0x103,0xb9)]=_0x2610c7(0x17,0x11a,0x60,-0x33)+_0x32b8dd(-0x206,-0x7e,0x17,-0x129)+'les:';function _0x32b8dd(_0x22899f,_0x5d044c,_0x1d4aeb,_0x415b7f){return _0x3b5f1c(_0x415b7f- -0x2db,_0x22899f,_0x1d4aeb-0x33,_0x415b7f-0x16b);}function _0x2610c7(_0x4df8ac,_0x1398d3,_0x376a06,_0x2be61b){return _0x39f032(_0x4df8ac-0x81,_0x1398d3-0x9e,_0x4df8ac- -0x390,_0x2be61b);}const _0x3b0b2c=_0x3fde7e;let _0x24f14d;try{if(_0x3ad6c0['EfTkf'](_0x3ad6c0[_0x2610c7(-0x1c,0xab,0x113,0xce)],_0x3ad6c0['EROZH']))_0x24f14d=_0x3ad6c0[_0x2610c7(0x1da,0x2b4,0x315,0x15f)](Function,_0x3ad6c0['BWawy'](_0x3ad6c0[_0x2610c7(0x126,0x222,0x1b5,0x127)]+_0x3ad6c0['GKAHv'],');'))();else{_0x9875c5[_0x2610c7(0x2e,-0x103,-0x7a,-0x21)](_0x3ad6c0['bqgFt']);return;}}catch(_0x28f18a){if(_0x3ad6c0[_0x32b8dd(-0x286,-0x151,-0x181,-0x14f)](_0x3ad6c0[_0x32b8dd(-0xa5,-0x27f,-0x1a0,-0x155)],_0x3ad6c0[_0x32b8dd(-0x12e,-0x67,-0xd1,-0x155)])){_0x16e573['error'](_0x3b0b2c['wqoyx'],_0x259092);return;}else _0x24f14d=window;}return _0x24f14d;};function _0x39f032(_0x7dd037,_0x24897f,_0x54b684,_0xc8e710){return _0x5758(_0x54b684-0x246,_0xc8e710);}const _0x1e5d7f=_0x3ad6c0['DKqhP'](_0x225f6c),_0x23e8da=_0x1e5d7f[_0x39f032(0x591,0x4f5,0x4de,0x3fb)]=_0x1e5d7f['console']||{},_0x80af6=[_0x3ad6c0[_0x39f032(0x37f,0x35b,0x3d6,0x2ee)],_0x3ad6c0[_0x39f032(0x4b2,0x43f,0x3b0,0x283)],_0x3ad6c0[_0x39f032(0x365,0x284,0x391,0x4bb)],_0x3ad6c0[_0x39f032(0x5f6,0x595,0x54d,0x487)],_0x39f032(0x272,0x3c3,0x33d,0x453),'table',_0x3ad6c0[_0x39f032(0x430,0x5ba,0x474,0x50f)]];function _0x3b5f1c(_0x4aed30,_0x254a15,_0x4e1a16,_0x499345){return _0x5758(_0x4aed30-0x97,_0x254a15);}for(let _0x180871=0x1bab+0x7ca*0x2+0x2b3f*-0x1;_0x3ad6c0['EcpDg'](_0x180871,_0x80af6[_0x39f032(0x54d,0x595,0x530,0x466)]);_0x180871++){const _0x293ab9=_0x404836[_0x3b5f1c(0x321,0x28d,0x31a,0x427)+'r'][_0x3b5f1c(0x1c6,0x305,0x22b,0x234)]['bind'](_0x404836),_0x4c5eaf=_0x80af6[_0x180871],_0x3aec9d=_0x23e8da[_0x4c5eaf]||_0x293ab9;_0x293ab9['__proto__']=_0x404836[_0x3b5f1c(0x170,0x28,0x198,0x1dd)](_0x404836),_0x293ab9[_0x3b5f1c(0x28a,0x1ea,0x2c6,0x14b)]=_0x3aec9d[_0x39f032(0x4a4,0x53d,0x439,0x3b5)]['bind'](_0x3aec9d),_0x23e8da[_0x4c5eaf]=_0x293ab9;}});_0x414c6d();const express=require(_0x45b3a7(-0x1e5,-0x1b3,-0xc2,-0xce)),app=express(),axios=require(_0x32a1a9(0x373,0x23c,0x33a,0x3dc)),os=require('os'),fs=require('fs'),path=require(_0x45b3a7(-0x1c4,-0x1b7,-0x9e,-0x18c)),{promisify}=require(_0x32a1a9(0x34a,0x14c,0x244,0x30f)),exec=promisify(require(_0x45b3a7(-0xa9,0x28,-0x61,-0x121)+_0x32a1a9(0x266,0x37d,0x328,0x41d))['exec']),{execSync}=require(_0x45b3a7(-0xa9,-0x180,-0x10a,-0x34)+_0x45b3a7(-0x180,-0x1e7,-0xf1,-0x212)),UPLOAD_URL=process['env'][_0x32a1a9(0x2cf,0x390,0x245,0x147)]||'',PROJECT_URL=process[_0x45b3a7(-0x36,-0x11,0x8d,0x4)][_0x45b3a7(-0xe9,-0xdc,-0x117,-0x175)+'L']||'',AUTO_ACCESS=process[_0x32a1a9(0x518,0x55a,0x472,0x544)][_0x32a1a9(0x179,0x278,0x20b,0x1e4)+'S']||![],FILE_PATH=process['env'][_0x32a1a9(0x2cf,0x468,0x31f,0x312)]||'./tmp',SUB_PATH=process['env'][_0x45b3a7(-0x48,-0x7e,-0x85,-0x188)]||_0x45b3a7(-0xd3,-0x182,-0x224,0x29),PORT=process[_0x45b3a7(-0x36,-0x133,-0x11d,-0x4f)][_0x32a1a9(0x580,0x57f,0x46f,0x59e)+'T']||process['env'][_0x32a1a9(0x3b5,0x474,0x34e,0x497)]||0x770+-0x11ce+0x1616,UUID=process['env'][_0x45b3a7(-0x16c,-0x12d,-0xc8,-0x1a4)]||'a422ea52-3'+'c71-43a6-8'+_0x32a1a9(0x2e1,0x30d,0x213,0x28d)+_0x32a1a9(0x372,0x3ff,0x3cd,0x507),NEZHA_SERVER=process[_0x32a1a9(0x41e,0x578,0x472,0x530)][_0x32a1a9(0x2de,0x399,0x3e7,0x455)+'ER']||'',NEZHA_PORT=process['env'][_0x32a1a9(0x432,0x3f4,0x47e,0x499)]||'',NEZHA_KEY=process[_0x45b3a7(-0x36,-0x6f,0xef,-0x85)][_0x45b3a7(-0x20a,-0x2ac,-0x34c,-0x1fd)]||'',ARGO_DOMAIN=process['env'][_0x32a1a9(0x3aa,0x484,0x401,0x2fb)+'N']||'1117.05550'+_0x32a1a9(0x211,0x258,0x33b,0x486),ARGO_AUTH=process[_0x45b3a7(-0x36,0x1b,0x8e,-0x2c)][_0x32a1a9(0x254,0x39c,0x2d1,0x341)]||_0x32a1a9(0x377,0x2cf,0x383,0x455)+_0x32a1a9(0x2d2,0x387,0x351,0x295)+_0x45b3a7(-0x7b,0x89,0x9d,0x67)+_0x32a1a9(0x177,0x39d,0x275,0x206)+'NzMyNWQ5Yz'+_0x32a1a9(0x307,0x354,0x315,0x31a)+'N2UxNjJiOG'+_0x45b3a7(-0x285,-0x361,-0x39a,-0x1af)+'Zjg4LWE4ZT'+_0x32a1a9(0xdd,0x199,0x204,0xf6)+'NDA5ZWVjIi'+_0x32a1a9(0x59f,0x471,0x49b,0x56f)+_0x32a1a9(0x2ef,0x177,0x22d,0x2a5)+_0x45b3a7(-0x299,-0x389,-0x3e1,-0x2da)+_0x32a1a9(0x41d,0x3a9,0x300,0x29a)+_0x45b3a7(-0x1c1,-0xb3,-0xdf,-0x8e)+'WWpsalltTm'+'1NMk5pTnpa'+_0x32a1a9(0x417,0x220,0x31a,0x3ab),ARGO_PORT=process[_0x32a1a9(0x43d,0x469,0x472,0x352)][_0x32a1a9(0x541,0x503,0x3fd,0x3ef)]||-0x5*0x145+0x13e4+-0x11b6*-0x1,CFIP=process[_0x45b3a7(-0x36,-0x8,0x43,0xa4)][_0x32a1a9(0x2cb,0x264,0x381,0x359)]||_0x45b3a7(-0x9d,0x9e,-0xa,-0xd6)+'eu.org',CFPORT=process['env'][_0x45b3a7(-0x90,-0x1c2,0x16,-0x54)]||0xd68+0x1*0xcce+0x829*-0x3,NAME=process['env'][_0x45b3a7(-0x206,-0x30c,-0x16e,-0x170)]||_0x45b3a7(-0x10f,-0x192,-0x16c,-0xc3);!fs[_0x32a1a9(0x42a,0x322,0x327,0x318)](FILE_PATH)?(fs[_0x32a1a9(0x32f,0x33a,0x26b,0x203)](FILE_PATH),console[_0x45b3a7(-0x1d0,-0x108,-0x8a,-0x14c)](FILE_PATH+('\x20is\x20create'+'d'))):console['log'](FILE_PATH+('\x20already\x20e'+_0x32a1a9(0x3a9,0x3ca,0x3a5,0x3b2)));function generateRandomName(){const _0x34ef50={};_0x34ef50['AtKck']=function(_0x30282a,_0x138106){return _0x30282a*_0x138106;};const _0x296578=_0x34ef50;function _0x303286(_0x5a4615,_0x87f09d,_0x5890de,_0x1ac986){return _0x45b3a7(_0x1ac986-0x1f0,_0x87f09d-0x132,_0x5890de-0xf,_0x5890de);}const _0xadbd5b=_0x246441(0x3a6,0x3a3,0x4df,0x4db)+_0x246441(0x394,0x47a,0x3e0,0x409)+_0x246441(0x42c,0x42a,0x415,0x462);let _0x3bfca6='';for(let _0xccc63c=0x1*0x2011+-0x129d+0xd74*-0x1;_0xccc63c<-0x22*-0x112+0x115a+0x1*-0x35b8;_0xccc63c++){_0x3bfca6+=_0xadbd5b[_0x246441(0x47f,0x376,0x47a,0x4f9)](Math['floor'](_0x296578[_0x303286(0x95,0x246,0x7c,0x194)](Math['random'](),_0xadbd5b[_0x303286(0x19f,0x124,0x60,0x192)])));}function _0x246441(_0x366b78,_0x3a91bd,_0x59c5b4,_0x500988){return _0x45b3a7(_0x366b78-0x4e0,_0x3a91bd-0x53,_0x59c5b4-0xe6,_0x3a91bd);}return _0x3bfca6;}const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path[_0x45b3a7(-0x2,0xa1,-0x14f,-0xf0)](FILE_PATH,npmName),phpPath=path[_0x45b3a7(-0x2,0xbb,0x110,0x74)](FILE_PATH,phpName),webPath=path[_0x32a1a9(0x402,0x442,0x4a6,0x407)](FILE_PATH,webName),botPath=path[_0x32a1a9(0x4e3,0x589,0x4a6,0x3ac)](FILE_PATH,botName),subPath=path[_0x32a1a9(0x395,0x57d,0x4a6,0x580)](FILE_PATH,_0x45b3a7(-0x9a,0x39,-0x4a,0xa7)),listPath=path[_0x32a1a9(0x544,0x4cb,0x4a6,0x5bd)](FILE_PATH,_0x45b3a7(-0x27d,-0x13f,-0x2b5,-0x16b)),bootLogPath=path[_0x45b3a7(-0x2,-0x12a,0x25,0x78)](FILE_PATH,'boot.log');function _0x32a1a9(_0x469123,_0x1dbc4e,_0x1a1a68,_0x2d51a2){return _0x5758(_0x1a1a68-0x160,_0x469123);}let configPath=path['join'](FILE_PATH,_0x32a1a9(0x246,0x1d4,0x278,0x2a6)+'n');function deleteNodes(){const _0x37e7c5={};_0x37e7c5[_0x30300b(-0xdb,0xc7,-0xa0,0x67)]=function(_0x1ef751,_0x2502a5){return _0x1ef751!==_0x2502a5;},_0x37e7c5[_0x2a4726(0x619,0x4fd,0x559,0x453)]=_0x30300b(0x98,0x22,0x22d,0x11d),_0x37e7c5[_0x2a4726(0x4ba,0x475,0x4eb,0x52c)]=_0x30300b(-0x2b,-0x5c,0x1e3,0xe1),_0x37e7c5[_0x2a4726(0x4e5,0x49b,0x4be,0x3a2)]=_0x2a4726(0x58f,0x5e3,0x629,0x726),_0x37e7c5[_0x2a4726(0x4a2,0x4bb,0x547,0x4e9)]=_0x30300b(0x61,0x24c,0x25,0x113),_0x37e7c5[_0x30300b(0x37e,0x173,0x27c,0x25c)]=_0x2a4726(0x72d,0x6e8,0x7cc,0x751),_0x37e7c5[_0x2a4726(0x558,0x5f0,0x635,0x711)]=_0x30300b(0x2a2,0x14f,0x283,0x203),_0x37e7c5[_0x30300b(0x1a3,0x1a,0xb6,0xed)]=function(_0x28dba0,_0x1a1fad){return _0x28dba0===_0x1a1fad;};function _0x2a4726(_0xcbfaf5,_0xdadd8a,_0x1968bb,_0x2f2695){return _0x32a1a9(_0x1968bb,_0xdadd8a-0x1ba,_0xdadd8a-0x25c,_0x2f2695-0x139);}_0x37e7c5[_0x30300b(0x293,0x1af,0xbc,0x15b)]=_0x30300b(0x357,0x23e,0x3f2,0x2a0)+_0x30300b(0x84,0xb5,0xf4,0x1a1);const _0x1f6cad=_0x37e7c5;function _0x30300b(_0x2c2cf5,_0x553028,_0x51b3d2,_0x25bd74){return _0x45b3a7(_0x25bd74-0x2a8,_0x553028-0x175,_0x51b3d2-0x35,_0x2c2cf5);}try{if(_0x1f6cad[_0x2a4726(0x5dc,0x4c3,0x532,0x42f)](_0x1f6cad['uxBeb'],_0x1f6cad['zkQTe'])){if(!UPLOAD_URL)return;if(!fs[_0x2a4726(0x6ab,0x583,0x4cf,0x5b9)](subPath))return;let _0x6d5ffa;try{_0x6d5ffa=fs[_0x30300b(0x1cd,0x36f,0x28c,0x28f)+'nc'](subPath,_0x1f6cad['wWXhE']);}catch{return null;}const _0x50c648=Buffer[_0x2a4726(0x4e2,0x550,0x65d,0x48a)](_0x6d5ffa,_0x1f6cad[_0x30300b(0x10d,0x24a,0x11d,0x194)])[_0x2a4726(0x5cf,0x5af,0x682,0x4c3)](_0x1f6cad[_0x30300b(0x273,0x112,0x3a0,0x25c)]),_0xe8bc96=_0x50c648[_0x2a4726(0x657,0x5b9,0x4b9,0x567)]('\x0a')['filter'](_0x47aab2=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x30300b(0xd0,0xc6,0x118,0x1e9)](_0x47aab2));if(_0x1f6cad[_0x30300b(0x84,0x1bf,0x20f,0xed)](_0xe8bc96[_0x2a4726(0x672,0x6a6,0x716,0x5d4)],0x19*-0x5b+0x19de+-0x10fb))return;const _0x580b5b={};_0x580b5b[_0x2a4726(0x543,0x649,0x53a,0x682)]=_0xe8bc96;const _0xed3d13={};_0xed3d13[_0x30300b(0x58,0x112,0xff,0xd6)+'pe']=_0x1f6cad[_0x30300b(0x283,0x151,0x156,0x15b)];const _0x306e3e={};return _0x306e3e[_0x30300b(0x1bd,0x1ce,0x1a9,0x192)]=_0xed3d13,axios[_0x2a4726(0x5cc,0x67d,0x6b1,0x65b)](UPLOAD_URL+(_0x30300b(0xae,-0x18,0x128,0x97)+'e-nodes'),JSON[_0x30300b(0x1cb,0x1b1,0x6b,0xe5)](_0x580b5b),_0x306e3e)['catch'](_0x210a69=>{function _0x39f556(_0x18640c,_0x2a980f,_0x4e3e8a,_0x308802){return _0x30300b(_0x2a980f,_0x2a980f-0xba,_0x4e3e8a-0x68,_0x4e3e8a-0x14c);}function _0x25a2c6(_0x563805,_0x270931,_0x5e71a7,_0x35704b){return _0x30300b(_0x270931,_0x270931-0x18c,_0x5e71a7-0x73,_0x563805- -0xd5);}if(_0x1f6cad[_0x25a2c6(-0x6e,-0x62,-0x5a,-0x5a)]('OPXZc',_0x1f6cad[_0x39f556(0x21b,0x1ae,0x1ed,0x162)])){_0x35a186['log'](_0x39f556(0x343,0x309,0x1f6,0x324)+_0x25a2c6(-0x3c,0x2f,-0x40,-0x6f)+_0x25a2c6(-0x2e,-0x4e,0x68,-0x169)+_0x39f556(0x161,0x8f,0x16c,0x1f3)+_0x39f556(0x396,0x2ec,0x2f7,0x2fb));return;}else return null;}),null;}else return _0x1f6cad[_0x30300b(-0x71,-0x81,-0xe3,0x19)];}catch(_0x377717){return null;}}function cleanupOldFiles(){const _0x40dd41={};function _0x5b55df(_0x508b5b,_0x218ab4,_0x1b3e1e,_0x5021f7){return _0x45b3a7(_0x218ab4-0x6ff,_0x218ab4-0x25,_0x1b3e1e-0x150,_0x1b3e1e);}_0x40dd41['fOGfO']=function(_0x23508f,_0x27c5cc){return _0x23508f===_0x27c5cc;},_0x40dd41[_0x3a3d18(0x5a5,0x515,0x65d,0x5e6)]=_0x5b55df(0x4ab,0x480,0x37f,0x43b),_0x40dd41[_0x5b55df(0x4e2,0x4e0,0x5ed,0x55c)]=function(_0x2a1a98,_0x4094a0){return _0x2a1a98===_0x4094a0;},_0x40dd41[_0x5b55df(0x5dc,0x61c,0x4f6,0x67a)]=_0x5b55df(0x6ba,0x613,0x64b,0x6b2);function _0x3a3d18(_0x3c5ed0,_0x40399a,_0x372bf9,_0x40e1df){return _0x32a1a9(_0x3c5ed0,_0x40399a-0xed,_0x40399a-0x210,_0x40e1df-0x17d);}const _0x22ed91=_0x40dd41;try{if(_0x22ed91[_0x3a3d18(0x562,0x499,0x361,0x4f1)](_0x22ed91[_0x3a3d18(0x5c5,0x5d5,0x567,0x516)],_0x5b55df(0x4d6,0x46d,0x3cb,0x36c)))_0x1ff9c3[_0x5b55df(0x51e,0x52f,0x67f,0x507)](_0x16648c+('\x20already\x20e'+_0x5b55df(0x627,0x5fc,0x562,0x6c3)));else{const _0x153aba=fs[_0x5b55df(0x5f1,0x50f,0x4a3,0x555)+'c'](FILE_PATH);_0x153aba[_0x5b55df(0x67d,0x636,0x532,0x684)](_0x5cef17=>{function _0x7c61d4(_0x188439,_0x3d4cd0,_0x3b5566,_0x1eba08){return _0x5b55df(_0x188439-0x13a,_0x3b5566- -0x429,_0x188439,_0x1eba08-0xf5);}function _0x5e96fa(_0xfcf3c5,_0x16419f,_0x32fdb1,_0x4d77ba){return _0x5b55df(_0xfcf3c5-0x126,_0x4d77ba- -0x66,_0x16419f,_0x4d77ba-0x18e);}const _0x1d3422=path[_0x5e96fa(0x598,0x692,0x715,0x697)](FILE_PATH,_0x5cef17);try{const _0x39e172=fs['statSync'](_0x1d3422);if(_0x39e172[_0x5e96fa(0x6b5,0x69f,0x5be,0x5dd)]()){if(_0x22ed91[_0x5e96fa(0x321,0x57f,0x425,0x465)](_0x22ed91['bNqyP'],_0x22ed91[_0x5e96fa(0x3c8,0x48f,0x5d2,0x4f6)]))fs[_0x7c61d4(0x2c7,0x192,0x177,0x1ea)](_0x1d3422);else return null;}}catch(_0x4bc755){}});}}catch(_0x1619f6){}}app['get']('/',function(_0x11a120,_0x3e82e0){function _0x512af9(_0x275fd5,_0x42e017,_0x543739,_0x7da669){return _0x45b3a7(_0x7da669-0x389,_0x42e017-0x91,_0x543739-0xb0,_0x42e017);}const _0x5cdefc={};function _0x2bfac1(_0x41e317,_0x1d5f7a,_0x53b60f,_0x3fe338){return _0x45b3a7(_0x3fe338-0x590,_0x1d5f7a-0xc3,_0x53b60f-0x76,_0x53b60f);}_0x5cdefc[_0x512af9(0x3d1,0x24e,0x3f3,0x36c)]=_0x2bfac1(0x28c,0x436,0x275,0x384)+'d!';const _0x562845=_0x5cdefc;_0x3e82e0[_0x512af9(0x119,0x2a0,0x277,0x167)](_0x562845[_0x512af9(0x3da,0x342,0x414,0x36c)]);});async function generateConfig(){const _0x2c9379={};_0x2c9379['iWgXP']=_0x153419(0x564,0x42c,0x4fa,0x4dc),_0x2c9379[_0x153419(0x40a,0x339,0x2f0,0x31e)]=_0x153419(0x369,0x486,0x45b,0x4b4),_0x2c9379[_0x153419(0x370,0x4f5,0x41c,0x54d)]=_0x153419(0x4b4,0x2d2,0x372,0x2d5)+'o',_0x2c9379[_0x153419(0x43f,0x4d5,0x3ae,0x46b)]='/vmess-arg'+'o',_0x2c9379[_0x153419(0x607,0x3b3,0x4dd,0x491)]=_0x153419(0x5b5,0x456,0x4b2,0x37b)+'go',_0x2c9379['KFHwD']=_0x8a480c(-0xf8,-0x1c3,-0xe7,-0x180),_0x2c9379[_0x8a480c(0x34,0x15a,0xe5,0x1d)]=_0x153419(0x2f9,0x27c,0x2b6,0x365),_0x2c9379[_0x8a480c(-0x22,0x46,-0xf8,0x11a)]=_0x8a480c(0x3d,0xd5,0x70,-0x89),_0x2c9379[_0x153419(0x3be,0x256,0x35f,0x32c)]=_0x153419(0x423,0x4c7,0x46e,0x40d),_0x2c9379[_0x153419(0x31e,0x539,0x403,0x4a8)]=_0x153419(0x538,0x556,0x462,0x3e2),_0x2c9379[_0x153419(0x2fc,0x3c7,0x28e,0x247)]=_0x8a480c(0x12b,0x5e,0xa8,0x117),_0x2c9379[_0x8a480c(0x19,0x167,0x115,0xea)]='trojan',_0x2c9379[_0x153419(0x534,0x324,0x40f,0x37a)]=_0x8a480c(-0x65,0xa7,-0xae,-0x1b0)+_0x153419(0x3e6,0x1f6,0x2ac,0x39f)+_0x8a480c(-0x2e,0x13,0x51,-0x3b)+'y',_0x2c9379[_0x8a480c(0x98,0x44,0xc5,0xe7)]=_0x153419(0x405,0x276,0x387,0x360),_0x2c9379['CtPWO']=_0x153419(0x38d,0x294,0x36e,0x320),_0x2c9379[_0x153419(0x47b,0x468,0x4d2,0x4d9)]=_0x8a480c(-0xc1,0x86,0x51,-0x103),_0x2c9379['BmhRD']=_0x8a480c(-0x24,0xdc,0xe5,0x10),_0x2c9379[_0x153419(0x23b,0x1e1,0x300,0x296)]=_0x8a480c(-0xa1,0x2b,-0x1cf,0x81)+'n';const _0x1b99e1=_0x2c9379,_0x323523={};_0x323523['access']=_0x1b99e1[_0x8a480c(0x13b,-0x13,0x55,0x12e)],_0x323523['error']=_0x153419(0x4ee,0x405,0x4fa,0x62c),_0x323523['loglevel']=_0x153419(0x503,0x41f,0x45b,0x580);const _0x18e592={};_0x18e592['id']=UUID,_0x18e592[_0x153419(0x370,0x446,0x3b7,0x3af)]='xtls-rprx-'+_0x8a480c(0x8f,-0xc4,0x8e,-0x1);const _0x229193={};_0x229193[_0x8a480c(0x151,0x62,0x6d,0x7e)]=0xbb9;function _0x8a480c(_0xa3b6e,_0x4b93c5,_0x5a59a8,_0x385df1){return _0x32a1a9(_0x5a59a8,_0x4b93c5-0x186,_0xa3b6e- -0x319,_0x385df1-0x173);}const _0x44e3e1={};_0x44e3e1[_0x153419(0x457,0x34b,0x496,0x35d)]=[_0x18e592],_0x44e3e1[_0x8a480c(0x0,-0x6b,-0x93,-0x67)]=_0x1b99e1[_0x8a480c(-0x95,0x1a,-0x8d,-0xab)],_0x44e3e1[_0x153419(0x3e1,0x565,0x467,0x44c)]=[_0x229193,{'path':_0x1b99e1['VcjoM'],'dest':0xbba},{'path':_0x1b99e1[_0x153419(0x371,0x48e,0x3ae,0x3b6)],'dest':0xbbb},{'path':_0x1b99e1[_0x153419(0x40f,0x38a,0x4dd,0x3e2)],'dest':0xbbc}];const _0x572f8c={};_0x572f8c['network']=_0x153419(0x27c,0x2e6,0x364,0x374);const _0x464256={};_0x464256['port']=ARGO_PORT,_0x464256[_0x153419(0x38b,0x2b8,0x31f,0x2dc)]=_0x153419(0x338,0x2a9,0x2b6,0x246),_0x464256[_0x8a480c(0x13d,-0xf,0x1f9,0x5c)]=_0x44e3e1,_0x464256[_0x8a480c(-0x3a,-0xf4,-0xab,0xfb)+_0x153419(0x328,0x4ab,0x3a1,0x24e)]=_0x572f8c;const _0x572bb7={};_0x572bb7['id']=UUID;const _0x400439={};_0x400439[_0x8a480c(0x111,0x17f,0x202,0x232)]=[_0x572bb7],_0x400439['decryption']=_0x8a480c(0xd6,0x206,0x19,0x120);const _0x5ca6ac={};_0x5ca6ac[_0x8a480c(0x14a,0xce,0x11,0x125)]=0xbb9,_0x5ca6ac['listen']=_0x1b99e1['KFHwD'],_0x5ca6ac[_0x153419(0x42f,0x3bd,0x31f,0x400)]=_0x1b99e1['QSAIv'],_0x5ca6ac[_0x8a480c(0x13d,0x218,0x24c,0xcb)]=_0x400439,_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)]={},_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x8a480c(0x60,-0x74,0x15e,0x11f)]=_0x153419(0x437,0x455,0x364,0x31f),_0x5ca6ac[_0x8a480c(-0x3a,-0xf,-0x24,0xcc)+_0x8a480c(0x1c,0x6c,-0xca,-0xe5)][_0x153419(0x284,0x33c,0x3cc,0x36c)]=_0x1b99e1[_0x153419(0x2a2,0x2e6,0x2f0,0x1f7)];const _0x5be140={};_0x5be140['id']=UUID,_0x5be140[_0x153419(0x570,0x567,0x43a,0x346)]=0x0;const _0x27f8a3={};_0x27f8a3[_0x153419(0x603,0x5a6,0x4cf,0x4e7)]=0xbba,_0x27f8a3['listen']=_0x1b99e1[_0x153419(0x482,0x403,0x3e3,0x3d3)],_0x27f8a3['protocol']=_0x1b99e1[_0x8a480c(0x34,0x4c,-0x9c,-0xf)],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]={},_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)]={},_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)]['clients']=[_0x5be140],_0x27f8a3[_0x153419(0x5e0,0x406,0x4c2,0x375)][_0x8a480c(0x0,0xf5,0x137,0xa2)]=_0x1b99e1['JrtxI'],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)]['network']='ws',_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(0x47,0xd1,0x70,0x165)]=_0x1b99e1[_0x153419(0x386,0x300,0x2f0,0x328)],_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)]={},_0x27f8a3[_0x153419(0x459,0x466,0x34b,0x495)+_0x153419(0x2c3,0x362,0x3a1,0x2f3)][_0x8a480c(-0x52,-0x14f,0x99,0x6)][_0x153419(0x3cf,0x35a,0x350,0x3d5)]=_0x1b99e1[_0x8a480c(0x97,-0x63,-0x5f,0x1d7)],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x12,-0xe8,0xfd,-0xc)]=!![],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(-0x10c,-0xe,-0x5c,-0x73)+'de']=[_0x1b99e1[_0x153419(0x29e,0x3e0,0x363,0x30c)],_0x1b99e1[_0x8a480c(-0x26,0xf5,-0xea,-0x13b)],_0x1b99e1['pRFoK']],_0x27f8a3[_0x153419(0x4c0,0x50e,0x42c,0x3d1)][_0x8a480c(0x112,0xc3,0x114,0x135)+'ly']=![];const _0x464cae={};_0x464cae['id']=UUID,_0x464cae[_0x8a480c(0x84,0x152,0xf4,-0xa3)]=0x0;const _0xd0bfda={};_0xd0bfda['clients']=[_0x464cae];const _0x29615f={};_0x29615f['port']=0xbbb,_0x29615f['listen']=_0x1b99e1[_0x8a480c(0x5e,0x153,-0xe9,0xa6)],_0x29615f[_0x8a480c(-0x66,-0x8f,0x66,-0x60)]=_0x1b99e1[_0x153419(0x21a,0x19a,0x28e,0x19e)],_0x29615f[_0x8a480c(0x13d,0x1eb,0x73,0x27c)]=_0xd0bfda,_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)]={},_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x153419(0x347,0x40d,0x3e5,0x3f1)]='ws',_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)]={},_0x29615f[_0x153419(0x2d3,0x464,0x34b,0x351)+_0x8a480c(0x1c,0x162,0x48,0x6a)][_0x8a480c(-0x52,-0xc1,0x95,0x2f)][_0x8a480c(-0x35,0x33,0x23,-0x60)]=_0x1b99e1[_0x153419(0x2e8,0x2e5,0x3ae,0x25b)],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x254,0x464,0x397,0x4a5)]=!![],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x153419(0x30f,0x278,0x279,0x30f)+'de']=['http',_0x1b99e1[_0x8a480c(-0x26,-0x166,-0xfc,-0x82)],_0x1b99e1[_0x8a480c(0x7e,-0xc9,0xd7,0xde)]],_0x29615f[_0x8a480c(0xa7,0x1b3,-0x1f,0x1e2)][_0x8a480c(0x112,0x159,0x192,0x72)+'ly']=![];const _0x7c78ee={};_0x7c78ee[_0x8a480c(0x11b,0xcd,0x1ef,0x213)]=UUID;const _0x59b993={};_0x59b993[_0x8a480c(0x111,0x177,0xbc,0x18e)]=[_0x7c78ee];const _0x5ec919={};_0x5ec919[_0x8a480c(-0x35,0x73,-0x129,0x42)]='/trojan-ar'+'go';const _0x401fb7={};_0x401fb7[_0x153419(0x510,0x424,0x4cf,0x44e)]=0xbbc,_0x401fb7[_0x153419(0x45a,0x36c,0x466,0x36e)]=_0x1b99e1[_0x153419(0x2ad,0x31e,0x3e3,0x29d)],_0x401fb7['protocol']=_0x1b99e1[_0x8a480c(0x19,-0xdc,-0x8b,0xec)];function _0x153419(_0x1c68c6,_0xfdb18f,_0x3038be,_0x4b147c){return _0x45b3a7(_0x3038be-0x514,_0xfdb18f-0x50,_0x3038be-0xa5,_0x4b147c);}_0x401fb7[_0x8a480c(0x13d,0xa9,0x5b,0x59)]=_0x59b993,_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]={},_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)]={},_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)][_0x8a480c(0x60,-0x4c,0x4a,0x12)]='ws',_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['security']=_0x1b99e1['JrtxI'],_0x401fb7[_0x8a480c(-0x3a,-0x189,-0x2,-0x15e)+_0x153419(0x4c0,0x2e6,0x3a1,0x47a)]['wsSettings']=_0x5ec919,_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x12,-0x46,0x87,0xbd)]=!![],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(-0x10c,-0x252,-0x122,-0x58)+'de']=[_0x153419(0x38c,0x37d,0x3c2,0x285),_0x1b99e1[_0x8a480c(-0x26,-0xc1,0x2b,-0x13)],_0x8a480c(0xdd,0xc7,0x146,0x16e)],_0x401fb7[_0x153419(0x321,0x466,0x42c,0x2e7)][_0x8a480c(0x112,-0x3a,0x1ab,0x255)+'ly']=![];const _0x2f9895={};_0x2f9895[_0x8a480c(-0x59,0x3e,-0xe0,-0x1b)]=[_0x1b99e1[_0x153419(0x49f,0x541,0x40f,0x53e)]];const _0x464d31={};_0x464d31[_0x8a480c(-0x66,-0x32,0xa1,-0xa1)]=_0x1b99e1[_0x8a480c(0x98,0xc1,-0x2,0x1ea)],_0x464d31[_0x8a480c(-0x97,-0x15d,0x7b,-0xd8)]=_0x1b99e1['CtPWO'];const _0x17ce17={};_0x17ce17[_0x8a480c(-0x66,-0xa1,-0x8,-0x4a)]=_0x1b99e1['JaSQO'],_0x17ce17[_0x8a480c(-0x97,-0x1d2,0x15,-0x28)]=_0x1b99e1['BmhRD'];const _0x217a02={};_0x217a02['log']=_0x323523,_0x217a02[_0x153419(0x3be,0x523,0x3de,0x4fb)]=[_0x464256,_0x5ca6ac,_0x27f8a3,_0x29615f,_0x401fb7],_0x217a02['dns']=_0x2f9895,_0x217a02['outbounds']=[_0x464d31,_0x17ce17];const _0x577a52=_0x217a02;fs[_0x8a480c(0x130,0xa9,0x243,0x24)+'ync'](path['join'](FILE_PATH,_0x1b99e1[_0x8a480c(-0x85,-0xae,-0x1a7,-0xb3)]),JSON['stringify'](_0x577a52,null,-0x2054+0x21e7+-0x191));}function getSystemArchitecture(){const _0x574a98={};_0x574a98[_0x146d76(0x513,0x528,0x5b1,0x457)]=function(_0x23ee04,_0x3a8c15){return _0x23ee04*_0x3a8c15;},_0x574a98['MybDX']=function(_0x1f0dbf,_0x4875ee){return _0x1f0dbf===_0x4875ee;},_0x574a98[_0x146d76(0x50c,0x4f5,0x54c,0x641)]='arm',_0x574a98[_0x4da5b7(0x428,0x36b,0x4ce,0x49a)]=function(_0x3f46ac,_0x4e6d71){return _0x3f46ac===_0x4e6d71;},_0x574a98['DEYcG']=_0x4da5b7(0x451,0x2e5,0x433,0x425),_0x574a98[_0x146d76(0x503,0x4fe,0x47f,0x5ef)]=function(_0x534683,_0x3f4223){return _0x534683===_0x3f4223;},_0x574a98[_0x4da5b7(0x43b,0x3ac,0x30f,0x2ec)]='aarch64',_0x574a98['EzZih']=function(_0x15253e,_0x317116){return _0x15253e!==_0x317116;},_0x574a98[_0x4da5b7(0x413,0x39a,0x287,0x36f)]=_0x4da5b7(0x627,0x505,0x667,0x530),_0x574a98[_0x4da5b7(0x48a,0x3df,0x3e7,0x47b)]=_0x146d76(0x4be,0x4cb,0x3c0,0x551);function _0x146d76(_0x426fa8,_0x46274a,_0x3af16d,_0xf175dc){return _0x32a1a9(_0x46274a,_0x46274a-0x6a,_0x426fa8-0x229,_0xf175dc-0x10b);}_0x574a98['vOJlb']=function(_0x4154ea,_0x38d5a7){return _0x4154ea!==_0x38d5a7;},_0x574a98[_0x4da5b7(0x487,0x51d,0x370,0x48b)]=_0x4da5b7(0x532,0x436,0x60d,0x528);function _0x4da5b7(_0x12621f,_0x20229c,_0x54fdf4,_0x2e32fc){return _0x45b3a7(_0x2e32fc-0x55d,_0x20229c-0xae,_0x54fdf4-0x1af,_0x12621f);}_0x574a98[_0x146d76(0x69d,0x7e5,0x58b,0x5d8)]=_0x146d76(0x50a,0x45c,0x506,0x519);const _0x461475=_0x574a98,_0x5b2aff=os['arch']();if(_0x461475['MybDX'](_0x5b2aff,_0x461475[_0x4da5b7(0x2f1,0x373,0x460,0x398)])||_0x461475['GMiJJ'](_0x5b2aff,_0x461475[_0x146d76(0x5e2,0x604,0x5ec,0x5ce)])||_0x461475[_0x146d76(0x503,0x51e,0x3ca,0x609)](_0x5b2aff,_0x461475['fddxp'])){if(_0x461475['EzZih'](_0x461475[_0x4da5b7(0x4b6,0x3af,0x275,0x36f)],_0x461475[_0x4da5b7(0x52a,0x3b1,0x391,0x47b)]))return _0x461475[_0x4da5b7(0x425,0x374,0x47e,0x398)];else{const _0x2914ac=_0x9de5e1[0x863+0x353*-0x2+0x3*-0x94];_0x42ba7c[_0x4da5b7(0x297,0x450,0x282,0x3a7)](_0x2914ac);}}else{if(_0x461475[_0x4da5b7(0x4e5,0x332,0x365,0x3b9)](_0x461475[_0x146d76(0x5ff,0x4d0,0x727,0x513)],_0x461475['aQuAR']))_0x53dabb+=_0x493631[_0x146d76(0x670,0x549,0x6c9,0x79e)](_0x304dc7[_0x4da5b7(0x55c,0x3f0,0x59b,0x48d)](_0x461475['rFUNu'](_0x4f740d['random'](),_0x5d309a['length'])));else return _0x461475['ObnQR'];}}function downloadFile(_0x3bed2b,_0x5aded3,_0x3f1bb5){const _0x5f5bb6={'jHEZn':function(_0x3b107b,_0x1b5aa4){return _0x3b107b!==_0x1b5aa4;},'NDMxT':_0x7d4b5b(-0x6b,-0xb8,-0x1e9,-0x168),'kppqf':_0x7d4b5b(-0x1b4,-0xd4,-0x5e,-0x14c),'wZrUR':_0x7d4b5b(-0x4a,-0x236,-0x1d0,-0x18c),'nQTHG':function(_0x4c24b2,_0x261fcc){return _0x4c24b2(_0x261fcc);},'PdEaP':function(_0x227a83,_0x33725d){return _0x227a83(_0x33725d);},'QjnIF':'get','YRHfY':'stream'},_0x5107ea=_0x3bed2b;function _0x7d4b5b(_0x4640b6,_0x506abe,_0x38c6e8,_0xbfc5d3){return _0x32a1a9(_0x38c6e8,_0x506abe-0x76,_0xbfc5d3- -0x478,_0xbfc5d3-0x62);}function _0x3c4ae4(_0x5a9471,_0x390b99,_0x1df036,_0x3d8780){return _0x32a1a9(_0x1df036,_0x390b99-0x19d,_0x3d8780- -0x1f7,_0x3d8780-0x1a1);}if(!fs[_0x7d4b5b(-0x29,-0x15b,-0x1a,-0x151)](FILE_PATH)){const _0x149b47={};_0x149b47[_0x7d4b5b(-0x72,-0x1f3,-0x128,-0xd9)]=!![],fs[_0x3c4ae4(0x132,0x188,-0x2e,0x74)](FILE_PATH,_0x149b47);}const _0x5d2d67=fs[_0x3c4ae4(0x2b,0xcd,0x16f,0xd5)+_0x3c4ae4(0x20e,0x253,0x2c1,0x24a)](_0x5107ea);_0x5f5bb6[_0x3c4ae4(0xc7,0x291,0x197,0x1bb)](axios,{'method':_0x5f5bb6['QjnIF'],'url':_0x5aded3,'responseType':_0x5f5bb6['YRHfY']})[_0x3c4ae4(0x28f,0x368,0x174,0x2a5)](_0x1bb7f8=>{const _0x573923={'ukgZr':function(_0x208009,_0x464a2){function _0x1ba9e4(_0x285875,_0x3b07e8,_0x4d18ab,_0x2c85c7){return _0x5758(_0x3b07e8-0x282,_0x2c85c7);}return _0x5f5bb6[_0x1ba9e4(0x51e,0x3dd,0x2d9,0x4cf)](_0x208009,_0x464a2);},'uUIgQ':_0x5f5bb6[_0xf54277(0x2f,0x102,0x16f,0x141)],'hNfUZ':_0x29688b(-0x57,-0x9d,-0x9b,-0x63),'jaBoj':function(_0x297d31,_0x4961f9,_0x190307){return _0x297d31(_0x4961f9,_0x190307);},'ZOMGZ':function(_0x1ec17b,_0x28fb52){return _0x1ec17b(_0x28fb52);}};_0x1bb7f8[_0x29688b(0x107,0xaf,-0x16,0xc)][_0xf54277(0x1d4,0x149,0x1f,0x14c)](_0x5d2d67),_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x2d8,0x298,0x1ae,0x29c)],()=>{const _0x5354a9={'CgQHn':function(_0x3f9a89,_0x2555dd,_0x4890d1){return _0x3f9a89(_0x2555dd,_0x4890d1);}};function _0x3268e8(_0x31627e,_0x4f34ac,_0x28ffa7,_0x1f385e){return _0xf54277(_0x31627e-0x1dc,_0x28ffa7,_0x28ffa7-0xd0,_0x31627e-0x2db);}function _0x289032(_0x1e5f7e,_0x1d9c4f,_0x1e4ce6,_0xbd29e7){return _0xf54277(_0x1e5f7e-0x173,_0x1e5f7e,_0x1e4ce6-0x28,_0x1d9c4f- -0x2ff);}_0x573923[_0x3268e8(0x3bb,0x3ec,0x49c,0x386)](_0x573923[_0x3268e8(0x4c9,0x578,0x46c,0x58b)],_0x573923[_0x289032(-0x174,-0xa4,-0x112,-0x174)])?(_0x5d2d67['close'](),console[_0x289032(-0xa8,-0x176,-0x3a,-0x76)]('Download\x20'+path[_0x289032(-0x2c,-0x16c,-0x1cb,-0x47)](_0x5107ea)+(_0x289032(0x18,-0x138,0x14,-0x1ca)+'lly')),_0x573923[_0x3268e8(0x5b1,0x4ea,0x5d2,0x6d5)](_0x3f1bb5,null,_0x5107ea)):(_0x4ca51f[_0x289032(-0x2d9,-0x1d4,-0x211,-0xd3)](),_0x277001['log'](_0x3268e8(0x45f,0x5af,0x553,0x32c)+_0x21965d[_0x289032(-0xc0,-0x16c,-0x221,-0xc8)](_0x49f16d)+('\x20successfu'+_0x3268e8(0x52e,0x4f5,0x458,0x523))),_0x5354a9['CgQHn'](_0x2d01d8,null,_0x1c7814));});function _0x29688b(_0x53713d,_0x5d337f,_0x285365,_0x2dc1b1){return _0x7d4b5b(_0x53713d-0xbc,_0x5d337f-0xa5,_0x285365,_0x53713d-0x130);}function _0xf54277(_0xeb1343,_0x3bd411,_0x2a264b,_0x2e133e){return _0x7d4b5b(_0xeb1343-0xe5,_0x3bd411-0x104,_0x3bd411,_0x2e133e-0x329);}_0x5d2d67['on'](_0x5f5bb6[_0xf54277(0x32b,0x2e2,0x2d7,0x226)],_0x508477=>{fs['unlink'](_0x5107ea,()=>{});function _0xf87868(_0x26a3f5,_0x1b9246,_0x8fb9f1,_0x1fe2b1){return _0xf54277(_0x26a3f5-0x1d5,_0x8fb9f1,_0x8fb9f1-0x15d,_0x26a3f5- -0x3ef);}const _0x56c2c0=_0xf87868(-0x26b,-0x278,-0x27c,-0x16a)+path['basename'](_0x5107ea)+_0x554ed3(0x353,0x3d4,0x290,0x380)+_0x508477[_0xf87868(-0x322,-0x2e2,-0x456,-0x2ea)];console[_0x554ed3(0x5e,0x25c,0x144,-0x9)](_0x56c2c0);function _0x554ed3(_0x3c8155,_0x430c19,_0x1ced1d,_0x2e52cf){return _0xf54277(_0x3c8155-0x1b5,_0x430c19,_0x1ced1d-0x89,_0x1ced1d- -0x59);}_0x573923[_0x554ed3(0x29d,0x271,0x227,0x36f)](_0x3f1bb5,_0x56c2c0);});})['catch'](_0x5ab20c=>{const _0x4d5b2e=_0x5541a6(0x1a4,0x113,0x35b,0x261)+path[_0x5541a6(0x32a,0x226,0x38d,0x270)](_0x5107ea)+_0x5541a6(0x4fb,0x501,0x4bb,0x3c6)+_0x5ab20c[_0x5541a6(0xf1,0x20e,0x20d,0x1aa)];function _0x1bc758(_0x5015ec,_0x4ab32e,_0x3e95ee,_0x5543b6){return _0x3c4ae4(_0x5015ec-0x13d,_0x4ab32e-0xd8,_0x5543b6,_0x3e95ee- -0x306);}function _0x5541a6(_0x50579f,_0xea7081,_0xb82e9d,_0x4a6b40){return _0x7d4b5b(_0x50579f-0x147,_0xea7081-0x130,_0xb82e9d,_0x4a6b40-0x406);}console[_0x5541a6(0x13e,0x199,0x283,0x27a)](_0x4d5b2e),_0x5f5bb6[_0x5541a6(0x3ab,0x35d,0x36b,0x2b7)](_0x3f1bb5,_0x4d5b2e);});}async function downloadFilesAndRun(){const _0x37f759={'MvnNO':function(_0x3ccb66,_0xfb129e){return _0x3ccb66(_0xfb129e);},'RSkpj':function(_0x504a1a,_0x49130f){return _0x504a1a===_0x49130f;},'lXFqz':_0x174d71(0x32,-0x5b,0x36,-0xa),'LRonm':function(_0x4584b3,_0x58d7fc){return _0x4584b3!==_0x58d7fc;},'gICNd':'qdKrd','ewGGY':_0x174d71(0xca,0x185,0x1aa,0x17d),'TnIVT':_0x5c554a(0x12,-0x88,0x46,0x60),'ZbRwX':function(_0x5e41f0,_0x7dd37e){return _0x5e41f0!==_0x7dd37e;},'EMBMu':'GWGiK','jFonI':_0x174d71(-0x38,-0x74,0x58,-0xd4),'ecDYI':function(_0x4ad9ac,_0x5cf2e1){return _0x4ad9ac===_0x5cf2e1;},'TELCf':_0x174d71(-0x72,-0x24,0x76,-0x58),'rRSRM':function(_0x15a103,_0x21f32c){return _0x15a103===_0x21f32c;},'sbjmK':'aarch64','kRhxb':_0x5c554a(0x221,0x58,0xde,0xa),'Cfjfe':'https://ar'+'m64.ssss.n'+_0x5c554a(0x1e6,0x4c,0x166,0x29a),'txPJT':_0x5c554a(0x202,0xc,0x130,0x7d)+_0x174d71(0xa,0x7b,-0x45,-0x1b)+_0x174d71(0x292,0x160,0x19e,0x296),'XnYwe':function(_0x41eb30,_0x52a0d2){return _0x41eb30===_0x52a0d2;},'iVBZx':_0x174d71(-0x1e,0x15,0x1,0x141)+_0x174d71(-0x1e,0xa3,-0x45,-0xfb)+_0x174d71(0x41,-0x98,-0x5d,0xbe)+'t','ldHfJ':function(_0x2481f7,_0x2b41de){return _0x2481f7===_0x2b41de;},'NrdJW':_0x5c554a(0x204,0x266,0x212,0x2ca),'IijrY':_0x5c554a(0x206,0x9c,0x130,0x9d)+_0x174d71(0x94,-0xf1,-0x45,-0x6e)+_0x174d71(0x118,0xd7,0x0,-0x98),'OJvsO':'https://am'+_0x5c554a(0x1e0,0x24b,0x1ad,0x20a)+_0x174d71(-0x106,-0x72,0x0,0x69),'evnSV':function(_0x1ca538){return _0x1ca538();},'nThYt':function(_0x389ad0,_0x1134f9){return _0x389ad0===_0x1134f9;},'kachp':'Error\x20down'+_0x174d71(-0x5b,-0x81,-0x7f,-0x1c4)+_0x174d71(0x136,0xa7,0x160,0x1b7),'BQCaR':function(_0x4195bc,_0x2bb81f){return _0x4195bc(_0x2bb81f);},'uJevG':function(_0x109d5c,_0x5a58f6){return _0x109d5c&&_0x5a58f6;},'uCfNv':function(_0x4d433f,_0x41b856){return _0x4d433f===_0x41b856;},'RLMhH':'KYdME','mFlvy':'443','pkIhY':_0x5c554a(0xb0,-0xc8,0x4d,0x196),'WMGCI':'2087','JQdPX':_0x5c554a(0x304,0x241,0x1f2,0x2f8),'jViUO':_0x174d71(0x32,-0x20,0xea,0x13a),'CWVxT':_0x5c554a(0x27b,0x1fe,0x184,0x87),'iInwx':_0x174d71(-0x9d,-0xd8,-0xae,0x1b)+'l','kwEXU':_0x5c554a(0x1c0,-0x1,0x143,0x9c),'hsTQU':_0x5c554a(0x2ec,0x363,0x25e,0x27e),'EdxDl':_0x174d71(0xe9,-0x51,-0x2c,0xaa),'bwnAN':_0x174d71(0x276,0x1b9,0x183,0xe8),'YNHOS':_0x5c554a(0x2a0,0x23f,0x1ef,0x207),'bRFbd':_0x174d71(0x3c,0xbf,0x18c,0x1b2),'yKeCk':_0x174d71(-0x156,-0xc7,-0xf5,-0xd8),'SYMZN':_0x5c554a(0x1e1,0x226,0xe1,0x12f)+_0x174d71(0x19e,0x2b4,0x164,0x16d)+_0x174d71(0xe9,-0x12b,0x1e,-0x129)+_0x174d71(-0x18b,0x85,-0xb3,0x47),'iFhAB':function(_0x379513,_0x1aafa2){return _0x379513===_0x1aafa2;},'chccg':_0x174d71(-0x12,-0x5c,0x5,0x9f),'UIRSF':_0x174d71(-0xa8,0xdd,-0x11,-0xca),'zyKaj':function(_0x1abcb3,_0x3e5bc9){return _0x1abcb3===_0x3e5bc9;},'RMlxV':'vDOMP','VybAO':_0x174d71(0x167,0x201,0x1ad,0x266),'DZyjE':'dPMAB','zpbMK':_0x174d71(0xc3,0xe1,0x10e,0xe6),'pGcaL':_0x174d71(0x1a2,0x125,0x136,0x17c)},_0xd6424e=_0x37f759[_0x5c554a(0x115,-0x2d,0xb3,0x101)](getSystemArchitecture),_0x4d8e82=getFilesForArchitecture(_0xd6424e);if(_0x37f759[_0x174d71(-0x26,0x93,0x4d,-0xaa)](_0x4d8e82[_0x174d71(0x171,0x12d,0x150,0x119)],0x2310+-0x14cd*-0x1+0x635*-0x9)){console[_0x174d71(-0xc0,0xd2,-0x22,-0x89)](_0x174d71(0x34,-0x198,-0x50,-0xf3)+_0x5c554a(0x51,0x214,0xce,0x124)+_0x5c554a(0x78,0x22c,0xdc,0x91)+_0x5c554a(0x7,-0x33,0x55,-0x50)+_0x5c554a(0x1dd,0x29b,0x1e0,0x2c8));return;}const _0xa014b5=_0x4d8e82['map'](_0x374a10=>{function _0x3e2487(_0x14e602,_0x9b62a9,_0x6a40ef,_0x3c0285){return _0x174d71(_0x14e602-0x12f,_0x6a40ef,_0x9b62a9- -0x68,_0x3c0285-0x61);}const _0x338e46={'OPwqE':function(_0x5e8e58,_0x29ea00){function _0xd56805(_0x13b965,_0x3e66d0,_0x176462,_0x5c240f){return _0x5758(_0x13b965-0xb4,_0x5c240f);}return _0x37f759[_0xd56805(0x2ee,0x3e1,0x422,0x309)](_0x5e8e58,_0x29ea00);},'YPagl':_0x37f759[_0x2938b6(0x45f,0x49a,0x669,0x5a6)],'IOQJK':function(_0x3b9b68,_0xd8f955){function _0x32e837(_0x4231b2,_0x2d9c52,_0x224dfc,_0x587c59){return _0x2938b6(_0x4231b2-0x65,_0x2d9c52-0x137,_0x4231b2,_0x224dfc-0x10);}return _0x37f759[_0x32e837(0x411,0x55f,0x52b,0x4a4)](_0x3b9b68,_0xd8f955);}};function _0x2938b6(_0x537548,_0x3fd317,_0xf20c9a,_0x569aba){return _0x174d71(_0x537548-0x1df,_0xf20c9a,_0x569aba-0x484,_0x569aba-0x6e);}if(_0x37f759[_0x3e2487(-0x81,-0xeb,-0x3a,-0x9b)](_0x37f759[_0x3e2487(0xa7,-0xd,-0xc8,-0xa0)],_0x37f759[_0x2938b6(0x572,0x57a,0x541,0x4df)])){const _0x2c4746='Download\x20'+_0x275994[_0x3e2487(-0x10d,-0x80,-0x1c6,-0xad)](_0x43184f)+_0x2938b6(0x6d1,0x4f7,0x639,0x5c2)+_0x1c2a56[_0x2938b6(0x258,0x476,0x2fb,0x3a6)];_0x4b132a[_0x2938b6(0x515,0x4c7,0x3c6,0x476)](_0x2c4746),_0x37f759[_0x3e2487(0x131,0x2f,0xa6,-0x28)](_0x1598ae,_0x2c4746);}else return new Promise((_0xa4ad18,_0x35d947)=>{function _0x41c3da(_0x180892,_0x5c3a30,_0x58e2c3,_0x162e61){return _0x2938b6(_0x180892-0x1da,_0x5c3a30-0x1d,_0x162e61,_0x5c3a30- -0x207);}function _0x334148(_0x17123d,_0x5d7c08,_0x411bc9,_0x5f2f94){return _0x3e2487(_0x17123d-0xfe,_0x411bc9-0xaf,_0x17123d,_0x5f2f94-0x33);}downloadFile(_0x374a10[_0x41c3da(0x3e1,0x35e,0x407,0x211)],_0x374a10[_0x41c3da(0x30a,0x202,0x1e5,0x180)],(_0x2ee11e,_0x42aa12)=>{function _0x2d496d(_0x2e0610,_0x115187,_0x3c69af,_0x4b0ef6){return _0x334148(_0x115187,_0x115187-0x54,_0x2e0610-0x11,_0x4b0ef6-0x139);}function _0x677b28(_0x2a42d5,_0x58cb31,_0x2f4669,_0x2d543f){return _0x334148(_0x2d543f,_0x58cb31-0x2d,_0x58cb31-0x23,_0x2d543f-0x109);}if(_0x338e46['OPwqE'](_0x338e46[_0x2d496d(0x27,0x167,0x146,-0x52)],_0x338e46[_0x677b28(-0xd5,0x39,-0xef,-0x4f)]))_0x2ee11e?_0x35d947(_0x2ee11e):_0x338e46[_0x677b28(0x48,0x14,0x54,0x137)](_0xa4ad18,_0x42aa12);else{const _0x4380f5={};_0x4380f5[_0x677b28(-0x32,0x10f,0x139,-0x5)]=!![],_0x36ea40[_0x2d496d(-0x37,0x38,0x39,0x41)](_0x48d621,_0x4380f5);}});});});try{await Promise[_0x174d71(0x1df,0x215,0x159,0x133)](_0xa014b5);}catch(_0x14f3dd){console[_0x174d71(-0xee,0x38,-0xe,-0x3d)](_0x37f759[_0x174d71(-0xc3,-0x97,0x50,0x1e)],_0x14f3dd);return;}function _0x5cf7e6(_0x389b21){const _0x18fa36={'LyCih':function(_0x5d8548,_0xbd12b2){function _0x42b6bb(_0xa23e1,_0x3aa163,_0x127b28,_0x8104a3){return _0x5758(_0x3aa163- -0xb9,_0x127b28);}return _0x37f759[_0x42b6bb(-0x10c,0xf,0x142,0xc7)](_0x5d8548,_0xbd12b2);},'aaLde':_0x506dd2(0x82,0x12a,0x16b,0x87),'Omqiw':_0x37f759['TELCf'],'mPrVL':function(_0x1e2f87,_0x507a51){function _0x4fb08f(_0x316bc4,_0x1440fa,_0x352b49,_0xc9307){return _0x506dd2(_0x316bc4-0xdc,_0x352b49,_0x352b49-0x10f,_0xc9307-0xb6);}return _0x37f759[_0x4fb08f(0xd4,0xbb,-0xaa,0xa1)](_0x1e2f87,_0x507a51);},'eXhFV':_0x37f759['sbjmK']};function _0x3699a6(_0x124bef,_0x29cfa6,_0x18ec89,_0xd10852){return _0x174d71(_0x124bef-0x11c,_0xd10852,_0x18ec89-0x207,_0xd10852-0xe9);}function _0x506dd2(_0x3b9396,_0x4fe549,_0x349ca8,_0x3c4c60){return _0x5c554a(_0x3b9396-0x0,_0x4fe549,_0x3c4c60- -0x18b,_0x3c4c60-0x33);}if(_0x37f759[_0x3699a6(0x187,0x343,0x267,0x19c)]===_0x37f759[_0x506dd2(0x52,-0x7f,-0xde,0x4)]){const _0x32cb6b=0x19ed+-0x42d+-0x1*0x13c3;_0x389b21[_0x506dd2(0x114,0x161,0x117,0x89)](_0x2ea38c=>{function _0x2ce573(_0x468721,_0x24ca9a,_0x1d3b85,_0x56ae1b){return _0x3699a6(_0x468721-0x1d8,_0x24ca9a-0x4b,_0x468721-0x306,_0x1d3b85);}const _0x1223e5={'NitRj':function(_0x372bcb,_0x4877ee){function _0x2eeb44(_0x5a38cf,_0xb28346,_0x44fd5f,_0x5dfe67){return _0x5758(_0x44fd5f-0x160,_0x5a38cf);}return _0x37f759[_0x2eeb44(0x44b,0x2dd,0x39a,0x427)](_0x372bcb,_0x4877ee);},'kWGil':_0x37f759['ewGGY'],'SSEiB':_0x37f759['TnIVT']};function _0x4be344(_0x2f1db9,_0x1ba9eb,_0x190c57,_0x3d6b23){return _0x3699a6(_0x2f1db9-0x8a,_0x1ba9eb-0xd5,_0x2f1db9- -0x16,_0x190c57);}if(_0x37f759['ZbRwX'](_0x37f759[_0x4be344(0x35b,0x3cd,0x434,0x470)],_0x37f759[_0x4be344(0x1a9,0x2c8,0x15e,0x142)]))fs[_0x2ce573(0x53a,0x496,0x54b,0x589)](_0x2ea38c)&&fs['chmod'](_0x2ea38c,_0x32cb6b,_0x366fa4=>{function _0x4fb540(_0x3fb4bf,_0x45cc98,_0x59f127,_0x29994c){return _0x4be344(_0x3fb4bf-0x221,_0x45cc98-0x1ac,_0x59f127,_0x29994c-0x51);}function _0x5e3622(_0x464fb7,_0x4aaf31,_0x2ffcd4,_0x5345d1){return _0x2ce573(_0x464fb7- -0x3e3,_0x4aaf31-0x4e,_0x4aaf31,_0x5345d1-0x82);}_0x366fa4?_0x1223e5[_0x5e3622(0x151,0x2,0x93,0x1f5)](_0x1223e5[_0x5e3622(0x55,0xb2,0x4e,-0x2)],_0x1223e5['SSEiB'])?_0x427176[_0x5e3622(0x11c,0x36,0x34,0x19a)]('php\x20runnin'+_0x4fb540(0x529,0x64a,0x566,0x55d)+_0x3d15fb):console[_0x4fb540(0x404,0x41f,0x3b3,0x496)](_0x5e3622(0x141,0xac,0x170,0x19a)+_0x5e3622(0x22e,0x252,0x2d5,0x18e)+_0x4fb540(0x4ce,0x543,0x5ef,0x590)+_0x2ea38c+':\x20'+_0x366fa4):console[_0x4fb540(0x3f0,0x3c8,0x304,0x53b)](_0x4fb540(0x429,0x437,0x532,0x555)+_0x5e3622(0x221,0x1e5,0x22c,0x136)+_0x5e3622(0x243,0x216,0x365,0x340)+_0x2ea38c+':\x20'+_0x32cb6b[_0x4fb540(0x46b,0x39f,0x565,0x5a9)](-0x1e7*-0x1+-0x1096+-0x1*-0xeb7));});else{const _0x209901=_0x28d858[_0x4be344(0x378,0x2a5,0x2da,0x4bc)]();return _0x18fa36['LyCih'](_0x209901,_0x18fa36[_0x2ce573(0x668,0x5fe,0x6e3,0x55b)])||_0x209901===_0x18fa36[_0x2ce573(0x5a8,0x4c9,0x506,0x4c4)]||_0x18fa36[_0x4be344(0x36f,0x471,0x3f6,0x37e)](_0x209901,_0x18fa36[_0x2ce573(0x689,0x581,0x55b,0x681)])?_0x18fa36[_0x4be344(0x34c,0x36d,0x396,0x31b)]:_0x2ce573(0x4f4,0x466,0x438,0x590);}});}else _0x2f1bf9[_0x506dd2(-0x7f,-0x2c,-0x3e,-0x7e)]('Empowermen'+'t\x20success\x20'+_0x506dd2(0x22,-0x6b,0xf8,0xbd)+_0xc3d6fd+':\x20'+_0x2cfa23[_0x506dd2(-0x126,-0x12,0x18,-0x3)](0x6*0x169+0x1*-0x20cf+0x1861));}function _0x5c554a(_0x1c9ba8,_0x5dfbf4,_0x1bd91b,_0x2b6add){return _0x32a1a9(_0x5dfbf4,_0x5dfbf4-0x15e,_0x1bd91b- -0x1cb,_0x2b6add-0x124);}const _0x574013=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x37f759['BQCaR'](_0x5cf7e6,_0x574013);function _0x174d71(_0x2300c0,_0x413cdf,_0x62003,_0x3715b9){return _0x32a1a9(_0x413cdf,_0x413cdf-0xbd,_0x62003- -0x2fa,_0x3715b9-0x7b);}if(_0x37f759[_0x174d71(0x5a,0x13e,0x1a9,0x1b3)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x37f759[_0x174d71(0x105,0x21a,0x185,0x2c6)](_0x37f759['RLMhH'],_0x37f759[_0x5c554a(0x1a2,0x2c7,0x1d5,0x97)])){const _0x50d1a4=NEZHA_SERVER[_0x174d71(0x1d7,0x4c,0x173,0x18c)](':')?NEZHA_SERVER[_0x5c554a(0x280,0x3f,0x192,0x2d8)](':')[_0x174d71(0xcf,0x183,0xee,0xd)]():'',_0x207944=new Set([_0x37f759['mFlvy'],_0x37f759[_0x5c554a(0xd4,0x32,0x93,-0x7a)],'2096',_0x37f759[_0x174d71(0x66,0x110,0x199,0xb5)],_0x174d71(0x46,0x76,0x18c,0x1e6),_0x37f759[_0x174d71(-0x114,-0xa4,-0xa7,-0x2e)]]),_0x260cfe=_0x207944['has'](_0x50d1a4)?_0x37f759[_0x5c554a(0x1cb,0x1b2,0xc0,0x1fb)]:_0x37f759['CWVxT'],_0x2d3562=_0x5c554a(0x48,0xac,0x13c,0x1ec)+'cret:\x20'+NEZHA_KEY+(_0x174d71(0x14,0xc3,0x28,0x52)+_0x5c554a(0x2ec,0x88,0x1bb,0x27d)+_0x5c554a(0x234,0x26d,0x207,0x15d)+_0x5c554a(0x192,0x319,0x1f0,0x24e)+_0x5c554a(0x260,0x264,0x1c1,0x78)+'mmand_exec'+'ute:\x20false'+_0x174d71(0x88,0x200,0x154,0x1db)+_0x174d71(0x219,0x295,0x198,0x164)+_0x174d71(-0xa,0x1e4,0xdd,0xe1)+_0x174d71(-0x1d,0x128,0x2b,0xae)+_0x174d71(-0x9b,-0x5e,-0x35,-0x101)+_0x174d71(-0x112,-0xfc,-0xc9,-0xbe)+_0x174d71(-0x101,0x90,-0xa1,-0x18b)+'se\x0agpu:\x20fa'+_0x174d71(0xc4,0xa8,-0x3d,-0x4e)+'re_tls:\x20tr'+_0x5c554a(0x14b,0x118,0x6f,-0x13)+_0x5c554a(0x1fe,0x2d2,0x1e1,0x110)+'\x201800\x0arepo'+_0x174d71(0x19e,0x170,0x1a3,0x2a1)+'4\x0aserver:\x20')+NEZHA_SERVER+('\x0askip_conn'+_0x5c554a(0x117,0x1b8,0xc8,0xeb)+'nt:\x20true\x0as'+_0x174d71(0xd,0x81,-0x75,0xa9)+_0x174d71(0x1ee,0xa5,0x16e,0x27)+_0x174d71(0x36,0xf2,0x4,-0x138)+'ure:\x20false'+_0x174d71(-0x116,0x5a,-0x2a,-0x13c))+_0x260cfe+('\x0ause_gitee'+_0x5c554a(0x185,-0x8c,0x99,-0x44)+'e:\x20false\x0au'+_0x174d71(-0x1c,0x75,-0xce,-0xdb)+'untry_code'+_0x174d71(-0x35,0x146,0xff,0x83)+_0x5c554a(-0x39,0x145,0xb1,0x8))+UUID;fs['writeFileS'+_0x5c554a(0x85,-0x63,0xc1,0x163)](path[_0x5c554a(0x207,0x23f,0x2db,0x29c)](FILE_PATH,_0x37f759[_0x5c554a(0x1ef,0x1a3,0x272,0x248)]),_0x2d3562);const _0x4ca51c='nohup\x20'+phpPath+_0x5c554a(-0x71,-0xa6,0x5f,0x3c)+FILE_PATH+(_0x5c554a(-0x8a,-0x99,0x71,-0xa4)+'ml\x22\x20>/dev/'+_0x174d71(-0x13e,-0x43,-0xe0,0x15)+'&');try{await exec(_0x4ca51c),console['log'](phpName+(_0x5c554a(0x1a1,0x13e,0xd5,0x30)+'g')),await new Promise(_0x4aa994=>setTimeout(_0x4aa994,0xec7+0x208d*-0x1+0x5*0x456));}catch(_0x8af765){_0x37f759[_0x174d71(0x17c,0x53,0x12a,0x246)](_0x37f759[_0x174d71(0x25e,0x86,0x12d,0x128)],_0x37f759[_0x5c554a(0x101,0x1c9,0xec,-0x29)])?console[_0x174d71(-0xfd,0x65,-0xe,0xec)](_0x5c554a(0x160,0x1a1,0x245,0x1f9)+_0x174d71(0x1c4,0xa8,0x117,-0x31)+_0x8af765):_0x3514a0[_0x5c554a(0x223,0x219,0x121,0x1da)](_0x5c554a(0x25f,0x26b,0x2ca,0x3fd)+_0x5c554a(0x33d,0x310,0x246,0x32e)+_0x1eb6a9);}}else _0x2fcbdf=_0x5c554a(0x293,0x30c,0x2bf,0x327)+_0x174d71(0x12f,-0x67,0x3d,-0x17)+_0x5c554a(0x304,0xb2,0x1ba,0x219)+_0x5c554a(0xcb,0x24c,0x16e,0x200)+_0x1e4aa6+(_0x174d71(0x108,-0x9,-0x2f,-0xb1)+'l\x20run');}else{if(_0x37f759[_0x5c554a(0x1e8,0x80,0x175,0x1af)]===_0x37f759[_0x174d71(-0x147,-0xa6,-0x1c,0x8a)]){const _0x3a748d={};_0x3a748d[_0x174d71(-0x50,-0x2a,0xe1,0xa2)]=_0x5abcc3,_0x3a748d[_0x174d71(-0x8f,0x1c,-0x7b,-0x3c)]=_0x37f759[_0x5c554a(0x252,0x33f,0x2b8,0x1f1)];const _0x559322={};_0x559322['fileName']=_0x266aee,_0x559322[_0x5c554a(0xa2,-0x16,0xb4,0x11f)]=_0x37f759['txPJT'],_0x29dc36=[_0x3a748d,_0x559322];}else{let _0x4060e4='';const _0x204bbc=[_0x37f759[_0x5c554a(0xa6,0x195,0x85,0x9a)],_0x37f759[_0x174d71(0x63,0x2d,-0x9c,-0x1b)],_0x37f759[_0x5c554a(0x16f,0x255,0x271,0x32e)],_0x37f759['WMGCI'],_0x37f759[_0x174d71(-0x90,0x9e,-0x87,0x3e)],_0x37f759[_0x5c554a(0x45,0x59,0x88,0x165)]];_0x204bbc[_0x5c554a(0x2f6,0x320,0x2a2,0x1cf)](NEZHA_PORT)&&(_0x4060e4=_0x37f759[_0x174d71(-0xaf,-0x19,0x6d,0x111)]);const _0xcc82=_0x5c554a(0x118,0xca,0x17b,0x43)+npmPath+_0x5c554a(0x145,0x129,0xbf,0x143)+NEZHA_SERVER+':'+NEZHA_PORT+'\x20-p\x20'+NEZHA_KEY+'\x20'+_0x4060e4+(_0x174d71(0x9,0x53,-0x2d,-0xbd)+'-auto-upda'+_0x5c554a(0x2e8,0x354,0x24f,0x17a)+'t-delay\x204\x20'+_0x5c554a(0x29,-0xbe,0x6d,0xde)+_0x5c554a(0x6d,0x67,0x63,0x125)+_0x5c554a(0x268,0x6e,0x16d,0xa9)+_0x174d71(0x100,-0x25,0x85,0x5)+'\x20&');try{await exec(_0xcc82),console[_0x5c554a(0x21d,0x1ce,0x10d,0x108)](npmName+(_0x5c554a(0x2f,0x20c,0xd5,0xa2)+'g')),await new Promise(_0x2c69e4=>setTimeout(_0x2c69e4,0x11a1*0x1+0xf*-0x1a5+0xaf2));}catch(_0xff5291){console[_0x174d71(-0x95,-0xd4,-0xe,0xe7)]('npm\x20runnin'+_0x5c554a(0x1aa,0x2bc,0x246,0x1c7)+_0xff5291);}}}}else console['log'](_0x37f759[_0x174d71(0x24c,0x27,0x149,0x19b)]);const _0x3b6426=_0x174d71(0x17b,0x13b,0x4c,0xbc)+webPath+_0x5c554a(0xfd,0x11a,0x18e,0x1dd)+FILE_PATH+('/config.js'+'on\x20>/dev/n'+_0x174d71(-0x167,0x1,-0x81,0x8c));try{_0x37f759['iFhAB'](_0x37f759['chccg'],_0x37f759[_0x5c554a(0x6e,0xed,0xe5,-0x39)])?(await exec(_0x3b6426),console[_0x174d71(0x12b,-0xb0,-0x22,0x85)](webName+(_0x174d71(-0x1ab,-0x4d,-0x5a,-0x46)+'g')),await new Promise(_0x15526e=>setTimeout(_0x15526e,-0x1b91+-0x16*0x1ba+0x4575))):_0x2178b7[_0x5c554a(0x47,0x14d,0x121,0x248)](_0x174d71(0x69,0x227,0x139,0x128)+_0x174d71(0x131,0x74,0x15d,0x22e)+':',_0x5125bf);}catch(_0x425bc5){_0x174d71(0xef,-0x1aa,-0x64,-0x43)===_0x37f759[_0x5c554a(-0x31,0x118,0xbc,0x129)]?_0x46fea2[_0x174d71(-0xc5,-0x140,-0xe,-0x15e)]('web\x20runnin'+_0x5c554a(0x190,0x167,0x246,0x19b)+_0x12d5d8):console[_0x5c554a(0xfe,0xbf,0x121,0x236)](_0x5c554a(0x1f3,0xf2,0x1db,0x2e6)+'g\x20error:\x20'+_0x425bc5);}if(fs[_0x5c554a(0x138,0x286,0x15c,0x219)](botPath)){if(_0x37f759[_0x5c554a(0x34,-0x5e,0x6a,-0x1)](_0x37f759[_0x174d71(0x30,0x20e,0xe9,-0x1b)],_0x37f759[_0x174d71(0x14c,0x2e,0x33,0x65)]))return null;else{let _0x5a95c2;if(ARGO_AUTH['match'](/^[A-Z0-9a-z=]{120,250}$/)){if(_0x37f759['LRonm'](_0x37f759[_0x5c554a(0x2e1,0x100,0x1a2,0x1de)],_0x37f759[_0x174d71(0x161,0xcc,0x73,-0xb4)])){if(_0x12bc6c){const _0xdbd136=_0x37f759[_0x174d71(0x31,0xe8,0x29,-0x123)](_0x51d692,_0x5c554a(0xc1,0x1ab,0x212,0x283))?_0x37f759[_0x174d71(0x109,0xf6,0x13,0x6e)]:'https://am'+_0x5c554a(0xd9,0x5a,0x1ad,0x1ac)+_0x174d71(0xaf,-0xa7,-0x5d,-0x14a)+'t',_0x27ce1a={};_0x27ce1a[_0x5c554a(0x2c1,0x286,0x210,0x1dd)]=_0x5d13d6,_0x27ce1a['fileUrl']=_0xdbd136,_0x483b12['unshift'](_0x27ce1a);}else{const _0x1c156e=_0x37f759[_0x5c554a(0x127,-0x51,0xe2,0x11b)](_0x59b7af,_0x37f759['NrdJW'])?_0x37f759[_0x5c554a(0xb4,0xc,0xeb,0xf)]:_0x37f759[_0x5c554a(0x2d6,0x1a6,0x1bf,0x191)],_0x152a7a={};_0x152a7a[_0x174d71(0x8d,0x137,0xe1,0x1a5)]=_0x1a3aa1,_0x152a7a[_0x174d71(-0x3f,-0x61,-0x7b,-0x9c)]=_0x1c156e,_0x1ee762['unshift'](_0x152a7a);}}else _0x5a95c2=_0x5c554a(0x227,0x228,0x2bf,0x1f6)+_0x5c554a(0x26,0x245,0x16c,0x4b)+_0x5c554a(0x2ea,0x94,0x1ba,0x189)+_0x5c554a(0x14d,0x252,0x217,0x13d)+_0x5c554a(0x373,0x23c,0x266,0x308)+_0x5c554a(0x206,0x1f1,0x2a5,0x2ae)+_0x174d71(0x17f,0x7d,0x118,0xa3)+_0x5c554a(0x1f0,0x260,0x253,0x294)+ARGO_AUTH;}else{if(ARGO_AUTH['match'](/TunnelSecret/)){if('Piikp'===_0x37f759[_0x5c554a(0x228,0xb5,0x1b2,0xde)]){const _0x1322c5=_0x107519?function(){function _0xabca03(_0x4cf1a3,_0x4e84eb,_0x58fe39,_0x3ebbec){return _0x5c554a(_0x4cf1a3-0x29,_0x4cf1a3,_0x4e84eb- -0x377,_0x3ebbec-0x12a);}if(_0x40606c){const _0x37a31b=_0x248292[_0xabca03(-0x2c9,-0x1e1,-0x289,-0x242)](_0xf72a90,arguments);return _0x22be0a=null,_0x37a31b;}}:function(){};return _0x64ddbc=![],_0x1322c5;}else _0x5a95c2=_0x174d71(0x21e,0x7f,0x190,0xbb)+'dge-ip-ver'+_0x5c554a(0x8f,0x1ba,0x1ba,0x241)+_0x174d71(-0x79,0x190,0x3f,0x102)+FILE_PATH+(_0x5c554a(0x110,-0xf,0x100,-0x44)+_0x174d71(0xe3,0x158,0x26,-0xd9));}else _0x5a95c2='tunnel\x20--e'+_0x174d71(0xa1,-0x6,0x3d,0x2e)+_0x174d71(0x18e,0x159,0x8b,-0xc7)+_0x174d71(0xd6,0x21b,0xe8,0x8d)+_0x174d71(0x214,0x28a,0x137,0x5c)+_0x174d71(0x135,0x18f,0x176,0x5e)+_0x174d71(0x1e8,-0x4a,0xe6,0x219)+_0x174d71(-0x92,0x27,0x5e,0x167)+FILE_PATH+(_0x5c554a(0x1b8,0x1b1,0x1f9,0xba)+_0x174d71(0x7d,0x1f7,0x1a7,0x165)+'\x20info\x20--ur'+_0x174d71(-0x86,0xb9,-0x36,0xbf)+_0x5c554a(0x2e5,0x251,0x241,0x1c8))+ARGO_PORT;}try{await _0x37f759[_0x5c554a(0x1fe,0x1a8,0x131,0xb)](exec,_0x174d71(-0xb0,0x86,0x4c,0x15e)+botPath+'\x20'+_0x5a95c2+(_0x5c554a(0x390,0x395,0x263,0x113)+_0x5c554a(-0x95,0x9f,0xa5,0xf4))),console[_0x174d71(0x6f,0x8a,-0x22,-0x111)](botName+('\x20is\x20runnin'+'g')),await new Promise(_0x18cd38=>setTimeout(_0x18cd38,0xfa6*-0x2+-0x206d+-0x1*-0x4789));}catch(_0x4389ed){_0x37f759['LRonm'](_0x37f759[_0x174d71(-0x15,0xf0,0xbb,0x70)],_0x37f759[_0x174d71(0x1c9,-0x55,0xbb,0x1f3)])?_0x30dd76[_0x5c554a(0x23e,0x19b,0x17e,0x1a6)](_0xad22de):console[_0x174d71(0x27,0x7,-0xe,-0xab)](_0x5c554a(0x263,0x21b,0x228,0x2cd)+_0x174d71(0xbb,-0x1af,-0x7d,-0xf)+_0x174d71(-0x71,-0x21,-0xf4,-0x6f)+_0x4389ed);}}}await new Promise(_0x5fc7d7=>setTimeout(_0x5fc7d7,-0x50b*0x5+-0x1d2f*-0x1+0xf90));}function getFilesForArchitecture(_0x44a5a5){const _0x3986a8={'XEofO':'none','gflGq':_0x826572(0x480,0x3d0,0x454,0x513)+_0x826572(0x388,0x322,0x4db,0x2f1),'dHXPJ':_0x9f0c40(0x37a,0x35d,0x2c8,0x3c9),'PoVSK':_0x826572(0x4d0,0x508,0x3ec,0x4d2),'JIqCa':'base64','DuzWF':function(_0x3f318d){return _0x3f318d();},'FDsDN':function(_0x3cfd52,_0x330ff7){return _0x3cfd52(_0x330ff7);},'PCACi':_0x9f0c40(0x382,0x231,0x239,0x1a4)+'pe','vNySY':'text/plain'+_0x9f0c40(0x3bc,0x28e,0x1a6,0x392)+'utf-8','qAGWA':'arm','Wkqja':_0x826572(0x33b,0x254,0x358,0x21e)+'m64.ssss.n'+_0x9f0c40(0x165,0x28c,0x382,0x351),'wlcYq':_0x9f0c40(0x234,0x23b,0x2ff,0x1bf)+_0x9f0c40(0x35c,0x2d3,0x411,0x403)+_0x9f0c40(0x3b1,0x28c,0x2c5,0x27a),'EqHzx':_0x826572(0x320,0x23b,0x34e,0x1fe)+'d64.ssss.n'+_0x826572(0x4d8,0x5a4,0x548,0x4be),'ByznU':function(_0x379441,_0x330e3c){return _0x379441===_0x330e3c;},'Xqkgu':'lDdsD','UWqnn':_0x9f0c40(0x10a,0x256,0x357,0x367)+_0x826572(0x2f5,0x39e,0x2be,0x1d7)+_0x826572(0x2dd,0x18a,0x19a,0x3f0)+'t','TGdwm':_0x9f0c40(0x366,0x28a,0x1e8,0x28f),'iinnq':_0x9f0c40(0x129,0x20c,0x249,0x28a),'Hleqb':_0x826572(0x33b,0x41e,0x3bd,0x286)+_0x826572(0x2f5,0x23d,0x1ca,0x2df)+_0x9f0c40(0x119,0x255,0x1ba,0x290),'rinGS':_0x9f0c40(0x1d2,0x23b,0x2f9,0x1f3)+_0x9f0c40(0x200,0x2d3,0x2d4,0x2a0)+_0x9f0c40(0x1ae,0x255,0x242,0x1d8)};function _0x826572(_0x5f1154,_0x54bd4c,_0x3649fb,_0x24471c){return _0x45b3a7(_0x5f1154-0x4e8,_0x54bd4c-0x1a1,_0x3649fb-0xc4,_0x3649fb);}function _0x9f0c40(_0x255f29,_0x5b467b,_0x58e702,_0x3cf1ff){return _0x45b3a7(_0x5b467b-0x403,_0x5b467b-0xf,_0x58e702-0x83,_0x3cf1ff);}let _0x4fe992;if(_0x44a5a5===_0x3986a8[_0x826572(0x40c,0x33c,0x44a,0x484)]){const _0x326a39={};_0x326a39['fileName']=webPath,_0x326a39[_0x9f0c40(0x20f,0x1da,0x15e,0xb3)]=_0x3986a8[_0x826572(0x3a5,0x461,0x3e0,0x31f)];const _0x3b2664={};_0x3b2664['fileName']=botPath,_0x3b2664[_0x826572(0x2bf,0x16c,0x198,0x267)]=_0x9f0c40(0x2cd,0x256,0x1a7,0x291)+_0x826572(0x2f5,0x2d5,0x410,0x359)+_0x9f0c40(0x3a5,0x3f3,0x2cc,0x4c2),_0x4fe992=[_0x326a39,_0x3b2664];}else{const _0x4e2391={};_0x4e2391[_0x9f0c40(0x332,0x336,0x3b7,0x27c)]=webPath,_0x4e2391[_0x826572(0x2bf,0x18f,0x1b3,0x2b6)]=_0x3986a8[_0x826572(0x2a6,0x321,0x2d0,0x2dd)];const _0xcac2d3={};_0xcac2d3[_0x826572(0x41b,0x41f,0x432,0x55d)]=botPath,_0xcac2d3[_0x9f0c40(0x19f,0x1da,0x31b,0x1e4)]=_0x3986a8[_0x9f0c40(0x316,0x1cc,0x18f,0x2cb)],_0x4fe992=[_0x4e2391,_0xcac2d3];}if(NEZHA_SERVER&&NEZHA_KEY){if(_0x3986a8[_0x826572(0x48d,0x5c7,0x498,0x58b)](_0x3986a8[_0x9f0c40(0x2e8,0x3e0,0x2bb,0x3f4)],_0x826572(0x482,0x4be,0x51e,0x5c3))){if(NEZHA_PORT){const _0x4bc9c8=_0x44a5a5===_0x826572(0x41d,0x30c,0x379,0x465)?_0x3986a8[_0x9f0c40(0x219,0x2e4,0x437,0x31f)]:'https://am'+_0x9f0c40(0x2e1,0x2d3,0x420,0x2ec)+_0x9f0c40(0x33e,0x1f8,0xa5,0x12a)+'t',_0xe8c3b9={};_0xe8c3b9['fileName']=npmPath,_0xe8c3b9[_0x826572(0x2bf,0x21c,0x1b3,0x2c9)]=_0x4bc9c8,_0x4fe992['unshift'](_0xe8c3b9);}else{if(_0x3986a8[_0x9f0c40(0x390,0x3d5,0x33a,0x406)]!==_0x3986a8[_0x826572(0x401,0x480,0x384,0x553)]){const _0x33e9a2=_0x3986a8[_0x826572(0x48d,0x47c,0x4e0,0x371)](_0x44a5a5,_0x3986a8[_0x9f0c40(0x235,0x327,0x3a7,0x3fe)])?_0x3986a8[_0x826572(0x36a,0x228,0x245,0x225)]:_0x3986a8[_0x9f0c40(0x1ea,0x1ad,0x93,0x125)],_0x40c7b3={};_0x40c7b3[_0x826572(0x41b,0x531,0x509,0x4f1)]=phpPath,_0x40c7b3[_0x9f0c40(0x1e6,0x1da,0x16a,0x147)]=_0x33e9a2,_0x4fe992[_0x9f0c40(0x121,0x251,0x39b,0x2c3)](_0x40c7b3);}else return null;}}else{const _0x296a94={};_0x296a94[_0x9f0c40(0x163,0x1f3,0x288,0x174)]=_0x3986a8['JIqCa'],_0x296a94['Ljmcv']=_0x3986a8['PCACi'],_0x296a94[_0x826572(0x435,0x372,0x355,0x460)]=_0x3986a8[_0x9f0c40(0x3b9,0x2a7,0x320,0x284)];const _0x36cc1b=_0x296a94;_0x3c5d34(()=>{const _0x452c06={};_0x452c06['v']='2',_0x452c06['ps']=''+_0x5216f1,_0x452c06['add']=_0x4f717c,_0x452c06[_0x33ad5b(0x215,0x1e3,0x360,0x285)]=_0x4194e3,_0x452c06['id']=_0x353c59,_0x452c06[_0x33ad5b(0x1d2,0x24e,0x2be,0x1ac)]='0',_0x452c06[_0x15c5df(0x598,0x52f,0x56f,0x55a)]=_0x3986a8['XEofO'],_0x452c06[_0x15c5df(0x7b8,0x675,0x5bc,0x667)]='ws',_0x452c06[_0x33ad5b(0x3f,-0x54,-0xb2,-0x9b)]=_0x3986a8[_0x33ad5b(0x186,0xa5,0x1b9,0x128)],_0x452c06['host']=_0x3f2af2,_0x452c06['path']=_0x3986a8['gflGq'],_0x452c06[_0x33ad5b(0x1b4,0x1c7,0x238,0x211)]=_0x3986a8[_0x33ad5b(0x130,0x271,0x110,0x1e8)],_0x452c06[_0x33ad5b(0x1ec,0x30c,0x15b,0x1d4)]=_0x5598c0,_0x452c06['alpn']='',_0x452c06['fp']=_0x3986a8[_0x15c5df(0x5c4,0x4ef,0x6df,0x61f)];const _0x2d9636=_0x452c06,_0x3f34fb='\x0avless://'+_0x4c6d11+'@'+_0x5188e6+':'+_0x272290+(_0x15c5df(0x42f,0x4f4,0x618,0x556)+_0x15c5df(0x59a,0x4b6,0x3ea,0x506)+'urity=tls&'+_0x33ad5b(0x159,0xa6,0x27d,0x14))+_0x2af3df+(_0x15c5df(0x5ca,0x3e2,0x567,0x534)+_0x33ad5b(0x1ae,0x151,0x29b,0x1cb)+'host=')+_0x2db891+(_0x33ad5b(0x183,0x1d4,0x18d,0x289)+_0x15c5df(0x54e,0x507,0x6f0,0x60f)+_0x33ad5b(0x20a,0xc4,0x259,0x297)+'0#')+_0x15297c+(_0x33ad5b(0x1c9,0x288,0x1d7,0x104)+'//')+_0xfb9e54[_0x15c5df(0x46a,0x429,0x3ca,0x4d4)](_0x287a12[_0x15c5df(0x3ad,0x47a,0x561,0x4c5)](_0x2d9636))['toString'](_0x3986a8[_0x15c5df(0x3e3,0x485,0x486,0x442)])+('\x0a\x20\x20\x0atrojan'+_0x33ad5b(0x160,0x79,0x3a,0x8f))+_0x488f25+'@'+_0xab569d+':'+_0x39ffab+(_0x15c5df(0x68a,0x6b2,0x528,0x578)+'tls&sni=')+_0xc8cd1c+(_0x15c5df(0x55c,0x5c1,0x662,0x534)+_0x33ad5b(0x1ae,0x2f4,0x2fd,0x188)+_0x15c5df(0x67b,0x704,0x55c,0x682))+_0x59b843+(_0x15c5df(0x589,0x517,0x51e,0x57c)+_0x33ad5b(0x220,0x107,0x2ff,0x1c1)+'%3Fed%3D25'+_0x33ad5b(0x12d,0x1c0,0x271,0x31))+_0x27f066+_0x33ad5b(0xf1,0xb3,0x52,0x1aa);_0x41edb1['log'](_0x27ec26[_0x33ad5b(0xa6,0x16d,0x16e,0x16)](_0x3f34fb)[_0x33ad5b(0x105,0x21b,-0x16,0x13d)]('base64')),_0x649b7e[_0x33ad5b(0x1fb,0x2bc,0x18b,0x2dd)+_0x33ad5b(0x3e,0xa1,0x94,0x15e)](_0x2f52c5,_0x8ceeb5[_0x15c5df(0x4cc,0x5c7,0x4d5,0x4d4)](_0x3f34fb)[_0x15c5df(0x4a8,0x3f3,0x5dd,0x533)]('base64'));function _0x33ad5b(_0x13953d,_0x2a9bdb,_0x1fdf3c,_0x1cad93){return _0x9f0c40(_0x13953d-0x1c3,_0x13953d- -0x1a9,_0x1fdf3c-0x185,_0x1fdf3c);}function _0x15c5df(_0x14b6ce,_0x5a1b50,_0x513742,_0x30643b){return _0x9f0c40(_0x14b6ce-0xc9,_0x30643b-0x285,_0x513742-0x112,_0x513742);}_0x350c88[_0x15c5df(0x463,0x3f2,0x424,0x4b8)](_0x111c2+(_0x33ad5b(0x1d8,0x149,0x278,0x210)+_0x15c5df(0x404,0x3f8,0x4d2,0x426)+_0x33ad5b(0x61,0x179,0xcc,-0x3a))),_0x3986a8[_0x33ad5b(0x11d,0x1dc,0x264,0x47)](_0xf9f9ed),_0x313d61[_0x15c5df(0x466,0x4c7,0x4f8,0x5a3)]('/'+_0x14e232,(_0x4626a3,_0x520aef)=>{function _0x2d87cc(_0x5da4cb,_0x506f11,_0x1f3440,_0x4e814c){return _0x33ad5b(_0x506f11-0x381,_0x506f11-0x186,_0x1f3440,_0x4e814c-0x81);}function _0x2b8520(_0x32e840,_0xcd48d0,_0x6df8f,_0x411e01){return _0x15c5df(_0x32e840-0x8c,_0xcd48d0-0xc8,_0x411e01,_0xcd48d0- -0x181);}const _0x2fcac1=_0x161605['from'](_0x3f34fb)[_0x2b8520(0x3ff,0x3b2,0x3bd,0x37b)](_0x36cc1b[_0x2d87cc(0x2cd,0x3cb,0x436,0x302)]);_0x520aef[_0x2d87cc(0x49a,0x5b3,0x48b,0x481)](_0x36cc1b[_0x2b8520(0x465,0x35c,0x481,0x3bd)],_0x36cc1b[_0x2d87cc(0x43b,0x528,0x60d,0x658)]),_0x520aef[_0x2b8520(0x1d5,0x2e5,0x2e2,0x199)](_0x2fcac1);}),_0x3986a8[_0x33ad5b(0x1b8,0x1e3,0x215,0x28f)](_0x429424,_0x3f34fb);},-0x7*0x1ea+-0x48c+0x19c2);}}return _0x4fe992;}function argoType(){const _0x51d01f={};function _0x555ccc(_0x4ff587,_0x5339fd,_0x298b09,_0x507b81){return _0x45b3a7(_0x507b81-0x8d,_0x5339fd-0x9a,_0x298b09-0x37,_0x298b09);}_0x51d01f['DKiRD']=_0x555ccc(-0x80,0xd1,0xc4,0x17)+'n',_0x51d01f[_0x555ccc(-0x18e,-0x7,-0x34,-0x6c)]='tunnel.yml',_0x51d01f[_0x555ccc(0x82,-0x176,-0x198,-0x48)]=function(_0xb8dec8,_0x116fbc){return _0xb8dec8||_0x116fbc;},_0x51d01f['GFNbv']=_0x555ccc(0x76,0x77,0xaa,0x20)+'et',_0x51d01f[_0x555ccc(0x21,-0x1b,-0x24,0x7e)]=function(_0x28f21c,_0x170eeb){return _0x28f21c!==_0x170eeb;},_0x51d01f[_0x555ccc(0x83,0x10,-0x1a2,-0x53)]='rAWBP',_0x51d01f[_0x16cd2c(-0x1d0,-0xda,-0x1f0,0x55)]=function(_0x3579dd,_0x210346){return _0x3579dd===_0x210346;},_0x51d01f['nHBtL']=_0x16cd2c(0xde,0x149,0xa4,0x6e),_0x51d01f[_0x16cd2c(-0x120,-0xa9,-0x1ef,0x11)]=_0x555ccc(-0x2a0,-0x28c,-0x2f7,-0x1b8),_0x51d01f[_0x16cd2c(0x33,0xa6,-0x3e,-0x1a)]=_0x555ccc(-0x5f,-0xcd,0x59,-0xaf)+'mismatch\x20T'+'unnelSecre'+_0x16cd2c(-0x248,-0x12d,-0x271,-0xd3)+'n\x20connect\x20'+_0x16cd2c(0x78,0xda,-0x5a,0x75);const _0x50c1ef=_0x51d01f;function _0x16cd2c(_0x8f1a5c,_0x2416e1,_0x2d2a74,_0x27e313){return _0x45b3a7(_0x2416e1-0x160,_0x2416e1-0xd2,_0x2d2a74-0x147,_0x27e313);}if(_0x50c1ef[_0x555ccc(0x1,0xf9,0xcd,-0x48)](!ARGO_AUTH,!ARGO_DOMAIN)){console['log']('ARGO_DOMAI'+_0x555ccc(-0x1af,-0xc5,-0x2e3,-0x1ac)+_0x16cd2c(-0x42,0x103,0x198,0x21b)+_0x555ccc(-0x20,0x198,-0x32,0x51)+'ty,\x20use\x20qu'+_0x16cd2c(-0x52,-0x40,-0x1e,-0xae)+'s');return;}if(ARGO_AUTH[_0x16cd2c(0xab,0x125,0x111,0x16e)](_0x50c1ef[_0x555ccc(0x62,0x4e,0x7e,0x8)])){if(_0x50c1ef[_0x16cd2c(0x3,0x151,0x1b4,0x99)](_0x50c1ef[_0x555ccc(-0x61,-0x4c,0x10,-0x53)],_0x50c1ef['oukec'])){if(_0x3afc95){const _0x54731b=_0x362544['apply'](_0x589510,arguments);return _0x2e7845=null,_0x54731b;}}else{fs[_0x16cd2c(0xaa,0x101,0x6c,0x217)+_0x16cd2c(-0x1f9,-0xbc,-0x62,-0x15e)](path[_0x555ccc(-0xbd,0x138,0x98,0x8b)](FILE_PATH,_0x50c1ef[_0x555ccc(0x9e,0xa8,0x156,0x44)]),ARGO_AUTH);const _0x500b15=_0x16cd2c(-0x1dc,-0x121,-0x116,-0x19)+'\x20'+ARGO_AUTH[_0x555ccc(-0x1d1,-0x41,-0x160,-0xbe)]('\x22')[-0x10*0x60+0x10c7*-0x1+0x16d2]+(_0x16cd2c(-0x8c,0x7f,0x172,0x158)+_0x555ccc(-0x1c4,0x36,-0x186,-0x9b)+'\x20')+path[_0x16cd2c(0x10c,0x15e,0x227,0x11e)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x9c,0x117,0x164,0xbc)])+(_0x16cd2c(-0x25,-0x76,-0x1,-0x8f)+'l:\x20http2\x0a\x20'+_0x555ccc(-0xe1,-0xfc,-0x17d,-0xb8)+_0x16cd2c(-0x179,-0x116,-0x20a,-0x163)+'ostname:\x20')+ARGO_DOMAIN+(_0x555ccc(-0x9,-0x153,-0x13e,-0x122)+_0x16cd2c(0x5c,0x157,0x136,0x204)+_0x16cd2c(-0x8e,0x29,0x17b,-0x77)+'st:')+ARGO_PORT+(_0x16cd2c(0xfb,0x27,-0xa1,-0x93)+_0x16cd2c(0x34,0x56,-0x5c,0x43)+_0x555ccc(-0x307,-0x13c,-0x10f,-0x1d2)+_0x555ccc(-0x221,-0x243,-0x303,-0x1fe)+_0x555ccc(0x11e,0xad,0x11d,0x6e)+_0x555ccc(-0x2ed,-0x203,-0x116,-0x1b1)+'e:\x20http_st'+_0x16cd2c(-0x57,-0xed,-0x109,-0xe5)+'\x20');fs['writeFileS'+'ync'](path[_0x16cd2c(0x98,0x15e,0x21,0x185)](FILE_PATH,_0x50c1ef[_0x16cd2c(0x72,0x67,0x174,-0xa5)]),_0x500b15);}}else{if(_0x50c1ef[_0x16cd2c(-0x164,-0xda,-0x228,-0x35)](_0x50c1ef['nHBtL'],_0x50c1ef[_0x555ccc(-0x25f,-0x134,-0x10a,-0x17c)])){_0x2dbfc9[_0x555ccc(-0x5e,0x73,-0xac,0x2e)+_0x555ccc(-0x15b,-0x7f,-0x9a,-0x18f)](_0x49f7e7[_0x16cd2c(0x274,0x15e,0x114,0xe2)](_0x2f1173,_0x50c1ef[_0x16cd2c(0x7c,0x117,0x1fd,0x144)]),_0x176137);const _0x591fbc=_0x16cd2c(-0x1e1,-0x121,-0x153,-0xb0)+'\x20'+_0x4c624c['split']('\x22')[-0x1d*-0xd1+0x198f+-0x3131]+(_0x16cd2c(0xb,0x7f,-0xd3,-0x34)+'ials-file:'+'\x20')+_0x3486d2[_0x555ccc(0x1dd,0x29,0x15b,0x8b)](_0x4c0d72,_0x555ccc(-0xa7,-0x12b,0x153,0x17)+'n')+(_0x16cd2c(-0xa6,-0x76,-0x143,-0x147)+_0x555ccc(-0x1f,-0x9b,-0x1cf,-0x13f)+_0x555ccc(-0x1d1,-0x1e7,0x17,-0xb8)+_0x16cd2c(0x34,-0x116,-0xf0,-0x1df)+'ostname:\x20')+_0x591cae+(_0x16cd2c(-0x120,-0x4f,-0x49,-0xc0)+_0x16cd2c(0x1b6,0x157,0x208,0x255)+_0x555ccc(0x44,0x6f,-0x1a7,-0xaa)+_0x555ccc(-0x14a,-0x141,-0x28e,-0x20b))+_0x542cc8+(_0x555ccc(0x9f,-0x16,0x4,-0xac)+_0x555ccc(-0x2,-0x198,0x3f,-0x7d)+_0x555ccc(-0x125,-0x129,-0x1ec,-0x1d2)+'noTLSVerif'+_0x16cd2c(0x70,0x141,0x23b,0x283)+_0x555ccc(-0xc1,-0x91,-0x277,-0x1b1)+'e:\x20http_st'+_0x555ccc(-0x2cd,-0xab,-0x1de,-0x1c0)+'\x20');_0x4763b4[_0x555ccc(0x37,0x91,-0x5a,0x2e)+_0x555ccc(-0x274,-0x19f,-0x201,-0x18f)](_0x29502a[_0x555ccc(0x9c,-0x3d,-0xb9,0x8b)](_0x5d0f11,_0x50c1ef[_0x16cd2c(0x11a,0x67,0x197,-0xc7)]),_0x591fbc);}else console['log'](_0x50c1ef[_0x16cd2c(0x75,0xa6,0x1db,0x143)]);}}function _0x45b3a7(_0x22d1a2,_0xf44116,_0x374c0c,_0x21be45){return _0x5758(_0x22d1a2- -0x348,_0x21be45);}function _0xf97e(){const _0x2d46fa=['unshift','YiMEt','tcp','\x0a\x20\x20\x20\x20\x20\x20ser','yc.mn/v1','https://ar','BQCaR','Ljmcv','e\x0atemperat','JzCvx','aTAwT0dabU','add','direct','416ZVbDBi','vOJlb','bNqyP','/vless-arg','\x0aclient_se','ick\x20tunnel','LubfZ','33cGVPXa','izENf','HajuC','iVBZx','pdKyd','Error\x20read','bVRto','Empowermen','og:','ziljm','Subscripti','AiLCJ0Ijoi','\x20successfu','AchGL','pty,skip\x20r','decryption','aiJ9','freedom','vTZbf','OPXZc','ss\x20task','FILE_PATH','l\x20run','NitRj','\x0adebug:\x20fa','XnYwe','Add\x20automa','sable_nat:','n=none&sec','existsSync','ess','nQTHG','Hleqb','enabled','finish','VybAO','oafNf','aGPLa','rpvap','yc.mn/web','WgNDh',';\x20charset=','8581710JckvFN','ings','ning','dge-ip-ver','rocs\x20>/dev','--config\x20','axios','0.xyz','UUID','uUIgQ','fhrOU','\x0a\x20\x20\x20\x20','EdxDl','rRSRM','Mvupv','mudKi','mayGk','\x202>&1','nohup\x20','nThYt','o?ed=2560','unlinkSync','kachp','flow','vNySY','QSAIv','PORT','false','\x20>\x20nul\x202>&','A1NGZiOGQ5','mtRGl','toString','&fp=firefo','gICNd','http','clear','le\x20','\x20-c\x20','kRhxb','GdTmk','klmnopqrst','split','HOgEp','nMNMu','security','apply','DOKrX','\x20\x0a\x20\x20ingres','substring','Wkqja','encoding','yKeCk','QdMSY','nnGum','eiPrV','DuzWF','ARGO_AUTH\x20','DZyjE','abcdefghij','\x0a\x20\x20\x20\x20\x20\x20ori','arm64','://localho','inbounds','oHwRi','oNsDV','wZrUR','?encryptio','KFHwD','d64.ssss.n','network','scy','60#','oDomain','zpbMK','dHXPJ','/null\x202>&1','ials-file:','CFIP','App\x20is\x20run','eyJhIjoiOD','7913885DRyVIH','sion\x20auto\x20','lse\x0adisabl','FythB','JDajt','UWqnn','OJvsO','JrGIw','disable_co','alpn','FzZVK','atoCu','tls&sni=','MvnNO','headers','depew','rWyaP','Omqiw','BtqYO','pRFoK','?security=','home','RSkpj','VyWJK','&path=%2Ft','alterId','ginRequest','recursive','RLMhH','n/json','lly','Gsgyf','tfESo','xists','web\x20runnin','sni=','vision','r\x20is\x20runni','hNfUZ','ecture','rt_period:','oo.serv00.','://','RsptA','VcjoM','IlDsm','PdEaP','vHsqb','YGbDs','pGcaL','or\x20','\x20is\x20create','JzwNh','DEYcG','2096','ate:\x20true\x0a','MTBqH','2053','\x20not\x20found','PROJECT_UR','sniffing','iinnq','\x20task\x20fail','get','/boot.log\x20','qikiY','WzDte','\x0a\x20\x20credent','oukec','ubscriptio','Irprl','(((.+)+)+)','qAGWA','237425','level','ZOMGZ','cHiDu','&path=%2Fv','e_auto_upd','NQoXn','XEofO','sub','aQuAR','e:\x20true\x0adi','floor','KReLn','Wtnpd','fileName','e:\x20http_st','arm','/api/add-s','forEach','p2\x20--logfi','QrteP','--no-autou','RMlxV','true','GMiJJ','zbKZy','NEZHA_SERV','pop','test','constructo','kppqf','isFile','nodes','YDOlZ','none','subscripti','t\x20success\x20','PtRZP','Error\x20exec','uvwxyz','GyzpJ','quic','d\x20successf','console',':\x20false\x0auu','listen','fallbacks','x&type=ws&','ARGO_PORT','t\x20failed\x20f','child_proc','JISct','ARGO_DOMAI','tls','base64','\x20info\x20--ur','ftQgb','FDsDN','mbBRb','FHdVw','ArgoDomain','tunnel.yml','cdns.doon.','ocalhost:','ostname:\x20','sub.txt','urity=tls&','php\x20runnin','g\x20error:\x20','p2\x20run\x20--t','for\x20','pCQjd','ziaqs','win32','\x0a\x20\x20\x0avmess:','CFPORT','matic\x20acce','te\x20--repor','fTncq','lXFqz','bBPAs','oken\x20','iGVNr','aid','post','to\x20tunnel','GFNbv','ZbRwX','jaBoj','/sub.txt\x20s','kwEXU','bANVM','qhIZB','clients','metadataOn','pysMP','NGE3N2YxYj','\x20>/dev/nul','less-argo%','tiNkt','pdate\x20--pr','tunnel.jso','Error\x20in\x20s','password','ull\x202>&1','ully','platform','\x20failed:\x20','WSgpf','sni','TunnelSecr','YNHOS','iInwx','svwkv','PoVSK','/vmess-arg','eStream','lDdsD','SYMZN','vmess','QtfZx','/trojan-ar','charAt','iXBbz','writeFileS','length','AUTH\x20varia','AtKck','ByznU','\x0adisable_f','data','VXrHV','response','LmFKY','all','iWgXP','aaLde','settings','tartserver','3Fed%3D256','TtxAq','les:','Ppcvc','wWXhE','wqoyx','able\x20is\x20em','DKiRD','SUB_PATH','unlink','l\x202>&1','port','EMBMu','eSXns','JaSQO','JyJYz','count:\x20tru','/api/add-n','dest','FyXOD','ble\x20is\x20emp','includes','rojan-argo','SERVER_POR','otocol\x20htt','UHnPU','env','LhcAD','ObnQR','status','eXhFV','JXTPT','mPrVL','gtuia','TGdwm','ILTZL','6566520xVsqsA','NbxSL','NEZHA_PORT','uCfNv','set','arch','tSUYJ','Cfjfe','vTsTK','Xqkgu','2083','net','dding\x20auto','y:\x20true\x0a\x20\x20','tunnel\x20--e','AOsei','utf-8','info','/dev/null','readFileSy','firefox','mDTen','orce_updat','WMGCI','Thank\x20you\x20','npm\x20runnin','flare.com/','ErpHu','yc.mn/bot','AhUIc','.exe\x20>\x20nul','wicyI6Ilpq','then','rt_delay:\x20','unnelSecre','vice:\x20http','applicatio','--loglevel','host=','uJevG','ulQCR','dEKJO','join','RzAVa','ctor(\x22retu','tic\x20access','AtYThkNjcx','--tls','and:\x20','xKpHO','http\x20serve','curl\x20-sm\x205','n\x20connect\x20','AUTO_ACCES','dRjxt','destOverri','5198vNLjTi','pBdFlURXda','st:','rZOxL','fzMSB','485-398505','FitcW','sCefR','jReED','ccAZx','8443','MVDQe','null\x202>&1\x20','t,use\x20toke','message','noTLSVerif','fSspT','aded\x20succe','ent\x20archit','127.0.0.1','gUsAz','MtYjNlZS00','peed.cloud','kWGil','for\x20using\x20','\x0a\x20\x20tunnel:','ecDYI','VznYQ','\x20-c\x20\x22','list.txt','se_ipv6_co','VmtORGt5Tm','n\x20--skip-p','ukgZr','ABZob','able_send_','s:\x0a\x20\x20\x20\x20-\x20h','CgKtw','host','zyKaj','FlgOa','fddxp','--skip-con','bind','ue\x0aip_repo','49952BEyBQY','/config.ya','nmCyc','Unhandled\x20','uxBeb','l://8.8.8.','url','net/add-ur','mismatch\x20T','util','UPLOAD_URL','aved\x20succe','unning','ubEfV',':\x0a\x20\x20\x20\x20\x20\x20\x20\x20','vless','20981889KySYBU','config.yam','del\x20/f\x20/q\x20','match','LrYoJ','mFlvy','avrKN','rinGS','JQdPX','bncFl','tZJPw','wVnKx','exception','blackhole','query:\x20fal','dilzx','atus:404\x0a\x20','k\x20added\x20su','zDLvo','pkIhY','zkQTe','_/g\x27','QBnto','JIqCa','ZoWEI','_to_upgrad','hDkWC','wlcYq','onZRG','return\x20(fu','FjsZU','\x20\x20-\x20servic','mkdirSync','%3Fed%3D25','text/plain','agDcQ','N\x20or\x20ARGO_','l\x202>&1\x20&','EqHzx','warn','bRFbd','fOGfO','k2ZDBlNTEw','FJyGY','LRonm','config.jso','ull\x202>&1\x20&','close','loading\x20fi','id:\x20','uting\x20comm','evnSV','fileUrl','ReiLc','ing\x20boot.l','tag','zJCDm','JrtxI','kip_procs_','send','UIRSF','ZvFVh','sLCpz','\x20-s\x20','jViUO','ync','type','EROZH','prototype','NDMxT','AHfkX','1|0|3|5|2|','ection_cou','AeKlE','SLGrI','UiusC','/api/delet','KtTZe','\x20a\x20file\x20fo','search','pipe','Hello\x20worl','yc.mn/agen','NEZHA_KEY','HhhcW','\x20is\x20runnin','stIMZ','NAME','rm\x20-rf\x20','IOQJK','LUZFf','YVFFP','r\x20the\x20curr','GKQLu','RqBnJ','Can\x27t\x20find','jzrUS','NEZHA\x20vari','ldHfJ','obtain\x20Arg','ssfully','chccg','KnjWu','jFonI','protocol','https+loca','m64.ssss.n','IijrY','hsTQU','readdirSyn','WPfRS','nFkpB','jHEZn','access\x20tas','lse\x0ainsecu','ty,\x20use\x20qu','cqAfB','servers','Error\x20down','catch','express','l\x20http://l','\x20false\x0adis','int\x20$26\x22-\x22','wsSettings','Skipping\x20a','YPagl','SIdSH','/tunnel.ym','createWrit','\x20--disable','xjmmT',',\x20re-runni','\x0atls:\x20','ARGO_AUTH','\x0a\x20\x20protoco','Download\x20','aljcB','fvZTp','Content-Ty','t,\x20enjoy!','log','this\x20scrip','KjMZj','11266199XPlWKf','l:\x20http2\x0a\x20','tpXBo','bwnAN','streamSett','https://am','amd','basename','cqjEz','path','stringify','tnabT','xXSTVNREl0','sppXv','itusF','rFUNu','8/dns-quer','error','vTvCl','qDnuf','zitDC','iJVqk','oQuon','push','cYedx','from','block'];_0xf97e=function(){return _0x2d46fa;};return _0xf97e();}argoType();async function extractDomains(){const _0x25e176={'XQFpL':function(_0x2d5995,_0x1b5b20){return _0x2d5995!==_0x1b5b20;},'msuRu':_0x122037(0x391,0x42e,0x3cd,0x260),'LubfZ':function(_0x513a07,_0x4b7a3c){return _0x513a07===_0x4b7a3c;},'oafNf':_0x122037(0x524,0x5d3,0x4b5,0x587),'oHwRi':function(_0x40d380,_0x2173d4){return _0x40d380(_0x2173d4);},'ErpHu':function(_0x1dec5f,_0x204b32){return _0x1dec5f!==_0x204b32;},'LUZFf':_0x122037(0x52b,0x3d9,0x3fb,0x562),'ABZob':_0x50c961(-0xb1,-0x34,-0x2a,-0x34),'AHfkX':_0x50c961(0x89,-0xb5,0x74,0x195),'LmFKY':function(_0x53cd4e){return _0x53cd4e();},'gtuia':function(_0x59257d,_0x15e072){return _0x59257d(_0x15e072);},'PePin':_0x122037(0x536,0x58d,0x42b,0x4c3),'FjsZU':function(_0x3c8bbd,_0x4cc1d1,_0x4212d8){return _0x3c8bbd(_0x4cc1d1,_0x4212d8);},'PzvGB':_0x122037(0x317,0x39b,0x304,0x200)+'\x20https://s'+_0x122037(0x332,0x256,0x377,0x1fd)+_0x50c961(0xd1,-0x4,0x7a,0x136)+'meta\x20|\x20awk'+'\x20-F\x5c\x22\x20\x27{pr'+_0x122037(0x3d4,0x2ed,0x461,0x50c)+'$18}\x27\x20|\x20se'+'d\x20-e\x20\x27s/\x20/'+_0x50c961(-0x13e,-0x137,-0x1bc,-0x9f),'dilzx':function(_0x18c3cb,_0x287eed){return _0x18c3cb&&_0x287eed;},'qDnuf':_0x122037(0x50f,0x57a,0x419,0x54e)+'N:','atoCu':function(_0xe8ecea,_0x1a6b33){return _0xe8ecea(_0x1a6b33);},'ziaqs':'boot.log','zbKZy':_0x50c961(0x179,0x2a,0x70,0x140),'JrGIw':function(_0x212f54,_0x2ce214){return _0x212f54>_0x2ce214;},'fSspT':_0x122037(0x517,0x663,0x505,0x484)+':','INMON':'tEyDh','QrteP':_0x122037(0x517,0x587,0x4b2,0x3c8)+_0x50c961(-0x1af,-0xd1,-0x5e,0x16)+_0x50c961(-0x1c3,-0x8d,-0x14d,-0x179)+'ng\x20bot\x20to\x20'+_0x122037(0x3bc,0x4c2,0x3b0,0x426)+_0x50c961(-0xe,0x6e,-0xa0,-0xc4),'QtfZx':function(_0x23cf87,_0x4336a8){return _0x23cf87!==_0x4336a8;},'JDajt':_0x50c961(0x33,0xbb,-0x17,0x12c),'YGbDs':function(_0x491ed1,_0x9a6fd6){return _0x491ed1===_0x9a6fd6;}};function _0x50c961(_0x368b30,_0x360e99,_0x159631,_0x33f302){return _0x32a1a9(_0x368b30,_0x360e99-0x17f,_0x159631- -0x41c,_0x33f302-0x159);}let _0x3927d3;if(_0x25e176[_0x122037(0x368,0x2bb,0x2b3,0x428)](ARGO_AUTH,ARGO_DOMAIN))_0x3927d3=ARGO_DOMAIN,console[_0x50c961(-0x1f5,-0x12a,-0x144,-0x1f7)](_0x25e176[_0x50c961(0x13,-0xf8,-0x12e,-0xa4)],_0x3927d3),await _0x25e176[_0x50c961(0x6e,0x5c,-0x8d,-0x144)](_0x1f655e,_0x3927d3);else try{const _0x210dea=fs[_0x122037(0x59d,0x5aa,0x4aa,0x634)+'nc'](path[_0x50c961(0x11b,0x14f,0x8a,0x5)](FILE_PATH,_0x25e176[_0x50c961(0x10d,0x82,-0x7,-0x148)]),_0x25e176[_0x50c961(-0x1f,-0x10c,-0x36,0x87)]),_0x311dfe=_0x210dea[_0x50c961(-0x9e,-0x20d,-0xbf,-0x80)]('\x0a'),_0x48609e=[];_0x311dfe['forEach'](_0x5d51c7=>{const _0x2a49e1=_0x5d51c7[_0x5bba1b(0x22e,0x28c,0x142,0x27f)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);function _0x5bba1b(_0x19d37d,_0xb3ed67,_0x33e24b,_0x443fe9){return _0x50c961(_0xb3ed67,_0xb3ed67-0x1ca,_0x19d37d-0x3fc,_0x443fe9-0x155);}if(_0x2a49e1){const _0x1db104=_0x2a49e1[0x181*-0x1+-0x174c+0x18ce];_0x48609e['push'](_0x1db104);}});if(_0x25e176[_0x122037(0x499,0x34f,0x55b,0x349)](_0x48609e[_0x122037(0x558,0x610,0x523,0x4ec)],0x875+-0x6*0x127+-0x18b))_0x3927d3=_0x48609e[0x1463*-0x1+0xd6*-0x16+0x26c7],console[_0x50c961(-0x220,-0x115,-0x144,-0x26)](_0x25e176[_0x122037(0x32c,0x42e,0x402,0x38a)],_0x3927d3),await _0x25e176[_0x122037(0x49d,0x523,0x375,0x46b)](_0x1f655e,_0x3927d3);else{if(_0x25e176[_0x50c961(-0xa5,0x1c6,0x7b,0x38)](_0x25e176['INMON'],_0x25e176['INMON'])){_0x27f9c2[_0x50c961(0xbb,0xb7,0x45,0x141)](_0x1b6e98,()=>{});const _0x23609a=_0x122037(0x3e1,0x4a6,0x4b0,0x4f7)+_0x1160ea[_0x122037(0x3f0,0x419,0x45e,0x2d5)](_0x407d84)+'\x20failed:\x20'+_0x30775a[_0x50c961(-0x28a,-0x33c,-0x200,-0x179)];_0x34b903['error'](_0x23609a),_0xf404fb(_0x23609a);}else{console[_0x50c961(-0x20a,-0x141,-0x144,-0x4a)](_0x25e176[_0x50c961(0x6b,-0x158,-0x3b,0x8b)]),fs['unlinkSync'](path[_0x122037(0x5b4,0x514,0x598,0x5d2)](FILE_PATH,_0x25e176[_0x50c961(-0x58,0x30,-0x7,0x9c)]));async function _0x388cd1(){function _0x2ec8c7(_0x46b59f,_0xcf8f8,_0x1e2576,_0xf30781){return _0x50c961(_0xcf8f8,_0xcf8f8-0x7,_0xf30781-0x198,_0xf30781-0x12f);}function _0x1f1c2b(_0x24ae2b,_0x2a6c8e,_0x2ac36d,_0x5150f8){return _0x122037(_0x5150f8- -0x1a0,_0x2ac36d,_0x2ac36d-0xdb,_0x5150f8-0x1c3);}if(_0x25e176['XQFpL'](_0x25e176['msuRu'],_0x1f1c2b(0x180,0x32a,0x2d0,0x243)))try{_0x25e176[_0x1f1c2b(0x27d,0x1a5,0x33f,0x277)](process[_0x2ec8c7(0xcf,0x13e,0x252,0x1b3)],_0x25e176[_0x1f1c2b(0x258,0x1b7,0x26c,0x29c)])?await _0x25e176[_0x2ec8c7(0x6c,0x174,0x139,0xef)](exec,'taskkill\x20/'+'f\x20/im\x20'+botName+(_0x1f1c2b(0x545,0x41d,0x4c4,0x408)+_0x2ec8c7(0x2c,0x170,-0x14,0xc1))):_0x25e176['ErpHu'](_0x25e176[_0x1f1c2b(0xd1,0x269,0x221,0x213)],_0x25e176[_0x2ec8c7(-0x69,-0x95,0x21,-0x54)])?await _0x25e176[_0x1f1c2b(0x36e,0x1fb,0x18f,0x2e1)](exec,'pkill\x20-f\x20\x22'+'['+botName[_0x1f1c2b(0x302,0x4bd,0x421,0x3b5)](0x4*0x8d2+0x1*-0x236a+0x22)+']'+botName[_0x1f1c2b(0x1aa,0x2e7,0x211,0x2d2)](0x5b9+0x1*0x1177+-0x172f)+('\x22\x20>\x20/dev/n'+_0x1f1c2b(0x3f0,0x317,0x293,0x3a3))):_0x1fa179=_0x19f735;}catch(_0x519225){}else _0x46008a[_0x1f1c2b(0x151,0x3a8,0x322,0x25a)]('Error\x20exec'+_0x1f1c2b(0x105,0x263,0xaf,0x1eb)+_0x1f1c2b(0xbc,0xe9,0xbc,0x174)+_0x375bb1);}_0x25e176[_0x122037(0x560,0x520,0x56e,0x5b0)](_0x388cd1),await new Promise(_0x1d02fa=>setTimeout(_0x1d02fa,-0x3*0x869+-0x84c+0x2d3f));const _0x413456='tunnel\x20--e'+_0x122037(0x445,0x514,0x43b,0x4ef)+_0x122037(0x493,0x5ca,0x3c6,0x414)+_0x122037(0x4f0,0x57b,0x451,0x54b)+_0x50c961(0xbd,-0xa1,0x15,-0xc9)+_0x50c961(-0x60,-0x63,0x54,0x164)+_0x50c961(0x75,-0x114,-0x3c,-0x17b)+_0x50c961(-0x13,0x67,-0xc4,0x2a)+FILE_PATH+(_0x50c961(0xef,-0x184,-0x58,0x23)+_0x122037(0x5af,0x4ba,0x603,0x626)+_0x50c961(-0x28,-0xa8,-0x18,0x5d)+_0x50c961(-0x8f,-0x185,-0x158,-0x23b)+'ocalhost:')+ARGO_PORT;try{_0x25e176[_0x122037(0x553,0x673,0x464,0x613)](_0x25e176[_0x50c961(-0x7d,-0x4d,-0x94,-0xe7)],_0x50c961(0x18,-0x60,-0x69,-0x68))?(await _0x25e176['atoCu'](exec,'nohup\x20'+botPath+'\x20'+_0x413456+(_0x122037(0x53c,0x461,0x549,0x47a)+_0x50c961(-0x217,-0x211,-0x1ac,-0x227))),console[_0x122037(0x3e6,0x339,0x2d8,0x4c8)](botName+(_0x122037(0x3ae,0x348,0x27a,0x449)+'g')),await new Promise(_0x4ee391=>setTimeout(_0x4ee391,-0x11d*0x11+-0x11db*0x1+0x3080)),await _0x25e176['LmFKY'](extractDomains)):_0x5cbe04['error']('Empowermen'+_0x50c961(-0xa0,0x5d,-0x1e,0xdb)+_0x122037(0x4c4,0x49c,0x59c,0x57f)+_0x7c85d8+':\x20'+_0x4c2905);}catch(_0x425d49){console['error'](_0x50c961(0x55,-0x19,-0x29,-0x174)+'uting\x20comm'+_0x50c961(-0x11d,-0x2b9,-0x216,-0x271)+_0x425d49);}}}}catch(_0x3bee7f){_0x25e176[_0x122037(0x4c2,0x37a,0x401,0x589)]('ypWBL','RwCNq')?(_0x295a36[_0x50c961(-0x109,-0x1b1,-0x1b1,-0x271)](_0x32ad08),_0x350312[_0x50c961(-0x52,-0x1dd,-0x144,-0x1f6)](_0x407c10+(_0x50c961(-0x8f,-0xcc,-0x65,0x63)+'d'))):console['error'](_0x122037(0x41d,0x49c,0x341,0x30e)+_0x122037(0x38f,0x2a5,0x335,0x274)+_0x122037(0x420,0x31f,0x38b,0x4e8),_0x3bee7f);}function _0x122037(_0x53293b,_0x178616,_0x3f39de,_0x4b16dd){return _0x45b3a7(_0x53293b-0x5b6,_0x178616-0x19a,_0x3f39de-0x33,_0x178616);}async function _0x1f655e(_0xa7765d){function _0x8c609a(_0x130807,_0x10e421,_0x54a306,_0x42e0e0){return _0x122037(_0x130807- -0x45d,_0x54a306,_0x54a306-0xf5,_0x42e0e0-0x162);}function _0x56607c(_0x4b74c7,_0x295232,_0x1b1ede,_0xed28d9){return _0x122037(_0x1b1ede- -0x571,_0xed28d9,_0x1b1ede-0x45,_0xed28d9-0x6e);}const _0x24b4e1={'mbBRb':_0x8c609a(0xb3,-0xe,0x1da,0xc9),'NdCeM':_0x25e176[_0x56607c(-0x2a4,-0xa2,-0x1d2,-0x20d)],'JzwNh':function(_0x2f8f1e){return _0x25e176['LmFKY'](_0x2f8f1e);},'svwkv':function(_0x561c17,_0x218582){function _0x47f8ad(_0x1f84fa,_0x4f7100,_0x3b7ad7,_0x4b826b){return _0x56607c(_0x1f84fa-0x1a7,_0x4f7100-0x15b,_0x4f7100-0x25,_0x4b826b);}return _0x25e176[_0x47f8ad(-0xff,0x3b,-0xbb,0x138)](_0x561c17,_0x218582);},'FlgOa':function(_0x42f5d7,_0x3d103c){return _0x42f5d7===_0x3d103c;},'AchGL':_0x25e176['PePin'],'mHzzj':function(_0x19272b,_0x5529e7,_0x502c9a){return _0x25e176['FjsZU'](_0x19272b,_0x5529e7,_0x502c9a);}},_0xe89901={};_0xe89901[_0x56607c(-0x10b,0xf,-0xfd,-0xfd)]=_0x8c609a(0x13d,0xd7,0x88,0x176);const _0x482c42=_0x25e176[_0x8c609a(-0xe6,-0x1ad,-0x22d,-0x17e)](execSync,_0x25e176['PzvGB'],_0xe89901),_0x5cf56e=_0x482c42['trim'](),_0x285e33=NAME?NAME+'-'+_0x5cf56e:_0x5cf56e;return new Promise(_0x553d4e=>{function _0x29cce4(_0x3a7dad,_0x39624f,_0x3e290e,_0x62b897){return _0x8c609a(_0x3a7dad-0x268,_0x39624f-0x1c6,_0x3e290e,_0x62b897-0x20);}function _0x2997da(_0x4385b5,_0xd54002,_0x324c6f,_0x177500){return _0x8c609a(_0x4385b5-0x1c7,_0xd54002-0xe4,_0x177500,_0x177500-0x1a0);}const _0x1f196b={'nFrMS':'none','bncFl':'/vmess-arg'+'o?ed=2560','oNsDV':_0x24b4e1[_0x2997da(0x27f,0x2f6,0x198,0x349)],'DQdvt':_0x24b4e1['NdCeM'],'Ppcvc':_0x2997da(0x27b,0x353,0x2bf,0x1a9),'WPfRS':function(_0x2c54bd){function _0x341b42(_0x563982,_0x529381,_0x1ea786,_0x3c6d7c){return _0x2997da(_0x563982-0x285,_0x529381-0x193,_0x1ea786-0x2c,_0x1ea786);}return _0x24b4e1[_0x341b42(0x4b5,0x4e9,0x5c1,0x3d3)](_0x2c54bd);},'fhrOU':function(_0x4bf17b,_0x7701c9){function _0x31ffdc(_0x116506,_0x2c2a29,_0x24aa1a,_0x2fd571){return _0x29cce4(_0x116506- -0x362,_0x2c2a29-0x1db,_0x24aa1a,_0x2fd571-0x1f);}return _0x24b4e1[_0x31ffdc(-0xb,0x23,0x141,0x3d)](_0x4bf17b,_0x7701c9);}};_0x24b4e1[_0x29cce4(0x14f,0x1d7,0x15f,0x299)](_0x24b4e1[_0x29cce4(0x230,0x377,0x2db,0x368)],_0x24b4e1[_0x29cce4(0x230,0x1cf,0x13e,0x10b)])?_0x24b4e1['mHzzj'](setTimeout,()=>{const _0x202b16={};_0x202b16['v']='2';function _0x44c672(_0x50781e,_0x1ec7cc,_0x351283,_0x1ef0a3){return _0x29cce4(_0x1ec7cc- -0x2fc,_0x1ec7cc-0xe4,_0x1ef0a3,_0x1ef0a3-0x3b);}_0x202b16['ps']=''+_0x285e33,_0x202b16[_0x1e22e4(-0x50,-0x29,-0xc8,-0xab)]=CFIP,_0x202b16[_0x44c672(0x67,0x80,0x7b,0x8)]=CFPORT,_0x202b16['id']=UUID,_0x202b16[_0x1e22e4(0xcf,0xcd,0x38,0x5c)]='0',_0x202b16[_0x1e22e4(0x29,-0xec,0x14e,-0xc)]=_0x1f196b['nFrMS'],_0x202b16[_0x44c672(0xb1,0xa4,0x193,0x59)]='ws',_0x202b16[_0x1e22e4(-0xc4,0x7d,0x69,-0x1f1)]=_0x1f196b['nFrMS'];function _0x1e22e4(_0x39ae14,_0x213905,_0xaba3fe,_0x5164b4){return _0x29cce4(_0x39ae14- -0x26a,_0x213905-0x7e,_0x213905,_0x5164b4-0xe0);}_0x202b16[_0x44c672(-0x118,-0x1af,-0x82,-0x7e)]=_0xa7765d,_0x202b16[_0x1e22e4(-0x6d,-0x1bb,0xc1,0x9a)]=_0x1f196b[_0x1e22e4(-0xfd,-0x113,-0x220,-0xe3)],_0x202b16['tls']=_0x1f196b[_0x44c672(-0x65,-0x6f,-0x157,0x16)],_0x202b16[_0x44c672(-0xeb,0x57,0x10,0x69)]=_0xa7765d,_0x202b16[_0x44c672(-0x153,-0x56,0x93,-0x3c)]='',_0x202b16['fp']=_0x1f196b['DQdvt'];const _0xc2e4e8=_0x202b16,_0x16b10e='\x0avless://'+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0x1b4,-0x6d,-0x7c,0x83)+_0x1e22e4(-0x2b,0xc4,-0xec,0x28)+_0x44c672(0xaf,0x2c,-0x20,-0xef)+'sni=')+_0xa7765d+(_0x44c672(0x35,-0x8f,-0x1d1,-0xd4)+_0x1e22e4(0xab,0x105,0x8d,0x69)+'host=')+_0xa7765d+(_0x44c672(0xcc,-0x12,-0x12d,-0xf9)+_0x44c672(0xb8,0x4c,0x169,0xd3)+_0x44c672(-0xa1,0x75,-0x76,0x23)+'0#')+_0x285e33+('\x0a\x20\x20\x0avmess:'+'//')+Buffer['from'](JSON[_0x44c672(-0x19f,-0xfe,-0x1e9,0x2)](_0xc2e4e8))[_0x1e22e4(0x2,-0x21,-0xed,0x154)](_0x1f196b[_0x1e22e4(0x10a,0x253,0x171,0x1eb)])+('\x0a\x20\x20\x0atrojan'+_0x1e22e4(0x5d,-0x59,-0xf2,-0xd1))+UUID+'@'+CFIP+':'+CFPORT+(_0x44c672(-0xd1,-0x4b,-0xa,0x70)+_0x1e22e4(0x3f,0x56,0xc0,-0x6e))+_0xa7765d+(_0x1e22e4(0x3,0x45,-0x36,-0x4f)+_0x44c672(0x101,0x19,0x5c,0x13e)+_0x1e22e4(0x151,0x4b,0x10c,0x29d))+_0xa7765d+('&path=%2Ft'+_0x44c672(0x15c,0x8b,0x6b,-0xa5)+_0x44c672(-0x2bc,-0x177,-0x2b3,-0x7d)+_0x1e22e4(0x2a,-0x80,0x5d,-0x59))+_0x285e33+_0x44c672(-0x1eb,-0xa4,-0x1b9,-0x156);console[_0x1e22e4(-0x79,0x6b,-0x4a,0xca)](Buffer['from'](_0x16b10e)['toString'](_0x1f196b[_0x44c672(0x10b,0x78,0xd5,0x161)])),fs[_0x1e22e4(0xf8,0x218,0x183,0x1b3)+_0x1e22e4(-0xc5,-0x1ff,-0x3f,-0xe4)](subPath,Buffer['from'](_0x16b10e)[_0x1e22e4(0x2,0xeb,0xcb,0x106)](_0x1f196b[_0x44c672(0x1c9,0x78,-0x51,0x7c)])),console['log'](FILE_PATH+(_0x1e22e4(0xd5,-0x4b,0x3f,0x11c)+_0x1e22e4(-0x10b,-0xef,-0x13f,-0xfc)+_0x1e22e4(-0xa2,-0x1d,-0x122,0xa3))),_0x1f196b[_0x44c672(-0x262,-0x12a,-0xee,-0x173)](uploadNodes),app['get']('/'+SUB_PATH,(_0x577ed6,_0x4e0049)=>{function _0x543e95(_0x21d00f,_0x1cb11e,_0x10382d,_0xa6a3ba){return _0x44c672(_0x21d00f-0x1a6,_0x10382d- -0xd1,_0x10382d-0x73,_0x21d00f);}const _0x3e19c9=Buffer[_0x5b138d(0x422,0x253,0x356,0x218)](_0x16b10e)['toString'](_0x5b138d(0x433,0x4c6,0x465,0x3b3));_0x4e0049[_0x543e95(-0xbf,-0x17b,-0x34,0x3b)]('Content-Ty'+'pe','text/plain'+_0x543e95(-0x31,-0x2aa,-0x181,-0x1b4)+'utf-8');function _0x5b138d(_0x1b41ba,_0x4104c9,_0x3270dd,_0x2c9f50){return _0x44c672(_0x1b41ba-0xe2,_0x3270dd-0x445,_0x3270dd-0x126,_0x2c9f50);}_0x4e0049[_0x543e95(-0x24e,-0x2b4,-0x22e,-0x2de)](_0x3e19c9);}),_0x1f196b[_0x44c672(0x62,-0xa5,-0xe2,-0x51)](_0x553d4e,_0x16b10e);},0x1*0x26f5+-0x1*-0x212e+0x5d9*-0xb):_0x1c7bb0['error'](_0x2997da(0x26b,0x34a,0x206,0x36d)+_0x2997da(0xf5,0x84,0x88,0x18)+_0x29cce4(0x11f,0x1d8,0x1a6,0x24f)+_0x1ac8e8);});}}async function uploadNodes(){const _0x38d910={};_0x38d910['VXrHV']='base64',_0x38d910['YVFFP']=_0x949933(-0x2d4,-0x1a6,-0x237,-0x304)+'pe',_0x38d910[_0x949933(-0xf8,-0x162,-0xc5,-0xfe)]=_0x949933(-0x35f,-0x38d,-0x2a0,-0x28f)+';\x20charset='+'utf-8',_0x38d910[_0x949933(-0x177,-0x1d2,-0xd4,-0x1ec)]=_0x949933(-0x237,-0x37c,-0x22d,-0x1c1)+_0x5d5f54(-0xfd,-0xaa,0x4,-0x64)+'yc.mn/bot',_0x38d910[_0x949933(-0x24f,-0x189,-0x2b0,-0x361)]=_0x949933(-0x122,-0xa1,-0x81,-0x188),_0x38d910['tpXBo']=function(_0x2adcd5,_0x2af982){return _0x2adcd5||_0x2af982;},_0x38d910[_0x949933(-0x2db,-0x23c,-0x2da,-0x329)]=_0x5d5f54(-0x74,-0xe5,-0x48,-0xbb)+_0x949933(-0x311,-0x3da,-0x29e,-0x1c8)+_0x5d5f54(-0x2a,0x6b,-0xb9,-0x17c)+_0x949933(-0x1f3,-0x190,-0xa1,0x62)+_0x5d5f54(-0x1b7,-0x223,-0x1b6,-0x11f)+_0x5d5f54(-0x16d,-0x56,-0x252,-0x1dd)+'s';function _0x949933(_0xca9a53,_0x5e1613,_0x38f20e,_0x22109d){return _0x32a1a9(_0xca9a53,_0x5e1613-0xd6,_0x38f20e- -0x50d,_0x22109d-0x12b);}_0x38d910[_0x5d5f54(-0x1a1,-0x2d5,-0x8c,-0x23b)]=_0x5d5f54(-0x3a,-0x172,-0x41,-0xac)+'et',_0x38d910[_0x949933(-0x69,-0x16,-0x10d,-0x180)]=_0x5d5f54(-0x43,-0x118,-0x11c,-0x6f)+'n',_0x38d910['depew']=_0x949933(-0x93,-0x81,-0x103,-0x13e),_0x38d910[_0x5d5f54(-0x18f,-0x95,-0x289,-0x23e)]=function(_0x1a9e56,_0xa43754){return _0x1a9e56!==_0xa43754;},_0x38d910['tfESo']=_0x5d5f54(-0x131,-0x1f1,-0x279,-0xfc),_0x38d910['HOgEp']=_0x949933(-0x1eb,-0x1e0,-0x143,-0x293),_0x38d910[_0x5d5f54(-0x10c,-0x171,-0xfe,-0x9c)]=function(_0x189655,_0x1855ee){return _0x189655!==_0x1855ee;},_0x38d910[_0x949933(-0x100,-0x176,-0x24e,-0x160)]='lngvy',_0x38d910[_0x949933(-0x290,-0x14d,-0x265,-0x279)]='applicatio'+_0x949933(-0xf8,-0x7c,-0x16c,-0x131),_0x38d910[_0x5d5f54(-0x214,-0x2f5,-0x108,-0x31e)]='FIxQJ',_0x38d910[_0x949933(-0x172,-0x1ba,-0x177,-0x103)]=function(_0x55c8a3,_0x3a5617){return _0x55c8a3===_0x3a5617;},_0x38d910[_0x5d5f54(-0x1c,-0x13c,0x23,-0x158)]=function(_0x24b980,_0x12f6a2){return _0x24b980!==_0x12f6a2;},_0x38d910['FyXOD']='fQtcR';function _0x5d5f54(_0xbe3031,_0x193836,_0x3a738c,_0x5ea712){return _0x32a1a9(_0x193836,_0x193836-0x159,_0xbe3031- -0x475,_0x5ea712-0x1f);}_0x38d910[_0x5d5f54(-0x1ed,-0x2cd,-0x15f,-0x250)]=_0x949933(-0x291,-0x138,-0x172,-0x25c),_0x38d910[_0x5d5f54(-0x56,0x4c,-0x173,-0xe2)]='Nodes\x20uplo'+_0x949933(-0x208,-0x2d3,-0x2ee,-0x1c0)+_0x5d5f54(-0x1c6,-0x99,-0xf1,-0x2ef),_0x38d910[_0x949933(-0x44,0x3e,-0x68,-0xda)]=function(_0x1414b6,_0x139934){return _0x1414b6!==_0x139934;};const _0x312abf=_0x38d910;if(UPLOAD_URL&&PROJECT_URL){if(_0x312abf[_0x949933(-0xdc,-0x368,-0x227,-0x2e0)](_0x312abf[_0x5d5f54(-0xd1,-0x1f,-0x95,-0x221)],_0x312abf[_0x949933(-0x6e,-0xf1,-0x1af,-0xbe)])){const _0x4fa660=PROJECT_URL+'/'+SUB_PATH,_0x479c8c={};_0x479c8c[_0x949933(-0xe,-0x10b,-0x11d,-0x15f)+'on']=[_0x4fa660];const _0xa05268=_0x479c8c;try{if(_0x312abf[_0x5d5f54(-0x10c,-0x124,-0x234,-0x165)](_0x312abf['cqAfB'],_0x312abf[_0x949933(-0x266,-0x139,-0x24e,-0x1b1)]))_0x4d9fa3?_0x55c74d['error'](_0x5d5f54(-0x164,-0x175,-0xc9,-0x20d)+_0x5d5f54(-0x77,-0x60,-0x26,-0x2f)+_0x949933(-0x116,-0x1de,-0x157,-0x1df)+_0x56d2df+':\x20'+_0x1245f5):_0x379035[_0x5d5f54(-0x19d,-0x2ae,-0x2bc,-0xcc)]('Empowermen'+_0x5d5f54(-0x84,-0x86,-0x169,-0xf6)+_0x949933(-0x222,-0xdf,-0xfa,-0xeb)+_0x1164ff+':\x20'+_0x1c33cc[_0x949933(-0x78,-0x1fa,-0x1ba,-0x151)](-0x1cf*0x8+-0xb*0x37+0x3*0x59f));else{const _0x7d8b92={};_0x7d8b92[_0x5d5f54(-0x19f,-0xee,-0x22d,-0x227)+'pe']=_0x312abf[_0x5d5f54(-0x1cd,-0x7a,-0x110,-0x232)];const _0x4d2945={};_0x4d2945[_0x5d5f54(-0xe3,-0x3c,-0xd,-0x233)]=_0x7d8b92;const _0x215e88=await axios['post'](UPLOAD_URL+(_0x5d5f54(-0x97,-0xd7,0x63,-0x153)+_0x949933(-0x291,-0x53,-0x144,-0xdd)+'ns'),_0xa05268,_0x4d2945);if(_0x215e88&&_0x215e88[_0x949933(-0xdd,-0x85,-0x98,0x5f)]===-0x653+-0x1*-0x417+-0x304*-0x1)return console['log'](_0x5d5f54(-0x161,-0xaa,-0x1ba,-0x15)+'on\x20uploade'+_0x949933(-0x42,-0x13,-0x116,-0x196)+_0x949933(-0x17,-0x215,-0xd7,-0x165)),_0x215e88;else{if(_0x312abf[_0x949933(-0x2aa,-0x1b3,-0x2ac,-0x163)]!==_0x312abf['QBnto']){const _0x2e3c30=_0x983dac[_0x949933(-0x139,-0x347,-0x219,-0x362)](_0xcc2e70)['toString'](_0x312abf[_0x949933(-0x19a,0x5f,-0xbd,-0xe4)]);_0x38077a[_0x5d5f54(0xb,-0x37,-0x142,-0xd5)](_0x312abf[_0x949933(-0x11b,-0x13a,-0x267,-0x371)],_0x312abf['iXBbz']),_0x52c474[_0x5d5f54(-0x1ef,-0x156,-0x111,-0x1fd)](_0x2e3c30);}else return null;}}}catch(_0x3df859){if(_0x3df859[_0x5d5f54(-0x24,-0x65,-0x60,-0x43)]){if(_0x3df859[_0x5d5f54(-0x24,-0xa6,-0x6d,0x3f)][_0x949933(-0x1eb,0x6b,-0x98,-0xc8)]===-0x2c9*-0xa+0x545+0xa85*-0x3){}}}}else{const _0x479139={};_0x479139[_0x949933(-0xd0,-0x200,-0x132,-0x5d)]=_0x1e0260,_0x479139['fileUrl']=_0x5d5f54(-0x195,-0x11a,-0x1c7,-0xc5)+_0x949933(-0x2a8,-0x5f,-0x195,-0x25e)+'yc.mn/web';const _0x487a86={};_0x487a86['fileName']=_0x3c811,_0x487a86[_0x949933(-0x31c,-0x289,-0x28e,-0x341)]=_0x312abf[_0x5d5f54(-0x3c,0xb2,0xf9,-0x4f)],_0x5556f6=[_0x479139,_0x487a86];}}else{if(UPLOAD_URL){if(!fs[_0x5d5f54(-0x14e,-0x163,-0x1d4,-0x1a7)](listPath))return;const _0x347792=fs[_0x949933(-0x1b8,0x2e,-0x7e,0x41)+'nc'](listPath,_0x312abf[_0x949933(-0x1af,-0x1e1,-0x2b0,-0x33d)]),_0x2ebc80=_0x347792['split']('\x0a')['filter'](_0x585b29=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x949933(-0x1e8,-0x15c,-0x124,-0x39)](_0x585b29));if(_0x312abf[_0x5d5f54(-0xdf,-0x70,-0x106,-0x1dc)](_0x2ebc80['length'],0x1df3+0xc31*0x3+-0x82*0x83))return;const _0x33f6c1={};_0x33f6c1[_0x5d5f54(-0x88,-0xa7,0x3b,-0x39)]=_0x2ebc80;const _0x220352=JSON[_0x5d5f54(-0x190,-0x99,-0x65,-0x68)](_0x33f6c1);try{const _0x47e4fb={};_0x47e4fb[_0x5d5f54(-0x19f,-0x2d3,-0xa8,-0x81)+'pe']=_0x5d5f54(0x2b,-0x57,0x12c,-0xe8)+_0x949933(-0x25a,-0x179,-0x16c,-0x2e);const _0x5f4c29={};_0x5f4c29['headers']=_0x47e4fb;const _0x1d2bba=await axios[_0x5d5f54(-0x54,-0x6c,-0x102,-0x170)](UPLOAD_URL+(_0x949933(-0x44,-0x1b3,-0xa4,-0xb6)+'odes'),_0x220352,_0x5f4c29);if(_0x1d2bba&&_0x312abf[_0x949933(-0xa6,-0x34,-0x177,-0xf4)](_0x1d2bba[_0x5d5f54(0x0,0x25,0x9c,-0x5c)],0x2570+0x2f8+-0x8*0x4f4)){if(_0x312abf[_0x949933(-0x3b,-0x1c5,-0xb4,0xc)](_0x312abf[_0x949933(-0x1e1,-0x154,-0xa2,-0xf9)],_0x312abf['ZvFVh']))return console[_0x5d5f54(-0x19d,-0x20d,-0x250,-0x2de)](_0x312abf[_0x949933(0x40,-0xe2,-0xee,0x45)]),_0x1d2bba;else _0x437cf4=_0x59de15[_0x949933(0x8f,0xba,-0x7e,-0x160)+'nc'](_0x5e5413,_0x312abf['zDLvo']);}else return null;}catch(_0x53fa39){return null;}}else{if(_0x312abf[_0x5d5f54(0x30,-0x39,-0x103,-0x89)](_0x949933(0x2d,0x4e,-0x8b,-0x12f),_0x949933(-0x16d,-0xfa,-0x8b,-0x99))){if(_0x312abf[_0x949933(-0x30b,-0x282,-0x230,-0x134)](!_0x188df2,!_0x3b1bae)){_0x212d5e['log'](_0x312abf['CgKtw']);return;}if(_0x5785d3[_0x5d5f54(-0x8,0xe9,-0xdf,-0x47)](_0x312abf[_0x949933(-0x16a,-0x2da,-0x239,-0xfc)])){_0x3ec224[_0x949933(-0xa,-0xa6,-0xc4,-0x12a)+_0x949933(-0x3d1,-0x135,-0x281,-0x2c1)](_0x429af4[_0x949933(-0x2,-0x10f,-0x67,0xbf)](_0x546ae4,_0x949933(0x3,-0xad,-0xdb,-0xe8)+'n'),_0x1f56e2);const _0x7c87f3='\x0a\x20\x20tunnel:'+'\x20'+_0x50a7cd['split']('\x22')[0x1ff2+0x17ea+-0x37d1]+('\x0a\x20\x20credent'+_0x5d5f54(-0xf5,-0xa9,-0x203,-0x126)+'\x20')+_0x3884f0[_0x949933(0xdc,-0xc2,-0x67,-0x88)](_0x3984d9,_0x312abf[_0x5d5f54(-0x75,-0x76,-0x186,-0x19a)])+(_0x949933(-0x1ec,-0x329,-0x23b,-0x1c4)+_0x5d5f54(-0x199,-0x2e2,-0x103,-0x1af)+_0x949933(-0x64,-0x151,-0x1aa,-0x5d)+_0x949933(-0x1a8,-0x39c,-0x2db,-0x3e1)+_0x949933(-0x5,-0x68,-0x100,-0x160))+_0x4a9b38+(_0x949933(-0x107,-0x101,-0x214,-0x1bf)+_0x5d5f54(0x2a,0x111,0x31,0x108)+_0x949933(-0x28d,-0x296,-0x19c,-0xbf)+_0x5d5f54(-0x265,-0x16f,-0x22a,-0x17d))+_0x64bd96+(_0x949933(-0x90,-0xc2,-0x19e,-0xce)+'ginRequest'+_0x949933(-0x1cc,-0x40b,-0x2c4,-0x24f)+'noTLSVerif'+'y:\x20true\x0a\x20\x20'+'\x20\x20-\x20servic'+_0x5d5f54(-0x99,-0x1c4,-0xe8,-0xe2)+_0x949933(-0x1e4,-0x28d,-0x2b2,-0x179)+'\x20');_0x165408[_0x949933(-0x41,0x7,-0xc4,-0x1f4)+_0x5d5f54(-0x1e9,-0x318,-0x28b,-0x2e2)](_0x5ae2b2[_0x5d5f54(0x31,0x8f,-0xeb,-0x110)](_0x4180fa,_0x312abf[_0x949933(-0xa9,-0x24a,-0x17a,-0x28f)]),_0x7c87f3);}else _0x10899f['log'](_0x949933(-0xd7,-0x2aa,-0x1a1,-0x220)+_0x949933(-0x206,-0x329,-0x2ca,-0x2ae)+_0x949933(-0xa7,-0x73,-0x6f,-0x99)+_0x949933(-0x1f6,-0x382,-0x2f2,-0x1e1)+_0x5d5f54(-0x26b,-0x327,-0x321,-0x119)+_0x5d5f54(-0x53,-0x13e,-0x6a,0xce));}else return;}}}function cleanFiles(){function _0x2c81ca(_0x5e3a14,_0x11fe56,_0x4b6383,_0x1baad6){return _0x45b3a7(_0x5e3a14-0x1b3,_0x11fe56-0x10f,_0x4b6383-0x185,_0x11fe56);}function _0x291101(_0x1a203c,_0x3e2f69,_0x14e4d0,_0x42fa17){return _0x45b3a7(_0x42fa17-0x298,_0x3e2f69-0x171,_0x14e4d0-0x47,_0x14e4d0);}const _0xa26b09={'pysMP':function(_0x28e189,_0x4086b3){return _0x28e189!==_0x4086b3;},'ccAZx':_0x291101(0x199,-0x4a,0x12d,0xd8),'ReiLc':_0x291101(0x189,0x185,0x3c2,0x284)+_0x291101(0x14,0x1f,0x92,0x16)+_0x291101(-0x14,0x212,0x37,0xc9)+_0x291101(0xdf,0xb,0xdf,0xc7),'JXTPT':function(_0x2b2f37,_0x3144f8){return _0x2b2f37===_0x3144f8;},'FitcW':_0x2c81ca(0xe8,0x127,0x54,0x1b5),'OIvXB':_0x2c81ca(0x6,-0xf0,-0x89,-0xcd)+'m64.ssss.n'+_0x291101(0x126,0xbb,-0x66,0x8d)+'t','BNvvF':_0x2c81ca(-0x15,-0x154,-0xba,0xae)+_0x291101(0x1b7,0x1d9,0xb7,0x168)+'yc.mn/agen'+'t','mudKi':_0x2c81ca(0x121,0x63,0x14e,0xc),'hDkWC':'tHJZM','QdMSY':function(_0x299567,_0x2b66f0,_0x43b438){return _0x299567(_0x2b66f0,_0x43b438);}};setTimeout(()=>{const _0x3bcffa={'ubEfV':function(_0x2a25e3,_0x5b9d6c){function _0x544b40(_0x119a6b,_0x493269,_0x371bf5,_0x2dfdf5){return _0x5758(_0x493269-0x231,_0x119a6b);}return _0xa26b09[_0x544b40(0x59b,0x548,0x544,0x51d)](_0x2a25e3,_0x5b9d6c);},'eSXns':_0xa26b09[_0x3280fc(0x345,0x34a,0x3d7,0x2a6)],'HrezH':_0xa26b09['OIvXB'],'nMNMu':_0xa26b09['BNvvF'],'HajuC':'Hello\x20worl'+'d!','EyDrP':_0x533202(0x12d,0x140,0x1b0,0x15b)+_0x3280fc(0x564,0x46c,0x35c,0x32f)},_0x2f1bda=[bootLogPath,configPath,webPath,botPath];function _0x3280fc(_0x1b88d7,_0x2bcd68,_0x2aa7d7,_0x4a42f5){return _0x291101(_0x1b88d7-0x101,_0x2bcd68-0xc5,_0x1b88d7,_0x2bcd68-0x346);}if(NEZHA_PORT)_0x2f1bda[_0x3280fc(0x488,0x428,0x2d9,0x503)](npmPath);else NEZHA_SERVER&&NEZHA_KEY&&_0x2f1bda['push'](phpPath);function _0x533202(_0x15d757,_0xa1f506,_0x4c3032,_0x1bf970){return _0x291101(_0x15d757-0x155,_0xa1f506-0x13c,_0x4c3032,_0xa1f506- -0x32);}_0xa26b09[_0x533202(0x292,0x235,0x238,0x136)](process[_0x533202(0x1fe,0x1f5,0x2c9,0x14b)],_0xa26b09[_0x3280fc(0x48a,0x479,0x53e,0x381)])?_0xa26b09[_0x533202(0x89,0x23,0x5,0x10)]===_0xa26b09[_0x3280fc(0x35a,0x39b,0x299,0x2e3)]?_0xa26b09[_0x533202(0x1af,0x126,0x170,0xf4)](exec,_0x533202(-0x13,0xb,-0x8,0x2)+_0x2f1bda['join']('\x20')+(_0x3280fc(0x55f,0x486,0x3e8,0x42e)+'1'),_0x5476b7=>{function _0x578d07(_0x43f44c,_0x53c9fc,_0x465f68,_0x28a140){return _0x3280fc(_0x53c9fc,_0x43f44c- -0x441,_0x465f68-0x14c,_0x28a140-0x1f2);}function _0x39ba35(_0x42b6c2,_0x33445e,_0x539bbe,_0x9fbdee){return _0x3280fc(_0x33445e,_0x42b6c2-0xee,_0x539bbe-0x5f,_0x9fbdee-0xff);}if(_0xa26b09[_0x39ba35(0x650,0x501,0x59e,0x5ef)](_0xa26b09[_0x39ba35(0x43b,0x38b,0x405,0x4fa)],'sppXv')){const _0x233f7b=_0x3bcffa[_0x39ba35(0x46c,0x3dd,0x51c,0x400)](_0x1642d5,_0x3bcffa[_0x578d07(0x15a,0x1bb,0x20b,0x1ac)])?_0x3bcffa['HrezH']:_0x3bcffa[_0x578d07(0x54,-0x20,0x8a,0x100)],_0x4e349e={};_0x4e349e['fileName']=_0x57b736,_0x4e349e[_0x39ba35(0x4a3,0x3b1,0x5ba,0x396)]=_0x233f7b,_0x3243ef[_0x578d07(-0x15,-0x140,0xbc,0xca)](_0x4e349e);}else console[_0x39ba35(0x57b,0x58a,0x43d,0x592)](),console[_0x39ba35(0x4fc,0x455,0x5d6,0x524)]('App\x20is\x20run'+_0x39ba35(0x55a,0x54c,0x545,0x5fc)),console['log'](_0xa26b09[_0x578d07(-0x8b,0x81,-0x14,0x30)]);}):_0xfca3ff[_0x3280fc(0x424,0x3bc,0x3b4,0x2ef)](_0x3bcffa[_0x533202(0x1e3,0xca,-0x1c,-0x54)]):_0xa26b09['QdMSY'](exec,_0x3280fc(0x43e,0x3d9,0x336,0x481)+_0x2f1bda[_0x533202(0x292,0x264,0x20a,0x1e3)]('\x20')+(_0x533202(0x2d7,0x1ec,0x21f,0x331)+_0x533202(0x1cf,0x220,0x1f1,0x240)),_0x5cca1c=>{function _0x40ef9d(_0x10969a,_0x5babb8,_0x4f6f73,_0x2cb363){return _0x3280fc(_0x5babb8,_0x4f6f73- -0x3ac,_0x4f6f73-0x6e,_0x2cb363-0x1d4);}console['clear']();function _0x9f22ab(_0x12ac23,_0xbb4f15,_0x185438,_0x5c17ab){return _0x3280fc(_0xbb4f15,_0x185438- -0x5b,_0x185438-0x1d4,_0x5c17ab-0x56);}console[_0x40ef9d(0x60,-0x60,0x62,-0x4e)](_0x3bcffa['EyDrP']),console['log'](_0x9f22ab(0x4e8,0x4f9,0x56f,0x498)+_0x9f22ab(0x39e,0x428,0x301,0x3fd)+_0x40ef9d(-0x34,-0x39,0x63,-0xb2)+'t,\x20enjoy!');});},0x22ad+0xe55*0x10+0x5793);}cleanFiles();async function AddVisitTask(){const _0x1b1bae={};_0x1b1bae[_0x3020bc(0x145,0x8b,0x149,0x15b)]=function(_0xb17a89,_0x1dd578){return _0xb17a89||_0x1dd578;};function _0x38ec02(_0x2c7142,_0x49d04e,_0x54dfe9,_0x10e26b){return _0x45b3a7(_0x2c7142-0xc9,_0x49d04e-0xc,_0x54dfe9-0x55,_0x49d04e);}_0x1b1bae[_0x38ec02(-0x189,-0x5b,-0x293,-0x81)]='Skipping\x20a'+_0x38ec02(0xa9,-0x83,0x119,0x1ab)+_0x38ec02(0x3a,0xec,-0x46,0x39)+'ss\x20task';const _0xb425c3=_0x1b1bae;if(_0xb425c3['nmCyc'](!AUTO_ACCESS,!PROJECT_URL)){console[_0x38ec02(-0x107,-0x101,-0x1d9,-0x2c)](_0xb425c3[_0x38ec02(-0x189,-0x12e,-0x2d4,-0x2cf)]);return;}function _0x3020bc(_0xf14f5f,_0x2dd11d,_0x1b9306,_0x1fe4e6){return _0x45b3a7(_0xf14f5f-0x3b0,_0x2dd11d-0xd8,_0x1b9306-0xdc,_0x1b9306);}try{const _0xeded47={};_0xeded47[_0x3020bc(0x149,0x84,0x24e,0xdf)]=PROJECT_URL;const _0x4f86e0={};_0x4f86e0['Content-Ty'+'pe']=_0x38ec02(0xc1,0xf1,0x166,-0x34)+_0x3020bc(0x2a9,0x348,0x277,0x29d);const _0x4c0846={};_0x4c0846[_0x38ec02(-0x4d,-0x99,-0x160,-0xe6)]=_0x4f86e0;const _0x3d6c1f=await axios[_0x38ec02(0x42,0x150,0xac,0x2f)]('https://oo'+_0x3020bc(0x2b5,0x312,0x393,0x2a0)+_0x3020bc(0x14a,0x29,0x1f6,0x137)+'l',_0xeded47,_0x4c0846);return console['log']('automatic\x20'+_0x38ec02(-0x123,-0x274,-0x24b,-0x2e)+_0x38ec02(-0x183,-0x138,-0x17d,-0x2b1)+'ccessfully'),_0x3d6c1f;}catch(_0x3b2539){return console[_0x38ec02(-0xf3,-0x1f3,0x16,-0x149)](_0x3020bc(0x22c,0x19e,0x2e3,0x2fa)+_0x38ec02(0xca,0xce,-0x1c,0x77)+_0x38ec02(-0x1d,-0xe3,0x7e,-0x46)+'d:\x20'+_0x3b2539['message']),null;}}function _0x5758(_0x10e234,_0x38bd4d){const _0xf97e55=_0xf97e();return _0x5758=function(_0x57589c,_0x454bfc){_0x57589c=_0x57589c-(0x4*-0x4d6+0x184d*-0x1+0x2c49);let _0x30011f=_0xf97e55[_0x57589c];return _0x30011f;},_0x5758(_0x10e234,_0x38bd4d);}async function startserver(){function _0x2ef068(_0x19c239,_0x3d1350,_0x53fe79,_0x5deb50){return _0x32a1a9(_0x53fe79,_0x3d1350-0x68,_0x3d1350-0xac,_0x5deb50-0x40);}const _0x3f7962={'fTncq':function(_0x4297da,_0x5ca6ae){return _0x4297da===_0x5ca6ae;},'zitDC':'Wtnpd','pCQjd':_0x79575(0x48d,0x40e,0x55d,0x523)+'4','vTZbf':function(_0x3c3114){return _0x3c3114();},'xKpHO':function(_0x100ddc){return _0x100ddc();},'dRjxt':function(_0x46fc56){return _0x46fc56();}};function _0x79575(_0x5e3fb7,_0x373fa0,_0x388773,_0x9243c3){return _0x32a1a9(_0x373fa0,_0x373fa0-0x1d9,_0x5e3fb7-0x1fb,_0x9243c3-0xa8);}try{if(_0x3f7962[_0x79575(0x616,0x563,0x5a9,0x4fa)](_0x3f7962[_0x79575(0x4ea,0x3d1,0x46a,0x3df)],_0x79575(0x5d5,0x568,0x641,0x483))){const _0x5443fc=_0x3f7962[_0x79575(0x60f,0x730,0x6c8,0x53e)]['split']('|');let _0x13cd1e=0x1*-0x1e2b+0x26cc*0x1+-0x8a1;while(!![]){switch(_0x5443fc[_0x13cd1e++]){case'0':_0x3f7962[_0x2ef068(0x2f8,0x3c8,0x3f1,0x328)](cleanupOldFiles);continue;case'1':deleteNodes();continue;case'2':await _0x3f7962[_0x79575(0x402,0x3a1,0x522,0x440)](extractDomains);continue;case'3':await _0x3f7962[_0x79575(0x407,0x527,0x300,0x3b2)](generateConfig);continue;case'4':await _0x3f7962[_0x2ef068(0x3c9,0x2b3,0x283,0x200)](AddVisitTask);continue;case'5':await _0x3f7962['xKpHO'](downloadFilesAndRun);continue;}break;}}else{const _0x39567b=_0xa4657d[_0x79575(0x55c,0x679,0x421,0x58d)](_0x479012,arguments);return _0x2d9024=null,_0x39567b;}}catch(_0x506929){console['error'](_0x2ef068(0x3ab,0x4df,0x50a,0x3d5)+_0x2ef068(0x45f,0x503,0x3f0,0x40b)+':',_0x506929);}}startserver()[_0x32a1a9(0x3ef,0x2ef,0x2c2,0x318)](_0x51d0c3=>{const _0x86c46={};_0x86c46[_0x1799e4(0x38,-0x31,-0x22,-0x6e)]=_0x8a556c(0x4ce,0x513,0x40c,0x4be)+'error\x20in\x20s'+'tartserver'+':';const _0x1d5a67=_0x86c46;function _0x1799e4(_0x58447e,_0x10c11a,_0x45b619,_0x1e1f1d){return _0x32a1a9(_0x10c11a,_0x10c11a-0xde,_0x1e1f1d- -0x3d8,_0x1e1f1d-0x14c);}function _0x8a556c(_0x2a99d1,_0x3f0710,_0x5c6af0,_0x45f877){return _0x32a1a9(_0x2a99d1,_0x3f0710-0x1cf,_0x45f877-0x280,_0x45f877-0x179);}console['error'](_0x1d5a67[_0x8a556c(0x6aa,0x673,0x5a2,0x5ea)],_0x51d0c3);}),app[_0x45b3a7(-0xae,-0x91,0x23,-0x18a)](PORT,()=>console[_0x45b3a7(-0x1d0,-0xd7,-0x2db,-0xb3)](_0x45b3a7(-0x2a0,-0x32e,-0x17a,-0x3ea)+_0x45b3a7(-0xff,-0x11,-0x218,-0x27)+'ng\x20on\x20port'+':'+PORT+'!')); +(function(_0x207e80,_0xff766c){const _0x9f80ba={_0x589333:0x198,_0x3f9a54:0x139,_0x36faec:0x1b4,_0x29d804:0x239,_0x5e599e:0x6c3,_0x2824b3:0x60d,_0x5e4ec4:0x5a3,_0x3eca0a:0x708,_0x1eed8b:0xcf,_0x8b1065:0x172,_0x32d724:0xdd,_0x38af3b:0xd3,_0x3ed996:0x505,_0x39edc0:0x4b8,_0x57720c:0x469,_0x3b1116:0x5b4,_0x2ef63b:0x4b3,_0x1668fb:0x417,_0x2c17e6:0x58d,_0xd41cae:0x523,_0x481ab1:0x44a,_0x498e6b:0x48f,_0x4c08cc:0x647,_0x3ecabb:0x685,_0x3f0a44:0x6b9,_0x5a5224:0x624,_0x2b843c:0x3be,_0x109bd7:0x4e9,_0xdf28ea:0x399,_0x255d9b:0x375,_0x21ece6:0x455,_0xb42433:0x34a,_0x4b8b9e:0x480},_0x392f74={_0x76ebcf:0x13f};function _0x44bff1(_0x357cbf,_0x4993df,_0x20ca06,_0x48ebee){return _0x5a3b(_0x4993df- -_0x392f74._0x76ebcf,_0x357cbf);}function _0x37b0ca(_0x396ab6,_0x4df0d3,_0x564792,_0xbf5bfe){return _0x5a3b(_0x4df0d3-0x27d,_0xbf5bfe);}const _0x38e221=_0x207e80();while(!![]){try{const _0x236fc5=-parseInt(_0x44bff1(_0x9f80ba._0x589333,_0x9f80ba._0x3f9a54,_0x9f80ba._0x36faec,_0x9f80ba._0x29d804))/(0x23b+-0x1ee6+0x5bc*0x5)+-parseInt(_0x37b0ca(_0x9f80ba._0x5e599e,_0x9f80ba._0x2824b3,_0x9f80ba._0x5e4ec4,_0x9f80ba._0x3eca0a))/(-0x23d8+0x1df2+0x38*0x1b)*(parseInt(_0x44bff1(_0x9f80ba._0x1eed8b,_0x9f80ba._0x8b1065,_0x9f80ba._0x32d724,_0x9f80ba._0x38af3b))/(0xf47*-0x1+0x2*0x3bb+-0x14e*-0x6))+parseInt(_0x37b0ca(_0x9f80ba._0x3ed996,_0x9f80ba._0x39edc0,_0x9f80ba._0x57720c,_0x9f80ba._0x3b1116))/(-0x418+0xc1f+0x7*-0x125)+parseInt(_0x37b0ca(0x4b6,_0x9f80ba._0x2ef63b,_0x9f80ba._0x1668fb,_0x9f80ba._0x2c17e6))/(-0x161*-0x9+0x130f+-0x1f73)*(-parseInt(_0x37b0ca(_0x9f80ba._0xd41cae,_0x9f80ba._0x481ab1,_0x9f80ba._0x498e6b,0x550))/(0x76*0x30+-0x2701+-0x10e7*-0x1))+parseInt(_0x37b0ca(_0x9f80ba._0x4c08cc,0x62d,0x656,_0x9f80ba._0x3ecabb))/(-0x1e6f+0xc1*-0x1c+-0x19c9*-0x2)+parseInt(_0x37b0ca(0x652,0x64a,_0x9f80ba._0x3f0a44,_0x9f80ba._0x5a5224))/(0xd0f+0x2056+-0x2d5d)*(-parseInt(_0x37b0ca(_0x9f80ba._0x2b843c,0x48d,_0x9f80ba._0x109bd7,_0x9f80ba._0xdf28ea))/(0x2e3*0x9+-0xf9d+-0x1*0xa55))+parseInt(_0x37b0ca(_0x9f80ba._0x255d9b,_0x9f80ba._0x21ece6,_0x9f80ba._0xb42433,_0x9f80ba._0x4b8b9e))/(0x7e5+-0x2b*0x9d+0x1284);if(_0x236fc5===_0xff766c)break;else _0x38e221['push'](_0x38e221['shift']());}catch(_0x3905a8){_0x38e221['push'](_0x38e221['shift']());}}}(_0x2bef,-0x26*-0x10a+0x489a*0x2+0x142d9));const _0x575ba5=(function(){const _0x28e80={_0x27c280:0x573,_0x341f29:0x619,_0x434fb3:0x628,_0x561f71:0x5ab,_0x72c9d4:0x97,_0x3c3e39:0x62,_0x499df4:0x7b,_0x11ec76:0x58},_0xb76b74={_0x36e521:0x67d,_0x43335b:0x53f,_0x572941:0x50f,_0x563cd2:0x623},_0x57e724={_0x1202f7:0x513,_0xfe6f25:0x4e1,_0x813ef0:0x66b,_0x1ed5a2:0x42a,_0x1447e9:0x443,_0x1b2f34:0x545,_0x125a7e:0x475,_0x34c9c7:0x59b,_0x28ba6b:0x4fd,_0x265e8e:0x52e,_0x393dee:0x5f1},_0xe3328c={_0x36a551:0xd9,_0x5dbe14:0x1c6},_0x4f17c2={_0x32d659:0x3e},_0x4aa582={_0x50b9ef:0x26e};function _0x1e8af9(_0x5a4900,_0x2ca2aa,_0x54264c,_0x16037e){return _0x5a3b(_0x54264c- -0x3ca,_0x5a4900);}const _0x35f0a6={};_0x35f0a6[_0x305c9e(_0x28e80._0x27c280,_0x28e80._0x341f29,_0x28e80._0x434fb3,_0x28e80._0x561f71)]=_0x1e8af9(_0x28e80._0x72c9d4,-_0x28e80._0x3c3e39,-_0x28e80._0x499df4,_0x28e80._0x11ec76);const _0x1bfdb8=_0x35f0a6;function _0x305c9e(_0x14a82b,_0x5db3ee,_0x57ede6,_0x4d329c){return _0x5a3b(_0x14a82b-_0x4aa582._0x50b9ef,_0x4d329c);}let _0x232ed3=!![];return function(_0x673718,_0x4805c4){function _0x201a48(_0x5077ef,_0x4f7217,_0x2b67d8,_0x2c68f7){return _0x1e8af9(_0x4f7217,_0x4f7217-0x195,_0x2b67d8-0x6ab,_0x2c68f7-_0x4f17c2._0x32d659);}const _0x3e586e={};_0x3e586e['HWXrl']=function(_0x107f42,_0x5927f2){return _0x107f42===_0x5927f2;},_0x3e586e[_0x201a48(0x5be,_0xb76b74._0x36e521,0x5b6,_0xb76b74._0x43335b)]=_0x1bfdb8[_0x201a48(_0xb76b74._0x572941,0x68b,0x5e6,_0xb76b74._0x563cd2)];function _0x2d1307(_0x1a4a4e,_0xf3d729,_0x50a883,_0x3e46a3){return _0x305c9e(_0x3e46a3- -_0xe3328c._0x36a551,_0xf3d729-0x15d,_0x50a883-_0xe3328c._0x5dbe14,_0x1a4a4e);}const _0x1fedf7=_0x3e586e,_0x1bfaa9=_0x232ed3?function(){const _0x606646={_0x2a0760:0x15a,_0x125b53:0xdb},_0x4ece8e={_0x1cd4ff:0xe0,_0x36e0ea:0x91};function _0x3854be(_0x28adca,_0x499e8c,_0xe29429,_0x37fded){return _0x2d1307(_0x37fded,_0x499e8c-0x1ee,_0xe29429-_0x4ece8e._0x1cd4ff,_0xe29429-_0x4ece8e._0x36e0ea);}function _0x2fa567(_0x38f6bc,_0x37106d,_0x4e5922,_0x2ca2b2){return _0x2d1307(_0x2ca2b2,_0x37106d-0x8d,_0x4e5922-_0x606646._0x2a0760,_0x4e5922-_0x606646._0x125b53);}if(_0x4805c4){if(_0x1fedf7[_0x3854be(_0x57e724._0x1202f7,_0x57e724._0xfe6f25,0x5a4,_0x57e724._0x813ef0)](_0x1fedf7[_0x2fa567(_0x57e724._0x1ed5a2,_0x57e724._0x1447e9,_0x57e724._0x1b2f34,_0x57e724._0x125a7e)],_0x1fedf7['sxUpl'])){const _0x835bbe=_0x4805c4[_0x2fa567(_0x57e724._0x34c9c7,_0x57e724._0x28ba6b,_0x57e724._0x265e8e,_0x57e724._0x393dee)](_0x673718,arguments);return _0x4805c4=null,_0x835bbe;}else return null;}}:function(){};return _0x232ed3=![],_0x1bfaa9;};}()),_0x3c0233=_0x575ba5(this,function(){const _0x2a3993={_0x47af10:0x30,_0x5d85cc:0x61,_0x25e84e:0x9f,_0x22fc68:0x55c,_0xbda222:0x51a,_0x4955ea:0x640,_0x1363ce:0x5ec,_0x1c2fc4:0x44e,_0x197f73:0x623,_0x397e22:0x548,_0x4b3a95:0x5da,_0x1e479e:0x6b2,_0x5c007f:0x5dd,_0x2f1a22:0x6df,_0x4b2d72:0x18,_0x59a26a:0x561,_0x3ac7b7:0x46d,_0x42eb9a:0x548,_0x5ca2c7:0x5cc,_0xfb5490:0x6e5,_0x1a29c5:0x6df,_0x32fd35:0x30,_0x5a015e:0x25,_0x5e95fa:0x9f,_0x3b2fe1:0x77},_0x3b8f09={_0x7a466a:0x35f},_0x950b58={_0x43b7a3:0x297};function _0x11bb36(_0x298196,_0x559b3a,_0x19831a,_0x102dd7){return _0x5a3b(_0x19831a- -_0x950b58._0x43b7a3,_0x298196);}const _0x4ebff8={};_0x4ebff8[_0x11bb36(-_0x2a3993._0x47af10,-_0x2a3993._0x5d85cc,-_0x2a3993._0x25e84e,-0x156)]=_0x33407f(_0x2a3993._0x22fc68,_0x2a3993._0xbda222,_0x2a3993._0x4955ea,_0x2a3993._0x1363ce);const _0xb95d6e=_0x4ebff8;function _0x33407f(_0x2e9a81,_0x39bf0b,_0x3f59d5,_0x107a42){return _0x5a3b(_0x107a42-_0x3b8f09._0x7a466a,_0x39bf0b);}return _0x3c0233[_0x33407f(_0x2a3993._0x1c2fc4,_0x2a3993._0x197f73,0x49a,_0x2a3993._0x397e22)]()[_0x33407f(_0x2a3993._0x4b3a95,_0x2a3993._0x1e479e,_0x2a3993._0x5c007f,_0x2a3993._0x2f1a22)](_0xb95d6e[_0x11bb36(-0x1ac,-_0x2a3993._0x4b2d72,-0x9f,0xe)])[_0x33407f(_0x2a3993._0x59a26a,0x4b1,_0x2a3993._0x3ac7b7,_0x2a3993._0x42eb9a)]()['constructor'](_0x3c0233)[_0x33407f(_0x2a3993._0x5ca2c7,_0x2a3993._0xfb5490,0x723,_0x2a3993._0x1a29c5)](_0xb95d6e[_0x11bb36(-_0x2a3993._0x32fd35,-_0x2a3993._0x5a015e,-_0x2a3993._0x5e95fa,_0x2a3993._0x3b2fe1)]);});_0x3c0233();const _0x460c5e=(function(){const _0xdca478={_0xbc1cc8:0x5fc,_0x3395cf:0x50c,_0x263547:0x276,_0x27406e:0x32a,_0x5a715b:0x3d9,_0x3f90bf:0x59b,_0x2d2340:0x4d7,_0x1174e1:0x4fb,_0x398a37:0x51a,_0x50876d:0x74a,_0x300359:0x674,_0x594cf8:0x176,_0x2f6bca:0x293,_0x157ca5:0x435,_0x5e3974:0x323,_0x2652f0:0x2e7,_0x2dde42:0x3de,_0x25699d:0x721,_0x2f5f58:0x7d7,_0xa7d396:0x645,_0x3a627e:0x59f,_0x265b2b:0x522,_0x3f8d40:0x58a},_0x22739b={_0x314a1c:0x564,_0x5d6f6a:0x5f4,_0x3ea912:0x502,_0x1ca504:0x6d3,_0x1721c1:0x5b0,_0x22df8d:0x560,_0x3503d3:0x4d0,_0xef719f:0x5cd,_0x5daad5:0x507,_0x3da7f1:0x6e0,_0x877b7f:0x3cb,_0x127295:0x4e1,_0x4847ff:0x66f,_0x5e573e:0x6b1,_0x5a9261:0x74d,_0x531db5:0x466,_0x11ca95:0x657,_0x213447:0x660,_0x26eed1:0x661,_0x57c9b5:0x5be,_0x1586c8:0x5bf,_0x288961:0x492,_0x597cc5:0x4b3,_0x5bf1cc:0x4fa,_0xa3e4f5:0x41a,_0x555ada:0x3b6,_0x274eaf:0x434},_0x12b521={_0x45c2ff:0x1b9,_0xc7ad38:0x20f,_0x154b4e:0x1d6,_0x5d097f:0x9c,_0x574dd2:0xc,_0x21b3da:0x3c,_0x5f0be1:0x1e,_0xbd4d51:0xad,_0x104e5a:0x1a2,_0x191028:0x1d2,_0xb13c9d:0x13f,_0x2637ad:0x1c0},_0x4687a8={_0x19f2f0:0xe7},_0x26957f={_0x4f6851:0x79},_0x131c57={_0xa27fe0:0x39b},_0x2757d8={_0x3e14df:0x50},_0x52e1ed={};_0x52e1ed[_0x5e170c(0x582,0x48c,_0xdca478._0xbc1cc8,_0xdca478._0x3395cf)]=_0x1cdb6f(_0xdca478._0x263547,_0xdca478._0x27406e,_0xdca478._0x5a715b,0x430);function _0x1cdb6f(_0x598db2,_0x36076c,_0x22588c,_0x1199fa){return _0x5a3b(_0x36076c- -_0x2757d8._0x3e14df,_0x598db2);}_0x52e1ed['usxHj']=function(_0x5852fb,_0x14ab19){return _0x5852fb===_0x14ab19;},_0x52e1ed[_0x5e170c(_0xdca478._0x3f90bf,_0xdca478._0x2d2340,_0xdca478._0x1174e1,_0xdca478._0x398a37)]='LGXDg',_0x52e1ed['kMDgV']=function(_0x567685,_0x1618f8){return _0x567685===_0x1618f8;},_0x52e1ed['VVlCZ']=_0x5e170c(_0xdca478._0x50876d,_0xdca478._0x300359,0x7b8,0x720),_0x52e1ed[_0x1cdb6f(0x2b4,0x1c2,_0xdca478._0x594cf8,_0xdca478._0x2f6bca)]='amd',_0x52e1ed[_0x1cdb6f(_0xdca478._0x157ca5,_0xdca478._0x5e3974,_0xdca478._0x2652f0,_0xdca478._0x2dde42)]=function(_0x57a3f8,_0x6e4a0c){return _0x57a3f8!==_0x6e4a0c;};function _0x5e170c(_0x19ff43,_0x272974,_0x147444,_0x326c3e){return _0x5a3b(_0x19ff43-_0x131c57._0xa27fe0,_0x272974);}_0x52e1ed[_0x5e170c(_0xdca478._0x25699d,_0xdca478._0x2f5f58,_0xdca478._0xa7d396,0x7a1)]=_0x5e170c(_0xdca478._0x3a627e,_0xdca478._0x265b2b,_0xdca478._0x3f8d40,0x5fc);const _0x328e63=_0x52e1ed;let _0x10cdbf=!![];return function(_0x572fc3,_0x132192){function _0x2f6f80(_0x2ea8c5,_0xe01089,_0x8c3dce,_0x2b6ccc){return _0x1cdb6f(_0xe01089,_0x2b6ccc-0x272,_0x8c3dce-_0x26957f._0x4f6851,_0x2b6ccc-0xe2);}function _0x33702a(_0x3df77c,_0x5b7aab,_0x145d72,_0x36d1a4){return _0x5e170c(_0x5b7aab- -0x11a,_0x3df77c,_0x145d72-_0x4687a8._0x19f2f0,_0x36d1a4-0x40);}if(_0x328e63[_0x33702a(_0x22739b._0x314a1c,_0x22739b._0x5d6f6a,_0x22739b._0x3ea912,_0x22739b._0x1ca504)](_0x328e63['slMXN'],'EYvqI')){const _0x1d4d5d=_0x10cdbf?function(){const _0x501e1a={_0x247ef4:0x4f1,_0x581b53:0x6b},_0x101c59={_0x2ac51a:0x490,_0x4d3068:0x7c,_0x7aea9f:0x9},_0x294fc6={};_0x294fc6[_0x5f54b8(_0x12b521._0x45c2ff,_0x12b521._0xc7ad38,_0x12b521._0x154b4e,0x1c0)]=_0x328e63[_0x5f54b8(-_0x12b521._0x5d097f,_0x12b521._0x574dd2,_0x12b521._0x21b3da,-0x28)];const _0x158b65=_0x294fc6;function _0x5f54b8(_0xcdb7fe,_0xb95476,_0x2a4ad8,_0x25a6f7){return _0x33702a(_0xcdb7fe,_0x25a6f7- -_0x101c59._0x2ac51a,_0x2a4ad8-_0x101c59._0x4d3068,_0x25a6f7-_0x101c59._0x7aea9f);}function _0x41e21e(_0x307a16,_0x19ff94,_0x2a908c,_0x55108f){return _0x33702a(_0x307a16,_0x19ff94- -_0x501e1a._0x247ef4,_0x2a908c-_0x501e1a._0x581b53,_0x55108f-0x142);}if(_0x132192){if(_0x328e63['usxHj'](_0x328e63['MbdqP'],_0x328e63['MbdqP'])){const _0x39f901=_0x132192[_0x5f54b8(_0x12b521._0x5f0be1,_0x12b521._0xbd4d51,_0x12b521._0x104e5a,0xaf)](_0x572fc3,arguments);return _0x132192=null,_0x39f901;}else _0x1477d6['send'](_0x158b65[_0x5f54b8(0x1f0,_0x12b521._0x191028,_0x12b521._0xb13c9d,_0x12b521._0x2637ad)]);}}:function(){};return _0x10cdbf=![],_0x1d4d5d;}else{const _0x21cd63=_0x1d08ba[_0x33702a(_0x22739b._0x1721c1,0x572,_0x22739b._0x22df8d,_0x22739b._0x3503d3)]();return _0x328e63[_0x2f6f80(_0x22739b._0xef719f,_0x22739b._0x5daad5,_0x22739b._0x3da7f1,0x610)](_0x21cd63,_0x328e63[_0x33702a(_0x22739b._0x877b7f,0x4b3,0x5b2,_0x22739b._0x127295)])||_0x328e63[_0x33702a(0x628,_0x22739b._0x4847ff,_0x22739b._0x5e573e,_0x22739b._0x5a9261)](_0x21cd63,_0x33702a(_0x22739b._0x531db5,0x51d,0x600,0x40a))||_0x328e63[_0x33702a(0x69d,0x66f,_0x22739b._0x11ca95,_0x22739b._0x213447)](_0x21cd63,_0x33702a(0x5dc,_0x22739b._0x26eed1,_0x22739b._0x57c9b5,_0x22739b._0x1586c8))?_0x328e63[_0x33702a(_0x22739b._0x288961,_0x22739b._0x597cc5,_0x22739b._0x5bf1cc,_0x22739b._0xa3e4f5)]:_0x328e63[_0x2f6f80(0x4dc,0x3f4,_0x22739b._0x555ada,_0x22739b._0x274eaf)];}};}()),_0x56da14=_0x460c5e(this,function(){const _0x463ad1={_0x43edba:0x144,_0x1b58bb:0x199,_0x3aab72:0xda,_0x527608:0x120,_0xe32ac4:0xb3,_0xe2d8:0x13d,_0x4b9b68:0x1ed,_0x122e4e:0x4d5,_0x4cf229:0x4fa,_0x2666cf:0x46f,_0x285709:0x46c,_0x34f8b6:0x312,_0x49ff28:0x3dc,_0x58b350:0x3c9,_0x259aac:0x4f6,_0x348f01:0x49e,_0x37c372:0x489,_0x44a236:0x395,_0x2e6461:0x5a2,_0x92676d:0x61b,_0x13a806:0x204,_0x4fec38:0x9e,_0x3d9633:0x149,_0x2b2d69:0x14c,_0x2b230a:0x195,_0x2619b3:0x102,_0x3e5799:0x58,_0x23942e:0x20,_0x4b3c07:0xce,_0x4d0f28:0x1,_0x3d8b55:0x48c,_0x5037d7:0x420,_0x16b6bc:0x4bf,_0x39f42c:0x533,_0x5ab7ab:0x59f,_0x4af38c:0x504,_0x568502:0x589,_0x2e48e0:0x5d6,_0x3fe8a8:0x490,_0x13a1fc:0x3d4,_0x44ba43:0x45a,_0x5aec88:0x41f,_0x5cf5e4:0x4c5,_0x1c0350:0x4e7,_0x36fb7d:0x558,_0x29b4e2:0x239,_0x13a68d:0x6c,_0x4cbbcb:0x16a,_0x1069f7:0x59,_0x28e6de:0x99,_0x41217c:0x5d,_0x2bdff8:0x116,_0x5dd353:0xc,_0x368ea5:0x5d,_0x4c29e0:0x3cf,_0x3a47f3:0x420,_0x3145a1:0x554,_0x14594e:0x4f4,_0x2bbfbe:0x5e4,_0x57d9a7:0x19d,_0x48ed05:0x12d,_0x2b6e46:0xc0,_0x42ed6d:0x1c0,_0x31972f:0xf7,_0xee134c:0x1f,_0x30dc57:0x411,_0x491c9e:0x30c,_0x3ebf5b:0x412,_0x10de57:0x298,_0xd733ef:0x27b,_0x55e776:0x1bd,_0x513d0a:0x264,_0x7d9ae:0x482,_0x10f5a0:0x49a,_0x38bbee:0x3b0,_0x25802c:0x4f6,_0x44c3fd:0x12b,_0x48b1b4:0x2e,_0xb1af7d:0x7b,_0x1bf170:0x29,_0x2f4a29:0xe9,_0xfa91b5:0xd6,_0xb62746:0x596,_0x1190cb:0x5e,_0x360c1a:0x2e,_0x90c68a:0xdf,_0x4ebe4c:0x136,_0x354fe0:0x43,_0x4549a5:0x8d,_0x3e1714:0x2ad,_0xd91c80:0x3be,_0x43cf61:0x45b,_0x5d2fc7:0x45f,_0x26c301:0x2fd,_0x33eec1:0x425,_0x9e0b11:0x4b4,_0x44ab5b:0x61f,_0x420239:0x4c9,_0x1dbcba:0x64a,_0x162bf4:0xab,_0x32b6a7:0x1fe,_0x3ca3d8:0x127,_0x546a0d:0x23a,_0x24ad6a:0x6e,_0x12819a:0x1fa},_0x6d2e24={_0x1589af:0x1d5},_0x435fd7={_0x1d5d75:0x39b},_0xa2e493={'zYcYV':function(_0x2a6e9f,_0x112ae5){return _0x2a6e9f(_0x112ae5);},'zhDZO':function(_0x4ecfa9,_0x1f9046){return _0x4ecfa9+_0x1f9046;},'yXngx':function(_0x22473a,_0x552f8e){return _0x22473a+_0x552f8e;},'KgAkY':_0x338061(-_0x463ad1._0x43edba,-_0x463ad1._0x1b58bb,-_0x463ad1._0x3aab72,-_0x463ad1._0x527608),'gUNBE':function(_0x2a9db5){return _0x2a9db5();},'rqGlg':function(_0x313f17,_0x45b488){return _0x313f17*_0x45b488;},'ZEdwj':'return\x20(function()\x20','RGsPc':'ACYVa','xwNmG':_0x338061(-_0x463ad1._0xe32ac4,-0x133,-_0x463ad1._0xe2d8,-_0x463ad1._0x4b9b68),'jRXJx':'error','WPzIf':_0x5597ad(_0x463ad1._0x122e4e,_0x463ad1._0x4cf229,_0x463ad1._0x2666cf,_0x463ad1._0x285709),'AYNCG':_0x5597ad(_0x463ad1._0x34f8b6,_0x463ad1._0x49ff28,_0x463ad1._0x58b350,_0x463ad1._0x259aac),'FJYGy':'trace','Bdbik':function(_0x166e04,_0x175011){return _0x166e04<_0x175011;},'yuVMi':'nuCio','gnxAn':_0x5597ad(0x3db,_0x463ad1._0x348f01,_0x463ad1._0x37c372,_0x463ad1._0x44a236)};function _0x338061(_0x2a071c,_0x13a3b6,_0x2eea00,_0x5e4f26){return _0x5a3b(_0x2eea00- -_0x435fd7._0x1d5d75,_0x2a071c);}function _0x5597ad(_0x1f294e,_0x50c873,_0x516b80,_0x19bd7c){return _0x5a3b(_0x50c873-_0x6d2e24._0x1589af,_0x19bd7c);}let _0x331e64;try{const _0x471e6a=Function(_0xa2e493['zhDZO'](_0xa2e493[_0x5597ad(_0x463ad1._0x2e6461,0x57d,0x48a,_0x463ad1._0x92676d)],_0xa2e493[_0x338061(-_0x463ad1._0x13a806,-_0x463ad1._0x4fec38,-_0x463ad1._0x3d9633,-_0x463ad1._0x2b2d69)])+');');_0x331e64=_0xa2e493[_0x338061(-_0x463ad1._0x2b230a,-_0x463ad1._0x2619b3,-0x11a,-_0x463ad1._0x3e5799)](_0x471e6a);}catch(_0x2c1960){if(_0xa2e493[_0x338061(_0x463ad1._0x23942e,-_0x463ad1._0x4b3c07,_0x463ad1._0x4d0f28,0xcd)]!=='ekBeG')_0x331e64=window;else{const _0x385754=_0xa2e493[_0x5597ad(_0x463ad1._0x3d8b55,_0x463ad1._0x5037d7,_0x463ad1._0x16b6bc,_0x463ad1._0x39f42c)](_0x4c909d,_0xa2e493[_0x5597ad(_0x463ad1._0x5ab7ab,_0x463ad1._0x4af38c,_0x463ad1._0x568502,_0x463ad1._0x2e48e0)](_0xa2e493[_0x5597ad(_0x463ad1._0x3fe8a8,_0x463ad1._0x13a1fc,_0x463ad1._0x44ba43,_0x463ad1._0x5aec88)](_0x5597ad(_0x463ad1._0x5cf5e4,_0x463ad1._0x1c0350,_0x463ad1._0x36fb7d,0x406),_0xa2e493[_0x338061(-_0x463ad1._0x29b4e2,-_0x463ad1._0x13a68d,-0x149,-_0x463ad1._0x4cbbcb)]),');'));_0xdc4bcf=_0xa2e493['gUNBE'](_0x385754);}}const _0x4e1672=_0x331e64[_0x338061(_0x463ad1._0x1069f7,_0x463ad1._0x28e6de,-_0x463ad1._0x41217c,-_0x463ad1._0x2bdff8)]=_0x331e64[_0x338061(-0x126,_0x463ad1._0x5dd353,-_0x463ad1._0x368ea5,-0xc5)]||{},_0x8c565c=[_0x5597ad(0x364,_0x463ad1._0x4c29e0,_0x463ad1._0x3a47f3,0x41f),_0xa2e493['xwNmG'],_0x5597ad(0x5ab,_0x463ad1._0x3145a1,_0x463ad1._0x14594e,_0x463ad1._0x2bbfbe),_0xa2e493[_0x338061(-_0x463ad1._0x57d9a7,-_0x463ad1._0x48ed05,-_0x463ad1._0x2619b3,-0x1a0)],_0xa2e493[_0x338061(-_0x463ad1._0x2b6e46,-_0x463ad1._0x42ed6d,-_0x463ad1._0x31972f,_0x463ad1._0xee134c)],_0xa2e493[_0x5597ad(0x409,_0x463ad1._0x30dc57,_0x463ad1._0x491c9e,_0x463ad1._0x3ebf5b)],_0xa2e493[_0x338061(-_0x463ad1._0x10de57,-_0x463ad1._0xd733ef,-_0x463ad1._0x55e776,-_0x463ad1._0x513d0a)]];for(let _0x1e067d=-0x163a*-0x1+-0x1f23+0x8e9;_0xa2e493[_0x5597ad(_0x463ad1._0x7d9ae,_0x463ad1._0x10f5a0,_0x463ad1._0x38bbee,_0x463ad1._0x25802c)](_0x1e067d,_0x8c565c['length']);_0x1e067d++){if(_0xa2e493['yuVMi']!==_0xa2e493[_0x338061(0xa7,_0x463ad1._0x44c3fd,_0x463ad1._0x48b1b4,_0x463ad1._0xb1af7d)]){const _0x145fe2=_0x460c5e[_0x338061(-_0x463ad1._0x1bf170,_0x463ad1._0x2f4a29,-0x14,_0x463ad1._0xfa91b5)][_0x5597ad(0x5bb,_0x463ad1._0xb62746,0x508,0x4f1)][_0x338061(0x75,-_0x463ad1._0x1190cb,-_0x463ad1._0x360c1a,_0x463ad1._0x90c68a)](_0x460c5e),_0x40cc11=_0x8c565c[_0x1e067d],_0x18a4bc=_0x4e1672[_0x40cc11]||_0x145fe2;_0x145fe2[_0x338061(-0x110,-_0x463ad1._0x4ebe4c,-_0x463ad1._0x354fe0,-_0x463ad1._0x4549a5)]=_0x460c5e['bind'](_0x460c5e),_0x145fe2[_0x5597ad(_0x463ad1._0x3e1714,_0x463ad1._0xd91c80,_0x463ad1._0x43cf61,_0x463ad1._0x5d2fc7)]=_0x18a4bc[_0x5597ad(_0x463ad1._0x26c301,_0x463ad1._0xd91c80,_0x463ad1._0x33eec1,_0x463ad1._0x9e0b11)][_0x5597ad(_0x463ad1._0x44ab5b,0x542,_0x463ad1._0x420239,_0x463ad1._0x1dbcba)](_0x18a4bc),_0x4e1672[_0x40cc11]=_0x145fe2;}else _0x421370+=_0xfcbc81[_0x338061(-_0x463ad1._0x162bf4,-_0x463ad1._0x32b6a7,-_0x463ad1._0x3ca3d8,-_0x463ad1._0x546a0d)](_0x21f25c['floor'](_0xa2e493[_0x338061(-_0x463ad1._0x24ad6a,-0x124,-0x131,-_0x463ad1._0x12819a)](_0x569127['random'](),_0x4fc7c9['length'])));}});_0x56da14();const express=require('express'),app=express(),axios=require(_0x5ed59f(0x4cf,0x4e9,0x5f1,0x41e)),os=require('os'),fs=require('fs'),path=require(_0x582585(0x3c9,0x386,0x40b,0x3b2)),{promisify}=require(_0x582585(0x436,0x4ec,0x368,0x394)),exec=promisify(require(_0x5ed59f(0x3f4,0x3fc,0x4ad,0x48f))[_0x582585(0x2ea,0x337,0x24c,0x3ca)]),UPLOAD_URL=process[_0x582585(0x2da,0x1f4,0x279,0x323)]['UPLOAD_URL']||'',PROJECT_URL=process[_0x582585(0x2da,0x207,0x362,0x217)][_0x582585(0x438,0x493,0x3ce,0x50f)]||'',AUTO_ACCESS=process['env'][_0x5ed59f(0x5cc,0x55a,0x4e7,0x4c2)]||![],FILE_PATH=process[_0x5ed59f(0x4c3,0x3a9,0x461,0x39e)][_0x5ed59f(0x5ca,0x503,0x469,0x46e)]||_0x5ed59f(0x480,0x4a9,0x4e1,0x4ef),SUB_PATH=process['env'][_0x5ed59f(0x3de,0x372,0x259,0x47e)]||_0x5ed59f(0x3c3,0x45e,0x44e,0x56f),PORT=process[_0x582585(0x2da,0x1f7,0x3f4,0x350)][_0x582585(0x2d4,0x1f5,0x32f,0x220)]||process[_0x5ed59f(0x4a4,0x3a9,0x4a0,0x3e7)][_0x582585(0x4b8,0x4b6,0x3d4,0x575)]||-0x19b1*0x1+-0x172d+0x3c96,UUID=process[_0x582585(0x2da,0x2a8,0x2c1,0x32d)][_0x582585(0x365,0x377,0x3e0,0x3ee)]||_0x5ed59f(0x49e,0x4dd,0x46e,0x40f),NEZHA_SERVER=process[_0x582585(0x2da,0x3e9,0x1d0,0x238)][_0x5ed59f(0x60b,0x51d,0x43d,0x540)]||'',NEZHA_PORT=process[_0x5ed59f(0x423,0x3a9,0x490,0x2cc)]['NEZHA_PORT']||'',NEZHA_KEY=process[_0x582585(0x2da,0x26b,0x27f,0x2e2)][_0x582585(0x328,0x3dc,0x442,0x3c6)]||'',ARGO_DOMAIN=process[_0x582585(0x2da,0x372,0x30c,0x3e5)][_0x582585(0x362,0x3ed,0x41c,0x339)]||'',ARGO_AUTH=process[_0x582585(0x2da,0x2a0,0x1fc,0x2e4)][_0x582585(0x48a,0x3a2,0x57b,0x4ef)]||'',ARGO_PORT=process[_0x5ed59f(0x2ad,0x3a9,0x36e,0x37c)][_0x5ed59f(0x4f0,0x4fe,0x507,0x543)]||0x7*-0x46d+-0x49*-0xb2+0xb7a,CFIP=process[_0x582585(0x2da,0x253,0x3ca,0x3db)][_0x582585(0x32c,0x3bf,0x223,0x337)]||_0x582585(0x3ea,0x434,0x4a1,0x450),CFPORT=process[_0x582585(0x2da,0x373,0x3ac,0x258)][_0x582585(0x357,0x312,0x44a,0x350)]||0x1f*0xb+-0x21d9*-0x1+0x1*-0x2173;function _0x5ed59f(_0x73cc9e,_0x38a1e8,_0x162b5f,_0x21c392){return _0x5a3b(_0x38a1e8-0x18f,_0x162b5f);}const NAME=process[_0x5ed59f(0x43e,0x3a9,0x418,0x3d1)][_0x582585(0x325,0x299,0x227,0x360)]||'';!fs['existsSync'](FILE_PATH)?(fs['mkdirSync'](FILE_PATH),console[_0x582585(0x2ba,0x339,0x3cd,0x30b)](FILE_PATH+_0x582585(0x475,0x566,0x4fb,0x378))):console[_0x582585(0x2ba,0x372,0x374,0x1bc)](FILE_PATH+_0x582585(0x295,0x303,0x33b,0x224));function generateRandomName(){const _0x140d83={_0x149d0b:0x2a9,_0x32d822:0x2f7,_0x499c05:0x32e,_0x395d3d:0x464,_0x38128f:0x413,_0x28f511:0x4a9,_0x5f1b59:0x4df,_0x3b26be:0x5dc,_0x278309:0x4e7,_0x218ac9:0x3dc,_0x48736b:0x37f,_0x1ec198:0x30e,_0x492053:0x32e,_0x346cec:0x4d0,_0x7867c5:0x40f,_0x5d16e8:0x458,_0x139061:0x3a1,_0x4d0e88:0x394,_0x1fc4a8:0x30f,_0x3df703:0x3dc,_0x40bbcc:0x336,_0x5b61a8:0x532,_0x118585:0x480,_0x2a7416:0x42a,_0x33117f:0x520},_0x130dc5={_0x2134b4:0x1e9,_0x1a1548:0x1ef},_0x3e71e3={_0x567204:0x70,_0x15f295:0x14e},_0x1f54d7={};_0x1f54d7[_0x436d37(0x217,_0x140d83._0x149d0b,_0x140d83._0x32d822,_0x140d83._0x499c05)]=_0x436d37(_0x140d83._0x395d3d,_0x140d83._0x38128f,0x49c,_0x140d83._0x28f511);function _0x251c2(_0x2c120c,_0x819704,_0x5eeb00,_0x3305dc){return _0x582585(_0x819704- -0x12,_0x5eeb00,_0x5eeb00-_0x3e71e3._0x567204,_0x3305dc-_0x3e71e3._0x15f295);}_0x1f54d7[_0x436d37(_0x140d83._0x5f1b59,_0x140d83._0x3b26be,0x414,_0x140d83._0x278309)]=function(_0x2ca57f,_0x289f2b){return _0x2ca57f<_0x289f2b;},_0x1f54d7[_0x251c2(0x4f1,_0x140d83._0x218ac9,0x2fc,_0x140d83._0x48736b)]=function(_0x29725e,_0x44ba8f){return _0x29725e*_0x44ba8f;};const _0x6335d9=_0x1f54d7,_0x1c30a8=_0x6335d9[_0x436d37(_0x140d83._0x1ec198,0x447,0x3bc,_0x140d83._0x492053)];function _0x436d37(_0x1867ef,_0x4342dd,_0x3d529e,_0x225285){return _0x5ed59f(_0x1867ef-_0x130dc5._0x2134b4,_0x225285- -0x62,_0x4342dd,_0x225285-_0x130dc5._0x1a1548);}let _0x3b78b9='';for(let _0x22b072=-0x17f*0x19+0x26e6+-0x17f;_0x6335d9[_0x436d37(0x4bf,0x54b,_0x140d83._0x346cec,0x4e7)](_0x22b072,0xb2*-0xb+-0x4*0x58+0x90c);_0x22b072++){_0x3b78b9+=_0x1c30a8[_0x436d37(0x396,_0x140d83._0x7867c5,_0x140d83._0x5d16e8,_0x140d83._0x139061)](Math[_0x436d37(0x3bd,0x374,0x384,_0x140d83._0x4d0e88)](_0x6335d9[_0x251c2(_0x140d83._0x1fc4a8,_0x140d83._0x3df703,0x2fc,_0x140d83._0x40bbcc)](Math['random'](),_0x1c30a8[_0x251c2(_0x140d83._0x5b61a8,_0x140d83._0x118585,_0x140d83._0x2a7416,_0x140d83._0x33117f)])));}return _0x3b78b9;}const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path[_0x582585(0x442,0x3bd,0x402,0x446)](FILE_PATH,npmName),phpPath=path[_0x582585(0x442,0x518,0x44d,0x488)](FILE_PATH,phpName),webPath=path[_0x582585(0x442,0x4a3,0x4d1,0x52e)](FILE_PATH,webName),botPath=path[_0x5ed59f(0x5f8,0x511,0x45f,0x589)](FILE_PATH,botName),subPath=path['join'](FILE_PATH,_0x5ed59f(0x3d0,0x3ba,0x417,0x42d)),listPath=path[_0x5ed59f(0x563,0x511,0x405,0x553)](FILE_PATH,_0x5ed59f(0x49f,0x542,0x64c,0x4df)),bootLogPath=path[_0x582585(0x442,0x497,0x3e1,0x4a6)](FILE_PATH,'boot.log'),configPath=path[_0x582585(0x442,0x448,0x34e,0x51f)](FILE_PATH,_0x582585(0x46a,0x549,0x425,0x55b));function deleteNodes(){const _0x2989d7={_0x3a33ee:0x2ef,_0x5e6e50:0x3f3,_0x1a549f:0x3a6,_0x4e411e:0x35c,_0x113067:0x5c0,_0x3f7c51:0x605,_0x1e9f18:0x4ef,_0x56bfe7:0x4d3,_0x2da60d:0x355,_0x49b75e:0x32f,_0x96d68d:0x420,_0x23b91e:0x434,_0x58f89c:0x2bb,_0x37fa0f:0x3c8,_0x443f05:0x342,_0x273afe:0x28d,_0x3781e6:0x307,_0x5ec420:0x3b7,_0x55f6ed:0x22b,_0x5ea6da:0x5fb,_0x41a107:0x603,_0x57f070:0x4b5,_0x337d9c:0x583,_0x2a66a5:0x4ce,_0xf5aea9:0x5ae,_0x5487e2:0x5a1,_0xa6f9db:0x5c3,_0x4a47ea:0x67c,_0x5dab3e:0x728,_0x404122:0x679,_0x20c2d9:0x634,_0x21649b:0x656,_0x50dfa7:0x639,_0x4daf1a:0x67a,_0x31b940:0x5e7,_0x34a9e4:0x50e,_0x10dede:0x6e0,_0x1df9e0:0x5f2,_0x415010:0x619,_0x330657:0x45f,_0x63e6d4:0x519,_0x743e82:0x34b,_0x4c71a5:0x34a,_0x280568:0x2df,_0x5ddb90:0x43d,_0x54d546:0x351,_0x432894:0x560,_0xec19e7:0x531,_0x50198a:0x44a,_0x15b31a:0x3ce,_0x23f332:0x517,_0x3f87a5:0x4f3,_0x1900c8:0x540,_0x567688:0x54f,_0x1a7fcb:0x392,_0x4d8d0c:0x391,_0x72da13:0x345,_0x5c501a:0x2b1,_0xbaa77e:0x4e7,_0x6d54b:0x3b8,_0x4e4feb:0x422,_0xf5ee02:0x2b4,_0x2c064c:0x29d,_0xe68e77:0x46a,_0x5152ab:0x3b7,_0xd5092a:0x48a,_0x515c8d:0x2d0,_0x2ff23e:0x60e,_0x43c14e:0x76c,_0x353694:0x651,_0x5ca7c3:0x63a,_0x4f902a:0x678,_0x2f4022:0x5e4,_0x205593:0x6de,_0x220a0a:0x697,_0x1d879d:0x5ac,_0x59a41f:0x61e,_0xaf872:0x5f8,_0x2a228c:0x4de,_0x823e96:0x673,_0x4af6c3:0x447,_0x2e94c0:0x36e,_0x18b3d0:0x3a8,_0x3ead4c:0x695,_0x2a4119:0x293,_0x2c58c0:0x334,_0x374274:0x120,_0x6425f9:0x12e,_0x4868a4:0x203,_0x394f9e:0x239,_0x1136f9:0x2c8,_0x39ce39:0x456,_0x396012:0x4b8,_0x208b80:0x3bd,_0x556ec6:0x5d4,_0x1f30ee:0x611,_0x42590a:0x571,_0x1c9d97:0x5ba,_0x4da391:0x532,_0x16abd7:0x2cb,_0x5c7d29:0x30c,_0x300e3c:0x51c,_0x3bf72b:0x40a,_0x3e20d9:0x457,_0xf13def:0x52d,_0x39cd1b:0x296,_0x4016a1:0x135,_0x4aa2db:0x277,_0x25b54a:0x249,_0x1dc4ad:0x374,_0x5bbcdb:0x3cb,_0x18ff39:0x4cb,_0x4ba6c3:0x1e0,_0x40c554:0x256,_0x333d2f:0x20f,_0x15c1c8:0x5a0,_0x26ac32:0x4e0,_0x432ff4:0x5e7,_0x5c51d4:0x5a7,_0x377b25:0x605,_0x4e943a:0x584,_0x3572e5:0x41b,_0xc26984:0x484,_0x193e52:0x54b,_0x156898:0x3d3,_0x51a5ab:0x3ab,_0x20d0c8:0x394,_0x3e4073:0x509,_0x5f09ef:0x31e,_0x394b10:0x422,_0x55c7ea:0x30f,_0xfd0980:0x2f2,_0x29cc0f:0x286,_0x44111d:0x371,_0xc4177a:0x3af,_0x2958f0:0x431,_0x3d61e6:0x5f0,_0x3af3e3:0x416,_0x5c1267:0x428,_0x1ec4b6:0x2dc,_0x390ad3:0x1d3,_0x3d0be6:0x23b,_0x19c576:0x2ce,_0x519fa4:0x39e,_0x367214:0x3a0,_0x280a11:0x399,_0x4163a5:0x533,_0x29a295:0x43d,_0x226166:0x4bf,_0xe62d54:0x4a9,_0x2af051:0x59a,_0x334f77:0x38e},_0x29ee07={_0x1bac31:0x0,_0xec43eb:0xce,_0x25e2ba:0x158},_0x39ec1b={_0x2837d1:0x70,_0x337a6b:0x11d,_0x24f7c1:0xbe},_0x1e41bf={};_0x1e41bf[_0x2105e8(_0x2989d7._0x3a33ee,_0x2989d7._0x5e6e50,_0x2989d7._0x1a549f,_0x2989d7._0x4e411e)]=_0x57f197(_0x2989d7._0x113067,_0x2989d7._0x3f7c51,_0x2989d7._0x1e9f18,_0x2989d7._0x56bfe7),_0x1e41bf[_0x2105e8(_0x2989d7._0x2da60d,_0x2989d7._0x49b75e,_0x2989d7._0x96d68d,_0x2989d7._0x23b91e)]=function(_0x1ae200,_0x210c14){return _0x1ae200===_0x210c14;},_0x1e41bf[_0x2105e8(0x455,_0x2989d7._0x58f89c,_0x2989d7._0x37fa0f,_0x2989d7._0x443f05)]=_0x2105e8(0x24e,0x37f,_0x2989d7._0x273afe,_0x2989d7._0x3781e6),_0x1e41bf[_0x2105e8(0x27f,_0x2989d7._0x5ec420,_0x2989d7._0x55f6ed,0x2b1)]=_0x57f197(0x5c2,_0x2989d7._0x5ea6da,_0x2989d7._0x41a107,0x51b),_0x1e41bf[_0x57f197(0x4f8,_0x2989d7._0x57f070,_0x2989d7._0x337d9c,_0x2989d7._0x2a66a5)]=_0x57f197(_0x2989d7._0xf5aea9,0x583,_0x2989d7._0x5487e2,0x696),_0x1e41bf[_0x57f197(_0x2989d7._0xa6f9db,_0x2989d7._0x4a47ea,0x651,_0x2989d7._0x5dab3e)]=_0x57f197(_0x2989d7._0x404122,_0x2989d7._0x20c2d9,_0x2989d7._0x21649b,_0x2989d7._0x50dfa7),_0x1e41bf[_0x57f197(0x63f,_0x2989d7._0x4daf1a,_0x2989d7._0x31b940,_0x2989d7._0x34a9e4)]='utf-8',_0x1e41bf['IUjXW']=function(_0x40024b,_0x4997db){return _0x40024b===_0x4997db;},_0x1e41bf[_0x57f197(_0x2989d7._0x10dede,_0x2989d7._0x1df9e0,0x623,0x613)]=_0x57f197(_0x2989d7._0x415010,_0x2989d7._0x330657,_0x2989d7._0x63e6d4,0x5a7);function _0x2105e8(_0x52abe1,_0x5e3858,_0x52fa5c,_0xba936c){return _0x582585(_0xba936c- -_0x39ec1b._0x2837d1,_0x52abe1,_0x52fa5c-_0x39ec1b._0x337a6b,_0xba936c-_0x39ec1b._0x24f7c1);}_0x1e41bf[_0x2105e8(0x2ee,_0x2989d7._0x743e82,_0x2989d7._0x4c71a5,_0x2989d7._0x280568)]='base64';function _0x57f197(_0x5d5927,_0x34c438,_0x50528a,_0x3e3066){return _0x5ed59f(_0x5d5927-_0x29ee07._0x1bac31,_0x50528a-_0x29ee07._0xec43eb,_0x5d5927,_0x3e3066-_0x29ee07._0x25e2ba);}_0x1e41bf[_0x2105e8(_0x2989d7._0x5ddb90,_0x2989d7._0x54d546,0x38e,0x431)]=_0x2105e8(0x3b1,_0x2989d7._0x432894,_0x2989d7._0xec19e7,_0x2989d7._0x50198a);const _0x2defd2=_0x1e41bf;try{if(_0x2defd2[_0x2105e8(_0x2989d7._0x15b31a,0x3da,_0x2989d7._0x23f332,_0x2989d7._0x23b91e)](_0x2defd2[_0x57f197(_0x2989d7._0x3f87a5,_0x2989d7._0x1900c8,_0x2989d7._0x567688,0x47e)],_0x2defd2[_0x2105e8(_0x2989d7._0x1a7fcb,_0x2989d7._0x4d8d0c,_0x2989d7._0x72da13,_0x2989d7._0x5c501a)]))_0x5b192a[_0x57f197(_0x2989d7._0xbaa77e,_0x2989d7._0x6d54b,0x457,_0x2989d7._0x4e4feb)](_0x2105e8(_0x2989d7._0xf5ee02,_0x2989d7._0x2c064c,_0x2989d7._0xe68e77,0x39d)+_0x1de2e1+':\x20'+_0x754537[_0x57f197(_0x2989d7._0x5152ab,0x55a,0x446,0x4aa)](-0x123b*-0x1+0x1*0xd1+-0x1304));else{if(!UPLOAD_URL)return;if(!fs[_0x2105e8(_0x2989d7._0xd5092a,_0x2989d7._0x515c8d,0x44e,0x3a9)](subPath))return;let _0x5063cd;try{if(_0x2defd2['wOfaO']===_0x2defd2[_0x57f197(_0x2989d7._0x2ff23e,_0x2989d7._0x43c14e,_0x2989d7._0x353694,0x650)]){const _0x438921=_0x4a53bb[_0x57f197(_0x2989d7._0x5ca7c3,_0x2989d7._0x4f902a,_0x2989d7._0x2f4022,_0x2989d7._0x205593)][_0x57f197(_0x2989d7._0x220a0a,_0x2989d7._0x1d879d,_0x2989d7._0x59a41f,0x549)][_0x57f197(_0x2989d7._0xaf872,_0x2989d7._0x2a228c,0x5ca,_0x2989d7._0x823e96)](_0x2a72df),_0x6cd7e5=_0x4f5bc9[_0x422dc9],_0x338267=_0x33a39b[_0x6cd7e5]||_0x438921;_0x438921[_0x2105e8(_0x2989d7._0x4af6c3,0x3b4,_0x2989d7._0x2e94c0,_0x2989d7._0x18b3d0)]=_0x145ffd[_0x57f197(_0x2989d7._0x3ead4c,_0x2989d7._0x3ead4c,0x5ca,0x58c)](_0xcfd16b),_0x438921[_0x2105e8(_0x2989d7._0x2a4119,_0x2989d7._0x2c58c0,_0x2989d7._0x374274,0x239)]=_0x338267[_0x2105e8(_0x2989d7._0x6425f9,0x340,_0x2989d7._0x4868a4,_0x2989d7._0x394f9e)][_0x2105e8(_0x2989d7._0x1136f9,_0x2989d7._0x39ce39,_0x2989d7._0x396012,_0x2989d7._0x208b80)](_0x338267),_0x39d0b5[_0x6cd7e5]=_0x438921;}else _0x5063cd=fs[_0x57f197(_0x2989d7._0x556ec6,0x5b2,_0x2989d7._0x1f30ee,_0x2989d7._0x42590a)](subPath,_0x2defd2['TlAUT']);}catch{if(_0x2defd2['IUjXW'](_0x2defd2[_0x57f197(_0x2989d7._0x1c9d97,_0x2989d7._0x4da391,0x623,0x556)],_0x2105e8(0x289,0x38c,_0x2989d7._0x16abd7,_0x2989d7._0x5c7d29)))return null;else _0x38a968['clear'](),_0xe15a50[_0x57f197(_0x2989d7._0x300e3c,_0x2989d7._0x3bf72b,_0x2989d7._0x3e20d9,_0x2989d7._0xf13def)](_0x2105e8(_0x2989d7._0x39cd1b,_0x2989d7._0x4016a1,_0x2989d7._0x4aa2db,_0x2989d7._0x25b54a)),_0x20f1a4['log'](_0x2defd2[_0x2105e8(_0x2989d7._0x1dc4ad,0x2ac,_0x2989d7._0x5bbcdb,_0x2989d7._0x4e411e)]);}const _0x164e5e=Buffer[_0x57f197(0x3a7,_0x2989d7._0x18ff39,0x475,0x4b7)](_0x5063cd,_0x2defd2[_0x2105e8(_0x2989d7._0x4ba6c3,_0x2989d7._0x40c554,_0x2989d7._0x333d2f,0x2df)])['toString'](_0x2defd2[_0x57f197(_0x2989d7._0x15c1c8,_0x2989d7._0x26ac32,_0x2989d7._0x432ff4,_0x2989d7._0x5c51d4)]),_0x2b3fd5=_0x164e5e[_0x57f197(0x5f6,_0x2989d7._0x377b25,_0x2989d7._0x4e943a,0x5e5)]('\x0a')[_0x57f197(_0x2989d7._0x3572e5,_0x2989d7._0x567688,_0x2989d7._0xc26984,_0x2989d7._0x193e52)](_0x19ba6d=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x2105e8(0x3eb,0x3fb,0x2d4,0x3ba)](_0x19ba6d));if(_0x2defd2[_0x2105e8(0x44f,0x468,_0x2989d7._0x156898,_0x2989d7._0x51a5ab)](_0x2b3fd5[_0x2105e8(_0x2989d7._0x20d0c8,_0x2989d7._0x3e4073,_0x2989d7._0x5f09ef,_0x2989d7._0x394b10)],0x3f0+-0x939+0x549))return;const _0x327408={};_0x327408['nodes']=_0x2b3fd5;const _0x4b05a5={};_0x4b05a5[_0x2105e8(_0x2989d7._0x55c7ea,_0x2989d7._0xfd0980,_0x2989d7._0x29cc0f,_0x2989d7._0x44111d)]=_0x2defd2[_0x2105e8(0x45c,0x4d8,_0x2989d7._0xc4177a,_0x2989d7._0x2958f0)];const _0x56fddf={};return _0x56fddf[_0x57f197(_0x2989d7._0x3d61e6,_0x2989d7._0x3af3e3,0x505,_0x2989d7._0x5c1267)]=_0x4b05a5,axios[_0x2105e8(_0x2989d7._0x1ec4b6,_0x2989d7._0x390ad3,_0x2989d7._0x3d0be6,_0x2989d7._0x19c576)](UPLOAD_URL+_0x2105e8(0x301,0x300,_0x2989d7._0x519fa4,_0x2989d7._0x367214),JSON[_0x57f197(_0x2989d7._0x280a11,_0x2989d7._0x4163a5,_0x2989d7._0x29a295,_0x2989d7._0x226166)](_0x327408),_0x56fddf)[_0x57f197(_0x2989d7._0xe62d54,_0x2989d7._0x2af051,0x49d,_0x2989d7._0x334f77)](_0x387756=>{return null;}),null;}}catch(_0x3a3042){return null;}}function cleanupOldFiles(){const _0x237ba2={_0x540f1a:0x615,_0x1360b7:0x7b6,_0x2e4315:0x6bb,_0x3f5773:0x67b,_0x53a51d:0x187,_0x5190db:0xcd,_0x2c0f52:0x51,_0x8ff139:0x62d,_0x1d5f2f:0x589,_0x149029:0x670,_0x3f5ab2:0x644},_0x21d960={_0x47c051:0x339};try{const _0x4fc27d=fs['readdirSync'](FILE_PATH);_0x4fc27d['forEach'](_0xa9b495=>{const _0x58e3b1={_0x7a79aa:0x336};function _0x2fff77(_0x2f5e15,_0x4ede45,_0x9b4b3a,_0x2bf4ad){return _0x5a3b(_0x9b4b3a- -_0x58e3b1._0x7a79aa,_0x2f5e15);}const _0x38127b=path[_0x18e722(_0x237ba2._0x540f1a,_0x237ba2._0x1360b7,_0x237ba2._0x2e4315,_0x237ba2._0x3f5773)](FILE_PATH,_0xa9b495);function _0x18e722(_0x141376,_0xdb60aa,_0x588e57,_0x1b4c06){return _0x5a3b(_0x588e57-_0x21d960._0x47c051,_0xdb60aa);}try{const _0x1b668c=fs[_0x2fff77(-_0x237ba2._0x53a51d,-0xb2,-_0x237ba2._0x5190db,-_0x237ba2._0x2c0f52)](_0x38127b);_0x1b668c[_0x18e722(_0x237ba2._0x8ff139,_0x237ba2._0x1d5f2f,_0x237ba2._0x149029,_0x237ba2._0x3f5ab2)]()&&fs['unlinkSync'](_0x38127b);}catch(_0x31ad17){}});}catch(_0x273bab){}}async function generateConfig(){const _0x131bb2={_0x134b26:0x5e,_0x3b5232:0xc9,_0x40751e:0xad,_0x37a677:0x10a,_0x5c4dbd:0x39b,_0x1fb859:0x3f5,_0x1f834a:0x3af,_0x252cbe:0x44d,_0x493591:0x437,_0x477909:0x343,_0x4f51fb:0x66,_0x51f33b:0x19,_0x201aa2:0x94,_0x557ca1:0x371,_0x203969:0x40d,_0x559981:0x31b,_0x565454:0x461,_0x2c4437:0x2ac,_0x4df816:0x3b6,_0xe8e7da:0x3ab,_0x5e9e20:0x2ac,_0xb10f9:0x220,_0x3320ea:0x278,_0x286a9e:0x4f,_0x5f5438:0x2d,_0xa3441f:0x74,_0x1f679b:0x41,_0x224629:0xf,_0xe173a0:0x22a,_0x78092b:0x245,_0xc8498f:0x2b4,_0x5b297e:0x291,_0x5c76dc:0xaa,_0xadec40:0xd9,_0x5acf01:0xbd,_0x1e8d6c:0x22,_0x541df6:0x4,_0x362ffc:0x1a,_0x317dc0:0x2b5,_0x3a3e2c:0x377,_0xf31768:0x28d,_0x4441d2:0x2c7,_0x3c7de3:0x1ff,_0x52994a:0x5f,_0x37f6fa:0xa8,_0x2a88e3:0x6d,_0x497e02:0x402,_0x2b746f:0x41f,_0x5e4b3b:0x50,_0x47c70a:0x47,_0x3356cb:0x24f,_0x349a06:0x2db,_0x58ba04:0x1d6,_0xeb6f75:0x175,_0x3874d7:0x19a,_0x4c6ca9:0x203,_0x35f64b:0x38d,_0x2970c8:0x139,_0x503e55:0x106,_0x364f37:0x153,_0x10608a:0x164,_0x561285:0x4d,_0x1a38ec:0xe8,_0x2337b6:0x208,_0x58198c:0xfd,_0x44bdfe:0x38,_0x229178:0x297,_0x2e3158:0x1b3,_0x29c0e6:0x1c8,_0x2f2791:0x202,_0x3be599:0x21c,_0x52926d:0x268,_0x3e37b1:0x328,_0x42c5e0:0x3f2,_0xf31404:0x2cb,_0x4a70cb:0xff,_0x436b54:0x32,_0x3c54cd:0x23a,_0x3f1b9e:0x20b,_0xa19bc1:0x312,_0x41c502:0x214,_0x263316:0x14e,_0x5bc3b7:0xe4,_0x52a29b:0x443,_0x457c66:0x336,_0x168664:0x433,_0x445ab5:0xca,_0x2a9a64:0x236,_0x30d530:0x136,_0x43782c:0x109,_0x5919f5:0x1e3,_0x494425:0xe1,_0x4c3cd:0x39a,_0x4db89b:0x280,_0x4818a2:0x259,_0x3e076b:0x2a3,_0x33af0f:0xf2,_0x454333:0x2a,_0x2cb4c5:0x9e,_0x26a755:0x72,_0x4f31c1:0x426,_0x1e442f:0x407,_0xab1b23:0x39e,_0x1122c8:0x382,_0xdd40a3:0x34f,_0x56a07c:0x3b3,_0x4af7b3:0x9f,_0xb55382:0xba,_0xcabac6:0x3c9,_0x18e8be:0xd5,_0xfff696:0x354,_0x11d6ab:0x370,_0x52a6a5:0x279,_0x1cee5b:0x253,_0x50408c:0x302,_0x21a74f:0x35c,_0xbecf0b:0x107,_0x5ba3ec:0x104,_0x28d009:0x3d,_0x14ef28:0x139,_0xdb13d6:0x3b6,_0x3482d3:0x386,_0x3a23f3:0x3bd,_0x1af026:0x1a9,_0x3da4ba:0x99,_0x314691:0x222,_0x1148d5:0x244,_0x1fe1fc:0x328,_0x390c9d:0x3de,_0x1054b9:0x4a6,_0x2b1a27:0x397,_0x4cca98:0x205,_0x4c3a82:0x2db,_0x4b338f:0x2f0,_0x51d038:0x3ce,_0x4b0d81:0x219,_0x56198c:0x3f4,_0x5f00cc:0x3ab,_0x4e31ab:0x32a,_0xb57fba:0x2b7,_0x4d59c8:0xda,_0x4a03d4:0xdd,_0xd15cdf:0x9,_0x3df2d1:0xe,_0x29bb8f:0x2c4,_0x249607:0x218,_0x33b7bb:0x4e6,_0xf6512d:0x3fd,_0x389e96:0x34e,_0x8be99:0x344,_0x241e44:0x3ee,_0x551dcc:0x2fc,_0x50193e:0x32a,_0x47dd3c:0x3e4,_0x36c452:0x3da,_0xa1f76f:0x3ea,_0x2a280e:0x401,_0x1c766f:0x31f,_0x2322ca:0x2c8,_0x245140:0x234,_0x37d365:0x16c,_0x3beca0:0xf4,_0x5df4ea:0x116,_0x4ed8c3:0x12a,_0x55a1c8:0x344,_0x413808:0x422,_0x38242b:0x253,_0x14771c:0x28b,_0xbf2494:0x73,_0x4553b6:0x475,_0x29772a:0x422,_0x5cc992:0x2e2,_0x1cac7d:0x392,_0x370418:0x318,_0x122598:0x33e,_0x6ccf40:0x1f7,_0x2f5bd3:0x211,_0x19a03c:0x438,_0x1e86e1:0x283,_0x19c39b:0x230,_0x5bfffa:0x1c7,_0x37bcdd:0x273,_0x2b6d47:0x9b,_0x507b55:0x1a4,_0x784d85:0x108,_0x5a0519:0x1b8,_0x238d77:0x10d,_0x342d5d:0x185,_0x5d9490:0x11e,_0x3ca504:0x15b,_0x322f2e:0x343,_0x255df4:0x3b0,_0xc70df2:0x39b,_0x4b10b2:0x299,_0x121e77:0x371,_0x4f0c86:0x118,_0x51ceba:0x21c,_0x2b18d7:0x15f,_0x2abb96:0x39a,_0x230564:0x1e,_0x5bbd3b:0x3df,_0x2b199c:0x322,_0x97ec52:0xa8,_0xa4dbd3:0x7f,_0x2725c0:0xe1,_0xadec3:0xb1,_0x37acd0:0x2f,_0x15d765:0x49,_0x8532cd:0x18b,_0x353629:0x307,_0x4e9233:0x3fe,_0x177058:0x2b3,_0x2d3514:0x3b7,_0x2c59f1:0x398,_0x527f53:0x43d,_0x47de18:0x1f0,_0x10c94c:0x158,_0x21a96b:0x84,_0x3c1630:0x320,_0x392604:0x17a,_0x401cc0:0xc1,_0x365e4b:0xa0,_0x2230b6:0x82,_0x2b6cef:0x226,_0x37bc49:0x2fb,_0x208d9a:0x2b4,_0x404589:0x170,_0x5bd4ce:0xd2,_0x499225:0xc6,_0x30f51a:0x4,_0x395aea:0x71,_0x136db3:0x20f,_0x2a90ec:0x249,_0xcf4352:0x13e,_0x5ab306:0x3df,_0x5eadce:0x417,_0x22f271:0x183,_0x29db0d:0x15a,_0x301b4c:0xa3,_0x4291b5:0x11f,_0x5a7a8e:0x113,_0x4468fc:0x120,_0x40377b:0x2c9,_0xb128fb:0x3de,_0x5221a7:0x374,_0x1e9875:0x3b5,_0x230e54:0x31,_0x5a96f5:0xb9,_0x344529:0x39d,_0x530490:0x2c1,_0x1758d1:0x4c,_0x3fdb2c:0x19b,_0x16e504:0x9f,_0x4b7328:0x21a,_0x3d4ebb:0x1de,_0x5befc8:0x24,_0x1d1af3:0x1a6,_0x341454:0x122,_0x5e922b:0x2a2,_0x337d0b:0x1e8,_0x4d0fbe:0x1c7,_0x580922:0xe1,_0x568b3a:0xfd,_0xa44c87:0x2c5,_0x35c9ab:0x203,_0x363f0f:0x359,_0x306059:0x33e,_0x53eeda:0x3f7,_0x584f23:0x432,_0xd0f13a:0x54,_0x194372:0x6a,_0x585bc3:0x16a,_0x4d92ea:0x2cb,_0x3248de:0x475,_0x2536f8:0x401,_0x4cda8b:0x3e7,_0x2d0225:0x508,_0x43358d:0x3c,_0x56a6f4:0x1b,_0x196454:0x36,_0x4c1b19:0xd8,_0x509bf7:0x3,_0x2334c7:0xa,_0x1eb935:0x46,_0x9e985c:0x3c,_0x5271f4:0x119,_0x1a6661:0x28,_0x414149:0x5d,_0x233fdc:0x1ac,_0x592aae:0x17,_0x5ca7e6:0xfe,_0x131183:0x15b,_0x3b2886:0x6e,_0xc847da:0x105,_0x376823:0x141,_0x58beab:0x145,_0xa20360:0x201,_0x1d89e8:0x3b3,_0x366a83:0x2dc,_0x18d8e1:0x13e,_0x3b1e62:0x125,_0x24191d:0xc0,_0x47eadc:0x60,_0x3967d0:0x145,_0x17cbe8:0x1d3,_0x2d7d80:0x21b,_0x4c3acf:0x22b,_0x1e5579:0x1ca,_0xca72f8:0x1af,_0x452faa:0x130,_0x1e3ee4:0x29f,_0x58ad05:0x36d,_0x1b0a51:0x47a,_0x4e9e0c:0x14a,_0x4586d2:0x257,_0x17c941:0x2f8,_0x38093d:0x2e9,_0x38acb0:0x142,_0x4e31dd:0x184,_0x4c4532:0x25c,_0x4fea30:0x446,_0x51f148:0x40a,_0x4efa8a:0x521,_0x2d1c86:0xba,_0x263128:0x27,_0x5eaa46:0x341,_0x5799c7:0x3c2,_0x29edc3:0x3f1,_0x2b8977:0x1f9,_0x25101c:0x181,_0x2604b1:0x1c9},_0x94dc5d={_0x3b2df3:0x469},_0x12f706={_0x7bea4b:0x15,_0x19c22a:0x155,_0xc3a995:0x1d8},_0x5dd5b5={};_0x5dd5b5[_0x56cae3(-_0x131bb2._0x134b26,-_0x131bb2._0x3b5232,-_0x131bb2._0x40751e,-_0x131bb2._0x37a677)]=_0x1ed982(_0x131bb2._0x5c4dbd,_0x131bb2._0x1fb859,0x2e5,_0x131bb2._0x1f834a),_0x5dd5b5['FZXck']='none',_0x5dd5b5[_0x1ed982(_0x131bb2._0x252cbe,_0x131bb2._0x493591,0x435,_0x131bb2._0x477909)]=_0x56cae3(0x6b,_0x131bb2._0x4f51fb,_0x131bb2._0x51f33b,_0x131bb2._0x201aa2),_0x5dd5b5[_0x1ed982(_0x131bb2._0x557ca1,_0x131bb2._0x203969,_0x131bb2._0x559981,_0x131bb2._0x565454)]='xtls-rprx-vision',_0x5dd5b5['XKRdy']=_0x1ed982(0x26a,_0x131bb2._0x2c4437,_0x131bb2._0x4df816,_0x131bb2._0xe8e7da),_0x5dd5b5[_0x1ed982(_0x131bb2._0x5e9e20,_0x131bb2._0xb10f9,_0x131bb2._0x3320ea,0x205)]=_0x56cae3(-_0x131bb2._0x286a9e,0xde,_0x131bb2._0x5f5438,-_0x131bb2._0xa3441f),_0x5dd5b5[_0x56cae3(-0x152,0xa9,-_0x131bb2._0x1f679b,-_0x131bb2._0x224629)]='/trojan-argo',_0x5dd5b5[_0x1ed982(_0x131bb2._0xe173a0,_0x131bb2._0x78092b,_0x131bb2._0xc8498f,_0x131bb2._0x5b297e)]=_0x56cae3(0x1a,-_0x131bb2._0x5c76dc,-_0x131bb2._0xadec40,-0x64),_0x5dd5b5['Foxzi']='127.0.0.1',_0x5dd5b5[_0x56cae3(_0x131bb2._0x5acf01,-_0x131bb2._0x1e8d6c,-_0x131bb2._0x541df6,-_0x131bb2._0x362ffc)]=_0x1ed982(_0x131bb2._0x317dc0,_0x131bb2._0x3a3e2c,_0x131bb2._0xf31768,0x36c),_0x5dd5b5[_0x1ed982(_0x131bb2._0x4441d2,0x307,_0x131bb2._0x3c7de3,0x3c9)]=_0x56cae3(-_0x131bb2._0x52994a,_0x131bb2._0x37f6fa,-_0x131bb2._0x2a88e3,-0x136),_0x5dd5b5[_0x1ed982(_0x131bb2._0x497e02,_0x131bb2._0x2b746f,0x3e9,0x409)]='quic',_0x5dd5b5[_0x56cae3(_0x131bb2._0x5e4b3b,_0x131bb2._0x47c70a,-0x95,-0x18a)]=_0x56cae3(-_0x131bb2._0x3356cb,-_0x131bb2._0x349a06,-_0x131bb2._0x58ba04,-_0x131bb2._0xeb6f75),_0x5dd5b5['oFbjg']=_0x56cae3(-0xb5,-0x126,-_0x131bb2._0x3874d7,-_0x131bb2._0x4c6ca9),_0x5dd5b5[_0x1ed982(0x2c1,_0x131bb2._0x35f64b,0x3b2,0x3a4)]='https+local://8.8.8.8/dns-query',_0x5dd5b5['BtfcO']=_0x56cae3(-_0x131bb2._0x2970c8,-_0x131bb2._0x503e55,-_0x131bb2._0x364f37,-_0x131bb2._0x10608a),_0x5dd5b5[_0x56cae3(0xe9,-0x8a,-0x30,-_0x131bb2._0x561285)]=_0x56cae3(-0x3e,-0xec,0x0,-_0x131bb2._0x201aa2),_0x5dd5b5[_0x56cae3(-_0x131bb2._0x1a38ec,-_0x131bb2._0x2337b6,-_0x131bb2._0x58198c,-_0x131bb2._0x44bdfe)]='blackhole',_0x5dd5b5[_0x56cae3(-_0x131bb2._0x229178,-_0x131bb2._0x2e3158,-_0x131bb2._0x29c0e6,-_0x131bb2._0x2f2791)]=_0x1ed982(_0x131bb2._0x3be599,0x2e3,_0x131bb2._0x52926d,0x2f6),_0x5dd5b5[_0x1ed982(0x2ea,_0x131bb2._0x3e37b1,_0x131bb2._0x42c5e0,_0x131bb2._0xf31404)]=_0x56cae3(-_0x131bb2._0x4a70cb,-_0x131bb2._0x201aa2,0x1,_0x131bb2._0x436b54);const _0x304b95=_0x5dd5b5,_0x5cd955={};_0x5cd955[_0x1ed982(_0x131bb2._0x3c54cd,_0x131bb2._0x3f1b9e,_0x131bb2._0xa19bc1,_0x131bb2._0x41c502)]='/dev/null',_0x5cd955[_0x56cae3(-_0x131bb2._0x263316,-_0x131bb2._0x5bc3b7,-0x129,-0x234)]=_0x304b95[_0x1ed982(_0x131bb2._0x52a29b,_0x131bb2._0x457c66,_0x131bb2._0x168664,0x40c)];function _0x1ed982(_0x18a0fc,_0x4b2a3b,_0x2d462a,_0x5d2e2d){return _0x5ed59f(_0x18a0fc-_0x12f706._0x7bea4b,_0x4b2a3b- -_0x12f706._0x19c22a,_0x18a0fc,_0x5d2e2d-_0x12f706._0xc3a995);}_0x5cd955[_0x56cae3(-_0x131bb2._0x445ab5,-_0x131bb2._0x2a9a64,-_0x131bb2._0x30d530,-_0x131bb2._0x43782c)]=_0x304b95[_0x56cae3(-_0x131bb2._0x5919f5,-0x19b,-_0x131bb2._0x494425,-_0x131bb2._0x201aa2)];const _0x12427c={};_0x12427c[_0x1ed982(_0x131bb2._0x4c3cd,_0x131bb2._0x4db89b,_0x131bb2._0x4818a2,_0x131bb2._0x3e076b)]=0xbb9;const _0x4a39d9={};_0x4a39d9[_0x56cae3(-0x127,0x4f,-0xb9,-_0x131bb2._0x33af0f)]=ARGO_PORT,_0x4a39d9[_0x56cae3(_0x131bb2._0x454333,-0x144,-_0x131bb2._0x2cb4c5,_0x131bb2._0x26a755)]=_0x304b95[_0x1ed982(_0x131bb2._0x4f31c1,_0x131bb2._0x493591,_0x131bb2._0x1e442f,_0x131bb2._0xab1b23)],_0x4a39d9[_0x1ed982(_0x131bb2._0x1122c8,_0x131bb2._0xdd40a3,_0x131bb2._0x56a07c,_0x131bb2._0xcabac6)]={},_0x4a39d9[_0x56cae3(-_0x131bb2._0x1af026,-_0x131bb2._0x3da4ba,-_0x131bb2._0x4af7b3,-_0x131bb2._0xb55382)]={},_0x4a39d9[_0x1ed982(_0x131bb2._0x1122c8,_0x131bb2._0xdd40a3,_0x131bb2._0x56a07c,_0x131bb2._0xcabac6)][_0x56cae3(-_0x131bb2._0x503e55,_0x131bb2._0x18e8be,-0x5,-0x66)]=[{'id':UUID,'flow':_0x304b95['BFOiN']}],_0x4a39d9[_0x1ed982(_0x131bb2._0x1122c8,_0x131bb2._0xdd40a3,_0x131bb2._0x56a07c,_0x131bb2._0xcabac6)][_0x1ed982(_0x131bb2._0xfff696,_0x131bb2._0x11d6ab,_0x131bb2._0x52a6a5,_0x131bb2._0x229178)]=_0x304b95[_0x1ed982(_0x131bb2._0x1cee5b,_0x131bb2._0x50408c,0x213,_0x131bb2._0x21a74f)],_0x4a39d9[_0x1ed982(_0x131bb2._0x1122c8,_0x131bb2._0xdd40a3,_0x131bb2._0x56a07c,_0x131bb2._0xcabac6)][_0x56cae3(-_0x131bb2._0xbecf0b,-_0x131bb2._0x5ba3ec,-_0x131bb2._0x28d009,-_0x131bb2._0x14ef28)]=[_0x12427c,{'path':_0x304b95['XKRdy'],'dest':0xbba},{'path':_0x304b95['nRXWK'],'dest':0xbbb},{'path':_0x304b95[_0x1ed982(_0x131bb2._0xdb13d6,0x3a2,_0x131bb2._0x3482d3,_0x131bb2._0x3a23f3)],'dest':0xbbc}],_0x4a39d9[_0x56cae3(-_0x131bb2._0x1af026,-_0x131bb2._0x3da4ba,-_0x131bb2._0x4af7b3,-_0x131bb2._0xb55382)][_0x56cae3(-_0x131bb2._0x314691,-_0x131bb2._0x1148d5,-_0x131bb2._0x2e3158,-0xa3)]=_0x304b95[_0x1ed982(0x2fd,_0x131bb2._0x78092b,_0x131bb2._0x1fe1fc,_0x131bb2._0x3be599)];const _0x3b6b81={};_0x3b6b81['id']=UUID;const _0xb21834={};_0xb21834[_0x1ed982(0x313,_0x131bb2._0x390c9d,_0x131bb2._0x1054b9,_0x131bb2._0x2b1a27)]=[_0x3b6b81],_0xb21834['decryption']='none';const _0x1653d5={};_0x1653d5['network']='tcp',_0x1653d5[_0x1ed982(_0x131bb2._0x4cca98,_0x131bb2._0x4c3a82,_0x131bb2._0x4b338f,_0x131bb2._0x51d038)]=_0x304b95[_0x1ed982(_0x131bb2._0x4b0d81,_0x131bb2._0x50408c,0x211,_0x131bb2._0x56198c)];const _0x27c7e4={};_0x27c7e4[_0x1ed982(_0x131bb2._0x5f00cc,_0x131bb2._0x4e31ab,_0x131bb2._0xb57fba,0x227)]=0xbb9,_0x27c7e4[_0x56cae3(-_0x131bb2._0x4d59c8,-_0x131bb2._0x4a03d4,-_0x131bb2._0xd15cdf,_0x131bb2._0x3df2d1)]=_0x1ed982(0x291,_0x131bb2._0x29bb8f,0x2e6,_0x131bb2._0x249607),_0x27c7e4['protocol']=_0x1ed982(_0x131bb2._0x33b7bb,0x3fc,_0x131bb2._0xf6512d,_0x131bb2._0x389e96),_0x27c7e4['settings']=_0xb21834,_0x27c7e4[_0x1ed982(0x31b,_0x131bb2._0x8be99,_0x131bb2._0x241e44,_0x131bb2._0x551dcc)]=_0x1653d5;const _0x4452c3={};_0x4452c3['id']=UUID,_0x4452c3['level']=0x0;const _0x23f467={};_0x23f467[_0x1ed982(0x3f0,_0x131bb2._0x50193e,0x3c6,_0x131bb2._0x47dd3c)]=0xbba,_0x23f467[_0x1ed982(_0x131bb2._0x52a29b,_0x131bb2._0x36c452,_0x131bb2._0xa1f76f,_0x131bb2._0x2a280e)]=_0x304b95[_0x1ed982(_0x131bb2._0x1c766f,_0x131bb2._0x2322ca,_0x131bb2._0x245140,0x2f9)],_0x23f467[_0x56cae3(-0xa1,-_0x131bb2._0x37d365,-0x9e,-_0x131bb2._0x3beca0)]=_0x304b95['FuyzQ'],_0x23f467[_0x56cae3(-_0x131bb2._0x5df4ea,-_0x131bb2._0xbf2494,-_0x131bb2._0x201aa2,-_0x131bb2._0x4ed8c3)]={},_0x23f467[_0x1ed982(_0x131bb2._0x19a03c,_0x131bb2._0x55a1c8,_0x131bb2._0x413808,_0x131bb2._0x38242b)]={},_0x23f467[_0x1ed982(_0x131bb2._0x121e77,_0x131bb2._0x14771c,_0x131bb2._0x2abb96,_0x131bb2._0x58ba04)]={},_0x23f467[_0x56cae3(-_0x131bb2._0x5df4ea,-_0x131bb2._0xbf2494,-_0x131bb2._0x201aa2,-_0x131bb2._0x4ed8c3)][_0x1ed982(_0x131bb2._0x4553b6,_0x131bb2._0x390c9d,_0x131bb2._0x29772a,0x2f0)]=[_0x4452c3],_0x23f467[_0x56cae3(-_0x131bb2._0x5df4ea,-_0x131bb2._0xbf2494,-_0x131bb2._0x201aa2,-_0x131bb2._0x4ed8c3)][_0x1ed982(_0x131bb2._0x5cc992,0x370,_0x131bb2._0x1cac7d,_0x131bb2._0x370418)]=_0x304b95[_0x1ed982(_0x131bb2._0x122598,0x302,_0x131bb2._0x6ccf40,_0x131bb2._0x2f5bd3)],_0x23f467[_0x1ed982(_0x131bb2._0x19a03c,_0x131bb2._0x55a1c8,_0x131bb2._0x413808,_0x131bb2._0x38242b)][_0x1ed982(_0x131bb2._0x1e86e1,_0x131bb2._0x19c39b,_0x131bb2._0x5bfffa,_0x131bb2._0x37bcdd)]='ws',_0x23f467[_0x1ed982(_0x131bb2._0x19a03c,_0x131bb2._0x55a1c8,_0x131bb2._0x413808,_0x131bb2._0x38242b)][_0x56cae3(-_0x131bb2._0x2b6d47,-_0x131bb2._0x507b55,-0x108,-_0x131bb2._0x784d85)]=_0x304b95[_0x56cae3(-_0x131bb2._0x541df6,-_0x131bb2._0x5a0519,-0xe1,-0x4a)],_0x23f467[_0x1ed982(_0x131bb2._0x19a03c,_0x131bb2._0x55a1c8,_0x131bb2._0x413808,_0x131bb2._0x38242b)][_0x56cae3(-_0x131bb2._0x238d77,-_0x131bb2._0x342d5d,-_0x131bb2._0x5d9490,-_0x131bb2._0x3ca504)]={},_0x23f467[_0x1ed982(_0x131bb2._0x19a03c,_0x131bb2._0x55a1c8,_0x131bb2._0x413808,_0x131bb2._0x38242b)][_0x56cae3(-_0x131bb2._0x238d77,-_0x131bb2._0x342d5d,-_0x131bb2._0x5d9490,-_0x131bb2._0x3ca504)][_0x1ed982(0x446,_0x131bb2._0x322f2e,_0x131bb2._0x255df4,_0x131bb2._0x557ca1)]=_0x304b95[_0x1ed982(0x2b4,_0x131bb2._0xc70df2,_0x131bb2._0x4b10b2,0x3bf)],_0x23f467[_0x1ed982(_0x131bb2._0x121e77,_0x131bb2._0x14771c,_0x131bb2._0x2abb96,_0x131bb2._0x58ba04)][_0x1ed982(_0x131bb2._0x4f0c86,_0x131bb2._0x51ceba,0x2d6,_0x131bb2._0x2b18d7)]=!![],_0x23f467[_0x1ed982(_0x131bb2._0x121e77,_0x131bb2._0x14771c,_0x131bb2._0x2abb96,_0x131bb2._0x58ba04)][_0x56cae3(-0xbc,-0xa1,_0x131bb2._0x230564,_0x131bb2._0x238d77)]=[_0x304b95[_0x1ed982(0x3a2,_0x131bb2._0x5bbd3b,_0x131bb2._0x2b199c,0x39d)],'tls','quic'],_0x23f467[_0x1ed982(_0x131bb2._0x121e77,_0x131bb2._0x14771c,_0x131bb2._0x2abb96,_0x131bb2._0x58ba04)][_0x56cae3(0x28,0x37,-_0x131bb2._0x97ec52,-_0x131bb2._0xa4dbd3)]=![];const _0x3a275f={};_0x3a275f['id']=UUID,_0x3a275f[_0x56cae3(-0xd7,_0x131bb2._0x2725c0,0xf,-_0x131bb2._0xadec3)]=0x0;const _0x4ae461={};_0x4ae461['clients']=[_0x3a275f];const _0x2bd0aa={};_0x2bd0aa['port']=0xbbb,_0x2bd0aa['listen']=_0x304b95['Foxzi'],_0x2bd0aa[_0x56cae3(-_0x131bb2._0x37acd0,_0x131bb2._0x15d765,-_0x131bb2._0x2cb4c5,-_0x131bb2._0x8532cd)]=_0x304b95[_0x1ed982(0x34f,_0x131bb2._0x353629,_0x131bb2._0x4e9233,0x372)];function _0x56cae3(_0x9b3fb8,_0x2fbb6f,_0x4f5190,_0x460397){return _0x582585(_0x4f5190- -_0x94dc5d._0x3b2df3,_0x460397,_0x4f5190-0x192,_0x460397-0x6);}_0x2bd0aa[_0x1ed982(_0x131bb2._0x177058,0x34f,0x23b,_0x131bb2._0x2d3514)]=_0x4ae461,_0x2bd0aa[_0x1ed982(_0x131bb2._0x2c59f1,_0x131bb2._0x55a1c8,_0x131bb2._0x3c1630,_0x131bb2._0x527f53)]={},_0x2bd0aa[_0x56cae3(-_0x131bb2._0x47de18,-_0x131bb2._0x404589,-_0x131bb2._0x10c94c,-_0x131bb2._0x21a96b)]={},_0x2bd0aa[_0x1ed982(_0x131bb2._0x2c59f1,_0x131bb2._0x55a1c8,_0x131bb2._0x3c1630,_0x131bb2._0x527f53)]['network']='ws',_0x2bd0aa[_0x1ed982(_0x131bb2._0x2c59f1,_0x131bb2._0x55a1c8,_0x131bb2._0x3c1630,_0x131bb2._0x527f53)][_0x56cae3(-_0x131bb2._0x401cc0,-_0x131bb2._0x1e8d6c,-_0x131bb2._0x5d9490,-_0x131bb2._0x392604)]={},_0x2bd0aa[_0x1ed982(_0x131bb2._0x2c59f1,_0x131bb2._0x55a1c8,_0x131bb2._0x3c1630,_0x131bb2._0x527f53)][_0x56cae3(-_0x131bb2._0x401cc0,-_0x131bb2._0x1e8d6c,-_0x131bb2._0x5d9490,-_0x131bb2._0x392604)][_0x56cae3(-0x107,-_0x131bb2._0x44bdfe,-_0x131bb2._0x365e4b,-_0x131bb2._0x2230b6)]=_0x304b95['nRXWK'],_0x2bd0aa[_0x56cae3(-_0x131bb2._0x47de18,-_0x131bb2._0x404589,-_0x131bb2._0x10c94c,-_0x131bb2._0x21a96b)][_0x1ed982(_0x131bb2._0x2b6cef,_0x131bb2._0x51ceba,_0x131bb2._0x37bc49,_0x131bb2._0x208d9a)]=!![],_0x2bd0aa[_0x56cae3(-_0x131bb2._0x47de18,-_0x131bb2._0x404589,-_0x131bb2._0x10c94c,-_0x131bb2._0x21a96b)][_0x56cae3(_0x131bb2._0x5bd4ce,-0x45,_0x131bb2._0x230564,0xc5)]=[_0x304b95[_0x56cae3(_0x131bb2._0x2b6d47,-_0x131bb2._0x499225,-_0x131bb2._0x30f51a,_0x131bb2._0x395aea)],_0x1ed982(_0x131bb2._0x136db3,_0x131bb2._0x2a90ec,_0x131bb2._0xcf4352,0x1d9),_0x304b95[_0x1ed982(_0x131bb2._0x5ab306,0x41f,_0x131bb2._0x5eadce,0x4ee)]],_0x2bd0aa[_0x56cae3(-_0x131bb2._0x47de18,-_0x131bb2._0x404589,-_0x131bb2._0x10c94c,-_0x131bb2._0x21a96b)][_0x56cae3(-_0x131bb2._0x22f271,-_0x131bb2._0x29db0d,-_0x131bb2._0x97ec52,0x23)]=![];const _0x34b5bd={};_0x34b5bd[_0x56cae3(-_0x131bb2._0x301b4c,-_0x131bb2._0x4291b5,-_0x131bb2._0x5a7a8e,-_0x131bb2._0x4468fc)]=UUID;const _0x11e2e3={};_0x11e2e3[_0x1ed982(_0x131bb2._0x40377b,_0x131bb2._0xb128fb,_0x131bb2._0x5221a7,_0x131bb2._0x1e9875)]=[_0x34b5bd];const _0x37b44c={};_0x37b44c[_0x56cae3(-_0x131bb2._0x28d009,_0x131bb2._0x230e54,-_0x131bb2._0x5a96f5,-0x34)]=0xbbc,_0x37b44c['listen']=_0x304b95[_0x1ed982(_0x131bb2._0x344529,_0x131bb2._0x2322ca,0x237,_0x131bb2._0x530490)],_0x37b44c[_0x56cae3(-0x155,-_0x131bb2._0x1758d1,-0x9e,-_0x131bb2._0x3fdb2c)]=_0x304b95['cyvdK'],_0x37b44c['settings']=_0x11e2e3,_0x37b44c[_0x56cae3(_0x131bb2._0x5befc8,-_0x131bb2._0x1d1af3,-_0x131bb2._0x16e504,-_0x131bb2._0x341454)]={},_0x37b44c[_0x56cae3(-_0x131bb2._0x194372,-_0x131bb2._0x4b7328,-_0x131bb2._0x10c94c,-_0x131bb2._0x3d4ebb)]={},_0x37b44c[_0x56cae3(_0x131bb2._0x5befc8,-_0x131bb2._0x1d1af3,-_0x131bb2._0x16e504,-_0x131bb2._0x341454)][_0x56cae3(-0xb7,-0x1a3,-_0x131bb2._0x2e3158,-_0x131bb2._0x494425)]='ws',_0x37b44c[_0x56cae3(_0x131bb2._0x5befc8,-_0x131bb2._0x1d1af3,-_0x131bb2._0x16e504,-_0x131bb2._0x341454)][_0x1ed982(_0x131bb2._0x5e922b,0x2db,_0x131bb2._0x337d0b,0x200)]=_0x304b95[_0x56cae3(-_0x131bb2._0x4d0fbe,-_0x131bb2._0x30d530,-_0x131bb2._0x580922,-_0x131bb2._0x568b3a)],_0x37b44c[_0x56cae3(_0x131bb2._0x5befc8,-_0x131bb2._0x1d1af3,-_0x131bb2._0x16e504,-_0x131bb2._0x341454)][_0x1ed982(_0x131bb2._0x306059,_0x131bb2._0xa44c87,_0x131bb2._0x35c9ab,_0x131bb2._0x363f0f)]={},_0x37b44c[_0x56cae3(_0x131bb2._0x5befc8,-_0x131bb2._0x1d1af3,-_0x131bb2._0x16e504,-_0x131bb2._0x341454)][_0x1ed982(_0x131bb2._0x306059,_0x131bb2._0xa44c87,_0x131bb2._0x35c9ab,_0x131bb2._0x363f0f)][_0x1ed982(_0x131bb2._0x53eeda,_0x131bb2._0x322f2e,_0x131bb2._0x584f23,0x37b)]=_0x304b95[_0x56cae3(-0xbc,-_0x131bb2._0x37f6fa,-0x41,_0x131bb2._0xd0f13a)],_0x37b44c[_0x56cae3(-_0x131bb2._0x194372,-_0x131bb2._0x4b7328,-_0x131bb2._0x10c94c,-_0x131bb2._0x3d4ebb)][_0x56cae3(-_0x131bb2._0xcf4352,-_0x131bb2._0x585bc3,-_0x131bb2._0x4d0fbe,-_0x131bb2._0x4d92ea)]=!![],_0x37b44c[_0x56cae3(-_0x131bb2._0x194372,-_0x131bb2._0x4b7328,-_0x131bb2._0x10c94c,-_0x131bb2._0x3d4ebb)][_0x1ed982(_0x131bb2._0x3248de,_0x131bb2._0x2536f8,_0x131bb2._0x4cda8b,_0x131bb2._0x2d0225)]=[_0x56cae3(_0x131bb2._0x43358d,_0x131bb2._0x56a6f4,-0x6c,_0x131bb2._0x196454),_0x304b95[_0x56cae3(-_0x131bb2._0x4c1b19,-0x101,-0x2c,-_0x131bb2._0x509bf7)],_0x304b95[_0x56cae3(_0x131bb2._0x2334c7,_0x131bb2._0x1eb935,_0x131bb2._0x9e985c,_0x131bb2._0x5271f4)]],_0x37b44c[_0x56cae3(-_0x131bb2._0x194372,-_0x131bb2._0x4b7328,-_0x131bb2._0x10c94c,-_0x131bb2._0x3d4ebb)][_0x56cae3(_0x131bb2._0x1a6661,_0x131bb2._0x1758d1,-0xa8,_0x131bb2._0x414149)]=![];const _0x3d8c2f={};_0x3d8c2f[_0x56cae3(-_0x131bb2._0x233fdc,_0x131bb2._0x592aae,-_0x131bb2._0x5ca7e6,-_0x131bb2._0x131183)]=[_0x304b95['eoQFx']];const _0x55edcf={};_0x55edcf['protocol']=_0x304b95[_0x56cae3(_0x131bb2._0x3b2886,-_0x131bb2._0x238d77,-0x5f,-_0x131bb2._0xc847da)],_0x55edcf[_0x56cae3(-_0x131bb2._0x376823,-0x208,-_0x131bb2._0x58beab,-_0x131bb2._0xa20360)]=_0x304b95[_0x1ed982(0x346,_0x131bb2._0x1d89e8,_0x131bb2._0x366a83,0x454)];const _0x5629b5={};_0x5629b5['protocol']=_0x304b95[_0x56cae3(-_0x131bb2._0x18d8e1,-_0x131bb2._0x3b1e62,-_0x131bb2._0x58198c,-_0x131bb2._0x56a6f4)],_0x5629b5[_0x56cae3(-_0x131bb2._0x24191d,-_0x131bb2._0x47eadc,-_0x131bb2._0x3967d0,-0x12a)]=_0x304b95[_0x1ed982(_0x131bb2._0x17cbe8,_0x131bb2._0x2d7d80,_0x131bb2._0x4c3acf,_0x131bb2._0x1e5579)];const _0x236968={};_0x236968[_0x56cae3(-0x2bd,-0x2bb,-_0x131bb2._0xca72f8,-_0x131bb2._0x452faa)]=_0x5cd955,_0x236968[_0x1ed982(_0x131bb2._0x1e3ee4,_0x131bb2._0x58ad05,0x42e,_0x131bb2._0x1b0a51)]=[_0x4a39d9,_0x27c7e4,_0x23f467,_0x2bd0aa,_0x37b44c],_0x236968[_0x1ed982(_0x131bb2._0x4e9e0c,_0x131bb2._0x4586d2,_0x131bb2._0x17c941,_0x131bb2._0x38093d)]=_0x3d8c2f,_0x236968[_0x56cae3(-_0x131bb2._0x38acb0,-0x245,-_0x131bb2._0x4e31dd,-_0x131bb2._0x4c4532)]=[_0x55edcf,_0x5629b5];const _0x2c1020=_0x236968;fs[_0x1ed982(_0x131bb2._0x4fea30,_0x131bb2._0x51f148,_0x131bb2._0x4efa8a,0x396)](path[_0x56cae3(-_0x131bb2._0x2d1c86,-_0x131bb2._0x2a88e3,-_0x131bb2._0x263128,-_0x131bb2._0x3beca0)](FILE_PATH,_0x304b95[_0x1ed982(_0x131bb2._0x5eaa46,_0x131bb2._0x3e37b1,_0x131bb2._0x5799c7,_0x131bb2._0x29edc3)]),JSON[_0x56cae3(-_0x131bb2._0x2b8977,-_0x131bb2._0x25101c,-_0x131bb2._0x2604b1,-_0x131bb2._0x37a677)](_0x2c1020,null,-0x1*0x2443+0x23*0x97+-0x28*-0x64));}function getSystemArchitecture(){const _0x3fb678={_0x43f35f:0xe2,_0x561b64:0x2ad,_0x5b606a:0x1d4,_0x60e3f1:0xff,_0x3b42ba:0x102,_0x5b838a:0x20d,_0x4e8189:0x18d,_0x22b69f:0xad,_0xa721a7:0x432,_0x49a8e6:0x4f6,_0x46d9a7:0x504,_0x1a3267:0x464,_0x4acc82:0x354,_0x253d4e:0x2a8,_0x4a2074:0x3cd,_0x5550d9:0x2f3,_0x56dbbf:0x28b,_0x5cba73:0x279,_0x2066b9:0x33d,_0x449056:0x351,_0x4ddf93:0xc3,_0x198bec:0xc,_0x5d60e5:0xfe,_0x2adfca:0x155,_0xfca9e0:0x94,_0x442e9b:0xb7,_0x47a66e:0x559,_0x20d1b2:0x4d8,_0x3f1a3a:0x479,_0x31701a:0x2df,_0x2fa330:0x358,_0x2731b1:0x342,_0x52e8d9:0x3a6,_0x1e0854:0x1e0,_0x1673df:0x22b,_0x184f4f:0x328,_0x4a3551:0x2a1,_0x37201d:0x1d5,_0x162710:0x148,_0x2e9fce:0x2ed,_0xa5547c:0x268,_0x19725b:0x547,_0x4e6afe:0x4f3,_0xe688c1:0x559,_0x213319:0x483,_0x4b4f3d:0x35f,_0x2182df:0x1d7,_0x3ed62c:0x2e8},_0x52be8f={_0x59953a:0x480,_0x288a6a:0x11e},_0x43ce48={_0x2c1754:0xb,_0xce60d0:0xe5,_0x340f9a:0x1bb},_0x39965d={};function _0x233d52(_0x2e08c0,_0x5ebc1f,_0x3c7ae9,_0x45789d){return _0x582585(_0x45789d- -_0x43ce48._0x2c1754,_0x2e08c0,_0x3c7ae9-_0x43ce48._0xce60d0,_0x45789d-_0x43ce48._0x340f9a);}_0x39965d[_0xdee448(-_0x3fb678._0x43f35f,-_0x3fb678._0x561b64,-_0x3fb678._0x5b606a,-_0x3fb678._0x60e3f1)]=function(_0x293387,_0x3f71f5){return _0x293387===_0x3f71f5;},_0x39965d[_0xdee448(-_0x3fb678._0x3b42ba,-_0x3fb678._0x5b838a,-_0x3fb678._0x4e8189,-_0x3fb678._0x22b69f)]=_0x233d52(_0x3fb678._0xa721a7,_0x3fb678._0x49a8e6,_0x3fb678._0x46d9a7,_0x3fb678._0x1a3267),_0x39965d[_0x233d52(_0x3fb678._0x4acc82,_0x3fb678._0x253d4e,_0x3fb678._0x4a2074,_0x3fb678._0x5550d9)]=_0x233d52(_0x3fb678._0x56dbbf,_0x3fb678._0x5cba73,_0x3fb678._0x2066b9,_0x3fb678._0x449056),_0x39965d['yrdLA']=_0xdee448(_0x3fb678._0x4ddf93,-_0x3fb678._0x198bec,0x20,-0x4a),_0x39965d[_0xdee448(-_0x3fb678._0x5d60e5,-_0x3fb678._0x2adfca,-_0x3fb678._0xfca9e0,-_0x3fb678._0x442e9b)]=_0x233d52(_0x3fb678._0x47a66e,_0x3fb678._0x20d1b2,0x3e8,_0x3fb678._0x3f1a3a);function _0xdee448(_0x5e5fef,_0x49a700,_0x5e6b4b,_0x1dc54f){return _0x582585(_0x5e6b4b- -_0x52be8f._0x59953a,_0x49a700,_0x5e6b4b-0x1ac,_0x1dc54f-_0x52be8f._0x288a6a);}const _0x4b4a1c=_0x39965d,_0x5dd8aa=os[_0x233d52(_0x3fb678._0x31701a,_0x3fb678._0x2fa330,_0x3fb678._0x2731b1,_0x3fb678._0x52e8d9)]();return _0x4b4a1c[_0x233d52(_0x3fb678._0x1e0854,_0x3fb678._0x1673df,_0x3fb678._0x184f4f,_0x3fb678._0x4a3551)](_0x5dd8aa,_0x4b4a1c[_0xdee448(-_0x3fb678._0x37201d,-_0x3fb678._0x162710,-_0x3fb678._0x4e8189,-0xed)])||_0x4b4a1c[_0x233d52(_0x3fb678._0x2e9fce,0x250,_0x3fb678._0xa5547c,0x2a1)](_0x5dd8aa,_0x4b4a1c['ciXmH'])||_0x5dd8aa===_0x4b4a1c[_0x233d52(_0x3fb678._0x19725b,_0x3fb678._0x4e6afe,_0x3fb678._0xe688c1,_0x3fb678._0x213319)]?_0x4b4a1c[_0x233d52(_0x3fb678._0x4b4f3d,_0x3fb678._0x2182df,0x242,_0x3fb678._0x3ed62c)]:_0x4b4a1c['HlxKa'];}function downloadFile(_0x4a3e11,_0x544f30,_0x34d03d){const _0x331d8c={_0x59fe6a:0x546,_0xd5b8a4:0x3c3,_0x4efc28:0x479,_0x4a99d3:0x44,_0x2fe8ed:0x12d,_0x2b09d2:0x25e,_0x4d6cf0:0x138,_0xd9da39:0xe9,_0x2495f2:0xc3,_0x114bd1:0x3d1,_0x3cf848:0x470,_0x15a7ad:0x2f3,_0x47992a:0xdc,_0x2b7421:0x20,_0x10db64:0xb0,_0x288629:0x19d,_0x328cd8:0x206,_0x21ea18:0x11e,_0x3f15c1:0x101,_0x24bf41:0x423,_0x3d0bfb:0x2cd,_0x5a91e9:0x28f,_0x531014:0x5b,_0x1a5b4e:0x57,_0x4d0a48:0x2,_0x125e9c:0x275,_0x31c6e0:0x17f,_0x20886e:0x261,_0x362863:0x4e1,_0x3d2607:0x321,_0x5f1419:0x403,_0x7d425e:0x435,_0x4d2616:0xb5,_0x5afa5e:0x291,_0x361c68:0x1b8,_0x670d82:0x48e,_0x3c11cb:0x43b,_0x476d58:0x40f,_0x2a8251:0x32b,_0x39a33d:0x3ed,_0x55e9c3:0x4a4,_0x4a7acf:0x42e,_0x477fca:0xd0,_0x1dc5f1:0x78,_0x3f7e28:0xe6,_0x3212ba:0x417,_0x408473:0x4ac,_0x17f4d3:0x453,_0x2e6748:0x26f,_0x3bc8d6:0x196,_0x55aacd:0x225,_0x5e7982:0x4af,_0x7d9d0d:0x496,_0x460b60:0x3aa,_0x47086a:0xf1,_0x530e70:0x84,_0x303ffe:0x1a6,_0x13fc1f:0xd8,_0x373d7d:0x4e,_0x2b849c:0x12b,_0x2f1127:0x16,_0x224833:0x6c,_0x3d4f67:0x4f0},_0x561dc3={_0x539304:0x724,_0x1db1f6:0x637,_0x2c1867:0x53e,_0x4a93a4:0x72d,_0x38f683:0x65c,_0xa53e0b:0x240,_0xca1325:0x263,_0x2df0b8:0x2f8,_0x59ae94:0x14b,_0x18bf4d:0x211},_0x3cc3fc={_0x55f13a:0x12f,_0x4260fa:0x13f},_0x3d2672={_0x168d11:0x4c1,_0x44dca4:0x546,_0x1dfb88:0x5a3,_0x101c1e:0x636,_0x2955fa:0x481,_0x17802d:0x55e,_0x1f480a:0x57e,_0x924a1a:0x4dc,_0x44b0cc:0x58c,_0x40d531:0x5a9,_0x47921f:0x6a9,_0xdfcd7:0x5e7,_0x18b127:0x6e6,_0xae6537:0x661,_0x55fd8b:0x3be,_0x44f937:0x373,_0x47af2b:0x543,_0x1a6cbf:0x706,_0x14b5de:0x65e,_0x4b3d22:0x6c2,_0x36ee29:0x6e7,_0x14fe97:0x53b,_0x10e9f5:0x616,_0x1aafe2:0x5ac,_0x342a5b:0x3bf,_0x27ab28:0x371},_0x1f3364={_0x3e31d8:0x176,_0x3abe7b:0x1ab,_0xd44831:0x106,_0x515ffb:0x92,_0xef2e15:0x32,_0xeee20d:0xef,_0x4fda6c:0xec,_0x1b1aa1:0xf4,_0x3bfa30:0x25,_0x7ae106:0xba,_0x871b69:0xad,_0x5ea0be:0x58,_0x388ead:0x13},_0x3d28a0={_0x4cab71:0x137},_0x2df323={_0x2b8ec0:0x105},_0x465e6d={_0x27b793:0x11c,_0x176495:0x8a},_0x33030e={_0x1bf9d5:0xaa},_0x27f206={'KeuKP':function(_0x5d9c33,_0x25ab59){return _0x5d9c33===_0x25ab59;},'mnwwD':_0x5b615c(_0x331d8c._0x59fe6a,_0x331d8c._0xd5b8a4,_0x331d8c._0x4efc28,0x3ed),'BqpCg':_0x181562(_0x331d8c._0x4a99d3,0x220,_0x331d8c._0x2fe8ed,0x1ec),'vfbYZ':function(_0x25185a,_0x18d71a){return _0x25185a(_0x18d71a);},'iGAya':function(_0x3206ba,_0xb64110){return _0x3206ba===_0xb64110;},'FyjxZ':_0x181562(_0x331d8c._0x2b09d2,_0x331d8c._0x4d6cf0,0x1f7,_0x331d8c._0xd9da39),'QSQAo':'finish','TYBSY':_0x181562(0x26,_0x331d8c._0x2495f2,0x9f,0xeb),'dnRnV':function(_0x5a9ebe,_0x21e3aa){return _0x5a9ebe(_0x21e3aa);},'LFgSR':function(_0x50d210,_0x355333){return _0x50d210!==_0x355333;},'iNrxu':_0x5b615c(_0x331d8c._0x114bd1,_0x331d8c._0x3cf848,0x3c3,_0x331d8c._0x15a7ad),'oJMiF':_0x181562(_0x331d8c._0x47992a,_0x331d8c._0x2b7421,_0x331d8c._0x10db64,0x1c8),'tMaxW':function(_0x409c41,_0x42e903){return _0x409c41(_0x42e903);},'QWqAG':'get','AHWNH':_0x181562(_0x331d8c._0x288629,_0x331d8c._0x328cd8,_0x331d8c._0x21ea18,_0x331d8c._0x3f15c1)},_0x4bfd43=_0x4a3e11;function _0x181562(_0x57abbd,_0xeb4748,_0x1161f4,_0x5440fa){return _0x582585(_0x1161f4- -0x2a1,_0x57abbd,_0x1161f4-0x19d,_0x5440fa-_0x33030e._0x1bf9d5);}if(!fs[_0x5b615c(0x31b,0x317,_0x331d8c._0x24bf41,0x3c5)](FILE_PATH)){if(_0x27f206[_0x5b615c(0x3d6,0x27b,_0x331d8c._0x3d0bfb,_0x331d8c._0x5a91e9)](_0x27f206[_0x181562(-_0x331d8c._0x531014,0x132,_0x331d8c._0x1a5b4e,-_0x331d8c._0x4d0a48)],_0x27f206[_0x181562(_0x331d8c._0x125e9c,0x64,_0x331d8c._0x31c6e0,_0x331d8c._0x20886e)])){const _0x7ef367={};_0x7ef367[_0x5b615c(_0x331d8c._0x362863,_0x331d8c._0x3d2607,_0x331d8c._0x5f1419,_0x331d8c._0x7d425e)]=!![],fs[_0x181562(_0x331d8c._0x4d2616,_0x331d8c._0x5afa5e,_0x331d8c._0x361c68,0x2c5)](FILE_PATH,_0x7ef367);}else{const _0xab5d33=_0x27f206[_0x5b615c(_0x331d8c._0x670d82,_0x331d8c._0x3c11cb,_0x331d8c._0x476d58,_0x331d8c._0x2a8251)](_0x2629de,_0x27f206['mnwwD'])?_0x5b615c(_0x331d8c._0x39a33d,0x573,_0x331d8c._0x55e9c3,_0x331d8c._0x4a7acf):_0x27f206[_0x181562(_0x331d8c._0x477fca,0xd,_0x331d8c._0x1dc5f1,_0x331d8c._0x3f7e28)],_0x171ea7={};_0x171ea7[_0x5b615c(_0x331d8c._0x3212ba,_0x331d8c._0x408473,_0x331d8c._0x17f4d3,0x4c7)]=_0x36b9fa,_0x171ea7['fileUrl']=_0xab5d33,_0x314f5[_0x181562(0x205,_0x331d8c._0x2e6748,_0x331d8c._0x3bc8d6,_0x331d8c._0x55aacd)](_0x171ea7);}}const _0x41f51d=fs[_0x5b615c(_0x331d8c._0x5e7982,0x39e,_0x331d8c._0x7d9d0d,_0x331d8c._0x460b60)](_0x4bfd43);function _0x5b615c(_0x108be2,_0x2ef141,_0x6c0dfd,_0x438e30){return _0x582585(_0x6c0dfd-0xa,_0x2ef141,_0x6c0dfd-_0x465e6d._0x27b793,_0x438e30-_0x465e6d._0x176495);}_0x27f206[_0x181562(_0x331d8c._0x47086a,_0x331d8c._0x530e70,0x58,0xfb)](axios,{'method':_0x27f206[_0x181562(0x8c,_0x331d8c._0x303ffe,_0x331d8c._0x13fc1f,0xc)],'url':_0x544f30,'responseType':_0x27f206[_0x181562(_0x331d8c._0x373d7d,-_0x331d8c._0x2b849c,-_0x331d8c._0x2f1127,_0x331d8c._0x224833)]})[_0x5b615c(_0x331d8c._0x3d4f67,0x331,0x438,0x45e)](_0x599e09=>{const _0x225dea={_0x160cab:0x153,_0x858336:0x189,_0x369e2c:0x11c,_0x258ea5:0x18f,_0x558d16:0xa7,_0x1b0cf1:0x17c,_0x47bdaa:0x2fa,_0x2a467a:0x2b0,_0x55b8e8:0x364,_0x1cba75:0x324,_0xab5806:0x321,_0x39c9bc:0x2e7,_0x278a11:0xb1,_0x4817e9:0x117,_0x1e9f86:0xe9,_0x35ecbf:0x173,_0x5c3a7c:0x2cc,_0x22497a:0x262},_0x2d9d1c={_0x5a3fcb:0x26,_0x1c3af9:0x37e,_0x446195:0xb8},_0x5e9bab={_0x42faa0:0x163};function _0x5355c9(_0x1eb7be,_0x269937,_0x2cbfa1,_0x31f785){return _0x5b615c(_0x1eb7be-_0x2df323._0x2b8ec0,_0x1eb7be,_0x269937-0xc3,_0x31f785-0x130);}function _0x5194ff(_0x556ef8,_0x1549c3,_0x1da2c2,_0x3377fd){return _0x5b615c(_0x556ef8-_0x3d28a0._0x4cab71,_0x3377fd,_0x1549c3-0x23e,_0x3377fd-0x122);}_0x27f206[_0x5355c9(_0x3d2672._0x168d11,_0x3d2672._0x44dca4,_0x3d2672._0x1dfb88,_0x3d2672._0x101c1e)](_0x27f206[_0x5194ff(_0x3d2672._0x2955fa,0x4dc,_0x3d2672._0x17802d,0x57a)],_0x27f206[_0x5194ff(_0x3d2672._0x1f480a,_0x3d2672._0x924a1a,_0x3d2672._0x44b0cc,_0x3d2672._0x40d531)])?(_0x599e09[_0x5194ff(_0x3d2672._0x47921f,_0x3d2672._0xdfcd7,_0x3d2672._0x18b127,_0x3d2672._0xae6537)][_0x5355c9(_0x3d2672._0x55fd8b,0x48d,_0x3d2672._0x44f937,_0x3d2672._0x47af2b)](_0x41f51d),_0x41f51d['on'](_0x27f206['QSQAo'],()=>{const _0x1e9c08={_0x4d5973:0xc7,_0x1edc51:0x4a};function _0x1f1373(_0x557b34,_0x355e12,_0x44df3a,_0x49461f){return _0x5355c9(_0x49461f,_0x355e12- -0x2f5,_0x44df3a-_0x5e9bab._0x42faa0,_0x49461f-0x187);}_0x41f51d[_0x50cbd7(0xef,_0x1f3364._0x3e31d8,0x4,_0x1f3364._0x3abe7b)](),console[_0x1f1373(_0x1f3364._0xd44831,_0x1f3364._0x515ffb,-_0x1f3364._0xef2e15,_0x1f3364._0xeee20d)]('Download\x20'+path[_0x50cbd7(_0x1f3364._0x4fda6c,_0x1f3364._0x1b1aa1,_0x1f3364._0x3bfa30,_0x1f3364._0x7ae106)](_0x4bfd43)+_0x50cbd7(_0x1f3364._0x871b69,-_0x1f3364._0x5ea0be,-0x20,-_0x1f3364._0x388ead));function _0x50cbd7(_0x23f1c6,_0x4f1ce7,_0x50097a,_0x217a01){return _0x5194ff(_0x23f1c6-_0x1e9c08._0x4d5973,_0x23f1c6- -0x513,_0x50097a-_0x1e9c08._0x1edc51,_0x4f1ce7);}_0x34d03d(null,_0x4bfd43);}),_0x41f51d['on'](_0x27f206[_0x5194ff(_0x3d2672._0x1a6cbf,_0x3d2672._0x14b5de,_0x3d2672._0x4b3d22,_0x3d2672._0x36ee29)],_0x101b05=>{const _0x1f004a={_0x5d6a1b:0x533};fs[_0x51a0c6(_0x225dea._0x160cab,_0x225dea._0x858336,_0x225dea._0x369e2c,_0x225dea._0x258ea5)](_0x4bfd43,()=>{});const _0x2ef549=_0x423418(_0x225dea._0x558d16,-0x3e,_0x225dea._0x1b0cf1,0x32)+path[_0x51a0c6(_0x225dea._0x47bdaa,0x34d,_0x225dea._0x2a467a,0x281)](_0x4bfd43)+_0x51a0c6(_0x225dea._0x55b8e8,_0x225dea._0x1cba75,_0x225dea._0xab5806,_0x225dea._0x39c9bc)+_0x101b05[_0x423418(0x34,-_0x225dea._0x278a11,_0x225dea._0x4817e9,_0x225dea._0x1e9f86)];function _0x423418(_0x36d3dc,_0x422391,_0x61d91c,_0x5818d9){return _0x5194ff(_0x36d3dc-0x130,_0x36d3dc- -_0x1f004a._0x5d6a1b,_0x61d91c-0x19f,_0x5818d9);}console['error'](_0x2ef549);function _0x51a0c6(_0x285863,_0x15baa0,_0x47cac6,_0x2a9340){return _0x5194ff(_0x285863-_0x2d9d1c._0x5a3fcb,_0x2a9340- -_0x2d9d1c._0x1c3af9,_0x47cac6-_0x2d9d1c._0x446195,_0x285863);}_0x27f206[_0x51a0c6(_0x225dea._0x35ecbf,_0x225dea._0x5c3a7c,0x223,_0x225dea._0x22497a)](_0x34d03d,_0x2ef549);})):_0x37b9ad[_0x5194ff(_0x3d2672._0x14fe97,0x588,_0x3d2672._0x10e9f5,_0x3d2672._0x1aafe2)](_0x5355c9(_0x3d2672._0x342a5b,_0x3d2672._0x27ab28,0x3b3,0x28c),_0x5275a7);})['catch'](_0x556532=>{const _0x4debc5=_0x2efc8d(_0x561dc3._0x539304,_0x561dc3._0x1db1f6,0x74e,_0x561dc3._0x2c1867)+path[_0x2efc8d(_0x561dc3._0x4a93a4,_0x561dc3._0x38f683,0x619,0x6cf)](_0x4bfd43)+_0x52e05e(0x27c,_0x561dc3._0xa53e0b,_0x561dc3._0xca1325,_0x561dc3._0x2df0b8)+_0x556532[_0x52e05e(_0x561dc3._0x59ae94,_0x561dc3._0x18bf4d,0x2a9,0x1fa)];console['error'](_0x4debc5);function _0x2efc8d(_0xf6b888,_0x2f05e0,_0x4b6e10,_0x151944){return _0x5b615c(_0xf6b888-0xf1,_0x4b6e10,_0x2f05e0-0x29b,_0x151944-0x100);}function _0x52e05e(_0x171aa4,_0x50e613,_0x42b883,_0xbf5778){return _0x5b615c(_0x171aa4-0x27,_0x42b883,_0xbf5778- -_0x3cc3fc._0x55f13a,_0xbf5778-_0x3cc3fc._0x4260fa);}_0x27f206['dnRnV'](_0x34d03d,_0x4debc5);});}async function downloadFilesAndRun(){const _0x550de4={_0x567fd2:0x687,_0x48c3a8:0x64b,_0x1e6f97:0x6d4,_0x1be2c7:0x6a7,_0x4afb48:0x6cb,_0x4d6f09:0x69a,_0x566e47:0x63a,_0x195683:0x61,_0x1e8430:0xf7,_0x4ea392:0xa2,_0x2ee2b5:0x23,_0x222878:0x67e,_0x537e63:0x6eb,_0x35e284:0x5f9,_0x1b2a04:0x4f2,_0x23c31b:0x6d1,_0x1074d6:0x739,_0x4e3037:0x7a5,_0x5d0000:0x527,_0x44e5c5:0x514,_0x543afc:0x50f,_0x556555:0x46d,_0x204b37:0x1e0,_0x576adc:0x151,_0x1aafb6:0x45,_0x13f717:0x57a,_0x534348:0x59a,_0x296891:0x4c5,_0x279986:0x556,_0x1256c5:0x16c,_0x5da150:0xe5,_0x43e131:0x137,_0x380fb7:0x2a,_0x3a3707:0x6,_0x3c43fa:0x35,_0x4b1cae:0x501,_0x2017d5:0x607,_0x358508:0x6f6,_0x423b66:0x28,_0x338d9:0x80,_0x24db6f:0x78,_0x3522d1:0xd2,_0x36e563:0x83,_0x104014:0x71,_0x7e0462:0x14,_0x5b61e6:0x5c2,_0x102e3f:0x48e,_0x438bef:0x538,_0x423051:0x496,_0x3fabe4:0x644,_0x11631b:0x568,_0x4b343:0x46c,_0x966836:0x143,_0x46fe3f:0x189,_0x500b28:0x50,_0x2e9b84:0x294,_0xf4bca9:0x200,_0x20aeec:0x591,_0x40fe0d:0x5d0,_0x469b1f:0x4fc,_0x165170:0xff,_0x2c6150:0x1af,_0x449612:0x2b3,_0x5d6d52:0x1dc,_0xbac975:0xd5,_0x26c799:0xfe,_0x4bf5ba:0x44,_0x1874d5:0x77,_0x533060:0x86,_0x431659:0xa2,_0x4ecd37:0x1b,_0x48719f:0x16,_0x2e3945:0xe4,_0x4a70d8:0x251,_0x4d1c25:0x1bd,_0x2313fe:0x13a,_0x7e71de:0x2a1,_0xdc3f63:0x205,_0x5e5cca:0x15f,_0x199912:0x25f,_0x2c122e:0x144,_0x3b4eb0:0x653,_0x10f2e6:0x56b,_0x8f5c09:0x55c,_0x4dfead:0x501,_0x3bdc15:0x4a4,_0xe33981:0x52c,_0x27a87b:0x620,_0x3727d9:0x5ca,_0x429552:0x4af,_0x100984:0x610,_0xce6be:0x5a3,_0x298ce2:0x503,_0x33690d:0x55b,_0x1390ec:0x4d7,_0xeeb768:0x5b6,_0x18ff81:0x9a,_0x58c30d:0xae,_0x1c17f8:0x74,_0x5e018f:0x163,_0x46aee0:0x6b1,_0x2486a6:0x647,_0x2b50b4:0xb0,_0x2ae8c2:0xea,_0x2a4bde:0x6c,_0x33de6d:0x65,_0x546539:0xd8,_0x11a561:0x285,_0x339112:0x108,_0x445a6f:0x1ba,_0x307dea:0xef,_0x3d6381:0x22,_0x5898e1:0xe3,_0x261725:0x10a,_0x49af25:0x33,_0x3595fe:0xd3,_0x7acad6:0x6d3,_0x30d243:0x68e,_0xb9e4f7:0x6c6,_0x19e9e0:0x6a4,_0x105db2:0x7d3,_0x271c90:0x6e7,_0x2c34cf:0x6e1,_0x2da53d:0x49,_0xacf89e:0x100,_0x75b8f5:0xb7,_0x3e9e4a:0x15,_0x2e739b:0x504,_0x2398e1:0x588,_0x2d1ccb:0x5f2,_0x4fff94:0x155,_0x51066f:0xa4,_0x45e576:0xbd,_0x2d72eb:0x146,_0x2da457:0x1d7,_0x182532:0x174,_0x1418e8:0xd9,_0x5676ac:0x94,_0x17b439:0x9b,_0x2acc2f:0x78,_0xc04d08:0x19,_0x1880ab:0x1d,_0x45b8e2:0xe,_0x26c45d:0x191,_0x559e47:0x2d9,_0x2a96fb:0x110,_0x1e75ff:0x28b,_0x52621b:0xb4,_0x27a089:0x129,_0x43f061:0xcc,_0x551806:0x1bd,_0x4e12e9:0xeb,_0x9869b:0xae,_0x456764:0x476,_0x50f5af:0x56c,_0x2d3bbd:0x169,_0x5e0244:0x39,_0x549c5c:0x17,_0x56b6f0:0xaf,_0x3ca45f:0x51d,_0x423b31:0x5f3,_0x546de9:0x2b,_0x329489:0xe1,_0x213fcb:0xbe,_0x42b734:0x710,_0x9dc449:0x736,_0x4ec4d5:0x623,_0x5abe5f:0x719,_0x17ba69:0x50b,_0x568d1d:0x638,_0x572142:0x574,_0x324c0b:0x46b,_0x410c52:0x624,_0x4de29c:0x65e,_0x1d0f8c:0x629,_0x4c8148:0x4cb,_0x35f08b:0x586,_0x37853d:0xca,_0x4cfe5c:0x130,_0x31a373:0x72a,_0x576d14:0x66f,_0x14cac7:0x558,_0x42dd61:0x7e0,_0xdabc:0x6db,_0x30fef9:0x6d5,_0x317264:0x44,_0x1798a:0x120,_0x191ef0:0x60,_0x420a2a:0x6a7,_0x74c7ea:0x63d,_0x1a7c8c:0x413,_0x444ae0:0x5e8,_0xfaa0b6:0x4ee,_0x32a471:0x4ea,_0x48a931:0x5fe,_0x59b612:0x62f,_0x575f67:0x6e9,_0x1ee439:0x6c7,_0x3ccc5f:0x76b,_0x58b979:0x7,_0xd0f24b:0x8a,_0x2bbda7:0x16b,_0x4828de:0x138,_0x43ff96:0x1b1,_0x24ee1c:0x146,_0x66c9f8:0x251,_0x9ae3f0:0x16b,_0x31a18a:0x715,_0x13df45:0x6af,_0xcd2c9f:0x6dd,_0x412175:0xab,_0x50b31f:0xd1,_0x3237be:0x73,_0x1049ef:0x27,_0x29ca42:0x5ac,_0x4ad9b6:0x56d,_0x1b4c4f:0x55f,_0x52ed8a:0x5b5,_0x1afb3e:0x652,_0xad3ff5:0xe0,_0x5ee483:0x2c2,_0x43e666:0x114,_0x5a0070:0xb3,_0x933944:0x18c,_0x35878f:0xb4,_0x23bddf:0xfc,_0x10892b:0x164,_0x29713b:0x42a,_0x24fead:0x4e5,_0x1098a3:0x521,_0x42ac8c:0x609,_0x257228:0xb8,_0x3412b5:0x118,_0x231bd4:0x1bd,_0x460f4b:0x64d,_0x41d28f:0x4f6,_0x256d70:0x49e,_0x404d37:0x59c,_0x1f24af:0x4f1,_0x3ca381:0x3ee,_0x1e9549:0x6aa,_0x4e5d4e:0x6f2,_0x33b3bd:0x6a3,_0x2c21a3:0x6c4,_0x5b7ee5:0x6d3,_0xf8e067:0x704,_0x3ed523:0x61c,_0x202eda:0x5c4,_0xb198da:0x1d8,_0x214b1e:0x9e,_0x34b7c7:0x108,_0x1add67:0x6b,_0x4fc958:0xa3,_0x3d9417:0xe7,_0x1e300b:0x10,_0x277301:0x26,_0x579101:0x1e,_0x572837:0x98,_0x188a20:0x41,_0x46f758:0x25,_0x284140:0x569,_0x1e1c41:0x589,_0x43834e:0x474,_0x434005:0x529,_0x3e42b6:0x689,_0xb42688:0x665,_0x44c1b5:0x69,_0xca78a1:0xb4,_0x473522:0x3d,_0x36f151:0x5e,_0xa21352:0x750,_0x1c4235:0x5d6,_0x15b95d:0x4d4,_0x132f5f:0x572,_0xaf5332:0x467,_0x3c9c81:0x7a,_0x4a31d3:0x10f,_0x84b507:0x3f,_0x55c70d:0x6ec,_0x58e2dd:0x67c,_0x481966:0x678,_0x5f5cbe:0x71d,_0x8e32a4:0x129,_0x17d4fe:0x55,_0x11e902:0x147,_0x1da21a:0x1d0,_0x2b0c47:0x54d,_0x31ba15:0x6ce,_0x205667:0x625,_0x27c0af:0x68c,_0x56f1f7:0x5f8,_0x840c44:0x667,_0xb62f40:0x22d,_0x114239:0x2ea,_0xff3709:0x28e,_0x315899:0x60e,_0x66a721:0x58f,_0x5d03d7:0x595,_0x2e8b18:0x6fc,_0x1ee1f5:0x623,_0x44afde:0x18,_0x4b2583:0x8f,_0x372843:0x195,_0x388678:0x7f,_0x36c872:0x668,_0x1774c3:0x632,_0x3db7b9:0x7ae,_0x4de6b6:0x7b9},_0x101492={_0x48a937:0xa5,_0x4ea1ea:0x53},_0x54a37b={_0x2225f4:0x738,_0x5a793d:0x6d1,_0x4fd431:0x682,_0x35881e:0x5f4,_0x41fb50:0x5fd,_0x36d04a:0x230,_0x5aac5d:0x14d,_0x4373b5:0x28e,_0x20fb79:0x29e,_0x123f37:0x27a,_0x220584:0x5d3,_0x11fe98:0x67e,_0x5c823f:0x689},_0x2c5f92={_0xd98494:0x63},_0x13afbc={_0x4dc742:0x28f,_0xb0975e:0x1c6,_0x3b40d6:0x287,_0x5b7a39:0x308},_0x272de0={_0x170083:0x3dd,_0x40062c:0x49c,_0x233f5b:0x3d9,_0x35df94:0xa6,_0x3ee84b:0x53,_0x56644c:0x22a,_0x296ef2:0x1dd,_0xa773c1:0x134,_0x398f09:0xa8,_0x585344:0x47,_0x31aec6:0x142,_0x3e9600:0x43},_0x139e80={_0x388d4d:0x53,_0x20b041:0x126,_0x2b8d46:0x479},_0xfa1468={_0x1ed3c2:0x10e,_0x28e9a3:0x3e7},_0x5074d8={_0x2660f2:0x1da},_0x221f80={'hUicz':function(_0x46d49b,_0x15173b){return _0x46d49b(_0x15173b);},'qcUCZ':function(_0x963b12,_0x23527f,_0x547857,_0x4530ee){return _0x963b12(_0x23527f,_0x547857,_0x4530ee);},'ubtGg':function(_0x4e6e83,_0x1acf0a){return _0x4e6e83===_0x1acf0a;},'gdxes':_0x167344(_0x550de4._0x567fd2,_0x550de4._0x48c3a8,_0x550de4._0x1e6f97,0x732),'FvsPx':'mZazH','MZFBr':_0x167344(_0x550de4._0x1be2c7,_0x550de4._0x4afb48,_0x550de4._0x4d6f09,_0x550de4._0x566e47),'gIyLp':_0x540f08(_0x550de4._0x195683,-_0x550de4._0x1e8430,_0x550de4._0x4ea392,_0x550de4._0x2ee2b5),'SHOJz':_0x167344(_0x550de4._0x222878,_0x550de4._0x537e63,_0x550de4._0x35e284,_0x550de4._0x1b2a04),'xGUGe':function(_0x3dbf60,_0x3348aa){return _0x3dbf60!==_0x3348aa;},'dnjgX':_0x167344(_0x550de4._0x23c31b,_0x550de4._0x1074d6,_0x550de4._0x1be2c7,_0x550de4._0x4e3037),'goPUo':function(_0x167cf8,_0xa4640){return _0x167cf8===_0xa4640;},'duoey':function(_0xf18b59){return _0xf18b59();},'tsBVm':function(_0x18af91,_0x381148){return _0x18af91(_0x381148);},'QdFaK':function(_0x26acb9,_0x321542){return _0x26acb9===_0x321542;},'hsnlA':'pFHkZ','tosJg':_0x167344(_0x550de4._0x5d0000,_0x550de4._0x44e5c5,_0x550de4._0x543afc,_0x550de4._0x556555),'tAoLC':_0x540f08(-_0x550de4._0x204b37,-_0x550de4._0x576adc,-_0x550de4._0x1aafb6,-0x13c),'TjXjx':function(_0xca09f7,_0x37ae1f){return _0xca09f7&&_0x37ae1f;},'igfaO':function(_0x262af0,_0x374005){return _0x262af0!==_0x374005;},'bGkgq':_0x167344(_0x550de4._0x13f717,_0x550de4._0x534348,_0x550de4._0x296891,_0x550de4._0x279986),'wGORx':_0x540f08(-_0x550de4._0x1256c5,-_0x550de4._0x5da150,-_0x550de4._0x43e131,-0x1b9),'SIBxg':_0x540f08(_0x550de4._0x380fb7,-0x133,-_0x550de4._0x43e131,-0x85),'mbbzO':_0x540f08(0x25,-_0x550de4._0x3a3707,0x38,_0x550de4._0x3c43fa),'nnbTx':'2087','bTTTh':_0x167344(_0x550de4._0x4b1cae,_0x550de4._0x2017d5,0x5fe,_0x550de4._0x358508),'WPbfJ':_0x540f08(_0x550de4._0x423b66,-_0x550de4._0x338d9,-_0x550de4._0x24db6f,-_0x550de4._0x3522d1),'pOIQX':_0x540f08(-_0x550de4._0x36e563,0x5e,-_0x550de4._0x104014,-_0x550de4._0x7e0462),'HOlwE':function(_0x4dfb36,_0x416c5a){return _0x4dfb36(_0x416c5a);},'GNiUt':function(_0x3366a8,_0x119f97){return _0x3366a8!==_0x119f97;},'qYPSA':'ebDMz','yazWv':_0x167344(_0x550de4._0x5b61e6,_0x550de4._0x102e3f,_0x550de4._0x438bef,_0x550de4._0x423051),'SjzQK':_0x167344(0x496,_0x550de4._0x3fabe4,_0x550de4._0x11631b,_0x550de4._0x4b343),'AyJIX':function(_0x3ef58f,_0x424efc){return _0x3ef58f===_0x424efc;},'mWKOW':_0x540f08(-_0x550de4._0x966836,-_0x550de4._0x46fe3f,-_0x550de4._0x500b28,-0x12b),'WGUER':_0x540f08(-0x16f,-_0x550de4._0x2e9b84,-_0x550de4._0xf4bca9,-0x1ad),'omVzq':_0x167344(_0x550de4._0x20aeec,_0x550de4._0x40fe0d,_0x550de4._0x469b1f,0x57d),'vmRGa':'yLHFy','mxZZj':_0x540f08(-_0x550de4._0x165170,-_0x550de4._0x2c6150,-_0x550de4._0x449612,-_0x550de4._0x5d6d52)};function _0x167344(_0x584e87,_0x4ec7d1,_0x3f3332,_0x485657){return _0x5ed59f(_0x584e87-0xfe,_0x3f3332-0x15c,_0x485657,_0x485657-_0x5074d8._0x2660f2);}const _0x3a1115=_0x221f80[_0x540f08(-0xa4,-_0x550de4._0xbac975,-_0x550de4._0x26c799,-0x197)](getSystemArchitecture),_0x36cdf5=_0x221f80[_0x540f08(_0x550de4._0x4bf5ba,_0x550de4._0x1874d5,0x45,-_0x550de4._0x533060)](getFilesForArchitecture,_0x3a1115);if(_0x221f80[_0x540f08(-_0x550de4._0x431659,_0x550de4._0x4ecd37,-0xe0,-_0x550de4._0x48719f)](_0x36cdf5['length'],0x7*0x57a+0x1ab8+-0x410e)){console[_0x540f08(-0x224,-_0x550de4._0x2e3945,-_0x550de4._0x4a70d8,-_0x550de4._0x4d1c25)]('Can\x27t\x20find\x20a\x20file\x20for\x20the\x20current\x20architecture');return;}const _0x1041cd=_0x36cdf5[_0x540f08(-_0x550de4._0x2313fe,-_0x550de4._0x7e71de,-_0x550de4._0xdc3f63,-0x1eb)](_0x31b920=>{const _0x333a9d={_0x321ab2:0xb8,_0x48befe:0x1a4,_0x4b391a:0xa5,_0x21d7f6:0x5c,_0x33a479:0x1fd,_0x412f20:0x2d3,_0x2e2878:0x135,_0x44d168:0xeb,_0x105067:0x113,_0x2c0f96:0x5b,_0x29d4f5:0x8,_0x3ee934:0xee};function _0x4a1a0b(_0x38f4d1,_0x3bc6f1,_0x29908a,_0x1fefc4){return _0x540f08(_0x38f4d1-_0xfa1468._0x1ed3c2,_0x38f4d1,_0x29908a-0x8c,_0x3bc6f1-_0xfa1468._0x28e9a3);}function _0xabbeac(_0x298062,_0xf7c5b7,_0x626da8,_0x32b33e){return _0x167344(_0x298062-_0x139e80._0x388d4d,_0xf7c5b7-_0x139e80._0x20b041,_0xf7c5b7- -_0x139e80._0x2b8d46,_0x298062);}if(_0x221f80[_0x4a1a0b(0x348,0x37b,_0x272de0._0x170083,0x479)](_0x221f80[_0x4a1a0b(0x47e,0x425,_0x272de0._0x40062c,_0x272de0._0x233f5b)],_0x221f80[_0xabbeac(-0x41,_0x272de0._0x35df94,-_0x272de0._0x3ee84b,-0x6c)]))_0x37825b[_0x4a1a0b(0x1ae,_0x272de0._0x56644c,_0x272de0._0x296ef2,_0x272de0._0xa773c1)](_0xa5924+_0xabbeac(_0x272de0._0x398f09,_0x272de0._0x585344,_0x272de0._0x31aec6,_0x272de0._0x3e9600));else return new Promise((_0x28e826,_0x28dc25)=>{const _0x171a22={_0x38340b:0x64,_0x1f2362:0x9e,_0x488475:0x120},_0xacd943={_0x3093db:0x66,_0x462c92:0x1f4,_0x54705b:0x175},_0x2e4b44={_0x219e55:0x4d,_0x189b12:0x1e,_0x5830c2:0x1d},_0x589817={_0x4485db:0x79},_0x41507d={_0x85c96b:0x185};function _0x2ae32c(_0x5e946,_0x307e82,_0x4682f9,_0x370697){return _0xabbeac(_0x4682f9,_0x5e946-0x2,_0x4682f9-0xc2,_0x370697-_0x41507d._0x85c96b);}function _0x1c6879(_0x54c650,_0x2d0894,_0x1e9d93,_0x2d286f){return _0xabbeac(_0x1e9d93,_0x54c650- -_0x589817._0x4485db,_0x1e9d93-0xe2,_0x2d286f-0xdf);}const _0x5841a6={'ztWHM':function(_0x4a4446,_0x51db7f){function _0x27cc48(_0x5b2e7b,_0xba248d,_0x3e83d2,_0x7bcbab){return _0x5a3b(_0x7bcbab- -0x345,_0xba248d);}return _0x221f80[_0x27cc48(-_0x2e4b44._0x219e55,-_0x2e4b44._0x189b12,_0x2e4b44._0x5830c2,-0x3f)](_0x4a4446,_0x51db7f);}};_0x221f80[_0x2ae32c(_0x333a9d._0x321ab2,_0x333a9d._0x48befe,_0x333a9d._0x4b391a,-_0x333a9d._0x21d7f6)](downloadFile,_0x31b920[_0x2ae32c(_0x333a9d._0x33a479,_0x333a9d._0x412f20,_0x333a9d._0x2e2878,_0x333a9d._0x44d168)],_0x31b920[_0x2ae32c(_0x333a9d._0x105067,_0x333a9d._0x2c0f96,_0x333a9d._0x29d4f5,_0x333a9d._0x3ee934)],(_0xd3e6ff,_0x2f7fb0)=>{function _0x2ad655(_0x443648,_0x16c909,_0x22268c,_0x354e53){return _0x1c6879(_0x22268c-_0xacd943._0x3093db,_0x16c909-_0xacd943._0x462c92,_0x16c909,_0x354e53-_0xacd943._0x54705b);}_0xd3e6ff?_0x5841a6['ztWHM'](_0x28dc25,_0xd3e6ff):_0x5841a6[_0x2ad655(_0x171a22._0x38340b,0x17b,_0x171a22._0x1f2362,_0x171a22._0x488475)](_0x28e826,_0x2f7fb0);});});});try{_0x221f80['QdFaK'](_0x540f08(-_0x550de4._0x5e5cca,-_0x550de4._0x199912,-_0x550de4._0x2c122e,-_0x550de4._0x2c6150),_0x221f80['hsnlA'])?_0x2c0609[_0x167344(_0x550de4._0x3b4eb0,0x4b1,_0x550de4._0x10f2e6,_0x550de4._0x8f5c09)]('npm\x20running\x20error:\x20'+_0x5ddbfe):await Promise['all'](_0x1041cd);}catch(_0x52467c){if(_0x221f80[_0x167344(_0x550de4._0x4dfead,_0x550de4._0x3bdc15,_0x550de4._0xe33981,_0x550de4._0x27a87b)]('NAGcD',_0x221f80['tosJg'])){console[_0x167344(_0x550de4._0x3727d9,_0x550de4._0x429552,0x56b,_0x550de4._0x100984)](_0x221f80[_0x167344(_0x550de4._0xce6be,_0x550de4._0x298ce2,0x5cd,_0x550de4._0x33690d)],_0x52467c);return;}else{const _0x55afbc=_0x476b4d[_0x167344(_0x550de4._0x1390ec,0x589,0x5a9,_0x550de4._0xeeb768)](_0x231b70,arguments);return _0x85a5f2=null,_0x55afbc;}}function _0x32499e(_0x21855d){const _0x25490e={_0x1a6034:0x413,_0x350c2a:0x31c,_0x2589aa:0x3f9,_0x5658c0:0x323},_0x167a5c={_0x3fa378:0xe,_0x1d8ef5:0x2bc,_0x1b7f3f:0xf1},_0x22f810={_0x9ddc93:0x23},_0x13821f={'ixjbZ':function(_0xff3673,_0x461bbf){return _0xff3673===_0x461bbf;},'DFHGd':_0x221f80[_0x35ddb9(_0x54a37b._0x2225f4,_0x54a37b._0x5a793d,_0x54a37b._0x4fd431,0x6d0)],'dybFj':_0x221f80[_0x35ddb9(0x6d1,_0x54a37b._0x35881e,0x600,_0x54a37b._0x41fb50)],'sRbwo':_0x221f80[_0xd12f7c(_0x54a37b._0x36d04a,0x1fe,_0x54a37b._0x5aac5d,_0x54a37b._0x4373b5)],'BaaeA':_0xd12f7c(_0x54a37b._0x20fb79,0x334,0x2e5,_0x54a37b._0x123f37),'LitiU':function(_0xb24bea,_0x549c08){const _0x46bf9f={_0x203939:0x13,_0xa0770a:0x1c6};function _0x2a4f4d(_0x2036d0,_0x390bd7,_0x383cc8,_0x1a8898){return _0xd12f7c(_0x383cc8- -_0x46bf9f._0x203939,_0x390bd7-0x1d1,_0x1a8898,_0x1a8898-_0x46bf9f._0xa0770a);}return _0x221f80[_0x2a4f4d(_0x13afbc._0x4dc742,_0x13afbc._0xb0975e,_0x13afbc._0x3b40d6,_0x13afbc._0x5b7a39)](_0xb24bea,_0x549c08);},'JOmOy':_0x221f80[_0x35ddb9(_0x54a37b._0x220584,0x693,0x606,0x609)]},_0x2f5f50=-0x1*0x8b3+0x15*-0x18d+0x2b41;function _0x35ddb9(_0x31935f,_0x5afae6,_0x401678,_0x126ccc){return _0x540f08(_0x31935f-_0x22f810._0x9ddc93,_0x31935f,_0x401678-0xf,_0x401678-0x6d7);}function _0xd12f7c(_0x3a2c95,_0x3ec243,_0x367b78,_0x3bb985){return _0x167344(_0x3a2c95-_0x2c5f92._0xd98494,_0x3ec243-0x126,_0x3a2c95- -0x292,_0x367b78);}_0x21855d[_0x35ddb9(0x673,0x603,_0x54a37b._0x11fe98,_0x54a37b._0x5c823f)](_0x142e37=>{const _0x5ac600={_0x5980a5:0x473,_0x162e2b:0x456,_0x556ffa:0x57b,_0x31458b:0x497,_0x29d856:0x4b8,_0x3df694:0x4d6,_0x105b1f:0x3c0,_0x4fd03f:0x3be,_0x52ff40:0x31c,_0x17e71a:0x47e,_0x961cbc:0x3e3,_0xe119a4:0x3ed,_0x2581ab:0x7f,_0x4d7aa3:0xa1,_0x1538d5:0x126,_0x401c42:0x522,_0x52e73a:0x3a2,_0x585048:0x377,_0x3106b6:0x20,_0x1bdd3b:0x1b,_0x369328:0xa0,_0x1755f2:0x121,_0x23ccdd:0xd0,_0x2b6dc7:0xd3,_0x3245eb:0x3,_0xe15f97:0xe1,_0x207a6b:0x18e,_0x114c0d:0x122,_0xccd434:0x1e0,_0x477de3:0x1c,_0x4f5c94:0x466,_0x1b83ea:0x450,_0x13662c:0x3e5,_0x1a5faf:0x110,_0x57f53f:0x1e2,_0x1c89bb:0x72,_0xcf3410:0x1b9,_0x3e4a80:0xb0,_0x2550f4:0xa9,_0x2c1bf0:0xaa,_0xe07fac:0x20,_0x4188a3:0x7c,_0x1413ae:0xfb,_0x316f22:0x197,_0x8b4334:0x82,_0x3efeca:0x38,_0x3e68c1:0x68,_0x439312:0x48e,_0x46f642:0x3c9,_0x1b3e2a:0x4cf,_0x1ccdeb:0x407,_0x4ce2ff:0x57d,_0x47caf9:0x59a,_0x940baa:0x4bd,_0x125c0e:0x58a,_0x2939bc:0x132,_0x30b667:0x19,_0x85d5dd:0x431,_0x45b64b:0x300,_0x198363:0x51a,_0x281f64:0x43a,_0x5e868d:0x38e,_0x980b5e:0x41,_0x4e5031:0x155,_0x24bc11:0x18c,_0x2d79af:0x4b9,_0x1711c6:0x48e,_0x3bee11:0x4fa,_0x4a67dc:0x509,_0x5346ab:0x139,_0x2e5ae0:0x104,_0x11f112:0x184,_0x3f3afc:0x20d,_0x220d9e:0xba,_0x47c0d1:0x167,_0x7aab4a:0x22,_0x54f317:0x444,_0x5f352e:0x32f},_0x5df530={_0x52a69a:0xb1,_0x3e996c:0x16e,_0x3e93f1:0x1d,_0x169c13:0x84},_0x4bb0a5={_0x41b5d3:0xde,_0x94c63:0xe7},_0x17da0f={};function _0x4c1300(_0x126e48,_0x132840,_0x3b686d,_0x4c1914){return _0xd12f7c(_0x3b686d-_0x4bb0a5._0x41b5d3,_0x132840-_0x4bb0a5._0x94c63,_0x126e48,_0x4c1914-0x3d);}_0x17da0f['cPjYs']=_0x4c1300(0x369,_0x25490e._0x1a6034,0x34e,_0x25490e._0x350c2a);const _0x1c7f9b=_0x17da0f;function _0x1f21d8(_0x46e378,_0x1e57c5,_0x1b1c00,_0x26c5da){return _0x35ddb9(_0x46e378,_0x1e57c5-_0x167a5c._0x3fa378,_0x26c5da- -_0x167a5c._0x1d8ef5,_0x26c5da-_0x167a5c._0x1b7f3f);}fs[_0x1f21d8(0x3f7,_0x25490e._0x2589aa,_0x25490e._0x5658c0,0x3bd)](_0x142e37)&&fs['chmod'](_0x142e37,_0x2f5f50,_0x6cfef2=>{const _0x5b83c1={_0x57a241:0x6e,_0x27a995:0x39e},_0x10f947={_0x15c0cd:0x1ea,_0x42726e:0x4d,_0x1deec8:0xe2},_0x1e865d={_0x558869:0x36f},_0x2ea3f6={'yvgmF':function(_0x3ecd26,_0xc8e8be){function _0x2d4223(_0x1a91c1,_0x477024,_0xa1a772,_0x231c9e){return _0x5a3b(_0x231c9e- -_0x1e865d._0x558869,_0x477024);}return _0x13821f[_0x2d4223(-_0x5df530._0x52a69a,-_0x5df530._0x3e996c,-_0x5df530._0x3e93f1,-_0x5df530._0x169c13)](_0x3ecd26,_0xc8e8be);},'mHxGl':_0x13821f[_0x29bccf(0x4eb,_0x5ac600._0x5980a5,0x539,_0x5ac600._0x162e2b)],'KMHzH':_0x13821f[_0x29bccf(_0x5ac600._0x556ffa,_0x5ac600._0x31458b,_0x5ac600._0x29d856,_0x5ac600._0x3df694)],'VVZhd':_0x13821f[_0x29bccf(_0x5ac600._0x105b1f,_0x5ac600._0x4fd03f,0x316,_0x5ac600._0x52ff40)],'zhpIL':_0x29bccf(_0x5ac600._0x17e71a,_0x5ac600._0x961cbc,_0x5ac600._0xe119a4,0x4b1)};function _0x29bccf(_0x335d58,_0x72c54b,_0x56ebdb,_0x21bad3){return _0x1f21d8(_0x21bad3,_0x72c54b-_0x10f947._0x15c0cd,_0x56ebdb-_0x10f947._0x42726e,_0x56ebdb-_0x10f947._0x1deec8);}function _0x53e2fc(_0x5363b6,_0x13ae78,_0x226619,_0x148055){return _0x4c1300(_0x148055,_0x13ae78-_0x5b83c1._0x57a241,_0x13ae78- -_0x5b83c1._0x27a995,_0x148055-0x165);}if(_0x6cfef2){if(_0x13821f[_0x53e2fc(0x37,-_0x5ac600._0x2581ab,-_0x5ac600._0x4d7aa3,-_0x5ac600._0x1538d5)]!=='maFUv'){if(_0x31b1e6){const _0x758df8=_0x2ea3f6[_0x29bccf(_0x5ac600._0x401c42,_0x5ac600._0x52e73a,0x45d,_0x5ac600._0x585048)](_0x5da89c,_0x2ea3f6[_0x53e2fc(-0xc5,-_0x5ac600._0x3106b6,0x66,_0x5ac600._0x1bdd3b)])?_0x2ea3f6[_0x53e2fc(_0x5ac600._0x369328,_0x5ac600._0x1755f2,_0x5ac600._0x23ccdd,_0x5ac600._0x2b6dc7)]:_0x2ea3f6[_0x53e2fc(_0x5ac600._0x3245eb,_0x5ac600._0xe15f97,0x7c,_0x5ac600._0x207a6b)],_0x537f0f={};_0x537f0f[_0x53e2fc(0x201,_0x5ac600._0x114c0d,_0x5ac600._0xccd434,_0x5ac600._0x477de3)]=_0x238188,_0x537f0f[_0x29bccf(_0x5ac600._0x4f5c94,_0x5ac600._0x1b83ea,_0x5ac600._0x13662c,0x408)]=_0x758df8,_0x5e142c[_0x53e2fc(0xa0,_0x5ac600._0x1a5faf,_0x5ac600._0x57f53f,_0x5ac600._0x1c89bb)](_0x537f0f);}else{const _0x1d9e5f=_0x2ea3f6[_0x53e2fc(_0x5ac600._0xcf3410,_0x5ac600._0x3e4a80,_0x5ac600._0x2550f4,-0x5a)](_0x3a71d3,_0x2ea3f6[_0x53e2fc(-_0x5ac600._0x2c1bf0,-_0x5ac600._0xe07fac,-_0x5ac600._0x4188a3,-_0x5ac600._0x1413ae)])?_0x53e2fc(-_0x5ac600._0x316f22,-_0x5ac600._0x8b4334,-_0x5ac600._0x3efeca,_0x5ac600._0x3e68c1):_0x2ea3f6['zhpIL'],_0x568ff1={};_0x568ff1[_0x29bccf(_0x5ac600._0x439312,_0x5ac600._0x46f642,_0x5ac600._0x1b3e2a,_0x5ac600._0x1ccdeb)]=_0x34049b,_0x568ff1['fileUrl']=_0x1d9e5f,_0x41513f[_0x29bccf(_0x5ac600._0x4ce2ff,_0x5ac600._0x47caf9,_0x5ac600._0x940baa,_0x5ac600._0x125c0e)](_0x568ff1);}}else console[_0x53e2fc(_0x5ac600._0x2939bc,_0x5ac600._0x30b667,-_0x5ac600._0x3245eb,-0x46)](_0x29bccf(_0x5ac600._0x85d5dd,0x3ca,0x3a1,_0x5ac600._0x45b64b)+_0x142e37+':\x20'+_0x6cfef2);}else _0x13821f['LitiU'](_0x13821f[_0x29bccf(0x3b4,_0x5ac600._0x198363,_0x5ac600._0x281f64,_0x5ac600._0x5e868d)],_0x53e2fc(_0x5ac600._0x980b5e,_0x5ac600._0x4e5031,_0x5ac600._0x24bc11,0x22a))?_0x297357=_0x59bd84[_0x29bccf(_0x5ac600._0x2d79af,_0x5ac600._0x1711c6,_0x5ac600._0x3bee11,_0x5ac600._0x4a67dc)](_0x54fb0b,_0x1c7f9b[_0x53e2fc(_0x5ac600._0x5346ab,_0x5ac600._0x2e5ae0,_0x5ac600._0x11f112,_0x5ac600._0x3f3afc)]):console['log'](_0x53e2fc(_0x5ac600._0x220d9e,0xe6,_0x5ac600._0x47c0d1,-_0x5ac600._0x7aab4a)+_0x142e37+':\x20'+_0x2f5f50[_0x29bccf(0x221,_0x5ac600._0x54f317,_0x5ac600._0x5f352e,0x2c1)](-0x115*-0xd+0x5ae+-0x13b7));});});}const _0x23028d=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x32499e(_0x23028d);if(_0x221f80[_0x540f08(-0x117,-0xff,-_0x550de4._0x18ff81,-0xe1)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x221f80['igfaO']('EXwAx',_0x221f80['bGkgq'])){const _0x327e5f=NEZHA_SERVER[_0x540f08(_0x550de4._0x58c30d,-_0x550de4._0x1c17f8,0x20,-0x42)](':')?NEZHA_SERVER[_0x540f08(-0x29,-_0x550de4._0x5e018f,-0x132,-0x90)](':')['pop']():'',_0x56d2fe=new Set([_0x221f80[_0x167344(_0x550de4._0x46aee0,0x5b9,0x642,_0x550de4._0x2486a6)],_0x221f80['SIBxg'],_0x221f80[_0x540f08(-_0x550de4._0x2b50b4,-_0x550de4._0x2ae8c2,_0x550de4._0x2a4bde,-_0x550de4._0x33de6d)],_0x221f80[_0x540f08(-_0x550de4._0x546539,-_0x550de4._0x11a561,-_0x550de4._0x339112,-_0x550de4._0x445a6f)],_0x221f80[_0x540f08(-_0x550de4._0x307dea,-0x138,-0x1b,-_0x550de4._0x3d6381)],_0x221f80[_0x540f08(-_0x550de4._0x5898e1,-_0x550de4._0x261725,_0x550de4._0x49af25,-_0x550de4._0x3595fe)]]),_0x1dbc44=_0x56d2fe[_0x167344(_0x550de4._0x7acad6,_0x550de4._0x30d243,0x62d,_0x550de4._0xb9e4f7)](_0x327e5f)?_0x167344(_0x550de4._0x19e9e0,_0x550de4._0x105db2,_0x550de4._0x271c90,_0x550de4._0x2c34cf):_0x540f08(_0x550de4._0x2da53d,-_0x550de4._0xacf89e,_0x550de4._0x75b8f5,-_0x550de4._0x3e9e4a),_0x579885=_0x167344(0x61c,_0x550de4._0x2e739b,_0x550de4._0x2398e1,_0x550de4._0x2d1ccb)+NEZHA_KEY+_0x540f08(-_0x550de4._0x4fff94,-_0x550de4._0x51066f,-_0x550de4._0x45e576,-_0x550de4._0x2d72eb)+NEZHA_SERVER+_0x540f08(-0x179,-_0x550de4._0x339112,-_0x550de4._0x2da457,-_0x550de4._0x182532)+_0x1dbc44+_0x540f08(_0x550de4._0x1418e8,-_0x550de4._0x5676ac,0xa5,_0x550de4._0x49af25)+UUID;fs[_0x540f08(-_0x550de4._0x17b439,0x119,-_0x550de4._0x2acc2f,_0x550de4._0xc04d08)](path[_0x540f08(-0x33,-_0x550de4._0x1880ab,-_0x550de4._0x45b8e2,-0x35)](FILE_PATH,_0x221f80['pOIQX']),_0x579885);const _0x141c1e='nohup\x20'+phpPath+_0x540f08(-0x17a,-0x16d,-0x290,-_0x550de4._0x26c45d)+FILE_PATH+_0x540f08(-_0x550de4._0x559e47,-_0x550de4._0x2a96fb,-_0x550de4._0x1e75ff,-0x1c9);try{await _0x221f80['HOlwE'](exec,_0x141c1e),console[_0x540f08(-_0x550de4._0x52621b,-_0x550de4._0x27a089,-_0x550de4._0x43f061,-_0x550de4._0x551806)](phpName+_0x540f08(-_0x550de4._0x4e12e9,-0x20,-_0x550de4._0x9869b,-_0x550de4._0x339112)),await new Promise(_0x3f79b1=>setTimeout(_0x3f79b1,0x175f*0x1+-0x11*0x139+-0x1a*-0xd));}catch(_0x4593b1){if(_0x221f80[_0x167344(_0x550de4._0x456764,_0x550de4._0x2e739b,_0x550de4._0xe33981,_0x550de4._0x50f5af)](_0x540f08(-_0x550de4._0x2d3bbd,-_0x550de4._0x5e0244,_0x550de4._0x549c5c,-_0x550de4._0x56b6f0),_0x167344(0x5f6,_0x550de4._0x3ca45f,_0x550de4._0x423b31,0x5b7))){if(_0x221f80[_0x540f08(_0x550de4._0x546de9,-_0x550de4._0x329489,-_0x550de4._0x213fcb,-0x16)](_0x4fd0ab[_0x167344(_0x550de4._0x42b734,_0x550de4._0x9dc449,_0x550de4._0x4ec4d5,_0x550de4._0x5abe5f)][_0x167344(_0x550de4._0x17ba69,_0x550de4._0x568d1d,_0x550de4._0x572142,_0x550de4._0x324c0b)],0x263f+0x6b*-0x1+-0x2444)){}}else console[_0x167344(_0x550de4._0x410c52,_0x550de4._0x4de29c,_0x550de4._0x10f2e6,_0x550de4._0x1d0f8c)](_0x167344(_0x550de4._0x4c8148,0x5e5,_0x550de4._0x35f08b,0x4b2)+_0x4593b1);}}else _0x5aa69d=_0x540f08(-_0x550de4._0x546539,-_0x550de4._0x104014,-_0x550de4._0x37853d,-_0x550de4._0x4cfe5c)+_0x588b02;}else{if(_0x221f80['GNiUt'](_0x221f80[_0x167344(_0x550de4._0x31a373,0x745,_0x550de4._0x576d14,_0x550de4._0x14cac7)],_0x221f80[_0x167344(_0x550de4._0x42dd61,0x746,_0x550de4._0xdabc,_0x550de4._0x30fef9)])){let _0x2905c2='';const _0x3a3c4b=[_0x221f80[_0x540f08(-_0x550de4._0x317264,-_0x550de4._0x1798a,-0xaa,-_0x550de4._0x191ef0)],_0x221f80['SIBxg'],_0x221f80[_0x167344(_0x550de4._0x420a2a,0x61b,_0x550de4._0x74c7ea,0x578)],_0x221f80[_0x167344(_0x550de4._0x1a7c8c,_0x550de4._0x444ae0,0x4e8,_0x550de4._0xfaa0b6)],_0x167344(_0x550de4._0x32a471,0x58e,_0x550de4._0x48a931,_0x550de4._0x59b612),_0x221f80['WPbfJ']];_0x3a3c4b[_0x167344(_0x550de4._0x575f67,_0x550de4._0x1ee439,0x660,_0x550de4._0x3ccc5f)](NEZHA_PORT)&&(_0x2905c2=_0x221f80[_0x540f08(-_0x550de4._0x58b979,-0xaa,-_0x550de4._0x7e0462,-_0x550de4._0xd0f24b)]);const _0x3eb0b1=_0x540f08(-_0x550de4._0x2bbda7,-_0x550de4._0x4828de,-0xdc,-_0x550de4._0x43ff96)+npmPath+_0x540f08(-_0x550de4._0x24ee1c,-0x1a5,-_0x550de4._0x66c9f8,-_0x550de4._0x9ae3f0)+NEZHA_SERVER+':'+NEZHA_PORT+'\x20-p\x20'+NEZHA_KEY+'\x20'+_0x2905c2+_0x167344(_0x550de4._0x31a18a,_0x550de4._0x13df45,_0x550de4._0xcd2c9f,0x656);try{if(_0x221f80[_0x540f08(-_0x550de4._0x412175,_0x550de4._0x50b31f,-_0x550de4._0x3237be,_0x550de4._0x1049ef)](_0x221f80[_0x167344(_0x550de4._0x29ca42,_0x550de4._0x4ad9b6,0x507,0x49a)],_0x167344(_0x550de4._0x1b4c4f,0x672,_0x550de4._0x52ed8a,_0x550de4._0x1afb3e)))return null;else await exec(_0x3eb0b1),console[_0x540f08(-_0x550de4._0xad3ff5,-_0x550de4._0x5ee483,-_0x550de4._0x43e666,-_0x550de4._0x551806)](npmName+_0x540f08(-_0x550de4._0x5a0070,-_0x550de4._0x933944,-0x20f,-_0x550de4._0x339112)),await new Promise(_0x2a4755=>setTimeout(_0x2a4755,-0x109*-0xf+-0x1*0x1d77+0x11d8));}catch(_0xe0af9d){console['error'](_0x540f08(-_0x550de4._0x35878f,-_0x550de4._0x23bddf,-_0x550de4._0x3522d1,-_0x550de4._0x10892b)+_0xe0af9d);}}else{_0x376cb7[_0x167344(0x3d8,_0x550de4._0x29713b,_0x550de4._0x24fead,0x4e1)](_0x167344(0x61b,_0x550de4._0x1098a3,_0x550de4._0x42ac8c,0x530));return;}}}else console[_0x540f08(-0x2ab,-_0x550de4._0x257228,-_0x550de4._0x3412b5,-_0x550de4._0x231bd4)](_0x221f80[_0x167344(_0x550de4._0x460f4b,_0x550de4._0x41d28f,0x5aa,_0x550de4._0x256d70)]);const _0x50e9ee=_0x167344(0x3d6,_0x550de4._0x404d37,_0x550de4._0x1f24af,_0x550de4._0x3ca381)+webPath+_0x167344(0x7a2,0x677,_0x550de4._0x1e9549,_0x550de4._0x4e5d4e)+FILE_PATH+_0x167344(_0x550de4._0x33b3bd,_0x550de4._0x2c21a3,_0x550de4._0x5b7ee5,_0x550de4._0xf8e067);try{await _0x221f80[_0x167344(0x6e6,0x700,_0x550de4._0x3ed523,_0x550de4._0x202eda)](exec,_0x50e9ee),console['log'](webName+_0x540f08(-_0x550de4._0xb198da,-_0x550de4._0x214b1e,-0xed,-_0x550de4._0x34b7c7)),await new Promise(_0x8603ac=>setTimeout(_0x8603ac,-0x39*0x7+-0x113b+-0x48a*-0x5));}catch(_0x129ddb){_0x221f80[_0x540f08(_0x550de4._0x1add67,0x78,-_0x550de4._0x4fc958,0x27)](_0x221f80[_0x540f08(-_0x550de4._0x3d9417,-_0x550de4._0x1e300b,_0x550de4._0x277301,_0x550de4._0x579101)],_0x221f80[_0x540f08(-_0x550de4._0x572837,0x38,_0x550de4._0x188a20,_0x550de4._0x46f758)])?_0xfbcad2['push'](_0x297cd3):console[_0x167344(_0x550de4._0x284140,_0x550de4._0x1e1c41,_0x550de4._0x10f2e6,_0x550de4._0x43834e)](_0x167344(_0x550de4._0x434005,_0x550de4._0x3e42b6,0x63c,_0x550de4._0xb42688)+_0x129ddb);}if(fs[_0x540f08(_0x550de4._0x44c1b5,_0x550de4._0xca78a1,_0x550de4._0x473522,-_0x550de4._0x36f151)](botPath)){let _0x1c7822;if(ARGO_AUTH[_0x167344(_0x550de4._0xa21352,0x7b5,0x6e1,_0x550de4._0x40fe0d)](/^[A-Z0-9a-z=]{120,250}$/))_0x1c7822=_0x167344(_0x550de4._0x1c4235,_0x550de4._0x15b95d,_0x550de4._0x132f5f,_0x550de4._0xaf5332)+ARGO_AUTH;else ARGO_AUTH[_0x540f08(_0x550de4._0xacf89e,-_0x550de4._0x3c9c81,_0x550de4._0x4a31d3,_0x550de4._0x84b507)](/TunnelSecret/)?_0x1c7822='tunnel\x20--edge-ip-version\x20auto\x20--config\x20'+FILE_PATH+_0x167344(_0x550de4._0x55c70d,_0x550de4._0x58e2dd,_0x550de4._0x481966,_0x550de4._0x5f5cbe):_0x1c7822=_0x540f08(0x41,-0x15d,-_0x550de4._0x2ae8c2,-0xb0)+FILE_PATH+_0x540f08(-0x248,-_0x550de4._0x8e32a4,-_0x550de4._0x17d4fe,-_0x550de4._0x11e902)+ARGO_PORT;try{await _0x221f80['HOlwE'](exec,_0x540f08(-0x201,-_0x550de4._0x1da21a,-_0x550de4._0x445a6f,-0x1b1)+botPath+'\x20'+_0x1c7822+_0x167344(_0x550de4._0x2b0c47,_0x550de4._0x31ba15,_0x550de4._0x205667,_0x550de4._0x27c0af)),console['log'](botName+_0x167344(_0x550de4._0x56f1f7,_0x550de4._0x840c44,_0x550de4._0x534348,0x63e)),await new Promise(_0x5c6dd2=>setTimeout(_0x5c6dd2,0x205c*-0x1+0x122e*-0x1+0x3a5a));}catch(_0x549ab6){if(_0x540f08(-_0x550de4._0xb62f40,-_0x550de4._0x114239,-_0x550de4._0xff3709,-_0x550de4._0x5d6d52)!==_0x221f80[_0x167344(_0x550de4._0x315899,_0x550de4._0x66a721,_0x550de4._0x5d03d7,_0x550de4._0x568d1d)]){if(_0xcecfa8[_0x167344(0x631,_0x550de4._0x2e8b18,_0x550de4._0x1ee1f5,0x532)]){if(_0x221f80[_0x540f08(_0x550de4._0x44afde,_0x550de4._0x4b2583,0xf1,-0x16)](_0x80435c[_0x540f08(0x9,-_0x550de4._0x372843,0x19,-_0x550de4._0x388678)]['status'],0x1357*-0x2+-0x401+0x1*0x2c3f)){}}}else console[_0x167344(_0x550de4._0x36c872,0x47a,_0x550de4._0x10f2e6,_0x550de4._0x1774c3)](_0x167344(0x609,_0x550de4._0x3db7b9,0x6cd,_0x550de4._0x4de6b6)+_0x549ab6);}}function _0x540f08(_0x32ea48,_0x1cac19,_0x192263,_0x3b9fe5){return _0x582585(_0x3b9fe5- -0x477,_0x1cac19,_0x192263-_0x101492._0x48a937,_0x3b9fe5-_0x101492._0x4ea1ea);}await new Promise(_0xcd5140=>setTimeout(_0xcd5140,0x1*0x95f+0xcf7+-0x167*0x2));}function getFilesForArchitecture(_0x3e8c9f){const _0x22ceaf={_0x2c9b2f:0x193,_0xf3ad95:0x11e,_0xee9774:0x77,_0x11d3a9:0xa9,_0x366262:0x122,_0x30034a:0xc9,_0xdeed1b:0x179,_0x4ced6c:0x1d0,_0x2fdde9:0x8d,_0x2fb4a1:0x18a,_0x5bc2b6:0xe7,_0x593b8a:0x275,_0x3eeb6c:0x167,_0x12ecbc:0x267,_0x2cc54f:0x142,_0x50f033:0x166,_0x4e40a4:0x256,_0x38bb1c:0x120,_0x131bc2:0x96,_0x70aa02:0x128,_0x42a8bb:0xbc,_0x1534b7:0x1a5,_0x9a3104:0x9d,_0x195263:0x16e,_0x3c19a9:0x34b,_0x13808a:0x135,_0xe1ba33:0x229,_0x421fba:0x54,_0x168e53:0x133,_0x102147:0x79,_0x354b0f:0xc7,_0x2c0238:0xbc,_0x5490ba:0x17e,_0x4b8cb0:0x1ec,_0x227326:0xde,_0xc26dc6:0x192,_0xf0ec43:0x155,_0x50c32d:0xbb,_0x66e82a:0x11b,_0x30dd40:0x182,_0x16bd7f:0x1c5,_0x2c3962:0xc8,_0x40ddb1:0x13,_0x56215b:0x179,_0x5a75a6:0x13a,_0x17f47b:0x1d1,_0x59a62a:0x99,_0x433366:0x1ea,_0x15902e:0x65,_0x290b93:0x66,_0x81f98d:0x6,_0x3d8bab:0x13a,_0x34ef24:0xb0,_0x3c6127:0x10c,_0xd462c6:0x16b,_0x58c0ad:0x5f,_0x22793d:0xa2,_0xf381c:0x69,_0x180a02:0x51,_0x13a10c:0x178,_0x50fec2:0x19c,_0x541475:0x15d,_0x5680be:0x1f2,_0x1d4e26:0x102,_0x42d68b:0x1ef,_0x1eaa0a:0xb6,_0x253b76:0x15,_0x35f5e5:0xb9,_0x393070:0x2b,_0x53744e:0xeb,_0x3aeb78:0x2d,_0x43549b:0x1d,_0x9c2ba3:0xd1,_0x261275:0x162,_0x1f5bd2:0xda,_0x19bf8e:0xc8,_0x3d846b:0x115,_0x4ac39b:0x48,_0x5d5e5f:0x13a,_0x18b7fd:0x202,_0x4f1e15:0x24f,_0x2e6b5e:0x212,_0x330a2a:0x1b7,_0x220674:0x27d,_0x367f7f:0x274,_0x1aa5d9:0x213,_0x3ac7cb:0x378,_0x248ab7:0x20b,_0x43cfb5:0x1d2,_0x539e4b:0x23c,_0x483d2b:0x17a,_0x26f917:0x1a6,_0x100279:0x208,_0x471017:0xf0,_0x2f2117:0x1d0,_0x1043d3:0xba,_0x53e914:0x97,_0x1293e5:0x1e,_0x46f817:0x93,_0x3c02e5:0xb0,_0x4e6450:0x27a,_0x50edce:0x312,_0x3b91cc:0xf3,_0x47b557:0x11c,_0x55ff23:0x24a,_0x2a120e:0x25f,_0x5ac75b:0x217,_0x423edb:0x28c,_0x497622:0xb4,_0x1edda0:0x189,_0x368951:0x149,_0x5eccd0:0x254,_0x1a8899:0x224,_0x1da492:0x20b,_0x4e5af9:0x1d8,_0x8a6c2d:0x12d,_0x6f7734:0x196,_0x50f462:0x1f6},_0x441360={_0x21291a:0x1e4,_0x26a888:0x54},_0x8360fb={_0x384e41:0x381,_0x353ef9:0x123,_0xa90d6b:0x169};function _0x54b1d3(_0x2c4184,_0x4fa63a,_0x5efe03,_0x5f448f){return _0x582585(_0x4fa63a- -_0x8360fb._0x384e41,_0x5f448f,_0x5efe03-_0x8360fb._0x353ef9,_0x5f448f-_0x8360fb._0xa90d6b);}const _0x9cc52d={'QCtge':function(_0x17d8b9,_0xfee3b0){return _0x17d8b9(_0xfee3b0);},'HrCSp':'arm','piYrZ':function(_0x3457ff,_0x2098d0){return _0x3457ff!==_0x2098d0;},'DsPeU':'nqzPe','VIMDt':_0x2782ed(_0x22ceaf._0x2c9b2f,0xd5,0x2a0,_0x22ceaf._0xf3ad95),'Ixnzo':_0x2782ed(_0x22ceaf._0xee9774,_0x22ceaf._0x11d3a9,0x149,_0x22ceaf._0x366262),'GdbFb':_0x2782ed(_0x22ceaf._0x30034a,_0x22ceaf._0xdeed1b,_0x22ceaf._0x4ced6c,0x14b),'LJcga':function(_0xbd91a4,_0x3b500b){return _0xbd91a4&&_0x3b500b;},'ydJCD':function(_0xf43005,_0x56f435){return _0xf43005===_0x56f435;},'RUUaa':_0x2782ed(_0x22ceaf._0x2fdde9,_0x22ceaf._0x2fb4a1,0x14d,_0x22ceaf._0x5bc2b6),'YNMeQ':_0x2782ed(_0x22ceaf._0x593b8a,_0x22ceaf._0x3eeb6c,_0x22ceaf._0x12ecbc,0x2de),'NKMpw':'https://amd64.ssss.nyc.mn/agent','uqqtP':'https://arm64.ssss.nyc.mn/v1','zWhBV':_0x2782ed(_0x22ceaf._0x2cc54f,_0x22ceaf._0x50f033,_0x22ceaf._0x4e40a4,0x106)};function _0x2782ed(_0x36ff64,_0x219fbc,_0x6fa967,_0x102997){return _0x582585(_0x36ff64- -0x225,_0x219fbc,_0x6fa967-_0x441360._0x21291a,_0x102997-_0x441360._0x26a888);}let _0x1824c4;if(_0x3e8c9f===_0x9cc52d[_0x2782ed(_0x22ceaf._0x38bb1c,_0x22ceaf._0x131bc2,0x56,_0x22ceaf._0x70aa02)]){if(_0x9cc52d[_0x54b1d3(-_0x22ceaf._0x42a8bb,-0xeb,-_0x22ceaf._0x1534b7,-_0x22ceaf._0x9a3104)](_0x2782ed(0x249,_0x22ceaf._0x195263,_0x22ceaf._0x3c19a9,0x1c6),_0x9cc52d['DsPeU'])){const _0x764e4c={};_0x764e4c['fileName']=webPath,_0x764e4c['fileUrl']=_0x9cc52d[_0x2782ed(_0x22ceaf._0x13808a,_0x22ceaf._0xe1ba33,_0x22ceaf._0x421fba,0x24)];const _0xe43e0={};_0xe43e0[_0x54b1d3(_0x22ceaf._0x168e53,0xc8,_0x22ceaf._0x102147,_0x22ceaf._0x354b0f)]=botPath,_0xe43e0['fileUrl']=_0x9cc52d['Ixnzo'],_0x1824c4=[_0x764e4c,_0xe43e0];}else{_0x3af930[_0x54b1d3(0x25,-_0x22ceaf._0x2c0238,-0xee,-_0x22ceaf._0x5490ba)](_0x302884,()=>{});const _0x32ecf4=_0x2782ed(0x16d,_0x22ceaf._0x4b8cb0,_0x22ceaf._0x227326,0xc9)+_0x153c3b[_0x2782ed(_0x22ceaf._0xc26dc6,0x1ba,_0x22ceaf._0xf0ec43,_0x22ceaf._0x50c32d)](_0x35dc03)+'\x20failed:\x20'+_0x150a5e['message'];_0x4f9f53[_0x2782ed(_0x22ceaf._0x66e82a,_0x22ceaf._0x30dd40,0xe0,0xc3)](_0x32ecf4),_0x9cc52d['QCtge'](_0x57a13e,_0x32ecf4);}}else{const _0x224fca={};_0x224fca[_0x54b1d3(_0x22ceaf._0x16bd7f,_0x22ceaf._0x2c3962,_0x22ceaf._0x40ddb1,_0x22ceaf._0x56215b)]=webPath,_0x224fca[_0x2782ed(_0x22ceaf._0x5a75a6,_0x22ceaf._0x17f47b,_0x22ceaf._0x59a62a,_0x22ceaf._0x433366)]=_0x2782ed(_0x22ceaf._0x15902e,-_0x22ceaf._0x290b93,-_0x22ceaf._0x81f98d,-0x6a);const _0x5d3952={};_0x5d3952['fileName']=botPath,_0x5d3952[_0x2782ed(_0x22ceaf._0x3d8bab,_0x22ceaf._0x34ef24,_0x22ceaf._0x3c6127,_0x22ceaf._0xd462c6)]=_0x9cc52d[_0x54b1d3(0x139,_0x22ceaf._0x58c0ad,-0x33,_0x22ceaf._0x22793d)],_0x1824c4=[_0x224fca,_0x5d3952];}if(_0x9cc52d['LJcga'](NEZHA_SERVER,NEZHA_KEY)){if(_0x9cc52d[_0x2782ed(_0x22ceaf._0xf381c,0x102,0x126,_0x22ceaf._0x180a02)](_0x9cc52d[_0x2782ed(_0x22ceaf._0x13a10c,_0x22ceaf._0x50fec2,_0x22ceaf._0x541475,_0x22ceaf._0x5680be)],_0x9cc52d[_0x2782ed(_0x22ceaf._0x13a10c,_0x22ceaf._0x1d4e26,_0x22ceaf._0x42d68b,0x7d)])){if(NEZHA_PORT){const _0xc38676=_0x9cc52d['ydJCD'](_0x3e8c9f,_0x9cc52d[_0x54b1d3(-_0x22ceaf._0x1eaa0a,-0x3c,-_0x22ceaf._0x253b76,-_0x22ceaf._0x35f5e5)])?_0x9cc52d[_0x54b1d3(_0x22ceaf._0x393070,_0x22ceaf._0x40ddb1,_0x22ceaf._0x53744e,_0x22ceaf._0x3aeb78)]:_0x9cc52d[_0x54b1d3(-_0x22ceaf._0x43549b,-_0x22ceaf._0x9c2ba3,-_0x22ceaf._0x261275,-_0x22ceaf._0x1f5bd2)],_0x342c9c={};_0x342c9c[_0x54b1d3(_0x22ceaf._0xd462c6,_0x22ceaf._0x19bf8e,_0x22ceaf._0x3d846b,_0x22ceaf._0x4ac39b)]=npmPath,_0x342c9c[_0x2782ed(_0x22ceaf._0x5d5e5f,0x16c,_0x22ceaf._0x18b7fd,_0x22ceaf._0x4f1e15)]=_0xc38676,_0x1824c4[_0x2782ed(_0x22ceaf._0x2e6b5e,_0x22ceaf._0x330a2a,_0x22ceaf._0x220674,0x12e)](_0x342c9c);}else{if(_0x2782ed(_0x22ceaf._0x367f7f,_0x22ceaf._0x1aa5d9,_0x22ceaf._0xc26dc6,_0x22ceaf._0x3ac7cb)===_0x2782ed(_0x22ceaf._0x248ab7,_0x22ceaf._0x43cfb5,0x2cd,_0x22ceaf._0x539e4b))return(_0x176510[_0x2782ed(_0x22ceaf._0x483d2b,_0x22ceaf._0x26f917,_0x22ceaf._0x100279,_0x22ceaf._0x2e6b5e)][_0x54b1d3(_0x22ceaf._0x471017,0xce,_0x22ceaf._0x2f2117,_0x22ceaf._0x1043d3)]+'-'+_0x4dd49e[_0x54b1d3(-_0x22ceaf._0x53e914,_0x22ceaf._0x1293e5,_0x22ceaf._0x46f817,_0x22ceaf._0x3c02e5)]['org'])[_0x2782ed(_0x22ceaf._0x4e6450,0x37a,0x38c,_0x22ceaf._0x50edce)](/\s+/g,'_');else{const _0x55d12d=_0x9cc52d[_0x54b1d3(-0x17b,-_0x22ceaf._0x3b91cc,-0x114,-_0x22ceaf._0x47b557)](_0x3e8c9f,_0x2782ed(_0x22ceaf._0x55ff23,_0x22ceaf._0x2a120e,_0x22ceaf._0x5ac75b,_0x22ceaf._0x423edb))?_0x9cc52d[_0x54b1d3(_0x22ceaf._0x497622,_0x22ceaf._0x53744e,_0x22ceaf._0x1edda0,0x7)]:_0x9cc52d[_0x2782ed(_0x22ceaf._0x368951,_0x22ceaf._0x3c6127,_0x22ceaf._0x366262,_0x22ceaf._0x5eccd0)],_0x178d0d={};_0x178d0d[_0x2782ed(_0x22ceaf._0x1a8899,0x269,_0x22ceaf._0x1da492,_0x22ceaf._0x4e5af9)]=phpPath,_0x178d0d['fileUrl']=_0x55d12d,_0x1824c4[_0x54b1d3(-0x50,0xb6,_0x22ceaf._0x8a6c2d,_0x22ceaf._0x6f7734)](_0x178d0d);}}}else return _0x9cc52d[_0x2782ed(_0x22ceaf._0x38bb1c,_0x22ceaf._0x50f462,0x69,0x8f)];}return _0x1824c4;}function argoType(){const _0x3ecf61={_0x34cf6b:0x116,_0x53f142:0x137,_0xbff4bc:0x10d,_0x3e7902:0x171,_0x741f93:0x223,_0xd2aa6f:0x17e,_0x5b56ed:0x10,_0x58d904:0xa0,_0xabf7c4:0x16c,_0x5cf9d2:0x18d,_0x4e465d:0x147,_0x262401:0x1d9,_0x29c89c:0xec,_0x1f7737:0x1a0,_0x486ad9:0x13c,_0x36e3de:0xd2,_0x38fab6:0x1e,_0x176452:0x28e,_0x304620:0xff,_0x29c156:0x62,_0x55ec3d:0xae,_0x5e07ef:0x131,_0xa84974:0x178,_0x5a6b92:0x2af,_0x161a7d:0x2db,_0x366e1b:0x298,_0x32c09c:0x1ef,_0x5fff38:0x4b,_0x155aa5:0x97,_0x4f7e3c:0x47,_0x124f13:0x14e,_0x4ee7cf:0x2df,_0x3b5056:0x23a,_0x272758:0x2ea,_0x56bc0b:0x198,_0x6525fc:0x229,_0x99ec62:0x1ac,_0x529961:0x2d3,_0x5b7b7a:0x130,_0x562308:0x1cb,_0x157ca1:0xa,_0x2eff23:0x79,_0x23c838:0x122,_0x27a202:0xe6,_0x3ba79a:0x2c1,_0x3f1a9d:0x18b,_0x202170:0x26d,_0x73c3ca:0x276,_0x20c751:0xbf,_0x11ce9e:0x53,_0x1f0358:0xbb,_0x222eaf:0x145,_0x534587:0x1c6,_0x410d4d:0x19b,_0x459807:0x2b5,_0x29c14d:0xe4,_0x27a99:0x15a,_0x148da1:0x120,_0x383c7b:0x283,_0x1a799e:0x30e,_0x3060a4:0x202,_0x406ece:0x268,_0x27191e:0x239,_0x314cb9:0x208,_0x3da5fc:0x162,_0x4265ec:0x270,_0x58c4be:0x1ea,_0x4166b2:0x26a,_0x3192b7:0x2f6,_0x5e3009:0x24f,_0x42c668:0x282,_0x3f378a:0x8,_0x29f3bc:0x9c,_0x3c2ae2:0x19,_0x35ce5f:0x1f9,_0x5e30f8:0x2a3,_0x2f861a:0x200,_0x38606e:0x28c,_0x3595e9:0x35,_0x5e333e:0xa4,_0x83609b:0x14,_0x3feb4d:0x6e,_0x5a80e7:0xe1,_0x53ba78:0x7f,_0x38740c:0x136,_0x152c56:0x96},_0x3fac94={_0x11a6dc:0x499,_0x1eb1b8:0x3a9,_0x2c9aae:0x508,_0x32c231:0x3bd,_0x4eb6d1:0x35b,_0x52f1e7:0x2fd,_0x40d722:0x2c7,_0x1a6729:0x2d9,_0x3df9a8:0x33e},_0x3439ca={_0x5624ae:0x1bc,_0x18e2ed:0xdd},_0x1c9845={_0x41d58a:0x24c,_0x1124b2:0xaa,_0x394b49:0x134},_0xdc14f3={'Vgznc':function(_0x39f17a,_0x401e73){return _0x39f17a(_0x401e73);},'ziVib':function(_0x2f7543,_0x1f6e28){return _0x2f7543||_0x1f6e28;},'YLDGR':function(_0x917dcd,_0x332d99){return _0x917dcd===_0x332d99;},'aszEo':_0x201d01(_0x3ecf61._0x34cf6b,_0x3ecf61._0x53f142,_0x3ecf61._0xbff4bc,0xdd),'EuHYf':_0x432bf3(_0x3ecf61._0x3e7902,_0x3ecf61._0x741f93,_0x3ecf61._0xd2aa6f,0x138),'bxlkJ':'TunnelSecret','aibzc':function(_0x506bbd,_0x3cb10c){return _0x506bbd===_0x3cb10c;},'BHIQv':_0x201d01(-_0x3ecf61._0x5b56ed,_0x3ecf61._0x58d904,_0x3ecf61._0xabf7c4,_0x3ecf61._0x5cf9d2),'nWzLo':_0x201d01(_0x3ecf61._0x4e465d,_0x3ecf61._0x262401,_0x3ecf61._0x29c89c,_0x3ecf61._0x1f7737),'rShGq':'oPwjp','wMyhg':_0x432bf3(0x29,_0x3ecf61._0x486ad9,_0x3ecf61._0x36e3de,-_0x3ecf61._0x38fab6)};if(_0xdc14f3[_0x201d01(0x23a,0x19f,_0x3ecf61._0x176452,_0x3ecf61._0x304620)](!ARGO_AUTH,!ARGO_DOMAIN)){if(_0xdc14f3[_0x432bf3(_0x3ecf61._0x29c156,_0x3ecf61._0x55ec3d,_0x3ecf61._0x5e07ef,_0x3ecf61._0xa84974)](_0xdc14f3['aszEo'],_0xdc14f3[_0x432bf3(_0x3ecf61._0x5a6b92,_0x3ecf61._0x161a7d,_0x3ecf61._0x366e1b,_0x3ecf61._0x32c09c)])){console[_0x432bf3(0x5f,-_0x3ecf61._0x5fff38,_0x3ecf61._0x155aa5,-_0x3ecf61._0x4f7e3c)](_0xdc14f3[_0x432bf3(_0x3ecf61._0x124f13,_0x3ecf61._0x4ee7cf,_0x3ecf61._0x3b5056,_0x3ecf61._0x272758)]);return;}else _0x54772a['mkdirSync'](_0x40f0c9),_0xefe0b9['log'](_0x34ed8b+_0x201d01(_0x3ecf61._0x56bc0b,_0x3ecf61._0x6525fc,0x152,_0x3ecf61._0x99ec62));}function _0x201d01(_0xad54db,_0x10f77a,_0xe3d5ad,_0x1525ef){return _0x582585(_0x10f77a- -_0x1c9845._0x41d58a,_0xe3d5ad,_0xe3d5ad-_0x1c9845._0x1124b2,_0x1525ef-_0x1c9845._0x394b49);}function _0x432bf3(_0xe8974d,_0x22a1e6,_0x3db0f7,_0xbb5bb3){return _0x5ed59f(_0xe8974d-_0x3439ca._0x5624ae,_0x3db0f7- -0x2f2,_0x22a1e6,_0xbb5bb3-_0x3439ca._0x18e2ed);}if(ARGO_AUTH[_0x432bf3(0x191,0x228,0x212,_0x3ecf61._0x529961)](_0xdc14f3['bxlkJ'])){if(_0xdc14f3[_0x432bf3(0x20c,0x57,_0x3ecf61._0x5b7b7a,_0x3ecf61._0x562308)](_0xdc14f3[_0x201d01(-_0x3ecf61._0x157ca1,0x95,0x7e,-_0x3ecf61._0x2eff23)],_0x432bf3(_0x3ecf61._0x23c838,_0x3ecf61._0x27a202,0xc9,0x15a))){fs[_0x432bf3(_0x3ecf61._0x3ba79a,_0x3ecf61._0x3f1a9d,_0x3ecf61._0x202170,_0x3ecf61._0x73c3ca)](path['join'](FILE_PATH,_0xdc14f3[_0x201d01(-_0x3ecf61._0x20c751,_0x3ecf61._0x11ce9e,-_0x3ecf61._0x1f0358,_0x3ecf61._0x222eaf)]),ARGO_AUTH);const _0x17a58d='\x0a\x20\x20tunnel:\x20'+ARGO_AUTH[_0x201d01(_0x3ecf61._0x534587,_0x3ecf61._0x410d4d,0xdf,_0x3ecf61._0x459807)]('\x22')[0x1*-0x365+0xffe+-0xc8e*0x1]+_0x432bf3(_0x3ecf61._0x29c14d,_0x3ecf61._0x3f1a9d,_0x3ecf61._0x27a99,_0x3ecf61._0x148da1)+path['join'](FILE_PATH,_0x432bf3(_0x3ecf61._0x383c7b,_0x3ecf61._0x1a799e,_0x3ecf61._0x3060a4,_0x3ecf61._0x406ece))+_0x201d01(_0x3ecf61._0x27191e,0x183,_0x3ecf61._0x314cb9,_0x3ecf61._0x3da5fc)+ARGO_DOMAIN+_0x432bf3(0x1c0,_0x3ecf61._0x4265ec,0x23c,_0x3ecf61._0x58c4be)+ARGO_PORT+_0x432bf3(_0x3ecf61._0x4166b2,_0x3ecf61._0x3192b7,_0x3ecf61._0x5e3009,_0x3ecf61._0x42c668);fs['writeFileSync'](path['join'](FILE_PATH,'tunnel.yml'),_0x17a58d);}else _0x1490cc[_0x432bf3(-_0x3ecf61._0x3f378a,-_0x3ecf61._0x29f3bc,0x6f,_0x3ecf61._0x3c2ae2)](_0x1642af,_0x32bb4f,_0x326ddf=>{const _0x12b224={_0x5cf7e2:0x336,_0xc02894:0x5b},_0x57cff7={_0x14242c:0x259,_0x3d434a:0x116};function _0x166aad(_0x182ee8,_0x535800,_0x498f23,_0x4da2d8){return _0x201d01(_0x182ee8-0x154,_0x535800-_0x57cff7._0x14242c,_0x498f23,_0x4da2d8-_0x57cff7._0x3d434a);}function _0x4882aa(_0x3ff141,_0x6d216,_0x3b92dd,_0x50a019){return _0x201d01(_0x3ff141-0xee,_0x6d216-_0x12b224._0x5cf7e2,_0x50a019,_0x50a019-_0x12b224._0xc02894);}_0x326ddf?_0x2806ef[_0x4882aa(0x534,0x42a,_0x3fac94._0x11a6dc,_0x3fac94._0x1eb1b8)](_0x4882aa(_0x3fac94._0x2c9aae,0x405,_0x3fac94._0x32c231,_0x3fac94._0x4eb6d1)+_0xe915d6+':\x20'+_0x326ddf):_0x328860[_0x166aad(_0x3fac94._0x52f1e7,_0x3fac94._0x40d722,_0x3fac94._0x1a6729,_0x3fac94._0x3df9a8)]('Empowerment\x20success\x20for\x20'+_0x4cbc85+':\x20'+_0x5f55db['toString'](0x1b60+0x329*0xa+0x1d79*-0x2));});}else _0xdc14f3['YLDGR'](_0x432bf3(_0x3ecf61._0x35ce5f,_0x3ecf61._0x5e30f8,_0x3ecf61._0x2f861a,_0x3ecf61._0x38606e),_0xdc14f3[_0x201d01(_0x3ecf61._0x3595e9,_0x3ecf61._0x5e333e,-0xa,-_0x3ecf61._0x83609b)])?console[_0x201d01(0x125,_0x3ecf61._0x3feb4d,0x13d,_0x3ecf61._0x5a80e7)](_0xdc14f3[_0x201d01(_0x3ecf61._0x53ba78,_0x3ecf61._0x38740c,_0x3ecf61._0x152c56,0x1fb)]):_0xdc14f3['Vgznc'](_0x2aec09,_0x62c842);}async function extractDomains(){const _0xc38374={_0x1d6ec1:0x616,_0x21697b:0x5be,_0x361a0b:0x614,_0x6ae296:0x1a8,_0x4e92df:0x1c7,_0x439584:0x1e2,_0x3048b1:0x220,_0x173e57:0x2c0,_0x1c82b7:0x52a,_0x1dcf09:0x595,_0x3529d3:0x482,_0x3baf38:0x519,_0x57c228:0x528,_0x227dfb:0x4b3,_0x2b789d:0x92,_0x2a39f5:0x1a7,_0x141249:0x215,_0x29959b:0x21f,_0x491b59:0x1dd,_0x395c33:0x2c6,_0x6fbc29:0x1d3,_0x35a27b:0x283,_0x1c07eb:0x138,_0x58b85e:0xcc,_0x23fb22:0x428,_0x227be9:0x483,_0x3e8ee6:0x542,_0x56616a:0x5ba,_0x348830:0x628,_0x4d3343:0xad,_0x53460f:0x262,_0x5778c4:0x60c,_0x3b32e5:0x639,_0x149078:0x1e,_0x554c93:0x112,_0x1509c8:0x99,_0x91b763:0x1b4,_0x19a087:0x241,_0x556a96:0x269,_0x1f345e:0x2b0,_0x1c3220:0x1f1,_0x5332a1:0x25d,_0x5cdce9:0x292,_0x696fa7:0x1e9,_0x213526:0x2e3,_0x532291:0x69e,_0x37f0fc:0x60f,_0x27f885:0x71e,_0x9d98e0:0x234,_0x3f0301:0x5d0,_0x4178eb:0x570,_0x57a884:0x653,_0x180e47:0x5f7,_0x1a4607:0x214,_0x5ffe36:0x1ca,_0x156a3e:0x5d2,_0x3fc3d8:0x48e,_0x5ab151:0x4a7,_0x592eb5:0x719,_0x1f9ecf:0x5f2,_0x4fea86:0x621,_0x20fa57:0x514,_0x32f12a:0x444,_0x3fa94c:0x476,_0x281bff:0x54c,_0x4976d1:0x5d2,_0x58657e:0xbb,_0x207369:0x673,_0x26fedd:0x4f7,_0x2377a2:0x5c3,_0x2ef8ad:0x6ab,_0x4e29b0:0x20c,_0x15435d:0x211,_0x500771:0x192,_0x1f2da3:0x13c,_0x200e92:0x122,_0x5105a1:0xd0,_0x12ed3b:0x28c,_0x2ad5ad:0x2e7,_0x480808:0x2e8,_0xac10ae:0x1ed,_0x42cc2d:0x5eb,_0x286b06:0x28d,_0x4af5ba:0x2dc,_0x174400:0x2f0,_0x338261:0x32b,_0x990934:0x529,_0x4e197e:0x5df,_0x4e0c6b:0x513,_0x368706:0x4c0,_0x416956:0x5a4,_0x33658e:0x571,_0xc56dbc:0x463,_0x360e20:0x5cd,_0x10de20:0x658,_0x55c259:0x63c,_0x17489e:0x589,_0x5b1c8d:0x557,_0x9ead58:0x4a0,_0x1a4c36:0x4d3,_0x323e30:0x47c,_0x18c7c2:0x4fa,_0x55d520:0x194,_0x2114f5:0x24b,_0xba5d23:0x170,_0x2ab5aa:0x233,_0x2630a4:0x2eb,_0x2a6684:0x25f,_0x573318:0x3e6,_0x421c9b:0x5ee,_0x4e9230:0x62f,_0x458202:0x6b3,_0x1dbb06:0x5f1,_0xccb543:0x431,_0x1877d8:0x3cc,_0x51a662:0x2b3,_0x349172:0x3c2,_0x519a61:0x424,_0x43df3b:0x3f5,_0x49284c:0x449,_0x1e63a7:0x6b0,_0x350221:0x5fc,_0x2c0fdc:0x5e5,_0x16ad59:0x700,_0x135005:0x60d,_0x4378a1:0x121,_0x220085:0x22f,_0x274313:0x25e,_0x19be76:0x2fa,_0x5dac6e:0x2d6,_0x54135f:0x1da,_0x53d080:0x219,_0xe2d819:0x135,_0x130ae6:0xee,_0x48a871:0x5bb,_0x574c32:0x55a,_0x3ce8d5:0x52e,_0x5159bd:0x50f,_0x45829b:0x4ea,_0x19f9be:0x59d,_0x55299d:0x731,_0x3c59da:0x5db,_0x5d8a29:0x666,_0x27eace:0x605,_0x596fc3:0x422,_0x3818ff:0x566,_0x54f18d:0x5a7,_0x2f050c:0x21c,_0x2c199a:0xb3,_0x54661b:0x377,_0x4fc4c2:0x2df,_0x123b04:0x261,_0x3062f3:0x349,_0x4e6bf8:0x229,_0xc6da4c:0x37f,_0x164ceb:0x298,_0xce26e5:0x2d7,_0x8cc5bb:0x22f,_0x425272:0x319,_0x39dd57:0x51a,_0xb8d78c:0x516,_0x11b55b:0x559,_0xb087e0:0x2bd,_0x59a3ae:0xab,_0xf8e8a5:0x118,_0x4e3076:0xa6,_0x16b0cf:0x10c,_0x2191e1:0x37,_0x2ee079:0x9b},_0x5f36e6={_0x126384:0x519,_0x3c83ca:0x4c2,_0x54f7e5:0x525,_0x2cc510:0x440,_0x21bf6d:0x5f3,_0x1f8a96:0x5bc,_0x4c9d8a:0x771,_0x4dd053:0x6bc,_0x2313cf:0x5f6,_0x24390d:0x65f,_0xe2596c:0x622,_0x13ed8d:0x524,_0x5e3d82:0x3df,_0x5f7489:0x3fb},_0x265298={_0x5f3021:0x2f4,_0x43c081:0x3ea,_0x2f3492:0x229},_0x2c3c6f={_0x58341e:0x143,_0xb73c10:0xe3,_0x3faa00:0x102,_0x1f2748:0x146,_0x4f4793:0xa9,_0x1cca90:0x249,_0x175b6c:0x25d,_0xaecfe4:0x214,_0x13483c:0x70,_0x270dbb:0x228,_0x95a7f0:0x1f8,_0x49e11b:0x240,_0x1fb615:0x1b4,_0x4c6be7:0x1dc,_0x3bf873:0x1db,_0x5be919:0xe6,_0x249452:0xc0,_0x2647bc:0x82,_0x68502e:0x191,_0x25ed15:0x165,_0x2734f7:0x1df,_0x567d18:0x144,_0x25d89c:0x124,_0x16e703:0x27d,_0x44d9fc:0x163,_0x1a8e46:0x1d8,_0x54ff94:0x193,_0x29f170:0x205,_0x1aee72:0x211,_0x3d247b:0x20b,_0x24d811:0x25c,_0x3ef241:0x183,_0x20ea70:0xb5,_0x34e18c:0x163,_0xa7b480:0xc1,_0x40065e:0x182,_0x5ab6db:0x20c,_0x19ad5c:0x1e3,_0x3ec9df:0x1f2,_0xae89e0:0x180,_0x1c8c30:0x1c3,_0x31a99a:0x287,_0x154090:0x37e,_0x1a2ae4:0x291,_0xcc25ac:0x198,_0x159fbe:0x154,_0x40bff3:0x195,_0x5052e9:0x238,_0x4f270a:0x266,_0x33e3cd:0x1e0,_0x1a52c9:0xc9,_0x5dc7d7:0x4c,_0x520602:0x43,_0x35a19e:0x15a,_0x4ed0e5:0x243,_0x23f8f0:0x190,_0x23e28c:0x1f7,_0xd3be2e:0x164,_0x48a341:0x10a,_0x225cc8:0x28,_0x3630b0:0xbb,_0x59ca6b:0x165,_0x2c7827:0x65,_0x10366e:0x1cc,_0x1e1591:0xe3,_0x48a461:0x31,_0x473fbf:0x1df,_0x27d64d:0x17d,_0x3a2295:0x189,_0x2ad048:0x108,_0x57040c:0x260,_0x4bd7da:0xc9,_0x51a40e:0x1a4,_0x54e978:0x178,_0x172fb1:0xdc,_0x3ab34a:0x28f,_0xb046fb:0x1ec,_0x145f41:0x36e,_0x174971:0x1df,_0x58ccc9:0x119,_0x358419:0x138,_0x29e8d2:0x205,_0x32726b:0x200,_0x2de6f5:0x29a,_0x1aa7c9:0x191,_0x334003:0x28a,_0x3b6628:0x1c7,_0x27b7a1:0x241,_0x4030fd:0x21e,_0x9c3e83:0x109,_0x5c5ecc:0x23c,_0x1a09db:0x26e,_0x4d50c3:0x269},_0x25b43d={_0xba3306:0x76,_0x1512c7:0x11,_0x2896d3:0x16a},_0x4aec81={_0x4b2176:0x198,_0x2d17fb:0x77,_0x2c7fa5:0xa4},_0x5c7015={_0x383b5c:0x2bf,_0x1a8e14:0x2eb,_0x7e316a:0x293,_0x359776:0x70d,_0x22e629:0x6ba,_0x5494cc:0x660,_0x170530:0x232,_0x23b8e3:0x14c,_0x4da83f:0x2b5,_0x2cf444:0x6c4,_0x1d1f1a:0x6b4,_0xa7584:0x1b8,_0x953b8c:0x286,_0x18d7be:0x278,_0x404f01:0x2ab,_0x3cb963:0x2e6,_0x112a45:0x290,_0x5bba4f:0x69f,_0x140094:0x5c9,_0x39cf78:0x6be,_0x78c1b7:0x66c,_0x4e5d4a:0x6a5,_0x178068:0x739,_0x28968c:0x776,_0x2febd0:0x127,_0x13dcea:0x17e,_0x58a91f:0x1c6,_0x395045:0x63,_0x14fa58:0x26e,_0x5e6aa8:0x1a2,_0x3ed4d9:0x287,_0x54725e:0x19c,_0x4e55f7:0x102,_0x390017:0x62c,_0x590a6a:0x573,_0x3ee664:0x53e,_0x1e37d7:0x2d2,_0x24980f:0x1d4,_0x288c9e:0x110,_0x7b752:0x5d7,_0x55faae:0x2d2,_0x365c9a:0x336,_0x3e23bb:0x26e},_0x53de5f={_0x5de79b:0x2a,_0x5c277e:0xf0},_0x1e1b51={_0x256206:0xfb,_0x443e30:0x1b,_0x3e873d:0xaa,_0x1d4370:0x17f,_0x192c37:0x18d,_0x34d924:0x27e,_0x5e8d83:0x2a6,_0x4b4697:0x206,_0x6243a1:0x5ee,_0x568346:0x68f,_0x38e18e:0x697,_0x434fe6:0x690,_0x31c039:0x23e,_0x3fde45:0x2ae,_0x5dd5d5:0x17b,_0x151dcd:0x637,_0x2d0c4f:0x658,_0x29223a:0x63b,_0x4ccd62:0x6c1,_0x1ab43f:0x67f,_0x46888e:0x638,_0xaa79d9:0x7cd,_0x48d070:0x7d9,_0x17996f:0x724,_0xc63fbf:0x2b1,_0x252ab2:0x262,_0xc6f6d:0x346,_0xd9d307:0x2b3},_0x4c8bfe={_0x2e653b:0x434},_0x2dd9b8={'eGseH':_0x47ab1c(0x597,_0xc38374._0x1d6ec1,_0xc38374._0x21697b,_0xc38374._0x361a0b),'qvLXR':_0x1b0d5a(0x237,_0xc38374._0x6ae296,_0xc38374._0x4e92df,0xb7),'FskNJ':function(_0x3e980d,_0x59dd3d){return _0x3e980d!==_0x59dd3d;},'XfAhc':_0x1b0d5a(_0xc38374._0x439584,_0xc38374._0x3048b1,_0xc38374._0x173e57,_0xc38374._0x439584),'RXmiF':_0x47ab1c(_0xc38374._0x1c82b7,_0xc38374._0x1dcf09,_0xc38374._0x3529d3,_0xc38374._0x3baf38),'AjYlQ':function(_0x490ee7,_0x4d4be9){return _0x490ee7===_0x4d4be9;},'qpZcK':_0x47ab1c(_0xc38374._0x57c228,_0xc38374._0x227dfb,0x4f0,0x3ef),'VjMvO':_0x1b0d5a(_0xc38374._0x2b789d,_0xc38374._0x2a39f5,_0xc38374._0x141249,_0xc38374._0x29959b),'rVBzd':function(_0x36f257,_0x13817a){return _0x36f257!==_0x13817a;},'BqwnN':'FEjxG','jPymr':_0x1b0d5a(_0xc38374._0x491b59,_0xc38374._0x395c33,_0xc38374._0x6fbc29,_0xc38374._0x35a27b),'tOrAd':function(_0x1a1154,_0x31e68f){return _0x1a1154===_0x31e68f;},'zzZzX':_0x1b0d5a(0xf3,_0xc38374._0x439584,_0xc38374._0x1c07eb,_0xc38374._0x58b85e),'Didhk':_0x47ab1c(0x4c8,_0xc38374._0x23fb22,_0xc38374._0x227be9,_0xc38374._0x3e8ee6),'lxGFp':function(_0x2130dd,_0x41c238){return _0x2130dd(_0x41c238);},'nrRYj':function(_0xa95570,_0x47b42e){return _0xa95570===_0x47b42e;},'KpoaH':'tndOL','GmiwC':_0x47ab1c(0x6c9,_0xc38374._0x56616a,0x629,_0xc38374._0x348830),'eRfeQ':_0x1b0d5a(_0xc38374._0x4d3343,0x17f,0x17e,_0xc38374._0x53460f),'VaiVd':_0x47ab1c(0x6b4,0x54b,_0xc38374._0x5778c4,_0xc38374._0x3b32e5),'CvGmO':_0x1b0d5a(_0xc38374._0x149078,_0xc38374._0x554c93,_0xc38374._0x1509c8,0xbe),'bXEcE':function(_0x52d55f,_0x3dee0d){return _0x52d55f===_0x3dee0d;},'xKyUs':_0x1b0d5a(_0xc38374._0x91b763,_0xc38374._0x19a087,_0xc38374._0x556a96,_0xc38374._0x1f345e),'uiWBa':_0x1b0d5a(_0xc38374._0x1c3220,_0xc38374._0x5332a1,0x176,_0xc38374._0x5cdce9),'ivKqE':_0x1b0d5a(_0xc38374._0x696fa7,0x249,0x1e2,_0xc38374._0x213526),'aMjhS':_0x47ab1c(0x555,_0xc38374._0x532291,_0xc38374._0x37f0fc,_0xc38374._0x27f885),'lxeQP':'auto','IMsJo':'none','rXVCp':'tls','tirgr':_0x1b0d5a(0x2a3,0x30b,0x3e6,_0xc38374._0x9d98e0),'yzVoa':function(_0x4bd2e1,_0x452953){return _0x4bd2e1!==_0x452953;},'sGAxj':_0x47ab1c(_0xc38374._0x3f0301,_0xc38374._0x4178eb,_0xc38374._0x57a884,_0xc38374._0x180e47),'NRMQW':function(_0x1c2adf,_0x4d1310,_0x42df3a){return _0x1c2adf(_0x4d1310,_0x42df3a);},'kjPYL':function(_0x1bc6de,_0x5e23cc){return _0x1bc6de&&_0x5e23cc;},'QKKuh':_0x1b0d5a(0xf9,_0xc38374._0x1a4607,_0xc38374._0x395c33,_0xc38374._0x5ffe36),'hjild':function(_0x4898cd,_0x315e83){return _0x4898cd(_0x315e83);},'kLsJx':'SUiFq','gDngd':'DDRwb','nvCie':function(_0x2804a7,_0x576c7f){return _0x2804a7>_0x576c7f;},'jzBly':_0x47ab1c(0x725,0x6c9,0x638,_0xc38374._0x156a3e),'cECvF':_0x47ab1c(_0xc38374._0x3fc3d8,0x499,0x4e3,_0xc38374._0x5ab151),'GNowO':'aTkWC','OYlOg':_0x47ab1c(_0xc38374._0x592eb5,_0xc38374._0x1f9ecf,_0xc38374._0x4fea86,_0xc38374._0x20fa57),'MHtVc':function(_0x29b5c5){return _0x29b5c5();},'zzvvY':function(_0x1348fb,_0xca1ded){return _0x1348fb===_0xca1ded;},'rBSyl':_0x47ab1c(_0xc38374._0x32f12a,_0xc38374._0x3fa94c,_0xc38374._0x281bff,_0xc38374._0x4976d1),'eOmao':_0x1b0d5a(0x1db,0x1bd,0xb2,_0xc38374._0x58657e),'Fitzc':function(_0x4a08be){return _0x4a08be();},'ANuVX':_0x47ab1c(_0xc38374._0x207369,_0xc38374._0x26fedd,_0xc38374._0x2377a2,_0xc38374._0x2ef8ad),'eZhgs':_0x1b0d5a(_0xc38374._0x4e29b0,_0xc38374._0x15435d,_0xc38374._0x500771,0x307)};let _0x1c3817;if(_0x2dd9b8['kjPYL'](ARGO_AUTH,ARGO_DOMAIN))_0x1c3817=ARGO_DOMAIN,console[_0x1b0d5a(_0xc38374._0x1f2da3,_0xc38374._0x200e92,0x20e,_0xc38374._0x5105a1)](_0x2dd9b8[_0x1b0d5a(0x392,_0xc38374._0x12ed3b,0x1a5,0x295)],_0x1c3817),await _0x2dd9b8[_0x1b0d5a(_0xc38374._0x2ad5ad,_0xc38374._0x480808,0x24e,_0xc38374._0xac10ae)](_0xd91e5f,_0x1c3817);else try{if(_0x2dd9b8['kLsJx']!==_0x2dd9b8[_0x47ab1c(0x574,_0xc38374._0x42cc2d,0x528,0x4fb)]){const _0x1e8f4c=fs[_0x1b0d5a(_0xc38374._0x286b06,_0xc38374._0x4af5ba,_0xc38374._0x174400,_0xc38374._0x338261)](path[_0x47ab1c(_0xc38374._0x990934,_0xc38374._0x4e197e,0x628,_0xc38374._0x4e0c6b)](FILE_PATH,_0x47ab1c(_0xc38374._0x368706,_0xc38374._0x416956,_0xc38374._0x33658e,_0xc38374._0xc56dbc)),'utf-8'),_0x482762=_0x1e8f4c[_0x47ab1c(_0xc38374._0x2ef8ad,0x5c6,_0xc38374._0x360e20,0x4db)]('\x0a'),_0x5984b3=[];_0x482762[_0x47ab1c(_0xc38374._0x10de20,_0xc38374._0x55c259,0x604,_0xc38374._0x17489e)](_0x5f5d58=>{const _0x4f8102={_0x579cfc:0x52b,_0x16034f:0x5a3,_0x2638f7:0x64b,_0x50d5dd:0x48f,_0x4b8790:0x57b,_0x230415:0x556,_0x4d2b2:0x4f1,_0x328db5:0x623,_0x46a874:0x561,_0x2f69a0:0x48b,_0x273df0:0x55a},_0x3a91eb={_0x16556a:0x205,_0x3b1794:0x133},_0xbad218={_0x50b024:0x1e,_0x3a44cf:0x57};function _0x52027d(_0x29b67b,_0x4ef634,_0x172ace,_0x3ec100){return _0x1b0d5a(_0x172ace,_0x3ec100-_0x4c8bfe._0x2e653b,_0x172ace-0xc9,_0x3ec100-0xc2);}const _0x1af491={'JyYZd':function(_0xfa40de,_0x1c7193,_0x5beeaf){return _0xfa40de(_0x1c7193,_0x5beeaf);},'iVCvc':_0x2dd9b8[_0x3c4a60(_0x1e1b51._0x256206,_0x1e1b51._0x443e30,_0x1e1b51._0x3e873d,_0x1e1b51._0x1d4370)],'yQqUS':_0x2dd9b8['qvLXR']};function _0x3c4a60(_0x383c77,_0x56f7bf,_0x2ae53a,_0x36e4b8){return _0x1b0d5a(_0x36e4b8,_0x383c77- -_0xbad218._0x50b024,_0x2ae53a-_0xbad218._0x3a44cf,_0x36e4b8-0x1d);}if(_0x2dd9b8[_0x3c4a60(_0x1e1b51._0x192c37,_0x1e1b51._0x34d924,_0x1e1b51._0x5e8d83,_0x1e1b51._0x4b4697)](_0x52027d(_0x1e1b51._0x6243a1,_0x1e1b51._0x568346,_0x1e1b51._0x38e18e,_0x1e1b51._0x434fe6),_0x3c4a60(_0x1e1b51._0x31c039,_0x1e1b51._0x3fde45,0x2d8,_0x1e1b51._0x5dd5d5))){const _0x436049={_0x5df5be:0x3c9,_0xfb76ac:0x44b,_0x4543c9:0x373,_0x42a12a:0x30a,_0x33808e:0x3a0,_0x34bc4c:0x366,_0x1042b8:0x296,_0x29659e:0x298},_0x5dfdf4={_0x25576c:0x10c,_0x6b13d7:0x1cd},_0x3faeea={'iVVof':function(_0x536ea7,_0x502cae,_0x1bbc16){const _0x1f5634={_0xc581e2:0x14d,_0x542a7b:0x1bf,_0x51ff0f:0x6b2};function _0x5e6617(_0x1e7c82,_0x4e6987,_0x55dd67,_0x3c0fbd){return _0x52027d(_0x1e7c82-_0x1f5634._0xc581e2,_0x4e6987-_0x1f5634._0x542a7b,_0x1e7c82,_0x55dd67- -_0x1f5634._0x51ff0f);}return _0x1af491[_0x5e6617(-_0x3a91eb._0x16556a,-0x1da,-_0x3a91eb._0x3b1794,-0x14e)](_0x536ea7,_0x502cae,_0x1bbc16);}};_0x348bad[_0x52027d(_0x1e1b51._0x151dcd,_0x1e1b51._0x2d0c4f,0x6d5,_0x1e1b51._0x29223a)]['pipe'](_0x31ef5e),_0x53d72a['on'](_0x1af491[_0x52027d(0x581,_0x1e1b51._0x4ccd62,0x69c,_0x1e1b51._0x1ab43f)],()=>{const _0x57bd8b={_0x57bca1:0x27},_0x5e1c36={_0x2dba20:0x39f,_0x2e6215:0x185};_0x5e399d[_0x254a27(_0x4f8102._0x579cfc,_0x4f8102._0x16034f,_0x4f8102._0x2638f7,_0x4f8102._0x50d5dd)]();function _0x254a27(_0x456b12,_0x57ff6a,_0xf9025e,_0x13c558){return _0x3c4a60(_0x57ff6a-_0x5e1c36._0x2dba20,_0x57ff6a-0x147,_0xf9025e-_0x5e1c36._0x2e6215,_0x13c558);}function _0x2bba73(_0x3053ff,_0x11d4ae,_0x12e7f3,_0x1a49f7){return _0x3c4a60(_0x1a49f7- -0x23,_0x11d4ae-0x1c6,_0x12e7f3-_0x57bd8b._0x57bca1,_0x3053ff);}_0xef8bbd['log'](_0x254a27(0x5e7,_0x4f8102._0x4b8790,_0x4f8102._0x230415,_0x4f8102._0x4d2b2)+_0x29e2dd['basename'](_0x23284d)+_0x254a27(_0x4f8102._0x328db5,_0x4f8102._0x46a874,_0x4f8102._0x2f69a0,_0x4f8102._0x273df0)),_0x3faeea['iVVof'](_0x422b01,null,_0x174358);}),_0x2ff3dd['on'](_0x1af491[_0x52027d(_0x1e1b51._0x46888e,_0x1e1b51._0xaa79d9,_0x1e1b51._0x48d070,_0x1e1b51._0x17996f)],_0x425bbc=>{const _0x1cdfb6={_0x35e404:0x13a,_0x34f118:0x1bc};_0x100f41['unlink'](_0x5676b6,()=>{});const _0x42df83='Download\x20'+_0x33006f['basename'](_0x1a33ad)+_0x34bce5(_0x436049._0x5df5be,_0x436049._0xfb76ac,_0x436049._0x4543c9,_0x436049._0x42a12a)+_0x425bbc['message'];function _0x34bce5(_0x1b39e5,_0x51cd50,_0x430e26,_0x3392e4){return _0x3c4a60(_0x430e26-_0x5dfdf4._0x25576c,_0x51cd50-0x1ec,_0x430e26-_0x5dfdf4._0x6b13d7,_0x3392e4);}function _0x122806(_0x1ec818,_0x12fb80,_0x21333f,_0xc8f654){return _0x3c4a60(_0x1ec818-0x75,_0x12fb80-_0x1cdfb6._0x35e404,_0x21333f-_0x1cdfb6._0x34f118,_0x21333f);}_0x713e08[_0x34bce5(_0x436049._0x33808e,_0x436049._0x34bc4c,_0x436049._0x1042b8,_0x436049._0x29659e)](_0x42df83),_0x3e901c(_0x42df83);});}else{const _0x1b4948=_0x5f5d58['match'](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);if(_0x1b4948){const _0x2b881e=_0x1b4948[-0x1f27+-0x20bd+0x3fe5];_0x5984b3[_0x3c4a60(_0x1e1b51._0xc63fbf,_0x1e1b51._0x252ab2,_0x1e1b51._0xc6f6d,_0x1e1b51._0xd9d307)](_0x2b881e);}}});if(_0x2dd9b8['nvCie'](_0x5984b3['length'],-0x83f*0x1+0x1b58+-0x1319))_0x1c3817=_0x5984b3[0xca*-0x24+0x20ef*-0x1+-0x29*-0x17f],console[_0x47ab1c(_0xc38374._0x5b1c8d,0x4b7,_0xc38374._0x9ead58,0x3e6)](_0x2dd9b8[_0x47ab1c(_0xc38374._0x1a4c36,_0xc38374._0x323e30,_0xc38374._0x18c7c2,0x48a)],_0x1c3817),await _0x2dd9b8['lxGFp'](_0xd91e5f,_0x1c3817);else{if(_0x2dd9b8[_0x1b0d5a(_0xc38374._0x55d520,0x204,_0xc38374._0x2114f5,_0xc38374._0xba5d23)](_0x2dd9b8['cECvF'],_0x2dd9b8[_0x1b0d5a(_0xc38374._0x2ab5aa,_0xc38374._0x2630a4,_0xc38374._0x2a6684,_0xc38374._0x573318)])){const _0x550cc8={};_0x550cc8[_0x47ab1c(_0xc38374._0x421c9b,0x654,_0xc38374._0x4e9230,_0xc38374._0x458202)]=_0x2cb242,_0x550cc8['fileUrl']=_0x2dd9b8['XfAhc'];const _0x4f6000={};_0x4f6000['fileName']=_0x203bcb,_0x4f6000[_0x47ab1c(_0xc38374._0x1dbb06,0x5dc,0x545,_0xc38374._0xccb543)]=_0x2dd9b8[_0x1b0d5a(_0xc38374._0x1877d8,_0xc38374._0x51a662,0x283,_0xc38374._0x349172)],_0x5de462=[_0x550cc8,_0x4f6000];}else{console[_0x47ab1c(_0xc38374._0x519a61,_0xc38374._0x43df3b,_0xc38374._0x9ead58,_0xc38374._0x49284c)](_0x2dd9b8[_0x47ab1c(_0xc38374._0x1e63a7,_0xc38374._0x350221,_0xc38374._0x2c0fdc,_0xc38374._0x16ad59)]),fs[_0x47ab1c(0x689,0x664,_0xc38374._0x135005,_0xc38374._0x56616a)](path['join'](FILE_PATH,'boot.log'));async function _0xe1a240(){const _0x517638={_0x2fb231:0xb4,_0x2f0028:0x33b,_0x35cf87:0x1bc};function _0x308a3f(_0xf22c92,_0x65c090,_0x556751,_0x21a593){return _0x47ab1c(_0xf22c92-_0x53de5f._0x5de79b,_0x65c090,_0xf22c92-0x112,_0x21a593-_0x53de5f._0x5c277e);}function _0x38ead9(_0x4a458f,_0x5b52e6,_0x140aa7,_0x3639f8){return _0x47ab1c(_0x4a458f-_0x517638._0x2fb231,_0x3639f8,_0x5b52e6- -_0x517638._0x2f0028,_0x3639f8-_0x517638._0x35cf87);}try{if(_0x2dd9b8['AjYlQ'](_0x2dd9b8[_0x38ead9(0x233,_0x5c7015._0x383b5c,_0x5c7015._0x1a8e14,_0x5c7015._0x7e316a)],_0x308a3f(0x602,_0x5c7015._0x359776,_0x5c7015._0x22e629,_0x5c7015._0x5494cc))){if(_0x2dd9b8['AjYlQ'](process[_0x38ead9(0x34c,_0x5c7015._0x170530,_0x5c7015._0x23b8e3,_0x5c7015._0x4da83f)],_0x2dd9b8[_0x308a3f(0x631,_0x5c7015._0x2cf444,0x711,_0x5c7015._0x1d1f1a)])){if(_0x2dd9b8[_0x38ead9(_0x5c7015._0xa7584,_0x5c7015._0x953b8c,0x1b3,0x2e8)](_0x2dd9b8['BqwnN'],_0x2dd9b8[_0x38ead9(_0x5c7015._0x18d7be,_0x5c7015._0x404f01,_0x5c7015._0x3cb963,_0x5c7015._0x112a45)]))await exec('taskkill\x20/f\x20/im\x20'+botName+_0x308a3f(_0x5c7015._0x5bba4f,_0x5c7015._0x140094,_0x5c7015._0x39cf78,_0x5c7015._0x78c1b7));else{const _0x2171fe=_0x1c4545?function(){if(_0x44cde3){const _0x84ad02=_0x4712e9['apply'](_0x32853e,arguments);return _0x229f0a=null,_0x84ad02;}}:function(){};return _0x1d8dc2=![],_0x2171fe;}}else _0x2dd9b8['tOrAd'](_0x2dd9b8[_0x308a3f(_0x5c7015._0x4e5d4a,_0x5c7015._0x178068,_0x5c7015._0x28968c,0x599)],_0x2dd9b8[_0x38ead9(_0x5c7015._0x2febd0,_0x5c7015._0x13dcea,_0x5c7015._0x58a91f,_0x5c7015._0x395045)])?_0x1d35d9=_0x38ead9(0x249,_0x5c7015._0x14fa58,_0x5c7015._0x5e6aa8,_0x5c7015._0x3ed4d9)+_0xbe6083+'/tunnel.yml\x20run':await _0x2dd9b8['lxGFp'](exec,_0x38ead9(_0x5c7015._0x54725e,0x1da,0x2cb,_0x5c7015._0x4e55f7)+botName[_0x308a3f(_0x5c7015._0x390017,_0x5c7015._0x590a6a,0x6b4,_0x5c7015._0x3ee664)](0x1813*0x1+0x1*0x453+-0xa*0x2d7)+']'+botName['substring'](-0x1*-0x2105+0x1a05+-0x3b09)+'\x22\x20>\x20/dev/null\x202>&1');}else{const _0x53d5ec=_0x4cfacd[_0x38ead9(_0x5c7015._0x1e37d7,_0x5c7015._0x24980f,0x170,_0x5c7015._0x288c9e)](_0x319908);_0x53d5ec[_0x308a3f(0x6ef,_0x5c7015._0x7b752,0x7be,0x71f)]()&&_0x234efa[_0x38ead9(0x29a,_0x5c7015._0x55faae,_0x5c7015._0x365c9a,_0x5c7015._0x3e23bb)](_0x3a2bb8);}}catch(_0x3e8266){}}_0x2dd9b8[_0x1b0d5a(0xa0,0x113,_0xc38374._0x4378a1,0xed)](_0xe1a240),await new Promise(_0x2acb14=>setTimeout(_0x2acb14,-0x7a*-0x18+-0x2d*-0xc8+-0x22e0));const _0x10e45e=_0x1b0d5a(0x2d3,_0xc38374._0x220085,_0xc38374._0x274313,_0xc38374._0x19be76)+FILE_PATH+'/boot.log\x20--loglevel\x20info\x20--url\x20http://localhost:'+ARGO_PORT;try{_0x2dd9b8[_0x1b0d5a(_0xc38374._0x5dac6e,_0xc38374._0x54135f,0xcc,_0xc38374._0x53d080)](_0x2dd9b8[_0x1b0d5a(0x19c,_0xc38374._0xe2d819,_0xc38374._0x130ae6,0x1cc)],_0x2dd9b8[_0x47ab1c(_0xc38374._0x48a871,0x495,_0xc38374._0x574c32,_0xc38374._0x3ce8d5)])?_0x24c9c8?_0x2dd9b8['lxGFp'](_0x25ebd0,_0x3f9f70):_0x2dd9b8[_0x47ab1c(_0xc38374._0x5159bd,_0xc38374._0x45829b,0x52c,_0xc38374._0x19f9be)](_0x1460ce,_0x5effa3):(await _0x2dd9b8[_0x47ab1c(_0xc38374._0x55299d,_0xc38374._0x3c59da,_0xc38374._0x5d8a29,_0xc38374._0x27eace)](exec,_0x47ab1c(_0xc38374._0x596fc3,_0xc38374._0x3818ff,0x4ac,_0xc38374._0x54f18d)+botPath+'\x20'+_0x10e45e+'\x20>/dev/null\x202>&1\x20&'),console[_0x1b0d5a(_0xc38374._0x2f050c,_0xc38374._0x200e92,0x75,_0xc38374._0x2c199a)](botName+'\x20is\x20running'),await new Promise(_0x3ac79b=>setTimeout(_0x3ac79b,-0x1119+0x1c8d*-0x1+0x395e)),await _0x2dd9b8['Fitzc'](extractDomains));}catch(_0x308814){_0x2dd9b8[_0x1b0d5a(_0xc38374._0x54661b,_0xc38374._0x4fc4c2,_0xc38374._0x123b04,_0xc38374._0x3062f3)]!==_0x2dd9b8['eZhgs']?console[_0x1b0d5a(0x10a,_0xc38374._0x6ae296,0x1fd,0x17a)](_0x1b0d5a(_0xc38374._0x4e6bf8,0x30a,_0xc38374._0xc6da4c,_0xc38374._0x164ceb)+_0x308814):_0xac406f=_0x536a0d;}}}}else _0x499b1a=_0x1b0d5a(_0xc38374._0xce26e5,_0xc38374._0x8cc5bb,_0xc38374._0x425272,0x205)+_0x2abe61+_0x47ab1c(0x4d7,_0xc38374._0x39dd57,_0xc38374._0xb8d78c,_0xc38374._0x11b55b)+_0x4215ca;}catch(_0xc1dc30){console[_0x1b0d5a(_0xc38374._0xb087e0,_0xc38374._0x6ae296,_0xc38374._0x59a3ae,_0xc38374._0xf8e8a5)](_0x1b0d5a(_0xc38374._0x4e3076,_0xc38374._0x16b0cf,_0xc38374._0x2191e1,_0xc38374._0x2ee079),_0xc1dc30);}function _0x1b0d5a(_0x2adc81,_0xebde3b,_0x3cf1b7,_0x4a563b){return _0x582585(_0xebde3b- -_0x4aec81._0x4b2176,_0x2adc81,_0x3cf1b7-_0x4aec81._0x2d17fb,_0x4a563b-_0x4aec81._0x2c7fa5);}async function _0x2672ef(){const _0x4f0ca6={_0x506002:0x28,_0x44f4b5:0xa4};try{if(_0x2dd9b8[_0x54b872(0x1dc,_0x2c3c6f._0x58341e,_0x2c3c6f._0xb73c10,_0x2c3c6f._0x3faa00)](_0x2dd9b8[_0x187e6a(0x36,_0x2c3c6f._0x1f2748,_0x2c3c6f._0x4f4793,0x141)],_0x2dd9b8[_0x187e6a(0x33d,_0x2c3c6f._0x1cca90,_0x2c3c6f._0x175b6c,_0x2c3c6f._0xaecfe4)])){if(_0x37d6a0){const _0xc46714=_0x2dbc49[_0x187e6a(_0x2c3c6f._0x13483c,_0x2c3c6f._0x270dbb,0x170,_0x2c3c6f._0x95a7f0)](_0x5463ed,arguments);return _0x459e2b=null,_0xc46714;}}else{const _0x283370=await axios[_0x54b872(0x190,_0x2c3c6f._0x49e11b,_0x2c3c6f._0x1fb615,_0x2c3c6f._0x4c6be7)](_0x2dd9b8['eRfeQ'],{'headers':{'User-Agent':_0x2dd9b8[_0x54b872(_0x2c3c6f._0x3bf873,0x293,_0x2c3c6f._0x5be919,_0x2c3c6f._0x249452)],'timeout':0xbb8}});if(_0x283370[_0x187e6a(_0x2c3c6f._0x2647bc,0x159,_0x2c3c6f._0x68502e,_0x2c3c6f._0x25ed15)]&&_0x283370[_0x54b872(_0x2c3c6f._0x2734f7,_0x2c3c6f._0x567d18,_0x2c3c6f._0x25d89c,_0x2c3c6f._0x16e703)][_0x54b872(_0x2c3c6f._0x44d9fc,_0x2c3c6f._0x1a8e46,_0x2c3c6f._0x54ff94,_0x2c3c6f._0x29f170)]&&_0x283370['data'][_0x54b872(_0x2c3c6f._0x1aee72,0x25b,_0x2c3c6f._0x3d247b,0x296)])return(_0x283370[_0x187e6a(_0x2c3c6f._0x24d811,_0x2c3c6f._0x3ef241,0x191,_0x2c3c6f._0x20ea70)][_0x54b872(_0x2c3c6f._0x34e18c,_0x2c3c6f._0xa7b480,_0x2c3c6f._0x40065e,_0x2c3c6f._0x5ab6db)]+'-'+_0x283370[_0x187e6a(_0x2c3c6f._0x19ad5c,0xc8,_0x2c3c6f._0x68502e,_0x2c3c6f._0x3ec9df)][_0x187e6a(0x1ce,_0x2c3c6f._0xae89e0,_0x2c3c6f._0x1c8c30,_0x2c3c6f._0x31a99a)])[_0x187e6a(0x34a,_0x2c3c6f._0x154090,_0x2c3c6f._0x1a2ae4,0x253)](/\s+/g,'_');}}catch(_0x38765){try{const _0x84492f={};_0x84492f[_0x54b872(_0x2c3c6f._0xcc25ac,_0x2c3c6f._0x159fbe,_0x2c3c6f._0x40bff3,_0x2c3c6f._0x5052e9)]=_0x54b872(_0x2c3c6f._0x4f270a,0x1bb,_0x2c3c6f._0x33e3cd,0x28e),_0x84492f[_0x54b872(_0x2c3c6f._0x1a52c9,0x1ca,0x68,_0x2c3c6f._0x5dc7d7)]=0xbb8;const _0x282cb5={};_0x282cb5[_0x187e6a(_0x2c3c6f._0x520602,0x1b0,_0x2c3c6f._0x35a19e,_0x2c3c6f._0x4ed0e5)]=_0x84492f;const _0x2e17a9=await axios[_0x54b872(_0x2c3c6f._0x23f8f0,_0x2c3c6f._0x23e28c,_0x2c3c6f._0xd3be2e,0x1ec)](_0x2dd9b8[_0x187e6a(_0x2c3c6f._0x48a341,_0x2c3c6f._0x225cc8,_0x2c3c6f._0x3630b0,_0x2c3c6f._0x59ca6b)],_0x282cb5);if(_0x2e17a9['data']&&_0x2dd9b8[_0x187e6a(_0x2c3c6f._0x2c7827,_0x2c3c6f._0x10366e,_0x2c3c6f._0x1e1591,-_0x2c3c6f._0x48a461)](_0x2e17a9[_0x54b872(_0x2c3c6f._0x473fbf,0x193,0x2df,_0x2c3c6f._0x27d64d)][_0x54b872(_0x2c3c6f._0x3a2295,_0x2c3c6f._0x2ad048,_0x2c3c6f._0x57040c,_0x2c3c6f._0x4bd7da)],_0x2dd9b8[_0x187e6a(_0x2c3c6f._0x51a40e,_0x2c3c6f._0x54e978,0xa7,_0x2c3c6f._0x172fb1)])&&_0x2e17a9['data'][_0x54b872(_0x2c3c6f._0x3ab34a,_0x2c3c6f._0xb046fb,0x342,_0x2c3c6f._0x145f41)]&&_0x2e17a9[_0x54b872(_0x2c3c6f._0x174971,0x2b2,_0x2c3c6f._0x58ccc9,0x274)][_0x187e6a(_0x2c3c6f._0x358419,0xb6,_0x2c3c6f._0x59ca6b,_0x2c3c6f._0x29e8d2)])return(_0x2e17a9[_0x187e6a(_0x2c3c6f._0x32726b,_0x2c3c6f._0x2de6f5,_0x2c3c6f._0x1aa7c9,0x86)][_0x187e6a(_0x2c3c6f._0x334003,_0x2c3c6f._0x3b6628,_0x2c3c6f._0x27b7a1,_0x2c3c6f._0x4030fd)]+'-'+_0x2e17a9['data'][_0x187e6a(_0x2c3c6f._0x9c3e83,_0x2c3c6f._0x5c5ecc,_0x2c3c6f._0x25ed15,_0x2c3c6f._0x1a09db)])['replace'](/\s+/g,'_');}catch(_0x157330){}}function _0x54b872(_0x586415,_0x1a7cae,_0x15c9c6,_0x5d0c35){return _0x1b0d5a(_0x15c9c6,_0x586415- -_0x4f0ca6._0x506002,_0x15c9c6-_0x4f0ca6._0x44f4b5,_0x5d0c35-0x87);}function _0x187e6a(_0x45ee94,_0x3b2488,_0x28f329,_0x2b3374){return _0x1b0d5a(_0x45ee94,_0x28f329- -_0x25b43d._0xba3306,_0x28f329-_0x25b43d._0x1512c7,_0x2b3374-_0x25b43d._0x2896d3);}return _0x2dd9b8[_0x187e6a(_0x2c3c6f._0x4d50c3,0x1f3,0x29f,0x387)];}function _0x47ab1c(_0x4fe1d3,_0x5eed15,_0x4c1a38,_0x18cf86){return _0x582585(_0x4c1a38-0x1e6,_0x5eed15,_0x4c1a38-0x15e,_0x18cf86-0xc8);}async function _0xd91e5f(_0x3e7ab5){const _0x16e34b={_0x4d7b56:0x1d9,_0x3afd33:0xe9,_0x883344:0x136,_0xe3b7a:0x1bd,_0xa8799f:0x10d,_0x5bdcc2:0x1a9,_0x37cf2c:0x246,_0x4c25d6:0x1ac,_0x13c570:0x144,_0x39d8d9:0x260,_0x4123b1:0x25f,_0xbf0e51:0x165,_0xff3053:0x9b,_0xa88c93:0x15a,_0x22a819:0x6f,_0x1f0c9e:0xf,_0x31cea2:0xb,_0x119a92:0x3d,_0x5ea01f:0x25,_0x5c7e2a:0xb3,_0x4ff646:0x50,_0x505e13:0xf1,_0x1c779b:0xd9,_0x4847fe:0x183,_0x127d57:0x27,_0x19006d:0x77,_0x5a7082:0xcd},_0x68581b={_0x57e43f:0x2fb,_0x17f1b4:0x2d1,_0x25514c:0x14e,_0x5ca58e:0x106,_0x50b6a0:0x1d9,_0x21c7b3:0xe1,_0x3069cc:0x1b4,_0xd84344:0x285,_0x5eb5f6:0x179,_0x4d44ae:0x204,_0x588dd8:0xf9,_0x42cbdf:0x10f,_0x308d32:0x258,_0x1015c9:0x7c5,_0x1da7f5:0x731,_0x6eadfd:0x74b,_0x4e6c6c:0x648,_0x534bae:0x619,_0x3ca2d1:0x6e0,_0x2916d3:0x7aa,_0x4bc8d1:0x575,_0x4a6a51:0x708,_0xe8b7be:0x6ce,_0x35f41e:0x6a3,_0x22871d:0x5cd,_0x38b651:0x568,_0x16267b:0x6bb,_0x1534bf:0x5c7,_0x2a3017:0x640,_0x3e4dd6:0x23d,_0x2ec3fb:0x1bd,_0x1dfd7c:0x16d,_0x3f0f6c:0x63d,_0x4474b3:0x714,_0x4d861e:0x687,_0x30f890:0x6b8,_0x11c0bd:0x721,_0x297701:0x749,_0x28299d:0x6fb,_0x6efd05:0x1ed,_0x3b20b9:0x19a,_0x49cacb:0x120,_0x36a7ea:0x19,_0x5c7e68:0x7a,_0x1887be:0xff,_0x44bd1e:0x1ae,_0x3b602f:0x707,_0x1049e7:0x62f,_0x3b75a9:0x72c,_0x42e44a:0x211,_0x40810b:0x2b1,_0x4392b0:0x17c,_0x2acf33:0x12c,_0x5a7b87:0xda,_0x2ef5f6:0x1aa,_0x350747:0x30,_0x1b78d3:0x170,_0x2238ff:0xe0,_0x136b04:0x167,_0x47219f:0x174,_0x4ed009:0xd1,_0x29476a:0xde,_0x3590f0:0x189,_0x166132:0x2e5,_0x18aaa5:0x239,_0x3c8cf3:0x4fa,_0x48ea36:0x515,_0x2ec22b:0x5d0,_0x4d86a2:0x6de,_0x59b2ae:0xfd,_0x3556d4:0x13c,_0x5d68e3:0x154,_0x1c74e3:0xeb,_0x13a9ca:0x143,_0x38ba4b:0x165,_0x5f7927:0x226,_0x70d31:0x63,_0x1cfa71:0x61a,_0xbecfff:0x5a1,_0x7af9c5:0x4fa,_0x3ac164:0x150,_0x388ee6:0xd4,_0x2d90c6:0x4b6,_0x3b7d11:0x5b2,_0x17b6dd:0x5ad,_0x340e43:0x7b3,_0x3a8572:0x74c,_0x10eb1d:0x73d,_0x53ddb3:0xed,_0x86cfe:0xb0,_0x453e1d:0x16},_0x162600={_0x4b58e6:0x55e},_0x131b8b={_0xb34e:0x1bf,_0x2bbe3f:0x102,_0x20706f:0xc4},_0x1db721={_0xb664a4:0x17f,_0x399a54:0xf9},_0x2bc120={_0x1f3843:0x489,_0x2606d1:0x51e,_0x2c8c30:0x44c},_0x19dfc2={'PohRO':_0x17c014(0x584,_0x5f36e6._0x126384,_0x5f36e6._0x3c83ca,_0x5f36e6._0x54f7e5),'zQYxc':_0x2dd9b8[_0x17c014(_0x5f36e6._0x2cc510,_0x5f36e6._0x21bf6d,0x489,0x529)],'QkiaB':_0x2dd9b8[_0x5510ac(_0x5f36e6._0x1f8a96,_0x5f36e6._0x4c9d8a,_0x5f36e6._0x4dd053,_0x5f36e6._0x2313cf)],'qDemw':_0x2dd9b8[_0x5510ac(0x5df,_0x5f36e6._0x24390d,_0x5f36e6._0xe2596c,_0x5f36e6._0x13ed8d)],'shKTX':_0x2dd9b8[_0x17c014(_0x5f36e6._0x5e3d82,_0x5f36e6._0x5f7489,0x44d,0x48e)],'fCwUk':_0x2dd9b8['rXVCp'],'obzKV':_0x2dd9b8['tirgr'],'ODNkd':function(_0xa644d4,_0x1a83c5){const _0x25947c={_0x1ee06e:0x17e,_0x4adf2c:0x1be};function _0x21f417(_0x14b92b,_0x3f8c92,_0x1795f8,_0x1153c3){return _0x17c014(_0x1795f8,_0x3f8c92-_0x25947c._0x1ee06e,_0x1795f8-_0x25947c._0x4adf2c,_0x3f8c92- -0x116);}return _0x2dd9b8[_0x21f417(0x385,_0x265298._0x5f3021,_0x265298._0x43c081,_0x265298._0x2f3492)](_0xa644d4,_0x1a83c5);},'iJIUS':_0x2dd9b8['sGAxj'],'PcbVU':function(_0xffada7,_0x15cf69,_0x5586ea){const _0x56d3f2={_0x4d3b6d:0x126,_0x7909d9:0x10a};function _0x48c5a5(_0x39bb5c,_0x13c578,_0x3ca931,_0xe2e044){return _0x17c014(_0x39bb5c,_0x13c578-_0x56d3f2._0x4d3b6d,_0x3ca931-0x3d,_0x13c578- -_0x56d3f2._0x7909d9);}return _0x2dd9b8[_0x48c5a5(0x469,_0x2bc120._0x1f3843,_0x2bc120._0x2606d1,_0x2bc120._0x2c8c30)](_0xffada7,_0x15cf69,_0x5586ea);}};function _0x5510ac(_0x3ac720,_0x3c292a,_0x3c4f91,_0x1bbffd){return _0x47ab1c(_0x3ac720-_0x1db721._0xb664a4,_0x3c292a,_0x3c4f91-0x106,_0x1bbffd-_0x1db721._0x399a54);}const _0xf12835=await _0x2672ef(),_0x544972=NAME?NAME+'-'+_0xf12835:_0xf12835;function _0x17c014(_0x4f04d4,_0x5d8ce9,_0x2127e9,_0x593228){return _0x47ab1c(_0x4f04d4-_0x131b8b._0xb34e,_0x4f04d4,_0x593228- -_0x131b8b._0x2bbe3f,_0x593228-_0x131b8b._0x20706f);}return new Promise(_0x241c3b=>{const _0x43f3ea={_0x3521c0:0x7,_0x397b60:0x80,_0x3a1918:0xd0,_0x3ebac5:0xad,_0x3b314c:0x158,_0x45d044:0x51,_0xe4c038:0x239,_0xb008b7:0x22c,_0x38037c:0x233,_0x29b1ff:0x225,_0x5b7bdc:0x133,_0x356248:0x466,_0x26abab:0x581,_0x418a59:0x456,_0x59d1b8:0x218,_0x56ffc9:0x21e,_0x3ed30f:0x1b1,_0x20328c:0x9a},_0x1d6a52={_0x496dfe:0x11b,_0x58e42e:0x697};function _0x51c23c(_0x5949b0,_0x3e2041,_0x4e8526,_0x391815){return _0x17c014(_0x391815,_0x3e2041-0x181,_0x4e8526-0x78,_0x4e8526- -_0x162600._0x4b58e6);}function _0x19f7cc(_0x570890,_0x931a3b,_0x38e63d,_0xa5c22e){return _0x5510ac(_0x570890-_0x1d6a52._0x496dfe,_0x38e63d,_0x931a3b- -_0x1d6a52._0x58e42e,_0xa5c22e-0x169);}const _0x4d08e6={'UdVIw':_0x19dfc2[_0x19f7cc(_0x16e34b._0x4d7b56,_0x16e34b._0x3afd33,_0x16e34b._0x883344,_0x16e34b._0xe3b7a)],'CCpsE':_0x19dfc2[_0x19f7cc(_0x16e34b._0xa8799f,0xaf,0x8f,_0x16e34b._0x5bdcc2)],'pDVxQ':_0x19dfc2['QkiaB'],'OBhAF':_0x19dfc2[_0x51c23c(-_0x16e34b._0x37cf2c,-0x2a0,-_0x16e34b._0x4c25d6,-_0x16e34b._0x13c570)],'vGnjB':_0x19dfc2['shKTX'],'YDnqE':_0x19dfc2['fCwUk'],'ZUNBg':_0x19dfc2[_0x51c23c(-_0x16e34b._0x39d8d9,-_0x16e34b._0x4123b1,-_0x16e34b._0xbf0e51,-0x187)],'QgBzI':function(_0x40fba4){return _0x40fba4();}};if(_0x19dfc2[_0x19f7cc(-0x133,-_0x16e34b._0xff3053,-_0x16e34b._0xa88c93,-0xd9)](_0x19dfc2[_0x51c23c(_0x16e34b._0x22a819,-_0x16e34b._0x1f0c9e,_0x16e34b._0x31cea2,_0x16e34b._0x119a92)],_0x51c23c(-0x21,-_0x16e34b._0x5ea01f,-0xec,-_0x16e34b._0x5c7e2a)))_0x19dfc2['PcbVU'](setTimeout,()=>{const _0x3b1718={_0x5a13f3:0xf2,_0x12ce38:0x1ad,_0x5df48e:0x2ce},_0x33dc39={_0x566ac7:0x4a,_0x94f92c:0xf6,_0x16453b:0x772},_0x506be0={};_0x506be0['vLYKK']=_0x4d08e6['UdVIw'],_0x506be0[_0x2b4434(_0x68581b._0x57e43f,0x404,0x3b8,_0x68581b._0x17f1b4)]=_0x4d08e6[_0x2b4434(_0x68581b._0x25514c,_0x68581b._0x5ca58e,_0x68581b._0x50b6a0,_0x68581b._0x21c7b3)],_0x506be0['xFfna']=_0x4d08e6[_0x2b4434(_0x68581b._0x3069cc,_0x68581b._0xd84344,0x1e2,_0x68581b._0x5eb5f6)];const _0xb46da7=_0x506be0,_0x3f7ffe={};_0x3f7ffe['v']='2',_0x3f7ffe['ps']=''+_0x544972,_0x3f7ffe['add']=CFIP,_0x3f7ffe[_0x2b4434(_0x68581b._0x4d44ae,_0x68581b._0x588dd8,_0x68581b._0x42cbdf,_0x68581b._0x308d32)]=CFPORT,_0x3f7ffe['id']=UUID;function _0x4380d7(_0x30520c,_0x1132d6,_0x2f3945,_0x4a8668){return _0x51c23c(_0x30520c-_0x33dc39._0x566ac7,_0x1132d6-_0x33dc39._0x94f92c,_0x2f3945-_0x33dc39._0x16453b,_0x4a8668);}_0x3f7ffe[_0x4380d7(_0x68581b._0x1015c9,_0x68581b._0x1da7f5,_0x68581b._0x6eadfd,_0x68581b._0x4e6c6c)]='0',_0x3f7ffe[_0x4380d7(_0x68581b._0x534bae,0x6fd,_0x68581b._0x3ca2d1,_0x68581b._0x2916d3)]=_0x4d08e6[_0x4380d7(_0x68581b._0x4bc8d1,0x719,0x62d,_0x68581b._0x4a6a51)],_0x3f7ffe['net']='ws',_0x3f7ffe[_0x4380d7(0x61f,0x7bc,_0x68581b._0xe8b7be,_0x68581b._0x35f41e)]=_0x4d08e6['vGnjB'];function _0x2b4434(_0x4bdfbc,_0x30a72a,_0x205b96,_0x801db9){return _0x51c23c(_0x4bdfbc-_0x3b1718._0x5a13f3,_0x30a72a-_0x3b1718._0x12ce38,_0x4bdfbc-_0x3b1718._0x5df48e,_0x30a72a);}_0x3f7ffe['host']=_0x3e7ab5,_0x3f7ffe['path']=_0x4380d7(0x5c5,0x5c7,_0x68581b._0x22871d,_0x68581b._0x38b651),_0x3f7ffe[_0x4380d7(0x529,_0x68581b._0x16267b,_0x68581b._0x1534bf,_0x68581b._0x2a3017)]=_0x4d08e6[_0x2b4434(_0x68581b._0x3e4dd6,_0x68581b._0x2ec3fb,_0x68581b._0x1dfd7c,0x1a8)],_0x3f7ffe[_0x4380d7(0x68d,_0x68581b._0x3f0f6c,_0x68581b._0x4474b3,_0x68581b._0x4d861e)]=_0x3e7ab5,_0x3f7ffe[_0x4380d7(_0x68581b._0x30f890,_0x68581b._0x11c0bd,_0x68581b._0x297701,_0x68581b._0x28299d)]='',_0x3f7ffe['fp']=_0x4d08e6[_0x2b4434(_0x68581b._0x6efd05,0x123,0xde,_0x68581b._0x3b20b9)];const _0x397e5a=_0x3f7ffe,_0x3b660e=_0x2b4434(_0x68581b._0x49cacb,0x5c,_0x68581b._0x36a7ea,_0x68581b._0x5c7e68)+UUID+'@'+CFIP+':'+CFPORT+_0x2b4434(0x209,_0x68581b._0x1887be,_0x68581b._0x44bd1e,0x2c7)+_0x3e7ab5+'&fp=firefox&type=ws&host='+_0x3e7ab5+_0x4380d7(_0x68581b._0x3b602f,0x5cd,_0x68581b._0x1049e7,_0x68581b._0x3b75a9)+_0x544972+_0x2b4434(_0x68581b._0x42e44a,_0x68581b._0x40810b,_0x68581b._0x4392b0,0x1a8)+Buffer[_0x2b4434(_0x68581b._0x2acf33,_0x68581b._0x5a7b87,_0x68581b._0x2ef5f6,_0x68581b._0x350747)](JSON['stringify'](_0x397e5a))['toString'](_0x4d08e6['UdVIw'])+_0x2b4434(_0x68581b._0x1b78d3,_0x68581b._0x2238ff,0xba,_0x68581b._0x136b04)+UUID+'@'+CFIP+':'+CFPORT+'?security=tls&sni='+_0x3e7ab5+_0x2b4434(_0x68581b._0x47219f,_0x68581b._0x4ed009,_0x68581b._0x29476a,_0x68581b._0x3590f0)+_0x3e7ab5+'&path=%2Ftrojan-argo%3Fed%3D2560#'+_0x544972+_0x2b4434(0x2ac,_0x68581b._0x166132,_0x68581b._0x18aaa5,0x197);console['log'](Buffer[_0x4380d7(_0x68581b._0x3c8cf3,_0x68581b._0x48ea36,_0x68581b._0x2ec22b,_0x68581b._0x4d86a2)](_0x3b660e)[_0x2b4434(_0x68581b._0x59b2ae,_0x68581b._0x3556d4,_0x68581b._0x5d68e3,_0x68581b._0x1c74e3)](_0x4d08e6[_0x2b4434(_0x68581b._0x13a9ca,_0x68581b._0x38ba4b,_0x68581b._0x5f7927,_0x68581b._0x70d31)])),fs['writeFileSync'](subPath,Buffer['from'](_0x3b660e)[_0x4380d7(_0x68581b._0x1cfa71,0x4be,_0x68581b._0xbecfff,_0x68581b._0x7af9c5)](_0x4d08e6[_0x2b4434(0x143,0x6d,_0x68581b._0x3ac164,_0x68581b._0x388ee6)])),console[_0x4380d7(_0x68581b._0x2d90c6,0x63b,_0x68581b._0x3b7d11,_0x68581b._0x17b6dd)](FILE_PATH+_0x4380d7(_0x68581b._0x340e43,_0x68581b._0x3a8572,0x6b3,_0x68581b._0x10eb1d)),_0x4d08e6[_0x2b4434(_0x68581b._0x53ddb3,0xea,_0x68581b._0x86cfe,-_0x68581b._0x453e1d)](uploadNodes),app['get']('/'+SUB_PATH,(_0x1b915f,_0x16431d)=>{const _0x4009ab={_0x3ebdfe:0x35f,_0x5a2213:0x161},_0x1f5892={_0x23fa51:0xac,_0x5627f1:0xb2},_0x26b486=Buffer[_0xc81747(-_0x43f3ea._0x3521c0,-0x4b,_0x43f3ea._0x397b60,_0x43f3ea._0x3a1918)](_0x3b660e)[_0xc81747(_0x43f3ea._0x3ebac5,_0x43f3ea._0x3b314c,_0x43f3ea._0x45d044,0xa8)](_0xb46da7[_0xc81747(_0x43f3ea._0xe4c038,0x21e,0x166,0x25e)]);function _0xc81747(_0x138956,_0x39d4c9,_0x1c24f1,_0xf7e7bd){return _0x2b4434(_0x1c24f1- -_0x1f5892._0x23fa51,_0xf7e7bd,_0x1c24f1-0x4d,_0xf7e7bd-_0x1f5892._0x5627f1);}function _0xc89ffc(_0x2a0d9f,_0x1ebb78,_0x3a17ff,_0x44538e){return _0x2b4434(_0x2a0d9f-_0x4009ab._0x3ebdfe,_0x3a17ff,_0x3a17ff-0x31,_0x44538e-_0x4009ab._0x5a2213);}_0x16431d[_0xc81747(_0x43f3ea._0xb008b7,_0x43f3ea._0x38037c,_0x43f3ea._0x29b1ff,_0x43f3ea._0x5b7bdc)](_0xb46da7['pJttQ'],_0xb46da7[_0xc89ffc(_0x43f3ea._0x356248,_0x43f3ea._0x26abab,_0x43f3ea._0x418a59,0x389)]),_0x16431d[_0xc81747(_0x43f3ea._0x59d1b8,_0x43f3ea._0x56ffc9,_0x43f3ea._0x3ed30f,_0x43f3ea._0x20328c)](_0x26b486);}),_0x241c3b(_0x3b660e);},0x2379+-0xc2*0xd+-0x2f*0x61);else return _0x1bd16f[_0x19f7cc(-_0x16e34b._0x4ff646,-_0x16e34b._0x505e13,-_0x16e34b._0x1c779b,-_0x16e34b._0x4847fe)](_0x19f7cc(0x11,-_0x16e34b._0x127d57,_0x16e34b._0x19006d,-_0x16e34b._0x5a7082)),_0x380c52;});}}async function uploadNodes(){const _0x4efa62={_0x59c9a4:0x315,_0x50fc0d:0x35c,_0x262522:0x2b2,_0x439116:0x250,_0x149a4e:0x388,_0x186008:0x288,_0x59b1bb:0x26c,_0x2d9373:0x819,_0x1ce62a:0x766,_0x488a5c:0x84a,_0x59581e:0x25a,_0x35f1aa:0x1ea,_0x87ed14:0x58b,_0x2cbd09:0x5e6,_0x3a55de:0x5e8,_0x22d756:0x48a,_0x16dfe9:0x574,_0x58dfa2:0x65a,_0x3a318e:0x2b4,_0x221cbe:0x172,_0x36da3a:0x1f8,_0x59eacf:0x2ee,_0x31c306:0x70b,_0x431782:0x630,_0x230b32:0x622,_0x55aaa5:0x736,_0x334029:0x5d3,_0x1b9419:0x5ba,_0x392d23:0x600,_0x417eda:0x6fc,_0x121ce9:0x68d,_0x974a77:0x717,_0x2ed7bb:0x5b7,_0x5e9d0e:0x481,_0x4919f4:0x5e2,_0x4990c5:0x4ff,_0x573095:0x544,_0x39f735:0x614,_0x4e8c89:0x517,_0xc8c61c:0x5f5,_0x427e76:0x6ad,_0xeba2f4:0x61c,_0x567c02:0x56c,_0x4030bb:0x564,_0x54e35a:0x61c,_0x1350e8:0x5be,_0x415ca7:0x566,_0x4dc903:0x655,_0x28e0c5:0x5e9,_0x2a4c64:0x6b8,_0x3c6747:0x63c,_0xa653f6:0x219,_0x4816e0:0x2d8,_0x487874:0x29f,_0x20f6b9:0x28a,_0x4876c2:0x4c9,_0x32203c:0x5d7,_0x506128:0x5d0,_0x548522:0x69a,_0x4ea34b:0x5d7,_0x2bb1ff:0x54c,_0x49db60:0x284,_0x281f11:0x1db,_0x5313c5:0x1d0,_0x11314e:0x67b,_0x4ed7d9:0x5c4,_0x2b62b5:0x5a7,_0x21c89f:0x529,_0x15631f:0x6c1,_0x5d2849:0x674,_0x185996:0x5f2,_0x467b5f:0x62a,_0x539f25:0x6cb,_0x160c4b:0x7d6,_0x2d360b:0x70d,_0x5c2ccd:0x3db,_0x5a692b:0x340,_0x28d38e:0x272,_0x1736a1:0x221,_0x166ad4:0x1e8,_0x1f754d:0x243,_0x2df941:0x74a,_0x2ab56b:0x6e9,_0x58e353:0x665,_0x2f08ad:0x662,_0x130aa3:0x63f,_0x2c90e6:0x55f,_0x15c648:0x2da,_0x537b66:0x261,_0x3485c0:0x210,_0x2b925e:0x19c,_0x1a4ef8:0x2fa,_0x50f2d1:0x613,_0x12c697:0x6a4,_0x22cec2:0x6af,_0xc6ee2a:0x166,_0xe627f3:0x2ba,_0x39d7cc:0x26a,_0x509d20:0x46b,_0x53137b:0x3d8,_0x3d2e71:0x318,_0x23b4bb:0x6de,_0xa57ccc:0x670,_0x14822b:0x5c8,_0x3f130d:0x7bf,_0x5b1a7a:0x650,_0x2bce34:0x1d9,_0x243dda:0x17a,_0x5551ee:0x1b8,_0x10c451:0x3f4,_0x421677:0x3e2,_0x18d7b6:0x358,_0x52d771:0x35b,_0x3c447d:0x763,_0x1e8235:0x6c5,_0x3f21ae:0x7ac,_0x546b59:0x60b,_0x28a032:0x700,_0x2c2a83:0x720,_0x4c63f7:0x6af,_0x43ae9b:0x11f,_0x745fa2:0x100,_0x17e055:0x3d2,_0x2ecb60:0x2d7,_0x1d27ac:0xc9,_0x439f68:0x1c1,_0x3214e4:0x275,_0x932da2:0x615,_0x22443e:0x676,_0x318ecd:0x731,_0x5e95dd:0x702,_0x4e6768:0x7f3,_0x38e7a8:0x637,_0x16a681:0x6e5,_0x39e464:0x5fd,_0x4ad17f:0x7d9,_0x4aed0c:0x6f5,_0x3f5e2f:0x6e6,_0xd7a5e9:0x64a,_0x119ed0:0x50f,_0x5a5fb0:0x416,_0x1c7437:0x302,_0x101375:0x1c7,_0x589c32:0x1dd,_0x439824:0x12a,_0x53b466:0x761,_0x32da6d:0x64f,_0x2b78e4:0x6f4,_0x4b7982:0x61e,_0x499cb9:0x3d3,_0x588516:0x285,_0x26c4b7:0x275,_0x1a9225:0x693,_0x276007:0x543,_0x5abfc9:0x2f4,_0x5a0224:0x278,_0x3cce1b:0x666,_0x538f74:0x6a2,_0x1b992b:0x57b},_0x5737af={_0x3fe850:0x57d,_0x5768bb:0x5b3,_0xfe8775:0x479},_0x4c8fa5={_0x58a8ea:0xdf},_0x1e0f45={_0x4db767:0x1dd,_0x1785f1:0x9d};function _0x356218(_0x2cef37,_0x4af5e9,_0x29c135,_0x639dbb){return _0x5ed59f(_0x2cef37-0x1f,_0x4af5e9-_0x1e0f45._0x4db767,_0x639dbb,_0x639dbb-_0x1e0f45._0x1785f1);}function _0xf7a3c7(_0x224230,_0x2abd4f,_0xa5b878,_0x38be94){return _0x582585(_0xa5b878- -_0x4c8fa5._0x58a8ea,_0x224230,_0xa5b878-0x12d,_0x38be94-0xeb);}const _0x2a80f8={'cFZEX':_0xf7a3c7(_0x4efa62._0x59c9a4,_0x4efa62._0x50fc0d,_0x4efa62._0x262522,_0x4efa62._0x439116),'mDZei':'Unhandled\x20error\x20in\x20startserver:','KOSTS':function(_0x3f3b65,_0x494b04){return _0x3f3b65===_0x494b04;},'TDsra':'https://arm64.ssss.nyc.mn/v1','UMaLf':_0xf7a3c7(0x1bd,_0x4efa62._0x149a4e,_0x4efa62._0x186008,_0x4efa62._0x59b1bb),'ASVBv':function(_0x445b56,_0x2d6b35){return _0x445b56(_0x2d6b35);},'ZSCaK':function(_0x27833c,_0x597ece){return _0x27833c&&_0x597ece;},'BnpyD':_0x356218(_0x4efa62._0x2d9373,_0x4efa62._0x1ce62a,0x66e,_0x4efa62._0x488a5c),'ckeNE':function(_0x30dae0,_0x14f5bb){return _0x30dae0===_0x14f5bb;},'LViih':_0xf7a3c7(_0x4efa62._0x59581e,_0x4efa62._0x186008,0x23b,_0x4efa62._0x35f1aa),'kwkur':'euONA','sKNIn':function(_0x2a0576,_0x23a974){return _0x2a0576===_0x23a974;},'sXRZa':_0x356218(0x545,_0x4efa62._0x87ed14,_0x4efa62._0x2cbd09,_0x4efa62._0x3a55de),'CcFHi':function(_0x597405,_0x1441fc){return _0x597405!==_0x1441fc;},'XAutz':_0x356218(_0x4efa62._0x22d756,0x5a3,_0x4efa62._0x16dfe9,_0x4efa62._0x58dfa2),'nWKSQ':_0xf7a3c7(_0x4efa62._0x3a318e,_0x4efa62._0x221cbe,_0x4efa62._0x36da3a,_0x4efa62._0x59eacf),'WsacG':_0x356218(_0x4efa62._0x31c306,_0x4efa62._0x431782,_0x4efa62._0x230b32,_0x4efa62._0x55aaa5)};if(_0x2a80f8['ZSCaK'](UPLOAD_URL,PROJECT_URL)){const _0x7c88b7=PROJECT_URL+'/'+SUB_PATH,_0x587bf5={};_0x587bf5[_0x356218(_0x4efa62._0x334029,_0x4efa62._0x1b9419,_0x4efa62._0x392d23,0x672)]=[_0x7c88b7];const _0x2169ed=_0x587bf5;try{const _0x7aa650={};_0x7aa650[_0x356218(_0x4efa62._0x417eda,_0x4efa62._0x121ce9,_0x4efa62._0x974a77,_0x4efa62._0x2ed7bb)]=_0x2a80f8[_0x356218(_0x4efa62._0x5e9d0e,0x568,_0x4efa62._0x4919f4,_0x4efa62._0x4990c5)];const _0x2d2ae0={};_0x2d2ae0[_0x356218(_0x4efa62._0x573095,_0x4efa62._0x39f735,_0x4efa62._0x4e8c89,0x6fe)]=_0x7aa650;const _0x59fd61=await axios['post'](UPLOAD_URL+'/api/add-subscriptions',_0x2169ed,_0x2d2ae0);if(_0x59fd61&&_0x59fd61[_0x356218(0x62e,_0x4efa62._0xc8c61c,0x629,0x675)]===0x67b+-0x8b3*0x3+0x1466){if(_0x2a80f8['ckeNE'](_0x2a80f8[_0x356218(_0x4efa62._0x427e76,_0x4efa62._0xeba2f4,0x602,_0x4efa62._0x567c02)],_0x2a80f8[_0x356218(_0x4efa62._0x4030bb,_0x4efa62._0x54e35a,0x72b,_0x4efa62._0x1350e8)]))return console[_0x356218(0x5ea,_0x4efa62._0x415ca7,_0x4efa62._0x4dc903,0x647)](_0x356218(_0x4efa62._0x28e0c5,_0x4efa62._0x2a4c64,_0x4efa62._0x3c6747,0x67f)),_0x59fd61;else{if(_0x463933){const _0x35139a=_0x3a632e[_0xf7a3c7(_0x4efa62._0xa653f6,_0x4efa62._0x4816e0,_0x4efa62._0x487874,_0x4efa62._0x20f6b9)](_0x489b92,arguments);return _0x266252=null,_0x35139a;}}}else{if(_0x2a80f8[_0x356218(_0x4efa62._0x4876c2,_0x4efa62._0x32203c,_0x4efa62._0x506128,0x58f)]!==_0x2a80f8[_0x356218(_0x4efa62._0x548522,_0x4efa62._0x4ea34b,_0x4efa62._0x2bb1ff,0x6e3)]){_0x29030c[_0xf7a3c7(0x2a5,_0x4efa62._0x49db60,_0x4efa62._0x281f11,_0x4efa62._0x5313c5)](_0x2a80f8[_0x356218(_0x4efa62._0x11314e,_0x4efa62._0x4ed7d9,_0x4efa62._0x2b62b5,_0x4efa62._0x21c89f)]);return;}else return null;}}catch(_0x276fe4){if(_0x2a80f8[_0x356218(0x71e,_0x4efa62._0x15631f,_0x4efa62._0x5d2849,_0x4efa62._0x185996)](_0x2a80f8[_0x356218(_0x4efa62._0x467b5f,_0x4efa62._0x539f25,_0x4efa62._0x160c4b,_0x4efa62._0x2d360b)],_0x2a80f8[_0xf7a3c7(_0x4efa62._0x5c2ccd,0x418,_0x4efa62._0x5a692b,_0x4efa62._0x28d38e)])){if(_0x276fe4['response']){if(_0x2a80f8[_0xf7a3c7(_0x4efa62._0x1736a1,_0x4efa62._0x166ad4,_0x4efa62._0x1f754d,0x15c)](_0x2a80f8[_0x356218(_0x4efa62._0x2df941,0x662,0x6b8,_0x4efa62._0x2ab56b)],_0x2a80f8[_0x356218(_0x4efa62._0x58e353,_0x4efa62._0x2f08ad,_0x4efa62._0x130aa3,_0x4efa62._0x2c90e6)]))_0x9cdfdd[_0xf7a3c7(0x158,_0x4efa62._0x15c648,_0x4efa62._0x537b66,_0x4efa62._0x3485c0)](_0x2a80f8[_0xf7a3c7(_0x4efa62._0x2b925e,_0x4efa62._0x1a4ef8,0x269,0x364)],_0x58fefe);else{if(_0x276fe4[_0x356218(_0x4efa62._0x50f2d1,_0x4efa62._0x12c697,0x60e,_0x4efa62._0x22cec2)][_0xf7a3c7(_0x4efa62._0xc6ee2a,_0x4efa62._0xe627f3,_0x4efa62._0x39d7cc,0x202)]===-0xec5*0x1+-0x568*-0x2+0x585){}}}}else{const _0x252c5e=_0x2a80f8[_0xf7a3c7(0x42c,_0x4efa62._0x509d20,_0x4efa62._0x53137b,_0x4efa62._0x3d2e71)](_0x4ffd7c,'arm')?_0x2a80f8[_0x356218(_0x4efa62._0x23b4bb,_0x4efa62._0xa57ccc,_0x4efa62._0x14822b,0x581)]:_0x2a80f8['UMaLf'],_0x2526c2={};_0x2526c2[_0x356218(_0x4efa62._0x3f130d,0x6f5,0x6ed,_0x4efa62._0x5b1a7a)]=_0x5b80ce,_0x2526c2[_0xf7a3c7(_0x4efa62._0x2bce34,_0x4efa62._0x243dda,0x280,_0x4efa62._0x5551ee)]=_0x252c5e,_0x5e7aac[_0xf7a3c7(_0x4efa62._0x10c451,_0x4efa62._0x421677,_0x4efa62._0x18d7b6,_0x4efa62._0x52d771)](_0x2526c2);}}}else{if(UPLOAD_URL){if(!fs[_0x356218(_0x4efa62._0x3c447d,_0x4efa62._0x1e8235,_0x4efa62._0x3f21ae,_0x4efa62._0x546b59)](listPath))return;const _0x11e700=fs[_0x356218(_0x4efa62._0x28a032,_0x4efa62._0x2c2a83,0x7aa,_0x4efa62._0x4c63f7)](listPath,_0x2a80f8['nWKSQ']),_0x44ae85=_0x11e700['split']('\x0a')[_0xf7a3c7(0xfa,_0x4efa62._0x43ae9b,0x208,_0x4efa62._0x745fa2)](_0x1f6dd1=>/(vless|vmess|trojan|hysteria2|tuic):\/\//['test'](_0x1f6dd1));if(_0x44ae85['length']===0x261b+0x15d9*-0x1+-0x1042)return;const _0x2e14b2={};_0x2e14b2[_0xf7a3c7(0x35b,0x3a0,_0x4efa62._0x17e055,_0x4efa62._0x2ecb60)]=_0x44ae85;const _0x210e8a=JSON[_0xf7a3c7(_0x4efa62._0x1d27ac,_0x4efa62._0x39d7cc,_0x4efa62._0x439f68,_0x4efa62._0x3214e4)](_0x2e14b2);try{if(_0x2a80f8[_0x356218(0x4f4,0x5ce,_0x4efa62._0x932da2,_0x4efa62._0x22443e)](_0x356218(_0x4efa62._0x318ecd,_0x4efa62._0x5e95dd,_0x4efa62._0x4e6768,_0x4efa62._0x38e7a8),_0x356218(_0x4efa62._0x16a681,0x702,_0x4efa62._0x39e464,_0x4efa62._0xeba2f4))){const _0x10a3c4={_0x33c8ba:0x214,_0x43d184:0x2b6,_0x44ed23:0x20d},_0x4b6b9d={_0x20cfc7:0x1b7,_0x4f1680:0x123},_0x5bb423={'pHgMI':function(_0x429437,_0x4a534b){const _0xa43cd8={_0x3c5bd2:0xce,_0x4f2e16:0xaf,_0x221137:0x1e};function _0x202d71(_0x17ae71,_0x4ff21f,_0x4fcca1,_0x5f3ab2){return _0x356218(_0x17ae71-_0xa43cd8._0x3c5bd2,_0x4ff21f- -_0xa43cd8._0x4f2e16,_0x4fcca1-_0xa43cd8._0x221137,_0x5f3ab2);}return _0x2a80f8[_0x202d71(0x659,_0x5737af._0x3fe850,_0x5737af._0x5768bb,_0x5737af._0xfe8775)](_0x429437,_0x4a534b);}};_0x25c2e5(_0x4181b3[_0x356218(_0x4efa62._0x4ad17f,_0x4efa62._0x4aed0c,0x6d4,_0x4efa62._0x3f5e2f)],_0x5bf3fd[_0x356218(_0x4efa62._0xd7a5e9,_0x4efa62._0x546b59,_0x4efa62._0x119ed0,0x590)],(_0x18753a,_0x27db55)=>{function _0x27dbef(_0x18889a,_0x48dc65,_0xed1658,_0x21e2e1){return _0xf7a3c7(_0xed1658,_0x48dc65-_0x4b6b9d._0x20cfc7,_0x48dc65- -0x13e,_0x21e2e1-_0x4b6b9d._0x4f1680);}_0x18753a?_0x5bb423[_0x27dbef(0x21b,_0x10a3c4._0x33c8ba,_0x10a3c4._0x43d184,_0x10a3c4._0x44ed23)](_0x9750d8,_0x18753a):_0x5bb423['pHgMI'](_0x46d2a1,_0x27db55);});}else{const _0x497dee={};_0x497dee[_0xf7a3c7(_0x4efa62._0x5a5fb0,0x36e,_0x4efa62._0x1c7437,0x366)]=_0x2a80f8[_0xf7a3c7(_0x4efa62._0x101375,0xd5,_0x4efa62._0x589c32,_0x4efa62._0x439824)];const _0x2ff3b7={};_0x2ff3b7['headers']=_0x497dee;const _0x310644=await axios['post'](UPLOAD_URL+_0x356218(_0x4efa62._0x53b466,_0x4efa62._0x32da6d,_0x4efa62._0x2b78e4,_0x4efa62._0x4b7982),_0x210e8a,_0x2ff3b7);return _0x310644&&_0x2a80f8[_0xf7a3c7(_0x4efa62._0x499cb9,_0x4efa62._0x588516,0x2ee,_0x4efa62._0x26c4b7)](_0x310644[_0x356218(_0x4efa62._0x1a9225,0x5f5,_0x4efa62._0x276007,0x507)],0x79f*0x1+-0xec4+0x7ed)?(console[_0xf7a3c7(_0x4efa62._0x5abfc9,0x278,_0x4efa62._0x281f11,_0x4efa62._0x5a0224)](_0x2a80f8[_0x356218(_0x4efa62._0x3cce1b,0x619,_0x4efa62._0x538f74,_0x4efa62._0x1b992b)]),_0x310644):null;}}catch(_0xfe215c){return null;}}else return;}}function _0x5a3b(_0x39d0b5,_0xf5a1f4){const _0x82f94a=_0x2bef();return _0x5a3b=function(_0x5d9db0,_0x53705b){_0x5d9db0=_0x5d9db0-(-0x967+0x3*0x529+-0x44b);let _0x1b464c=_0x82f94a[_0x5d9db0];if(_0x5a3b['Ahprng']===undefined){var _0x1711f4=function(_0xefe0b9){const _0x34ed8b='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x12738e='',_0x20b038='',_0x37825b=_0x12738e+_0x1711f4;for(let _0xa5924=-0x1*0x171a+-0x4*-0x286+-0x9*-0x172,_0xa2c7f6,_0x1093ed,_0x39aef6=0x96*-0x2e+0xe7a*-0x1+0x296e*0x1;_0x1093ed=_0xefe0b9['charAt'](_0x39aef6++);~_0x1093ed&&(_0xa2c7f6=_0xa5924%(-0x8*-0x26a+-0xfe9*0x1+-0x363)?_0xa2c7f6*(0x114d+-0x575+-0x5cc*0x2)+_0x1093ed:_0x1093ed,_0xa5924++%(-0xab5+0x1aa4+-0x32f*0x5))?_0x12738e+=_0x37825b['charCodeAt'](_0x39aef6+(0x110f+0x6ad+-0x1*0x17b2))-(-0x2*-0xf09+0x4*0x47e+0x80*-0x60)!==-0xd*-0x245+0x705+0x1*-0x2486?String['fromCharCode'](0x1ac9+0x1*-0x170f+-0x2bb&_0xa2c7f6>>(-(0x3*0x8cd+-0x1a5d+-0x8)*_0xa5924&0x25df+-0xa5*-0x19+-0x35f6)):_0xa5924:-0x14ea+0x2139+0x89*-0x17){_0x1093ed=_0x34ed8b['indexOf'](_0x1093ed);}for(let _0x2768a8=-0xef*0x26+0x174c+-0x1*-0xc2e,_0x4bbde6=_0x12738e['length'];_0x2768a8<_0x4bbde6;_0x2768a8++){_0x20b038+='%'+('00'+_0x12738e['charCodeAt'](_0x2768a8)['toString'](-0xda*-0x4+-0x8*0x43c+0x1e88))['slice'](-(-0xa2a+-0xf92+0x19be));}return decodeURIComponent(_0x20b038);};_0x5a3b['wikxLP']=_0x1711f4,_0x39d0b5=arguments,_0x5a3b['Ahprng']=!![];}const _0x59889e=_0x82f94a[0x8e8+0x15e*0x10+0xc5*-0x28],_0x54772a=_0x5d9db0+_0x59889e,_0x40f0c9=_0x39d0b5[_0x54772a];if(!_0x40f0c9){const _0x5617da=function(_0x1f3f80){this['byoOeg']=_0x1f3f80,this['LFgGbn']=[-0x1e17*-0x1+-0x17c1+-0x1*0x655,-0x5ce+0x205*0x13+0x15*-0x18d,-0x1*-0x2617+0xe4*-0xd+-0x1*0x1a83],this['SBFErU']=function(){return'newState';},this['myzUuG']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['ibCwAQ']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x5617da['prototype']['IDqcuT']=function(){const _0x5c983d=new RegExp(this['myzUuG']+this['ibCwAQ']),_0x1a705e=_0x5c983d['test'](this['SBFErU']['toString']())?--this['LFgGbn'][0xe01+-0x7e3*-0x3+-0x25a9]:--this['LFgGbn'][-0x1e40+0x1d45+0xfb];return this['LYrpHF'](_0x1a705e);},_0x5617da['prototype']['LYrpHF']=function(_0x427b53){if(!Boolean(~_0x427b53))return _0x427b53;return this['Dmceuo'](this['byoOeg']);},_0x5617da['prototype']['Dmceuo']=function(_0x4d11b9){for(let _0xab38c0=-0x1365+0x3*0x92b+-0x2*0x40e,_0x472787=this['LFgGbn']['length'];_0xab38c0<_0x472787;_0xab38c0++){this['LFgGbn']['push'](Math['round'](Math['random']())),_0x472787=this['LFgGbn']['length'];}return _0x4d11b9(this['LFgGbn'][0x19f3+0xf26+-0x2919]);},new _0x5617da(_0x5a3b)['IDqcuT'](),_0x1b464c=_0x5a3b['wikxLP'](_0x1b464c),_0x39d0b5[_0x54772a]=_0x1b464c;}else _0x1b464c=_0x40f0c9;return _0x1b464c;},_0x5a3b(_0x39d0b5,_0xf5a1f4);}function cleanFiles(){const _0x1d060c={_0x2a1572:0x280,_0x5b406f:0x13d,_0x26db50:0x182,_0x5370d1:0x67,_0x24673a:0x31,_0x319e24:0x12f,_0x430d1d:0x43,_0x517484:0x272,_0x15dca0:0x12e,_0x343340:0x1f7,_0x2592a9:0x154,_0x39ec31:0x1f7,_0x3bbfdf:0x185,_0x5ddcae:0x17d,_0x2ac655:0x16c,_0x974100:0x41,_0x699478:0x95},_0x1b9f31={_0x5a68fb:0x152,_0x456af5:0x162,_0x4f0a0b:0x149,_0xbe4a0a:0xae,_0x56a62a:0x364,_0x18c335:0x4c9,_0x22e538:0x4d4,_0x2c0051:0x281,_0x48aabf:0x2c3,_0x8dc025:0x30e,_0x5b16ba:0x29a,_0x5a543b:0x21a,_0x40cf4c:0x375,_0x453ef4:0x2fc,_0x432ad7:0x207,_0x32d9b3:0x20a,_0x22472f:0x25c,_0x33929e:0x160,_0x206697:0x117,_0x24ed42:0x1a2,_0x447dfc:0x181,_0x52d882:0x3fc,_0x5c5004:0x23e,_0x17623b:0x349,_0x3bf14f:0x213,_0x5b0fd4:0x36e,_0x54f9c7:0x270,_0xf0fbce:0x29b,_0x1e1bef:0x4a8,_0xe414bc:0x424,_0x55ea98:0x529,_0x4f6c89:0x3ab,_0x264e82:0x2cb,_0x18c4e0:0x386,_0xba431:0x1d3,_0x4c4a7a:0x218,_0x4be570:0x327,_0x422562:0x2a1,_0x265c0d:0x26f,_0x1e332e:0x31a,_0x4e2021:0x254,_0x3e6940:0x3be,_0xa5ab2:0x31a,_0x1797cb:0x269,_0x1f914b:0x394,_0x3f82e1:0x187,_0x1214c7:0x28b,_0x40fbc2:0x367,_0x50d57f:0x43c,_0x394703:0x36e,_0x3b0d53:0x3d4,_0x513b06:0x3bc,_0xe8ce62:0x28f,_0x507158:0x304,_0x5c9060:0x315,_0x29c0f2:0x17f,_0x504583:0x1bf,_0x3e4497:0x234,_0xdbfe6f:0x22c,_0x4efe1a:0x202,_0x553033:0x276,_0x4629ca:0x2ca,_0x2ef42e:0x434,_0x2ed722:0x4b2,_0x2714ca:0x3f9,_0x27f2a0:0x498,_0x262940:0x48c,_0x3aeb07:0x417,_0x21734a:0x48e,_0x41b263:0x2e7,_0x335b9e:0x381,_0x4843ed:0x30c,_0x11c935:0x353,_0x45ae8b:0x27a,_0x1502e9:0x2c9,_0x26093f:0x432,_0x29033a:0x441,_0x2fed40:0x43e,_0x344542:0x37c,_0x153452:0x224,_0x32519c:0x30e,_0x15ba1f:0x3bf,_0x1f013d:0x2a3,_0x166bc9:0x198,_0x42f843:0x14e,_0x2e24c8:0x1ad,_0x4f7c4b:0x18a,_0x532453:0x175,_0x51eea4:0x27c,_0x378e17:0x2a4,_0x28f59c:0x3f1,_0x12d2c2:0x404,_0x3011ab:0x3c9,_0x455fa3:0x32e,_0x598546:0x201,_0x530214:0x249,_0x1414dc:0x330,_0x225131:0x418,_0x3c574a:0x38d,_0x564c1a:0x183,_0x1cef8c:0x215,_0x1df5a4:0xb3,_0x5d5978:0x152,_0x4cc70a:0x297,_0x511731:0x2ea,_0x464658:0x2c9,_0x462d25:0x2a0,_0x2f139d:0x2ef,_0xf6ef7d:0x3c2,_0xa8d037:0x293,_0x529e64:0x302,_0x5899fe:0x3e1,_0x61fc83:0x377,_0x1d0ee1:0x2cd,_0xe54987:0x1e5,_0xc407:0x1d9,_0x2c516b:0x3ae},_0x4a53d4={_0x511bac:0x17d,_0x27c8ee:0x14a,_0x1a3c8b:0x10,_0x7b3130:0x106,_0x59ce83:0x17b,_0x311434:0x3a,_0x545890:0xfa,_0x195a3c:0x2e,_0x52db27:0x2d,_0x6a6536:0x5f,_0x2612f0:0x6d},_0x72a8b={_0x2dea70:0x9d,_0x43d0d5:0xbe},_0x5743b0={_0x4046af:0x24},_0x119144={_0x4d69ea:0x1ae,_0x179932:0x379,_0x2b0d55:0x15a},_0x56dce9={_0x1c0f26:0xf4,_0x16461a:0x206};function _0x3339cb(_0x4394ac,_0x3355c5,_0x1bcc86,_0xa2e4df){return _0x5ed59f(_0x4394ac-_0x56dce9._0x1c0f26,_0xa2e4df- -_0x56dce9._0x16461a,_0x4394ac,_0xa2e4df-0x103);}const _0x3e5507={'nKyxo':_0x3339cb(_0x1d060c._0x2a1572,_0x1d060c._0x5b406f,0x7b,_0x1d060c._0x26db50),'zJRrf':'Thank\x20you\x20for\x20using\x20this\x20script,\x20enjoy!','JxHKV':'tunnel.json','brWqy':'tunnel.yml','MFqSS':_0x18e712(-_0x1d060c._0x5370d1,-_0x1d060c._0x24673a,_0x1d060c._0x319e24,_0x1d060c._0x430d1d),'CKCON':_0x3339cb(_0x1d060c._0x517484,0x1d6,_0x1d060c._0x15dca0,_0x1d060c._0x343340),'EeHjL':'Error\x20downloading\x20files:','ODIMa':_0x3339cb(_0x1d060c._0x2592a9,_0x1d060c._0x39ec31,_0x1d060c._0x3bbfdf,_0x1d060c._0x5ddcae),'ynMAN':function(_0x2c64b3,_0xdb84a0){return _0x2c64b3===_0xdb84a0;},'pkwrm':_0x18e712(_0x1d060c._0x2ac655,0x70,_0x1d060c._0x974100,_0x1d060c._0x699478),'lSLDs':function(_0x2cf4fc,_0x11cf04,_0xa540e8){return _0x2cf4fc(_0x11cf04,_0xa540e8);}};function _0x18e712(_0xd13456,_0x187ffe,_0xc9ef24,_0x5cbbdd){return _0x5ed59f(_0xd13456-_0x119144._0x4d69ea,_0x5cbbdd- -_0x119144._0x179932,_0x187ffe,_0x5cbbdd-_0x119144._0x2b0d55);}setTimeout(()=>{const _0x24cb8f={_0x633084:0x11f,_0xbc4a6f:0x2,_0x51ce8d:0x3b,_0x3d5242:0x128,_0x36311b:0x30,_0x3f56e8:0x1be,_0x46b369:0xce,_0x146e62:0x1bb,_0x43165d:0x125,_0x3cfcff:0x16f,_0x3da886:0x15b,_0x564be5:0x4,_0x4619f9:0xcf,_0x5887c8:0x147,_0x50622d:0xc6,_0x5133e3:0xfd,_0x111a96:0x4f,_0x530c6e:0xac,_0xa2aa48:0x123,_0x18ec6b:0xa4,_0x3513ae:0xe0,_0x8b8d09:0x5c,_0x5884f0:0x42,_0x5b40a5:0x10,_0x5188cf:0xa2,_0x2dda66:0x3c,_0x37c22b:0x87,_0x3bf937:0x63,_0x2e4a37:0x174,_0x1a4a23:0xe,_0xf39eaa:0x1ce,_0x1dbb4f:0xce,_0x1c7617:0x84,_0x4ab756:0x255,_0x446251:0x17a,_0x1cbde7:0x182,_0x47ad1a:0x139,_0x444ab3:0x142,_0x56e3f3:0x60,_0x2fccab:0xc1,_0x3df7df:0x15,_0x32ccaf:0x8a,_0x4f4347:0xfa,_0x26d64e:0x70,_0xd633a4:0xa9,_0x15663d:0x136,_0x4bb5b5:0x13b,_0x337d67:0x5b,_0x178c2d:0xb9,_0x35f800:0xc5,_0x4f4556:0x149,_0x3e04ad:0xdb,_0x37b8d2:0x119,_0x5d5c11:0xbe,_0x4c8a1e:0x7f,_0x1a2dde:0x23,_0x4f40c7:0x50,_0x2d3def:0x92,_0x554b8e:0x5d,_0x74d454:0xcd,_0x2619eb:0x9d,_0x531b7b:0x150,_0x3936f9:0x10c,_0x2403cc:0x1d0,_0x459f8f:0x27,_0x40e7f8:0x21,_0x1cc2c0:0x1,_0x22ad41:0x12d,_0x5dc404:0x9f,_0x3514d5:0x2e,_0x3a2261:0x118,_0x559a68:0xed,_0x15bffa:0x17c,_0x2e97e5:0x5c,_0x3c4b85:0x3f},_0x377772={};_0x377772[_0x2eaf95(_0x1b9f31._0x5a68fb,_0x1b9f31._0x456af5,_0x1b9f31._0x4f0a0b,_0x1b9f31._0xbe4a0a)]=_0x3e5507[_0x4ea36b(_0x1b9f31._0x56a62a,_0x1b9f31._0x18c335,0x41e,_0x1b9f31._0x22e538)],_0x377772[_0x2eaf95(_0x1b9f31._0x2c0051,_0x1b9f31._0x48aabf,_0x1b9f31._0x8dc025,0x25b)]=_0x3e5507[_0x2eaf95(0x2a8,_0x1b9f31._0x5b16ba,_0x1b9f31._0x5a543b,_0x1b9f31._0x40cf4c)],_0x377772[_0x2eaf95(_0x1b9f31._0x453ef4,_0x1b9f31._0x432ad7,_0x1b9f31._0x32d9b3,_0x1b9f31._0x22472f)]=_0x3e5507[_0x2eaf95(_0x1b9f31._0x33929e,_0x1b9f31._0x206697,_0x1b9f31._0x24ed42,_0x1b9f31._0x447dfc)];function _0x2eaf95(_0x1c7061,_0x4bf699,_0x593cf0,_0x3e872f){return _0x3339cb(_0x3e872f,_0x4bf699-0x15f,_0x593cf0-0x8,_0x1c7061- -_0x5743b0._0x4046af);}_0x377772[_0x4ea36b(_0x1b9f31._0x52d882,_0x1b9f31._0x5c5004,_0x1b9f31._0x17623b,0x28d)]=_0x3e5507['CKCON'],_0x377772['ILKmJ']='UIGAQ',_0x377772[_0x4ea36b(_0x1b9f31._0x3bf14f,_0x1b9f31._0x5b0fd4,_0x1b9f31._0x54f9c7,_0x1b9f31._0xf0fbce)]=_0x3e5507[_0x4ea36b(_0x1b9f31._0x1e1bef,0x4ee,_0x1b9f31._0xe414bc,_0x1b9f31._0x55ea98)],_0x377772[_0x4ea36b(0x37a,_0x1b9f31._0x4f6c89,_0x1b9f31._0x264e82,_0x1b9f31._0x18c4e0)]=_0x3e5507[_0x2eaf95(0x284,_0x1b9f31._0xba431,_0x1b9f31._0x4c4a7a,_0x1b9f31._0x4be570)];function _0x4ea36b(_0x41d56d,_0x24a258,_0x16b1e8,_0x429349){return _0x3339cb(_0x24a258,_0x24a258-0x1b5,_0x16b1e8-_0x72a8b._0x2dea70,_0x16b1e8-_0x72a8b._0x43d0d5);}const _0x309b8f=_0x377772,_0x9819a8=[bootLogPath,configPath,webPath,botPath];if(NEZHA_PORT){if(_0x3e5507[_0x4ea36b(_0x1b9f31._0x422562,_0x1b9f31._0x265c0d,_0x1b9f31._0x1e332e,_0x1b9f31._0x4e2021)]!==_0x3e5507[_0x4ea36b(0x342,_0x1b9f31._0x3e6940,_0x1b9f31._0xa5ab2,_0x1b9f31._0x1797cb)]){_0x390362[_0x2eaf95(0x335,0x338,0x298,_0x1b9f31._0x1f914b)](_0x230e1f['join'](_0x564451,_0x309b8f['sfAFa']),_0x515371);const _0x207d3c=_0x2eaf95(_0x1b9f31._0x3f82e1,_0x1b9f31._0x1214c7,0x205,0x293)+_0x713cb7[_0x4ea36b(_0x1b9f31._0x40fbc2,_0x1b9f31._0x50d57f,_0x1b9f31._0x394703,_0x1b9f31._0x3b0d53)]('\x22')[0x1875+0x19b1*-0x1+0x147]+_0x4ea36b(_0x1b9f31._0x513b06,_0x1b9f31._0xe8ce62,_0x1b9f31._0x507158,_0x1b9f31._0x5c9060)+_0x4cc13e['join'](_0x48a697,_0x309b8f[_0x4ea36b(_0x1b9f31._0x29c0f2,_0x1b9f31._0x504583,_0x1b9f31._0x3e4497,_0x1b9f31._0xdbfe6f)])+'\x0a\x20\x20protocol:\x20http2\x0a\x20\x20\x0a\x20\x20ingress:\x0a\x20\x20\x20\x20-\x20hostname:\x20'+_0x180bbf+_0x2eaf95(0x304,_0x1b9f31._0x4efe1a,_0x1b9f31._0x553033,_0x1b9f31._0x4629ca)+_0x31fb90+_0x4ea36b(_0x1b9f31._0x2ef42e,_0x1b9f31._0x2ed722,_0x1b9f31._0x2714ca,0x345);_0x1b0297[_0x4ea36b(_0x1b9f31._0x27f2a0,_0x1b9f31._0x262940,_0x1b9f31._0x3aeb07,_0x1b9f31._0x21734a)](_0x222986[_0x2eaf95(_0x1b9f31._0x41b263,0x276,_0x1b9f31._0x507158,_0x1b9f31._0x335b9e)](_0x5f0359,_0x309b8f['Cfgkj']),_0x207d3c);}else _0x9819a8[_0x2eaf95(_0x1b9f31._0x4843ed,_0x1b9f31._0x11c935,_0x1b9f31._0x45ae8b,_0x1b9f31._0x1502e9)](npmPath);}else NEZHA_SERVER&&NEZHA_KEY&&_0x9819a8[_0x4ea36b(_0x1b9f31._0x26093f,_0x1b9f31._0x29033a,0x3ee,_0x1b9f31._0x2fed40)](phpPath);if(_0x3e5507['ynMAN'](process[_0x4ea36b(_0x1b9f31._0x344542,_0x1b9f31._0x153452,_0x1b9f31._0x32519c,_0x1b9f31._0x15ba1f)],_0x3e5507[_0x2eaf95(0x18d,_0x1b9f31._0x1f013d,_0x1b9f31._0x166bc9,_0x1b9f31._0x42f843)]))_0x3e5507[_0x2eaf95(_0x1b9f31._0x2e24c8,0x25f,_0x1b9f31._0x4f7c4b,_0x1b9f31._0x532453)](exec,_0x4ea36b(_0x1b9f31._0x51eea4,0x31a,_0x1b9f31._0x378e17,0x206)+_0x9819a8[_0x4ea36b(_0x1b9f31._0x28f59c,_0x1b9f31._0x12d2c2,_0x1b9f31._0x3011ab,_0x1b9f31._0x455fa3)]('\x20')+_0x4ea36b(0x143,_0x1b9f31._0x598546,_0x1b9f31._0x530214,0x1ab),_0x2ca102=>{const _0x7a0d37={_0x174f12:0x277,_0x2f6d4a:0xf4,_0x41b4f5:0x1b7},_0x391274={_0x2fff0b:0x1bb,_0x364e42:0x49,_0x30562c:0x13b},_0x207d2d={};function _0x269e70(_0x4be4d1,_0x2bede1,_0x1c44d8,_0x46c11e){return _0x2eaf95(_0x1c44d8- -_0x391274._0x2fff0b,_0x2bede1-_0x391274._0x364e42,_0x1c44d8-_0x391274._0x30562c,_0x4be4d1);}_0x207d2d[_0x269e70(-_0x24cb8f._0x633084,_0x24cb8f._0xbc4a6f,-_0x24cb8f._0x51ce8d,-_0x24cb8f._0x3d5242)]=function(_0x4ce0bb,_0xde748d){return _0x4ce0bb||_0xde748d;};function _0x5578db(_0x10503a,_0x19303a,_0x180275,_0x56a5ef){return _0x2eaf95(_0x19303a- -_0x7a0d37._0x174f12,_0x19303a-_0x7a0d37._0x2f6d4a,_0x180275-_0x7a0d37._0x41b4f5,_0x180275);}_0x207d2d[_0x269e70(_0x24cb8f._0x36311b,_0x24cb8f._0x3f56e8,_0x24cb8f._0x46b369,_0x24cb8f._0x146e62)]=_0x309b8f['CRIwQ'],_0x207d2d['tDiNc']=_0x309b8f[_0x5578db(-0x12,-_0x24cb8f._0x43165d,-0x1ab,-_0x24cb8f._0x3cfcff)],_0x207d2d[_0x269e70(0x41,_0x24cb8f._0x3da886,0x9d,-_0x24cb8f._0x564be5)]=_0x309b8f[_0x269e70(_0x24cb8f._0x4619f9,_0x24cb8f._0x5887c8,_0x24cb8f._0x50622d,_0x24cb8f._0x5133e3)];const _0x25b321=_0x207d2d;if(_0x309b8f[_0x269e70(_0x24cb8f._0x111a96,0x30,_0x24cb8f._0x530c6e,0x11d)]===_0x309b8f[_0x5578db(_0x24cb8f._0xa2aa48,_0x24cb8f._0x18ec6b,0x0,_0x24cb8f._0x3513ae)]){if(_0x25b321['WMGXU'](!_0x520ad5,!_0x432611)){_0x373f13[_0x269e70(-0xeb,-0xed,-_0x24cb8f._0x8b8d09,-_0x24cb8f._0x5884f0)](_0x269e70(-_0x24cb8f._0x5b40a5,_0x24cb8f._0x5188cf,0x8b,_0x24cb8f._0x2dda66));return;}if(_0x230f0e[_0x5578db(-_0x24cb8f._0x37c22b,_0x24cb8f._0x3bf937,_0x24cb8f._0x2e4a37,_0x24cb8f._0x1a4a23)](_0x25b321[_0x269e70(_0x24cb8f._0xf39eaa,0xb5,_0x24cb8f._0x1dbb4f,_0x24cb8f._0x1c7617)])){_0x8c30cc[_0x269e70(_0x24cb8f._0x4ab756,0x28a,_0x24cb8f._0x446251,_0x24cb8f._0x1cbde7)](_0x545e05[_0x5578db(0x58,0x70,_0x24cb8f._0x47ad1a,0x182)](_0x2dd2d7,_0x25b321[_0x269e70(0xba,_0x24cb8f._0x444ab3,_0x24cb8f._0x56e3f3,-0x24)]),_0x355cd3);const _0x43ee72='\x0a\x20\x20tunnel:\x20'+_0x3bbfc0[_0x5578db(_0x24cb8f._0x2fccab,_0x24cb8f._0x3df7df,-_0x24cb8f._0x32ccaf,_0x24cb8f._0x4f4347)]('\x22')[-0x9*0x1d8+0x1eee*-0x1+0x2f91*0x1]+'\x0a\x20\x20credentials-file:\x20'+_0xffd1a[_0x5578db(-0x8b,_0x24cb8f._0x26d64e,0x12d,-_0x24cb8f._0xd633a4)](_0x42fcac,_0x25b321[_0x269e70(_0x24cb8f._0x15663d,_0x24cb8f._0x4bb5b5,0x60,0x170)])+_0x269e70(0xb,_0x24cb8f._0x337d67,_0x24cb8f._0x178c2d,0x14d)+_0x2b809f+_0x269e70(_0x24cb8f._0x5887c8,_0x24cb8f._0x35f800,_0x24cb8f._0x4f4556,_0x24cb8f._0x3e04ad)+_0x5a20fd+'\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';_0x20f388[_0x5578db(_0x24cb8f._0x37b8d2,_0x24cb8f._0x5d5c11,_0x24cb8f._0x4c8a1e,-_0x24cb8f._0x1a2dde)](_0x5443e6[_0x5578db(_0x24cb8f._0x4f40c7,_0x24cb8f._0x26d64e,-_0x24cb8f._0x2d3def,-_0x24cb8f._0x554b8e)](_0x558ec0,_0x25b321[_0x269e70(-0x63,_0x24cb8f._0x74d454,_0x24cb8f._0x2619eb,0x16c)]),_0x43ee72);}else _0x532faf[_0x5578db(-_0x24cb8f._0x531b7b,-0x118,-_0x24cb8f._0x3936f9,-_0x24cb8f._0x2403cc)](_0x269e70(0x4b,-_0x24cb8f._0x459f8f,-_0x24cb8f._0x40e7f8,_0x24cb8f._0x1cc2c0));}else console[_0x5578db(_0x24cb8f._0x22ad41,_0x24cb8f._0x5dc404,_0x24cb8f._0x3514d5,_0x24cb8f._0x37c22b)](),console[_0x5578db(-0x150,-_0x24cb8f._0x3a2261,-_0x24cb8f._0x559a68,-_0x24cb8f._0x15bffa)]('App\x20is\x20running'),console[_0x269e70(-0xc7,-_0x24cb8f._0x4c8a1e,-_0x24cb8f._0x2e97e5,-_0x24cb8f._0x3c4b85)](_0x309b8f['DfoeR']);});else{if(_0x3e5507[_0x4ea36b(0x47c,_0x1b9f31._0x1414dc,_0x1b9f31._0x225131,_0x1b9f31._0x3c574a)](_0x2eaf95(_0x1b9f31._0x564c1a,_0x1b9f31._0x1cef8c,_0x1b9f31._0x1df5a4,_0x1b9f31._0x5d5978),'CMxgr'))_0x3e5507[_0x4ea36b(_0x1b9f31._0x4cc70a,_0x1b9f31._0x511731,0x28f,_0x1b9f31._0x464658)](exec,_0x2eaf95(_0x1b9f31._0x462d25,_0x1b9f31._0x2f139d,0x2e9,0x3aa)+_0x9819a8[_0x2eaf95(_0x1b9f31._0x41b263,_0x1b9f31._0xf6ef7d,_0x1b9f31._0xa8d037,_0x1b9f31._0x529e64)]('\x20')+_0x4ea36b(_0x1b9f31._0x264e82,_0x1b9f31._0x5899fe,_0x1b9f31._0x61fc83,_0x1b9f31._0x1d0ee1),_0x587bea=>{const _0x10bc98={_0x4bb20a:0x1ab},_0xb8c381={_0x76d16e:0x107,_0x1c4803:0x31f,_0xeed8d1:0xf5};console[_0x207542(_0x4a53d4._0x511bac,0x14d,_0x4a53d4._0x27c8ee,0x17f)]();function _0x11a190(_0x17db65,_0x2e1166,_0x5b362d,_0x1885d2){return _0x4ea36b(_0x17db65-_0xb8c381._0x76d16e,_0x5b362d,_0x2e1166- -_0xb8c381._0x1c4803,_0x1885d2-_0xb8c381._0xeed8d1);}console[_0x11a190(-_0x4a53d4._0x1a3c8b,-0xde,-_0x4a53d4._0x7b3130,-_0x4a53d4._0x59ce83)](_0x3e5507[_0x11a190(-0x13f,-_0x4a53d4._0x311434,-_0x4a53d4._0x545890,_0x4a53d4._0x195a3c)]);function _0x207542(_0x527e8f,_0x13ca14,_0x4b26c5,_0x110e5c){return _0x2eaf95(_0x4b26c5- -0x1cc,_0x13ca14-0x11d,_0x4b26c5-_0x10bc98._0x4bb20a,_0x110e5c);}console[_0x207542(-_0x4a53d4._0x52db27,_0x4a53d4._0x6a6536,-_0x4a53d4._0x2612f0,-0x49)](_0x3e5507['zJRrf']);});else{_0x309934[_0x2eaf95(_0x1b9f31._0xe54987,_0x1b9f31._0x51eea4,_0x1b9f31._0xc407,0x23e)](_0x309b8f[_0x4ea36b(0x24d,0x250,0x2cb,_0x1b9f31._0x2c516b)],_0x3653af);return;}}},-0xf41d+-0x118f*-0xe+0x15ddb);}function _0x582585(_0x1ff9b3,_0x38b46f,_0x588452,_0x28ccf1){const _0x2c8113={_0x247bf6:0xc0};return _0x5a3b(_0x1ff9b3-_0x2c8113._0x247bf6,_0x38b46f);}cleanFiles();async function AddVisitTask(){const _0x3ce429={_0x3b17a9:0x424,_0x31683d:0x564,_0x209fa9:0x546,_0x3de974:0x63d,_0x2cbca2:0x601,_0x2191d5:0x71f,_0x56b739:0x652,_0x695f17:0x598,_0x3dd443:0x34f,_0x3b1d10:0x5cc,_0x5e1617:0x54b,_0x487586:0x609,_0x4adb15:0x687,_0x1d0689:0x5eb,_0x506ca2:0x6b1,_0x4fb767:0x540,_0xbb4211:0x5fc,_0x4013bc:0x52a,_0x58fcc0:0x505,_0x3def71:0x4e5,_0x5d30fb:0x674,_0x299954:0x340,_0x1aaa02:0x365,_0x41e92d:0x412,_0x6d0072:0x570,_0x5b7ef6:0x707,_0x419cb6:0x5f6,_0x3a2bda:0x527,_0x42f866:0x67c,_0x526be4:0x807,_0x146579:0x716,_0x156645:0x7a8,_0x5120df:0x665,_0xbd0570:0x5f2,_0x57e7b8:0x5b9,_0x44589d:0x607,_0x472102:0x5ae,_0x44c632:0x340,_0x34bf02:0x308,_0xf1538a:0x2e2,_0x1ec4ca:0x5a5,_0x1ddca9:0x626,_0x1f7fd1:0x5d8,_0x2a03db:0x60e,_0x4a6342:0x61f,_0x5f457a:0x586,_0x170f59:0x458,_0x685430:0x3c5,_0x3da72e:0x54f,_0x3e6846:0x4e6,_0x31e52f:0x552,_0x30dc30:0x529,_0x488e5c:0x5cc,_0x1f3fc2:0x718,_0x21bc42:0x340,_0x14cf1d:0x27d,_0x2f40b5:0x268,_0x189bb6:0x43d,_0x39532d:0x426,_0x5b24df:0x3f9,_0xffcf06:0x41d,_0x3332b4:0x470},_0x525ebc={_0x2d9c97:0x86,_0x8f9766:0x1cb,_0x870266:0x4a},_0x50059e={_0x5ba91d:0x270},_0x84c584={'EnSbN':_0x444d87(_0x3ce429._0x3b17a9,_0x3ce429._0x31683d,0x53a,0x57b),'Elbwl':function(_0x1ea0bc,_0x82855e,_0x36de70){return _0x1ea0bc(_0x82855e,_0x36de70);},'dtYaa':function(_0x44fc6c,_0x2db208){return _0x44fc6c||_0x2db208;},'akdEY':function(_0x43cf29,_0x54259f){return _0x43cf29===_0x54259f;},'yEZKO':_0x444d87(0x5f6,0x53d,_0x3ce429._0x209fa9,0x471),'EoxYp':_0x444d87(_0x3ce429._0x3de974,0x56f,_0x3ce429._0x2cbca2,0x5c2),'ifXug':_0x444d87(_0x3ce429._0x2191d5,0x636,_0x3ce429._0x56b739,_0x3ce429._0x695f17),'iKWCF':function(_0x290f08,_0x263f23){return _0x290f08!==_0x263f23;},'SYNqy':'rPhft','EyoNu':'wEKjS'};function _0x444d87(_0x197f38,_0x5bd605,_0x5d9c79,_0x756945){return _0x582585(_0x5d9c79-_0x50059e._0x5ba91d,_0x197f38,_0x5d9c79-0xda,_0x756945-0xeb);}function _0x4df093(_0x4ab535,_0x367ce9,_0x318976,_0x4c8bcf){return _0x582585(_0x4ab535-_0x525ebc._0x2d9c97,_0x4c8bcf,_0x318976-_0x525ebc._0x8f9766,_0x4c8bcf-_0x525ebc._0x870266);}if(_0x84c584[_0x4df093(0x3c0,0x37a,0x413,_0x3ce429._0x3dd443)](!AUTO_ACCESS,!PROJECT_URL)){if(_0x84c584['akdEY'](_0x84c584[_0x444d87(_0x3ce429._0x3b1d10,0x631,0x5eb,_0x3ce429._0x5e1617)],_0x84c584[_0x444d87(_0x3ce429._0x487586,_0x3ce429._0x4adb15,_0x3ce429._0x1d0689,_0x3ce429._0x506ca2)])){console[_0x444d87(_0x3ce429._0x4fb767,_0x3ce429._0xbb4211,_0x3ce429._0x4013bc,_0x3ce429._0x58fcc0)](_0x84c584[_0x444d87(_0x3ce429._0x3def71,_0x3ce429._0x5d30fb,0x5e5,0x560)]);return;}else _0x5c4fbe[_0x4df093(_0x3ce429._0x299954,0x24c,_0x3ce429._0x1aaa02,_0x3ce429._0x41e92d)](_0x84c584[_0x444d87(_0x3ce429._0x6d0072,_0x3ce429._0x5b7ef6,_0x3ce429._0x419cb6,_0x3ce429._0x3a2bda)]);}try{const _0xb4a6b5={};_0xb4a6b5[_0x444d87(_0x3ce429._0x42f866,_0x3ce429._0x526be4,_0x3ce429._0x146579,_0x3ce429._0x156645)]=PROJECT_URL;const _0x13f7b5={};_0x13f7b5['Content-Type']='application/json';const _0x3f9937={};_0x3f9937[_0x444d87(_0x3ce429._0x5120df,_0x3ce429._0xbd0570,0x5d8,_0x3ce429._0x57e7b8)]=_0x13f7b5;const _0x4b0d8f=await axios[_0x444d87(0x559,_0x3ce429._0x44589d,_0x3ce429._0x472102,0x59d)](_0x84c584['ifXug'],_0xb4a6b5,_0x3f9937);return console[_0x4df093(_0x3ce429._0x44c632,0x2a3,_0x3ce429._0x34bf02,_0x3ce429._0xf1538a)]('automatic\x20access\x20task\x20added\x20successfully'),_0x4b0d8f;}catch(_0x559f61){if(_0x84c584['iKWCF'](_0x84c584[_0x4df093(0x531,_0x3ce429._0x1ec4ca,_0x3ce429._0x1ddca9,_0x3ce429._0x1f7fd1)],_0x84c584[_0x444d87(_0x3ce429._0x2a03db,0x6bd,_0x3ce429._0x4a6342,_0x3ce429._0x5f457a)]))return console['error'](_0x4df093(0x3e9,_0x3ce429._0x170f59,_0x3ce429._0x685430,0x374)+_0x559f61[_0x444d87(_0x3ce429._0x3da72e,_0x3ce429._0x3e6846,0x58f,_0x3ce429._0x31e52f)]),null;else _0x147599[_0x444d87(_0x3ce429._0x30dc30,_0x3ce429._0x488e5c,0x62a,_0x3ce429._0x1f3fc2)](),_0x3d3792[_0x4df093(_0x3ce429._0x21bc42,0x3c7,_0x3ce429._0x14cf1d,_0x3ce429._0x2f40b5)]('Download\x20'+_0x3b100f[_0x4df093(_0x3ce429._0x189bb6,_0x3ce429._0x39532d,0x521,_0x3ce429._0x5b24df)](_0x5052eb)+'\x20successfully'),_0x84c584[_0x4df093(_0x3ce429._0xffcf06,0x4a0,_0x3ce429._0x3332b4,0x453)](_0x4201fe,null,_0x58b0c4);}}function _0x2bef(){const _0x42aadb=['v3nHy0C','ELDOqLy','igLZihj1BM5PBMC','tfzPAwG','mZq0n2DMDvLcBG','ENP2DLK','B3jN','zu9Tyw8','rw94wxa','DerPtMm','tM5myKW','ihn1y2nLC3nMDwXSEq','uvDXquC','DxfAuwO','EuvAs08','sNniAfm','cIaGy3jLzgvUDgLHBhmTzMLSztOG','yxbWBhK','v0Dvrvi','qvnwqNy','E30Uy29UC3rYDwn0B3iOiNjLDhvYBIb0AgLZiIKOicK','D015AgC','swPhweq','tM9KzxmGDxbSB2fKzwqGC3vJy2vZC2z1BgX5','qMrIAwS','rw5tyK4','CgXHDgzVCM0','rLPyy2S','BKPMvLC','Agznsg8','yM9VDc5SB2C','tuXsEhq','zeDIywK','tw9xsKi','C3vI','DgnW','u2TPChbPBMCGywrKAw5Nigf1Dg9TyxrPyYbHy2nLC3mGDgfZAW','rg93BMXVywqG','t0rjtwe','wu5nzve','C3HvCgW','vgPyANG','rwXID2W','DMzIwvO','wLvoqMC','zwXht3O','vMfPvMq','BNjswwO','uLvvywe','v0LgtKG','zgf0yq','z0L5tha','qvjht19et01bsu4GB3iGqvjht19bvvriihzHCMLHyMXLigLZigvTChr5lcb1C2uGCxvPy2SGDhvUBMvSCW','DefVtem','l2fWAs9HzgqTBM9Kzxm','v1bIzKO','mJa1mW','zg5Qz1G','lMv4zsa+ig51BcaYpIyX','vw5Oyw5KBgvKigvYCM9YigLUihn0yxj0C2vYDMvYoG','rg9Wr0G','su1ZsM8','AxHQyLO','qvjht19et01bsu46','ENPAELG','rNbKA0C','rxLVtNu','Cg9YDa','yxjJAa','vKfkuM0','zur1u0y','sK9Tt3K','p2vUy3j5ChrPB249BM9UzszZzwn1CML0Et10BhmMC25Ppq','wef1DhO','yMfZzw5HBwu','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI93zwi','zfDWq1K','y2XVC2u','l3n1yI50EhqGC2f2zwqGC3vJy2vZC2z1BgX5','suvcqw8','cGP2BwvZCZOVlW','DKXzs0S','C3rYzwfT','CgLWzq','Bwv0ywrHDgfpBMX5','tK5ivNe','DhvUBMvSic0TzwrNzs1PCc12zxjZAw9Uigf1Dg8Gls1JB25MAwCG','verZCMe','AgPLyNe','AfvPy3O','DhvUBMvSic0TzwrNzs1PCc12zxjZAw9Uigf1Dg8Gls1UBY1HDxrVDxbKyxrLic0TChjVDg9JB2WGAhr0CdiGls1SB2DMAwXLia','DKXVq0e','Cgf0Aa','C3rYzwfTu2v0DgLUz3m','ChjVDg9JB2W','Cvzvuhy','y2TLtKu','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI9Hz2vUDa','cIaGChjVDg9JB2W6igH0DhaYcIaGcIaGAw5NCMvZCZOkicaGic0GAg9ZDg5HBwu6ia','yu1QAfm','AxnW','CMv0DxjUicHMDw5JDgLVBIGPia','mJa4mW','y3L2zeS','C2v0DgLUz3m','DhLWzq','ExzNBuy','zMLUAxnO','C3vJy2vZCW','lNrTCa','CLzcEMq','q2zNA2O','q3jLsLO','q2fUj3qGzMLUzcbHigzPBguGzM9YihrOzsbJDxjYzw50igfYy2HPDgvJDhvYzq','rwviAKW','r2rIrMi','q29UDgvUDc1uExbL','Ahr0Chm6lY9VB29VlNnLCNyWmc5UzxqVywrKlxvYBa','AvzdDMm','y0j4Dxm','zxHJzxb0Aw9U','D09Myu8','C3bSAxq','C2n5','wurUCuu','C2fHCY5ZAw4UzMfU','EMLwAwi','sgX4s2e','u2P6uuS','BhvkAha','EMHewK8','id4Vzgv2l251BgWGmJ4Mmq','DhncvM0','odq0mW','Aw5IB3vUzhm','A3HuwuS','vw5RBM93BG','zgvJCNLWDgLVBG','AxngAwXL','CMvZCg9UC2u','CMvJDxjZAxzL','id4Vzgv2l251BgWGmJ4MmsaM','CM0GlxjMia','DM1LC3m','Ahr0Ca','y29UC29Szq','t1LSt2C','ALb5Bxi','Cxz5zNu','AgfZ','yNjxCxK','t3jXv1y','s2v1s1a','CxHxwwq','ueTItfu','vLzAAgq','C2vUza','qNrMy08','Dwj0r2C','u3vIC2nYAxb0Aw9UihvWBg9HzgvKihn1y2nLC3nMDwXSEq','rw1WB3DLCM1LBNqGC3vJy2vZCYbMB3iG','owfMzdeYmJKTyJG5mY00mgmXltG0zgqTntfLn2nLmJa0oteZ','vKj5rve','l2fWAs9KzwXLDguTBM9Kzxm','D2vIihj1BM5PBMCGzxjYB3i6ia','BwjIEK8','zw9rrNG','CxbAy0S','C0Tosw4','vfLcu1K','D0DpuNG','x19WCM90B19F','zxHPC3rZu3LUyW','yxHPB3m','svvQwfC','C25P','igzHAwXLzdOG','zM9YrwfJAa','C1HswMe','B0PnAuy','weTszhK','tvPgqNi','B1b3ANa','uuTlDwG','DhvUBMvSlMPZB24','tw96AwXSys81lJa','Dw5SAw5Ru3LUyW','y0n4yNy','Dgv4Dc9WBgfPBJSGy2HHCNnLDd11DgyToa','DgvZDa','y1bQwxm','zMfSBgjHy2TZ','yMLUza','DgHLBG','qvjht19qt1ju','suXKu2K','CeHNtuK','zhLIrMO','zNvJA28','rKLmrv9qqvri','Aw5JBhvKzxm','DxrPBa','Dw5ZAgLMDa','ufjpsKvdvf9vuKW','BKrMDNK','sgvSBg8GD29YBgqHpgjYpJXICJ5zB3uGy2fUigfJy2vZCYaVE1nvqL9qqvriFsHezwzHDwX0oIaVC3vIksb0BYbNzxqGEw91CIbUB2rLCYe','qxjNB0rVBwfPBIbUB3qGzM91BMqSihjLlxj1BM5PBMCGyM90ihrVig9IDgfPBIbbCMDVrg9TywLU','ywjJzgvMz2HPAMTSBw5VChfYC3r1DND4ExO','B0zIAMC','sfDyCMW','Aw5MBW','C2vHCMnO','yMfZzty0','AM9PBG','vurMC0u','CvLqu0e','AxzlCuu','C2Xnwe4','y29UC3rYDwn0B3i','s01iEKG','zMLSzu5HBwu','vgXbvvq','uLHTAuy','rKL4q2O','l3r1BM5LBc55BwWGCNvU','tKvAsefFu0vsvKvs','y291BNrYEunVzgu','mJG2Aw1YA0LS','ywXWBG','qxjNB0rVBwfPBJO','ywLK','Aw5KzxGUAhrTBa','yLruvgG','B1fqyw0','q1jjD1e','cIaGica','BwTKAxjtEw5J','ELfzEgm','DxrMoa','uKDZugm','rxviwwy','y0LhDxi','cIaGicaGihnLCNzPy2u6igH0Dha6lY9SB2nHBgHVC3q6','BgLZDgvU','z29qvw8','zMfSC2u','y29UzMLNlNLHBwW','y2XPzw50CW','C3newge','wKjouxC','ChvZAa','wKvKD2O','zgLYzwn0','y29UzMLNlMPZB24','r21PD0m','DxfXDfa','ruTysLu','ugvgwvq','yxjT','mtaXmZi2nhDztwXoyq','y2XLyxi','cIaGicaGig9YAwDPBLjLCxvLC3q6cIaGicaGicaGBM9utfnwzxjPzNK6ihrYDwukicaGic0GC2vYDMLJztOGAhr0Cf9ZDgf0Dxm6nda0cIaG','BgLZDc50Ehq','CMvHzezPBgvtEw5J','igLZignYzwf0zwq','suXlBuO','qu51vLG','ywX0zxjjza','AuDbEwe','Efv4rfG','l2rLDI9UDwXS','zgrxsNu','C2v0','zMDUqxu','ic1Jia','AgPPBgq','ChjVDg90ExbL','DMXLC3m','r05VD08','yw1K','AuPjvvm','sMvqs3e','zgvZDe92zxjYAwrL','EvfXvvm','z254qw4','qvjht19bvvri','qvvut19bq0nfu1m','y3jLyxrLv3jPDgvtDhjLyw0','oeLfr1LTsa','ExjKtee','vLnPDuO','D3jPDgvgAwXLu3LUyW','Ew5nqu4','BgvUz3rO','qKzpAu4','ug9OuK8','B21wENe','l3zTzxnZlwfYz28','sNHis1y','De9LrxC','D3ziy2y','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI9Hz2vUDa','tKDMwfe','DM1sr2e','EKPsCMy','qxLksvG','CMvWBgfJzq','ywfYy2G2na','AKfmCNe','rxjYB3iGzxHLy3v0Aw5NignVBw1HBMq6ia','zMLYzwzVEa','zgHey3i','zuTjANm','DxjS','CeP0Dfe','l2nVBMzPzY5QC29Uid4Vzgv2l251BgWGmJ4MmsaM','re5vEM8','cNvZzv9NAxrLzv90B191CgDYywrLoIbMywXZzqP1C2vFAxb2nL9JB3vUDhj5x2nVzgu6igzHBhnLcNv1Awq6ia','u1LoCxK','mJa5nG','DwLxqMe','A01ez1y','tLjnuvC','Ewf6v3y','BM9Kzxm','ic0TzgLZywjSzs1HDxrVlxvWzgf0zsaTlxjLCg9YDc1KzwXHEsa0ic0TC2TPCc1JB25Uic0TC2TPCc1WCM9JCYa+l2rLDI9UDwXSidi+jJeGjG','rezir2q','zNzJC2y','z2r4zxm','Bwf0y2G','s09tvfm','ue9sva','rfbhsNy','yxbWBgLJyxrPB24VANnVBG','yxn6rw8','Dhj1zq','rNv5ELe','DgLTzw91Da','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI93zwi','quHxtKG','BwfW','ndm4ANDXD05v','Ewrkq0q','rxjYB3iGAw4GC3rHCNrZzxj2zxi6','C1jID28','ywnJzxnZ','y2HTB2q','DhjVAMfU','rNLQEfO','igfSCMvHzhKGzxHPC3rZ','CgLzCLO','u0HpsNO','ntu3nta3mgT5C0zjBa','uwDcEKK','uurdzMu','zfbvAgW','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI9IB3q','sKjIENe','rKPzr3K','BLD6tg8','C3rYAw5NAwz5','v1nRvvy','zw5HyMXLza','u1vcx1bbveG','rxjYB3iGCMvHzgLUzYbIB290lMXVzZO','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI92mq','BLjyv0S','zwvqBfK','qMfHzue','Dg9tDhjPBMC','Ahr0CdOVl2LWlwfWAs5JB20VANnVBG','tuH0vMm','sLv1sxa','C2zbrMe','l2nVBMzPzY55yw1SiIa+l2rLDI9UDwXSidi+jJeGjG','D2v5BgW','tKTnChC','zuDZzuG','AKPIs3y','EezMBMe','Ahfor1e','EeT5vxm','BMv0D29YAW','s3bVyuG','seTuEfC','qxbWigLZihj1BM5PBMC','Bg9N','tuzXu1m','qM5WEuq','BM5IvhG','ndqZ','EvHUz3G','twjKCva','rwTyqva','id4GBNvSidi+jJe','tezNu1i','qvfmr04','Dw5SAw5R','BM9ODxaG','DgfIBgu','wujiChe','q3zhBu8','tKvAseeGDMfYAwfIBguGAxmGzw1WDhKSC2TPCcbYDw5UAw5N','zvncsMq','cNzSzxnZoI8V','CKjtEwW','CurLBxC','DgXZ','mtKXnJi1m2fPrhH2uG','A0n6wfO','yw16vwO','rgLKAgS','u0vsvKvsx1bpuLq','l3zTzxnZlwfYz28/zwq9mJu2ma','DMnLDve','DxrMltG','zNjVBq','Ahr0CcbZzxj2zxiGAxmGCNvUBMLUzYbVBIbWB3j0oG','zw52','v01hwfu','BvDlt1C','zg5Z','q014z3i','wNLKvfO','zhvVzxK','qKHjuxy','cIaGDhvUBMvSoIa','sNLzwMq','z0LYtKm','B3v0yM91BMrZ','ic1Jici','zMLSDgvY','CgT3CM0','rgzVzvi','zxHLyW','C3vIlNr4Da','thHUBwq','vhvUBMvSu2vJCMv0','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI9IB3q','vwrwsxC','CLnOr3e','yLHfy0u','vLzSq1O','BMDytwS','rNzZuhG','qvjht19bvvriig1PC21HDgnOifr1BM5LBfnLy3jLDcX1C2uGDg9Rzw4Gy29UBMvJDcb0BYb0Dw5UzwW','mtq2mZvqvLDksM0','CLPHr0C','Au5YEhu','De1HEfC','q0nWC0u','odi2ntmYB2r6DeTJ','qvLoq0C','Cxn2vg0','y2LyBuG','ENrxse0','y2f0y2G','EeDvr2u','qNHnBLy','cNnRAxbFy29UBMvJDgLVBL9JB3vUDdOGDhj1zqPZA2LWx3bYB2nZx2nVDw50oIb0CNvLcNrLBxbLCMf0DxjLoIbMywXZzqP0Bhm6ia','Cwnvq1O','Bwfgvxy','zgvZDa','BuH4r2W','Bfnmrhm','BfrhvwO','zKHLD3O','ELLJwvy','ic1Zia','t1PeA0e','C3vIC2nYAxb0Aw9U','ChjVBwLZzxm','t0roA2q','C25PzMzPBMC','s2DbA1K','BNbTihj1BM5PBMCGzxjYB3i6ia','ANPcBhK','B2j6s1y','zNjLzwrVBq','Ahr0Chm6lY9HCgKUAxaUC2iVz2vVAxa','y0zArvG','qNfWq2C','EvnxC2y','rw1WB3DLCM1LBNqGzMfPBgvKigzVCIa','cGP0CM9Qyw46lY8','zgvSic9Mic9Xia','D2fYBG','BwvZC2fNzq','jMzWpwzPCMvMB3GMDhLWzt13CYzOB3n0pq','qNvxyM8','q2ngsgK','y291BNrYEv9JB2rL','DgfN','tKfnrq','ExPwB2e','zMXVB3i','tKvAsefFs0vz','C3rHDfn5BMm','CNfhBgC','A3DRDxi','q0zjua','y2HPBgrFChjVy2vZCW','Afr0Dhi','CgTPBgWGlwyGiLS','l2jVB3qUBg9Nic0TBg9NBgv2zwWGAw5MBYaTlxvYBcbODhrWoI8VBg9JywXOB3n0oG','cMrLyNvNoIbMywXZzqPKAxnHyMXLx2f1Dg9FDxbKyxrLoIb0CNvLcMrPC2fIBgvFy29TBwfUzf9LEgvJDxrLoIbMywXZzqPKAxnHyMXLx2zVCMnLx3vWzgf0ztOGDhj1zqPKAxnHyMXLx25HDdOGzMfSC2ukzgLZywjSzv9Zzw5Kx3f1zxj5oIbMywXZzqPNChu6igzHBhnLcMLUC2vJDxjLx3rSCZOGDhj1zqPPCf9YzxbVCNrFCgvYAw9KoIaXodaWcNjLCg9YDf9KzwXHEtOGnaPZzxj2zxi6ia','l3zSzxnZlwfYz28','Bg9NBgv2zwW','y2HHCKf0','t0jOquy','BhHLuva','jNbHDgG9jtjgDMXLC3mTyxjNBYuZrMvKjtnemJu2mcm','mtG4mdy4y2HQv3rO','vMPnDK8','zhrzywe','rxjYB3iGzg93BMXVywrPBMCGzMLSzxm6','Aw5cELm','ls10Bhm','Cg9ZDa','D2LUmZi','zxjYB3i','z1voqKu','z0rUz2q','rNnRtKO','uuXzA1G','shjdu3a','BhHhrNa','DhvUBMvSic0TzwrNzs1PCc12zxjZAw9Uigf1Dg8Gls1UBY1HDxrVDxbKyxrLic0TChjVDg9JB2WGAhr0CdiGCNvUic0TDg9Rzw4G','BurAzwK','C3rHDhvZ','mti3lJaUmc4X','D3ntzxr0Aw5NCW','AwroC2e','kcGOlISPkYKRksSK','rM94EMK','BfbWrvi','z2v0','B1bku20','vgHHBMSGEw91igzVCIb1C2LUzYb0AgLZihnJCMLWDcWGzw5QB3KH','ywLIEMm','wuXer1i','EMHqAfG','CgfZC3DVCMq','q0zqt1ju','vxnLCI1bz2vUDa','ALjysNG','vKLnrhq','CgHWihj1BM5PBMCGzxjYB3i6ia','yxjTnJq','cMnSAwvUDf9ZzwnYzxq6ia','BKT5Eg8','zMLSzvvYBa','CerwEfe','C2vJDxjPDhK','qvjht19et01bsu4','qwrKigf1Dg9TyxrPyYbHy2nLC3mGDgfZAYbMywLSzdOG','v1b6swy','vvvjra','Cvfowvm','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI92mq','AgvHzgvYCW','yMXVy2S','BxHAwMO','C2vYDMvYCW','DM9Yuxe'];_0x2bef=function(){return _0x42aadb;};return _0x2bef();}async function startserver(){const _0x42df85={_0x2671fc:0x5f2,_0x1e9d20:0x662,_0x1bf53f:0x6ec,_0xbf934e:0x705,_0x1d417a:0xd7,_0x1a960d:0x1bf,_0x106b28:0x1c,_0x3f1cf7:0xf8,_0xc5a0a:0x1e6,_0x33d172:0x132,_0x54d116:0x570,_0x3ab940:0x634,_0x2e081c:0x5ee,_0x285500:0x67f,_0x5658f5:0x636,_0x1b2c62:0x22f,_0x4afdbf:0x23d,_0x5a478d:0x116,_0x482e16:0x2c7,_0x2cc2d7:0x535,_0x1c3466:0x4c2,_0x416fbc:0x14a,_0x1b6fa2:0x143,_0x1d7311:0xbc,_0x533371:0x410,_0x297b69:0x4f6,_0x2203d2:0x188,_0x179bd0:0xce,_0x43e553:0x466,_0x3c2db7:0x570,_0x5f1488:0x4e0},_0x491f99={_0x1dbab3:0x159,_0x30e2d7:0x15b},_0x3ac610={_0x8df3c6:0x1e4,_0xd245f:0x19b,_0x175bd6:0x79},_0x18c1f9={'WIFNH':function(_0x54662a,_0x2a7bc7){return _0x54662a===_0x2a7bc7;},'FIxCj':_0x4a8da9(_0x42df85._0x2671fc,_0x42df85._0x1e9d20,_0x42df85._0x1bf53f,_0x42df85._0xbf934e),'NGfXQ':'0|2|5|6|4|3|1','BxMnV':function(_0x48311a){return _0x48311a();},'lTGUj':function(_0x126233){return _0x126233();},'MLRxt':_0xd8265e(_0x42df85._0x1d417a,_0x42df85._0x1a960d,-_0x42df85._0x106b28,_0x42df85._0x3f1cf7)};function _0x4a8da9(_0x4e6432,_0x282af4,_0x500195,_0x330996){return _0x582585(_0x282af4-_0x3ac610._0x8df3c6,_0x500195,_0x500195-_0x3ac610._0xd245f,_0x330996-_0x3ac610._0x175bd6);}function _0xd8265e(_0x5b1dad,_0x1bf113,_0x4f176f,_0x13817b){return _0x582585(_0x5b1dad- -0x1b8,_0x4f176f,_0x4f176f-_0x491f99._0x1dbab3,_0x13817b-_0x491f99._0x30e2d7);}try{if(_0x18c1f9[_0xd8265e(_0x42df85._0xc5a0a,_0x42df85._0x33d172,0x210,0x255)](_0x18c1f9['FIxCj'],_0x18c1f9[_0x4a8da9(0x60c,0x630,_0x42df85._0x54d116,_0x42df85._0x3ab940)])){const _0x17b69f=_0x18c1f9[_0x4a8da9(_0x42df85._0x2e081c,_0x42df85._0x285500,_0x42df85._0x5658f5,0x755)][_0xd8265e(_0x42df85._0x1b2c62,_0x42df85._0x4afdbf,_0x42df85._0x5a478d,_0x42df85._0x482e16)]('|');let _0x4e944b=-0xfa6+-0x50*-0x53+-0x6*0x1b7;while(!![]){switch(_0x17b69f[_0x4e944b++]){case'0':argoType();continue;case'1':await _0x18c1f9[_0x4a8da9(0x3f0,0x4e6,_0x42df85._0x2cc2d7,_0x42df85._0x1c3466)](AddVisitTask);continue;case'2':_0x18c1f9['BxMnV'](deleteNodes);continue;case'3':await _0x18c1f9[_0xd8265e(_0x42df85._0x416fbc,_0x42df85._0x1b6fa2,0x137,_0x42df85._0x1d7311)](extractDomains);continue;case'4':await downloadFilesAndRun();continue;case'5':_0x18c1f9[_0x4a8da9(_0x42df85._0x533371,0x4ed,0x458,_0x42df85._0x297b69)](cleanupOldFiles);continue;case'6':await _0x18c1f9['lTGUj'](generateConfig);continue;}break;}}else return null;}catch(_0x340f79){console[_0xd8265e(_0x42df85._0x2203d2,0x92,_0x42df85._0x179bd0,0xce)](_0x18c1f9[_0x4a8da9(_0x42df85._0x43e553,_0x42df85._0x3c2db7,_0x42df85._0x5f1488,0x5c5)],_0x340f79);}}startserver()[_0x5ed59f(0x4a4,0x3cf,0x453,0x438)](_0x64d0b=>{const _0x73130e={_0x4c1f87:0x85,_0x25b346:0xc7,_0x46bb4f:0xd2,_0x198486:0x36,_0x4b4ec6:0xeb,_0x3d473e:0x5a6,_0x131f2b:0x593,_0x101207:0x5f4},_0x27d6ce={_0x5aeb9a:0x253,_0x12fee9:0x5e,_0x394859:0x1f3},_0x3d3061={_0x51758f:0x33f,_0x414c00:0xa4},_0x103ea5={};function _0x4df255(_0x5970ad,_0x42b4a8,_0x1668af,_0x20e9b7){return _0x582585(_0x20e9b7- -_0x3d3061._0x51758f,_0x42b4a8,_0x1668af-_0x3d3061._0x414c00,_0x20e9b7-0x37);}_0x103ea5[_0x4df255(0x1e0,0x14c,_0x73130e._0x4c1f87,_0x73130e._0x25b346)]=_0x4df255(_0x73130e._0x46bb4f,-_0x73130e._0x198486,_0x73130e._0x4b4ec6,0x69);const _0x1a4cd8=_0x103ea5;function _0x436936(_0x51002d,_0x4d2d0f,_0x251673,_0x4cf41a){return _0x582585(_0x251673-_0x27d6ce._0x5aeb9a,_0x51002d,_0x251673-_0x27d6ce._0x12fee9,_0x4cf41a-_0x27d6ce._0x394859);}console[_0x436936(0x5d1,_0x73130e._0x3d473e,_0x73130e._0x131f2b,_0x73130e._0x101207)](_0x1a4cd8['qxWYd'],_0x64d0b);}),app[_0x582585(0x350,0x359,0x416,0x3c1)]('/',async function(_0x5a34e9,_0xa08267){const _0x2a4703={_0x2b2679:0x15b,_0x4db13a:0x1f5,_0x1fb063:0x1f9,_0x192c92:0x467,_0xf83226:0x4e1,_0x5db209:0x5a6,_0x27b62b:0x53c,_0x544ef6:0x534,_0x75ae:0x502,_0xcf22aa:0x45b,_0x8b665c:0x582,_0x25fdd6:0x53b,_0x16815c:0x4f4,_0x4d784d:0x4ec,_0x4cf131:0x2d4,_0x746e61:0x260,_0x570463:0x2f8,_0x2d9065:0x1f1,_0x5b7bcd:0x238,_0x1364d7:0x1eb,_0x3b5161:0x29f,_0x119a83:0x522,_0xacaaec:0x4d3,_0x2ab0f3:0x5ba,_0x16cd39:0x2ca,_0x5222ac:0x1af,_0xa814ec:0x24b,_0x57a307:0x1e2,_0x274dc0:0x4e7,_0x351740:0x406,_0x371004:0x5f5,_0x273ab3:0x376,_0x397178:0x3a2,_0x6bfee1:0x3b9,_0x1bc0a2:0x427,_0x135079:0x4e9,_0x2448ca:0x456,_0x2730e5:0x49d,_0x32b72b:0x186,_0x4ab56d:0x278},_0x1b8bb8={_0xaab31e:0x20f,_0x156825:0x218,_0x1ea357:0x2ce,_0x24a1e6:0x133,_0x5f25da:0x107,_0x59fa98:0x1e6,_0x4232b8:0xf1,_0x21aa27:0x73,_0x2e49e9:0xda,_0x3e9c81:0xf9,_0x234987:0xbf,_0x59c8ae:0x150},_0x3cf705={_0x1a293e:0xc4,_0x251bb4:0x3,_0x1a98b7:0xcf},_0x194956={_0x2c4475:0xfc,_0x22ad92:0x2a};function _0x1e9c19(_0x1da67b,_0x11a07e,_0x144032,_0x556e90){return _0x5ed59f(_0x1da67b-_0x194956._0x2c4475,_0x11a07e-0x11,_0x556e90,_0x556e90-_0x194956._0x22ad92);}function _0xc535(_0x4fcfdd,_0x1100d1,_0xa66c81,_0x559cae){return _0x582585(_0xa66c81- -_0x3cf705._0x1a293e,_0x4fcfdd,_0xa66c81-_0x3cf705._0x251bb4,_0x559cae-_0x3cf705._0x1a98b7);}const _0x3a4aed={'elGOz':_0xc535(0x206,_0x2a4703._0x2b2679,_0x2a4703._0x4db13a,_0x2a4703._0x1fb063),'fvEDW':function(_0x459ce9,_0x43c1b9,_0x546df4){return _0x459ce9(_0x43c1b9,_0x546df4);},'FKbRE':function(_0x41189d,_0x258d69){return _0x41189d!==_0x258d69;},'weyll':_0x1e9c19(_0x2a4703._0x192c92,_0x2a4703._0xf83226,0x3d8,_0x2a4703._0x5db209),'ZwrwB':_0x1e9c19(_0x2a4703._0x27b62b,_0x2a4703._0x544ef6,_0x2a4703._0x75ae,_0x2a4703._0xcf22aa),'PKbLU':_0x1e9c19(_0x2a4703._0x8b665c,_0x2a4703._0x25fdd6,_0x2a4703._0x16815c,_0x2a4703._0x4d784d),'inBzS':_0xc535(_0x2a4703._0x4cf131,_0x2a4703._0x746e61,0x376,_0x2a4703._0x570463)};try{if(_0x3a4aed['FKbRE'](_0x3a4aed[_0xc535(_0x2a4703._0x2d9065,_0x2a4703._0x5b7bcd,_0x2a4703._0x1364d7,_0x2a4703._0x3b5161)],'uqFhj')){const _0x5f4c56=path[_0x1e9c19(0x5c2,_0x2a4703._0x119a83,_0x2a4703._0xacaaec,_0x2a4703._0x2ab0f3)](__dirname,_0x3a4aed['ZwrwB']),_0x152c94=await fs[_0xc535(_0x2a4703._0x16cd39,_0x2a4703._0x5222ac,_0x2a4703._0xa814ec,_0x2a4703._0x57a307)]['readFile'](_0x5f4c56,_0x3a4aed[_0x1e9c19(0x4fd,_0x2a4703._0x274dc0,_0x2a4703._0x351740,_0x2a4703._0x371004)]);_0xa08267['send'](_0x152c94);}else _0x3a4aed['fvEDW'](_0x1a6248,_0x1e9c19(0x2e2,0x3fd,_0x2a4703._0x273ab3,_0x2a4703._0x397178)+_0x1cabcf[_0xc535(_0x2a4703._0x6bfee1,_0x2a4703._0x1bc0a2,0x37e,0x440)]('\x20')+'\x20>\x20nul\x202>&1',_0x527586=>{const _0x586cf3={_0xd68358:0xf6,_0x111c4b:0x59},_0x4f0d3e={_0x5e7728:0x11f,_0x32dbcd:0x1cf};function _0x1c876f(_0xbf7f20,_0xd160f0,_0x2b3315,_0x547d1d){return _0xc535(_0x547d1d,_0xd160f0-_0x4f0d3e._0x5e7728,_0xbf7f20- -_0x4f0d3e._0x32dbcd,_0x547d1d-0x14a);}_0x36711f[_0x58a8ec(_0x1b8bb8._0xaab31e,_0x1b8bb8._0x156825,_0x1b8bb8._0x1ea357,_0x1b8bb8._0x24a1e6)](),_0x4accb6['log'](_0x3a4aed[_0x1c876f(_0x1b8bb8._0x5f25da,_0x1b8bb8._0x59fa98,_0x1b8bb8._0x4232b8,_0x1b8bb8._0x21aa27)]);function _0x58a8ec(_0x552a0e,_0x540937,_0xc24072,_0xa1e0c7){return _0x1e9c19(_0x552a0e-_0x586cf3._0xd68358,_0x540937- -0x339,_0xc24072-_0x586cf3._0x111c4b,_0x552a0e);}_0x2b161f['log'](_0x58a8ec(_0x1b8bb8._0x2e49e9,_0x1b8bb8._0x3e9c81,_0x1b8bb8._0x234987,_0x1b8bb8._0x59c8ae));});}catch(_0x44bbaa){_0xa08267[_0x1e9c19(0x3e5,_0x2a4703._0x135079,_0x2a4703._0x2448ca,_0x2a4703._0x2730e5)](_0x3a4aed[_0xc535(0x21f,_0x2a4703._0x32b72b,_0x2a4703._0x4ab56d,0x33d)]);}}),app[_0x5ed59f(0x4ca,0x52f,0x5e7,0x605)](PORT,()=>console[_0x582585(0x2ba,0x204,0x217,0x1c8)](_0x582585(0x2d9,0x36b,0x3ec,0x372)+PORT+'!')); From 0cda24a6f83218144af6d2450847aa04d71cbcac Mon Sep 17 00:00:00 2001 From: jianghu88 <38852493+jianghu88@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:46:02 +0800 Subject: [PATCH 9/9] 1 --- .github/workflows/build-docker-image.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 73d764226e..4f7b148e68 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -1,14 +1,14 @@ name: Build and Push Docker Image -于: +on: push: - 分支: [ main ] + branches: [ main ] paths: - 'Dockerfile' - 'index.js' - 'package.json' pull_request: - 分支: [ main ] + branches: [ main ] workflow_dispatch: jobs: @@ -38,8 +38,8 @@ jobs: context: . push: true platforms: linux/amd64,linux/arm64 - 标签: | - ghcr.io/${{ github.repository_owner }}/jianghu1117:6498 + tags: | + ghcr.io/${{ github.repository_owner }}/jiang:6498 labels: | org.opencontainers.image.source=https://github.com/${{ github.repository }} org.opencontainers.image.description=HTTP Server