@yesdgq/claude-buddy 1.1.1005 → 1.1.1006

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,35 +1,54 @@
1
1
  # Claude Buddy
2
2
 
3
- > Claude Buddy 是一款简单易用的 CLI 工具,通过可视化方式快速配置 Claude Code、Codex 和 Gemini 等CLI的API密钥、模型映射等信息,可极大的方便和简化您对Claude Code等CLI的使用。
4
- >
3
+ [English](README.md) | [中文](README_zh.md)
5
4
 
6
- - **API 密钥管理**:轻松存储、切换和管理多组API 密钥
7
- - **模型映射**:便捷地自定义和管理模型配置
8
- - **一次安装永久使用**:本地部署,安装后可长久使用
9
- - **快速配置**:可视化界面,几秒钟即可完成设置
10
- - **开发者友好**:专为专注于编码的开发者打造
5
+
6
+
7
+ ## Overview
8
+
9
+ Claude Buddy is a simple and easy-to-use CLI tool that provides a visual way to quickly configure API keys, model mappings, and other settings for CLI tools like Claude Code, Codex, and Gemini. It greatly facilitates and simplifies your use of Claude Code and other CLIs.
10
+
11
+
12
+
13
+ ## Features
14
+
15
+ - **API Key Management**: Easily store, switch, and manage multiple API keys
16
+ - **Model Mapping**: Conveniently customize and manage model configurations
17
+ - **Install Once, Use Forever**: Local deployment, long-term use after installation
18
+ - **Quick Configuration**: Visual interface, complete setup in seconds
19
+ - **Developer-Friendly**: Built for developers focused on coding
20
+
21
+
22
+
23
+ ## Screenshot
11
24
 
12
25
 
13
26
  <center>
14
- <img src="https://i.postimg.cc/9FhKSBXh/Screen-Shot-2026-01-05-094110-369.png" alt="MIT License">
27
+ <img src="https://i.postimg.cc/kXV5DcLt/Screen-Shot-2026-01-22-094423-493.png" alt="Claude Buddy Interface">
15
28
  </center>
16
29
 
17
30
 
18
- ## 通过 npm 安装
31
+ ## Prerequisites
32
+
33
+ - Node.js >= 18.0.0
34
+
19
35
 
20
- ### 安装包
36
+
37
+ ## Installation
38
+
39
+ ### Install Package
21
40
  ```bash
22
41
  npm install -g @yesdgq/claude-buddy -f
23
42
  ```
24
43
 
25
- ### 更新包
44
+ ### Update Package
26
45
 
27
46
  ```bash
28
- npm update -g @yesdgq/claude-buddy
47
+ npm update -g @yesdgq/claude-buddy
29
48
  npm install -g @yesdgq/claude-buddy@latest
30
49
  ```
31
50
 
32
- ### 删除包
51
+ ### Uninstall Package
33
52
 
34
53
  ```bash
35
54
  npm uninstall -g @yesdgq/claude-buddy
@@ -37,12 +56,12 @@ npm uninstall -g @yesdgq/claude-buddy
37
56
 
38
57
 
39
58
 
40
- ## 配置
59
+ ## Configuration
41
60
 
42
61
 
43
- ### 可视化配置界面
62
+ ### Visual Configuration Interface
44
63
 
45
- 使用以下命令启动可视化配置管理界面:
64
+ Use the following command to launch the visual configuration management interface:
46
65
 
47
66
  ```bash
48
67
  ccby config
@@ -50,64 +69,65 @@ ccby config
50
69
 
51
70
 
52
71
 
53
- ## 使用方法
72
+ ## Available Commands
54
73
 
55
74
 
56
75
  ```bash
57
- # 打开配置页面,配置您的 API 地址和访问令牌(TOKEN)
76
+ # Open the configuration page to configure your API endpoint and access token
58
77
  ccby config
59
78
 
60
- # 启动claude code
61
- ccby claude
79
+ # Start claude code
80
+ ccby or claude
62
81
 
63
- # 查看历史会话
82
+ # View history sessions
64
83
  ccby -r
65
84
 
66
- # 继续上次会话
67
- ccby -c
85
+ # Resume last session
86
+ ccby -c
68
87
 
69
- # 查看Claude-Buddy版本
88
+ # View Claude-Buddy version
70
89
  ccby --version
71
90
 
72
- # 查看Claude版本
91
+ # View Claude version
73
92
  claude --version
74
93
 
75
94
  ```
76
- 其它更多方法,可参考 [claude code 使用文档](https://code.claude.com/docs/zh-CN/slash-commands)
77
-
95
+ For more usage methods, please refer to: [Claude Code Documentation](https://code.claude.com/docs/zh-CN/slash-commands)
78
96
 
97
+ > [!IMPORTANT]
98
+ > **Configuration Notice**: After switching or updating configurations, you need to restart Claude Code (CLI tool) for changes to take effect.
79
99
 
80
100
 
81
101
 
82
- ## 使用问题
102
+ ## Troubleshooting
83
103
 
84
- ### Claude Code首次使用问题
85
- 首次配置后使用claude code若仍提示登录,或有如下异常提示等:
104
+ ### First-time Claude Code Issues
105
+ If you are still prompted to log in when using Claude Code for the first time after configuration, or if you see the following error message:
86
106
  ```ruby
87
107
  Unable to connect to Anthropic services
88
108
  Failed to connect to api.anthropic.com: ERR_BAD_REQUEST
89
109
  Please check your internet connection and network settings.
90
110
  ```
91
111
 
92
- 可临时在终端设置环境变量运行一次:
112
+ You can temporarily set environment variables in the terminal and run once:
93
113
  ```bash
94
- # Mac OS使用如下命令:
114
+ # For Mac OS, use the following commands:
95
115
  export ANTHROPIC_BASE_URL=https://your-custom-api-endpoint.com
96
116
  export ANTHROPIC_AUTH_TOKEN=your_api_token
97
117
  claude
98
118
 
99
- #Windows使用如下命令:
119
+ # For Windows, use the following commands:
100
120
  set ANTHROPIC_BASE_URL=https://your-custom-api-endpoint.com
101
121
  set ANTHROPIC_AUTH_TOKEN=your_api_token
102
122
  claude
103
123
 
104
- 之后即可使用ccby config管理你的配置了。
124
+ After that, you can use ccby config to manage your configuration.
105
125
 
106
126
  ```
107
127
 
108
128
 
109
129
 
110
- ## 许可证
130
+ ## License
111
131
 
112
132
  MIT
113
133
 
@@ -19,7 +19,19 @@
19
19
  <div id="app" v-cloak class="app-container">
20
20
  <div class="container">
21
21
  <div class="header-row">
22
- <h1 class="page-title">Claude Buddy</h1>
22
+ <div class="title-group">
23
+ <h1 class="page-title">Claude Buddy</h1>
24
+ <div class="lang-selector">
25
+ <button
26
+ v-for="lang in languages"
27
+ :key="lang.code"
28
+ :class="['lang-btn', { 'lang-btn-active': currentLang === lang.code }]"
29
+ @click="setLanguage(lang.code)"
30
+ >
31
+ {{ lang.label }}
32
+ </button>
33
+ </div>
34
+ </div>
23
35
  <div class="cli-selector">
24
36
  <button
25
37
  v-for="cli in cliList"
@@ -36,8 +48,8 @@
36
48
  <div class="card">
37
49
  <div class="card-header" @click="toggleHelp">
38
50
  <p class="title">
39
- <img src="images/shuoming.png" class="help-icon" alt="使用说明">
40
- 使用说明
51
+ <img src="images/shuoming.png" class="help-icon" :alt="t.helpTitle">
52
+ {{ t.helpTitle }}
41
53
  </p>
42
54
  <i :class="showHelp ? 'fa fa-chevron-up' : 'fa fa-chevron-down'" class="chevron"></i>
43
55
  </div>
@@ -45,61 +57,61 @@
45
57
  <transition name="fade">
46
58
  <div v-if="showHelp" class="help-content">
47
59
  <div>
48
- <p style="line-height: 1.5; margin-bottom: 0.5rem;">Claude Buddy 是一款简单易用的 CLI 工具,通过可视化方式快速配置 Claude Code、Codex 和 Gemini 等CLI的API密钥、模型映射等信息,可极大的方便和简化您对Claude Code等CLI的使用。</p>
60
+ <p style="line-height: 1.5; margin-bottom: 0.5rem;">{{ t.helpDescription }}</p>
49
61
  </div>
50
62
  <div class="info-section">
51
63
  <ul style="padding-left: 0; list-style: none; margin-bottom: 1rem; margin-top: 1.5rem;">
52
64
  <li style="margin-bottom: 0.5rem;">
53
- <strong>API 密钥管理</strong>:轻松存储、切换和管理多组API 密钥
65
+ <strong>{{ t.feature1Title }}</strong>:{{ t.feature1Desc }}
54
66
  </li>
55
67
  <li style="margin-bottom: 0.5rem;">
56
- <strong>模型映射</strong>:便捷地自定义和管理模型配置
68
+ <strong>{{ t.feature2Title }}</strong>:{{ t.feature2Desc }}
57
69
  </li>
58
70
  <li style="margin-bottom: 0.5rem;">
59
- <strong>一次安装永久使用</strong>:本地部署,安装后可长久使用
71
+ <strong>{{ t.feature3Title }}</strong>:{{ t.feature3Desc }}
60
72
  </li>
61
73
  <li style="margin-bottom: 0.5rem;">
62
- <strong>快速配置</strong>:可视化界面,几秒钟即可完成设置
74
+ <strong>{{ t.feature4Title }}</strong>:{{ t.feature4Desc }}
63
75
  </li>
64
76
  <li style="margin-bottom: 0.5rem;">
65
- <strong>开发者友好</strong>:专为专注于编码的开发者打造
77
+ <strong>{{ t.feature5Title }}</strong>:{{ t.feature5Desc }}
66
78
  </li>
67
79
  </ul>
68
80
 
69
81
  <h3 style="margin-top: 1.5rem;">
70
82
  <i class="fa fa-book text-blue-500"></i>
71
- 命令使用
83
+ {{ t.commandUsageTitle }}
72
84
  </h3>
73
85
  <ul style="padding-left: 1rem;">
74
86
  <li>
75
87
  <i class="fa fa-chevron-right"></i>
76
- <code>ccby config</code> 打开配置页面,配置您的 API 地址和访问令牌(TOKEN)
88
+ <code>ccby config</code> {{ t.command1 }}
77
89
  </li>
78
90
  <li>
79
91
  <i class="fa fa-chevron-right"></i>
80
- <code>ccby</code> 或 <code>claude</code> 启动claude code
92
+ <code>ccby</code> 或 <code>claude</code> {{ t.command2 }}
81
93
  </li>
82
94
  <li>
83
95
  <i class="fa fa-chevron-right"></i>
84
- <code>ccby -r</code> 查看历史会话
96
+ <code>ccby -r</code> {{ t.command3 }}
85
97
  </li>
86
98
  <li>
87
99
  <i class="fa fa-chevron-right"></i>
88
- <code>ccby -c</code> 继续上次会话
100
+ <code>ccby -c</code> {{ t.command4 }}
89
101
  </li>
90
102
  <li>
91
103
  <i class="fa fa-chevron-right"></i>
92
- <code>ccby --version</code> 查看Claude-Buddy版本
104
+ <code>ccby --version</code> {{ t.command5 }}
93
105
  </li>
94
106
  <li>
95
107
  <i class="fa fa-chevron-right"></i>
96
- <code>claude --version</code> 查看Claude版本
108
+ <code>claude --version</code> {{ t.command6 }}
97
109
  </li>
98
110
  </ul>
99
111
 
100
112
  <div style="margin-top: 1.5rem; padding: 0.75rem; background-color: #e5e7eb; border-radius: 5px; color: #ef4444;">
101
113
  <i class="fa fa-exclamation-triangle"></i>
102
- 切换或更新配置后,需重启 Claude Code(CLI工具)方可生效。
114
+ {{ t.restartNotice }}
103
115
  </div>
104
116
  </div>
105
117
  </div>
@@ -109,7 +121,7 @@
109
121
  <!-- 加载状态 -->
110
122
  <div v-if="loading" class="loading-container">
111
123
  <i class="fa fa-spinner fa-spin"></i>
112
- <p>加载中...</p>
124
+ <p>{{ t.loading }}</p>
113
125
  </div>
114
126
 
115
127
 
@@ -137,7 +149,7 @@
137
149
  @input="adjustInputWidth($event, index)"
138
150
  :ref="'nameInput' + index"
139
151
  >
140
- <span v-if="index === config.activeIndex" class="current-use-label">当前使用</span>
152
+ <span v-if="index === config.activeIndex" class="current-use-label">{{ t.currentUse }}</span>
141
153
  </div>
142
154
  <div class="actions">
143
155
  <!-- 启用按钮 (非当前使用的配置显示) -->
@@ -146,17 +158,17 @@
146
158
  @click="setAsActive(index)"
147
159
  :disabled="config.AUTH.length === 1 && isEmptyConfig(auth)"
148
160
  class="btn-activate"
149
- :title="(config.AUTH.length === 1 && isEmptyConfig(auth)) ? '空配置不能启用' : '启用此配置'"
161
+ :title="(config.AUTH.length === 1 && isEmptyConfig(auth)) ? t.emptyConfigCannotActivate : t.activateThisConfig"
150
162
  >
151
163
  <img src="images/play.png" class="btn-icon" alt="">
152
- <span>启用</span>
164
+ <span>{{ t.activate }}</span>
153
165
  </button>
154
166
  <!-- 删除按钮 -->
155
167
  <button
156
168
  @click="deleteAuth(index)"
157
169
  :disabled="config.AUTH.length === 1 && isEmptyConfig(auth)"
158
170
  class="btn-delete"
159
- :title="(config.AUTH.length === 1 && isEmptyConfig(auth)) ? '空配置不能删除' : '删除此配置'"
171
+ :title="(config.AUTH.length === 1 && isEmptyConfig(auth)) ? t.emptyConfigCannotDelete : t.deleteThisConfig"
160
172
  >
161
173
  <i class="fa fa-trash"></i>
162
174
  </button>
@@ -206,14 +218,14 @@
206
218
  <div class="models-header">
207
219
  <label>
208
220
  <i class="fa fa-cogs"></i>
209
- 模型管理
221
+ {{ t.modelManagement }}
210
222
  </label>
211
223
  <button
212
224
  @click="toggleModelSection(index)"
213
225
  type="button"
214
226
  >
215
227
  <i :class="showModelSections[index] ? 'fa fa-chevron-up' : 'fa fa-chevron-down'"></i>
216
- {{ showModelSections[index] ? '收起' : '展开' }}
228
+ {{ showModelSections[index] ? t.collapse : t.expand }}
217
229
  </button>
218
230
  </div>
219
231
 
@@ -222,17 +234,17 @@
222
234
  <input
223
235
  v-model="model.key"
224
236
  type="text"
225
- placeholder="模型名称"
237
+ :placeholder="t.modelNamePlaceholder"
226
238
  >
227
239
  <span class="separator">=</span>
228
240
  <input
229
241
  v-model="model.value"
230
242
  type="text"
231
- placeholder="模型值"
243
+ :placeholder="t.modelValuePlaceholder"
232
244
  >
233
245
  <button
234
246
  @click="deleteModel(index, modelIndex)"
235
- title="删除此模型"
247
+ :title="t.deleteThisModel"
236
248
  >
237
249
  <i class="fa fa-times"></i>
238
250
  </button>
@@ -243,7 +255,7 @@
243
255
  class="btn-add-model"
244
256
  >
245
257
  <i class="fa fa-plus"></i>
246
- 添加模型
258
+ {{ t.addModel }}
247
259
  </button>
248
260
  </div>
249
261
  </div>
@@ -253,14 +265,14 @@
253
265
  <div class="env-header">
254
266
  <label>
255
267
  <i class="fa fa-cogs"></i>
256
- 环境变量
268
+ {{ t.envVariables }}
257
269
  </label>
258
270
  <button
259
271
  @click="toggleEnvSection(index)"
260
272
  type="button"
261
273
  >
262
274
  <i :class="showEnvSections[index] ? 'fa fa-chevron-up' : 'fa fa-chevron-down'"></i>
263
- {{ showEnvSections[index] ? '收起' : '展开' }}
275
+ {{ showEnvSections[index] ? t.collapse : t.expand }}
264
276
  </button>
265
277
  </div>
266
278
 
@@ -269,17 +281,17 @@
269
281
  <input
270
282
  v-model="env.key"
271
283
  type="text"
272
- placeholder="变量名"
284
+ :placeholder="t.variableNamePlaceholder"
273
285
  >
274
286
  <span class="separator">=</span>
275
287
  <input
276
288
  v-model="env.value"
277
289
  type="text"
278
- placeholder="变量值"
290
+ :placeholder="t.variableValuePlaceholder"
279
291
  >
280
292
  <button
281
293
  @click="deleteEnv(index, envIndex)"
282
- title="删除此环境变量"
294
+ :title="t.deleteThisEnvVar"
283
295
  >
284
296
  <i class="fa fa-times"></i>
285
297
  </button>
@@ -290,7 +302,7 @@
290
302
  class="btn-add-env"
291
303
  >
292
304
  <i class="fa fa-plus"></i>
293
- 添加环境变量
305
+ {{ t.addEnvVariable }}
294
306
  </button>
295
307
  </div>
296
308
  </div>
@@ -303,7 +315,7 @@
303
315
  class="btn btn-primary"
304
316
  >
305
317
  <i class="fa fa-plus-circle"></i>
306
- 添加新配置
318
+ {{ t.addNewConfig }}
307
319
  </button>
308
320
 
309
321
  <!-- 保存按钮 -->
@@ -314,7 +326,7 @@
314
326
  class="btn btn-success"
315
327
  >
316
328
  <i :class="saving ? 'fa fa-spinner fa-spin' : 'fa fa-save'"></i>
317
- {{ saving ? '保存中...' : '保存配置' }}
329
+ {{ saving ? t.saving : t.saveConfig }}
318
330
  </button>
319
331
 
320
332
  <button
@@ -322,7 +334,7 @@
322
334
  class="btn btn-gray"
323
335
  >
324
336
  <i class="fa fa-refresh"></i>
325
- 重新加载
337
+ {{ t.reload }}
326
338
  </button>
327
339
  </div>
328
340
  </div>
@@ -330,6 +342,19 @@
330
342
 
331
343
  <!-- Toast 容器 -->
332
344
  <div id="toast-container"></div>
345
+
346
+ <!-- 自定义确认对话框 -->
347
+ <div v-if="confirmDialog.show" class="confirm-dialog-overlay" @click="confirmDialog.onCancel">
348
+ <div class="confirm-dialog" @click.stop>
349
+ <div class="confirm-dialog-content">
350
+ <p>{{ confirmDialog.message }}</p>
351
+ </div>
352
+ <div class="confirm-dialog-actions">
353
+ <button @click="confirmDialog.onCancel" class="btn-cancel">{{ t.cancel }}</button>
354
+ <button @click="confirmDialog.onConfirm" class="btn-confirm">{{ t.confirm }}</button>
355
+ </div>
356
+ </div>
357
+ </div>
333
358
  </div>
334
359
 
335
360
  <script src="config.js"></script>
package/assets/config.js CHANGED
@@ -14,6 +14,11 @@ createApp({
14
14
  configPath: '',
15
15
  showHelp: false,
16
16
  currentCli: 'Claude',
17
+ currentLang: 'en',
18
+ languages: [
19
+ { code: 'en', label: 'English' },
20
+ { code: 'zh', label: '中文' }
21
+ ],
17
22
  cliList: [
18
23
  { name: 'Claude', label: 'Claude', icon: 'images/claude.png' },
19
24
  { name: 'Codex', label: 'Codex', icon: 'images/gpt.png' },
@@ -21,10 +26,168 @@ createApp({
21
26
  ],
22
27
  // 拖拽相关状态
23
28
  draggingIndex: null,
24
- dragOverIndex: null
29
+ dragOverIndex: null,
30
+ // 确认对话框
31
+ confirmDialog: {
32
+ show: false,
33
+ message: '',
34
+ onConfirm: null,
35
+ onCancel: null
36
+ },
37
+ // 翻译数据
38
+ translations: {
39
+ en: {
40
+ helpTitle: 'User Guide',
41
+ helpDescription: 'Claude Buddy is an easy-to-use CLI tool that helps you quickly configure API keys, model mappings, and other settings for CLI tools like Claude Code, Codex, and Gemini through a visual interface. It greatly simplifies your usage of these CLI tools.',
42
+ feature1Title: 'API Key Management',
43
+ feature1Desc: 'Easily store, switch, and manage multiple API keys',
44
+ feature2Title: 'Model Mapping',
45
+ feature2Desc: 'Conveniently customize and manage model configurations',
46
+ feature3Title: 'One-time Installation, Permanent Use',
47
+ feature3Desc: 'Local deployment with long-term usage after installation',
48
+ feature4Title: 'Quick Configuration',
49
+ feature4Desc: 'Visual interface, complete settings in seconds',
50
+ feature5Title: 'Developer Friendly',
51
+ feature5Desc: 'Designed for developers focused on coding',
52
+ commandUsageTitle: 'Command Usage',
53
+ command1: 'Open the configuration page to set your API URL and access token',
54
+ command2: 'Launch Claude Code',
55
+ command3: 'View conversation history',
56
+ command4: 'Resume the last conversation',
57
+ command5: 'View Claude-Buddy version',
58
+ command6: 'View Claude version',
59
+ restartNotice: 'After switching or updating configurations, you need to restart Claude Code (CLI tool) for changes to take effect.',
60
+ loading: 'Loading...',
61
+ currentUse: 'Current',
62
+ activate: 'Activate',
63
+ activateThisConfig: 'Activate this configuration',
64
+ emptyConfigCannotActivate: 'Empty configuration cannot be activated',
65
+ deleteThisConfig: 'Delete this configuration',
66
+ emptyConfigCannotDelete: 'Empty configuration cannot be deleted',
67
+ modelManagement: 'Model Management',
68
+ collapse: 'Collapse',
69
+ expand: 'Expand',
70
+ modelNamePlaceholder: 'Model name',
71
+ modelValuePlaceholder: 'Model value',
72
+ deleteThisModel: 'Delete this model',
73
+ addModel: 'Add Model',
74
+ envVariables: 'Environment Variables',
75
+ variableNamePlaceholder: 'Variable name',
76
+ variableValuePlaceholder: 'Variable value',
77
+ deleteThisEnvVar: 'Delete this environment variable',
78
+ addEnvVariable: 'Add Environment Variable',
79
+ addNewConfig: 'Add New Configuration',
80
+ saveConfig: 'Save Configuration',
81
+ saving: 'Saving...',
82
+ reload: 'Reload',
83
+ confirmDeleteWithName: 'Are you sure you want to delete configuration {name}?',
84
+ confirmDeleteWithIndex: 'Are you sure you want to delete configuration #{index}?',
85
+ emptyConfigCannotDeleteToast: 'Empty configuration cannot be deleted',
86
+ configLoadSuccess: 'Configuration loaded successfully',
87
+ configLoadFailed: 'Failed to load configuration',
88
+ pleaseFillConfig: 'Please fill at least one complete configuration',
89
+ configSaveSuccess: 'Configuration saved successfully!',
90
+ configSaveFailed: 'Failed to save configuration',
91
+ configDeleted: 'Configuration deleted',
92
+ deleteFailed: 'Failed to delete',
93
+ configActivated: 'Configuration activated',
94
+ notAvailableYet: 'Not available yet, stay tuned',
95
+ saveFailed: 'Save failed',
96
+ cancel: 'Cancel',
97
+ confirm: 'Confirm'
98
+ },
99
+ zh: {
100
+ helpTitle: '使用说明',
101
+ helpDescription: 'Claude Buddy 是一款简单易用的 CLI 工具,通过可视化方式快速配置 Claude Code、Codex 和 Gemini 等CLI的API密钥、模型映射等信息,可极大的方便和简化您对Claude Code等CLI的使用。',
102
+ feature1Title: 'API 密钥管理',
103
+ feature1Desc: '轻松存储、切换和管理多组API 密钥',
104
+ feature2Title: '模型映射',
105
+ feature2Desc: '便捷地自定义和管理模型配置',
106
+ feature3Title: '一次安装永久使用',
107
+ feature3Desc: '本地部署,安装后可长久使用',
108
+ feature4Title: '快速配置',
109
+ feature4Desc: '可视化界面,几秒钟即可完成设置',
110
+ feature5Title: '开发者友好',
111
+ feature5Desc: '专为专注于编码的开发者打造',
112
+ commandUsageTitle: '命令使用',
113
+ command1: '打开配置页面,配置您的 API 地址和访问令牌(TOKEN)',
114
+ command2: '启动claude code',
115
+ command3: '查看历史会话',
116
+ command4: '继续上次会话',
117
+ command5: '查看Claude-Buddy版本',
118
+ command6: '查看Claude版本',
119
+ restartNotice: '切换或更新配置后,需重启 Claude Code(CLI工具)方可生效。',
120
+ loading: '加载中...',
121
+ currentUse: '当前使用',
122
+ activate: '启用',
123
+ activateThisConfig: '启用此配置',
124
+ emptyConfigCannotActivate: '空配置不能启用',
125
+ deleteThisConfig: '删除此配置',
126
+ emptyConfigCannotDelete: '空配置不能删除',
127
+ modelManagement: '模型管理',
128
+ collapse: '收起',
129
+ expand: '展开',
130
+ modelNamePlaceholder: '模型名称',
131
+ modelValuePlaceholder: '模型值',
132
+ deleteThisModel: '删除此模型',
133
+ addModel: '添加模型',
134
+ envVariables: '环境变量',
135
+ variableNamePlaceholder: '变量名',
136
+ variableValuePlaceholder: '变量值',
137
+ deleteThisEnvVar: '删除此环境变量',
138
+ addEnvVariable: '添加环境变量',
139
+ addNewConfig: '添加新配置',
140
+ saveConfig: '保存配置',
141
+ saving: '保存中...',
142
+ reload: '重新加载',
143
+ confirmDeleteWithName: '确定要删除配置 {name} 吗?',
144
+ confirmDeleteWithIndex: '确定要删除配置 #{index} 吗?',
145
+ emptyConfigCannotDeleteToast: '空配置项不能删除',
146
+ configLoadSuccess: '配置加载成功',
147
+ configLoadFailed: '加载配置失败',
148
+ pleaseFillConfig: '请至少填写一个完整的配置',
149
+ configSaveSuccess: '配置保存成功!',
150
+ configSaveFailed: '保存配置失败',
151
+ configDeleted: '配置已删除',
152
+ deleteFailed: '删除失败',
153
+ configActivated: '配置启用成功',
154
+ notAvailableYet: '暂未开放,敬请期待',
155
+ saveFailed: '保存失败',
156
+ cancel: '取消',
157
+ confirm: '确认'
158
+ }
159
+ }
25
160
  };
26
161
  },
162
+ computed: {
163
+ t() {
164
+ return this.translations[this.currentLang];
165
+ }
166
+ },
27
167
  methods: {
168
+ // 显示确认对话框
169
+ showConfirmDialog(message, onConfirm, onCancel) {
170
+ this.confirmDialog = {
171
+ show: true,
172
+ message,
173
+ onConfirm: () => {
174
+ this.confirmDialog.show = false;
175
+ if (onConfirm) onConfirm();
176
+ },
177
+ onCancel: () => {
178
+ this.confirmDialog.show = false;
179
+ if (onCancel) onCancel();
180
+ }
181
+ };
182
+ },
183
+
184
+ // 切换语言
185
+ setLanguage(langCode) {
186
+ this.currentLang = langCode;
187
+ // 保存语言设置到 localStorage
188
+ localStorage.setItem('ccby-lang', langCode);
189
+ },
190
+
28
191
  // 重置服务器倒计时
29
192
  async resetTimer() {
30
193
  try {
@@ -139,11 +302,11 @@ createApp({
139
302
  // 最后更新 config
140
303
  this.config = config;
141
304
 
142
- this.showToast('配置加载成功');
305
+ this.showToast(this.t.configLoadSuccess);
143
306
  // 重置服务器倒计时
144
307
  this.resetTimer();
145
308
  } catch (err) {
146
- this.showToast('加载配置失败: ' + (err.response?.data?.error || err.message), 'error');
309
+ this.showToast(this.t.configLoadFailed + ': ' + (err.response?.data?.error || err.message), 'error');
147
310
  } finally {
148
311
  this.loading = false;
149
312
  }
@@ -162,7 +325,7 @@ createApp({
162
325
 
163
326
  // 如果过滤后没有配置项,确保至少有一个空配置项在前端显示
164
327
  if (configToSave.AUTH.length === 0 && this.config.AUTH.length > 0) {
165
- this.showToast('请至少填写一个完整的配置', 'error');
328
+ this.showToast(this.t.pleaseFillConfig, 'error');
166
329
  return;
167
330
  }
168
331
 
@@ -170,11 +333,11 @@ createApp({
170
333
  config: configToSave,
171
334
  cliType: this.currentCli.toLowerCase()
172
335
  });
173
- this.showToast('配置保存成功!');
336
+ this.showToast(this.t.configSaveSuccess);
174
337
  // 重置服务器倒计时
175
338
  this.resetTimer();
176
339
  } catch (err) {
177
- this.showToast('保存配置失败: ' + (err.response?.data?.error || err.message), 'error');
340
+ this.showToast(this.t.configSaveFailed + ': ' + (err.response?.data?.error || err.message), 'error');
178
341
  } finally {
179
342
  this.saving = false;
180
343
  }
@@ -198,16 +361,17 @@ createApp({
198
361
  async deleteAuth(index) {
199
362
  // 检查是否是唯一的空配置项
200
363
  if (this.config.AUTH.length === 1 && this.isEmptyConfig(this.config.AUTH[index])) {
201
- this.showToast('空配置项不能删除', 'error');
364
+ this.showToast(this.t.emptyConfigCannotDeleteToast, 'error');
202
365
  return;
203
366
  }
204
367
 
205
368
  const authName = this.config.AUTH[index].name;
206
369
  const confirmMsg = authName
207
- ? `确定要删除配置 ${authName} 吗?`
208
- : `确定要删除配置 #${index + 1} 吗?`;
370
+ ? this.t.confirmDeleteWithName.replace('{name}', authName)
371
+ : this.t.confirmDeleteWithIndex.replace('{index}', index + 1);
209
372
 
210
- if (confirm(confirmMsg)) {
373
+ // 使用自定义确认对话框
374
+ this.showConfirmDialog(confirmMsg, async () => {
211
375
  // 保存要删除的数据,以防保存失败时恢复
212
376
  const deletedAuth = this.config.AUTH[index];
213
377
  const deletedTokenState = this.showTokens[index];
@@ -258,11 +422,11 @@ createApp({
258
422
  config: configToSave,
259
423
  cliType: this.currentCli.toLowerCase()
260
424
  });
261
- this.showToast('配置已删除');
425
+ this.showToast(this.t.configDeleted);
262
426
  // 重置服务器倒计时
263
427
  this.resetTimer();
264
428
  } catch (err) {
265
- this.showToast('删除失败: ' + (err.response?.data?.error || err.message), 'error');
429
+ this.showToast(this.t.deleteFailed + ': ' + (err.response?.data?.error || err.message), 'error');
266
430
  // 如果保存失败,恢复删除的项
267
431
  this.config.AUTH.splice(index, 0, deletedAuth);
268
432
  this.showTokens.splice(index, 0, deletedTokenState);
@@ -270,7 +434,7 @@ createApp({
270
434
  this.showModelSections.splice(index, 0, deletedModelState);
271
435
  this.config.activeIndex = oldActiveIndex;
272
436
  }
273
- }
437
+ });
274
438
  },
275
439
 
276
440
  async setAsActive(index) {
@@ -293,11 +457,11 @@ createApp({
293
457
  config: configToSave,
294
458
  cliType: this.currentCli.toLowerCase()
295
459
  });
296
- this.showToast('配置启用成功');
460
+ this.showToast(this.t.configActivated);
297
461
  // 重置服务器倒计时
298
462
  this.resetTimer();
299
463
  } catch (err) {
300
- this.showToast('保存配置失败: ' + (err.response?.data?.error || err.message), 'error');
464
+ this.showToast(this.t.configSaveFailed + ': ' + (err.response?.data?.error || err.message), 'error');
301
465
  // 如果保存失败,恢复原来的 activeIndex
302
466
  this.config.activeIndex = oldIndex;
303
467
  }
@@ -355,7 +519,7 @@ createApp({
355
519
  // 选择 CLI 类型
356
520
  async selectCli(cliName) {
357
521
  if (cliName === 'Codex' || cliName === 'Gemini') {
358
- this.showToast('暂未开放,敬请期待', 'error');
522
+ this.showToast(this.t.notAvailableYet, 'error');
359
523
  this.resetTimer();
360
524
  return;
361
525
  }
@@ -364,7 +528,7 @@ createApp({
364
528
  // 切换 CLI 时重新加载配置
365
529
  await this.loadConfig(cliName.toLowerCase());
366
530
  } else {
367
- this.showToast('功能暂未开放,敬请期待!', 'error');
531
+ this.showToast(this.t.notAvailableYet + '!', 'error');
368
532
  }
369
533
  },
370
534
 
@@ -458,7 +622,7 @@ createApp({
458
622
  // 重置服务器倒计时
459
623
  this.resetTimer();
460
624
  } catch (err) {
461
- this.showToast('保存失败: ' + (err.response?.data?.error || err.message), 'error');
625
+ this.showToast(this.t.saveFailed + ': ' + (err.response?.data?.error || err.message), 'error');
462
626
  // 恢复原始数据
463
627
  this.config.AUTH = oldAuth;
464
628
  this.config.activeIndex = oldActiveIndex;
@@ -469,6 +633,11 @@ createApp({
469
633
  }
470
634
  },
471
635
  mounted() {
636
+ // 从 localStorage 读取语言设置
637
+ const savedLang = localStorage.getItem('ccby-lang');
638
+ if (savedLang && (savedLang === 'en' || savedLang === 'zh')) {
639
+ this.currentLang = savedLang;
640
+ }
472
641
  this.loadConfig();
473
642
  },
474
643
  updated() {
@@ -112,6 +112,73 @@ code {
112
112
  }
113
113
  }
114
114
 
115
+ /* 确认对话框 */
116
+ .confirm-dialog-overlay {
117
+ position: fixed;
118
+ top: 0;
119
+ left: 0;
120
+ right: 0;
121
+ bottom: 0;
122
+ background-color: rgba(0, 0, 0, 0.5);
123
+ display: flex;
124
+ align-items: center;
125
+ justify-content: center;
126
+ z-index: 10000;
127
+ }
128
+
129
+ .confirm-dialog {
130
+ background: white;
131
+ border-radius: 12px;
132
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
133
+ min-width: 320px;
134
+ max-width: 400px;
135
+ padding: 1.5rem;
136
+ }
137
+
138
+ .confirm-dialog-content {
139
+ margin-bottom: 1.5rem;
140
+ }
141
+
142
+ .confirm-dialog-content p {
143
+ font-size: 1rem;
144
+ color: #1f2937;
145
+ margin: 0;
146
+ line-height: 1.5;
147
+ }
148
+
149
+ .confirm-dialog-actions {
150
+ display: flex;
151
+ gap: 0.75rem;
152
+ justify-content: flex-end;
153
+ }
154
+
155
+ .confirm-dialog-actions button {
156
+ padding: 0.5rem 1rem;
157
+ border: none;
158
+ border-radius: 6px;
159
+ font-size: 0.875rem;
160
+ cursor: pointer;
161
+ transition: all 0.2s;
162
+ }
163
+
164
+ .btn-cancel {
165
+ background-color: #e5e7eb;
166
+ color: #374151;
167
+ }
168
+
169
+ .btn-cancel:hover {
170
+ background-color: #d1d5db;
171
+ }
172
+
173
+ .btn-confirm {
174
+ background-color: #ef4444;
175
+ color: white;
176
+ }
177
+
178
+ .btn-confirm:hover {
179
+ background-color: #dc2626;
180
+ }
181
+
115
182
  /* 容器布局 */
116
183
  .app-container {
117
184
  min-height: 100vh;
@@ -132,6 +199,12 @@ code {
132
199
  margin-bottom: 1.5rem;
133
200
  }
134
201
 
202
+ .title-group {
203
+ display: flex;
204
+ align-items: center;
205
+ gap: 20px;
206
+ }
207
+
135
208
  .page-title {
136
209
  font-size: 2rem;
137
210
  font-weight: bold;
@@ -148,6 +221,34 @@ code {
148
221
  padding: 1.5px;
149
222
  }
150
223
 
224
+ /* 语言选择器 */
225
+ .lang-selector {
226
+ display: flex;
227
+ gap: 2px;
228
+ background-color: #e5e7eb;
229
+ border-radius: 4px;
230
+ padding: 1px;
231
+ margin-left: 0;
232
+ }
233
+
234
+ .lang-btn {
235
+ background: none;
236
+ border: none;
237
+ padding: 4px 8px;
238
+ cursor: pointer;
239
+ border-radius: 4px;
240
+ color: #6b7280;
241
+ font-size: 0.75rem;
242
+ transition: all 0.2s;
243
+ min-width: 50px;
244
+ text-align: center;
245
+ }
246
+
247
+ .lang-btn-active {
248
+ background-color: #3b82f6;
249
+ color: white;
250
+ }
251
+
151
252
  .cli-btn {
152
253
  display: flex;
153
254
  align-items: center;
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- (function(_0x291a7a,_0x3b530a){const _0x4c1515=_0x291a7a();function _0x78bb72(_0x3f1f46,_0x249926,_0x34d5e9,_0xb6e9a0){return _0x180e(_0x3f1f46-0x36d,_0x249926);}function _0x20b782(_0x29a55d,_0x691730,_0x4b7eda,_0x4ae198){return _0x180e(_0x29a55d-0x32d,_0x4b7eda);}while(!![]){try{const _0xbb1468=-parseInt(_0x78bb72(0x5a1,0x544,0x635,0x55c))/(-0x1b45+-0x1*0x13e5+-0x325*-0xf)+parseInt(_0x20b782(0x45b,0x4bf,0x455,0x3f0))/(-0x2be*0x1+0xa9*-0x4+0x5c*0xf)*(parseInt(_0x20b782(0x4e6,0x4f2,0x575,0x503))/(0x1f1f+-0x5*0x63f+0x1*0x1f))+parseInt(_0x78bb72(0x5b7,0x5d6,0x5e4,0x51c))/(0x9*0x45+0x16*-0x34+0x1*0x20f)*(parseInt(_0x78bb72(0x525,0x548,0x4c9,0x4eb))/(0xc92*0x2+-0xdb4+0x4f*-0x25))+parseInt(_0x20b782(0x502,0x52b,0x4fd,0x47f))/(0xb*-0x336+0x72a+0x1c2e)+-parseInt(_0x20b782(0x510,0x474,0x485,0x500))/(0x68b*-0x2+-0x1*0x252a+0x3247)*(parseInt(_0x20b782(0x454,0x46b,0x3e6,0x499))/(0x23d*-0x7+-0x1380+0x2333))+-parseInt(_0x20b782(0x504,0x58e,0x573,0x463))/(0x1*-0x137b+0x15e2*0x1+-0x2*0x12f)+-parseInt(_0x20b782(0x523,0x4b3,0x4a8,0x4dd))/(-0x65f+0x16e4+-0x107b)*(-parseInt(_0x20b782(0x472,0x468,0x449,0x4cc))/(-0x2555+0x3*-0x895+0x3f1f));if(_0xbb1468===_0x3b530a)break;else _0x4c1515['push'](_0x4c1515['shift']());}catch(_0x364556){_0x4c1515['push'](_0x4c1515['shift']());}}}(_0x2a23,0x1*-0x145f5d+0x33145+0x1dab86));const {spawn:_0x59a27e}=require(_0x29a439(0x6b,-0x1a,0x83,-0xbe)+_0x25b31e(0x3c,0xa1,0x10f,0x28)+_0x25b31e(0x183,0x153,0x1ab,0x162));function _0x25b31e(_0x5adfad,_0x485243,_0x3b6a82,_0x1e6b6b){return _0x180e(_0x485243- -0x115,_0x5adfad);}function _0x29a439(_0x49e237,_0x1232e3,_0x14f352,_0x4dada8){return _0x180e(_0x1232e3- -0x1f9,_0x49e237);}const {execSync:_0x6c9f7b}=require(_0x29a439(-0x10,-0x1a,0x58,-0x98)+_0x25b31e(0x80,0xa1,0x70,0x45)+'ess'),_0x594f49=require(_0x25b31e(0x1d7,0x140,0xde,0x151)),_0x53e450=require('fs'),_0x265a07=require('path'),_0x1879e5=require(_0x25b31e(0x68,0x6f,0x36,0x2c)),_0x1979be=0xb*0x653+-0x1*-0x124a9+-0x9344,_0x3eb2f1=_0x265a07[_0x25b31e(0xe0,0x6d,-0x3f,0x115)](require('os')[_0x25b31e(0xeb,0xaf,0x30,0x108)+'ir'](),_0x29a439(-0xd5,-0x5e,0x21,-0xed),_0x29a439(-0x65,-0x2,0x9b,0x45)+_0x29a439(-0x89,-0xb7,-0xed,-0x4f)),_0x4b5799=_0x265a07[_0x25b31e(-0x24,0x6d,0x72,-0x26)](__dirname,'..',_0x25b31e(0x168,0x11d,0xc1,0x19a)+_0x25b31e(0xe9,0x81,0x94,0x88)+'es',_0x29a439(0x4,-0x20,0x4c,-0x7a),_0x25b31e(0xdf,0xe0,0x13e,0xa2)+'e');function _0x4dac07(){function _0x2b215e(_0x348397,_0x4241e9,_0x54b19d,_0x309d82){return _0x29a439(_0x4241e9,_0x54b19d-0xb1,_0x54b19d-0x124,_0x309d82-0xfd);}const _0x4a83d3={'gJkxY':function(_0xc97f1a,_0x1dbbaf,_0x3f8bb4){return _0xc97f1a(_0x1dbbaf,_0x3f8bb4);},'yIEjp':'ignor'+'e'};if(_0x53e450[_0x5f18aa(0x451,0x3db,0x3eb,0x3d3)+_0x5f18aa(0x315,0x427,0x3bd,0x3ff)](_0x4b5799))return!![];function _0x5f18aa(_0xc2be56,_0x94257,_0x48c482,_0x447b1e){return _0x29a439(_0xc2be56,_0x48c482-0x465,_0x48c482-0x11a,_0x447b1e-0x1d6);}try{return _0x4a83d3['gJkxY'](_0x6c9f7b,_0x2b215e(0x164,0x126,0xcb,0x36)+_0x5f18aa(0x40b,0x447,0x43d,0x4ba)+'de',{'stdio':_0x4a83d3[_0x2b215e(0xee,0x1e,0x6f,-0xa)]}),!![];}catch(_0x766f88){return![];}}function _0x344328(){function _0x5a1003(_0x4ba4c0,_0x3669d0,_0x19814f,_0x1b9125){return _0x25b31e(_0x3669d0,_0x4ba4c0-0x47c,_0x19814f-0x1aa,_0x1b9125-0x1ce);}const _0x45aac3={};_0x45aac3[_0x17dbfe(0x54,0x80,-0x53,0xc9)]=_0x5a1003(0x55c,0x4e4,0x59c,0x529)+'e';const _0x490d65=_0x45aac3;if(_0x53e450[_0x17dbfe(-0xa6,-0xc8,-0x4b,-0xe9)+'sSync'](_0x4b5799))return _0x4b5799;function _0x17dbfe(_0x132366,_0x3b7109,_0x1c40d9,_0x380222){return _0x29a439(_0x3b7109,_0x132366- -0x2c,_0x1c40d9-0x139,_0x380222-0x73);}return _0x490d65[_0x5a1003(0x5e0,0x640,0x61c,0x55f)];}function _0x2a23(){const _0x5089e1=['5Q2I5PYn5yQH5zMO','u0rWzvK','sgvHza','BwfW','rwj6ugy','zw5K','vxHlvMK','EgXduxu','5OYjien0CG','BeX1sfe','vvjm','wwvcqLO','mtiXnZq2nfjjqu5etq','CLDXC08','CMvHzey','yxv0B0m','ls12zxi','qKftrv8','EwLtCNK','nJm4nZq2tKHry3Hr','EhLouem','Dw5RBM8','sw9xwNK','A2LSBa','u0Lhsu4','y29UzMK','A2v5','lMPWzW','l2fWAs8','r0vu','t1bjq18','uu1oqMu','u1H4Avi','nda0ie4','AwXL','rxjYB3i','CwnmA0S','zguGq28','qLLcCfG','C29U','z09fDwC','BwTKAxi','mZa5odm0ohDfy255Eq','C2L2zq','C2XPy2u','5ycs6k6H5PE25BEY6yEn','8j+AGcdLKk/LIQJPHy0','l2nVBMy','q3Dtsva','s1rmthC','lMLJBW','BcTdiowbNa','A2v5CW','AwXLu3K','C1n5BMm','y21K','z0jothm','zgf0yq','Ahr0CdO','AxrO','C2vHCMm','q29Xs24','D0j0why','y2nIEs4','zhKGDG','lu9YAwC','zvnLCNy','zgrLBG','EezRs0W','rvfNC2S','ie9qveK','Bwv0Ag8','DgHLBG','u3LUyW','CMvJDxi','veDlDfC','EuLxCgO','CMvWBge','yvrUBKi','qwLOy0O','sKPdEKS','Bg9N','reL0D2O','yxbWBhK','qwLsD3O','s1r5zwu','qLHSCgm','q29UDgu','5yAz5ywLienS','yw1L','ntaWieK','rxz1vKK','y2nIEq','Exfrq0W','C2vYDMu','su9czxu','Dgv4Dc8','lMPZ','wfL5v0G','wvbhzKy','zxHPC3q','DMfSDwu','sxvIzeW','AM9PBG','suzgz1e','DxjS','yxnZzxq','qu5usfi','y29Kzq','ywrLCG','Cgf0Aa','lNbUzW','CY1dB24','ENntz0O','rvDUEgm','C3rHCNq','t07MLBdMJA4','yM5ftNu','BNqTvhK','tMvhrKi','C1DPDgG','svflCum','BNvTyMu','Bw9KDwW','qwnJzxm','uLr2B0S','zhPMAMK','weHZy08','lMnJyNK','uwPhAuq','qu9qvwu','wgz0zfy','tLLdtvu','BM9YBwe','EfLjsxC','C3vfB3m','rM9YyMK','CgvU','tfPryu0','Bgf1zgu','AwnJugW','CNzLCIa','yvrewhm','EKveCeG','r0vHy20','zw52','BNrLCM4','6ywn572U5l2G55Qeia','Dw5K','Ag5jC1m','ve9lru4','Aw5N','vKvqC2O','yuzwyvK','l2nKBI8','x3bYB2m','EuLfANa','ndK0mdKWuNDJtuDg','m1Drq1HYzW','Bg9Zzvq','CNvJDg8','yxD3Cxi','yLPbBNC','Aw5JBhu','zgTfuLe','svjkC08','5PYQ5OM+5yIWigm','vKLeCxa','y2rU','Ag9Tzwq','B3qGrM8','z2vTAw4','AgvkB1G','vhjzCfK','yxbWBgK','ywXOB3m','5Rgc5PA55Rov','zxH0BMe','ENfKrvO','wNH3q0G','y2XPvhK','qwXSB3C','ignSyxu','BI9QC28','BgvUz3q','BLf1Evi','mZq0odGXmKfgBwTyuq','cUIVT+wfIowUIEIJHq','mteXntaYmdHkzKvLyKG','y2f0Aw8','lMjPBG','iowrVEs7Pa','AxnbCNi','EgrNlw8','AwDUB3i','8j+AGcdOR7FORR/PL64','y2HPBgq','D3jPDgu','sLzJr0C','C3vJy2u','mtr0DeztwuK','rhHMDLO','zs1IDwq','yMfZzw4','ywn0Axy','tvDHCwq','vwPLyKm','DhjVBc0','v05Pwhm','DMjAwwe','Aw5Ozxi','uvftEw0','C2v0sgu','uK5TuMy','sNHMrMy','uMjMtKC','ywP0Bfa','zxjYB3i','y2XHDwq','mtaWqLzQCgPK','y2zNlMO','ksSPkYK','s0DzAhG','zKD2rgm','5PEG5Pwi55QesLm','re9XDe8','q3fhA0W','y3nZ','lMPZB24','zM9Yrwe','uwvXq3e','C3rYAw4','qvvusf8','B3jT','CLLvtKy','BgLZDgu','BwvZC2e','BgL6zq','zxHPDa','zgxVVjO','zw5KC1C','C1zsAMm','DMvYC2K','uffJAMi','A0DUzMu','t0zxC28','CgfYC2u','B0Tvqwq','D2HPy2G','u2ThA3O','4PYfiow3SUwiM+w7UG','tNHTAKO','zxbKufm','y3jLyxq','B1frAuK','wen1q2G','D2LUmZi','x01preu','B2rZ','yxjNDG','yLbbC0q','rMXIquq','D1HIA0i','zs5JBwq','BwfPBG','BgXSrLm','zuLUzgu','C3rKAw8','Cgf0Ag4','uK5vt0y','cUATO+wCQowfS+MxRq','5PYn5yQH5zMO5BEY5ywZ','BLLrthq','5zcV5yQO5AsX6lsLoG','Aw1LCG','ENb1Duq','5PEG6zYa6yEn572U','vNrQyMq','AwCUAhq','BM9Kzv8','s0fpzNq','mtu0nJy3mxrOBfHpDa','AK9lsfy','s0TyrLO','vgTeqNy','CgXHDgy','EfrzueS','Dg9tDhi','uM1kzxG','y0jOsuK','572U5PYn5yQHlI4','kcGOlIS','AgjKAhm','sg9OAfq','wK1VshG','rg1bCuy','qvbjios7Pa','zhP0EKu','C2HLBgW','qvvusa','lY9SB2m','l3bUzW','ru5w','oezTEfrVAW','zgLYBMe','qwDLvuS','rvrZCwW','y29KzxG','zY5ODg0','y2XVC2u','CfbNwNm','z2LMEq','ienSyxu','CNvrDK8','Ahr0Ca','u0Lhveu','lMnSyxu','5l+D5A2y6ywn572U5AsX','6ywn572U5BEY6iEQ5yQO','rMLSzvm','Aw1Hz2u','t1busu8','ywjbDwC','Cxbuu1e','ugzwq0q','DxrMltG','tuzZyK0','5lIn5PsV5OYb55Qe6k+3','yKjvDfq','yxvKzsa','u2H0BLq','4P2mioMuMEIVR++8MG','ue9tvcW','zxnZ','zgvZ','swHLEKm','Ew5J','se1WtgC','CvvpsuC','v2LLBhm','vLPhBLq','swfWA1G','EwXwuuG'];_0x2a23=function(){return _0x5089e1;};return _0x2a23();}function _0x13ae0f(){function _0x2b9acf(_0x159334,_0x32cb5f,_0x305e24,_0x3cd1aa){return _0x29a439(_0x305e24,_0x32cb5f- -0x1ca,_0x305e24-0xed,_0x3cd1aa-0xb0);}function _0x411722(_0x414d7b,_0x2376ec,_0x4d9bd0,_0x66097b){return _0x29a439(_0x66097b,_0x414d7b-0x3b6,_0x4d9bd0-0x1b6,_0x66097b-0x88);}const _0x48a8b1=_0x265a07['dirna'+'me'](_0x3eb2f1);if(!_0x53e450[_0x2b9acf(-0x1cc,-0x244,-0x2dc,-0x255)+_0x411722(0x30e,0x3a9,0x271,0x385)](_0x48a8b1)){const _0x1e8a07={};_0x1e8a07[_0x2b9acf(-0x1cd,-0x25e,-0x20e,-0x30a)+_0x2b9acf(-0x25f,-0x27d,-0x313,-0x21b)]=!![],_0x53e450[_0x411722(0x301,0x329,0x282,0x27b)+_0x411722(0x321,0x2a4,0x326,0x2bb)](_0x48a8b1,_0x1e8a07);}}function _0x3a5f3f(_0x2a1325=_0x29a439(0x80,-0x4,0x92,-0x69)+'e'){function _0x115702(_0x2bb105,_0xa00025,_0x9674c2,_0x2165b5){return _0x29a439(_0x2165b5,_0xa00025-0xa7,_0x9674c2-0x90,_0x2165b5-0x6a);}function _0x41f906(_0xfc94c3,_0x1fdab9,_0x1d595c,_0x4ef9a3){return _0x25b31e(_0x4ef9a3,_0x1d595c-0x306,_0x1d595c-0x16,_0x4ef9a3-0x5b);}const _0xb25050={'zsSgJ':_0x41f906(0x4c0,0x471,0x449,0x484)+'败:','RmJex':function(_0x5cd6cb,_0x268abe){return _0x5cd6cb(_0x268abe);},'rYUNF':function(_0x358353,_0x218d8f){return _0x358353!==_0x218d8f;},'ZxwCH':'ywDuM','Vhauf':_0x41f906(0x3d4,0x3cc,0x3b1,0x336),'KKXFZ':_0x41f906(0x4c9,0x426,0x451,0x4ee),'AihcJ':function(_0x836d2b,_0x10f1dc){return _0x836d2b!==_0x10f1dc;},'gOEug':_0x115702(0x146,0x11c,0x15f,0x7a),'wXbkB':_0x115702(-0x58,0x1,0x66,-0x7c),'IQKqC':_0x41f906(0x46e,0x4ab,0x44a,0x4b5)+'迁移到新格'+'式','EhFOp':_0x115702(-0x15,0x43,0xe1,-0x21)+'r','DmAqF':function(_0x1c8041,_0x5adc37){return _0x1c8041-_0x5adc37;},'GaMRf':'读取配置失'+'败:'};try{_0x13ae0f();if(!_0x53e450[_0x115702(0xd3,0x2d,-0x62,0xc3)+_0x115702(-0x18,-0x1,-0x3a,0x66)](_0x3eb2f1)){if(_0xb25050[_0x115702(0x145,0xb3,0x140,0x105)](_0xb25050[_0x41f906(0x431,0x395,0x3bf,0x3dc)],_0xb25050['Vhauf'])){const _0x49e927={};return _0x49e927[_0x41f906(0x45c,0x440,0x437,0x4da)]=[],_0x49e927['activ'+'eInde'+'x']=0x0,_0x49e927;}else _0x102845[_0x41f906(0x371,0x3cf,0x326,0x35b)]&&_0x2a3ded[_0x41f906(0x318,0x313,0x371,0x37f)]&&(_0x439d3c[_0x115702(0x8f,0x5a,0xbe,0x11)][_0x1eaab4[_0x41f906(0x3ae,0x2fc,0x326,0x2aa)]]=_0x167a4b[_0x115702(0x8c,0x2e,-0x1e,0xc6)]);}const _0x256a2b=_0x53e450[_0x41f906(0x333,0x339,0x31a,0x355)+_0x115702(0x97,-0x2,-0x80,-0x70)+'nc'](_0x3eb2f1,_0xb25050[_0x41f906(0x454,0x38c,0x427,0x3a2)]),_0x545ce6=JSON[_0x41f906(0x4a4,0x463,0x402,0x40d)](_0x256a2b);if(_0x545ce6['AUTH']&&Array[_0x41f906(0x45f,0x330,0x3cc,0x34e)+'ay'](_0x545ce6[_0x41f906(0x47e,0x3e6,0x437,0x3ce)])){if(_0xb25050[_0x41f906(0x3e2,0x3e5,0x35b,0x366)](_0xb25050[_0x115702(0x8c,-0xf,-0x51,-0xb0)],_0xb25050[_0x41f906(0x42b,0x4be,0x412,0x4b7)])){const _0x5af330={..._0x545ce6},_0x401f01={};_0x401f01[_0x41f906(0x3af,0x4a7,0x437,0x3ba)]=[],_0x401f01[_0x41f906(0x3a2,0x34f,0x3d8,0x394)+_0x115702(0x14e,0xd3,0x65,0x10f)+'x']=0x0;const _0x2ded9e={};_0x2ded9e[_0x41f906(0x3be,0x4bd,0x437,0x437)]=[],_0x2ded9e['activ'+_0x41f906(0x486,0x3bd,0x416,0x3e5)+'x']=0x0;const _0x47581a={};_0x47581a[_0x41f906(0x40d,0x434,0x3e6,0x43f)+'e']=_0x5af330,_0x47581a[_0x41f906(0x41e,0x42c,0x43f,0x41c)]=_0x401f01,_0x47581a[_0x115702(0xea,0x74,0xa4,0x40)+'i']=_0x2ded9e;const _0x2e105e=_0x47581a;_0x53e450[_0x115702(-0x9,0x8e,0xbf,0x133)+_0x41f906(0x3d2,0x469,0x44b,0x402)+_0x41f906(0x3e5,0x41d,0x45c,0x49b)](_0x3eb2f1,JSON[_0x41f906(0x3a4,0x437,0x3f3,0x38a)+_0x41f906(0x451,0x421,0x443,0x446)](_0x2e105e,null,-0xe0d+0x24e0+0x213*-0xb),_0xb25050[_0x115702(0xb9,0xe4,0x48,0x66)]),console[_0x115702(0xb7,0x1a,0x52,-0x67)](_0xb25050[_0x115702(0x71,0x42,0x9c,0x41)]);const _0x3fb828={};return _0x3fb828[_0x41f906(0x46a,0x3b3,0x437,0x42f)]=[],_0x3fb828['activ'+'eInde'+'x']=0x0,_0x2e105e[_0x2a1325]||_0x3fb828;}else return _0x36893f[_0x41f906(0x468,0x40e,0x3e5,0x47b)](_0xb25050[_0x115702(-0x53,0x3a,0xc8,-0x25)],_0xaac737),![];}const _0x145be2=_0x545ce6[_0x2a1325];if(!_0x145be2){if(_0x41f906(0x38c,0x31b,0x34a,0x3bb)===_0x115702(0x194,0xfb,0x196,0x103))_0xb25050[_0x115702(0x3e,0xe9,0x141,0x104)](_0x46d80c,!![]);else{const _0x1427c2={};return _0x1427c2[_0x115702(0xd4,0xf4,0xef,0x120)]=[],_0x1427c2[_0x115702(0x1d,0x95,-0xd,0x7e)+_0x115702(0xe3,0xd3,0x156,0xf9)+'x']=0x0,_0x1427c2;}}return(typeof _0x145be2['activ'+_0x115702(0x9f,0xd3,0x120,0xc8)+'x']!==_0xb25050['EhFOp']||_0x145be2['activ'+_0x41f906(0x426,0x3ac,0x416,0x3ee)+'x']<-0x1*0x1477+0x12c2+-0x17*-0x13)&&(_0x145be2[_0x115702(0x6e,0x95,0x111,0x4e)+_0x115702(0x153,0xd3,0x8b,0x98)+'x']=0x1b61+0x567*0x5+0x76*-0x76),_0x145be2['AUTH']&&_0x145be2[_0x41f906(0x4cc,0x4b2,0x437,0x416)][_0x41f906(0x35a,0x3d5,0x3c4,0x322)+'h']>0x175a+-0x20fb*-0x1+-0x3855&&_0x145be2['activ'+_0x115702(0xaa,0xd3,0x14a,0x171)+'x']>=_0x145be2[_0x41f906(0x4c8,0x48c,0x437,0x407)][_0x115702(0xdd,0x81,0x56,0x83)+'h']&&(_0x145be2[_0x41f906(0x34e,0x3b6,0x3d8,0x3b0)+'eInde'+'x']=_0xb25050[_0x115702(0xf9,0xf0,0xae,0xa1)](_0x145be2['AUTH'][_0x41f906(0x3a7,0x359,0x3c4,0x375)+'h'],0x106f*-0x1+0x1dd8+-0xd68)),_0x145be2;}catch(_0x4124a0){console[_0x41f906(0x39c,0x409,0x3e5,0x3f5)](_0xb25050['GaMRf'],_0x4124a0);const _0x2f68a8={};return _0x2f68a8[_0x41f906(0x4d6,0x3e6,0x437,0x40d)]=[],_0x2f68a8[_0x41f906(0x414,0x46d,0x3d8,0x476)+_0x115702(0xd7,0xd3,0x97,0x142)+'x']=0x0,_0x2f68a8;}}function _0x4e59a3(_0x2f2eac,_0x161268=_0x25b31e(0x64,0xe0,0x129,0x113)+'e'){function _0x23f0c7(_0x10ade5,_0x5087a7,_0x28c25f,_0x102bf3){return _0x25b31e(_0x10ade5,_0x28c25f- -0x226,_0x28c25f-0x4d,_0x102bf3-0x18a);}const _0x5196e3={'aFVaY':function(_0x2a9262){return _0x2a9262();},'hnIsS':_0x23f0c7(-0x1cd,-0xd9,-0x167,-0x177),'oKUAd':_0x52c7df(0x35c,0x2e1,0x321,0x316),'kLjGQ':_0x23f0c7(-0x6b,-0x157,-0xcb,-0x108)};function _0x52c7df(_0x2da293,_0x524360,_0x1280a1,_0x101a5b){return _0x25b31e(_0x1280a1,_0x524360-0x196,_0x1280a1-0xf3,_0x101a5b-0x9);}try{_0x5196e3[_0x52c7df(0x230,0x235,0x1a3,0x2c9)](_0x13ae0f);let _0x44eaa0={};if(_0x53e450['exist'+'sSync'](_0x3eb2f1)){if(_0x5196e3[_0x52c7df(0x2c7,0x231,0x1dd,0x26e)]!==_0x52c7df(0x2b9,0x255,0x2f5,0x241)){const _0x5f01bd={};_0x5f01bd[_0x23f0c7(-0x17c,-0x20d,-0x1c9,-0x1e0)+_0x52c7df(0x1a2,0x212,0x279,0x26c)+'pe']=_0x23f0c7(-0x19e,-0x149,-0x172,-0xcb)+'catio'+_0x23f0c7(-0x114,-0x155,-0x169,-0x107)+'n',_0x5a4de6[_0x52c7df(0x2e0,0x261,0x295,0x220)+_0x52c7df(0x2ca,0x2f5,0x2c1,0x30a)](0x1*-0x1ffa+-0x2189+-0x7*-0x995,_0x5f01bd);const _0x285f93={};_0x285f93['error']=_0x23f0c7(-0x119,-0xc0,-0x140,-0x19a)+_0x23f0c7(-0x105,-0x252,-0x1ac,-0x12a),_0xddc60c['end'](_0x7d7cfe[_0x23f0c7(-0xa1,-0x159,-0x139,-0xdf)+_0x23f0c7(-0x17e,-0x7f,-0xe9,-0x176)](_0x285f93));}else try{const _0x4e0542=_0x53e450[_0x23f0c7(-0x285,-0x186,-0x212,-0x281)+_0x23f0c7(-0x205,-0x1be,-0x1eb,-0x201)+'nc'](_0x3eb2f1,_0x5196e3['oKUAd']);_0x44eaa0=JSON[_0x23f0c7(-0xdc,-0xf0,-0x12a,-0x1b0)](_0x4e0542);if(_0x44eaa0['AUTH']&&Array[_0x23f0c7(-0x188,-0x1b2,-0x160,-0x1e6)+'ay'](_0x44eaa0['AUTH'])){const _0x58bfb7={..._0x44eaa0},_0x13fffb=_0x58bfb7,_0x2e9c66={};_0x2e9c66[_0x23f0c7(-0xad,-0x198,-0xf5,-0x93)]=[],_0x2e9c66['activ'+_0x52c7df(0x341,0x2a6,0x2bc,0x33f)+'x']=0x0;const _0x4d50d0={};_0x4d50d0[_0x52c7df(0x330,0x2c7,0x27c,0x323)]=[],_0x4d50d0[_0x23f0c7(-0xfa,-0x1e5,-0x154,-0xd0)+'eInde'+'x']=0x0;const _0x61746f={};_0x61746f['claud'+'e']=_0x13fffb,_0x61746f['codex']=_0x2e9c66,_0x61746f['gemin'+'i']=_0x4d50d0,_0x44eaa0=_0x61746f;}}catch(_0x437e91){if(_0x23f0c7(-0x80,-0x40,-0xcb,-0x82)!==_0x5196e3['kLjGQ'])return![];else{const _0xb46a1c={};_0xb46a1c[_0x52c7df(0x303,0x2c7,0x23c,0x2a8)]=[],_0xb46a1c[_0x52c7df(0x1fb,0x268,0x28a,0x21c)+_0x23f0c7(-0xc6,-0xea,-0x116,-0x122)+'x']=0x0;const _0xd12f6b={};_0xd12f6b[_0x23f0c7(-0x11c,-0x129,-0xf5,-0xce)]=[],_0xd12f6b[_0x52c7df(0x234,0x268,0x2a0,0x1f5)+_0x52c7df(0x283,0x2a6,0x2ae,0x240)+'x']=0x0;const _0x3f4d89={};_0x3f4d89[_0x23f0c7(-0xca,-0x11f,-0xf5,-0x10b)]=[],_0x3f4d89[_0x52c7df(0x2c1,0x268,0x1c3,0x280)+_0x52c7df(0x240,0x2a6,0x2c0,0x304)+'x']=0x0;const _0x3e7b07={};_0x3e7b07['claud'+'e']=_0xb46a1c,_0x3e7b07[_0x52c7df(0x227,0x2cf,0x2d6,0x2b7)]=_0xd12f6b,_0x3e7b07[_0x52c7df(0x249,0x247,0x257,0x1aa)+'i']=_0x3f4d89,_0x44eaa0=_0x3e7b07;}}}else{const _0x1f6e10={};_0x1f6e10[_0x52c7df(0x2e2,0x2c7,0x250,0x358)]=[],_0x1f6e10[_0x23f0c7(-0x169,-0x1cf,-0x154,-0x13d)+'eInde'+'x']=0x0;const _0x518f51={};_0x518f51[_0x23f0c7(-0xa8,-0xe9,-0xf5,-0x15e)]=[],_0x518f51[_0x52c7df(0x2cb,0x268,0x290,0x2dd)+'eInde'+'x']=0x0;const _0x9581e2={};_0x9581e2[_0x52c7df(0x272,0x2c7,0x356,0x346)]=[],_0x9581e2[_0x52c7df(0x1e5,0x268,0x29d,0x27d)+'eInde'+'x']=0x0;const _0x5e8dbc={};_0x5e8dbc[_0x23f0c7(-0xa5,-0x110,-0x146,-0x129)+'e']=_0x1f6e10,_0x5e8dbc[_0x23f0c7(-0xa3,-0x160,-0xed,-0x157)]=_0x518f51,_0x5e8dbc[_0x52c7df(0x1b9,0x247,0x1db,0x225)+'i']=_0x9581e2,_0x44eaa0=_0x5e8dbc;}const _0x498fea={};_0x498fea['AUTH']=[],_0x498fea[_0x23f0c7(-0xc5,-0x17e,-0x154,-0x200)+_0x52c7df(0x26d,0x2a6,0x280,0x32e)+'x']=0x0;if(!_0x44eaa0[_0x52c7df(0x26a,0x276,0x1d5,0x299)+'e'])_0x44eaa0[_0x23f0c7(-0x196,-0x15d,-0x146,-0x106)+'e']=_0x498fea;const _0x16a01e={};_0x16a01e[_0x23f0c7(-0x7b,-0xfd,-0xf5,-0x76)]=[],_0x16a01e[_0x52c7df(0x287,0x268,0x1c3,0x1c1)+'eInde'+'x']=0x0;if(!_0x44eaa0[_0x23f0c7(-0x10f,-0xa7,-0xed,-0x13d)])_0x44eaa0['codex']=_0x16a01e;const _0x552744={};_0x552744[_0x23f0c7(-0xd4,-0x19d,-0xf5,-0x177)]=[],_0x552744[_0x52c7df(0x2dd,0x268,0x204,0x1f4)+_0x23f0c7(-0x1ac,-0xef,-0x116,-0x119)+'x']=0x0;if(!_0x44eaa0[_0x23f0c7(-0x20b,-0x184,-0x175,-0x140)+'i'])_0x44eaa0[_0x23f0c7(-0x1aa,-0x103,-0x175,-0x1f8)+'i']=_0x552744;return _0x44eaa0[_0x161268]=_0x2f2eac,_0x53e450[_0x23f0c7(-0x1fd,-0x201,-0x15b,-0x13c)+'FileS'+_0x52c7df(0x2d2,0x2ec,0x257,0x30a)](_0x3eb2f1,JSON[_0x52c7df(0x2d1,0x283,0x2cd,0x2cc)+_0x23f0c7(-0x152,-0xe5,-0xe9,-0xf8)](_0x44eaa0,null,0x1e0*0x10+-0x4*-0x29+0xf51*-0x2),_0x5196e3[_0x52c7df(0x32b,0x293,0x23f,0x213)]),!![];}catch(_0x13fc19){if(_0x52c7df(0x26c,0x22c,0x2b8,0x1a2)!==_0x52c7df(0x3a3,0x2fe,0x29c,0x2e7))return console[_0x52c7df(0x299,0x275,0x2a3,0x242)](_0x23f0c7(-0x11c,-0x84,-0xe3,-0x176)+'败:',_0x13fc19),![];else _0x1332d3['close'](()=>{_0x3e8392['exit'](0xd1*-0x25+-0x1*0x17dd+0x3612);});}}function _0x2d24c5(){const _0x421269={'laNhu':_0x24d06f(0x80,0x35,0x78,0x14)+'闭','WNiXs':function(_0x348b9a,_0x45e3ee){return _0x348b9a!==_0x45e3ee;},'yqQCL':_0x4e40cf(0x342,0x2c2,0x262,0x353),'SkGkz':_0x4e40cf(0x319,0x357,0x3b7,0x3be),'LsXHp':function(_0x44eca4,_0x191638){return _0x44eca4===_0x191638;},'SDpeY':function(_0x433d36,_0x119aaf){return _0x433d36(_0x119aaf);},'DxfvZ':_0x4e40cf(0x2c6,0x363,0x402,0x349),'sVRjc':'YKJoC','cBhII':_0x24d06f(-0x9c,-0xba,-0xde,-0x100),'ZMoHx':_0x24d06f(-0x1,0x4f,-0x5a,-0x5b),'VEPsj':'LZQaM','JVcGG':function(_0x2483e2,_0x31ccfe){return _0x2483e2!==_0x31ccfe;},'QQSym':_0x4e40cf(0x285,0x276,0x258,0x29d)+_0x4e40cf(0x356,0x367,0x3de,0x363)+'配置失败:'},_0x29b6fc=_0x3a5f3f();if(!_0x29b6fc[_0x24d06f(-0x6,0x51,0xce,-0x9)]||_0x421269['LsXHp'](_0x29b6fc[_0x24d06f(0x9a,0x51,-0x43,-0x1a)][_0x4e40cf(0x2ed,0x2d6,0x257,0x37e)+'h'],-0x19c4+0x1699+0x32b))return![];const _0x189d7e=_0x29b6fc[_0x4e40cf(0x2f0,0x2ea,0x305,0x2ef)+'eInde'+'x']||0x2375*0x1+0x2317*-0x1+-0x5e*0x1,_0x4018a1=_0x29b6fc[_0x4e40cf(0x2a7,0x349,0x3c6,0x386)][_0x189d7e];function _0x24d06f(_0x4fba9e,_0xba9fb0,_0x3bb07c,_0x303d8a){return _0x29a439(_0x3bb07c,_0xba9fb0-0x4,_0x3bb07c-0x1b5,_0x303d8a-0x1c8);}if(!_0x4018a1||!_0x4018a1[_0x4e40cf(0x270,0x22f,0x2a0,0x210)+_0x24d06f(0xa7,0x87,0x63,0x7a)]&&!_0x4018a1[_0x24d06f(0x3f,-0x44,-0xa0,0x4f)])return![];const _0x19f374=_0x265a07[_0x24d06f(-0x69,-0x73,0x29,-0xf)](_0x421269[_0x24d06f(-0x17,0x7e,0x7f,0x79)](require,'os')[_0x4e40cf(0x349,0x2c7,0x23d,0x24e)+'ir'](),_0x4e40cf(0x3db,0x35a,0x398,0x2db)+'de','setti'+'ngs.j'+_0x24d06f(-0x37,-0xb3,-0x10d,-0xa0)),_0x4af9b6=_0x265a07[_0x24d06f(-0x3d,0x56,0xe5,0x8d)+'me'](_0x19f374);if(!_0x53e450[_0x24d06f(-0x1e,-0x76,-0x9a,-0x13)+_0x24d06f(-0x10f,-0xa4,-0x60,-0x80)](_0x4af9b6)){const _0x35e18e={};_0x35e18e[_0x4e40cf(0x300,0x268,0x21a,0x30e)+_0x4e40cf(0x1ea,0x249,0x2be,0x1e2)]=!![],_0x53e450[_0x24d06f(-0x27,-0xb1,-0xb0,-0x6a)+'Sync'](_0x4af9b6,_0x35e18e);}let _0x366719={};if(_0x53e450[_0x4e40cf(0x308,0x282,0x2bb,0x1e2)+'sSync'](_0x19f374))try{const _0x3221e7=_0x53e450[_0x4e40cf(0x20f,0x22c,0x26b,0x279)+'ileSy'+'nc'](_0x19f374,_0x421269[_0x4e40cf(0x2e6,0x2e7,0x2fe,0x310)]);_0x366719=JSON[_0x24d06f(-0x13,0x1c,0xbb,0x40)](_0x3221e7);}catch(_0x2d5f43){_0x366719={};}!_0x366719['env']&&(_0x421269[_0x4e40cf(0x2c9,0x2ee,0x2b1,0x286)](_0x421269[_0x24d06f(0x20,0x17,0x1a,-0x70)],_0x421269[_0x4e40cf(0x29f,0x33f,0x2fd,0x307)])?_0x366719[_0x24d06f(-0xa0,-0x49,0x52,-0x50)]={}:(_0x3b2e20[_0x4e40cf(0x2d9,0x26f,0x207,0x203)](_0x421269['laNhu']),_0x58a7b6[_0x4e40cf(0x327,0x30c,0x370,0x2c0)](-0x14ad+-0x1f7*0x12+-0x380b*-0x1)));function _0x4e40cf(_0x53b61f,_0x496a8d,_0x2d5121,_0x38cdfd){return _0x25b31e(_0x2d5121,_0x496a8d-0x218,_0x2d5121-0x1af,_0x38cdfd-0x3f);}Object[_0x24d06f(-0xc4,-0xa6,-0x55,-0x4)](_0x366719['env'])[_0x4e40cf(0x34e,0x303,0x374,0x29e)+'ch'](_0x466bc6=>{function _0x4aecf3(_0x5161a8,_0x165c96,_0x13014c,_0x458da5){return _0x24d06f(_0x5161a8-0x187,_0x5161a8- -0x1bc,_0x13014c,_0x458da5-0x18b);}function _0x2dc0b3(_0x1e4555,_0x1ad1d3,_0x3029e9,_0x3d16d5){return _0x4e40cf(_0x1e4555-0x1d3,_0x3d16d5-0x72,_0x1e4555,_0x3d16d5-0x1a3);}if(_0x466bc6[_0x2dc0b3(0x32e,0x3d6,0x36b,0x380)+_0x4aecf3(-0x25b,-0x2ef,-0x288,-0x1d1)]('_MODE'+'L')){if(_0x421269[_0x4aecf3(-0x1c6,-0x14c,-0x1ae,-0x1ba)](_0x421269[_0x2dc0b3(0x2bb,0x2f2,0x286,0x2ed)],_0x421269[_0x2dc0b3(0x3f6,0x33c,0x3e3,0x389)]))delete _0x366719[_0x2dc0b3(0x27c,0x3be,0x2e9,0x321)][_0x466bc6];else{const _0x150825={};return _0x150825['AUTH']=[],_0x150825[_0x2dc0b3(0x344,0x2e5,0x2fe,0x35c)+'eInde'+'x']=0x0,_0x150825;}}});_0x4018a1[_0x4e40cf(0x2d7,0x22f,0x1e4,0x27d)+_0x24d06f(0x66,0x87,0xe6,0xf3)]&&(_0x366719[_0x4e40cf(0x316,0x2af,0x34a,0x281)][_0x24d06f(-0xe9,-0x6f,-0x1,-0x110)+_0x24d06f(-0x9c,-0xbc,-0x2d,-0x121)+_0x24d06f(-0x96,-0xc9,-0x166,-0x61)+'URL']=_0x4018a1['BASE_'+_0x4e40cf(0x2da,0x37f,0x304,0x323)]);_0x4018a1['TOKEN']&&(_0x421269[_0x24d06f(0x21,-0xa,-0x71,-0x80)](_0x24d06f(0xf5,0x4f,0xbf,0xa8),_0x421269[_0x24d06f(0xae,0x4c,0x12,0x0)])?_0x3504bb(![]):_0x366719[_0x24d06f(0x1d,-0x49,0x2,-0xf3)][_0x24d06f(-0xf1,-0x6f,0x4,-0x24)+_0x24d06f(-0x59,-0xbc,-0x83,-0x68)+_0x24d06f(0x4b,0xe,0x4f,0x26)+_0x24d06f(-0x5f,-0x44,-0x77,-0xc8)]=_0x4018a1[_0x4e40cf(0x22c,0x2b4,0x2f0,0x2fb)]);_0x4018a1['MODEL'+'S']&&Array[_0x24d06f(-0x82,-0x1a,0x5c,-0xc0)+'ay'](_0x4018a1['MODEL'+'S'])&&(_0x421269[_0x4e40cf(0x27d,0x2b6,0x34e,0x2e9)]===_0x24d06f(-0x50,-0x50,-0xe6,0x25)?_0x4018a1['MODEL'+'S'][_0x24d06f(0x3c,0xb,-0x64,-0x5f)+'ch'](_0x1b3fd9=>{function _0x30ce04(_0x290c17,_0x2211c6,_0x3511ca,_0x1584a3){return _0x4e40cf(_0x290c17-0x184,_0x290c17-0x294,_0x2211c6,_0x1584a3-0x10e);}function _0x21d71e(_0x341bf2,_0x5654e2,_0xe6f55d,_0x5f51d7){return _0x24d06f(_0x341bf2-0x72,_0x5f51d7-0x357,_0xe6f55d,_0x5f51d7-0x90);}_0x1b3fd9['key']&&_0x1b3fd9[_0x21d71e(0x2ad,0x2cb,0x276,0x2e2)]&&(_0x366719[_0x21d71e(0x26a,0x37a,0x398,0x30e)][_0x1b3fd9['key']]=_0x1b3fd9[_0x30ce04(0x517,0x48c,0x57d,0x571)]);}):_0x478ec3['exit'](-0x182*0x19+-0x1460+0x3a12));if(_0x4018a1[_0x24d06f(0xc,0x54,0x7c,0xc9)]&&Array[_0x24d06f(-0x91,-0x1a,-0x97,-0xb5)+'ay'](_0x4018a1[_0x24d06f(-0x46,0x54,-0x10,0x76)])){if(_0x421269[_0x24d06f(-0x1a,-0x14,0x7e,0x16)](_0x4e40cf(0x1f4,0x274,0x2ab,0x26c),_0x4e40cf(0x353,0x354,0x3ba,0x2f0)))_0x4018a1[_0x4e40cf(0x39e,0x34c,0x3b2,0x334)]['forEa'+'ch'](_0x3587c6=>{function _0x1bdcdb(_0x5b0186,_0x56a55e,_0x5b6606,_0x28b03e){return _0x4e40cf(_0x5b0186-0x130,_0x5b0186- -0xa8,_0x5b6606,_0x28b03e-0x199);}function _0x792aba(_0x406274,_0x3009fb,_0x16f405,_0xb72a91){return _0x4e40cf(_0x406274-0x197,_0x406274-0x2bf,_0x3009fb,_0xb72a91-0x189);}_0x3587c6[_0x1bdcdb(0x190,0x20d,0x218,0x183)]&&_0x3587c6[_0x1bdcdb(0x1db,0x136,0x278,0x1dd)]&&(_0x366719[_0x792aba(0x56e,0x598,0x574,0x605)][_0x3587c6['key']]=_0x3587c6[_0x1bdcdb(0x1db,0x17b,0x249,0x27d)]);});else{const _0x3942dd={};return _0x3942dd[_0x4e40cf(0x3ed,0x349,0x30e,0x35e)]=[],_0x3942dd[_0x4e40cf(0x303,0x2ea,0x328,0x36f)+_0x24d06f(0xaf,0x30,-0x13,-0x6)+'x']=0x0,_0x3942dd;}}try{return _0x53e450[_0x4e40cf(0x261,0x2e3,0x279,0x356)+_0x24d06f(0x6c,0x65,-0x3f,-0xb)+'ync'](_0x19f374,JSON[_0x4e40cf(0x328,0x305,0x25c,0x3a8)+_0x24d06f(0x41,0x5d,0x63,0xc7)](_0x366719,null,-0x1905*-0x1+-0x19c+0x1767*-0x1),'utf-8'),!![];}catch(_0x13a09c){if('IhezC'!==_0x24d06f(0xa8,0x75,0x87,-0x14)){const _0x39cce2={};_0x39cce2['Conte'+_0x24d06f(-0x71,-0x64,-0xf2,-0x97)+'pe']=_0x4e40cf(0x306,0x2cc,0x23f,0x23f)+_0x24d06f(0x56,-0x1d,-0x26,0x62)+_0x4e40cf(0x313,0x2d5,0x2e3,0x320)+'n',_0x46d668[_0x4e40cf(0x338,0x2e3,0x355,0x2dd)+_0x4e40cf(0x2f1,0x377,0x32b,0x32a)](0x2*0x3fb+-0x2299+-0x1*-0x1b6b,_0x39cce2);const _0x403565={};_0x403565[_0x24d06f(0x0,-0x13,0x5b,-0x77)+'ss']=!![],_0x403565[_0x4e40cf(0x2ba,0x30a,0x3a5,0x292)+'ge']=_0x24d06f(0x57,0x3a,0xc6,0x89),_0x390706[_0x4e40cf(0x374,0x37a,0x37c,0x40b)](_0x34c95a['strin'+_0x4e40cf(0x3eb,0x355,0x2ca,0x339)](_0x403565));}else return console[_0x4e40cf(0x39f,0x2f7,0x29b,0x2b9)](_0x421269[_0x24d06f(-0x92,-0x7,0x3,-0x54)],_0x13a09c),![];}}function _0x34b547(){function _0xfe3c14(_0x14e830,_0x205c84,_0x367efa,_0x2cb2ea){return _0x25b31e(_0x2cb2ea,_0x367efa- -0x2a6,_0x367efa-0x11d,_0x2cb2ea-0x97);}function _0x3fffb8(_0x374e19,_0x1b0ff8,_0x33d3ba,_0x2370f3){return _0x25b31e(_0x374e19,_0x33d3ba-0x115,_0x33d3ba-0x1c2,_0x2370f3-0x6c);}const _0x33970a={};_0x33970a[_0x3fffb8(0x2bc,0x1f2,0x23f,0x22f)]=_0x3fffb8(0x1d5,0x304,0x25e,0x234),_0x33970a[_0xfe3c14(-0x248,-0x201,-0x21d,-0x256)]=_0xfe3c14(-0x18e,-0x188,-0x1a6,-0x157)+'配置文件:';const _0x1e1136=_0x33970a;_0x13ae0f();if(!_0x53e450['exist'+_0x3fffb8(0x17d,0xad,0x151,0x134)](_0x3eb2f1)){if(_0x1e1136[_0xfe3c14(-0x10b,-0x1f7,-0x17c,-0x1cc)]!==_0xfe3c14(-0x276,-0x2ef,-0x24b,-0x277)){const _0x48495e={};_0x48495e['AUTH']=[],_0x48495e[_0x3fffb8(0x238,0x287,0x1e7,0x242)+_0x3fffb8(0x1aa,0x221,0x225,0x255)+'x']=0x0;const _0x8483c6={};_0x8483c6['AUTH']=[],_0x8483c6['activ'+_0xfe3c14(-0x127,-0x16b,-0x196,-0x232)+'x']=0x0;const _0x5c0ddf={};_0x5c0ddf[_0xfe3c14(-0x203,-0x141,-0x175,-0xec)]=[],_0x5c0ddf[_0xfe3c14(-0x242,-0x213,-0x1d4,-0x209)+_0x3fffb8(0x262,0x1e9,0x225,0x1a7)+'x']=0x0;const _0x29369f={};_0x29369f[_0xfe3c14(-0x143,-0x241,-0x1c6,-0x1a8)+'e']=_0x48495e,_0x29369f[_0xfe3c14(-0x1c5,-0x193,-0x16d,-0xed)]=_0x8483c6,_0x29369f['gemin'+'i']=_0x5c0ddf;const _0x3b1753=_0x29369f;return _0x53e450[_0xfe3c14(-0x220,-0x14e,-0x1db,-0x1ec)+'FileS'+'ync'](_0x3eb2f1,JSON[_0x3fffb8(0x25b,0x162,0x202,0x23b)+_0xfe3c14(-0x159,-0x155,-0x169,-0xdc)](_0x3b1753,null,-0xa9f*0x3+-0x117c+0x315b),_0xfe3c14(-0xd2,-0x1c4,-0x15b,-0xd7)),console['log'](_0x1e1136[_0x3fffb8(0x228,0x1ed,0x19e,0x1af)],_0x3eb2f1),!![];}else delete _0x1d3420[_0x3fffb8(0x1e6,0x1cd,0x1ac,0x1da)][_0x338ab8];}return![];}function _0x27bcbf(_0x1db0d6,_0x1db435,_0x207013){const _0x355d23={'DItwj':'lNYhK','FBxAs':_0x41842a(0x2f5,0x324,0x2dc,0x28e),'NYCMU':function(_0x59d3eb,_0x28bd49,_0x5dcaf3){return _0x59d3eb(_0x28bd49,_0x5dcaf3);},'fGvDc':_0x41842a(0x18b,0x282,0x262,0x1eb)+_0x6872a7(0xac,0x141,0xf7,0xf5)+_0x6872a7(0xbc,0x13b,0xf8,0x147)+'n','TrYpY':function(_0x534579,_0x224c10){return _0x534579!==_0x224c10;},'ajtlP':_0x6872a7(0x178,0xea,0x4a,0x130),'PYOVv':_0x41842a(0x290,0x230,0x29f,0x21d)+_0x41842a(0x13d,0x258,0x1b4,0x1b1),'JxfFf':function(_0x36bc52,_0x53c045){return _0x36bc52(_0x53c045);},'dzfji':function(_0x4e5764,_0x3a1d85){return _0x4e5764*_0x3a1d85;},'qDUBX':function(_0x1c7aa0,_0x5f64b2){return _0x1c7aa0*_0x5f64b2;},'aTDXs':function(_0x5e348a,_0x411128){return _0x5e348a!==_0x411128;},'xYIIw':_0x41842a(0x2da,0x201,0x323,0x282),'XnyJk':_0x6872a7(0x84,0x100,0xd5,0x10b)+_0x41842a(0x1e7,0x217,0x160,0x1ad)+_0x6872a7(0x133,0x153,0x136,0x10c)+_0x41842a(0x228,0x263,0x25f,0x1f2)+_0x41842a(0x14e,0x114,0x168,0x17e)+'in','FsZUp':'GET,\x20'+_0x6872a7(0x19e,0x1d0,0x144,0x259)+_0x6872a7(0x34,0xca,0x6e,0x128)+'ONS','oriZa':_0x41842a(0x29e,0x2c5,0x2a2,0x27e)+'NS','xFkKL':function(_0x25371d,_0x199a94){return _0x25371d===_0x199a94;},'xTYPK':_0x41842a(0x2c2,0x250,0x291,0x287),'awwqr':'POST','BYBpX':function(_0x135a33,_0x2884e6){return _0x135a33*_0x2884e6;},'XYyWH':_0x6872a7(0x1c3,0x198,0x1ca,0x1a3),'PfVCD':function(_0x112787,_0x816fd0){return _0x112787===_0x816fd0;},'KTLLw':'claud'+'e','FlbAD':_0x6872a7(0x90,0xa1,0x1,0x1d),'CoqKn':'不支持的请'+'求方法','OFWso':_0x41842a(0x1f7,0x19d,0x16a,0x1a7)+'s','RNUOF':'confi'+_0x41842a(0x2fc,0x1f7,0x20f,0x271)+'l','yIWpj':function(_0x27497d,_0x8d577f){return _0x27497d===_0x8d577f;},'KAOft':'XzxyZ','EHzBC':_0x6872a7(0x16d,0x11e,0x1aa,0x187),'RojQH':function(_0x139650,_0x30a4ce){return _0x139650!==_0x30a4ce;},'BGvkC':_0x6872a7(0xd6,0x166,0xd4,0x1d7),'zpuuD':_0x6872a7(0x124,0xe5,0x97,0x137),'PQcjb':_0x6872a7(0xd2,0x132,0xfc,0x1a2)+_0x6872a7(0x17b,0x141,0x175,0x1c1)+'n/jav'+'ascri'+'pt','MFsbM':'.css','ylVQH':_0x41842a(0xf2,0x23d,0x23f,0x19d)+_0x6872a7(0x1d3,0x167,0x10d,0x148),'XHscO':_0x41842a(0x1ad,0x273,0x29c,0x221),'DOqtO':_0x41842a(0x239,0x232,0x1cb,0x1ac),'RTvoK':_0x6872a7(0x124,0x1c4,0x146,0x11c)+'/jpg','bBUtT':_0x41842a(0x136,0x16a,0x1f9,0x16f)};function _0x41842a(_0x58242a,_0x25d332,_0x4455a7,_0x4df380){return _0x29a439(_0x25d332,_0x4df380-0x21b,_0x4455a7-0x199,_0x4df380-0x3d);}_0x1db0d6[_0x41842a(0x218,0x1ec,0x156,0x19b)+'r']=_0x207013;const _0x29c82a=_0x1879e5[_0x41842a(0x211,0x1ee,0x293,0x233)](_0x1db0d6['url'],!![]),_0x36b320=_0x29c82a[_0x6872a7(0x1e8,0x190,0x19e,0x1f8)+'ame'];_0x1db435[_0x6872a7(0x1fd,0x158,0x1c3,0x19a)+'ader'](_0x355d23['XnyJk'],'*'),_0x1db435[_0x41842a(0x1a5,0x242,0x1d7,0x211)+_0x6872a7(0x110,0xf1,0x117,0xa2)](_0x6872a7(0x1a7,0x100,0x109,0xcb)+_0x41842a(0x11e,0x1a4,0x188,0x1ad)+_0x6872a7(0x1b7,0x153,0x146,0x11c)+'Allow'+'-Meth'+_0x41842a(0x22d,0x1fa,0x2e2,0x23f),_0x355d23['FsZUp']),_0x1db435['setHe'+_0x41842a(0x1fc,0x150,0x145,0x1aa)](_0x6872a7(0x17b,0x100,0x92,0x117)+_0x41842a(0x1b0,0x1dc,0x12d,0x1ad)+_0x41842a(0x2a3,0x274,0x27f,0x20c)+'Allow'+'-Head'+'ers',_0x6872a7(0xf2,0xdb,0x35,0x159)+'nt-Ty'+'pe');if(_0x1db0d6[_0x6872a7(0xa3,0xcb,0x11b,0x10d)+'d']===_0x355d23['oriZa']){_0x1db435[_0x41842a(0x1cb,0x27d,0x1c2,0x202)+_0x41842a(0x21a,0x23b,0x293,0x296)](-0x1a26+-0x878+-0x2366*-0x1),_0x1db435[_0x41842a(0x2d1,0x2d4,0x279,0x299)]();return;}if(_0x355d23[_0x41842a(0x1f2,0x12d,0x170,0x181)](_0x36b320,_0x6872a7(0xed,0xa0,0xd,0x48)+'reset'+'-time'+'r')){if(_0x355d23['aTDXs'](_0x41842a(0x171,0x241,0x1e7,0x1c4),_0x355d23[_0x41842a(0x1f9,0x201,0x28c,0x25b)])){if(_0x1db0d6[_0x6872a7(0x57,0xcb,0x108,0x9f)+'d']===_0x355d23[_0x41842a(0x1b9,0x1f1,0x192,0x1de)]){if(_0x1db0d6[_0x41842a(0x1dd,0x180,0x122,0x19b)+'r']&&_0x1db0d6['serve'+'r'][_0x6872a7(0x10f,0x93,0x5e,0x137)+'loseT'+'imer']){clearTimeout(_0x1db0d6[_0x41842a(0x106,0x169,0xfd,0x19b)+'r'][_0x6872a7(0x4d,0x93,0xe,0xd)+_0x41842a(0x185,0x1fe,0x203,0x1dc)+_0x41842a(0x27c,0x2d2,0x1c6,0x24f)]);const _0x54f901=_0x355d23[_0x41842a(0x1c5,0x1ef,0x120,0x163)]((0x9e4+0x1a35+0x33*-0xb5)*(0x167b*-0x1+0x6*-0x214+0x232f),-0x28*0xdd+0xa16+0x2*0xe2d);_0x1db0d6[_0x6872a7(0x36,0xe2,0x57,0xba)+'r'][_0x41842a(0x197,0x1b0,0x168,0x14c)+_0x6872a7(0x96,0x123,0x16e,0x10e)+_0x6872a7(0x102,0x196,0x22b,0x145)]=_0x355d23[_0x41842a(0x213,0x115,0x18e,0x1c1)](setTimeout,()=>{function _0x4b9bcc(_0x3f3383,_0x122193,_0x223b64,_0x3504c6){return _0x6872a7(_0x3f3383-0xb,_0x122193- -0x38,_0x223b64-0x1a8,_0x3f3383);}_0x1db0d6['serve'+'r'][_0x4b9bcc(0x1d9,0x181,0x104,0x1ac)](()=>{function _0x52a6fc(_0x3e6799,_0x19b8ba,_0x3996a9,_0x50431a){return _0x4b9bcc(_0x3996a9,_0x19b8ba-0x253,_0x3996a9-0x3a,_0x50431a-0x26);}process[_0x52a6fc(0x375,0x38d,0x2e3,0x2e3)](-0xb*0x1aa+0x1d8a+-0xb3c);});},_0x54f901);const _0x1aaea7={};_0x1aaea7[_0x41842a(0x13b,0x219,0x144,0x194)+_0x6872a7(0x71,0xfa,0xeb,0xd2)+'pe']=_0x355d23[_0x6872a7(0x1ff,0x163,0x107,0xc2)],_0x1db435['write'+'Head'](-0x2*0x2de+-0x2309*-0x1+-0x1c85,_0x1aaea7);const _0x44f5a3={};_0x44f5a3[_0x41842a(0x1a6,0x165,0x1f2,0x204)+'ss']=!![],_0x44f5a3[_0x6872a7(0x14c,0x170,0x17d,0x208)+'ge']=_0x6872a7(0x6a,0xb1,0x5c,0x12f)+'置',_0x1db435[_0x41842a(0x206,0x2b7,0x2a9,0x299)](JSON[_0x41842a(0x271,0x289,0x1db,0x224)+_0x6872a7(0x25e,0x1bb,0x253,0x244)](_0x44f5a3));}else{const _0x16042b={};_0x16042b[_0x6872a7(0x79,0xdb,0x102,0x41)+_0x6872a7(0x150,0xfa,0x161,0x159)+'pe']=_0x355d23[_0x6872a7(0x130,0x163,0x1b4,0x182)],_0x1db435[_0x41842a(0x19d,0x230,0x245,0x202)+'Head'](-0x1731+-0x140*0x17+0x34b9,_0x16042b);const _0xb0c25a={};_0xb0c25a[_0x41842a(0x27e,0x1e1,0x24c,0x204)+'ss']=!![],_0xb0c25a[_0x6872a7(0x197,0x170,0x171,0x1b5)+'ge']=_0x355d23[_0x41842a(0x1d5,0x146,0x121,0x19f)],_0x1db435[_0x6872a7(0x19f,0x1e0,0x1db,0x1a8)](JSON[_0x41842a(0x1fc,0x1e3,0x1cf,0x224)+_0x41842a(0x267,0x1d4,0x264,0x274)](_0xb0c25a));}}else{const _0x4b9f99={};_0x4b9f99[_0x41842a(0x205,0xe9,0x226,0x194)+_0x41842a(0x22d,0x1ea,0x18a,0x1b3)+'pe']=_0x41842a(0x19c,0x266,0x1a4,0x1eb)+_0x41842a(0x1e3,0x257,0x1c6,0x1fa)+_0x41842a(0x16f,0x171,0x200,0x1f4)+'n',_0x1db435['write'+_0x41842a(0x2ef,0x2c0,0x334,0x296)](-0x1*0x17c9+0xb3*0x15+0xaaf,_0x4b9f99);const _0x1d8c51={};_0x1d8c51['error']=_0x41842a(0x313,0x28f,0x1ea,0x284)+_0x6872a7(0x1ae,0x134,0x16d,0xbd),_0x1db435[_0x6872a7(0x250,0x1e0,0x139,0x208)](JSON[_0x6872a7(0x1c8,0x16b,0x131,0xe3)+_0x6872a7(0x1dc,0x1bb,0x261,0x141)](_0x1d8c51));}return;}else _0x4e3ef5[_0x6872a7(0xfe,0xd5,0x139,0xc7)](_0x41842a(0x1d0,0x2b5,0x182,0x217)+_0x41842a(0x25e,0x186,0x1be,0x207)+_0x41842a(0x1a8,0x1bb,0x20a,0x17d)+_0x3adf3f()),_0x305044[_0x6872a7(0x212,0x172,0x201,0x138)](0x1fd9*0x1+-0x22a3+0x2*0x165);}if(_0x355d23[_0x6872a7(0x1e6,0x1c8,0x1e2,0x25d)](_0x36b320,_0x6872a7(0x12f,0xa0,0xf1,0xb1)+_0x6872a7(0x1f,0x9d,0x1f,0x59)+'g')){const _0x5b96cd=_0x29c82a['query']['cli']||_0x355d23[_0x6872a7(0x92,0xb5,0x28,0x157)];if(_0x1db0d6['metho'+'d']===_0x355d23[_0x41842a(0x264,0x26e,0x2ab,0x242)]){if(_0x6872a7(0x13f,0x1b5,0x13f,0x120)!==_0x41842a(0x2d1,0x25d,0x248,0x26e))_0x5dd6ed[_0x41842a(0x1db,0x231,0x195,0x22b)](-0x7db+0x1375*0x2+-0x1f0f*0x1);else{const _0x428727=_0x3a5f3f(_0x5b96cd),_0x93c5f4={};_0x93c5f4['Conte'+'nt-Ty'+'pe']=_0x6872a7(0x129,0x132,0x12d,0x16d)+_0x6872a7(0x16d,0x141,0x15a,0x1a2)+_0x6872a7(0xc7,0x13b,0x107,0x18a)+'n',_0x1db435[_0x41842a(0x267,0x1ed,0x1c9,0x202)+_0x6872a7(0x20a,0x1dd,0x212,0x18d)](-0x1271+0x6f1*-0x1+0x1a2a,_0x93c5f4);const _0x2d3093={};_0x2d3093[_0x6872a7(0xc3,0x9d,0x136,0x6f)+'g']=_0x428727,_0x2d3093['path']=_0x3eb2f1,_0x2d3093[_0x41842a(0x200,0x1f1,0x1b0,0x1f1)+'pe']=_0x5b96cd,_0x1db435['end'](JSON[_0x41842a(0x1f2,0x210,0x2ca,0x224)+_0x41842a(0x1ef,0x2ba,0x21d,0x274)](_0x2d3093));}}else{if(_0x1db0d6[_0x6872a7(0xc5,0xcb,0x128,0x93)+'d']===_0x355d23[_0x6872a7(0x15d,0x125,0x1ba,0x90)]){let _0x2bc410='';_0x1db0d6['on'](_0x41842a(0x10b,0x181,0x136,0x176),_0x1687ef=>{_0x2bc410+=_0x1687ef['toStr'+'ing']();}),_0x1db0d6['on'](_0x6872a7(0x16d,0x1e0,0x1f9,0x282),()=>{function _0x51a8ef(_0xefce3c,_0x5f2b5a,_0x1372bb,_0x450caa){return _0x6872a7(_0xefce3c-0x13c,_0xefce3c-0x21d,_0x1372bb-0x116,_0x5f2b5a);}function _0x53dbab(_0x14c636,_0x197d4b,_0x43b161,_0x2faa5a){return _0x6872a7(_0x14c636-0xc3,_0x197d4b-0x3f7,_0x43b161-0xf3,_0x14c636);}if(_0x355d23[_0x53dbab(0x45e,0x4cd,0x495,0x4d6)]===_0x355d23['FBxAs'])_0x36e8e2['key']&&_0x3e4b06['value']&&(_0x2164c6[_0x51a8ef(0x332,0x30e,0x3ae,0x3a4)][_0x2e6914[_0x51a8ef(0x2bb,0x341,0x285,0x2f1)]]=_0x51155[_0x53dbab(0x4c3,0x4e0,0x440,0x44f)]);else try{const _0x5defdd=JSON[_0x51a8ef(0x397,0x3a6,0x33d,0x3a0)](_0x2bc410),_0x3dc2e5=_0x5defdd[_0x51a8ef(0x2ba,0x31e,0x210,0x333)+'g'],_0x4517a7=_0x5defdd[_0x53dbab(0x5a5,0x52f,0x54a,0x59d)+'pe']||_0x5b96cd,_0xf4b386=_0x355d23[_0x51a8ef(0x325,0x3c8,0x388,0x2db)](_0x4e59a3,_0x3dc2e5,_0x4517a7);if(_0xf4b386){const _0x265212={};_0x265212[_0x51a8ef(0x2f8,0x2b5,0x2fc,0x2f9)+_0x53dbab(0x4c6,0x4f1,0x50a,0x4c4)+'pe']=_0x53dbab(0x540,0x529,0x4ad,0x512)+'catio'+_0x51a8ef(0x358,0x37b,0x2f3,0x32f)+'n',_0x1db435[_0x53dbab(0x50a,0x540,0x51d,0x4c8)+_0x53dbab(0x566,0x5d4,0x537,0x666)](0x94*0x1+-0x1*-0x2ef+-0x2bb*0x1,_0x265212);const _0x4cf400={};_0x4cf400[_0x53dbab(0x5b8,0x542,0x52d,0x554)+'ss']=!![],_0x1db435[_0x51a8ef(0x3fd,0x35d,0x428,0x39f)](JSON[_0x51a8ef(0x388,0x3f2,0x3fe,0x3c6)+_0x51a8ef(0x3d8,0x379,0x38d,0x3a1)](_0x4cf400));}else{const _0x79e36a={};_0x79e36a['Conte'+'nt-Ty'+'pe']=_0x355d23[_0x53dbab(0x4cd,0x55a,0x53d,0x4e1)],_0x1db435['write'+'Head'](-0x1b*-0xd8+-0x1f7f+-0x1*-0xaab,_0x79e36a);const _0x15ecd6={};_0x15ecd6[_0x53dbab(0x580,0x554,0x518,0x572)]='保存失败',_0x1db435['end'](JSON[_0x53dbab(0x52b,0x562,0x4d0,0x57a)+_0x53dbab(0x521,0x5b2,0x525,0x629)](_0x15ecd6));}}catch(_0x41e214){if(_0x355d23[_0x53dbab(0x542,0x528,0x544,0x4df)](_0x355d23[_0x53dbab(0x579,0x553,0x5e2,0x50d)],_0x355d23[_0x51a8ef(0x379,0x3ec,0x3ca,0x32d)])){const _0xf5682e=_0x29becc(_0x42e1c4),_0x56eb0f={};_0x56eb0f[_0x53dbab(0x441,0x4d2,0x431,0x558)+_0x53dbab(0x527,0x4f1,0x54f,0x44a)+'pe']=_0x53dbab(0x4fc,0x529,0x498,0x591)+_0x51a8ef(0x35e,0x30f,0x3f1,0x2c7)+'n/jso'+'n',_0x175fc3[_0x53dbab(0x543,0x540,0x586,0x50b)+_0x53dbab(0x60a,0x5d4,0x5f4,0x5b1)](0x24be+0x21d1+-0x1*0x45c7,_0x56eb0f);const _0x16fd82={};_0x16fd82['confi'+'g']=_0xf5682e,_0x16fd82[_0x53dbab(0x4c3,0x4e9,0x4d5,0x505)]=_0xb3d360,_0x16fd82['cliTy'+'pe']=_0x3f8b44,_0x354639[_0x51a8ef(0x3fd,0x3d8,0x434,0x434)](_0x40bf8d['strin'+_0x53dbab(0x596,0x5b2,0x56e,0x61d)](_0x16fd82));}else{const _0x1759eb={};_0x1759eb[_0x53dbab(0x472,0x4d2,0x4a0,0x427)+_0x51a8ef(0x317,0x280,0x3c0,0x353)+'pe']=_0x53dbab(0x570,0x529,0x508,0x5c5)+'catio'+_0x51a8ef(0x358,0x347,0x38f,0x3c1)+'n',_0x1db435[_0x53dbab(0x4ee,0x540,0x573,0x4a8)+'Head'](-0x17cb+-0x5*0x32f+0x6*0x6e1,_0x1759eb);const _0x1eaa70={};_0x1eaa70['error']=_0x355d23['PYOVv'],_0x1db435[_0x53dbab(0x552,0x5d7,0x567,0x557)](JSON['strin'+_0x51a8ef(0x3d8,0x45d,0x3d3,0x375)](_0x1eaa70));}}});}else{const _0x39f203={};_0x39f203[_0x41842a(0x1f6,0x1d6,0x134,0x194)+_0x6872a7(0x65,0xfa,0xe2,0x170)+'pe']=_0x41842a(0x183,0x289,0x183,0x1eb)+_0x41842a(0x29f,0x15d,0x266,0x1fa)+_0x6872a7(0x102,0x13b,0xb3,0x1b1)+'n',_0x1db435['write'+_0x41842a(0x333,0x287,0x233,0x296)](0xf6*0x28+-0x481*0x1+-0x205a,_0x39f203);const _0x1f63a8={};_0x1f63a8['error']=_0x355d23[_0x6872a7(0x49,0xc1,0xa8,0x13e)],_0x1db435[_0x41842a(0x28b,0x245,0x20c,0x299)](JSON[_0x41842a(0x27d,0x288,0x1b7,0x224)+'gify'](_0x1f63a8));}}return;}let _0x3789b4=_0x265a07['join'](__dirname,'..',_0x355d23[_0x6872a7(0xf1,0x179,0x181,0xdf)],_0x355d23['RNUOF']);if(_0x355d23[_0x41842a(0xfc,0x1cf,0x200,0x189)](_0x36b320,'/')||_0x355d23[_0x6872a7(0x14b,0xd0,0x64,0xce)](_0x36b320,_0x41842a(0x207,0xd6,0xc6,0x16c)+_0x6872a7(0x150,0x19a,0x1b3,0x17c)+'ml')){if(_0x355d23[_0x41842a(0x1de,0x25c,0x218,0x255)]!=='XzxyZ'){const _0x173fc3=_0x33d1e9[_0x41842a(0x238,0x2bb,0x341,0x297)](_0x10f40f=>{if(/[^\w\-]/['test'](_0x10f40f))return'\x22'+_0x10f40f[_0x3900ee(0x1ec,0x222,0x212,0x17c)+'ce'](/"/g,'\x5c\x22')+'\x22';function _0x3900ee(_0x4eb4d7,_0x2f1097,_0x3cb904,_0x64b894){return _0x6872a7(_0x4eb4d7-0x182,_0x3cb904-0x141,_0x3cb904-0x18e,_0x2f1097);}return _0x10f40f;})[_0x6872a7(0x14f,0xeb,0x16b,0x18c)]('\x20');_0x4b798a=_0x3c258a+'\x20'+_0x173fc3,_0x2ff002=[];}else _0x3789b4=_0x265a07[_0x41842a(0x1e6,0x173,0x1c9,0x1a4)](__dirname,'..',_0x41842a(0x1e7,0x222,0x1d5,0x1a7)+'s',_0x355d23[_0x41842a(0x2f0,0x257,0x2a2,0x24a)]);}else{if(_0x36b320[_0x41842a(0x10b,0x219,0x10b,0x1b0)+_0x6872a7(0x97,0xfc,0x65,0x8b)]('/cdn/')){const _0x1b012b=_0x36b320[_0x6872a7(0x3b,0xd1,0x37,0xb6)+'ce'](_0x355d23['EHzBC'],'');_0x3789b4=_0x265a07[_0x6872a7(0x11c,0xeb,0x113,0x44)](__dirname,'..',_0x6872a7(0x10a,0xee,0x138,0xdf)+'s',_0x6872a7(0x156,0x12c,0x167,0xe9),_0x1b012b);}else _0x3789b4=_0x265a07[_0x41842a(0x1c5,0x16f,0x16d,0x1a4)](__dirname,'..','asset'+'s',_0x36b320);}_0x3789b4=_0x265a07[_0x41842a(0x12b,0x1a5,0x1c7,0x1c2)+_0x6872a7(0x13f,0x171,0x178,0x1f3)](_0x3789b4);function _0x6872a7(_0x4aa249,_0x586d5b,_0x36a3e,_0x59952d){return _0x25b31e(_0x59952d,_0x586d5b-0x7e,_0x36a3e-0x55,_0x59952d-0x132);}const _0x555893=_0x265a07['norma'+_0x6872a7(0x150,0x171,0x11c,0x1cf)](_0x265a07[_0x41842a(0x10b,0x1e3,0x216,0x1a4)](__dirname,'..',_0x355d23['OFWso']));if(!_0x3789b4[_0x6872a7(0xc6,0xf7,0x67,0x91)+_0x41842a(0x173,0x1d4,0x114,0x1b5)](_0x555893)){if(_0x355d23['RojQH'](_0x355d23['BGvkC'],_0x6872a7(0x113,0x166,0x15a,0x103))){_0x4b65ea[_0x41842a(0xeb,0x1c8,0xfa,0x18e)](_0x41842a(0x24a,0x1e6,0x1fc,0x200)+'http:'+'//loc'+_0x41842a(0x144,0x27f,0x218,0x1ec)+'t:'+_0xb9bca2+(_0x6872a7(0xa7,0x117,0x91,0x196)+'API\x20令'+'牌')),_0x355d23[_0x6872a7(0x16e,0x15a,0x1a4,0x158)](_0x5e0b4f,_0x6872a7(0x156,0xbe,0x62,0x57)+'//loc'+_0x41842a(0x248,0x1bb,0x18f,0x1ec)+'t:'+_0x283bda),_0x368244[_0x6872a7(0xd6,0xd5,0xe4,0x142)](_0x6872a7(0x261,0x1e3,0x155,0x224)+'l+C\x20停'+_0x6872a7(0x1da,0x1db,0x1ed,0x19e));const _0x46ca15=_0x355d23[_0x6872a7(0x18d,0x102,0x180,0x65)](_0x355d23['qDUBX'](0xea7+-0x665*-0x2+0x1b67*-0x1,0x7*0x57e+0x33a+-0x30*0xdd),-0xb07*0x3+-0x10f*0xf+-0x2*-0x1a6f),_0x4f67fb=_0x56fb0b(()=>{function _0x42b2f2(_0x466a3c,_0x5845ab,_0x5494a4,_0x5dd712){return _0x41842a(_0x466a3c-0x1ea,_0x5dd712,_0x5494a4-0xb9,_0x466a3c-0x35e);}_0x77bbc1[_0x42b2f2(0x5d0,0x634,0x614,0x618)](()=>{function _0x56e597(_0x21c6eb,_0x407873,_0x359f3b,_0x232ef8){return _0x42b2f2(_0x232ef8- -0x37f,_0x407873-0xda,_0x359f3b-0x181,_0x359f3b);}_0x2d0505[_0x56e597(0x203,0x1c2,0x209,0x20a)](-0x2504+-0x7*-0x1b5+0x1911);});},_0x46ca15);_0xc38f38[_0x6872a7(0xd8,0x93,0xe2,0xbf)+_0x6872a7(0xfd,0x123,0x1be,0x1b9)+_0x41842a(0x2d0,0x1a8,0x209,0x24f)]=_0x4f67fb;}else{_0x1db435[_0x41842a(0x24b,0x167,0x1e9,0x202)+'Head'](0x1493*-0x1+-0x61*-0xd+0x1139*0x1),_0x1db435['end'](_0x41842a(0x1f6,0x1a7,0x1cf,0x1c5)+_0x6872a7(0x156,0xc7,0x59,0xbb));return;}}const _0x426c42=_0x265a07[_0x41842a(0x1f1,0x1d8,0x1a9,0x1ee)+'me'](_0x3789b4);let _0x4f8801=_0x41842a(0x139,0x127,0x1e0,0x19d)+'html';switch(_0x426c42){case _0x355d23[_0x41842a(0x1e4,0x1e3,0x2f1,0x250)]:_0x4f8801=_0x355d23[_0x6872a7(0xf0,0x177,0x19c,0x1f4)];break;case _0x355d23[_0x41842a(0x32b,0x2f3,0x29d,0x283)]:_0x4f8801=_0x355d23[_0x6872a7(0x1d9,0x1da,0x1e6,0x139)];break;case _0x355d23[_0x41842a(0x165,0x212,0x13a,0x1bc)]:_0x4f8801=_0x41842a(0x175,0x1ea,0x265,0x1eb)+_0x41842a(0x1bf,0x20c,0x272,0x1fa)+_0x41842a(0x225,0x16b,0x266,0x1f4)+'n';break;case _0x355d23[_0x6872a7(0xfe,0x165,0x138,0x18b)]:_0x4f8801=_0x41842a(0x233,0x289,0x28e,0x27d)+_0x6872a7(0x22c,0x1b1,0x108,0x1c7);break;case _0x41842a(0x171,0x18e,0x195,0x158):_0x4f8801=_0x355d23[_0x41842a(0x1cb,0x256,0x215,0x1ba)];break;case _0x355d23[_0x6872a7(0x22a,0x1cc,0x24d,0x161)]:_0x4f8801=_0x41842a(0x24b,0x284,0x250,0x27d)+'/x-ic'+'on';break;}_0x53e450['readF'+_0x6872a7(0x130,0xa6,0x13d,0xf)](_0x3789b4,(_0x7baf4,_0x1a1eb5)=>{function _0x2188b2(_0x11702a,_0x26673f,_0x2db037,_0x44668d){return _0x41842a(_0x11702a-0x60,_0x2db037,_0x2db037-0x80,_0x44668d- -0x83);}function _0x222145(_0x17f9bf,_0x31cd96,_0xb086a8,_0x4bbaa4){return _0x41842a(_0x17f9bf-0x51,_0x31cd96,_0xb086a8-0x107,_0x17f9bf- -0x2fd);}if(_0x7baf4)_0x7baf4[_0x2188b2(0x94,0x10f,0x112,0x126)]==='ENOEN'+'T'?(_0x1db435['write'+_0x2188b2(0x1b3,0x1ea,0x209,0x213)](-0x2366+0x24c8+0x32),_0x1db435[_0x222145(-0x64,-0x79,-0x7c,-0x98)](_0x2188b2(0xfb,0x10c,0x67,0xdb)+_0x2188b2(0x187,0x1d7,0x137,0x164)+_0x2188b2(0x152,0xd5,0x109,0x14e))):_0x355d23[_0x222145(-0x132,-0x175,-0xc8,-0xf3)](_0x2188b2(0x13a,0x103,0xc6,0x16c),'IQOfN')?(_0x1db435[_0x222145(-0xfb,-0x1a5,-0xaa,-0xf4)+_0x222145(-0x67,0x26,-0x3f,-0xfe)](-0x910+-0x1ab9+0x25bd),_0x1db435[_0x222145(-0x64,-0x96,-0x50,-0xe3)](_0x2188b2(0xee,0xea,0x172,0x114)+_0x2188b2(0x1b7,0xa1,0x193,0x14c)+'al\x20Se'+_0x222145(-0x133,-0xf0,-0xd4,-0x15e)+_0x2188b2(0x145,0x33,0x179,0xdd))):_0x2006ca['kill']('SIGTE'+'RM');else{const _0x513e6c={};_0x513e6c[_0x222145(-0x169,-0xe7,-0x12a,-0x14a)+_0x2188b2(0xa3,0x14b,0x1be,0x130)+'pe']=_0x4f8801,_0x1db435[_0x2188b2(0x11c,0x1e7,0x145,0x17f)+_0x222145(-0x67,-0x4e,-0x2,-0xa0)](0x231f+-0x394+-0x1ec3,_0x513e6c),_0x1db435[_0x222145(-0x64,-0xd1,0x32,-0xd)](_0x1a1eb5,_0x355d23[_0x2188b2(0x1ca,0x19e,0x14f,0x140)]);}});}function _0x26109d(_0x5b4629){function _0x489aa5(_0x233a56,_0x47a96f,_0x45c8a1,_0x331184){return _0x25b31e(_0x47a96f,_0x331184- -0x209,_0x45c8a1-0x1ae,_0x331184-0x1c4);}const _0x48773d={'HohhT':function(_0x12646f,_0x1bfe1a){return _0x12646f(_0x1bfe1a);},'oQQiI':_0x595a11(0x3c7,0x3e1,0x444,0x44b),'bikHL':'LUmXr','JlLZP':_0x489aa5(-0xc4,-0xdd,-0xe5,-0xa6),'AiRwz':_0x489aa5(-0x102,-0x6a,-0x14c,-0xb1),'rWqsO':'error'};function _0x595a11(_0x584792,_0x280c89,_0x50fd69,_0x2dcee6){return _0x29a439(_0x50fd69,_0x280c89-0x418,_0x50fd69-0x1bd,_0x2dcee6-0xc3);}return new Promise(_0x2a9095=>{function _0x4fdcb8(_0x2c9a25,_0x45ac56,_0x416c71,_0x56aae8){return _0x595a11(_0x2c9a25-0x1b,_0x45ac56- -0x2a,_0x416c71,_0x56aae8-0x159);}function _0x1b1d8b(_0x4c705f,_0x85a5b1,_0x563f82,_0x8c53b7){return _0x489aa5(_0x4c705f-0xc7,_0x8c53b7,_0x563f82-0x126,_0x85a5b1- -0xb);}const _0x5c075b={'EbzPf':function(_0x3d79f1,_0x1baa53){function _0x4aa1c3(_0x18e8a3,_0x22338b,_0xe106dc,_0x1486ce){return _0x180e(_0x22338b- -0xb3,_0x18e8a3);}return _0x48773d[_0x4aa1c3(0x185,0x18d,0x193,0x230)](_0x3d79f1,_0x1baa53);},'heJoX':_0x48773d[_0x4fdcb8(0x3ce,0x40e,0x3b3,0x41b)],'qcLkK':_0x48773d['bikHL']};if(_0x48773d['JlLZP']!==_0x48773d[_0x4fdcb8(0x2eb,0x364,0x33f,0x3f8)]){const _0x3da73d=_0x594f49['creat'+'eServ'+'er']();_0x3da73d['liste'+'n'](_0x5b4629,_0x38d734=>{function _0x25eb0d(_0x2ed1b3,_0x3efa68,_0x3c4d62,_0x35dad9){return _0x4fdcb8(_0x2ed1b3-0x115,_0x2ed1b3- -0x1af,_0x35dad9,_0x35dad9-0x164);}const _0x4f6fa5={'JJCzK':function(_0x4501d0,_0x14fd14){return _0x4501d0(_0x14fd14);}};function _0x151671(_0x1d7022,_0x1586be,_0x58a6bb,_0x3fc651){return _0x1b1d8b(_0x1d7022-0xb5,_0x1586be-0x35b,_0x58a6bb-0xa0,_0x3fc651);}if(_0x151671(0x165,0x161,0x128,0xf0)===_0x25eb0d(0x175,0xf8,0x17b,0x165))_0x38d734?_0x5c075b[_0x151671(0x281,0x2a8,0x287,0x225)](_0x2a9095,!![]):_0x5c075b[_0x151671(0x194,0x1f9,0x243,0x1e9)]===_0x5c075b[_0x25eb0d(0x185,0x19b,0x1e5,0x1db)]?_0x551b2a?_0x3edeb3(!![]):_0x5bb03b[_0x25eb0d(0x296,0x208,0x2d7,0x236)](()=>{function _0x401c04(_0x3e111a,_0x11eeb9,_0x368225,_0x3da7d9){return _0x25eb0d(_0x3e111a- -0x30f,_0x11eeb9-0x13a,_0x368225-0x1e8,_0x368225);}_0x4f6fa5[_0x401c04(-0x15e,-0x1be,-0x108,-0xb8)](_0x2381e0,![]);}):_0x3da73d['close'](()=>{function _0x3fe3c9(_0x26ab20,_0x3858e9,_0xc2d675,_0x356551){return _0x151671(_0x26ab20-0xeb,_0x3858e9- -0x193,_0xc2d675-0x1f1,_0x356551);}_0x4f6fa5[_0x3fe3c9(-0x76,0xa,0x15,-0x91)](_0x2a9095,![]);});else{const _0x53d646={};_0x53d646[_0x25eb0d(0x28c,0x209,0x2b8,0x324)]=[],_0x53d646['activ'+'eInde'+'x']=0x0;const _0x3175fd={};_0x3175fd[_0x151671(0x30f,0x278,0x310,0x248)]=[],_0x3175fd['activ'+_0x25eb0d(0x26b,0x210,0x25a,0x30d)+'x']=0x0;const _0x14eb61={};_0x14eb61['AUTH']=[],_0x14eb61[_0x25eb0d(0x22d,0x1a0,0x1da,0x19a)+_0x151671(0x1f1,0x257,0x266,0x2ba)+'x']=0x0;const _0x5f0ffa={};_0x5f0ffa[_0x151671(0x239,0x227,0x1ca,0x190)+'e']=_0x53d646,_0x5f0ffa[_0x151671(0x211,0x280,0x222,0x2d9)]=_0x3175fd,_0x5f0ffa['gemin'+'i']=_0x14eb61,_0x5b7e2f=_0x5f0ffa;}}),_0x3da73d['on'](_0x48773d[_0x4fdcb8(0x347,0x31d,0x27b,0x2b3)],()=>{_0x2a9095(!![]);});}else return _0x5961f9[_0x1b1d8b(-0x15e,-0x149,-0x139,-0x1b4)+_0x4fdcb8(0x450,0x44f,0x3b2,0x46d)+_0x1b1d8b(-0x109,-0xbe,-0x25,-0x3d)](_0x50e005,_0x3781e3[_0x4fdcb8(0x3ed,0x3f7,0x46e,0x3e7)+_0x1b1d8b(-0x12d,-0xd7,-0xde,-0x54)](_0x4549a0,null,0x23d6+-0x1980+0xa54*-0x1),_0x4fdcb8(0x3aa,0x455,0x3d3,0x4b6)),!![];});}function _0x180e(_0x421082,_0x93eb14){_0x421082=_0x421082-(0x405+0xff2+-0x4*0x4b4);const _0xb58f2a=_0x2a23();let _0x327cfd=_0xb58f2a[_0x421082];if(_0x180e['Gpnctz']===undefined){var _0x839d81=function(_0xae494f){const _0x1beb39='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x271639='',_0x2196d9='',_0x5bcc51=_0x271639+_0x839d81;for(let _0x3be7a6=-0x135c+-0x9b9*-0x2+-0x16,_0x544413,_0x16e947,_0x507135=0x86a+-0x1f1a+0x16b0;_0x16e947=_0xae494f['charAt'](_0x507135++);~_0x16e947&&(_0x544413=_0x3be7a6%(-0x115*-0x17+-0x1447+-0x498)?_0x544413*(-0x1*-0x247a+-0x1458+-0xfe2)+_0x16e947:_0x16e947,_0x3be7a6++%(-0x547+0x7*-0x451+0x2382))?_0x271639+=_0x5bcc51['charCodeAt'](_0x507135+(-0x3df*-0x2+0x1c64+-0x2418))-(0x14f3+-0x47*-0x67+-0x317a)!==0xb*0x33d+-0x3e2*-0x2+-0x2b63?String['fromCharCode'](0xe*-0x1ae+-0x1*0x12d6+0x89*0x51&_0x544413>>(-(0x1b95+-0x1f31*-0x1+-0x3ac4)*_0x3be7a6&0x6fc+0x13c3*-0x1+-0x1*-0xccd)):_0x3be7a6:-0x7cf+0x1*0x9da+-0x20b*0x1){_0x16e947=_0x1beb39['indexOf'](_0x16e947);}for(let _0x97651e=-0x120f+0xda5+-0x2*-0x235,_0x42eb20=_0x271639['length'];_0x97651e<_0x42eb20;_0x97651e++){_0x2196d9+='%'+('00'+_0x271639['charCodeAt'](_0x97651e)['toString'](-0x1b7*-0x11+-0x1*0x222f+0x518))['slice'](-(-0x2062+-0x1b*-0x14e+-0x2d6));}return decodeURIComponent(_0x2196d9);};_0x180e['snvLpq']=_0x839d81,_0x180e['HHVoDq']={},_0x180e['Gpnctz']=!![];}const _0x25643e=_0xb58f2a[-0x20*0x19+-0x17b*0x12+0x1dc6],_0x2cdbe9=_0x421082+_0x25643e,_0x144d66=_0x180e['HHVoDq'][_0x2cdbe9];if(!_0x144d66){const _0x1b4e27=function(_0x18f850){this['gvjhzg']=_0x18f850,this['VDMrAr']=[0x256f+-0x1*0x12eb+0x2a5*-0x7,0x2683+0x274+0x1*-0x28f7,-0x1d45+-0x1342+0x3087],this['CqjTlX']=function(){return'newState';},this['ZJIiDe']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['IzRJmd']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x1b4e27['prototype']['GeXOpW']=function(){const _0x880332=new RegExp(this['ZJIiDe']+this['IzRJmd']),_0x1574f6=_0x880332['test'](this['CqjTlX']['toString']())?--this['VDMrAr'][0x748*-0x2+-0x5ac+-0x9d*-0x21]:--this['VDMrAr'][0x23e4+0x259e+0x1*-0x4982];return this['idDIlV'](_0x1574f6);},_0x1b4e27['prototype']['idDIlV']=function(_0x3574fe){if(!Boolean(~_0x3574fe))return _0x3574fe;return this['nKAPmU'](this['gvjhzg']);},_0x1b4e27['prototype']['nKAPmU']=function(_0x7c6f34){for(let _0x3ed58c=0x287*-0xc+-0x8d*0x26+0x3342,_0x4e3532=this['VDMrAr']['length'];_0x3ed58c<_0x4e3532;_0x3ed58c++){this['VDMrAr']['push'](Math['round'](Math['random']())),_0x4e3532=this['VDMrAr']['length'];}return _0x7c6f34(this['VDMrAr'][-0xd*-0x2cf+0x607*-0x1+-0x1e7c]);},new _0x1b4e27(_0x180e)['GeXOpW'](),_0x327cfd=_0x180e['snvLpq'](_0x327cfd),_0x180e['HHVoDq'][_0x2cdbe9]=_0x327cfd;}else _0x327cfd=_0x144d66;return _0x327cfd;}function _0x1af15e(_0x216275){const _0x375cbb={};_0x375cbb[_0x3fa313(-0x28,-0x8,0x65,-0x1f)]=function(_0x18a881,_0xcd6165){return _0x18a881===_0xcd6165;};function _0x339b62(_0x5cd4d2,_0x26b082,_0x5555be,_0x1b5f22){return _0x29a439(_0x5cd4d2,_0x1b5f22- -0xd6,_0x5555be-0x5c,_0x1b5f22-0x19a);}_0x375cbb['RbfNG']='open';function _0x3fa313(_0x575d63,_0x115f78,_0x14ad70,_0x4bcc34){return _0x29a439(_0x575d63,_0x4bcc34-0x4a,_0x14ad70-0x79,_0x4bcc34-0xea);}_0x375cbb[_0x3fa313(0xd9,0x64,0xe6,0x68)]=_0x3fa313(0x1f,-0x1,-0x5e,-0x21),_0x375cbb[_0x339b62(-0x81,-0x14a,-0x16c,-0xd6)]=_0x3fa313(-0x37,-0x7c,0x91,0x2d)+_0x339b62(-0x1a2,-0x1d3,-0x132,-0x12b);const _0x1389f3=_0x375cbb,_0x242a41=_0x1389f3['bnENu'](process[_0x3fa313(0x97,-0x10,0xe0,0x89)+_0x3fa313(0x5a,-0x23,0x2d,0x55)],'darwi'+'n')?_0x1389f3[_0x3fa313(0x2e,0x27,-0x4b,0x43)]:process[_0x3fa313(-0x18,0xd,0x4a,0x89)+_0x3fa313(0x30,0x3a,0x42,0x55)]===_0x339b62(-0x50,-0x60,-0x9a,-0xb4)?_0x1389f3[_0x339b62(-0x55,-0xc3,-0xe5,-0xb8)]:_0x1389f3[_0x339b62(-0xba,-0x6b,-0x9c,-0xd6)],_0x2cabf6={};_0x2cabf6[_0x3fa313(0x3c,0x49,0x74,0x77)]=_0x3fa313(0x34,0x98,0x9b,0x2e)+'e',_0x6c9f7b(_0x242a41+'\x20'+_0x216275,_0x2cabf6);}function _0x52894b(){function _0x3a8962(_0x537cd1,_0x385740,_0x2cdc21,_0x2baf9f){return _0x25b31e(_0x2baf9f,_0x2cdc21-0x192,_0x2cdc21-0x177,_0x2baf9f-0x19d);}const _0x295d70={'yiSry':function(_0x3b48fc,_0x3f52f8){return _0x3b48fc!==_0x3f52f8;},'YPGfF':_0x518b64(-0x8c,-0xee,-0x118,-0x59),'xElEs':function(_0x75e02b,_0x3224e9){return _0x75e02b*_0x3224e9;},'fcKrU':function(_0x49882b,_0x43efd5){return _0x49882b*_0x43efd5;},'FRihG':function(_0x3b19b1,_0x182ac4){return _0x3b19b1(_0x182ac4);},'abAug':'tIPde','YERFj':function(_0x26866c,_0x19fb81,_0x5c676f){return _0x26866c(_0x19fb81,_0x5c676f);},'kUIaD':_0x518b64(-0xd3,-0x158,-0x123,-0x3d)+'e','nYQLt':function(_0x31c020,_0x50b4c0){return _0x31c020(_0x50b4c0);},'zEDpH':_0x3a8962(0x374,0x264,0x2d3,0x30c)+'RM'},_0x57db78=_0x594f49[_0x3a8962(0x2af,0x2c4,0x295,0x301)+_0x518b64(-0x153,-0x16a,-0x163,-0x11a)+'er']((_0x3a6d4f,_0x4a9355)=>_0x27bcbf(_0x3a6d4f,_0x4a9355,_0x57db78));_0x57db78[_0x3a8962(0x29d,0x315,0x283,0x299)+'n'](_0x1979be,()=>{console['log'](_0x2fd248(0x241,0x23f,0x241,0x1f3)+_0x4db54b(0x314,0x245,0x2e3,0x30e)+_0x2fd248(0x274,0x2a8,0x2df,0x2a3)+_0x4db54b(0x39d,0x2f0,0x358,0x322)+'t:'+_0x1979be+(_0x4db54b(0x2b0,0x32e,0x33c,0x372)+_0x2fd248(0x2e5,0x2a4,0x20e,0x239)+'牌')),_0x1af15e(_0x2fd248(0x1ff,0x1b6,0x1e5,0x21d)+_0x2fd248(0x286,0x2a8,0x352,0x2ea)+_0x4db54b(0x3a1,0x3cb,0x358,0x3ac)+'t:'+_0x1979be),console['log'](_0x4db54b(0x41f,0x3d1,0x408,0x37d)+_0x2fd248(0x1fa,0x1af,0x1db,0x11e)+'止服务器');const _0x237389=_0x295d70['xElEs'](_0x295d70['fcKrU'](0x26d9+0x2175+-0x4844,-0x3e6*0xa+0x8e2*-0x2+0x38fc),0x1cbb+0x2489+-0x3d5c),_0x1c1131=setTimeout(()=>{function _0xd40a4b(_0x1ffe91,_0x112bde,_0x567440,_0x55797a){return _0x2fd248(_0x1ffe91-0x28,_0x112bde- -0x1cf,_0x1ffe91,_0x55797a-0x94);}function _0x484d88(_0x3f708c,_0x3133ff,_0x2d55fa,_0x49c06e){return _0x4db54b(_0x2d55fa,_0x3133ff-0x30,_0x3f708c- -0x28c,_0x49c06e-0x179);}_0x295d70[_0x484d88(0x2f,-0x14,0xf,0xa)](_0xd40a4b(-0xb9,-0xe,0x5c,-0x67),_0x295d70[_0x484d88(0x80,0x3,0xe0,0x63)])?_0x57db78[_0xd40a4b(0x97,0xe2,0xd8,0x100)](()=>{function _0x30a4aa(_0x2206e5,_0x8c2831,_0x11cb6f,_0x3da144){return _0xd40a4b(_0x2206e5,_0x8c2831-0x3ce,_0x11cb6f-0x1ed,_0x3da144-0x10c);}process[_0x30a4aa(0x3d9,0x469,0x4f2,0x3d1)](0x3bf+-0x4b8+0xf9);}):_0x3ed58c['endsW'+_0x484d88(0x58,-0x2c,0x62,-0x39)](_0x484d88(0x11e,0xfe,0x126,0xc6)+'L')&&delete _0x32993d[_0x484d88(0xae,0xc6,0xdd,0x3b)][_0x300d05];},_0x237389);function _0x2fd248(_0x3eef19,_0x3d7649,_0x1148c4,_0x1139e1){return _0x518b64(_0x3d7649-0x311,_0x1148c4,_0x1148c4-0x174,_0x1139e1-0x158);}function _0x4db54b(_0x2bf4e8,_0x247cd6,_0x9dad20,_0x37c557){return _0x518b64(_0x9dad20-0x43e,_0x2bf4e8,_0x9dad20-0x134,_0x37c557-0x3b);}_0x57db78[_0x2fd248(0x157,0x18b,0x17f,0x1ab)+_0x2fd248(0x26c,0x21b,0x19f,0x186)+_0x2fd248(0x30a,0x28e,0x299,0x2ea)]=_0x1c1131;});function _0x518b64(_0x169a8a,_0x5c7eec,_0x50bdcb,_0x139255){return _0x29a439(_0x5c7eec,_0x169a8a- -0xb7,_0x50bdcb-0x2b,_0x139255-0xcb);}process['on'](_0x3a8962(0x14f,0x1e9,0x1b0,0x106)+'T',()=>{function _0x24b0e4(_0x211790,_0x42863b,_0x12bd4a,_0x4de446){return _0x518b64(_0x42863b-0x1e5,_0x4de446,_0x12bd4a-0xd,_0x4de446-0x119);}function _0x424cf7(_0x52cb56,_0x3a168e,_0x11324b,_0x3a472b){return _0x518b64(_0x52cb56-0x36c,_0x11324b,_0x11324b-0x47,_0x3a472b-0x1a6);}const _0x3496aa={'YCEfb':_0x424cf7(0x2e6,0x25a,0x2db,0x298)+'闭','iccPl':'🚀\x20启动配'+_0x24b0e4(0x205,0x172,0x193,0x129)+'.','vbZYa':function(_0x4f5afd,_0x4afe){return _0x295d70['FRihG'](_0x4f5afd,_0x4afe);}};if(_0x295d70['abAug']===_0x295d70[_0x424cf7(0x319,0x323,0x3ac,0x2da)])console[_0x424cf7(0x228,0x190,0x1c4,0x28b)](_0x424cf7(0x2e5,0x258,0x2eb,0x387)+'服务器..'+'.'),_0x57db78[_0x424cf7(0x1e6,0x181,0x1a8,0x16d)+'loseT'+_0x424cf7(0x2e9,0x36a,0x2d0,0x328)]&&clearTimeout(_0x57db78['autoC'+'loseT'+_0x24b0e4(0x143,0x162,0xb8,0x1cb)]),_0x57db78['close'](()=>{console[_0x8a1f03(-0x238,-0x19c,-0x1b9,-0x2ab)](_0x3496aa['YCEfb']);function _0xd983ef(_0x4f3e71,_0x44350f,_0x46aa33,_0x4ccb8a){return _0x24b0e4(_0x4f3e71-0x2,_0x4f3e71-0x395,_0x46aa33-0x6e,_0x44350f);}function _0x8a1f03(_0x34fd0c,_0x585a2f,_0x1dffa2,_0x4d2ab8){return _0x24b0e4(_0x34fd0c-0x11f,_0x34fd0c- -0x2d9,_0x1dffa2-0x144,_0x585a2f);}process[_0xd983ef(0x4d3,0x578,0x4b7,0x4dd)](0x9e*-0x6+-0x650+0xa04);});else{const _0x12e5b9={};_0x12e5b9[_0x24b0e4(0xda,0x9b,0xd,0x5)]=_0x3496aa[_0x24b0e4(0x181,0xdc,0x104,0x70)];const _0x530c95=_0x12e5b9;_0x3496aa[_0x424cf7(0x2a8,0x32e,0x22f,0x260)](_0x23e0a8,_0xc443c3)[_0x24b0e4(0x6f,0x98,0x100,0x4a)](_0x5747f9=>{function _0x329f7c(_0x221475,_0x1ee379,_0x522f24,_0x3474d7){return _0x424cf7(_0x1ee379- -0x5,_0x1ee379-0x13b,_0x221475,_0x3474d7-0xc0);}function _0x42cf79(_0x355899,_0x31ef1b,_0x3c4e03,_0x324430){return _0x24b0e4(_0x355899-0x2e,_0x3c4e03-0x137,_0x3c4e03-0x1f,_0x31ef1b);}_0x5747f9?(_0x12372a(_0x42cf79(0x225,0x119,0x1c1,0x192)+_0x42cf79(0x2e8,0x2a2,0x2b3,0x23e)+_0x329f7c(0x2ce,0x281,0x300,0x1df)+'t:'+_0x446ce1),_0x20d0cc[_0x42cf79(0x18a,0x14a,0x1d8,0x187)](_0x42cf79(0x267,0x21a,0x24a,0x242)+_0x329f7c(0x281,0x20c,0x190,0x194)+_0x42cf79(0x254,0x2af,0x2b3,0x241)+_0x329f7c(0x2f8,0x281,0x284,0x2dc)+'t:'+_0x3b4d1b+('配置你的\x20'+'API\x20令'+'牌'))):(_0x3fa164[_0x329f7c(0x1bd,0x223,0x2a0,0x26b)](_0x530c95[_0x42cf79(0x12a,0x187,0x1d2,0x1a8)]),_0x5ba8c6());});}}),process['on'](_0x295d70[_0x3a8962(0x226,0x27d,0x227,0x197)],()=>{function _0x323e1d(_0x1e7e52,_0x56daed,_0xa12b7a,_0x5d2cae){return _0x3a8962(_0x1e7e52-0x17f,_0x56daed-0x151,_0x1e7e52- -0x261,_0x56daed);}function _0x3dd325(_0xd6ef4a,_0x4bd589,_0x335f4a,_0x2e7ede){return _0x518b64(_0xd6ef4a-0x567,_0x4bd589,_0x335f4a-0xa3,_0x2e7ede-0x82);}_0x57db78['autoC'+'loseT'+_0x3dd325(0x4e4,0x546,0x578,0x58c)]&&_0x295d70[_0x323e1d(0x47,0x5f,-0x61,0xbb)](clearTimeout,_0x57db78[_0x3dd325(0x3e1,0x3f3,0x353,0x369)+'loseT'+_0x3dd325(0x4e4,0x568,0x52f,0x57f)]),_0x57db78[_0x323e1d(0x6c,0x107,0xb9,0x103)](()=>{function _0x40c6ce(_0x4afe66,_0x54be09,_0x1aa44b,_0x17df67){return _0x3dd325(_0x1aa44b- -0x38f,_0x54be09,_0x1aa44b-0x161,_0x17df67-0x125);}function _0x5d0c08(_0x1f88b3,_0x37c678,_0x2fe82d,_0x344a11){return _0x3dd325(_0x2fe82d- -0x227,_0x1f88b3,_0x2fe82d-0x124,_0x344a11-0x151);}const _0x315f67={'yAnUC':function(_0xe984a6,_0x4e47cf,_0x4e32a2){return _0x295d70['YERFj'](_0xe984a6,_0x4e47cf,_0x4e32a2);},'bPAsD':_0x295d70['kUIaD']};if('oTwoe'!=='oTwoe'){if(_0x135a0f[_0x40c6ce(0x9e,0x3,0xa7,0xe2)+_0x40c6ce(0xa0,0xfe,0x79,0xc9)](_0x4e0ff7))return!![];try{return _0x315f67['yAnUC'](_0x525ad3,_0x40c6ce(0x149,0x94,0x13b,0x1c9)+'\x20clau'+'de',{'stdio':_0x315f67[_0x40c6ce(0x1f0,0x14c,0x147,0x11e)]}),!![];}catch(_0x47c3c4){return![];}}else process[_0x40c6ce(0xd6,0x19d,0x131,0x106)](-0x3f1*-0x4+0x6e1*-0x5+0x12a1);});});}function _0x4eda4b(){const _0x39e5f4={'AOPUe':_0x2309d7(0x524,0x568,0x50c,0x59c),'YOhZA':_0x9374d7(-0x7d,-0x99,0x12,-0xe3)+'T','QeqCq':_0x2309d7(0x545,0x553,0x541,0x4fb)+'RM','EvuVI':function(_0x223099){return _0x223099();},'cllgt':_0x2309d7(0x4c5,0x422,0x55a,0x533)+_0x9374d7(0xa3,0x51,0xde,0x48)+_0x2309d7(0x42f,0x430,0x445,0x436)+_0x9374d7(0x5a,-0x5,0x17,0x67),'QHheD':function(_0x3b9938,_0x51a076){return _0x3b9938===_0x51a076;},'UjebC':_0x2309d7(0x4dc,0x54e,0x511,0x57a)+'it'},_0x40055c=_0x39e5f4[_0x2309d7(0x465,0x3b9,0x3ea,0x429)](_0x4dac07);!_0x40055c&&(console[_0x2309d7(0x4e3,0x4cf,0x512,0x46d)](_0x2309d7(0x555,0x5df,0x4e4,0x5e4)+_0x2309d7(0x4b0,0x44d,0x43b,0x518)+_0x2309d7(0x495,0x4b3,0x45c,0x429)+_0x9374d7(0x2a,0x35,0xad,-0x26)),console[_0x9374d7(-0x44,0x1c,-0x3c,-0x8)](_0x39e5f4['cllgt']),process[_0x9374d7(0x59,0x76,0x30,0x15)](-0x25fa+-0x6e7+0x2fe*0xf));const _0x2d38bf=process[_0x2309d7(0x50d,0x541,0x4c2,0x549)][_0x2309d7(0x436,0x4b6,0x426,0x4bf)](0x17*-0x1a1+-0x151d+-0x1*-0x3a96),_0x4b5638=_0x39e5f4[_0x9374d7(-0x3a,-0x48,0x2,0x4d)](_0x344328);function _0x2309d7(_0x2c77c1,_0x251c37,_0x186286,_0xe04957){return _0x25b31e(_0xe04957,_0x2c77c1-0x404,_0x186286-0x1b4,_0xe04957-0x45);}const _0x5a426d=_0x39e5f4['QHheD'](process[_0x9374d7(0x88,0x49,0xf2,0x10f)+_0x9374d7(0x54,0x1a,0x9,0x35)],_0x2309d7(0x50a,0x564,0x513,0x522));let _0xd834c3,_0x180640;if(_0x5a426d){const _0x13c540=_0x2d38bf['map'](_0x158fbc=>{if(/[^\w\-]/['test'](_0x158fbc)){if('QjGiD'!==_0x5dd89b(0x51d,0x5be,0x535,0x5da))_0x1394a9(_0x5dd89b(0x578,0x464,0x4ee,0x554)+_0x5dd89b(0x596,0x5f8,0x5e0,0x56e)+_0x5dd89b(0x5ed,0x578,0x563,0x572)+'t:'+_0x2af036),_0x45bd1d[_0x3ca19b(0x4ef,0x4f8,0x49a,0x4d8)]('🚀\x20请访问'+_0x5dd89b(0x48b,0x561,0x4ee,0x493)+_0x3ca19b(0x583,0x580,0x624,0x5b3)+'alhos'+'t:'+_0x355e90+('配置你的\x20'+_0x3ca19b(0x5f6,0x608,0x637,0x5af)+'牌'));else return'\x22'+_0x158fbc[_0x3ca19b(0x53a,0x512,0x45f,0x4d4)+'ce'](/"/g,'\x5c\x22')+'\x22';}function _0x5dd89b(_0x26d215,_0x2c58a4,_0x44d91d,_0x129493){return _0x2309d7(_0x44d91d-0xaa,_0x2c58a4-0xca,_0x44d91d-0x151,_0x129493);}function _0x3ca19b(_0x340a41,_0x42ffa0,_0x164434,_0x446443){return _0x9374d7(_0x446443-0x51c,_0x42ffa0-0x19f,_0x164434,_0x446443-0x143);}return _0x158fbc;})[_0x9374d7(-0x2e,-0x9e,-0x35,0x37)]('\x20');_0xd834c3=_0x4b5638+'\x20'+_0x13c540,_0x180640=[];}else _0xd834c3=_0x4b5638,_0x180640=_0x2d38bf;const _0x584161={};_0x584161[_0x9374d7(0x76,0x116,0xbf,0xf1)]=_0x39e5f4[_0x9374d7(0x39,0xc6,-0x4d,-0x19)],_0x584161[_0x2309d7(0x534,0x5b2,0x48f,0x5c6)]=_0x5a426d;const _0x4c7078=_0x59a27e(_0xd834c3,_0x180640,_0x584161);_0x4c7078['on'](_0x2309d7(0x53f,0x5d1,0x4d1,0x524),_0x1d17f8=>{function _0x3c0b40(_0x225e42,_0x1e9977,_0x3908ed,_0xb0edab){return _0x2309d7(_0x1e9977- -0x453,_0x1e9977-0x87,_0x3908ed-0x15b,_0x3908ed);}process[_0x3c0b40(0x7f,0xa5,0x126,0x4b)](_0x1d17f8||-0xe17+-0xfeb+0xa7*0x2e);}),process['on'](_0x9374d7(-0x7d,0x27,-0x78,-0x114)+'T',()=>{function _0x469b4f(_0x41f697,_0x386f13,_0x244cae,_0x5da18b){return _0x2309d7(_0x5da18b- -0xa1,_0x386f13-0x3f,_0x244cae-0x44,_0x41f697);}function _0x2533da(_0x3d58d2,_0x59cfc7,_0xa6c2e0,_0x2122db){return _0x2309d7(_0x59cfc7- -0x386,_0x59cfc7-0x31,_0xa6c2e0-0x14c,_0x3d58d2);}_0x469b4f(0x446,0x40e,0x4c2,0x43e)!==_0x39e5f4[_0x2533da(0x15c,0x106,0xeb,0x13c)]?_0x4c7078[_0x469b4f(0x371,0x341,0x38b,0x380)](_0x39e5f4['YOhZA']):_0x1778e9[_0x469b4f(0x454,0x48e,0x3ec,0x3fa)][_0x2533da(0x5c,0xef,0xc3,0x159)+_0x2533da(0x2e,0xa2,0x58,0x8f)+'BASE_'+_0x2533da(0x1b2,0x1e5,0x210,0x1db)]=_0x4cad74[_0x2533da(0xde,0x95,0x23,0xb9)+_0x469b4f(0x42d,0x483,0x470,0x4ca)];});function _0x9374d7(_0x8dc78f,_0x1f13de,_0x2ff43f,_0x45388f){return _0x29a439(_0x2ff43f,_0x8dc78f-0x49,_0x2ff43f-0x18d,_0x45388f-0x1cb);}process['on'](_0x39e5f4[_0x2309d7(0x4f0,0x499,0x48a,0x4f6)],()=>{function _0x298b45(_0xdea68c,_0x47232b,_0x323cad,_0x3a4661){return _0x9374d7(_0x323cad- -0x135,_0x47232b-0x156,_0xdea68c,_0x3a4661-0x143);}_0x4c7078['kill'](_0x39e5f4[_0x298b45(-0xe0,-0x65,-0xe4,-0x102)]);});}function _0xfa991c(){function _0x57766c(_0x2d39df,_0x4fb47c,_0x325ca6,_0x1ffd68){return _0x29a439(_0x1ffd68,_0x4fb47c-0x129,_0x325ca6-0x1e2,_0x1ffd68-0x37);}const _0x5f050a={};_0x5f050a[_0x57766c(0x135,0xaa,0x126,0xd5)]=_0x57766c(0x12b,0x8a,0xf,0x123)+'js',_0x5f050a[_0x13fb4a(0x15d,0x134,0x1d5,0xa4)]=_0x13fb4a(0xf8,0x16c,0x178,0x19e),_0x5f050a[_0x57766c(0x1de,0x167,0x18a,0x1f2)]='claud'+_0x13fb4a(0x2a5,0x225,0x2b3,0x1b1),_0x5f050a[_0x13fb4a(0x227,0x1c0,0x20d,0x258)]=function(_0x2f5b5d,_0x1622e0){return _0x2f5b5d===_0x1622e0;},_0x5f050a[_0x13fb4a(0x1ea,0x27e,0x2cc,0x244)]=_0x57766c(0x177,0x125,0x172,0xa4)+'e',_0x5f050a[_0x13fb4a(0x15a,0x195,0x109,0x1db)]=function(_0x5d503c,_0x5d366b){return _0x5d503c===_0x5d366b;},_0x5f050a[_0x57766c(0x12a,0x146,0xc8,0x17b)]=_0x57766c(0x12a,0xa7,0x14e,0x1b);const _0x11c676=_0x5f050a,_0x36f826=process[_0x57766c(0xef,0x14e,0x133,0x184)][-0x86c+-0x1c5d+0x24ca]||'';function _0x13fb4a(_0x21cb4f,_0x17010a,_0x5937c4,_0x38475e){return _0x25b31e(_0x5937c4,_0x17010a-0x118,_0x5937c4-0x54,_0x38475e-0x59);}const _0x32d8f6=_0x265a07['basen'+_0x13fb4a(0x1a7,0x177,0xdf,0x1c7)](_0x36f826);if(_0x32d8f6===_0x57766c(0x141,0xa7,0x150,0x7)||_0x32d8f6===_0x13fb4a(0x1bd,0x15d,0x117,0x15c)+_0x57766c(0x9f,0x82,-0xd,0x121)||_0x32d8f6===_0x11c676[_0x57766c(0x44,0xaa,0x40,0x4)]){if(_0x13fb4a(0x1c0,0x13d,0x1e4,0xea)!==_0x11c676[_0x57766c(0xd3,0x61,0x83,0x4d)])return _0x13fb4a(0x1df,0x17a,0x107,0x20a);else _0x6f9eae[_0x57766c(0x144,0x124,0x17e,0x1ca)](_0x13fb4a(0x2c9,0x269,0x27c,0x2fa)+_0x13fb4a(0x180,0x1c4,0x26e,0x17d)+_0x13fb4a(0x239,0x1a9,0x147,0x240)+_0x57766c(0x68,0x10a,0x18d,0x10e)),_0x5bc1e5[_0x57766c(0x5b,0x9c,0x42,0x27)]('\x0a请先安装'+_0x57766c(0x1e5,0x183,0x20e,0x11a)+_0x13fb4a(0x1ba,0x143,0xa5,0x9c)+'de:'),_0x21c86c[_0x13fb4a(0x200,0x20c,0x1bd,0x1ac)](0x59e+0x1660+0x1*-0x1bfd);}if(_0x32d8f6===_0x13fb4a(0x251,0x1f8,0x18e,0x29c)+'e'||_0x32d8f6===_0x11c676[_0x57766c(0x14e,0x167,0x18d,0xc5)]||_0x11c676['bZAnw'](_0x32d8f6,_0x13fb4a(0x20a,0x1f8,0x290,0x28a)+'e.js'))return _0x11c676[_0x57766c(0x232,0x1ab,0x1a5,0x15f)];const _0x33e076=process['argv'][0x10e9+0x52f*-0x2+-0x43*0x19]||'';if(_0x11c676['NeGFB'](_0x265a07[_0x13fb4a(0x16f,0x1e9,0x274,0x1c0)+_0x13fb4a(0x166,0x177,0xe2,0x1e4)](_0x33e076),_0x11c676[_0x57766c(0x10e,0x146,0x11d,0x13d)]))return _0x11c676[_0x13fb4a(0x201,0x219,0x219,0x27d)];if(_0x11c676[_0x13fb4a(0x17d,0x1c0,0x17b,0x158)](_0x265a07[_0x57766c(0xb8,0x116,0x155,0x73)+_0x13fb4a(0x195,0x177,0x110,0x111)](_0x33e076),_0x11c676[_0x57766c(0x169,0x1ab,0x209,0x236)]))return _0x11c676['lLuHQ'];return _0x11c676['NxmjJ'];}function _0x3a9df6(){function _0x1339ca(_0x593fe3,_0xa81605,_0x459597,_0x5149cd){return _0x25b31e(_0x459597,_0x5149cd-0x325,_0x459597-0x162,_0x5149cd-0x170);}function _0x23a3b7(_0x580b85,_0x3f7b05,_0xbf97e0,_0x5a0831){return _0x25b31e(_0x580b85,_0x5a0831-0x84,_0xbf97e0-0x16e,_0x5a0831-0x5f);}const _0x55f5a2={'gHKdV':function(_0x443aec,_0x25ce95){return _0x443aec(_0x25ce95);},'IFFgQ':'oiwFc','MWaqd':_0x23a3b7(0x1fc,0x144,0x120,0x1ad)+_0x1339ca(0x497,0x408,0x467,0x408)+'+$','VZGnT':function(_0x45afa7,_0x476b7a,_0x5ba961){return _0x45afa7(_0x476b7a,_0x5ba961);},'Vtjbd':function(_0x3863ec){return _0x3863ec();},'XCuCh':_0x1339ca(0x453,0x3df,0x48b,0x470),'KNCgP':_0x23a3b7(0xf7,0x57,0x12a,0x9f)+'wn'},_0x18bfdd=(function(){function _0x2a52da(_0x16393e,_0xb0cc1e,_0x4654e6,_0xed27e6){return _0x23a3b7(_0xed27e6,_0xb0cc1e-0xaf,_0x4654e6-0x118,_0xb0cc1e-0x2e3);}function _0xda52ec(_0x13e461,_0x3d4b6e,_0x45b7e6,_0x12b325){return _0x1339ca(_0x13e461-0x153,_0x3d4b6e-0x57,_0x12b325,_0x45b7e6- -0x214);}const _0x5acbb4={'CwSIP':function(_0x214fd4,_0x19c8fc){return _0x55f5a2['gHKdV'](_0x214fd4,_0x19c8fc);}};if(_0x55f5a2[_0xda52ec(0x143,0xe3,0x17f,0x198)]===_0x55f5a2['IFFgQ']){let _0x4ad89e=!![];return function(_0x40ab61,_0x47a056){const _0x5f4bc0=_0x4ad89e?function(){function _0xea415d(_0x5084a5,_0x5c3433,_0x4f074b,_0x467188){return _0x180e(_0x467188- -0x335,_0x5c3433);}if(_0x47a056){const _0x202e46=_0x47a056[_0xea415d(-0x23e,-0x1fb,-0x18a,-0x1c7)](_0x40ab61,arguments);return _0x47a056=null,_0x202e46;}}:function(){};return _0x4ad89e=![],_0x5f4bc0;};}else _0x2fe343['autoC'+'loseT'+'imer']&&_0x5acbb4[_0x2a52da(0x333,0x39d,0x3b1,0x3bb)](_0x5dfe20,_0x59039a['autoC'+_0x2a52da(0x495,0x40c,0x377,0x3e7)+'imer']),_0x1d8c4b[_0xda52ec(0x2c8,0x29c,0x24c,0x2b0)](()=>{function _0x331570(_0x2ac61a,_0x404a6d,_0x88e296,_0x1eb653){return _0x2a52da(_0x2ac61a-0x1b8,_0x2ac61a- -0x54a,_0x88e296-0x3c,_0x1eb653);}_0x5a2ef8[_0x331570(-0xef,-0xf6,-0xa4,-0x4a)](-0x21cd+0x7b*0x29+0xe1a);});}()),_0x23672a=_0x55f5a2[_0x1339ca(0x451,0x42b,0x4c4,0x47f)](_0x18bfdd,this,function(){function _0x11486b(_0x35ca16,_0x5bc433,_0x279d29,_0x3a242b){return _0x23a3b7(_0x3a242b,_0x5bc433-0x108,_0x279d29-0x44,_0x35ca16-0x31d);}function _0x21a815(_0x273085,_0x4a9936,_0x2ac1cd,_0x43d927){return _0x1339ca(_0x273085-0xbe,_0x4a9936-0xd8,_0x4a9936,_0x43d927-0x12b);}return _0x23672a[_0x11486b(0x4c6,0x551,0x41f,0x4f5)+_0x11486b(0x43e,0x414,0x407,0x463)]()[_0x21a815(0x431,0x4d6,0x523,0x492)+'h'](_0x21a815(0x59e,0x4ee,0x5df,0x579)+_0x21a815(0x549,0x4fe,0x578,0x533)+'+$')[_0x21a815(0x521,0x603,0x4d4,0x575)+_0x21a815(0x4f7,0x519,0x539,0x4ed)]()['const'+_0x21a815(0x4b9,0x4a6,0x4b7,0x4f6)+'r'](_0x23672a)['searc'+'h'](_0x55f5a2[_0x11486b(0x474,0x3ee,0x3db,0x501)]);});_0x55f5a2[_0x23a3b7(0x1c0,0x131,0x216,0x19f)](_0x23672a);try{const _0x35187d=_0x265a07[_0x1339ca(0x3fa,0x3ca,0x398,0x392)](__dirname,'..','packa'+'ge.js'+'on'),_0x4c01bb=JSON['parse'](_0x53e450['readF'+_0x23a3b7(0xc0,0xb3,0x72,0xbf)+'nc'](_0x35187d,_0x55f5a2[_0x23a3b7(0x1a5,0x1a1,0x185,0x189)]));return _0x4c01bb[_0x23a3b7(0x19c,0x10c,0xe8,0x17c)+'on']||_0x55f5a2['KNCgP'];}catch(_0x524186){return'unkno'+'wn';}}if(require[_0x29a439(0x4c,0x2a,0xa6,-0x29)]===module)try{const _0x1c64f2=process['argv']['slice'](-0x2227+-0x14fd+-0x43e*-0xd),_0x2420a2=_0xfa991c();(_0x1c64f2[_0x25b31e(0xb7,0xa9,0x142,0x124)+_0x29a439(0x100,0x70,-0x29,0x10d)](_0x25b31e(-0xc,0x16,-0x2f,0x36)+'sion')||_0x1c64f2[_0x29a439(-0xdb,-0x3b,-0xaa,0x7)+_0x29a439(-0x3,0x70,0x1d,0x9d)]('-v'))&&(_0x2420a2===_0x25b31e(0xf1,0x62,0x77,0x5f)&&(console[_0x29a439(0x6,-0x8d,-0xb4,-0x63)]('claud'+'e-bud'+_0x29a439(-0x9f,-0x9e,-0x95,-0xad)+_0x3a9df6()),process[_0x29a439(0x4f,0x10,0x4d,-0x94)](-0x2*0x358+0x15e1+-0xf31)));if(_0x1c64f2[_0x29a439(-0x97,-0x26,-0x4c,0x26)+'h']>-0x86*-0x30+0x1f5+-0x1b15&&_0x1c64f2[-0x14ec+-0xb*-0x179+-0x1*-0x4b9]==='confi'+'g')_0x26109d(_0x1979be)[_0x25b31e(0xb3,0x4e,0xa9,0xcb)](_0x1e741a=>{function _0xfeda1e(_0x386878,_0x56d2e9,_0x575963,_0x4068e6){return _0x29a439(_0x386878,_0x56d2e9-0x54c,_0x575963-0x159,_0x4068e6-0x15b);}const _0x5b2d1f={'kGnfe':function(_0x40bc57,_0x4ed2ec){return _0x40bc57(_0x4ed2ec);},'mJaNR':_0xfeda1e(0x3fe,0x49c,0x4d0,0x431)+_0xfeda1e(0x4ef,0x590,0x5a5,0x506)+'.','EWnxc':function(_0xf63e27){return _0xf63e27();}};function _0x445207(_0x59f5b5,_0x4b351a,_0x25c4c0,_0xeb477b){return _0x25b31e(_0xeb477b,_0x59f5b5-0x1d0,_0x25c4c0-0x16e,_0xeb477b-0xc9);}_0x1e741a?(_0x5b2d1f[_0x445207(0x2ca,0x236,0x349,0x25f)](_0x1af15e,_0xfeda1e(0x4b7,0x4a8,0x42e,0x428)+_0xfeda1e(0x5fa,0x59a,0x625,0x56a)+_0xfeda1e(0x55e,0x51d,0x4ea,0x4df)+'t:'+_0x1979be),console[_0x445207(0x227,0x261,0x2b8,0x1b5)](_0x445207(0x299,0x30f,0x290,0x257)+_0xfeda1e(0x551,0x4a8,0x458,0x46b)+_0x445207(0x302,0x382,0x350,0x2e6)+_0xfeda1e(0x5bd,0x51d,0x521,0x4ca)+'t:'+_0x1979be+(_0xfeda1e(0x524,0x501,0x520,0x55b)+_0xfeda1e(0x641,0x596,0x561,0x58b)+'牌'))):(console['log'](_0x5b2d1f['mJaNR']),_0x5b2d1f[_0x445207(0x248,0x244,0x242,0x26a)](_0x52894b));});else{const _0x3bb208=_0x34b547();_0x3bb208?_0x52894b():(_0x2d24c5(),_0x4eda4b());}}catch(_0x59f76f){console[_0x29a439(0x62,-0x5,-0x32,0x49)](_0x29a439(0x4e,0x33,-0x4d,0xa7),_0x59f76f),process[_0x25b31e(0x13c,0xf4,0x134,0x7d)](0x987+0x2183*0x1+-0x2b09);}
2
+ (function(_0x460a09,_0x2eeb62){const _0x564221=_0x460a09();function _0x400e20(_0x5c4a97,_0x479f71,_0x2606fe,_0x5704dd){return _0x3aec(_0x5c4a97- -0x2e3,_0x479f71);}function _0x14fa49(_0x1eb85e,_0x3c2f29,_0x1f1f16,_0x3bdce7){return _0x3aec(_0x3bdce7- -0x75,_0x3c2f29);}while(!![]){try{const _0x1b3419=-parseInt(_0x400e20(-0x192,-0xf0,-0x215,-0x15b))/(-0x195c+0x899+0x10c4)*(-parseInt(_0x400e20(-0x18f,-0x1a1,-0xe2,-0x202))/(0x1*-0x1796+0xf92*0x2+0xa1*-0xc))+parseInt(_0x400e20(-0x81,-0xd4,-0xf3,-0xf0))/(-0x409+0x1e1+0x25*0xf)*(parseInt(_0x400e20(-0xfa,-0x14a,-0xe6,-0xaa))/(-0x11*-0x11+0x2b+-0x148))+-parseInt(_0x14fa49(0xf8,0xb5,0x74,0x110))/(-0xf69+-0x9ca+0x2*0xc9c)*(-parseInt(_0x400e20(-0x12b,-0x175,-0x9c,-0x11d))/(0xf1*-0x1a+0x1fbd+-0x73d*0x1))+-parseInt(_0x400e20(-0xe2,-0x178,-0x9e,-0xa5))/(-0x1dde*0x1+-0x269b+-0x112*-0x40)*(parseInt(_0x14fa49(0x1a7,0x91,0xdc,0x13c))/(-0x1bb4+0xf85*0x2+0x2*-0x1a7))+-parseInt(_0x14fa49(0xe7,0x20a,0x22f,0x180))/(-0x21ad+-0x1*-0x42+0x2*0x10ba)*(-parseInt(_0x14fa49(0x109,0x16e,0xab,0x128))/(-0x1*0x254f+-0x265*-0x3+0x1e2a))+parseInt(_0x400e20(-0xa2,-0x41,-0x90,-0xd4))/(-0x2620+-0x25fb+0x4c26*0x1)+-parseInt(_0x14fa49(0xb7,0x128,0x1bf,0x15b))/(0x7*0x26+0x1402+0x540*-0x4);if(_0x1b3419===_0x2eeb62)break;else _0x564221['push'](_0x564221['shift']());}catch(_0x2fb601){_0x564221['push'](_0x564221['shift']());}}}(_0x1b82,-0x8d84f+-0x183fb8*0x1+0x2f2fb1));const {spawn:_0x24d953}=require(_0x22ee54(-0xb4,-0x1b2,-0x158,-0x13f)+_0x22ee54(-0x1fa,-0x1f7,-0x1fb,-0x237)+_0x223fa4(0x1af,0x1c8,0xd7,0x165)),{execSync:_0x10274a}=require(_0x22ee54(-0x1db,-0x126,-0x1e6,-0x13f)+_0x223fa4(0x198,0x160,0xe8,0x139)+'ess'),_0x53b2ed=require(_0x223fa4(0x140,0x145,0x11b,0x180)),_0x2dbe88=require('fs'),_0x11e402=require(_0x22ee54(-0x128,-0xd0,-0x1a7,-0x12b)),_0x325d8b=require(_0x223fa4(0x19c,0x1df,0x1c5,0x17f)),_0x48abfe=-0xfe4d+0x1*0xdc96+0xd*0x1321,_0x2c033a=_0x11e402[_0x223fa4(0x2a7,0x2f8,0x2ea,0x246)](require('os')[_0x223fa4(0x292,0x21b,0x219,0x23b)+'ir'](),_0x223fa4(0x93,0x16d,0xb9,0x103),'cfg.j'+_0x22ee54(-0x193,-0x11c,-0x15a,-0x192)),_0x28eefe=_0x11e402[_0x223fa4(0x271,0x249,0x1c9,0x246)](__dirname,'..',_0x223fa4(0x1c1,0x1a7,0x153,0x151)+'modul'+'es',_0x223fa4(0x15c,0x11e,0x1a9,0x15f),'claud'+'e');function _0x223fa4(_0x193172,_0x569db5,_0x509ba6,_0x5a95ce){return _0x3aec(_0x5a95ce- -0x35,_0x509ba6);}function _0x167635(){function _0x2886c9(_0x20b072,_0x354b95,_0x5937a7,_0x121a18){return _0x223fa4(_0x20b072-0x1a0,_0x354b95-0x11e,_0x354b95,_0x121a18-0xd9);}const _0x35f787={};_0x35f787[_0x2886c9(0x2c0,0x2a5,0x33b,0x2fe)]=_0x961484(-0x54,-0x137,-0xa,-0x9d)+_0x2886c9(0x24f,0x21b,0x321,0x2a6)+'de';function _0x961484(_0x5aee81,_0x307afc,_0x34ad9e,_0x1c581b){return _0x22ee54(_0x5aee81-0x31,_0x34ad9e,_0x34ad9e-0x1d5,_0x1c581b-0x1d2);}const _0x2e42cc=_0x35f787;if(_0x2dbe88[_0x961484(0xf,0x86,0x4f,0x69)+'sSync'](_0x28eefe))return!![];try{const _0x3ac85f={};return _0x3ac85f[_0x2886c9(0x3bd,0x3c2,0x34e,0x333)]=_0x2886c9(0x1ce,0x1b6,0x2c3,0x267)+'e',_0x10274a(_0x2e42cc['sQecM'],_0x3ac85f),!![];}catch(_0x2265fb){return![];}}function _0x3ad48a(){function _0x2a44cd(_0x57f752,_0x4f3457,_0x4db7e8,_0x154f47){return _0x22ee54(_0x57f752-0x1db,_0x154f47,_0x4db7e8-0x167,_0x4f3457-0x4f7);}const _0x31384e={};function _0x1e5ea3(_0x281998,_0x1bd306,_0x336dd9,_0x2ee720){return _0x22ee54(_0x281998-0x18f,_0x336dd9,_0x336dd9-0xca,_0x281998-0x2df);}_0x31384e[_0x1e5ea3(0x114,0x142,0xaf,0xd4)]=_0x1e5ea3(0x1a8,0x1dd,0x11b,0x1ba),_0x31384e['TUlIp']=_0x2a44cd(0x467,0x3e5,0x425,0x46f)+'e';const _0x246817=_0x31384e;if(_0x2dbe88[_0x2a44cd(0x3c5,0x38e,0x31b,0x2e4)+_0x2a44cd(0x372,0x301,0x2d1,0x3ad)](_0x28eefe)){if(_0x2a44cd(0x3f6,0x349,0x29f,0x3e1)!==_0x246817['TjafN'])return _0x28eefe;else _0x15295a=_0xe366a9,_0x15a06a=_0x3376d0;}return _0x246817['TUlIp'];}function _0x33ed65(){function _0x5de5bf(_0x3219cd,_0x58f292,_0xbe2f10,_0x2e748a){return _0x22ee54(_0x3219cd-0xc8,_0x3219cd,_0xbe2f10-0x8c,_0x58f292-0x338);}const _0x5043f6=_0x11e402[_0x26ec13(0x522,0x454,0x504,0x45b)+'me'](_0x2c033a);function _0x26ec13(_0x48005a,_0x57851a,_0x6669c3,_0x46726a){return _0x22ee54(_0x48005a-0xb7,_0x57851a,_0x6669c3-0x43,_0x6669c3-0x706);}if(!_0x2dbe88['exist'+_0x5de5bf(0x132,0x142,0xb1,0xfa)](_0x5043f6)){const _0x2d9dc8={};_0x2d9dc8[_0x26ec13(0x4df,0x4c2,0x554,0x5af)+_0x5de5bf(0x254,0x1ae,0x23a,0x1ce)]=!![],_0x2dbe88['mkdir'+'Sync'](_0x5043f6,_0x2d9dc8);}}function _0x2753a4(_0x3aa20c='claud'+'e'){const _0x1286b2={};function _0x4b8fea(_0x2d6aef,_0x541e39,_0xf7881d,_0x4addd8){return _0x22ee54(_0x2d6aef-0x1f,_0x4addd8,_0xf7881d-0x1d6,_0x541e39-0x581);}_0x1286b2[_0x4b8fea(0x37e,0x3fe,0x3f8,0x426)]=_0x4b8fea(0x3c3,0x3eb,0x411,0x39d),_0x1286b2[_0x45ee9c(0x14b,0x18a,0x1dd,0x186)]=function(_0x2bc894,_0x2bc41f){return _0x2bc894!==_0x2bc41f;},_0x1286b2[_0x4b8fea(0x392,0x3a5,0x34b,0x379)]=_0x4b8fea(0x490,0x41e,0x3fa,0x3d0)+'r',_0x1286b2[_0x4b8fea(0x372,0x313,0x2c9,0x26e)]=function(_0x1d7c3f,_0x3b6a12){return _0x1d7c3f<_0x3b6a12;},_0x1286b2['xCvSc']=function(_0x5b5d60,_0x4e5829){return _0x5b5d60>_0x4e5829;},_0x1286b2['MAmOf']=function(_0x44df15,_0x4a6bb9){return _0x44df15>=_0x4a6bb9;},_0x1286b2[_0x45ee9c(0x1c6,0x145,0x21d,0x160)]=function(_0x54c93e,_0x582cc7){return _0x54c93e-_0x582cc7;};function _0x45ee9c(_0x443a23,_0x19a8a2,_0x51d3df,_0x5c7002){return _0x22ee54(_0x443a23-0x14a,_0x19a8a2,_0x51d3df-0x86,_0x443a23-0x330);}_0x1286b2[_0x4b8fea(0x2b2,0x30e,0x2e4,0x2d0)]='eqIDv',_0x1286b2[_0x4b8fea(0x3e1,0x335,0x392,0x28b)]=_0x4b8fea(0x352,0x363,0x2c1,0x36e);const _0x6fe75d=_0x1286b2;try{_0x33ed65();if(!_0x2dbe88[_0x4b8fea(0x377,0x418,0x3b2,0x3d6)+_0x4b8fea(0x2fe,0x38b,0x432,0x306)](_0x2c033a)){const _0x57dab2={};return _0x57dab2[_0x45ee9c(0x1af,0x197,0x15a,0x208)]=[],_0x57dab2['activ'+_0x45ee9c(0x152,0x1ea,0x1a3,0x136)+'x']=0x0,_0x57dab2;}const _0x53b663=_0x2dbe88[_0x45ee9c(0x1ce,0x177,0x26f,0x1bf)+_0x45ee9c(0x219,0x25c,0x231,0x1bb)+'nc'](_0x2c033a,_0x6fe75d[_0x4b8fea(0x3a2,0x3fe,0x429,0x43a)]),_0xfd53df=JSON['parse'](_0x53b663);if(_0xfd53df['AUTH']&&Array[_0x45ee9c(0x20e,0x267,0x262,0x195)+'ay'](_0xfd53df[_0x45ee9c(0x1af,0x21b,0x187,0x124)])){const _0x2caed4={..._0xfd53df},_0x547bfe={};_0x547bfe[_0x45ee9c(0x1af,0x204,0x185,0x1d4)]=[],_0x547bfe['activ'+_0x4b8fea(0x427,0x3a3,0x3f5,0x34b)+'x']=0x0;const _0xaf7d7c={};_0xaf7d7c[_0x4b8fea(0x40e,0x400,0x4b1,0x3e6)]=[],_0xaf7d7c[_0x45ee9c(0xd3,0x78,0x88,0x30)+_0x45ee9c(0x152,0x16e,0x175,0x1e7)+'x']=0x0;const _0x4bdd6c={};_0x4bdd6c[_0x45ee9c(0x21e,0x244,0x180,0x176)+'e']=_0x2caed4,_0x4bdd6c['codex']=_0x547bfe,_0x4bdd6c[_0x4b8fea(0x401,0x3d6,0x410,0x471)+'i']=_0xaf7d7c;const _0x38abb9=_0x4bdd6c;_0x2dbe88['write'+_0x4b8fea(0x369,0x37c,0x363,0x40e)+'ync'](_0x2c033a,JSON['strin'+_0x45ee9c(0xe3,0x9f,0x163,0x10b)](_0x38abb9,null,0x7d8+-0x4*-0x178+-0xdb6),_0x4b8fea(0x422,0x3eb,0x34c,0x485)),console[_0x45ee9c(0xec,0xda,0x193,0xbb)](_0x45ee9c(0xd0,0x178,0x139,0x36)+_0x45ee9c(0xc0,0x67,0x7b,0xc2)+'式');const _0x59cadf={};return _0x59cadf[_0x45ee9c(0x1af,0x247,0x18f,0x237)]=[],_0x59cadf[_0x4b8fea(0x39c,0x324,0x33e,0x31e)+'eInde'+'x']=0x0,_0x38abb9[_0x3aa20c]||_0x59cadf;}const _0x426717=_0xfd53df[_0x3aa20c];if(!_0x426717){const _0x38225d={};return _0x38225d[_0x45ee9c(0x1af,0x11a,0x24c,0x235)]=[],_0x38225d[_0x4b8fea(0x27e,0x324,0x2e8,0x312)+_0x4b8fea(0x30e,0x3a3,0x355,0x3a3)+'x']=0x0,_0x38225d;}return(_0x6fe75d[_0x45ee9c(0x14b,0x1ef,0x18d,0x126)](typeof _0x426717[_0x45ee9c(0xd3,0xf8,0xa7,0x63)+_0x45ee9c(0x152,0xea,0xe0,0x188)+'x'],_0x6fe75d[_0x45ee9c(0x154,0x1f3,0x1cc,0x1e8)])||_0x6fe75d['kAexd'](_0x426717[_0x4b8fea(0x390,0x324,0x2bb,0x3c6)+'eInde'+'x'],-0xa85*-0x1+-0x1f15+0x1490))&&(_0x426717[_0x4b8fea(0x3b5,0x324,0x36d,0x3ae)+_0x4b8fea(0x42e,0x3a3,0x32f,0x3dc)+'x']=-0x3f9*0x6+0x16*-0xdf+-0x20*-0x158),_0x426717['AUTH']&&_0x6fe75d[_0x45ee9c(0x179,0x1d0,0x106,0x1ee)](_0x426717[_0x45ee9c(0x1af,0x14b,0x144,0x163)][_0x45ee9c(0x1c9,0x20b,0x127,0x177)+'h'],0x1*0x264d+0xc9c+-0x32e9)&&_0x6fe75d[_0x4b8fea(0x2ea,0x32c,0x2d2,0x304)](_0x426717[_0x45ee9c(0xd3,0x85,0x144,0xe1)+_0x45ee9c(0x152,0x14d,0x1fc,0x1f8)+'x'],_0x426717[_0x45ee9c(0x1af,0x13a,0x1e4,0x193)][_0x4b8fea(0x443,0x41a,0x44c,0x4c8)+'h'])&&(_0x426717[_0x4b8fea(0x31d,0x324,0x316,0x2fe)+_0x4b8fea(0x409,0x3a3,0x300,0x3f8)+'x']=_0x6fe75d['kBajB'](_0x426717[_0x4b8fea(0x403,0x400,0x4a6,0x455)]['lengt'+'h'],-0x44e+-0x808*-0x2+0x1*-0xbc1)),_0x426717;}catch(_0x3a1f64){if(_0x6fe75d[_0x4b8fea(0x27b,0x30e,0x2cf,0x328)]===_0x6fe75d[_0x4b8fea(0x3e4,0x335,0x28f,0x3a2)])delete _0x165a8c[_0x45ee9c(0x1a9,0x1a2,0x1ae,0x14b)][_0x3f7ddc];else{console[_0x45ee9c(0x19b,0x232,0xf0,0x20f)]('读取配置失'+'败:',_0x3a1f64);const _0x5c2634={};return _0x5c2634[_0x45ee9c(0x1af,0x257,0x1fc,0x235)]=[],_0x5c2634[_0x4b8fea(0x2ed,0x324,0x2f8,0x34e)+_0x45ee9c(0x152,0xb1,0x140,0x191)+'x']=0x0,_0x5c2634;}}}function _0x3c577d(_0x5c6135,_0x112135=_0x223fa4(0x2d9,0x2b0,0x1ca,0x25e)+'e'){function _0x3d39c5(_0x4cd030,_0x2a11d8,_0xa2da2b,_0x1ca114){return _0x223fa4(_0x4cd030-0x14f,_0x2a11d8-0x101,_0x1ca114,_0x4cd030- -0x209);}const _0x4e4624={'iIZDO':function(_0x430792){return _0x430792();},'kKIAQ':_0x3d39c5(0x2f,0x4c,0x96,-0x66),'qAqhu':_0x3d39c5(-0xbf,-0x6b,-0x11,-0x10f),'ZqSKz':_0x3f22b1(0x119,0x13d,0x1c1,0x168),'EiThp':'utf-8','exMie':_0x3d39c5(0xa,0x38,0x5a,-0x3d),'ZumSK':function(_0x4876aa,_0x5e318e){return _0x4876aa!==_0x5e318e;},'xsveS':_0x3d39c5(0x1f,0xc0,-0x8d,-0x73),'nqtTy':'保存配置失'+'败:'};function _0x3f22b1(_0x44f986,_0x34ec63,_0x5c91fe,_0x22a4c7){return _0x223fa4(_0x44f986-0x1d0,_0x34ec63-0xba,_0x5c91fe,_0x22a4c7- -0xe5);}try{_0x33ed65();let _0x34b774={};if(_0x2dbe88[_0x3d39c5(-0x2,-0x4f,0x12,-0x83)+'sSync'](_0x2c033a)){if(_0x4e4624[_0x3f22b1(-0x40,0xdf,0x3c,0x64)]!==_0x4e4624[_0x3f22b1(0x8e,0x19,0x92,0xae)])try{if(_0x3d39c5(-0xce,-0x170,-0x44,-0xcc)!==_0x4e4624[_0x3d39c5(0x25,0x40,-0x6,-0x66)]){const _0x457e4c=_0x2dbe88[_0x3f22b1(0xe1,0xec,0x190,0x129)+_0x3d39c5(0x50,0xa5,0x3d,0xa4)+'nc'](_0x2c033a,_0x4e4624[_0x3f22b1(0x73,0x15,0xa8,0x1a)]);_0x34b774=JSON[_0x3f22b1(0x73,0x11b,0x3c,0x8a)](_0x457e4c);if(_0x34b774['AUTH']&&Array['isArr'+'ay'](_0x34b774[_0x3f22b1(0x12a,0xb8,0x19b,0x10a)])){if(_0x4e4624['exMie']!==_0x3d39c5(0xa,0x49,-0x43,0x4a))return'claud'+'e';else{const _0x18de29={..._0x34b774},_0x4d3fed=_0x18de29,_0x2f0d46={};_0x2f0d46['AUTH']=[],_0x2f0d46[_0x3d39c5(-0xf6,-0x61,-0xe8,-0x4a)+_0x3f22b1(0x67,0x56,0xf8,0xad)+'x']=0x0;const _0x6dc1f={};_0x6dc1f[_0x3f22b1(0x9d,0x18c,0x1ba,0x10a)]=[],_0x6dc1f['activ'+_0x3d39c5(-0x77,-0x113,-0x9c,-0x2d)+'x']=0x0;const _0x11727e={};_0x11727e[_0x3f22b1(0x1bc,0xce,0x21d,0x179)+'e']=_0x4d3fed,_0x11727e[_0x3d39c5(-0xdf,-0x38,-0xca,-0x74)]=_0x2f0d46,_0x11727e[_0x3f22b1(0x167,0x190,0x173,0xe0)+'i']=_0x6dc1f,_0x34b774=_0x11727e;}}}else return![];}catch(_0x40b758){const _0x1bf194={};_0x1bf194[_0x3f22b1(0xbd,0x68,0x126,0x10a)]=[],_0x1bf194[_0x3d39c5(-0xf6,-0x51,-0x123,-0xda)+_0x3f22b1(0x1,0xf9,0x146,0xad)+'x']=0x0;const _0x219a2d={};_0x219a2d[_0x3f22b1(0x196,0x185,0xf9,0x10a)]=[],_0x219a2d['activ'+_0x3d39c5(-0x77,0x18,-0x8f,-0xba)+'x']=0x0;const _0x118594={};_0x118594[_0x3f22b1(0x67,0xa6,0x76,0x10a)]=[],_0x118594[_0x3d39c5(-0xf6,-0x4f,-0xbd,-0xe9)+'eInde'+'x']=0x0;const _0x4041dc={};_0x4041dc[_0x3f22b1(0x125,0x1d4,0x175,0x179)+'e']=_0x1bf194,_0x4041dc[_0x3f22b1(-0x67,-0x38,0x3e,0x45)]=_0x219a2d,_0x4041dc['gemin'+'i']=_0x118594,_0x34b774=_0x4041dc;}else _0x3d764f===_0x3d39c5(-0x34,-0xd,0x10,-0x8)&&(_0x2bd522[_0x3d39c5(-0xdd,-0x81,-0x5a,-0x11e)](_0x3f22b1(0x127,0x12f,0x192,0x179)+_0x3d39c5(-0x59,-0x76,-0x2a,-0xe)+_0x3d39c5(-0xda,-0x146,-0x39,-0xe0)+_0x4e4624[_0x3d39c5(-0xa2,-0x106,-0xbf,-0x12b)](_0x192aff)),_0x3af656[_0x3d39c5(-0x83,-0xa7,-0x3b,-0x3c)](-0x1433*-0x1+-0x1af5*-0x1+-0x3*0xfb8));}else{if(_0x4e4624['ZumSK'](_0x4e4624[_0x3f22b1(0xec,0x190,0x150,0xe1)],_0x4e4624[_0x3f22b1(0xfd,0xd3,0x11f,0xe1)]))return _0x16523c['error']('写入\x20Cl'+_0x3d39c5(0x23,0x62,0x50,0x68)+_0x3f22b1(0x134,0x135,0x126,0xf4),_0x29be32),![];else{const _0x14ad64={};_0x14ad64['AUTH']=[],_0x14ad64[_0x3f22b1(0x55,0x91,0x75,0x2e)+'eInde'+'x']=0x0;const _0x3f8af4={};_0x3f8af4[_0x3f22b1(0x195,0x151,0xe5,0x10a)]=[],_0x3f8af4[_0x3d39c5(-0xf6,-0x93,-0xad,-0xb7)+_0x3d39c5(-0x77,-0x71,-0xe5,-0xc8)+'x']=0x0;const _0x31c912={};_0x31c912[_0x3d39c5(-0x1a,-0x48,0x41,0x53)]=[],_0x31c912[_0x3d39c5(-0xf6,-0x64,-0x19d,-0x176)+'eInde'+'x']=0x0;const _0x30dc7b={};_0x30dc7b['claud'+'e']=_0x14ad64,_0x30dc7b[_0x3d39c5(-0xdf,-0x178,-0x176,-0x64)]=_0x3f8af4,_0x30dc7b[_0x3f22b1(0xf1,0xa4,0x4e,0xe0)+'i']=_0x31c912,_0x34b774=_0x30dc7b;}}const _0x180aed={};_0x180aed[_0x3d39c5(-0x1a,0x4d,0x11,0x23)]=[],_0x180aed[_0x3f22b1(0x24,-0x54,-0x2a,0x2e)+'eInde'+'x']=0x0;if(!_0x34b774['claud'+'e'])_0x34b774[_0x3d39c5(0x55,0xc0,0xd0,0x36)+'e']=_0x180aed;const _0x3ec41f={};_0x3ec41f[_0x3d39c5(-0x1a,-0x13,0x30,-0x7f)]=[],_0x3ec41f[_0x3f22b1(0x68,0xdf,-0x28,0x2e)+_0x3d39c5(-0x77,-0xa5,-0x19,-0x10f)+'x']=0x0;if(!_0x34b774['codex'])_0x34b774['codex']=_0x3ec41f;const _0x20eda2={};_0x20eda2[_0x3f22b1(0xc8,0x16f,0x7a,0x10a)]=[],_0x20eda2[_0x3d39c5(-0xf6,-0x5d,-0x15a,-0xe6)+_0x3d39c5(-0x77,0x32,-0x45,-0x19)+'x']=0x0;if(!_0x34b774[_0x3d39c5(-0x44,0x49,-0x1d,0x18)+'i'])_0x34b774['gemin'+'i']=_0x20eda2;return _0x34b774[_0x112135]=_0x5c6135,_0x2dbe88['write'+'FileS'+'ync'](_0x2c033a,JSON[_0x3f22b1(0x182,0xd0,0x9b,0x13d)+'gify'](_0x34b774,null,-0x13*-0x154+0x161*-0x5+-0x169*0xd),_0x4e4624['EiThp']),!![];}catch(_0x1182ef){return console[_0x3f22b1(0x67,0xf1,0xc9,0xf6)](_0x4e4624[_0x3d39c5(-0x5,0x88,-0x64,0x1e)],_0x1182ef),![];}}function _0x26fb77(){const _0x28b83b={'qrBBh':'_MODE'+'L','rRNLL':_0x328800(0x1df,0x19d,0x201,0x106),'iMLkl':'asset'+'s','BrAfC':_0x328800(0x11f,0x120,0x15e,0xeb),'UBfit':'QRJsF','SwYMe':function(_0x1d7c2c,_0x3679da){return _0x1d7c2c===_0x3679da;},'ljeyr':function(_0x308700,_0x23f728){return _0x308700(_0x23f728);},'wWsIM':_0x328800(0x213,0x21e,0x247,0x276)+'ngs.j'+_0x328800(0x1c9,0x1d3,0x13a,0x263),'xpJzJ':function(_0x2fcdcb,_0xa6d9a){return _0x2fcdcb!==_0xa6d9a;},'jGcew':_0x49ccff(0x219,0x2ca,0x1fb,0x295),'dSdpH':_0x328800(0x1d2,0x138,0xac,0xe7),'fAuGq':'XFlZY','ToBYR':'yRXst','FIiNo':'jsdeZ','Hzdld':_0x328800(0x1b8,0x168,0x1d5,0x149),'emsnh':_0x49ccff(0x1e9,0x1ec,0x21e,0x1a9),'KAVvb':_0x328800(0x132,0x15f,0x11f,0x186)+_0x328800(0x20a,0x221,0x297,0x1b5)+_0x49ccff(0x1e8,0x243,0x195,0x1d1)},_0x6e67a3=_0x2753a4();if(!_0x6e67a3[_0x49ccff(0x1fe,0x17b,0x1b5,0x269)]||_0x28b83b[_0x328800(0x27e,0x1e9,0x1cf,0x1ac)](_0x6e67a3[_0x49ccff(0x1fe,0x266,0x1c0,0x1d4)][_0x49ccff(0x218,0x1ac,0x22c,0x253)+'h'],0x1*-0xe3f+-0x189a+0x26d9))return![];const _0x2b0038=_0x6e67a3[_0x328800(0x9f,0x108,0xe8,0x187)+_0x328800(0x1e5,0x187,0x192,0x1e5)+'x']||-0x2*0x15d+-0xa9*-0x5+-0x93,_0x516874=_0x6e67a3[_0x328800(0x17b,0x1e4,0x194,0x1b6)][_0x2b0038];if(!_0x516874||!_0x516874[_0x49ccff(0x193,0x167,0x14b,0x21f)+_0x328800(0x1d4,0x133,0x1d7,0xea)]&&!_0x516874[_0x328800(0x20d,0x1e7,0x192,0x1e0)])return![];const _0x26b077=_0x11e402[_0x328800(0x2ae,0x23b,0x24f,0x2e2)](_0x28b83b[_0x328800(0x181,0x1e5,0x274,0x1c3)](require,'os')[_0x328800(0x211,0x230,0x2d5,0x27b)+'ir'](),_0x328800(0x187,0x206,0x16b,0x162)+'de',_0x28b83b['wWsIM']),_0x17866c=_0x11e402[_0x49ccff(0x17d,0x127,0x163,0x165)+'me'](_0x26b077);function _0x49ccff(_0x538806,_0xb2028f,_0x5b411e,_0x516484){return _0x22ee54(_0x538806-0x1b6,_0xb2028f,_0x5b411e-0x81,_0x538806-0x37f);}if(!_0x2dbe88[_0x49ccff(0x216,0x25b,0x19e,0x1d5)+_0x328800(0x21c,0x16f,0x108,0x129)](_0x17866c)){const _0x201d41={};_0x201d41['recur'+_0x328800(0x1c6,0x1db,0x129,0x1e7)]=!![],_0x2dbe88[_0x49ccff(0x1f6,0x181,0x28a,0x149)+'Sync'](_0x17866c,_0x201d41);}let _0x31ac0e={};function _0x328800(_0x3eef0e,_0x535d49,_0x271815,_0x21ac81){return _0x22ee54(_0x3eef0e-0x3a,_0x21ac81,_0x271815-0x9a,_0x535d49-0x365);}if(_0x2dbe88[_0x49ccff(0x216,0x1c9,0x216,0x1f8)+_0x328800(0xf8,0x16f,0x21b,0x18d)](_0x26b077)){if(_0x28b83b[_0x328800(0x156,0x1d2,0x276,0x15d)](_0x28b83b['jGcew'],_0x28b83b[_0x49ccff(0x138,0x142,0x10a,0x1d7)]))_0x17513f['ENV'][_0x49ccff(0x188,0x148,0x167,0x1fe)+'ch'](_0x5abeb4=>{function _0x262747(_0x274d5b,_0x1eb24c,_0xd6e16c,_0x3d8640){return _0x49ccff(_0x3d8640-0x70,_0xd6e16c,_0xd6e16c-0x10,_0x3d8640-0x1c2);}function _0x2fef39(_0x1ebbc4,_0x67575d,_0x5cf291,_0xcfe2e8){return _0x328800(_0x1ebbc4-0x15f,_0x1ebbc4- -0x2a8,_0x5cf291-0x1d3,_0x5cf291);}_0x5abeb4[_0x2fef39(-0x168,-0x10d,-0x109,-0x106)]&&_0x5abeb4['value']&&(_0x42ba55[_0x262747(0x1cc,0x253,0x2b6,0x268)][_0x5abeb4[_0x2fef39(-0x168,-0x1d8,-0x1e6,-0x192)]]=_0x5abeb4[_0x2fef39(-0x9d,-0x24,-0x4b,-0xf0)]);});else try{const _0x5b3c6c=_0x2dbe88[_0x49ccff(0x21d,0x23f,0x198,0x244)+_0x49ccff(0x268,0x262,0x28a,0x1df)+'nc'](_0x26b077,_0x49ccff(0x1e9,0x281,0x283,0x163));_0x31ac0e=JSON[_0x49ccff(0x17e,0xde,0x12e,0x153)](_0x5b3c6c);}catch(_0xc8cf34){_0x28b83b[_0x49ccff(0x203,0x260,0x17a,0x29d)](_0x28b83b['dSdpH'],_0x49ccff(0x153,0x10f,0xdb,0x148))?_0x3bc60f[_0x328800(0x226,0x17b,0x105,0x1cd)](0x8*0x23+0x1b68+-0x260*0xc):_0x31ac0e={};}}!_0x31ac0e[_0x49ccff(0x1f8,0x1e5,0x17a,0x23e)]&&(_0x31ac0e[_0x328800(0x162,0x1de,0x28c,0x197)]={});Object['keys'](_0x31ac0e['env'])[_0x49ccff(0x188,0xe8,0x11b,0x1dd)+'ch'](_0x46498c=>{function _0x31c324(_0x25e162,_0x3d0de5,_0x39e364,_0x10c52e){return _0x328800(_0x25e162-0x27,_0x39e364-0x90,_0x39e364-0x1d3,_0x3d0de5);}function _0xc4a489(_0x814f34,_0x4f740d,_0x5cc23b,_0x4cfdfb){return _0x49ccff(_0x814f34-0x3d9,_0x5cc23b,_0x5cc23b-0x142,_0x4cfdfb-0xba);}_0x46498c['endsW'+_0xc4a489(0x527,0x48e,0x59b,0x593)](_0x28b83b['qrBBh'])&&delete _0x31ac0e[_0x31c324(0x23f,0x314,0x26e,0x23a)][_0x46498c];});if(_0x516874[_0x49ccff(0x193,0x19e,0x171,0x1ae)+_0x49ccff(0x14d,0xbc,0x1e1,0x1ec)]){if(_0x49ccff(0x1eb,0x237,0x280,0x1a4)!==_0x28b83b[_0x328800(0x14a,0x142,0x128,0xce)])_0x31ac0e[_0x328800(0x231,0x1de,0x148,0x198)][_0x49ccff(0x25e,0x1ca,0x2a1,0x279)+_0x49ccff(0x172,0x1ed,0x20d,0x1f4)+_0x49ccff(0x193,0x1b7,0x1dc,0x116)+'URL']=_0x516874[_0x328800(0x1c5,0x179,0xfe,0x1cc)+_0x49ccff(0x14d,0x1d9,0xa8,0xe1)];else return _0x4d735b;}if(_0x516874[_0x49ccff(0x201,0x1c4,0x230,0x217)]){if(_0x328800(0x277,0x23f,0x225,0x26b)===_0x28b83b[_0x49ccff(0x156,0xb8,0xf3,0x1be)]){const _0x310703=_0x2311aa[_0x328800(0x1bb,0x163,0xf1,0x17f)+'me'](_0x34dcae);if(!_0x34b344[_0x328800(0x273,0x1fc,0x289,0x1fd)+_0x49ccff(0x189,0x1b0,0x1b8,0x1ad)](_0x310703)){const _0x5f4f28={};_0x5f4f28[_0x49ccff(0x1cd,0x263,0x179,0x136)+'sive']=!![],_0x5d65d7[_0x328800(0x239,0x1dc,0x1e7,0x19f)+_0x49ccff(0x22d,0x1ff,0x29a,0x1cf)](_0x310703,_0x5f4f28);}}else _0x31ac0e[_0x328800(0x24b,0x1de,0x177,0x197)]['ANTHR'+_0x328800(0x1cf,0x158,0x1ed,0x16a)+'AUTH_'+_0x49ccff(0x201,0x16e,0x299,0x169)]=_0x516874[_0x49ccff(0x201,0x20d,0x1b5,0x167)];}_0x516874[_0x49ccff(0x1d3,0x147,0x12d,0x1c5)+'S']&&Array[_0x328800(0x276,0x243,0x196,0x291)+'ay'](_0x516874['MODEL'+'S'])&&_0x516874['MODEL'+'S'][_0x328800(0xe9,0x16e,0x139,0x1f3)+'ch'](_0x4e7782=>{function _0xcd852d(_0x30a33f,_0x38af4c,_0x56c42f,_0x237aae){return _0x328800(_0x30a33f-0x108,_0x30a33f-0x40d,_0x56c42f-0x64,_0x237aae);}function _0x7a953a(_0x3a1853,_0x13d6ec,_0x1fe22b,_0x1346ea){return _0x49ccff(_0x13d6ec-0x1a4,_0x1fe22b,_0x1fe22b-0xb5,_0x1346ea-0x8c);}_0x28b83b[_0xcd852d(0x530,0x526,0x4fc,0x4ef)]===_0x7a953a(0x3b2,0x35b,0x35b,0x2e3)?_0x4e7782[_0xcd852d(0x54d,0x598,0x4f6,0x5cd)]&&_0x4e7782['value']&&(_0x31ac0e['env'][_0x4e7782[_0xcd852d(0x54d,0x555,0x5e8,0x578)]]=_0x4e7782['value']):_0x4f2fe7[_0x7a953a(0x33e,0x376,0x421,0x3df)](()=>{_0x2c13eb(![]);});});if(_0x516874[_0x328800(0x24c,0x21f,0x1dd,0x23c)]&&Array[_0x49ccff(0x25d,0x1c9,0x21a,0x2b3)+'ay'](_0x516874[_0x328800(0x2a3,0x21f,0x2bd,0x1c5)])){if(_0x28b83b[_0x49ccff(0x1d9,0x1c5,0x186,0x147)]===_0x28b83b[_0x49ccff(0x1d9,0x15a,0x22e,0x27f)])_0x516874[_0x49ccff(0x239,0x2cb,0x22f,0x2b1)]['forEa'+'ch'](_0x1f9abb=>{function _0x3be2bf(_0x2ed09b,_0x1f0883,_0x22072f,_0x5593c2){return _0x49ccff(_0x2ed09b-0x3e,_0x1f0883,_0x22072f-0x36,_0x5593c2-0x6f);}function _0x294c99(_0x6aaed8,_0x406a5a,_0x4ba68e,_0x12e084){return _0x328800(_0x6aaed8-0x187,_0x406a5a-0x3b0,_0x4ba68e-0x1b,_0x6aaed8);}_0x1f9abb[_0x3be2bf(0x198,0x162,0xf0,0x211)]&&_0x1f9abb[_0x3be2bf(0x263,0x1b8,0x2c2,0x2bc)]&&(_0x28b83b['BrAfC']===_0x28b83b['UBfit']?_0x294cbc=_0x4ff84b[_0x3be2bf(0x293,0x1e3,0x214,0x26f)](_0x45aa64,'..',_0x28b83b[_0x294c99(0x54f,0x516,0x473,0x4b5)],_0x294c99(0x4fe,0x4cb,0x4b3,0x48e)+_0x294c99(0x4ef,0x511,0x565,0x4b9)+'l'):_0x31ac0e[_0x294c99(0x619,0x58e,0x55c,0x5e5)][_0x1f9abb['key']]=_0x1f9abb[_0x294c99(0x557,0x5bb,0x60a,0x51d)]);});else{const _0x1b622e=_0x3407f9();_0x1b622e?_0x53bf77():(_0x359ecd(),_0x3c04b8());}}try{if(_0x328800(0x219,0x18b,0x146,0x148)===_0x28b83b['Hzdld']){const _0x5c803e={};_0x5c803e[_0x328800(0x154,0x129,0x122,0x8f)+_0x49ccff(0x22f,0x2bd,0x1b5,0x2a1)+'pe']=_0x328800(0x15a,0x1eb,0x282,0x212)+_0x328800(0x207,0x1d5,0x230,0x275)+_0x49ccff(0x1a0,0x10b,0x1e5,0x17f)+'n',_0x3da5ec[_0x328800(0xd5,0x107,0x1b7,0x187)+'Head'](0x2033+-0x1*0x1206+-0x1*0xc98,_0x5c803e);const _0x52ad67={};_0x52ad67[_0x49ccff(0x1ea,0x156,0x154,0x257)]=_0x328800(0x178,0x176,0x194,0xd0)+_0x49ccff(0x22c,0x29c,0x2d4,0x220),_0x28fcb8[_0x49ccff(0x21f,0x24d,0x207,0x1e4)](_0x1d08f9[_0x49ccff(0x231,0x226,0x19b,0x2cd)+_0x49ccff(0x132,0x113,0x1cf,0x187)](_0x52ad67));}else return _0x2dbe88[_0x328800(0x10e,0x107,0x62,0x61)+_0x328800(0xb3,0x160,0x201,0x1f3)+'ync'](_0x26b077,JSON[_0x328800(0x27a,0x217,0x1d5,0x1ad)+_0x49ccff(0x132,0x80,0xaf,0x198)](_0x31ac0e,null,0x1b90+-0x14*0x3c+0x1*-0x16de),_0x28b83b[_0x328800(0x204,0x211,0x1d5,0x253)]),!![];}catch(_0x1b53f4){return console[_0x328800(0x23f,0x1d0,0x227,0x18d)](_0x28b83b[_0x49ccff(0x260,0x250,0x278,0x216)],_0x1b53f4),![];}}function _0x4e16e1(){const _0x437663={'LVipI':_0x204de8(0x199,0x262,0x1fb,0x1d7),'aoJdj':_0x1a3a61(0x6ad,0x65c,0x614,0x671)+')+)+)'+'+$','KYpVS':function(_0x1a7d3b,_0xc1b3e9,_0x53f3f5){return _0x1a7d3b(_0xc1b3e9,_0x53f3f5);},'oMdUj':function(_0x587d54){return _0x587d54();},'pAsRi':function(_0x46406b){return _0x46406b();},'rsQsL':function(_0xb82c67,_0xf84b6b){return _0xb82c67!==_0xf84b6b;},'FfKtj':'utf-8','hxtzQ':_0x1a3a61(0x54e,0x558,0x4ee,0x57e)+_0x204de8(0xb6,0x192,0x13c,0x13d)};function _0x204de8(_0x2f8b17,_0x1af4a2,_0x2dfd06,_0x2e86d9){return _0x223fa4(_0x2f8b17-0xf,_0x1af4a2-0x1a7,_0x1af4a2,_0x2dfd06-0x2);}const _0xe6716d=(function(){const _0x512c96={};_0x512c96[_0x9a7533(0x22c,0x21b,0x25b,0x1ec)]=function(_0x46dde0,_0x48a409){return _0x46dde0!==_0x48a409;},_0x512c96[_0x9a7533(0x284,0x22e,0x256,0x23e)]=_0x437663[_0x5b9816(0x229,0x151,0x1dc,0x1bb)];function _0x9a7533(_0x36a749,_0x49d7ae,_0x3f8bd3,_0x58e9e8){return _0x1a3a61(_0x36a749-0x181,_0x36a749- -0x34f,_0x3f8bd3-0x155,_0x58e9e8);}_0x512c96[_0x5b9816(0x174,0x126,0x193,0x159)]=_0x9a7533(0x2a6,0x289,0x352,0x2c9);function _0x5b9816(_0x1764c5,_0x4329e9,_0x2ee843,_0x236661){return _0x204de8(_0x1764c5-0xb5,_0x236661,_0x2ee843- -0x7e,_0x236661-0x19e);}const _0x23a76a=_0x512c96;let _0x2d25e7=!![];return function(_0x49c9c6,_0x14329d){const _0x75761={};_0x75761[_0x5d4ea4(0xee,0x103,0x1b2,0x112)]=_0x23a76a[_0x7b5c84(-0xe6,-0x180,-0xcd,-0x77)];function _0x7b5c84(_0xcc084a,_0x4f9154,_0x3da830,_0x43e3a1){return _0x9a7533(_0xcc084a- -0x3c1,_0x4f9154-0x39,_0x3da830-0x191,_0x3da830);}const _0x3d31ec=_0x75761,_0x40fc23=_0x2d25e7?function(){function _0x130693(_0x34684b,_0x525848,_0x49fea3,_0x51cc5d){return _0x5d4ea4(_0x34684b-0x184,_0x525848-0x362,_0x49fea3,_0x51cc5d-0x5c);}function _0x52fb2a(_0x11d4d3,_0x28f4f0,_0x356958,_0x5d51ee){return _0x7b5c84(_0x28f4f0-0x409,_0x28f4f0-0xa5,_0x5d51ee,_0x5d51ee-0x1a9);}if(_0x14329d){if(_0x23a76a[_0x52fb2a(0x2bd,0x274,0x216,0x201)](_0x130693(0x493,0x502,0x59a,0x4f5),_0x23a76a[_0x52fb2a(0x337,0x2cc,0x2ff,0x21b)])){const _0x2f4b86=_0x14329d[_0x52fb2a(0x2af,0x291,0x23d,0x241)](_0x49c9c6,arguments);return _0x14329d=null,_0x2f4b86;}else{const _0x31bd11={..._0x43864a},_0x495ef5={};_0x495ef5[_0x130693(0x5d8,0x53e,0x4ad,0x5e3)]=[],_0x495ef5['activ'+_0x52fb2a(0x220,0x2a6,0x220,0x2fd)+'x']=0x0;const _0xb0fcf7={};_0xb0fcf7[_0x52fb2a(0x34c,0x303,0x305,0x2b0)]=[],_0xb0fcf7[_0x52fb2a(0x204,0x227,0x1ed,0x26b)+_0x130693(0x570,0x4e1,0x507,0x488)+'x']=0x0;const _0x2b2d56={};_0x2b2d56[_0x52fb2a(0x3de,0x372,0x361,0x39c)+'e']=_0x31bd11,_0x2b2d56[_0x52fb2a(0x2d4,0x23e,0x297,0x230)]=_0x495ef5,_0x2b2d56[_0x130693(0x4d6,0x514,0x55b,0x4ec)+'i']=_0xb0fcf7;const _0x5da97b=_0x2b2d56;_0x5b707b[_0x52fb2a(0x1c5,0x226,0x1fd,0x1ed)+_0x52fb2a(0x21f,0x27f,0x2bd,0x305)+_0x130693(0x52f,0x4c6,0x42d,0x456)](_0x256b21,_0xd833f6[_0x130693(0x5ec,0x571,0x52a,0x55d)+_0x130693(0x4ec,0x472,0x490,0x466)](_0x5da97b,null,-0x3b0+-0x9*0xb4+0xa06),_0x3d31ec[_0x52fb2a(0x1bf,0x22a,0x23e,0x1f8)]),_0x3de945[_0x52fb2a(0x267,0x240,0x24e,0x2bd)](_0x52fb2a(0x1df,0x224,0x1b2,0x258)+_0x130693(0x454,0x44f,0x3e0,0x3ad)+'式');const _0x203290={};return _0x203290[_0x52fb2a(0x294,0x303,0x39c,0x3ad)]=[],_0x203290[_0x130693(0x3f9,0x462,0x4b6,0x46e)+_0x130693(0x575,0x4e1,0x4cd,0x4a5)+'x']=0x0,_0x5da97b[_0x2b6236]||_0x203290;}}}:function(){};_0x2d25e7=![];function _0x5d4ea4(_0x29b5f4,_0xaad3c2,_0x335b59,_0x1b6aa6){return _0x9a7533(_0xaad3c2- -0xdf,_0xaad3c2-0xab,_0x335b59-0x17c,_0x335b59);}return _0x40fc23;};}()),_0x5d35f8=_0x437663[_0x1a3a61(0x586,0x600,0x648,0x580)](_0xe6716d,this,function(){function _0x40a2f1(_0x46bf63,_0x1d7902,_0x511ffd,_0x47feb1){return _0x204de8(_0x46bf63-0x58,_0x511ffd,_0x46bf63-0x404,_0x47feb1-0xc9);}function _0x2f8f10(_0x23be98,_0x40b145,_0x1e79e3,_0x5cf841){return _0x1a3a61(_0x23be98-0xa2,_0x23be98- -0x1d3,_0x1e79e3-0x5,_0x1e79e3);}return _0x5d35f8[_0x2f8f10(0x43d,0x402,0x3e3,0x468)+_0x40a2f1(0x5ea,0x58b,0x564,0x5ba)]()[_0x40a2f1(0x57a,0x629,0x60e,0x525)+'h'](_0x437663[_0x40a2f1(0x5a3,0x570,0x619,0x591)])[_0x2f8f10(0x43d,0x489,0x4ab,0x4ed)+_0x40a2f1(0x5ea,0x605,0x542,0x560)]()[_0x2f8f10(0x49c,0x544,0x492,0x4ac)+_0x40a2f1(0x605,0x631,0x593,0x56e)+'r'](_0x5d35f8)[_0x40a2f1(0x57a,0x4d9,0x559,0x5b3)+'h'](_0x437663[_0x40a2f1(0x5a3,0x62b,0x5d8,0x59b)]);});_0x437663[_0x1a3a61(0x632,0x588,0x5a2,0x58e)](_0x5d35f8),_0x437663[_0x1a3a61(0x5e9,0x651,0x618,0x5f2)](_0x33ed65);if(!_0x2dbe88[_0x204de8(0x288,0x241,0x209,0x21a)+_0x204de8(0x158,0x10d,0x17c,0x1e2)](_0x2c033a)){if(_0x437663['rsQsL']('guFKa','guFKa')){const _0x20328b=_0x236b19['readF'+'ileSy'+'nc'](_0x2ab81c,_0x1a3a61(0x688,0x5f5,0x609,0x61a));_0x1dcb09=_0x2a1f66['parse'](_0x20328b);}else{const _0x575e60={};_0x575e60['AUTH']=[],_0x575e60['activ'+'eInde'+'x']=0x0;const _0x3dc72f={};_0x3dc72f[_0x1a3a61(0x5c6,0x60a,0x61c,0x690)]=[],_0x3dc72f[_0x1a3a61(0x4c2,0x52e,0x5a2,0x5d0)+_0x204de8(0xf9,0x119,0x194,0x1dc)+'x']=0x0;const _0x57367b={};_0x57367b[_0x1a3a61(0x5c4,0x60a,0x5cf,0x587)]=[],_0x57367b['activ'+_0x1a3a61(0x557,0x5ad,0x612,0x58e)+'x']=0x0;const _0x17f628={};_0x17f628[_0x204de8(0x2d4,0x257,0x260,0x24f)+'e']=_0x575e60,_0x17f628[_0x204de8(0x186,0x18f,0x12c,0xf6)]=_0x3dc72f,_0x17f628['gemin'+'i']=_0x57367b;const _0x3141ed=_0x17f628;return _0x2dbe88[_0x204de8(0xee,0x157,0x114,0x18e)+_0x1a3a61(0x576,0x586,0x5b0,0x62e)+_0x204de8(0x150,0x20c,0x179,0x16c)](_0x2c033a,JSON[_0x204de8(0x194,0x2c0,0x224,0x222)+'gify'](_0x3141ed,null,-0x1f3*-0x5+-0xda7+0x3ea),_0x437663[_0x1a3a61(0x5ba,0x64f,0x5e6,0x69f)]),console[_0x204de8(0x107,0x1d3,0x12e,0x170)](_0x437663['hxtzQ'],_0x2c033a),!![];}}function _0x1a3a61(_0x1323b7,_0x4fbb19,_0xc06e4,_0x283e23){return _0x22ee54(_0x1323b7-0x176,_0x283e23,_0xc06e4-0xc7,_0x4fbb19-0x78b);}return![];}function _0x22ee54(_0x3ff871,_0xf7ae9,_0x433af8,_0x109b28){return _0x3aec(_0x109b28- -0x3a5,_0xf7ae9);}function _0x37e814(_0x225766,_0x17aa39,_0x3466b2){const _0x1e0a90={'eesbv':_0x15ffed(0x26a,0x228,0x1b9,0x269),'UuLgY':'hnidY','NHFHq':function(_0x233508,_0x1c50e8,_0x40a55b){return _0x233508(_0x1c50e8,_0x40a55b);},'idnwQ':_0x1b197a(0x1f2,0x21e,0x1e9,0x278)+'\x20clau'+'de','RFClK':'保存配置失'+'败:','KsBoK':'unkno'+'wn','PiGUa':function(_0x39c1c0,_0x36eb62){return _0x39c1c0!==_0x36eb62;},'FyGCM':_0x15ffed(0x293,0x235,0x22a,0x235),'SgEIy':_0x15ffed(0x2de,0x2f3,0x247,0x285)+'catio'+_0x1b197a(0x2c2,0x26f,0x325,0x308)+'n','JnVjo':function(_0x5cf0e0,_0x37ebe0){return _0x5cf0e0(_0x37ebe0);},'dfejC':_0x1b197a(0x2ca,0x231,0x261,0x2a8)+'T','offpY':_0x15ffed(0x30e,0x33c,0x2d3,0x2cc),'MwZlp':_0x1b197a(0x341,0x335,0x26d,0x31a)+_0x15ffed(0x21f,0x196,0x226,0x1e9)+_0x15ffed(0x27a,0x32a,0x27e,0x297)+_0x1b197a(0x2e9,0x22a,0x290,0x2bf)+_0x1b197a(0x385,0x377,0x33a,0x320),'mYhwL':_0x1b197a(0x41d,0x3e7,0x3c5,0x38e)+_0x15ffed(0x2ac,0x211,0x1bc,0x21f)+_0x15ffed(0x236,0x259,0x2d3,0x266)+'Allow'+_0x15ffed(0x276,0x1f5,0x192,0x1eb)+_0x15ffed(0x1a6,0x1e9,0x238,0x1a7),'TVOEe':'OPTIO'+'NS','TvTkG':_0x15ffed(0x267,0x300,0x26c,0x28a)+_0x1b197a(0x401,0x3d1,0x451,0x3cc)+_0x15ffed(0x175,0x1c8,0x1a5,0x1ac)+'r','BhixW':function(_0x494762,_0x1d5977){return _0x494762!==_0x1d5977;},'sveFD':_0x1b197a(0x2f3,0x348,0x3c4,0x389),'pqIrj':_0x1b197a(0x383,0x3c0,0x359,0x349),'vbPoa':function(_0x3c870c,_0x4fcb40){return _0x3c870c*_0x4fcb40;},'ZRsku':_0x15ffed(0x2d2,0x359,0x298,0x2aa),'BQbMZ':_0x15ffed(0x221,0x2a8,0x2df,0x289),'oRJPA':function(_0x30eb57,_0x446e06){return _0x30eb57!==_0x446e06;},'xZBJy':'uaYit','IEFzV':function(_0x4fec6d,_0x25b609){return _0x4fec6d===_0x25b609;},'vYQsF':_0x1b197a(0x389,0x321,0x2c1,0x372)+'confi'+'g','daFQo':_0x1b197a(0x3a0,0x2ce,0x2a0,0x331),'vpZBJ':function(_0xe39962,_0x2c8816){return _0xe39962(_0x2c8816);},'wTkpa':_0x1b197a(0x450,0x3d3,0x441,0x3c7),'HMNID':_0x15ffed(0x205,0x283,0x2a4,0x210)+'求方法','FSjAU':_0x15ffed(0x1e9,0x1a1,0x27e,0x217)+'s','kaERd':_0x1b197a(0x2d2,0x275,0x201,0x29d)+'g.htm'+'l','gIDoq':'/cdn/','GFsdJ':_0x1b197a(0x29d,0x38e,0x385,0x34d),'iMlbF':_0x1b197a(0x2df,0x371,0x327,0x36d)+_0x15ffed(0x1ec,0x201,0x216,0x26f)+_0x15ffed(0x267,0x26e,0x2b3,0x2a9)+_0x15ffed(0x1e8,0x1d8,0x1cf,0x194)+'pt','ENelJ':_0x1b197a(0x2ac,0x2ad,0x2b6,0x28b)+_0x15ffed(0x265,0x1d2,0x293,0x211),'eOWbC':_0x1b197a(0x29f,0x328,0x2c6,0x304),'DfzLt':_0x15ffed(0x22b,0x152,0xfd,0x1a8)+'/jpg','VhlZJ':_0x15ffed(0x1bb,0x189,0x224,0x1a8)+'/x-ic'+'on'};_0x225766[_0x1b197a(0x2dc,0x2ad,0x2e9,0x30e)+'r']=_0x3466b2;const _0x5be55d=_0x325d8b['parse'](_0x225766[_0x1b197a(0x285,0x2ec,0x29e,0x2f6)],!![]),_0x50f195=_0x5be55d['pathn'+_0x1b197a(0x2d2,0x2f3,0x368,0x2d2)];_0x17aa39[_0x1b197a(0x2a3,0x28e,0x298,0x2ca)+_0x15ffed(0x314,0x2f3,0x303,0x28c)](_0x1b197a(0x42e,0x420,0x37d,0x38e)+_0x15ffed(0x223,0x291,0x261,0x21f)+_0x1b197a(0x38d,0x3fb,0x330,0x34e)+_0x15ffed(0x2e2,0x27d,0x2ca,0x2bf)+_0x15ffed(0xf4,0x1fa,0x1bf,0x197)+'in','*'),_0x17aa39[_0x15ffed(0x150,0x24f,0x212,0x1e2)+_0x15ffed(0x2d1,0x226,0x30f,0x28c)](_0x1e0a90[_0x1b197a(0x30e,0x2d8,0x283,0x2db)],'GET,\x20'+_0x15ffed(0x19f,0x196,0x1b7,0x1ad)+_0x1b197a(0x43f,0x441,0x3fe,0x3b6)+'ONS');function _0x15ffed(_0x149eb1,_0x245d88,_0x19ec4a,_0x24f0f1){return _0x22ee54(_0x149eb1-0x6c,_0x149eb1,_0x19ec4a-0x1eb,_0x24f0f1-0x3ff);}function _0x1b197a(_0x2d5ab7,_0x2b9d5b,_0xc74b03,_0x32e8f3){return _0x223fa4(_0x2d5ab7-0xf0,_0x2b9d5b-0xcb,_0x2b9d5b,_0x32e8f3-0x177);}_0x17aa39[_0x15ffed(0x14b,0x1e6,0x185,0x1e2)+'ader'](_0x1b197a(0x327,0x41f,0x3df,0x38e)+_0x1b197a(0x38d,0x333,0x371,0x307)+_0x15ffed(0x1b9,0x23a,0x227,0x266)+_0x1b197a(0x3c6,0x44f,0x3da,0x3a7)+_0x15ffed(0x2c2,0x217,0x1f0,0x228)+_0x1b197a(0x2f6,0x22f,0x253,0x284),_0x15ffed(0x22c,0x1b8,0x23a,0x1c3)+_0x15ffed(0x243,0x32e,0x2e7,0x2af)+'pe');if(_0x225766[_0x1b197a(0x2fe,0x38f,0x283,0x32c)+'d']===_0x1e0a90[_0x15ffed(0x27b,0x2e4,0x307,0x257)]){if(_0x1e0a90[_0x15ffed(0x27d,0x297,0x2a8,0x290)]('MzmLP',_0x15ffed(0x1c2,0x247,0x161,0x199))){_0x17aa39['write'+_0x1b197a(0x44c,0x370,0x338,0x3c3)](0x140f+0x82*-0x4+-0x113f),_0x17aa39[_0x1b197a(0x2f3,0x2fd,0x31e,0x387)]();return;}else{const _0x17477e={};_0x17477e[_0x1b197a(0x26e,0x255,0x2d2,0x2ab)+_0x15ffed(0x2df,0x2a7,0x33f,0x2af)+'pe']=_0x512d4d,_0x34f05c['write'+_0x1b197a(0x3eb,0x453,0x31a,0x3c3)](0x16*-0x175+-0x75a+-0x2*-0x1418,_0x17477e),_0x223083[_0x15ffed(0x320,0x24e,0x213,0x29f)](_0x15f0df,_0x1e0a90[_0x1b197a(0x296,0x380,0x2d1,0x329)]);}}if(_0x50f195===_0x1e0a90['TvTkG']){if(_0x1e0a90['BhixW'](_0x1e0a90[_0x1b197a(0x3a5,0x2f6,0x319,0x34b)],_0x1b197a(0x33a,0x472,0x3a0,0x3ce))){if(_0x225766[_0x1b197a(0x2dd,0x296,0x3bf,0x32c)+'d']===_0x1b197a(0x3aa,0x3d5,0x3f1,0x3c7)){if(_0x225766[_0x1b197a(0x2b3,0x284,0x391,0x30e)+'r']&&_0x225766[_0x1b197a(0x260,0x2c5,0x2b7,0x30e)+'r'][_0x15ffed(0x22c,0x2d6,0x1f8,0x29a)+_0x15ffed(0x1d3,0x19a,0x106,0x1a4)+_0x1b197a(0x2a0,0x37f,0x33f,0x2d5)]){if(_0x1b197a(0x3eb,0x353,0x2af,0x349)!==_0x1e0a90[_0x1b197a(0x29b,0x2bb,0x2af,0x326)])_0x3c4b76['log'](_0x15ffed(0x2ef,0x27d,0x23a,0x2d1)+_0x15ffed(0x224,0x27b,0x292,0x2c2)+'.'),_0x5d2336();else{clearTimeout(_0x225766[_0x1b197a(0x340,0x30c,0x29c,0x30e)+'r'][_0x15ffed(0x276,0x299,0x1ea,0x29a)+_0x1b197a(0x2e6,0x203,0x263,0x28c)+_0x15ffed(0x1e0,0x170,0x1c4,0x1ed)]);const _0x8f1ed4=_0x1e0a90[_0x1b197a(0x2c7,0x26e,0x336,0x2b9)](_0x1e0a90[_0x1b197a(0x2db,0x34c,0x2fe,0x2b9)](-0x5*-0x346+-0x2*0xb0b+0x5c2,-0x663+0xd1b*0x1+0x19f*-0x4),-0x222*0x12+-0x5d5*0x1+0x3021);_0x225766['serve'+'r'][_0x15ffed(0x33d,0x1f7,0x230,0x29a)+_0x1b197a(0x24c,0x305,0x32d,0x28c)+_0x1b197a(0x29d,0x264,0x346,0x2d5)]=setTimeout(()=>{function _0x33dfe3(_0x133e78,_0x2096d2,_0x1d50fe,_0x5ff93f){return _0x1b197a(_0x133e78-0x19a,_0x1d50fe,_0x1d50fe-0xcc,_0x133e78-0xea);}function _0x59d5ad(_0x440b90,_0x5d9415,_0x1a7c77,_0x5f0063){return _0x1b197a(_0x440b90-0x179,_0x440b90,_0x1a7c77-0xe9,_0x5f0063- -0x35b);}_0x33dfe3(0x398,0x3ee,0x3f7,0x3cb)===_0x1e0a90['UuLgY']?_0x1afe33[_0x33dfe3(0x368,0x2bd,0x2d6,0x386)]('SIGIN'+'T'):_0x225766[_0x59d5ad(0x1f,-0x52,-0xfc,-0x4d)+'r'][_0x59d5ad(-0xc7,-0x44,0x8c,-0x21)](()=>{function _0x553da4(_0x380c1a,_0x56187d,_0x2d9836,_0x5f2a92){return _0x33dfe3(_0x380c1a- -0xd2,_0x56187d-0x2b,_0x56187d,_0x5f2a92-0x60);}process[_0x553da4(0x315,0x3b5,0x3ab,0x31d)](0x1839+0x6e*0x26+-0x288d);});},_0x8f1ed4);const _0x54c891={};_0x54c891[_0x15ffed(0x1e5,0x124,0x17c,0x1c3)+_0x15ffed(0x316,0x31f,0x32f,0x2af)+'pe']=_0x15ffed(0x202,0x2ca,0x218,0x285)+'catio'+_0x1b197a(0x3b7,0x2e9,0x2bc,0x308)+'n',_0x17aa39[_0x1b197a(0x2d7,0x2ea,0x268,0x289)+'Head'](0x4a7*-0x8+0x7*-0xdb+0x2bfd,_0x54c891);const _0x3e3fad={};_0x3e3fad[_0x1b197a(0x39e,0x2ee,0x349,0x325)+'ss']=!![],_0x3e3fad['messa'+'ge']=_0x1b197a(0x2e0,0x3a8,0x3af,0x2fe)+'置',_0x17aa39[_0x1b197a(0x3dd,0x3f3,0x33d,0x387)](JSON['strin'+_0x1b197a(0x2fa,0x28b,0x218,0x29a)](_0x3e3fad));}}else{if(_0x1e0a90[_0x1b197a(0x238,0x2a0,0x1dc,0x275)]===_0x1e0a90['BQbMZ']){const _0x2f2a47={};return _0x2f2a47[_0x1b197a(0x333,0x444,0x3ce,0x3d1)]=_0x1b197a(0x3aa,0x25d,0x2ef,0x305)+'e',_0x1e0a90[_0x15ffed(0x2aa,0x224,0x27f,0x286)](_0x354b70,_0x1e0a90[_0x15ffed(0x1d1,0x2ab,0x26d,0x25a)],_0x2f2a47),!![];}else{const _0x2f7f55={};_0x2f7f55[_0x1b197a(0x2d8,0x353,0x26c,0x2ab)+_0x15ffed(0x2ee,0x33f,0x309,0x2af)+'pe']=_0x15ffed(0x260,0x202,0x1ea,0x285)+_0x1b197a(0x3ef,0x3da,0x2f5,0x357)+'n/jso'+'n',_0x17aa39[_0x1b197a(0x281,0x1f6,0x2f1,0x289)+_0x15ffed(0x355,0x2fe,0x357,0x2db)](0x11b*0x5+-0x21f3+-0x10b*-0x1c,_0x2f7f55);const _0x1915b7={};_0x1915b7[_0x1b197a(0x2d8,0x2e1,0x2e4,0x325)+'ss']=!![],_0x1915b7[_0x15ffed(0x1ec,0x265,0x339,0x28b)+'ge']=_0x15ffed(0x20e,0x173,0x1be,0x1e4),_0x17aa39['end'](JSON[_0x15ffed(0x2b7,0x27e,0x26d,0x2b1)+_0x1b197a(0x23b,0x213,0x2a1,0x29a)](_0x1915b7));}}}else{if(_0x1e0a90['oRJPA'](_0x1e0a90['xZBJy'],'uaYit'))return _0x8bd48e[_0x1b197a(0x3c1,0x304,0x33f,0x352)](_0x1e0a90[_0x1b197a(0x2e8,0x3a1,0x3a1,0x346)],_0x4a470d),![];else{const _0x3f4c1d={};_0x3f4c1d[_0x1b197a(0x2e8,0x2a1,0x2e3,0x2ab)+'nt-Ty'+'pe']=_0x1e0a90[_0x15ffed(0x2ad,0x17b,0x1f3,0x229)],_0x17aa39[_0x15ffed(0x15f,0x1fc,0xf8,0x1a1)+_0x15ffed(0x351,0x383,0x2c4,0x2db)](0x203f+0x1117+0x19*-0x1e9,_0x3f4c1d);const _0x2bb596={};_0x2bb596[_0x1b197a(0x2c0,0x2f3,0x3f9,0x352)]=_0x15ffed(0x1cc,0x2ad,0x248,0x210)+'求方法',_0x17aa39[_0x15ffed(0x2df,0x303,0x2b8,0x29f)](JSON[_0x15ffed(0x2eb,0x214,0x24d,0x2b1)+_0x1b197a(0x290,0x299,0x327,0x29a)](_0x2bb596));}}return;}else return _0x1e0a90[_0x15ffed(0x1f4,0x2c0,0x275,0x239)];}if(_0x1e0a90[_0x15ffed(0x144,0x1d5,0x1c1,0x1cb)](_0x50f195,_0x1e0a90[_0x1b197a(0x3c7,0x3a8,0x2d1,0x36a)])){const _0x1914ad=_0x5be55d['query'][_0x15ffed(0x27c,0x180,0x194,0x22e)]||'claud'+'e';if(_0x225766['metho'+'d']===_0x1e0a90['daFQo']){const _0x1e3e30=_0x1e0a90[_0x1b197a(0x430,0x412,0x3af,0x3c0)](_0x2753a4,_0x1914ad),_0x2f9b35={};_0x2f9b35[_0x15ffed(0x1be,0x137,0x13e,0x1c3)+'nt-Ty'+'pe']=_0x15ffed(0x290,0x2d9,0x250,0x285)+_0x15ffed(0x2fd,0x2fe,0x2f8,0x26f)+_0x1b197a(0x277,0x2ec,0x2eb,0x308)+'n',_0x17aa39[_0x1b197a(0x2e9,0x249,0x274,0x289)+_0x15ffed(0x28f,0x246,0x25f,0x2db)](-0x21*-0x30+-0x6cb*0x2+0x82e,_0x2f9b35);const _0x5b15e3={};_0x5b15e3[_0x1b197a(0x2c1,0x21e,0x304,0x29d)+'g']=_0x1e3e30,_0x5b15e3['path']=_0x2c033a,_0x5b15e3['cliTy'+'pe']=_0x1914ad,_0x17aa39[_0x15ffed(0x21e,0x209,0x2e3,0x29f)](JSON[_0x1b197a(0x2fa,0x3e8,0x360,0x399)+'gify'](_0x5b15e3));}else{if(_0x225766[_0x15ffed(0x1e1,0x259,0x298,0x244)+'d']===_0x1e0a90[_0x15ffed(0x181,0x1ea,0x265,0x1d5)]){let _0x4ec389='';_0x225766['on']('data',_0x1aba08=>{function _0x1cd022(_0x312db5,_0x1a1482,_0x3e5b6c,_0x85c2a1){return _0x1b197a(_0x312db5-0x1c7,_0x85c2a1,_0x3e5b6c-0x23,_0x1a1482- -0x4e8);}function _0x2463d2(_0x240903,_0x2c6243,_0x5d8948,_0x25fbc1){return _0x15ffed(_0x2c6243,_0x2c6243-0x10b,_0x5d8948-0x19f,_0x5d8948-0xcb);}_0x4ec389+=_0x1aba08[_0x2463d2(0x2ea,0x3c6,0x34f,0x37c)+_0x1cd022(-0x206,-0x18d,-0x16a,-0x1a3)]();}),_0x225766['on'](_0x15ffed(0x320,0x20a,0x29b,0x29f),()=>{function _0x40600f(_0x47ee24,_0x108b8e,_0x318c1a,_0x39cb39){return _0x15ffed(_0x39cb39,_0x108b8e-0x144,_0x318c1a-0x6c,_0x108b8e- -0x1b9);}function _0x53d0cb(_0xe6d576,_0x3902da,_0x35913a,_0x3296d1){return _0x15ffed(_0xe6d576,_0x3902da-0x17e,_0x35913a-0xef,_0x3902da-0x1);}if(_0x1e0a90['PiGUa'](_0x1e0a90[_0x40600f(0x70,0x25,0x42,0x2b)],_0x40600f(0x2c,0x7c,0x10,0x7e)))_0x274383=_0xc5c989['join'](_0x2ec13a,'..',_0x40600f(0x33,0x5e,0xa5,0xc0)+'s',_0x435205);else try{const _0x171827=JSON[_0x53d0cb(0x29d,0x1ff,0x271,0x256)](_0x4ec389),_0x1ae527=_0x171827[_0x40600f(0xe,-0x4,-0x8d,-0x1f)+'g'],_0x2f5f26=_0x171827[_0x40600f(-0x1c,0x48,0xcd,-0x40)+'pe']||_0x1914ad,_0xc4e0f6=_0x1e0a90[_0x40600f(0xce,0xcd,0xe7,0x11f)](_0x3c577d,_0x1ae527,_0x2f5f26);if(_0xc4e0f6){const _0x2ea1c1={};_0x2ea1c1[_0x53d0cb(0x203,0x1c4,0x218,0x149)+'nt-Ty'+'pe']=_0x40600f(0x1e,0xcc,0x13e,0x125)+_0x40600f(0x24,0xb6,0xb2,0x10e)+_0x53d0cb(0x180,0x221,0x1bf,0x179)+'n',_0x17aa39['write'+_0x40600f(0x1cd,0x122,0xc2,0x170)](-0x1*-0x1467+-0x197a+-0x5db*-0x1,_0x2ea1c1);const _0x47159b={};_0x47159b[_0x53d0cb(0x2ec,0x23e,0x19d,0x2a6)+'ss']=!![],_0x17aa39[_0x40600f(0x74,0xe6,0x3d,0x6e)](JSON[_0x53d0cb(0x29f,0x2b2,0x31a,0x315)+_0x40600f(-0xa1,-0x7,0x90,0xf)](_0x47159b));}else{const _0x14e119={};_0x14e119[_0x53d0cb(0x1c9,0x1c4,0x197,0x1b3)+_0x40600f(0x1a1,0xf6,0x185,0xa3)+'pe']=_0x1e0a90[_0x53d0cb(0x19a,0x22a,0x2af,0x1f3)],_0x17aa39[_0x53d0cb(0x1f2,0x1a2,0x1d8,0x141)+'Head'](-0x1146+0x533*-0x7+-0x1d*-0x1eb,_0x14e119);const _0x5525f8={};_0x5525f8[_0x53d0cb(0x284,0x26b,0x2d1,0x2cc)]=_0x40600f(0x28,0x5b,0x3e,0x55),_0x17aa39[_0x40600f(0x48,0xe6,0x8e,0x82)](JSON[_0x40600f(0xae,0xf8,0xaf,0xd4)+_0x53d0cb(0x20c,0x1b3,0x224,0x246)](_0x5525f8));}}catch(_0x310ff7){const _0x4231d1={};_0x4231d1[_0x40600f(0x13,0xa,-0xe,0x3a)+_0x53d0cb(0x27f,0x2b0,0x336,0x2a3)+'pe']='appli'+_0x53d0cb(0x1d2,0x270,0x26c,0x2ee)+_0x53d0cb(0x224,0x221,0x1dc,0x1b3)+'n',_0x17aa39[_0x53d0cb(0x154,0x1a2,0x230,0x115)+'Head'](0x1b0a+-0x1f76*0x1+0x5fc,_0x4231d1);const _0x1781a9={};_0x1781a9[_0x40600f(0x12a,0xb1,0x83,0xec)]=_0x40600f(0xe1,0xeb,0x6c,0xdf)+'ON数据',_0x17aa39['end'](JSON['strin'+_0x40600f(-0x2c,-0x7,-0x3b,0x3)](_0x1781a9));}});}else{const _0x262619={};_0x262619[_0x15ffed(0x1da,0x22f,0x15a,0x1c3)+_0x15ffed(0x32f,0x254,0x342,0x2af)+'pe']=_0x1e0a90['SgEIy'],_0x17aa39[_0x15ffed(0x145,0x10a,0x1e0,0x1a1)+_0x15ffed(0x37e,0x2f6,0x2ca,0x2db)](0x1b88+0x2*-0x1f5+-0x1609*0x1,_0x262619);const _0x46f18b={};_0x46f18b[_0x1b197a(0x3a9,0x381,0x395,0x352)]=_0x1e0a90[_0x1b197a(0x373,0x316,0x36c,0x39e)],_0x17aa39[_0x15ffed(0x320,0x2a4,0x214,0x29f)](JSON['strin'+_0x1b197a(0x32e,0x268,0x20e,0x29a)](_0x46f18b));}}return;}let _0xa0f5d4=_0x11e402['join'](__dirname,'..',_0x15ffed(0x22a,0x200,0x249,0x217)+'s',_0x15ffed(0x13f,0x1ac,0x263,0x1b5)+_0x1b197a(0x317,0x381,0x257,0x2e3)+'l');if(_0x1e0a90[_0x15ffed(0x246,0x17a,0x143,0x1cb)](_0x50f195,'/')||_0x50f195===_0x1b197a(0x3b9,0x2e7,0x3b1,0x361)+'ig.ht'+'ml')_0xa0f5d4=_0x11e402[_0x15ffed(0x30c,0x24b,0x2f0,0x2d5)](__dirname,'..',_0x1e0a90[_0x15ffed(0x251,0x23d,0x1af,0x1b4)],_0x1e0a90[_0x1b197a(0x3b7,0x3d9,0x3f3,0x368)]);else{if(_0x50f195['start'+_0x15ffed(0x1f8,0x21c,0x23f,0x227)](_0x1e0a90['gIDoq'])){const _0x19aaea=_0x50f195[_0x15ffed(0x27c,0x271,0x331,0x2eb)+'ce'](_0x1e0a90[_0x15ffed(0x18c,0x273,0x1c0,0x1e6)],'');_0xa0f5d4=_0x11e402[_0x15ffed(0x27f,0x2b8,0x321,0x2d5)](__dirname,'..',_0x1e0a90[_0x15ffed(0x246,0x169,0x242,0x1b4)],_0x1e0a90[_0x1b197a(0x2ba,0x262,0x2ca,0x298)],_0x19aaea);}else _0xa0f5d4=_0x11e402[_0x1b197a(0x3ac,0x32b,0x3d5,0x3bd)](__dirname,'..',_0x1b197a(0x2c5,0x292,0x2b1,0x2ff)+'s',_0x50f195);}_0xa0f5d4=_0x11e402[_0x15ffed(0x287,0x2cf,0x35c,0x2d7)+_0x1b197a(0x37a,0x2e1,0x275,0x2e7)](_0xa0f5d4);const _0x3e76e1=_0x11e402[_0x15ffed(0x2e5,0x289,0x300,0x2d7)+_0x15ffed(0x1bd,0x172,0x22d,0x1ff)](_0x11e402['join'](__dirname,'..',_0x1e0a90['FSjAU']));if(!_0xa0f5d4[_0x1b197a(0x368,0x3c4,0x3dd,0x3a9)+_0x1b197a(0x2f0,0x360,0x30c,0x30f)](_0x3e76e1)){_0x17aa39[_0x1b197a(0x29d,0x1fc,0x2bb,0x289)+_0x15ffed(0x309,0x236,0x296,0x2db)](0x2*0xf6b+0xd8f+0x30f*-0xe),_0x17aa39[_0x15ffed(0x2e1,0x29e,0x229,0x29f)]('Forbi'+_0x15ffed(0x261,0x1c9,0x22d,0x23c));return;}const _0x421e25=_0x11e402[_0x1b197a(0x356,0x354,0x358,0x328)+'me'](_0xa0f5d4);let _0x5a8387='text/'+_0x15ffed(0x188,0x1e5,0x297,0x1e8);switch(_0x421e25){case _0x1b197a(0x3e2,0x36b,0x2b6,0x336):_0x5a8387=_0x1e0a90['iMlbF'];break;case _0x1b197a(0x391,0x3be,0x453,0x3d6):_0x5a8387=_0x1e0a90['ENelJ'];break;case _0x15ffed(0x2a4,0x1a6,0x206,0x236):_0x5a8387=_0x1e0a90[_0x15ffed(0x227,0x24b,0x29a,0x229)];break;case _0x1e0a90[_0x1b197a(0x2a9,0x2e2,0x3bf,0x340)]:_0x5a8387='image'+'/png';break;case _0x15ffed(0x2f8,0x222,0x31c,0x2b2):_0x5a8387=_0x1e0a90[_0x1b197a(0x2e4,0x2aa,0x323,0x30c)];break;case _0x15ffed(0x21e,0x2af,0x29b,0x2cf):_0x5a8387=_0x1e0a90[_0x1b197a(0x27b,0x2ce,0x2e8,0x300)];break;}_0x2dbe88[_0x15ffed(0x2e9,0x2b7,0x2c1,0x29d)+_0x15ffed(0x289,0x22d,0x246,0x204)](_0xa0f5d4,(_0x29b1c6,_0x5f4a76)=>{function _0xeee7ef(_0x3fc7ff,_0x931045,_0x48c07c,_0x1f3ccc){return _0x15ffed(_0x931045,_0x931045-0x19b,_0x48c07c-0x187,_0x48c07c-0x2b4);}const _0x3e2398={'xtOvs':function(_0x1fa993,_0x33fbdd){function _0x166038(_0x5cfaf5,_0x1f91d7,_0x3b7506,_0x46b6c9){return _0x3aec(_0x5cfaf5- -0x271,_0x1f91d7);}return _0x1e0a90[_0x166038(-0xfb,-0x18b,-0x9c,-0x69)](_0x1fa993,_0x33fbdd);}};function _0x7da17f(_0x103bbc,_0x3f0b78,_0x20b5ed,_0x531254){return _0x15ffed(_0x3f0b78,_0x3f0b78-0x17b,_0x20b5ed-0x2f,_0x20b5ed-0x18e);}if(_0x29b1c6)_0x29b1c6[_0xeee7ef(0x47d,0x5ae,0x4ff,0x4b4)]===_0x1e0a90[_0x7da17f(0x453,0x447,0x41f,0x390)]?_0x1e0a90[_0xeee7ef(0x5a4,0x4d7,0x544,0x5a7)](_0x1e0a90['offpY'],'juiDF')?(_0x17aa39['write'+_0x7da17f(0x453,0x490,0x469,0x3ba)](-0x1*0x1c1b+0x2*-0xc66+-0x3*-0x1229),_0x17aa39[_0x7da17f(0x46a,0x3f3,0x42d,0x3c3)]('404\x20N'+_0x7da17f(0x3d8,0x3dd,0x34f,0x381)+_0xeee7ef(0x507,0x540,0x504,0x454))):_0x214c87?_0x1e0a90['JnVjo'](_0x2aabcd,!![]):_0x45c3e6['close'](()=>{function _0x3ea7d7(_0x4af521,_0x4cac15,_0x27063d,_0x12a8fb){return _0x7da17f(_0x4af521-0x52,_0x4cac15,_0x27063d- -0x495,_0x12a8fb-0x120);}_0x3e2398[_0x3ea7d7(-0x3c,-0xc5,-0xc2,-0xcb)](_0xaa6442,![]);}):(_0x17aa39[_0x7da17f(0x345,0x2f2,0x32f,0x294)+'Head'](0x223a*-0x1+0x31d+0x2111),_0x17aa39[_0x7da17f(0x3f1,0x3f8,0x42d,0x497)](_0x1e0a90['MwZlp']));else{const _0x509b52={};_0x509b52[_0xeee7ef(0x506,0x46e,0x477,0x493)+'nt-Ty'+'pe']=_0x5a8387,_0x17aa39[_0x7da17f(0x397,0x3c4,0x32f,0x33e)+_0xeee7ef(0x501,0x634,0x58f,0x59e)](0xfdb+0x27*-0x73+0x139*0x2,_0x509b52),_0x17aa39['end'](_0x5f4a76,_0xeee7ef(0x515,0x50e,0x51d,0x50e));}});}function _0x43d26a(_0x178016){const _0x566fba={};function _0x3381fd(_0x3586ce,_0x425459,_0x2964ca,_0x8bd528){return _0x22ee54(_0x3586ce-0x1c6,_0x8bd528,_0x2964ca-0x18a,_0x3586ce-0x9b);}function _0x534f6d(_0x49f504,_0x5ea3b6,_0x5893ca,_0x181ec9){return _0x223fa4(_0x49f504-0x132,_0x5ea3b6-0x105,_0x5893ca,_0x5ea3b6-0xa0);}_0x566fba[_0x3381fd(-0x1ca,-0x128,-0x182,-0x221)]='hIPbC',_0x566fba['isHSD']=_0x3381fd(-0x82,-0x9e,-0x1c,-0x121);const _0x7876fa=_0x566fba;return new Promise(_0x2c14f3=>{const _0x4118ca={};function _0x18dd22(_0x30eaca,_0x23f34b,_0x411f33,_0x381802){return _0x534f6d(_0x30eaca-0x13f,_0x23f34b- -0x10d,_0x381802,_0x381802-0x4e);}_0x4118ca['cTnCP']=function(_0x7414da,_0x32c849){return _0x7414da*_0x32c849;},_0x4118ca[_0x16f284(-0x181,-0x131,-0x1d9,-0x230)]=function(_0x534fb0,_0x5522d7){return _0x534fb0*_0x5522d7;},_0x4118ca[_0x18dd22(0x19a,0x1b9,0x157,0x25a)]=function(_0x2bc6eb,_0x14fb1d){return _0x2bc6eb===_0x14fb1d;};function _0x16f284(_0x1b4899,_0x5e130b,_0x43da65,_0x480d9b){return _0x534f6d(_0x1b4899-0xf9,_0x43da65- -0x3e2,_0x5e130b,_0x480d9b-0xa3);}_0x4118ca[_0x18dd22(0x108,0xe1,0x122,0xf2)]=_0x7876fa[_0x18dd22(0xef,0x9e,0x116,0x27)],_0x4118ca['fzsta']=_0x7876fa[_0x18dd22(0x13b,0x14a,0xf4,0xff)],_0x4118ca['rVhyO']=function(_0x579a75,_0x30e920){return _0x579a75!==_0x30e920;};const _0x3069ea=_0x4118ca;if(_0x18dd22(0x58,0x9c,0x96,0x8e)!==_0x16f284(-0x177,-0x8a,-0xf7,-0x162)){const _0x1c30c3=_0x53b2ed[_0x16f284(-0xb2,-0xba,-0x106,-0x175)+'eServ'+'er']();_0x1c30c3[_0x18dd22(0x13d,0x97,0xfd,0x47)+'n'](_0x178016,_0x33dae7=>{function _0x1a8714(_0x339dd2,_0x28f72e,_0x39413e,_0x5aa425){return _0x18dd22(_0x339dd2-0xf8,_0x5aa425- -0x117,_0x39413e-0x1be,_0x339dd2);}function _0x2bd034(_0x5925d8,_0x7bd038,_0x173be3,_0x4b5760){return _0x16f284(_0x5925d8-0x179,_0x7bd038,_0x4b5760- -0x2b,_0x4b5760-0x3e);}if(_0x33dae7){if(_0x3069ea[_0x1a8714(0x1a,0x16,0x14a,0xa2)](_0x3069ea[_0x1a8714(-0xd6,0x3d,0x17,-0x36)],_0x1a8714(0xbb,0xc9,0xb4,0xb3))){_0x449659(_0x37efb6['serve'+'r']['autoC'+_0x2bd034(-0x2a9,-0x2a5,-0x298,-0x258)+_0x1a8714(0x88,0x44,0x17,-0x26)]);const _0x475a94=_0x3069ea[_0x1a8714(0x8,-0x3f,-0xaf,-0x62)](_0x3069ea['QKLcU'](0xf07*-0x2+0x6*0x245+0x6*0x2bf,-0x99*-0xe+-0x203c+0x181a),0xd35+-0x1805+0x9d*0x18);_0x46e2fc[_0x1a8714(0x2c,0xb,0x18,0x13)+'r'][_0x1a8714(0xb2,0x22,0xa2,0x87)+'loseT'+_0x1a8714(-0x22,-0x66,-0xb9,-0x26)]=_0x51e9fa(()=>{function _0x461622(_0x1702db,_0x42e945,_0x1da109,_0x221501){return _0x1a8714(_0x221501,_0x42e945-0x1ec,_0x1da109-0x17d,_0x42e945-0x41a);}_0x461600[_0x461622(0x484,0x42d,0x3e0,0x4cb)+'r']['close'](()=>{_0x28a86e['exit'](-0x2*-0xedc+0x9*-0x1a3+-0x1*0xefd);});},_0x475a94);const _0x145fd3={};_0x145fd3[_0x1a8714(-0xdd,-0xd3,-0x70,-0x50)+_0x1a8714(0x50,0xde,0x30,0x9c)+'pe']=_0x2bd034(-0x1b9,-0x205,-0x1cc,-0x177)+_0x2bd034(-0x20e,-0x1f4,-0x18c,-0x18d)+'n/jso'+'n',_0x170cbe[_0x1a8714(-0xea,-0x4f,-0x71,-0x72)+'Head'](-0x1a4*0x2+-0x2494+0x28a4,_0x145fd3);const _0x4d0b48={};_0x4d0b48[_0x1a8714(-0x20,0xb8,0x5c,0x2a)+'ss']=!![],_0x4d0b48[_0x1a8714(-0xf,0xde,0x13,0x78)+'ge']=_0x1a8714(-0x47,-0x32,-0x8e,0x3)+'置',_0x239672[_0x2bd034(-0x1cf,-0xe7,-0x180,-0x15d)](_0x33ea7f['strin'+_0x1a8714(-0x90,-0x38,0x26,-0x61)](_0x4d0b48));}else _0x2c14f3(!![]);}else{if(_0x3069ea['iNFdd'](_0x2bd034(-0x154,-0x146,-0x110,-0x11a),_0x3069ea[_0x1a8714(-0x8b,0x1,-0xac,-0x2c)]))_0x1c30c3[_0x2bd034(-0x14f,-0x239,-0x1f9,-0x1aa)](()=>{_0x2c14f3(![]);});else{const _0x10e19a={};_0x10e19a[_0x2bd034(-0x14f,-0x1b0,-0x1c3,-0x17e)]=[],_0x10e19a[_0x2bd034(-0x25f,-0x227,-0x258,-0x25a)+_0x2bd034(-0x20a,-0x1d9,-0x192,-0x1db)+'x']=0x0;const _0x511346={};_0x511346['AUTH']=[],_0x511346['activ'+'eInde'+'x']=0x0;const _0x191bd0={};_0x191bd0[_0x2bd034(-0x157,-0x133,-0x17d,-0x17e)]=[],_0x191bd0['activ'+_0x1a8714(0xad,-0x4c,-0x2a,0xe)+'x']=0x0;const _0x31b639={};_0x31b639['claud'+'e']=_0x10e19a,_0x31b639[_0x2bd034(-0x2be,-0x270,-0x1af,-0x243)]=_0x511346,_0x31b639[_0x1a8714(0x6d,0xc5,0xf3,0x41)+'i']=_0x191bd0,_0x3fd999=_0x31b639;}}}),_0x1c30c3['on'](_0x18dd22(0x1ee,0x16e,0xfc,0x1e9),()=>{function _0x5bbf90(_0x4c2cae,_0x375bc0,_0x2fdd0c,_0x1331de){return _0x16f284(_0x4c2cae-0x54,_0x1331de,_0x4c2cae-0x6bc,_0x1331de-0x1c0);}function _0x2986c1(_0x583cdc,_0xb2b592,_0x4addd9,_0x2019d3){return _0x18dd22(_0x583cdc-0x1f,_0x4addd9-0x2fb,_0x4addd9-0xb2,_0x2019d3);}if(_0x3069ea[_0x5bbf90(0x48b,0x3dd,0x4bf,0x409)](_0x5bbf90(0x4aa,0x4a4,0x4fa,0x482),_0x2986c1(0x3ef,0x459,0x3be,0x3eb)))return'\x22'+_0x1133e6[_0x5bbf90(0x5d6,0x65e,0x58a,0x538)+'ce'](/"/g,'\x5c\x22')+'\x22';else _0x2c14f3(!![]);});}else return _0x1d7f75[_0x16f284(-0x1f2,-0x2c8,-0x230,-0x222)+_0x16f284(-0x1fc,-0x195,-0x1d7,-0x1ee)+_0x18dd22(0x190,0x10a,0xe3,0x8b)](_0x30060d,_0x1a9eac[_0x18dd22(0x115,0x1b5,0x264,0x204)+_0x16f284(-0x20a,-0x19d,-0x21f,-0x1df)](_0x306bf4,null,0x1*0x615+0x3*-0xc78+0xd*0x269),'utf-8'),!![];});}function _0x3aec(_0x2550d5,_0x5b6cd4){_0x2550d5=_0x2550d5-(0x19*-0x2a+-0x2fa+0x846);const _0x13d399=_0x1b82();let _0x1ac085=_0x13d399[_0x2550d5];if(_0x3aec['vHRXZb']===undefined){var _0x3dbd40=function(_0x24dc9d){const _0x3196fc='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x24a998='',_0x48a783='',_0x1557d8=_0x24a998+_0x3dbd40;for(let _0x22c884=0x935+0x1534+-0x1e69*0x1,_0x4716ee,_0x4750c4,_0x20f668=0x33*0x1+-0x872+0x83f;_0x4750c4=_0x24dc9d['charAt'](_0x20f668++);~_0x4750c4&&(_0x4716ee=_0x22c884%(-0x1189+0x1*-0x1cc1+0x2e4e)?_0x4716ee*(0x2*0xa31+-0x7*0x3e5+0x721)+_0x4750c4:_0x4750c4,_0x22c884++%(0x1863+0x1c90+-0x3*0x11a5))?_0x24a998+=_0x1557d8['charCodeAt'](_0x20f668+(0x43d+0x41b*0x1+0x427*-0x2))-(0xc67+0x11ed+-0x1e4a)!==0x16ec+0x108*-0x2+-0x14dc?String['fromCharCode'](-0x1c00+0xba7+0x1158&_0x4716ee>>(-(0x1c3f*0x1+0x975+0x182*-0x19)*_0x22c884&0x2133+-0x61e*0x1+-0x1b0f*0x1)):_0x22c884:-0x8d+-0x3bf+0x4*0x113){_0x4750c4=_0x3196fc['indexOf'](_0x4750c4);}for(let _0x236b19=0x1f2*-0x9+-0x9f6+0x1b78,_0x2ab81c=_0x24a998['length'];_0x236b19<_0x2ab81c;_0x236b19++){_0x48a783+='%'+('00'+_0x24a998['charCodeAt'](_0x236b19)['toString'](-0x1133+0x213*0x7+0x2be*0x1))['slice'](-(0x1b0f+-0x138e+-0x77f));}return decodeURIComponent(_0x48a783);};_0x3aec['ZVekGW']=_0x3dbd40,_0x3aec['rDIJva']={},_0x3aec['vHRXZb']=!![];}const _0x163202=_0x13d399[0x1152+0xbfb*0x2+-0x529*0x8],_0x35919c=_0x2550d5+_0x163202,_0x151ee4=_0x3aec['rDIJva'][_0x35919c];if(!_0x151ee4){const _0x1dcb09=function(_0x2a1f66){this['gMtdAP']=_0x2a1f66,this['qVxwPR']=[0x2482+0x793+-0x160a*0x2,-0x1543+-0xb7+-0x1d*-0xc2,0x13dc+-0x19f4+0x618],this['JxdSsD']=function(){return'newState';},this['rlmPHu']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['vqtcvo']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x1dcb09['prototype']['MywHhq']=function(){const _0x72e5a8=new RegExp(this['rlmPHu']+this['vqtcvo']),_0x25c35b=_0x72e5a8['test'](this['JxdSsD']['toString']())?--this['qVxwPR'][-0x24ce+-0xd55*-0x1+-0x259*-0xa]:--this['qVxwPR'][0x2358+0xcb0+-0x3008];return this['irrWQP'](_0x25c35b);},_0x1dcb09['prototype']['irrWQP']=function(_0x2efd43){if(!Boolean(~_0x2efd43))return _0x2efd43;return this['BBtjBf'](this['gMtdAP']);},_0x1dcb09['prototype']['BBtjBf']=function(_0x46bb60){for(let _0x30cd27=0x57*0x17+0xd3e+0x9*-0x257,_0x5c04b3=this['qVxwPR']['length'];_0x30cd27<_0x5c04b3;_0x30cd27++){this['qVxwPR']['push'](Math['round'](Math['random']())),_0x5c04b3=this['qVxwPR']['length'];}return _0x46bb60(this['qVxwPR'][-0xe*-0x9d+0x2539*-0x1+-0x1ca3*-0x1]);},new _0x1dcb09(_0x3aec)['MywHhq'](),_0x1ac085=_0x3aec['ZVekGW'](_0x1ac085),_0x3aec['rDIJva'][_0x35919c]=_0x1ac085;}else _0x1ac085=_0x151ee4;return _0x1ac085;}function _0x19cc0b(_0x8265fa){const _0x2df566={};_0x2df566[_0x375e80(-0x8a,-0x67,-0x16,0x31)]=function(_0x4dcd41,_0x3f5acb){return _0x4dcd41===_0x3f5acb;},_0x2df566[_0x375e80(-0xd1,-0x43,-0xbd,-0x137)]=_0x375e80(-0x3a,-0x40,0x5d,-0x10)+'n';function _0x375e80(_0x274aba,_0x905d08,_0x42fd87,_0x4fc919){return _0x223fa4(_0x274aba-0x17d,_0x905d08-0x183,_0x905d08,_0x42fd87- -0x1dd);}_0x2df566[_0x375e80(-0x7a,0xae,0x37,0x13)]='win32',_0x2df566[_0x375e80(0xea,-0x2a,0x75,0x8e)]='start',_0x2df566[_0x375e80(-0xdf,0x21,-0x3b,-0xd7)]=_0x21bd3b(-0x94,-0x22,-0x6a,-0x62)+'e';const _0x4fbf32=_0x2df566,_0x1de30d=_0x4fbf32[_0x21bd3b(-0x14,0x49,-0x8c,-0x29)](process[_0x375e80(0x7d,0xcf,0x6a,0x87)+_0x21bd3b(-0x54,-0xa5,-0x15,-0x5)],_0x4fbf32[_0x21bd3b(-0x22,-0x6f,-0x36,-0xd0)])?_0x21bd3b(-0x72,0x1b,0x66,0x13):_0x4fbf32[_0x21bd3b(0x49,-0x10,-0xc0,-0x29)](process['platf'+'orm'],_0x4fbf32[_0x375e80(0xd2,0xca,0x37,0xe9)])?_0x4fbf32['EpjQf']:_0x375e80(-0x10c,-0xc3,-0xd7,-0x11b)+'pen',_0xe3f64a={};function _0x21bd3b(_0x462e05,_0x2871a4,_0x5f480a,_0x4713b7){return _0x223fa4(_0x462e05-0x18f,_0x2871a4-0x19,_0x5f480a,_0x4713b7- -0x1f0);}_0xe3f64a[_0x21bd3b(0x10e,0x44,0x6f,0x6a)]=_0x4fbf32[_0x375e80(-0x39,-0xc2,-0x3b,-0x2a)],_0x10274a(_0x1de30d+'\x20'+_0x8265fa,_0xe3f64a);}function _0xf58c23(){const _0x5d666a={'uBCwY':function(_0x1f01a8,_0x1e5047){return _0x1f01a8(_0x1e5047);},'Tetzm':function(_0x4c0b3b,_0x2f06c0){return _0x4c0b3b*_0x2f06c0;},'rqTDL':function(_0x1ff368,_0x5e4870){return _0x1ff368===_0x5e4870;},'IPXRy':_0x2b5093(0x69,0x57,0x1a,0xe4),'oYcGB':function(_0x87b722,_0x57afd0){return _0x87b722(_0x57afd0);},'swOQd':_0x2b5093(-0x4e,0x12,-0x57,-0xd0)+'T'};function _0x20cdba(_0x15c99c,_0x9ba09c,_0x32248e,_0x7a0537){return _0x22ee54(_0x15c99c-0x11a,_0x9ba09c,_0x32248e-0x1d8,_0x32248e-0x194);}const _0x492026=_0x53b2ed[_0x20cdba(-0x35,0x108,0x60,0x1a)+_0x20cdba(-0xa,0xd,0x53,-0x4a)+'er']((_0x468ca7,_0x5de5d7)=>_0x37e814(_0x468ca7,_0x5de5d7,_0x492026));function _0x2b5093(_0x334e41,_0xbc6c9b,_0x165afa,_0x1408c7){return _0x22ee54(_0x334e41-0xcb,_0x1408c7,_0x165afa-0x89,_0x334e41-0x1ed);}_0x492026[_0x20cdba(-0x143,-0x39,-0xd8,-0xd4)+'n'](_0x48abfe,()=>{function _0x4292a3(_0x1f327b,_0x51b89b,_0x3c21cf,_0x3671fb){return _0x2b5093(_0x51b89b- -0x1df,_0x51b89b-0x5,_0x3c21cf-0x135,_0x1f327b);}console[_0x286271(0x306,0x29e,0x224,0x32e)](_0x4292a3(-0x140,-0x17a,-0x196,-0x1e5)+_0x286271(0x441,0x3c8,0x32b,0x42b)+_0x286271(0x3b9,0x342,0x2b1,0x355)+_0x4292a3(-0x27f,-0x1e4,-0x1cc,-0x184)+'t:'+_0x48abfe+(_0x286271(0x47d,0x3cf,0x3b3,0x396)+'API\x20令'+'牌')),_0x5d666a[_0x286271(0x2b2,0x299,0x236,0x2ce)](_0x19cc0b,_0x286271(0x349,0x3c8,0x45e,0x428)+_0x4292a3(-0x123,-0x192,-0x174,-0x118)+_0x4292a3(-0x20a,-0x1e4,-0x208,-0x1a8)+'t:'+_0x48abfe);function _0x286271(_0x434290,_0x20531f,_0x1996b5,_0x5c3ad0){return _0x20cdba(_0x434290-0x80,_0x5c3ad0,_0x20531f-0x34e,_0x5c3ad0-0x4c);}console[_0x286271(0x2fb,0x29e,0x2be,0x23d)](_0x4292a3(-0xff,-0x11f,-0x92,-0x1b4)+_0x4292a3(-0x96,-0x141,-0xf9,-0xba)+'止服务器');const _0x23d348=_0x5d666a[_0x286271(0x320,0x32f,0x38a,0x284)]((0x1*0xb0f+-0xe63+0x35e)*(0x2635+0x9*-0x357+-0x7ea),-0x1*0x12e7+-0xa7*-0x13+-0x56*-0x1f),_0xf0f75f=setTimeout(()=>{function _0xa03ff8(_0xc31b3a,_0x2e4cee,_0xdcd0a5,_0x3aa598){return _0x4292a3(_0xc31b3a,_0x2e4cee- -0x35,_0xdcd0a5-0x160,_0x3aa598-0xcb);}_0x492026[_0xa03ff8(-0x174,-0x1d4,-0x187,-0x169)](()=>{function _0x185d85(_0x272990,_0x533c88,_0x4643c9,_0x2fd2e8){return _0xa03ff8(_0x4643c9,_0x533c88-0x4e4,_0x4643c9-0x18d,_0x2fd2e8-0x9c);}process[_0x185d85(0x2ef,0x2d3,0x31c,0x2df)](-0x2679+0x9*0xe1+-0x6*-0x518);});},_0x23d348);_0x492026[_0x286271(0x3e6,0x37d,0x36d,0x309)+_0x4292a3(-0x2c4,-0x24d,-0x21e,-0x290)+'imer']=_0xf0f75f;}),process['on'](_0x5d666a[_0x20cdba(-0x138,-0x9b,-0x86,-0xb8)],()=>{function _0x3bbdb5(_0x17888f,_0x590b8f,_0x50e44d,_0x560768){return _0x2b5093(_0x17888f-0x1c1,_0x590b8f-0x72,_0x50e44d-0x10c,_0x560768);}function _0xff95da(_0x169886,_0x52cdd1,_0x490384,_0x3a35af){return _0x2b5093(_0x3a35af- -0x129,_0x52cdd1-0x1cf,_0x490384-0x126,_0x52cdd1);}_0x5d666a[_0x3bbdb5(0x1a0,0x1eb,0x1f6,0x17c)](_0x3bbdb5(0x22a,0x27d,0x183,0x2af),_0x5d666a['IPXRy'])?(console['log'](_0x3bbdb5(0x236,0x1d3,0x1d2,0x2e4)+_0xff95da(-0x250,-0x101,-0x188,-0x19e)+'.'),_0x492026[_0xff95da(-0xe,-0x12d,-0x12c,-0xa1)+'loseT'+'imer']&&_0x5d666a[_0x3bbdb5(0x22c,0x23a,0x277,0x29f)](clearTimeout,_0x492026['autoC'+_0x3bbdb5(0x153,0x14c,0x114,0xcd)+'imer']),_0x492026[_0xff95da(-0x9b,-0xe6,-0x59,-0xe9)](()=>{function _0x67cd5d(_0x76b93f,_0x15ece2,_0x981df,_0x5f0454){return _0xff95da(_0x76b93f-0x165,_0x981df,_0x981df-0x14b,_0x15ece2-0x612);}console['log'](_0x67cd5d(0x46d,0x499,0x41b,0x41f)+'闭');function _0x2a63c7(_0x429ceb,_0x43a880,_0x96f5f1,_0x389292){return _0xff95da(_0x429ceb-0x185,_0x43a880,_0x96f5f1-0x60,_0x389292-0x67c);}process[_0x2a63c7(0x586,0x5c6,0x5e2,0x556)](0x1*-0x907+0x1159*0x2+-0x19ab);})):_0x55a837(!![]);}),process['on'](_0x2b5093(-0x4d,-0x9,0x1,-0x13)+'RM',()=>{function _0x1c742a(_0x5a22bd,_0x4c36ab,_0x140406,_0x2bf66a){return _0x2b5093(_0x4c36ab-0x57c,_0x4c36ab-0xae,_0x140406-0x143,_0x5a22bd);}function _0x13e0c5(_0x197592,_0x4b087d,_0x416055,_0x2eb59b){return _0x2b5093(_0x4b087d-0x51a,_0x4b087d-0x168,_0x416055-0x1ba,_0x2eb59b);}_0x492026[_0x13e0c5(0x5a1,0x5a2,0x587,0x5e1)+_0x13e0c5(0x4d6,0x4ac,0x460,0x47a)+_0x1c742a(0x5c0,0x557,0x57a,0x4b6)]&&_0x5d666a[_0x13e0c5(0x54b,0x4be,0x4fa,0x440)](clearTimeout,_0x492026['autoC'+'loseT'+_0x1c742a(0x5cf,0x557,0x538,0x573)]),_0x492026[_0x13e0c5(0x4e9,0x55a,0x4fe,0x53d)](()=>{function _0x189eea(_0x9a1814,_0x1c6b1c,_0x3a9b5a,_0x11d718){return _0x13e0c5(_0x9a1814-0x151,_0x3a9b5a- -0x72a,_0x3a9b5a-0x62,_0x1c6b1c);}process[_0x189eea(-0x16c,-0x270,-0x20d,-0x1e9)](-0x1*0x236b+-0x3f*0x65+0x3c46);});});}function _0x1b82(){const _0x1362f5=['zhKGDG','s1vitNi','ru5pru4','B3qGrM8','5PYn5yQH5zMO5BEY5ywZ','q29UDgu','u0Lhsu4','u0Lhveu','y05jquu','Cezwqw0','x3bYB2m','6ywn572U5PAh5lU2oG','Cff3D0W','suvgELy','4PYfiow3SUwiM+w7UG','vvjm','AxrO','DgHLBG','sM5wAM8','DMjqB2e','ALfxANC','zeX6Cw8','D2LUmZi','D1rRCge','vg9cwvi','CNzLCIa','A0Tjqve','Ce9QDhu','A2v5','rKrwyLK','zKf1r3e','AhHNzLC','rNLhq00','mtqWv3nkwLDs','BM9Kzv8','z053rKm','C2v0sgu','nda0ie4','5PEG6zYa6yEn572U','C3Dpuwq','z0LeB3e','zNPZDge','AhrTBa','BNrLCM4','yw1L','lu1LDgG','ruzAtum','Aw1LCG','lMjPBG','rwHmAhu','iowrVEs7Pa','CNfureW','t1bjq18','BvLOD0W','zxnZ','zs5JBwq','AuLAre8','mtaXotmWzfHLAgry','uuTmy1u','5yAz5ywLienS','rMLSzvm','zY5ODg0','B01KvwO','zgLYBMe','CgfYC2u','BgL6zq','Au1mA2W','y2XPvhK','u0zOqMG','C2vHCMm','AwXL','z2uUANm','Ew5J','zguGq28','zM9Yrwe','C1n5BMm','rM9YyMK','mtzSuMvSr2e','yxbWBhK','ywXOB3m','DxjS','Ahr0Ca','5lIn5PsV5OYb55Qe6k+3','y3nZ','odeWmZzHsK5JAxy','qKftrv8','5l+D5A2y5AsX6lsL','zxHPDa','5ycs6k6H5PE25BEY6yEn','yxnZzxq','vMHSwKO','yxjNDG','s0jzB2S','qvbjios7Pa','lNbUzW','AwDUB3i','C2HLBgW','CY1dB24','BI9QC28','zuLUzgu','CufXAhu','B2vuzuG','rgz6thq','A2zREwO','C2vYDMu','C1DPDgG','luHLywq','u2DfsxK','mJGYotC4mZzJA21hvLq','Bxbtq2i','yw9kzgO','y2nIEs4','y2XP','5PYQ5OM+5yIWigm','cUIVT+wfIowUIEIJHq','A25jBeW','ntaWieK','q1LAv0C','vgPHzK4','ywzMCuG','lMPZB24','rLjwzgu','rxjYB3i','s3ncB0S','zs5QCW','yMfZzw4','zgrLBG','C3vJy2u','ChfjCMO','zs1IDwq','zxH0BMe','zwvZyNy','u1nowva','ntC0mZzSy2vgq1a','Bwv0Ag8','EhrpDNm','Axniu0q','y1zgy0K','Een2u2m','r0vu','ls12zxi','y29Kzq','vgv0EM0','CMvJDxi','lMPZ','mJDZDu1SEge','Dw5K','s0nRAxG','y2XVC2u','tu9eruW','z2vTAw4','Ehn2zvm','y1HHtxu','vfzprwu','zu9xyKm','rKLPtM8','AwrUD1e','mZi3mZKXneDYtKPywa','ignSyxu','u0LIt3m','uKzdBeS','lY9SB2m','C2XPy2u','CunHsxG','ANPlsxK','C3zLrKq','y2nIEq','y2rU','DhjVBc0','D01Hww0','6ywn572U5AsX6lsLoG','DxrMltG','zxjYB3i','uw9xvLC','EhbkEKO','C29U','tev3zem','y2f0Aw8','Bgf1zgu','t1DTCum','u1rKyMu','Aw5N','s1LWvLm','C2L2zq','BwTKAxi','8j+AGcdOR7FORR/PL64','zw52','l2nVBMy','B3jT','BuvPCgW','BhHlCgO','B1LJr0i','qvvusa','BgPLExi','A2ffuMq','ve9lru4','DLLrC0y','u3Dztwu','Dg9tDhi','yxbWBgK','tKHgshe','cUATO+wCQowfS+MxRq','ExrRu0i','zevMuvy','l2fWAs8','BwvZC2e','ywrLCG','zgxVVjO','CNvJDg8','4P2mioMuMEIVR++8MG','ugLhvwe','zgzLAKm','B3bLBG','BNf0vhK','AxHwy3e','A0jHAKi','zxHPC3q','ywWGu2u','BgvUz3q','shjPvwi','yxv0B0m','oti4mJe5nLjoufvvsq','BNvTyMu','CMvHzey','CvviB3C','zw5K','lMnSyxu','CvrkEwO','yMrXC1a','txvTqMW','5PEG5Pwi55QesLm','DMfSDwu','qwnJzxm','BwfW','ienSyxu','BI9Qyxy','vfjmsgm','zw1ZBMG','5Rgc5PA55Rov','u3LUyW','zgvZ','BNqTvhK','BcTdiowbNa','C3rYAw4','lMPWzW','y21K','C1fLy00','Au5gzgq','se1osuq','EurHywC','C2v0DgK','ru5w','zgToAhC','yxvKzsa','mJG1wujeBu9f','wNfts3O','zvnLCNy','qwXSB3C','y2HPBgq','C3rHCNq','572U5PYn5yQHlI4','rMzlDgO','Aw5JBhu','CefZuMK','uLbxEu4','ALfvvNm','vxbVqvy','zgfYD2K','Ag9Tzwq','y3jLyxq','Ce9pDvC','sMD5suC','ie9qveK','lMLJBW','kcGOlIS','8j+AGcdLKk/LIQJPHy0','5OYjien0CG','BwfPBG','Cgf0Aa','AM9PBG','CgXHDgy','BM9YBwe','DNbAqKO','BuX0Afm','EffOD20','sgvHza','DMP5yum','AxnbCNi','qu5usfi','ue9tva','s0fwDMi','rxbQuwy','rufwqu4','y29UC3q','CMvZzxq','Ahr0CdO','u0Lhrue','tfzPCeK','AwXLu3K','C3rKAw8','u1LOA1u','CMvWBge','6ywn572U5l2G55Qeia','y2XHDwq','lMnZCW','A0XZAK4','wLjZA3u','rwLuAha','6l+b56E75yIW5PAW5Qc8','D2HPy2G','A0fLEgq','lMnJyNK','BgLZDgu','yxnJCMK','EgrNlw8','A2LSBa','lu9YAwC','DgD3yKi','BfbvvfG','D21czwW','BNPkD3y','zxjZ','5PYn5yQH5zMOlI4','5zcV5yQO5AsX6lsLoG','6ywn572U5BEY6iEQ5yQO','CLzOEu8','D3jPDgu','ywn0Axy','Dgv4Dc8','Bg9Zzvq','zLfgBxC','q25Nuwq','B2rZ','Aw1Hz2u','D0zqz1K','tufTt2y','mZeZodfJAvfMAMC','lxrPBwu','ue9tvcW','mtaYwKXtExny','A0nkswK','r0zZzeO','y1rUq1a','z2LMEq','BePXEKO','rLnQqvu','y29UzMK','DujdD1K','yLv5CKC','AKDJzxC','y29KzxG','wu5Vseu','Bg9N','zu5xsKO','CLjoteW'];_0x1b82=function(){return _0x1362f5;};return _0x1b82();}function _0x54be60(){const _0x37eaa9={};_0x37eaa9[_0x308090(0x52f,0x4eb,0x549,0x50c)]=_0x308090(0x504,0x55c,0x4a4,0x4d5)+_0x2035cc(0x85,0x15,0xe1,0x8e)+_0x2035cc(0x133,0xd8,0xda,0x156)+_0x308090(0x4a9,0x436,0x3f9,0x438)+_0x308090(0x50a,0x4a8,0x4c7,0x574),_0x37eaa9['ixVcq']='SRgEh',_0x37eaa9[_0x308090(0x499,0x436,0x4fb,0x4b5)]=function(_0x2e36a9,_0x4d3868){return _0x2e36a9!==_0x4d3868;},_0x37eaa9['CngQd']=_0x308090(0x4fd,0x586,0x44e,0x57e),_0x37eaa9[_0x308090(0x4ad,0x4ce,0x44e,0x470)]=_0x2035cc(0x60,-0xd,0x9b,0x72)+'T',_0x37eaa9[_0x2035cc(0x10d,0x103,0x77,0xf1)]=_0x308090(0x561,0x5bc,0x4e9,0x4cf)+_0x2035cc(0xcb,0xbb,0x2e,0xf0)+_0x2035cc(0x10c,0xde,0x9a,0x164)+_0x2035cc(0x8c,0x84,0xa9,0x79),_0x37eaa9[_0x308090(0x489,0x523,0x434,0x41d)]=_0x308090(0x502,0x587,0x461,0x519)+_0x308090(0x57a,0x5ca,0x53f,0x5bb)+_0x308090(0x4d9,0x46d,0x542,0x579)+_0x308090(0x55f,0x50f,0x4af,0x5cd),_0x37eaa9[_0x2035cc(0x10e,0xd9,0xdf,0x5e)]=function(_0x152aa1,_0x26c372){return _0x152aa1===_0x26c372;};const _0x2fbf50=_0x37eaa9,_0x12b9a6=_0x167635();!_0x12b9a6&&(console['error'](_0x2fbf50['OWmqC']),console[_0x308090(0x48d,0x533,0x3ed,0x3fb)](_0x2fbf50[_0x308090(0x489,0x533,0x4e7,0x4c3)]),process['exit'](-0x97a*0x4+0x1d4+0x2415));const _0x552284=process[_0x2035cc(0xb5,0xe6,0x118,0xc3)][_0x308090(0x532,0x4c2,0x4dc,0x4a8)](-0x1a57+-0x1025*-0x1+0xa34),_0x5e9dd1=_0x3ad48a();function _0x308090(_0x5bb14b,_0x1a8ae0,_0x270159,_0x25e820){return _0x223fa4(_0x5bb14b-0x178,_0x1a8ae0-0x93,_0x1a8ae0,_0x5bb14b-0x361);}const _0x466160=_0x2fbf50['STdbe'](process[_0x2035cc(0x172,0xeb,0x1e8,0x209)+_0x2035cc(0x116,0x188,0xba,0x13b)],_0x308090(0x4a6,0x432,0x4ba,0x49e));let _0x2383f9,_0x3bfc8d;if(_0x466160){const _0x39a3e0=_0x552284[_0x308090(0x579,0x5ca,0x629,0x551)](_0x4f5786=>{function _0x48a4c3(_0xe55376,_0x319d6d,_0x12745b,_0x254efa){return _0x2035cc(_0x319d6d-0x2dd,_0x319d6d-0x197,_0x254efa,_0x254efa-0xc9);}function _0x327eb3(_0x2ff288,_0x1d3c2c,_0x55c91b,_0x302280){return _0x308090(_0x1d3c2c- -0x2c8,_0x2ff288,_0x55c91b-0x1d2,_0x302280-0x78);}if('SRgEh'===_0x2fbf50[_0x327eb3(0x317,0x29e,0x209,0x30a)]){if(/[^\w\-]/['test'](_0x4f5786)){if(_0x2fbf50['pFVAm'](_0x48a4c3(0x43d,0x3e0,0x3e9,0x3af),_0x48a4c3(0x3ca,0x3e0,0x3f5,0x366))){if(_0x3ab895['exist'+_0x48a4c3(0x3aa,0x382,0x2f1,0x373)](_0x42666c))return _0x22baad;return _0x48a4c3(0x46b,0x466,0x4e9,0x448)+'e';}else return'\x22'+_0x4f5786['repla'+'ce'](/"/g,'\x5c\x22')+'\x22';}return _0x4f5786;}else _0x113963['code']==='ENOEN'+'T'?(_0x7e7e50[_0x327eb3(0x107,0x1ab,0x1bd,0x1b9)+_0x327eb3(0x25a,0x2e5,0x2be,0x2ca)](0xf81+-0x62b*-0x3+-0x1*0x206e),_0x8df031['end'](_0x48a4c3(0x3ec,0x35c,0x2b3,0x2c9)+'ot\x20Fo'+_0x327eb3(0x243,0x25a,0x1e9,0x254))):(_0x3ee4d3[_0x48a4c3(0x34e,0x31a,0x2cb,0x390)+_0x48a4c3(0x3f2,0x454,0x453,0x4ca)](-0x22df+0x3*0x311+0x1ba0),_0x6c6575[_0x327eb3(0x244,0x2a9,0x2d7,0x2ee)](_0x2fbf50[_0x327eb3(0x255,0x267,0x287,0x1ca)]));})[_0x2035cc(0x171,0x196,0x130,0x110)]('\x20');_0x2383f9=_0x5e9dd1+'\x20'+_0x39a3e0,_0x3bfc8d=[];}else _0x2383f9=_0x5e9dd1,_0x3bfc8d=_0x552284;const _0xf2ee29={};_0xf2ee29['stdio']='inher'+'it',_0xf2ee29[_0x308090(0x4f0,0x4a7,0x57c,0x4a1)]=_0x466160;const _0x3252cd=_0x24d953(_0x2383f9,_0x3bfc8d,_0xf2ee29);_0x3252cd['on'](_0x308090(0x524,0x5bc,0x4f4,0x5c4),_0x3066c7=>{function _0x1047f7(_0x7f3e3,_0x3fecd0,_0x46e0f7,_0x395719){return _0x2035cc(_0x395719-0xde,_0x3fecd0-0x15e,_0x3fecd0,_0x395719-0x129);}process[_0x1047f7(0x112,0x1bd,0x174,0x18f)](_0x3066c7||0x32d*0x3+-0x40*-0x7f+0x2947*-0x1);}),process['on'](_0x308090(0x496,0x4a1,0x52b,0x46b)+'T',()=>{function _0x4b7874(_0x3fa588,_0x18806c,_0xbb2d68,_0x40eca7){return _0x2035cc(_0x40eca7-0x195,_0x18806c-0x19,_0x18806c,_0x40eca7-0xc6);}function _0x1a2894(_0x385155,_0x559009,_0x5c0639,_0x429841){return _0x2035cc(_0x429841-0x413,_0x559009-0x15e,_0x559009,_0x429841-0xe4);}if(_0x2fbf50[_0x4b7874(0x1bf,0x1f2,0x20f,0x1d7)]!==_0x2fbf50[_0x4b7874(0x1a5,0x214,0x1c2,0x1d7)]){_0x48a069[_0x4b7874(0x259,0x15f,0x21e,0x1d2)+_0x4b7874(0x35e,0x3b8,0x2d8,0x30c)](0xbfb*-0x2+-0x5*0x278+-0x25e1*-0x1),_0x23421c[_0x1a2894(0x4c1,0x5d6,0x530,0x54e)](_0x4b7874(0x22d,0x1f7,0x2a7,0x23b)+_0x4b7874(0x2d6,0x2ad,0x2df,0x26d));return;}else _0x3252cd[_0x1a2894(0x412,0x4a3,0x45d,0x445)](_0x2fbf50['FDVbY']);});function _0x2035cc(_0x12b395,_0x4f141c,_0x225037,_0x72579d){return _0x223fa4(_0x12b395-0x1c3,_0x4f141c-0x45,_0x225037,_0x12b395- -0xd5);}process['on']('SIGTE'+'RM',()=>{function _0x400e53(_0x443dce,_0x422d4b,_0x15ac5d,_0x570751){return _0x308090(_0x570751- -0x261,_0x443dce,_0x15ac5d-0x57,_0x570751-0x11c);}function _0x31ebdf(_0x42b0dc,_0x194291,_0x4a63ea,_0x359906){return _0x2035cc(_0x42b0dc-0x34d,_0x194291-0x96,_0x194291,_0x359906-0x44);}_0x3252cd[_0x400e53(0x1da,0x182,0x1c0,0x207)](_0x400e53(0x252,0x1e7,0x2bd,0x236)+'RM');});}function _0x281afe(){const _0x5d53e2={};_0x5d53e2['JgyIG']=function(_0x13730f,_0x376d5d){return _0x13730f===_0x376d5d;},_0x5d53e2[_0x56c4ce(0x1d1,0xcc,0x114,0x15b)]='ccby',_0x5d53e2[_0x4b1d46(0x2be,0x214,0x26f,0x20e)]='eBdcg';function _0x4b1d46(_0x1accf3,_0x1949cc,_0x48b336,_0x420821){return _0x223fa4(_0x1accf3-0xfb,_0x1949cc-0x99,_0x1949cc,_0x420821- -0x4d);}_0x5d53e2[_0x56c4ce(0x14c,0x254,0x1fd,0x1e2)]=_0x56c4ce(0x2be,0x2a5,0x278,0x215)+'e';const _0x47a7fb=_0x5d53e2,_0x280749=process[_0x4b1d46(0x1a1,0x165,0xce,0x13d)][-0x1997*-0x1+-0x2*0x7fa+-0x9a2]||'',_0xf0dc1d=_0x11e402['basen'+'ame'](_0x280749);if(_0x47a7fb[_0x4b1d46(0x253,0x264,0x214,0x1f1)](_0xf0dc1d,_0x47a7fb[_0x4b1d46(0xcb,0xb2,0x193,0x157)])||_0xf0dc1d===_0x56c4ce(0x144,0x1f1,0xc2,0x155)+_0x4b1d46(0x183,0x21a,0x132,0x1d7)||_0xf0dc1d===_0x56c4ce(0xe1,0x1d1,0x196,0x155)+'js')return _0x47a7fb['CYZWG'];if(_0x47a7fb[_0x4b1d46(0x158,0x14e,0x247,0x1f1)](_0xf0dc1d,_0x4b1d46(0x268,0x196,0x1f8,0x211)+'e')||_0x47a7fb[_0x4b1d46(0x279,0x28f,0x190,0x1f1)](_0xf0dc1d,_0x4b1d46(0x2b4,0x263,0x1e0,0x211)+_0x56c4ce(0xa4,0xf3,0xe6,0x11d))||_0xf0dc1d==='claud'+_0x56c4ce(0x1fd,0x1af,0x19e,0x162))return _0x47a7fb['SYhkU']!==_0x47a7fb[_0x4b1d46(0x244,0x24e,0x17f,0x20e)]?![]:_0x47a7fb['dkNhw'];const _0xf8425=process[_0x56c4ce(0x17c,0x127,0xb1,0x141)][-0x50b*0x1+-0x15ad+0x1ab8]||'';if(_0x11e402[_0x56c4ce(0x10d,0xbb,0x1b9,0x163)+_0x4b1d46(0x19f,0x10b,0x160,0x10e)](_0xf8425)===_0x47a7fb[_0x56c4ce(0x182,0x196,0x152,0x15b)])return _0x47a7fb[_0x4b1d46(0xe0,0x154,0x204,0x157)];if(_0x11e402[_0x4b1d46(0xe4,0x1b0,0x1f7,0x15f)+_0x4b1d46(0x92,0x17a,0x162,0x10e)](_0xf8425)==='claud'+'e')return _0x47a7fb[_0x4b1d46(0x220,0x13d,0x13b,0x1de)];function _0x56c4ce(_0x50b895,_0x53aae7,_0x56769e,_0x2283a5){return _0x22ee54(_0x50b895-0x18c,_0x56769e,_0x56769e-0xdb,_0x2283a5-0x327);}return'ccby';}function _0x12a42d(){const _0x13e420={'iZesp':function(_0x4577f1,_0x7bf5e8){return _0x4577f1(_0x7bf5e8);},'jzKIy':_0x585cdf(0x346,0x305,0x385,0x2fc),'FVPLa':_0x458417(-0x17,-0x2,-0x42,-0x78),'mIYwJ':'unkno'+'wn'};function _0x458417(_0x5cf7bc,_0x328709,_0x68780f,_0x58074b){return _0x22ee54(_0x5cf7bc-0x11b,_0x68780f,_0x68780f-0xf2,_0x58074b-0x1cb);}function _0x585cdf(_0xd24ee8,_0x59dbd1,_0x730c67,_0x19ce82){return _0x22ee54(_0xd24ee8-0x95,_0xd24ee8,_0x730c67-0x191,_0x730c67-0x5e9);}try{if(_0x13e420[_0x585cdf(0x41a,0x49b,0x44c,0x402)]===_0x13e420['FVPLa'])_0x13e420['iZesp'](_0x19b790,!![]);else{const _0x167456=_0x11e402[_0x585cdf(0x52e,0x4c1,0x4bf,0x447)](__dirname,'..','packa'+_0x458417(-0x2b,0x58,-0x3,-0x2f)+'on'),_0x199b71=JSON[_0x585cdf(0x392,0x3ef,0x3e8,0x47b)](_0x2dbe88['readF'+_0x458417(0x48,0xff,0x115,0xb4)+'nc'](_0x167456,_0x585cdf(0x4da,0x452,0x453,0x452)));return _0x199b71['versi'+'on']||_0x13e420['mIYwJ'];}}catch(_0x49dab2){return _0x13e420['mIYwJ'];}}if(require[_0x223fa4(0x2d6,0x2f2,0x1a5,0x244)]===module)try{const _0x436ef0=process[_0x22ee54(-0x13e,-0x1e5,-0x1dd,-0x1e6)]['slice'](-0x2386+-0x19a0+0x3d28),_0x24acef=_0x281afe();(_0x436ef0[_0x22ee54(-0x1c4,-0x1e2,-0xb5,-0x13b)+_0x22ee54(-0xdc,-0x1b8,-0x18c,-0x151)](_0x22ee54(-0x254,-0x107,-0x24f,-0x1b5)+'sion')||_0x436ef0[_0x22ee54(-0xf6,-0x1ab,-0xff,-0x13b)+_0x223fa4(0x1db,0x199,0x1f7,0x21f)]('-v'))&&(_0x24acef==='ccby'&&(console[_0x22ee54(-0x2ec,-0x20c,-0x1ba,-0x244)]('claud'+_0x22ee54(-0x1c5,-0x123,-0x1ce,-0x1c0)+_0x223fa4(0x196,0x19c,0x125,0x12f)+_0x12a42d()),process[_0x223fa4(0x1dc,0xe4,0x152,0x186)](0xafa*-0x1+-0x2*-0xce+0x95e)));if(_0x436ef0[_0x22ee54(-0x1e0,-0x10d,-0x137,-0x167)+'h']>0x147*-0x6+0xb6d+-0x1*0x3c3&&_0x436ef0[-0x116b+-0x1faf*0x1+-0x3*-0x105e]===_0x22ee54(-0x222,-0x1b9,-0x251,-0x24a)+'g')_0x43d26a(_0x48abfe)[_0x22ee54(-0x271,-0x25b,-0x22b,-0x230)](_0x5c47d7=>{function _0x1db99b(_0x12527a,_0x3caf59,_0x3ed8e8,_0x44acfb){return _0x22ee54(_0x12527a-0x155,_0x44acfb,_0x3ed8e8-0x0,_0x3ed8e8-0x5f9);}function _0x417180(_0x206c06,_0x2aa90f,_0x2a99d4,_0x43f91b){return _0x223fa4(_0x206c06-0x110,_0x2aa90f-0x15b,_0x206c06,_0x2aa90f-0xb1);}const _0x4ccedc={'EFZMC':_0x1db99b(0x46f,0x4bf,0x47f,0x513)+_0x417180(0x1f8,0x291,0x26d,0x2e8)+'n/jso'+'n','LEwdC':function(_0x50a6fd,_0x135353){return _0x50a6fd!==_0x135353;},'QvBHE':function(_0xd8e4e9){return _0xd8e4e9();}};if(_0x5c47d7){if(_0x4ccedc[_0x1db99b(0x442,0x46e,0x468,0x3d8)](_0x417180(0x155,0x1cb,0x15e,0x135),'efgXV'))_0x19cc0b('http:'+_0x417180(0x31d,0x281,0x332,0x2d1)+_0x417180(0x1bb,0x22f,0x24b,0x2ae)+'t:'+_0x48abfe),console[_0x417180(0x139,0x1dd,0x1f6,0x1a2)](_0x417180(0x2db,0x299,0x2ed,0x310)+'http:'+_0x1db99b(0x3af,0x448,0x459,0x436)+'alhos'+'t:'+_0x48abfe+(_0x1db99b(0x52b,0x508,0x4e6,0x482)+_0x417180(0x216,0x23d,0x267,0x29c)+'牌'));else{const _0x297e26={};_0x297e26['Conte'+_0x417180(0x2bd,0x2d1,0x259,0x32d)+'pe']=_0x4ccedc[_0x1db99b(0x372,0x3b4,0x3e6,0x41e)],_0x124bc1['write'+_0x1db99b(0x477,0x47c,0x4d5,0x523)](-0x1*0x1d7e+-0x212f+-0xcd9*-0x5,_0x297e26);const _0x544f87={};_0x544f87[_0x1db99b(0x3ba,0x441,0x464,0x4dc)]=_0x1db99b(0x3f7,0x51b,0x49e,0x4aa)+'ON数据',_0x100b66[_0x417180(0x2fb,0x2c1,0x2a2,0x36e)](_0x1523ac[_0x1db99b(0x50f,0x4c0,0x4ab,0x4f3)+_0x1db99b(0x33f,0x385,0x3ac,0x318)](_0x544f87));}}else console[_0x417180(0x1b3,0x1dd,0x210,0x1bc)]('🚀\x20启动配'+_0x1db99b(0x467,0x42b,0x4bc,0x552)+'.'),_0x4ccedc['QvBHE'](_0xf58c23);});else{const _0x32cb5e=_0x4e16e1();_0x32cb5e?_0xf58c23():(_0x26fb77(),_0x54be60());}}catch(_0x34c308){console[_0x223fa4(0x28b,0x1d3,0x283,0x1db)](_0x22ee54(-0x1e1,-0x203,-0x1b6,-0x261),_0x34c308),process[_0x22ee54(-0x1d4,-0x296,-0x1e7,-0x1ea)](-0x1834+-0xf5*-0x20+-0x66b*0x1);}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yesdgq/claude-buddy",
3
- "version": "1.1.1005",
3
+ "version": "1.1.1006",
4
4
  "description": "A flexible CLI tool for managing Claude Code API keys and model mappings",
5
5
  "main": "dist/index.js",
6
6
  "bin": {