@yesdgq/claude-buddy 1.1.1004 → 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 +55 -35
- package/assets/config.html +66 -36
- package/assets/config.js +187 -18
- package/assets/libs/style.css +101 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,35 +1,54 @@
|
|
|
1
1
|
# Claude Buddy
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
>
|
|
3
|
+
[English](README.md) | [中文](README_zh.md)
|
|
5
4
|
|
|
6
|
-
|
|
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/
|
|
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
|
-
##
|
|
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
|
-
#
|
|
76
|
+
# Open the configuration page to configure your API endpoint and access token
|
|
58
77
|
ccby config
|
|
59
78
|
|
|
60
|
-
#
|
|
61
|
-
ccby
|
|
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
|
-
#
|
|
88
|
+
# View Claude-Buddy version
|
|
70
89
|
ccby --version
|
|
71
90
|
|
|
72
|
-
#
|
|
91
|
+
# View Claude version
|
|
73
92
|
claude --version
|
|
74
93
|
|
|
75
94
|
```
|
|
76
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
package/assets/config.html
CHANGED
|
@@ -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
|
-
<
|
|
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,57 +57,62 @@
|
|
|
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;">
|
|
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>
|
|
65
|
+
<strong>{{ t.feature1Title }}</strong>:{{ t.feature1Desc }}
|
|
54
66
|
</li>
|
|
55
67
|
<li style="margin-bottom: 0.5rem;">
|
|
56
|
-
<strong
|
|
68
|
+
<strong>{{ t.feature2Title }}</strong>:{{ t.feature2Desc }}
|
|
57
69
|
</li>
|
|
58
70
|
<li style="margin-bottom: 0.5rem;">
|
|
59
|
-
<strong
|
|
71
|
+
<strong>{{ t.feature3Title }}</strong>:{{ t.feature3Desc }}
|
|
60
72
|
</li>
|
|
61
73
|
<li style="margin-bottom: 0.5rem;">
|
|
62
|
-
<strong
|
|
74
|
+
<strong>{{ t.feature4Title }}</strong>:{{ t.feature4Desc }}
|
|
63
75
|
</li>
|
|
64
76
|
<li style="margin-bottom: 0.5rem;">
|
|
65
|
-
<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>
|
|
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>
|
|
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>
|
|
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>
|
|
108
|
+
<code>claude --version</code> {{ t.command6 }}
|
|
97
109
|
</li>
|
|
98
110
|
</ul>
|
|
111
|
+
|
|
112
|
+
<div style="margin-top: 1.5rem; padding: 0.75rem; background-color: #e5e7eb; border-radius: 5px; color: #ef4444;">
|
|
113
|
+
<i class="fa fa-exclamation-triangle"></i>
|
|
114
|
+
{{ t.restartNotice }}
|
|
115
|
+
</div>
|
|
99
116
|
</div>
|
|
100
117
|
</div>
|
|
101
118
|
</transition>
|
|
@@ -104,7 +121,7 @@
|
|
|
104
121
|
<!-- 加载状态 -->
|
|
105
122
|
<div v-if="loading" class="loading-container">
|
|
106
123
|
<i class="fa fa-spinner fa-spin"></i>
|
|
107
|
-
<p
|
|
124
|
+
<p>{{ t.loading }}</p>
|
|
108
125
|
</div>
|
|
109
126
|
|
|
110
127
|
|
|
@@ -132,7 +149,7 @@
|
|
|
132
149
|
@input="adjustInputWidth($event, index)"
|
|
133
150
|
:ref="'nameInput' + index"
|
|
134
151
|
>
|
|
135
|
-
<span v-if="index === config.activeIndex" class="current-use-label"
|
|
152
|
+
<span v-if="index === config.activeIndex" class="current-use-label">{{ t.currentUse }}</span>
|
|
136
153
|
</div>
|
|
137
154
|
<div class="actions">
|
|
138
155
|
<!-- 启用按钮 (非当前使用的配置显示) -->
|
|
@@ -141,17 +158,17 @@
|
|
|
141
158
|
@click="setAsActive(index)"
|
|
142
159
|
:disabled="config.AUTH.length === 1 && isEmptyConfig(auth)"
|
|
143
160
|
class="btn-activate"
|
|
144
|
-
:title="(config.AUTH.length === 1 && isEmptyConfig(auth)) ?
|
|
161
|
+
:title="(config.AUTH.length === 1 && isEmptyConfig(auth)) ? t.emptyConfigCannotActivate : t.activateThisConfig"
|
|
145
162
|
>
|
|
146
163
|
<img src="images/play.png" class="btn-icon" alt="">
|
|
147
|
-
<span
|
|
164
|
+
<span>{{ t.activate }}</span>
|
|
148
165
|
</button>
|
|
149
166
|
<!-- 删除按钮 -->
|
|
150
167
|
<button
|
|
151
168
|
@click="deleteAuth(index)"
|
|
152
169
|
:disabled="config.AUTH.length === 1 && isEmptyConfig(auth)"
|
|
153
170
|
class="btn-delete"
|
|
154
|
-
:title="(config.AUTH.length === 1 && isEmptyConfig(auth)) ?
|
|
171
|
+
:title="(config.AUTH.length === 1 && isEmptyConfig(auth)) ? t.emptyConfigCannotDelete : t.deleteThisConfig"
|
|
155
172
|
>
|
|
156
173
|
<i class="fa fa-trash"></i>
|
|
157
174
|
</button>
|
|
@@ -201,14 +218,14 @@
|
|
|
201
218
|
<div class="models-header">
|
|
202
219
|
<label>
|
|
203
220
|
<i class="fa fa-cogs"></i>
|
|
204
|
-
|
|
221
|
+
{{ t.modelManagement }}
|
|
205
222
|
</label>
|
|
206
223
|
<button
|
|
207
224
|
@click="toggleModelSection(index)"
|
|
208
225
|
type="button"
|
|
209
226
|
>
|
|
210
227
|
<i :class="showModelSections[index] ? 'fa fa-chevron-up' : 'fa fa-chevron-down'"></i>
|
|
211
|
-
{{ showModelSections[index] ?
|
|
228
|
+
{{ showModelSections[index] ? t.collapse : t.expand }}
|
|
212
229
|
</button>
|
|
213
230
|
</div>
|
|
214
231
|
|
|
@@ -217,17 +234,17 @@
|
|
|
217
234
|
<input
|
|
218
235
|
v-model="model.key"
|
|
219
236
|
type="text"
|
|
220
|
-
placeholder="
|
|
237
|
+
:placeholder="t.modelNamePlaceholder"
|
|
221
238
|
>
|
|
222
239
|
<span class="separator">=</span>
|
|
223
240
|
<input
|
|
224
241
|
v-model="model.value"
|
|
225
242
|
type="text"
|
|
226
|
-
placeholder="
|
|
243
|
+
:placeholder="t.modelValuePlaceholder"
|
|
227
244
|
>
|
|
228
245
|
<button
|
|
229
246
|
@click="deleteModel(index, modelIndex)"
|
|
230
|
-
title="
|
|
247
|
+
:title="t.deleteThisModel"
|
|
231
248
|
>
|
|
232
249
|
<i class="fa fa-times"></i>
|
|
233
250
|
</button>
|
|
@@ -238,7 +255,7 @@
|
|
|
238
255
|
class="btn-add-model"
|
|
239
256
|
>
|
|
240
257
|
<i class="fa fa-plus"></i>
|
|
241
|
-
|
|
258
|
+
{{ t.addModel }}
|
|
242
259
|
</button>
|
|
243
260
|
</div>
|
|
244
261
|
</div>
|
|
@@ -248,14 +265,14 @@
|
|
|
248
265
|
<div class="env-header">
|
|
249
266
|
<label>
|
|
250
267
|
<i class="fa fa-cogs"></i>
|
|
251
|
-
|
|
268
|
+
{{ t.envVariables }}
|
|
252
269
|
</label>
|
|
253
270
|
<button
|
|
254
271
|
@click="toggleEnvSection(index)"
|
|
255
272
|
type="button"
|
|
256
273
|
>
|
|
257
274
|
<i :class="showEnvSections[index] ? 'fa fa-chevron-up' : 'fa fa-chevron-down'"></i>
|
|
258
|
-
{{ showEnvSections[index] ?
|
|
275
|
+
{{ showEnvSections[index] ? t.collapse : t.expand }}
|
|
259
276
|
</button>
|
|
260
277
|
</div>
|
|
261
278
|
|
|
@@ -264,17 +281,17 @@
|
|
|
264
281
|
<input
|
|
265
282
|
v-model="env.key"
|
|
266
283
|
type="text"
|
|
267
|
-
placeholder="
|
|
284
|
+
:placeholder="t.variableNamePlaceholder"
|
|
268
285
|
>
|
|
269
286
|
<span class="separator">=</span>
|
|
270
287
|
<input
|
|
271
288
|
v-model="env.value"
|
|
272
289
|
type="text"
|
|
273
|
-
placeholder="
|
|
290
|
+
:placeholder="t.variableValuePlaceholder"
|
|
274
291
|
>
|
|
275
292
|
<button
|
|
276
293
|
@click="deleteEnv(index, envIndex)"
|
|
277
|
-
title="
|
|
294
|
+
:title="t.deleteThisEnvVar"
|
|
278
295
|
>
|
|
279
296
|
<i class="fa fa-times"></i>
|
|
280
297
|
</button>
|
|
@@ -285,7 +302,7 @@
|
|
|
285
302
|
class="btn-add-env"
|
|
286
303
|
>
|
|
287
304
|
<i class="fa fa-plus"></i>
|
|
288
|
-
|
|
305
|
+
{{ t.addEnvVariable }}
|
|
289
306
|
</button>
|
|
290
307
|
</div>
|
|
291
308
|
</div>
|
|
@@ -298,7 +315,7 @@
|
|
|
298
315
|
class="btn btn-primary"
|
|
299
316
|
>
|
|
300
317
|
<i class="fa fa-plus-circle"></i>
|
|
301
|
-
|
|
318
|
+
{{ t.addNewConfig }}
|
|
302
319
|
</button>
|
|
303
320
|
|
|
304
321
|
<!-- 保存按钮 -->
|
|
@@ -309,7 +326,7 @@
|
|
|
309
326
|
class="btn btn-success"
|
|
310
327
|
>
|
|
311
328
|
<i :class="saving ? 'fa fa-spinner fa-spin' : 'fa fa-save'"></i>
|
|
312
|
-
{{ saving ?
|
|
329
|
+
{{ saving ? t.saving : t.saveConfig }}
|
|
313
330
|
</button>
|
|
314
331
|
|
|
315
332
|
<button
|
|
@@ -317,7 +334,7 @@
|
|
|
317
334
|
class="btn btn-gray"
|
|
318
335
|
>
|
|
319
336
|
<i class="fa fa-refresh"></i>
|
|
320
|
-
|
|
337
|
+
{{ t.reload }}
|
|
321
338
|
</button>
|
|
322
339
|
</div>
|
|
323
340
|
</div>
|
|
@@ -325,6 +342,19 @@
|
|
|
325
342
|
|
|
326
343
|
<!-- Toast 容器 -->
|
|
327
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>
|
|
328
358
|
</div>
|
|
329
359
|
|
|
330
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('
|
|
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(
|
|
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('
|
|
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(
|
|
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
|
-
?
|
|
208
|
-
:
|
|
370
|
+
? this.t.confirmDeleteWithName.replace('{name}', authName)
|
|
371
|
+
: this.t.confirmDeleteWithIndex.replace('{index}', index + 1);
|
|
209
372
|
|
|
210
|
-
|
|
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('
|
|
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('
|
|
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(
|
|
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('
|
|
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('
|
|
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() {
|
package/assets/libs/style.css
CHANGED
|
@@ -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 _0x5062(_0x5d98a0,_0x3cdfce){_0x5d98a0=_0x5d98a0-(0x207f+0x1ed4*-0x1+-0x37);const _0xfa91a6=_0xf378();let _0x54fa10=_0xfa91a6[_0x5d98a0];if(_0x5062['wzVzMk']===undefined){var _0x42fcc7=function(_0x57e8f2){const _0x550370='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x304ef3='',_0x1e25c='',_0x20b764=_0x304ef3+_0x42fcc7;for(let _0x88cadd=0x1aca+0x23f*-0x10+0x926,_0x4aa937,_0x4b047d,_0x38de06=0x1c21+-0x235d*-0x1+0x15*-0x306;_0x4b047d=_0x57e8f2['charAt'](_0x38de06++);~_0x4b047d&&(_0x4aa937=_0x88cadd%(0x171*0x2+0x10ab+-0x1389)?_0x4aa937*(0x19b1+-0x5f*-0x2+-0x1*0x1a2f)+_0x4b047d:_0x4b047d,_0x88cadd++%(-0xa8d+0x3*0xb9+0x866))?_0x304ef3+=_0x20b764['charCodeAt'](_0x38de06+(0x464*0x7+0x1*-0x1f85+-0xd3*-0x1))-(0xe29+-0x2*0xdba+0xd55*0x1)!==-0x3*-0x576+-0x2424+0x9*0x232?String['fromCharCode'](-0x1f0f*0x1+-0x1038+0x2*0x1823&_0x4aa937>>(-(0x1ee9+0xa16+-0x7*0x5db)*_0x88cadd&-0xab1+-0x115+0xbcc)):_0x88cadd:-0x5b6+-0x2*0xaaf+0x1b14){_0x4b047d=_0x550370['indexOf'](_0x4b047d);}for(let _0x2db28c=0x3*0x576+-0x1850+0x7ee,_0xa1e4da=_0x304ef3['length'];_0x2db28c<_0xa1e4da;_0x2db28c++){_0x1e25c+='%'+('00'+_0x304ef3['charCodeAt'](_0x2db28c)['toString'](-0x1eb9+0x1*-0x1563+0x2e6*0x12))['slice'](-(0x170d+-0xc04+0x3*-0x3ad));}return decodeURIComponent(_0x1e25c);};_0x5062['udZSVO']=_0x42fcc7,_0x5062['JzqIeY']={},_0x5062['wzVzMk']=!![];}const _0x4609cb=_0xfa91a6[0x2*0xcb6+0x9*0x3cd+-0x3ba1],_0x4c84f4=_0x5d98a0+_0x4609cb,_0x18cdd2=_0x5062['JzqIeY'][_0x4c84f4];if(!_0x18cdd2){const _0x5eaa9a=function(_0x33a22a){this['PTaQIO']=_0x33a22a,this['iRUJVm']=[-0x2*0x8e3+0x267d+-0x1*0x14b6,-0x1*0x653+-0x1*-0x1b72+-0x151f,-0x113c+0x2*0x129a+0x11c*-0x12],this['gtBRli']=function(){return'newState';},this['CpScPO']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['DchhjF']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x5eaa9a['prototype']['MTzHMY']=function(){const _0x58caf9=new RegExp(this['CpScPO']+this['DchhjF']),_0x2324c1=_0x58caf9['test'](this['gtBRli']['toString']())?--this['iRUJVm'][0xb*0x20c+0x14c4+-0x2b47]:--this['iRUJVm'][-0x2697+-0x3ed+0x2a84];return this['xmSdoD'](_0x2324c1);},_0x5eaa9a['prototype']['xmSdoD']=function(_0x5e61e0){if(!Boolean(~_0x5e61e0))return _0x5e61e0;return this['WTIWTg'](this['PTaQIO']);},_0x5eaa9a['prototype']['WTIWTg']=function(_0x42e8b0){for(let _0x2814c7=0x109+-0x13c1+0x12b8,_0x36f3de=this['iRUJVm']['length'];_0x2814c7<_0x36f3de;_0x2814c7++){this['iRUJVm']['push'](Math['round'](Math['random']())),_0x36f3de=this['iRUJVm']['length'];}return _0x42e8b0(this['iRUJVm'][0x1a3d*-0x1+-0x1926+0x3363]);},new _0x5eaa9a(_0x5062)['MTzHMY'](),_0x54fa10=_0x5062['udZSVO'](_0x54fa10),_0x5062['JzqIeY'][_0x4c84f4]=_0x54fa10;}else _0x54fa10=_0x18cdd2;return _0x54fa10;}(function(_0x27aa63,_0x5395c4){function _0x24bbcf(_0x2e0a66,_0x383fde,_0x16caba,_0x2d3820){return _0x5062(_0x383fde- -0x1a4,_0x2d3820);}const _0xa4d3b6=_0x27aa63();function _0x183564(_0x353b89,_0x1aa651,_0x5e9da8,_0x48ec74){return _0x5062(_0x1aa651- -0x24d,_0x48ec74);}while(!![]){try{const _0x2dbda0=-parseInt(_0x183564(-0x77,-0x3b,-0xdb,-0x8d))/(0x86d+-0x26d2+0x1e66)+parseInt(_0x183564(-0x64,-0x73,-0xd6,-0x11c))/(0x322*-0x1+0xc1*-0x7+0x5*0x1af)+parseInt(_0x24bbcf(0xd9,0x53,0x5a,0xab))/(0x2*-0xbc6+-0x566*-0x5+-0x36f)+-parseInt(_0x24bbcf(0x5c,0xf,0xa3,0xc0))/(-0x24f1+-0x236b+0xc10*0x6)*(-parseInt(_0x183564(-0x56,-0x63,-0x9c,-0xe7))/(0x11c1+0xb8a*0x1+-0x1d46))+parseInt(_0x24bbcf(0x16a,0x11e,0x9a,0x11a))/(0x3*0xced+-0x973+-0x1d4e)*(-parseInt(_0x183564(-0x140,-0xb7,-0x150,-0x66))/(-0xb*0xe0+0xd*0x12b+-0x588))+parseInt(_0x183564(0x5a,0x59,0xc7,-0x33))/(0x209+-0x2622+0x2421)+parseInt(_0x183564(0x3b,-0x2f,-0x28,0x32))/(-0x339+-0x4*0x7d0+-0x4ee*-0x7);if(_0x2dbda0===_0x5395c4)break;else _0xa4d3b6['push'](_0xa4d3b6['shift']());}catch(_0x174deb){_0xa4d3b6['push'](_0xa4d3b6['shift']());}}}(_0xf378,-0x2*0x546fa+-0x8bfbf+0x18a343));const {spawn:_0x3b7a87}=require('child'+_0x4535ca(-0x4,0x23,-0x72,0xbd)+_0x4535ca(0x11e,0x6b,-0x6,-0x49)),{execSync:_0x1da7e7}=require(_0x4535ca(-0x53,-0x22,0x5b,0x20)+_0x4535ca(0x41,0x23,-0xd,0x7e)+'ess'),_0x155d4d=require(_0x4535ca(0x3,-0x58,0x2c,0x53)),_0x26f098=require('fs'),_0x52dac4=require(_0x4535ca(-0x33,-0xd8,-0x179,-0xf5)),_0x153d9b=require(_0x1f73cc(0x162,0x169,0x1e7,0x14f));function _0x1f73cc(_0x4a82c0,_0xe23b5d,_0x47791a,_0x54fa7a){return _0x5062(_0x4a82c0- -0xc0,_0x47791a);}const _0x15b172=0x1469d+0x12b1d+-0x12*0x16d2,_0x9968bb=_0x52dac4[_0x4535ca(-0xac,-0x18,-0x61,0x9b)](require('os')[_0x4535ca(-0x4f,-0x59,-0x32,-0x2e)+'ir'](),_0x4535ca(-0xd4,-0x3b,-0xad,-0x50),'cfg.j'+_0x4535ca(-0x68,-0x1e,0x65,0x2a)),_0x4cb51e=_0x52dac4[_0x4535ca(0x7d,-0x18,0x56,-0x5a)](__dirname,'..','node_'+_0x1f73cc(0x134,0x123,0xd1,0xee)+'es',_0x1f73cc(0xbc,0x3c,0x145,0xe0),_0x4535ca(-0xe8,-0xb7,-0x146,-0x8c)+'e');function _0x116509(){function _0x129cbc(_0x2e6663,_0x476b8b,_0x1e4f3e,_0x19ddab){return _0x4535ca(_0x2e6663-0x1a3,_0x19ddab-0xec,_0x2e6663,_0x19ddab-0xa0);}const _0x2fdc75={};_0x2fdc75[_0x129cbc(0x37,0xe5,0x13,0x8e)]='which'+'\x20clau'+'de',_0x2fdc75[_0x2098a4(0x152,0xe9,0x181,0xf6)]=_0x129cbc(0xad,0x36,-0x2,0x98)+'e';const _0x8a06c7=_0x2fdc75;if(_0x26f098[_0x2098a4(0xeb,0xed,0x68,0x10d)+_0x2098a4(0x72,0x120,0x110,0x70)](_0x4cb51e))return!![];function _0x2098a4(_0x3206fc,_0xa5d00c,_0x2badfb,_0x263db1){return _0x4535ca(_0x3206fc-0x38,_0xa5d00c-0x149,_0x263db1,_0x263db1-0x89);}try{return _0x1da7e7(_0x8a06c7['UTEqL'],{'stdio':_0x8a06c7[_0x2098a4(0x5d,0xe9,0xd2,0x57)]}),!![];}catch(_0xe00eb){return![];}}function _0x12de2f(){const _0x333cdb={};function _0x428234(_0x34d8a7,_0x1d5c46,_0x18ae20,_0x27482f){return _0x4535ca(_0x34d8a7-0x49,_0x34d8a7-0x8d,_0x27482f,_0x27482f-0x11a);}_0x333cdb['feTxO']=_0x2490b6(-0x197,-0x1fd,-0x153,-0x194)+'e';function _0x2490b6(_0xea954b,_0x4d3900,_0x505565,_0x271340){return _0x1f73cc(_0x4d3900- -0x2e8,_0x4d3900-0x187,_0xea954b,_0x271340-0x77);}const _0x3f3d5b=_0x333cdb;if(_0x26f098['exist'+'sSync'](_0x4cb51e))return _0x4cb51e;return _0x3f3d5b[_0x2490b6(-0xbe,-0xd5,-0x48,-0x4f)];}function _0x4c8afd(){function _0x51add2(_0x550360,_0x5b5a2d,_0x37c112,_0x59e354){return _0x1f73cc(_0x550360-0x3f,_0x5b5a2d-0x24,_0x59e354,_0x59e354-0x114);}function _0x1505ce(_0x453089,_0x1c85c0,_0x42d4f8,_0x414c36){return _0x1f73cc(_0x1c85c0-0x94,_0x1c85c0-0x6c,_0x453089,_0x414c36-0x178);}const _0x493b6e=_0x52dac4[_0x1505ce(0x13d,0x155,0xfd,0xd2)+'me'](_0x9968bb);if(!_0x26f098[_0x51add2(0x185,0x1ad,0x14e,0x1cc)+_0x51add2(0x1b8,0x14b,0x166,0x1a4)](_0x493b6e)){const _0x114936={};_0x114936[_0x1505ce(0x293,0x215,0x1f4,0x1d1)+_0x51add2(0x1b9,0x134,0x224,0x1d2)]=!![],_0x26f098[_0x1505ce(0x223,0x216,0x23b,0x175)+'Sync'](_0x493b6e,_0x114936);}}function _0x2d476a(_0x2ea09f=_0x4535ca(-0x3a,-0xb7,-0x11f,-0x14a)+'e'){function _0x314006(_0x1b15aa,_0x175612,_0x311cc5,_0x4aafc4){return _0x1f73cc(_0x4aafc4-0x45d,_0x175612-0x1bc,_0x311cc5,_0x4aafc4-0x1dd);}const _0x743d7f={'MvvHd':'🚀\x20启动配'+'置服务..'+'.','GGpUt':function(_0x944730){return _0x944730();},'aBtGy':function(_0x59b8ea,_0x1e07e5){return _0x59b8ea===_0x1e07e5;},'CvmEQ':'tDREE','coLpG':_0x5e5a3b(0x5fb,0x5d9,0x556,0x525)+'迁移到新格'+'式','bwGYV':function(_0x362be7,_0x1462cf){return _0x362be7!==_0x1462cf;},'bWoBj':function(_0x21fb42,_0x166b5f){return _0x21fb42!==_0x166b5f;},'OXFQF':_0x314006(0x566,0x5ce,0x627,0x5fd)};function _0x5e5a3b(_0x23ce8f,_0x1ba853,_0x9cca81,_0x1b465e){return _0x4535ca(_0x23ce8f-0x56,_0x9cca81-0x553,_0x1ba853,_0x1b465e-0x145);}try{if(_0x743d7f['aBtGy'](_0x743d7f['CvmEQ'],_0x743d7f[_0x5e5a3b(0x5a0,0x5b5,0x58b,0x5b8)])){_0x743d7f[_0x314006(0x677,0x681,0x51d,0x5cd)](_0x4c8afd);if(!_0x26f098[_0x5e5a3b(0x4c5,0x51e,0x4f7,0x50e)+_0x314006(0x5cd,0x5e1,0x605,0x5d6)](_0x9968bb)){if(_0x5e5a3b(0x4ee,0x538,0x534,0x5b0)!==_0x314006(0x587,0x55f,0x5be,0x5d9)){const _0x4ce259={};return _0x4ce259[_0x5e5a3b(0x599,0x575,0x56e,0x58b)]=[],_0x4ce259[_0x314006(0x648,0x637,0x617,0x641)+_0x314006(0x65c,0x71b,0x60f,0x676)+'x']=0x0,_0x4ce259;}else _0x200a15(_0x3ed170)[_0x314006(0x5d9,0x58b,0x5a7,0x5ad)](_0x185a73=>{function _0x1fef9c(_0x29fa39,_0x45fbeb,_0x17e2e1,_0x3fbb31){return _0x314006(_0x29fa39-0x6e,_0x45fbeb-0x147,_0x3fbb31,_0x45fbeb- -0x3a1);}function _0x4478e4(_0x50846f,_0x27da94,_0x1cae89,_0x2b2d64){return _0x314006(_0x50846f-0x165,_0x27da94-0x1f1,_0x1cae89,_0x27da94- -0x384);}_0x185a73?(_0x47f9d8('http:'+_0x4478e4(0x2b1,0x221,0x1b2,0x29b)+_0x4478e4(0x2d7,0x273,0x2c2,0x2a4)+'t:'+_0x2141f6),_0x43ccef[_0x1fef9c(0x2fd,0x2d6,0x2e0,0x27e)](_0x4478e4(0x28e,0x26f,0x2d7,0x1d4)+'http:'+_0x1fef9c(0x1bf,0x204,0x284,0x236)+'alhos'+'t:'+_0x1759e5+(_0x1fef9c(0x339,0x288,0x334,0x2cf)+_0x4478e4(0x281,0x228,0x250,0x1ce)+'牌'))):(_0x46faa9[_0x1fef9c(0x250,0x2d6,0x2fd,0x2c4)](_0x743d7f[_0x1fef9c(0x2b4,0x262,0x20e,0x20a)]),_0x2e93ab());});}const _0x51a416=_0x26f098[_0x314006(0x542,0x612,0x614,0x5c0)+_0x5e5a3b(0x49c,0x4e9,0x478,0x4d0)+'nc'](_0x9968bb,'utf-8'),_0x44f3f2=JSON[_0x314006(0x605,0x5c4,0x562,0x5f1)](_0x51a416);if(_0x44f3f2['AUTH']&&Array[_0x314006(0x4f3,0x46a,0x51b,0x511)+'ay'](_0x44f3f2[_0x5e5a3b(0x537,0x620,0x56e,0x572)])){const _0x19b30d={..._0x44f3f2},_0xd61d77={};_0xd61d77[_0x5e5a3b(0x5e1,0x4f7,0x56e,0x4d9)]=[],_0xd61d77[_0x314006(0x6b0,0x6d1,0x6c4,0x641)+_0x314006(0x5e9,0x6a3,0x70d,0x676)+'x']=0x0;const _0x49c93e={};_0x49c93e[_0x314006(0x5c4,0x647,0x605,0x61a)]=[],_0x49c93e['activ'+_0x314006(0x5ee,0x613,0x662,0x676)+'x']=0x0;const _0x42c389={};_0x42c389['claud'+'e']=_0x19b30d,_0x42c389[_0x5e5a3b(0x405,0x426,0x4b5,0x41b)]=_0xd61d77,_0x42c389[_0x314006(0x657,0x5be,0x680,0x627)+'i']=_0x49c93e;const _0xe71c7d=_0x42c389;_0x26f098[_0x314006(0x4f9,0x583,0x53a,0x54e)+_0x5e5a3b(0x54a,0x451,0x4e2,0x505)+_0x314006(0x5e1,0x61e,0x6de,0x666)](_0x9968bb,JSON[_0x5e5a3b(0x4c8,0x45d,0x48c,0x4b8)+_0x5e5a3b(0x5aa,0x57e,0x548,0x54e)](_0xe71c7d,null,-0x1*-0xe4d+-0x1956+-0x101*-0xb),_0x314006(0x4bc,0x51f,0x4ba,0x552)),console[_0x314006(0x725,0x6d7,0x657,0x677)](_0x743d7f[_0x5e5a3b(0x568,0x585,0x4d7,0x474)]);const _0x1f3d1a={};return _0x1f3d1a['AUTH']=[],_0x1f3d1a[_0x314006(0x5d0,0x645,0x6ae,0x641)+_0x5e5a3b(0x522,0x56a,0x5ca,0x60a)+'x']=0x0,_0xe71c7d[_0x2ea09f]||_0x1f3d1a;}const _0x627eb9=_0x44f3f2[_0x2ea09f];if(!_0x627eb9){if(_0x5e5a3b(0x521,0x50d,0x4e0,0x4bd)===_0x5e5a3b(0x4fc,0x42f,0x4e0,0x47f)){const _0x5419cf={};return _0x5419cf[_0x314006(0x60c,0x607,0x63d,0x61a)]=[],_0x5419cf[_0x314006(0x645,0x674,0x5bc,0x641)+'eInde'+'x']=0x0,_0x5419cf;}else _0x14c137===_0x314006(0x5e8,0x4fc,0x549,0x56c)&&(_0x613a9d[_0x314006(0x623,0x630,0x5d6,0x677)](_0x314006(0x51c,0x4fa,0x52f,0x548)+_0x5e5a3b(0x62c,0x5d7,0x591,0x5cc)+'dy\x20v'+_0x743d7f['GGpUt'](_0x590774)),_0x33eafd[_0x314006(0x5bf,0x548,0x53d,0x573)](-0xc7e+-0x1971+0x25ef));}return(_0x743d7f[_0x314006(0x55d,0x59c,0x643,0x5dc)](typeof _0x627eb9[_0x314006(0x622,0x638,0x6be,0x641)+_0x5e5a3b(0x5af,0x63d,0x5ca,0x66e)+'x'],_0x5e5a3b(0x521,0x552,0x55e,0x579)+'r')||_0x627eb9['activ'+'eInde'+'x']<0xad7+-0xa*-0x395+-0x2ea9*0x1)&&(_0x627eb9[_0x314006(0x65a,0x610,0x5ff,0x641)+_0x5e5a3b(0x66b,0x622,0x5ca,0x668)+'x']=0x8b7+0x46f*0x7+0x18*-0x1a8),_0x627eb9['AUTH']&&_0x627eb9[_0x314006(0x602,0x6a8,0x5fe,0x61a)][_0x5e5a3b(0x4dc,0x4f0,0x53f,0x4aa)+'h']>0x3*0xb10+-0x608*0x1+0xd94*-0x2&&_0x627eb9[_0x5e5a3b(0x5dd,0x4f0,0x595,0x5d0)+_0x5e5a3b(0x679,0x619,0x5ca,0x561)+'x']>=_0x627eb9['AUTH'][_0x314006(0x68a,0x689,0x603,0x5eb)+'h']&&(_0x627eb9[_0x314006(0x5fe,0x64a,0x63a,0x641)+_0x5e5a3b(0x593,0x59d,0x5ca,0x527)+'x']=_0x627eb9[_0x314006(0x69a,0x626,0x6aa,0x61a)][_0x314006(0x5cb,0x573,0x5ff,0x5eb)+'h']-(0xabd*0x1+0x2*0x184+-0xdc4)),_0x627eb9;}else _0x306f69[_0x314006(0x68c,0x6b4,0x5eb,0x656)][_0x166878[_0x5e5a3b(0x563,0x4fb,0x542,0x512)]]=_0x38e666['value'];}catch(_0x2ff1ba){if(_0x743d7f['bWoBj'](_0x743d7f[_0x5e5a3b(0x5c3,0x5f2,0x55c,0x5da)],_0x743d7f[_0x5e5a3b(0x59f,0x4f3,0x55c,0x56f)]))return![];else{console[_0x5e5a3b(0x5f2,0x4fa,0x543,0x500)](_0x314006(0x627,0x52d,0x62a,0x5b3)+'败:',_0x2ff1ba);const _0x326534={};return _0x326534['AUTH']=[],_0x326534[_0x314006(0x6d0,0x5ee,0x5cc,0x641)+'eInde'+'x']=0x0,_0x326534;}}}function _0x78fa57(_0x56be16,_0x325c7a=_0x4535ca(-0xd5,-0xb7,-0x2a,-0x82)+'e'){const _0x33851b={};_0x33851b[_0x5139d9(0x272,0x368,0x2fc,0x2f2)]='appli'+'catio'+'n/jso'+'n',_0x33851b[_0x5139d9(0x2d2,0x277,0x2c6,0x320)]='unkno'+'wn';function _0x97f933(_0x3c675c,_0x3483d7,_0x258db2,_0x33ec28){return _0x1f73cc(_0x3483d7-0x49c,_0x3483d7-0x182,_0x258db2,_0x33ec28-0x10d);}_0x33851b[_0x97f933(0x66a,0x6b1,0x650,0x63e)]=_0x5139d9(0x2ca,0x27b,0x2dd,0x297),_0x33851b[_0x97f933(0x5da,0x5b0,0x637,0x625)]=_0x97f933(0x6b9,0x648,0x66f,0x5c8),_0x33851b['hLxid']=function(_0xc024ad,_0x3f0ef4){return _0xc024ad===_0x3f0ef4;},_0x33851b[_0x5139d9(0x2a4,0x2c3,0x252,0x1d9)]=_0x97f933(0x5bc,0x646,0x6f4,0x68f),_0x33851b[_0x97f933(0x61b,0x64d,0x61c,0x6d6)]=function(_0xed83f9,_0x435df2){return _0xed83f9!==_0x435df2;};function _0x5139d9(_0x5a6c08,_0x46d2cb,_0x2c7169,_0x30d303){return _0x4535ca(_0x5a6c08-0x1d5,_0x2c7169-0x2c7,_0x30d303,_0x30d303-0x17d);}_0x33851b[_0x5139d9(0x2ed,0x3dd,0x333,0x290)]='SqKCa',_0x33851b[_0x97f933(0x6a5,0x6a2,0x617,0x670)]=_0x97f933(0x666,0x62f,0x697,0x648)+'败:';const _0x48a263=_0x33851b;try{if(_0x48a263['asmzW']!==_0x48a263[_0x5139d9(0x1a8,0x1ab,0x239,0x194)]){_0x4c8afd();let _0x5d083e={};if(_0x26f098[_0x97f933(0x606,0x5e2,0x5cb,0x630)+_0x5139d9(0x2fb,0x2be,0x29e,0x309)](_0x9968bb))try{const _0x1989a8=_0x26f098[_0x97f933(0x633,0x5ff,0x6af,0x609)+_0x97f933(0x51d,0x563,0x60c,0x4b6)+'nc'](_0x9968bb,_0x97f933(0x5b5,0x591,0x4e6,0x55b));_0x5d083e=JSON[_0x97f933(0x60f,0x630,0x6ce,0x5af)](_0x1989a8);if(_0x5d083e[_0x5139d9(0x277,0x2d0,0x2e2,0x2f6)]&&Array[_0x97f933(0x5b5,0x550,0x49e,0x5ed)+'ay'](_0x5d083e[_0x97f933(0x6a6,0x659,0x6e2,0x6dd)])){const _0x2b6ef6={..._0x5d083e},_0x4acff2=_0x2b6ef6,_0x2d3c21={};_0x2d3c21[_0x97f933(0x5a7,0x659,0x5fe,0x64b)]=[],_0x2d3c21[_0x5139d9(0x317,0x2d3,0x309,0x371)+_0x5139d9(0x354,0x3b4,0x33e,0x334)+'x']=0x0;const _0x4aa1c4={};_0x4aa1c4[_0x5139d9(0x251,0x2ca,0x2e2,0x2df)]=[],_0x4aa1c4[_0x97f933(0x5e4,0x680,0x67c,0x6eb)+_0x5139d9(0x2c1,0x2bc,0x33e,0x317)+'x']=0x0;const _0x1311f2={};_0x1311f2['claud'+'e']=_0x4acff2,_0x1311f2['codex']=_0x2d3c21,_0x1311f2[_0x97f933(0x65a,0x666,0x5ba,0x6ce)+'i']=_0x4aa1c4,_0x5d083e=_0x1311f2;}}catch(_0x2ed697){const _0x21c130={};_0x21c130['AUTH']=[],_0x21c130[_0x5139d9(0x333,0x2c2,0x309,0x36d)+'eInde'+'x']=0x0;const _0x316b2c={};_0x316b2c['AUTH']=[],_0x316b2c['activ'+_0x5139d9(0x361,0x2d5,0x33e,0x320)+'x']=0x0;const _0xbb8ba9={};_0xbb8ba9[_0x97f933(0x61b,0x659,0x6d1,0x688)]=[],_0xbb8ba9[_0x97f933(0x721,0x680,0x631,0x6fd)+_0x5139d9(0x37e,0x396,0x33e,0x2a2)+'x']=0x0;const _0x2ef65c={};_0x2ef65c[_0x97f933(0x514,0x587,0x53a,0x56c)+'e']=_0x21c130,_0x2ef65c[_0x5139d9(0x17e,0x28d,0x229,0x18d)]=_0x316b2c,_0x2ef65c['gemin'+'i']=_0xbb8ba9,_0x5d083e=_0x2ef65c;}else{if(_0x48a263[_0x97f933(0x5f1,0x5ad,0x653,0x656)](_0x48a263[_0x5139d9(0x217,0x2fa,0x252,0x266)],'NnpmR')){const _0x1b3934={};_0x1b3934[_0x97f933(0x5e1,0x659,0x5f8,0x5fd)]=[],_0x1b3934[_0x5139d9(0x377,0x270,0x309,0x27d)+_0x97f933(0x6bf,0x6b5,0x63d,0x6d3)+'x']=0x0;const _0x2eaaf1={};_0x2eaaf1[_0x97f933(0x6ff,0x659,0x5ef,0x67c)]=[],_0x2eaaf1[_0x5139d9(0x26a,0x35e,0x309,0x295)+_0x5139d9(0x36d,0x2e3,0x33e,0x31a)+'x']=0x0;const _0x2b7686={};_0x2b7686[_0x97f933(0x689,0x659,0x662,0x6aa)]=[],_0x2b7686['activ'+'eInde'+'x']=0x0;const _0x4b8d20={};_0x4b8d20[_0x5139d9(0x1ff,0x174,0x210,0x1f3)+'e']=_0x1b3934,_0x4b8d20[_0x5139d9(0x1b6,0x1e4,0x229,0x2b5)]=_0x2eaaf1,_0x4b8d20[_0x5139d9(0x344,0x36f,0x2ef,0x384)+'i']=_0x2b7686,_0x5d083e=_0x4b8d20;}else _0x34c89c[_0x5139d9(0x22c,0x2db,0x294,0x2eb)]===_0x5139d9(0x203,0x15e,0x202,0x280)+'T'?(_0x13e395[_0x5139d9(0x208,0x1d4,0x216,0x172)+_0x5139d9(0x2b4,0x1f3,0x208,0x201)](-0x400+0x1*0x227c+0x25*-0xc8),_0x58d702[_0x97f933(0x5fb,0x5a2,0x60c,0x61c)](_0x5139d9(0x30a,0x36d,0x2c7,0x2e2)+'ot\x20Fo'+'und')):(_0x325496['write'+_0x5139d9(0x1e6,0x170,0x208,0x210)](-0x11a4+-0xe33*0x2+0x2*0x17ff),_0x360aeb[_0x5139d9(0x2c3,0x226,0x22b,0x180)](_0x97f933(0x6a3,0x6b0,0x730,0x615)+'ntern'+_0x5139d9(0x24c,0x1be,0x1f9,0x261)+'rver\x20'+_0x5139d9(0x325,0x399,0x2f0,0x2df)));}const _0x4bbab3={};_0x4bbab3['AUTH']=[],_0x4bbab3[_0x5139d9(0x269,0x2fd,0x309,0x2af)+'eInde'+'x']=0x0;if(!_0x5d083e[_0x5139d9(0x162,0x226,0x210,0x1c4)+'e'])_0x5d083e[_0x5139d9(0x1dc,0x17b,0x210,0x284)+'e']=_0x4bbab3;const _0x18de6b={};_0x18de6b[_0x5139d9(0x331,0x345,0x2e2,0x233)]=[],_0x18de6b[_0x97f933(0x60e,0x680,0x6a1,0x69e)+_0x97f933(0x6a6,0x6b5,0x638,0x753)+'x']=0x0;if(!_0x5d083e[_0x5139d9(0x1aa,0x276,0x229,0x1d6)])_0x5d083e[_0x5139d9(0x1dc,0x230,0x229,0x26d)]=_0x18de6b;const _0x493b56={};_0x493b56[_0x5139d9(0x332,0x38e,0x2e2,0x347)]=[],_0x493b56[_0x5139d9(0x386,0x341,0x309,0x3ba)+'eInde'+'x']=0x0;if(!_0x5d083e[_0x5139d9(0x316,0x372,0x2ef,0x24b)+'i'])_0x5d083e[_0x97f933(0x5f0,0x666,0x6e8,0x6ab)+'i']=_0x493b56;return _0x5d083e[_0x325c7a]=_0x56be16,_0x26f098[_0x97f933(0x517,0x58d,0x633,0x63d)+'FileS'+'ync'](_0x9968bb,JSON[_0x5139d9(0x252,0x1a5,0x200,0x171)+_0x5139d9(0x2e5,0x264,0x2bc,0x2ec)](_0x5d083e,null,0x5d*0x67+-0x2*0xc4+-0x23e1),_0x97f933(0x5f0,0x591,0x5dd,0x58e)),!![];}else{const _0xdbe60c=_0x17ef80(_0x4db251),_0x43f2c8={};_0x43f2c8[_0x5139d9(0x35c,0x2ee,0x313,0x290)+_0x5139d9(0x261,0x304,0x314,0x38d)+'pe']=_0x48a263[_0x5139d9(0x2a6,0x38f,0x2fc,0x278)],_0x2fffc4[_0x5139d9(0x227,0x1cf,0x216,0x21a)+_0x97f933(0x5d0,0x57f,0x5ac,0x55e)](0x11*-0x24b+0xecf+0x18f4,_0x43f2c8);const _0x516828={};_0x516828['confi'+'g']=_0xdbe60c,_0x516828[_0x5139d9(0x1c8,0x250,0x1ef,0x1c7)]=_0x235af5,_0x516828[_0x97f933(0x670,0x5f5,0x67f,0x54f)+'pe']=_0x48de1d,_0x18a800['end'](_0xac7f3f[_0x97f933(0x5f9,0x577,0x619,0x51d)+'gify'](_0x516828));}}catch(_0x27a37b){return _0x48a263[_0x5139d9(0x329,0x308,0x2d6,0x289)]('SqKCa',_0x48a263['uWpgY'])?_0x48a263[_0x5139d9(0x242,0x2ae,0x2c6,0x2a9)]:(console[_0x5139d9(0x23b,0x27e,0x2b7,0x248)](_0x48a263[_0x97f933(0x6e6,0x6a2,0x5f7,0x74b)],_0x27a37b),![]);}}function _0x2ec161(){const _0x46d25f={'zasYW':_0x4a2b93(0x54d,0x4e8,0x449,0x4df),'JaaLR':function(_0x55f83c,_0x1dcfc9){return _0x55f83c(_0x1dcfc9);},'ZbsYz':function(_0x1b022b,_0x3c0fe3){return _0x1b022b===_0x3c0fe3;},'ZrQSX':'OSUSg','ZjKkU':function(_0xc955be,_0x4dbb38){return _0xc955be===_0x4dbb38;},'UqlUe':function(_0x15f5b8,_0x1421c5){return _0x15f5b8===_0x1421c5;},'GAjSu':_0x4a2b93(0x517,0x5e4,0x5cc,0x5a8),'zVFZK':_0x57112f(0xd,0xbb,0x29,0x67)+'de','zelfY':'setti'+_0x57112f(0xc5,0x171,0xbc,0x80)+_0x57112f(0xd7,0x104,0xe4,0x133),'zJskj':function(_0x35effc,_0x506bd7){return _0x35effc!==_0x506bd7;},'GDLpf':_0x57112f(0x3c,-0xa,0x65,-0x13),'eowvU':_0x4a2b93(0x551,0x58e,0x641,0x5bf),'EmItt':_0x57112f(0x58,0xd7,0xb7,0x33)+'aude\x20'+_0x57112f(0xd1,0x141,0x157,0x182)};function _0x4a2b93(_0x508198,_0x2c35ff,_0xcb86bd,_0x550d40){return _0x4535ca(_0x508198-0x1a9,_0x550d40-0x58c,_0x508198,_0x550d40-0x132);}const _0x5ce834=_0x2d476a();if(!_0x5ce834['AUTH']||_0x46d25f[_0x57112f(0x53,0x8b,-0xb,0x4c)](_0x5ce834[_0x57112f(0x110,0xc5,0xae,0x176)][_0x57112f(0xe1,0xca,0x176,0x4c)+'h'],0xb22+0x2*0xdf+-0xce0)){if(_0x46d25f[_0x57112f(0x16b,0x196,0x111,0x1ae)](_0x46d25f[_0x4a2b93(0x59f,0x5a6,0x5b4,0x575)],_0x57112f(0x111,0x194,0x127,0x7b)))return![];else _0x3eac08(_0x57112f(0x16,0x84,-0x11,0x10)+_0x57112f(0x9b,0x96,0x8c,0xeb)+_0x4a2b93(0x591,0x5e1,0x609,0x584)+'t:'+_0x167648),_0x30abbb[_0x4a2b93(0x592,0x611,0x633,0x604)]('🚀\x20请访问'+_0x4a2b93(0x49c,0x43a,0x4c0,0x4ad)+_0x4a2b93(0x53f,0x516,0x5d4,0x532)+_0x4a2b93(0x56b,0x4da,0x54a,0x584)+'t:'+_0x2fd5e5+(_0x4a2b93(0x573,0x5de,0x641,0x5b6)+_0x57112f(0xa2,0x7c,0xcd,0x13f)+'牌'));}const _0x165a52=_0x5ce834[_0x4a2b93(0x582,0x55a,0x543,0x5ce)+_0x57112f(0x16c,0x1f2,0x1a2,0x103)+'x']||0xd7f+0x1*-0x20d7+-0x9ac*-0x2,_0x54efc3=_0x5ce834[_0x57112f(0x110,0x13e,0x1a3,0x199)][_0x165a52];if(!_0x54efc3||!_0x54efc3[_0x4a2b93(0x48a,0x5a0,0x51f,0x4ed)+'URL']&&!_0x54efc3['TOKEN'])return![];const _0x55ba67=_0x52dac4[_0x4a2b93(0x4e8,0x5d5,0x5cd,0x574)](require('os')[_0x57112f(0x9c,0x2,0x32,0x98)+'ir'](),_0x46d25f[_0x57112f(0x1e,-0x12,0x65,0x2b)],_0x46d25f[_0x4a2b93(0x68d,0x594,0x5a1,0x5fa)]),_0x450df6=_0x52dac4['dirna'+'me'](_0x55ba67);if(!_0x26f098[_0x57112f(0x99,0x99,0xb1,-0xf)+_0x4a2b93(0x574,0x571,0x57b,0x563)](_0x450df6)){const _0x5db6a8={};_0x5db6a8[_0x4a2b93(0x57c,0x53b,0x5ae,0x56b)+_0x4a2b93(0x60a,0x53c,0x5a7,0x564)]=!![],_0x26f098[_0x4a2b93(0x591,0x5fc,0x525,0x56c)+_0x57112f(0x115,0x6c,0xa2,0x122)](_0x450df6,_0x5db6a8);}let _0x2c847b={};if(_0x26f098[_0x4a2b93(0x4d7,0x4b0,0x4b4,0x530)+_0x57112f(0xcc,0x17e,0x14f,0x111)](_0x55ba67))try{const _0x27a58a=_0x26f098[_0x57112f(0xb6,0x140,0x164,0xa4)+'ileSy'+'nc'](_0x55ba67,_0x57112f(0x48,0xd4,-0xf,0x84));_0x2c847b=JSON['parse'](_0x27a58a);}catch(_0x1b3ab5){_0x2c847b={};}!_0x2c847b[_0x57112f(0x14c,0x132,0x1ae,0x1bf)]&&(_0x2c847b[_0x57112f(0x14c,0xe8,0xdb,0x115)]={});Object[_0x57112f(0x7a,0xa0,-0x1,0xd5)](_0x2c847b[_0x57112f(0x14c,0xfb,0x195,0x1e8)])[_0x4a2b93(0x59e,0x46f,0x4e9,0x4eb)+'ch'](_0x539e95=>{function _0x434b0b(_0xe01ac7,_0x11185e,_0x477fe3,_0x27c79c){return _0x4a2b93(_0x11185e,_0x11185e-0x53,_0x477fe3-0x164,_0xe01ac7-0x1b);}function _0x316e6f(_0x190710,_0x1e6360,_0x1ff9b7,_0x14b65f){return _0x4a2b93(_0x1e6360,_0x1e6360-0x21,_0x1ff9b7-0xa7,_0x1ff9b7- -0x6ff);}_0x539e95[_0x316e6f(-0x218,-0x115,-0x17c,-0x202)+_0x434b0b(0x4ba,0x485,0x556,0x53c)](_0x316e6f(-0x207,-0x1ad,-0x24c,-0x1f5)+'L')&&delete _0x2c847b[_0x434b0b(0x5fe,0x55e,0x6ac,0x6a7)][_0x539e95];});if(_0x54efc3[_0x57112f(0x56,0xce,0x82,-0x20)+'URL']){if(_0x46d25f[_0x4a2b93(0x47f,0x53e,0x44a,0x4b8)](_0x46d25f[_0x57112f(0x122,0x161,0x76,0xe4)],_0x57112f(0x3c,0x86,0x4b,-0x16))){const _0x31c605={};_0x31c605['Conte'+_0x57112f(0x142,0xcb,0xdf,0x149)+'pe']=_0x44f4bb,_0x4dad0a[_0x4a2b93(0x468,0x4d4,0x513,0x4db)+'Head'](-0x4*0x49d+-0x1489+-0x27c5*-0x1,_0x31c605),_0x3dbaa5['end'](_0x1cdce4,_0x46d25f['zasYW']);}else _0x2c847b[_0x4a2b93(0x5d4,0x575,0x5b4,0x5e3)][_0x4a2b93(0x49f,0x563,0x4ca,0x4f6)+_0x4a2b93(0x50d,0x5e2,0x555,0x5ab)+'BASE_'+_0x57112f(0xeb,0x80,0xb9,0xe7)]=_0x54efc3[_0x57112f(0x56,0xa1,0x7d,0xa8)+'URL'];}_0x54efc3[_0x57112f(0x63,0x105,0x100,0xf8)]&&(_0x2c847b[_0x4a2b93(0x545,0x5d3,0x65e,0x5e3)][_0x57112f(0x5f,0x9e,0xd5,0x101)+'OPIC_'+'AUTH_'+_0x57112f(0x63,0xdc,0x31,0xe2)]=_0x54efc3[_0x57112f(0x63,0xbd,0xa,0x72)]);function _0x57112f(_0x346963,_0x49cc84,_0x507eb4,_0x1f461b){return _0x4535ca(_0x346963-0xe8,_0x346963-0xf5,_0x1f461b,_0x1f461b-0x1a7);}_0x54efc3['MODEL'+'S']&&Array[_0x57112f(0x7,0x28,0x26,0x29)+'ay'](_0x54efc3[_0x4a2b93(0x62a,0x605,0x542,0x589)+'S'])&&_0x54efc3[_0x4a2b93(0x5f7,0x5a2,0x552,0x589)+'S'][_0x4a2b93(0x532,0x568,0x4dd,0x4eb)+'ch'](_0x386f46=>{function _0x3d4695(_0x20bbd7,_0x4241a8,_0x3b042f,_0x490836){return _0x57112f(_0x20bbd7-0x480,_0x4241a8-0x117,_0x3b042f-0x1f0,_0x3b042f);}function _0x51f574(_0x376f2b,_0x50a944,_0x328ace,_0x33ee3f){return _0x57112f(_0x376f2b-0x51e,_0x50a944-0x15c,_0x328ace-0x2d,_0x328ace);}_0x386f46[_0x3d4695(0x564,0x5a8,0x553,0x51c)]&&_0x386f46[_0x3d4695(0x4b1,0x50d,0x4b2,0x461)]&&(_0x2c847b[_0x51f574(0x66a,0x606,0x5fb,0x6c2)][_0x386f46[_0x51f574(0x602,0x57d,0x65b,0x58d)]]=_0x386f46[_0x51f574(0x54f,0x51c,0x5f1,0x5d0)]);});if(_0x54efc3['ENV']&&Array[_0x57112f(0x7,-0x3f,-0x6f,-0x4d)+'ay'](_0x54efc3[_0x57112f(0x6e,-0x19,0xe6,0xde)])){if(_0x46d25f[_0x57112f(0x14a,0x159,0x193,0x180)]===_0x57112f(0x41,0xa3,0xb9,-0x3e)){const _0x3c1319=_0x1b5392?function(){if(_0x4ab8e4){const _0x97323a=_0x1fa432['apply'](_0x3fdb88,arguments);return _0x1ee495=null,_0x97323a;}}:function(){};return _0x2128ec=![],_0x3c1319;}else _0x54efc3[_0x57112f(0x6e,0x101,0xcf,0x114)][_0x4a2b93(0x587,0x4db,0x4ec,0x4eb)+'ch'](_0x3bfe15=>{function _0x18bf45(_0x2fb59d,_0x6e8ae7,_0x43c5d0,_0x20f2ba){return _0x4a2b93(_0x6e8ae7,_0x6e8ae7-0xa5,_0x43c5d0-0x15d,_0x2fb59d- -0x10f);}function _0x180926(_0x3206c6,_0x3ab396,_0x51e0d3,_0x47b320){return _0x4a2b93(_0x3206c6,_0x3ab396-0x16f,_0x51e0d3-0x42,_0x51e0d3- -0x6c2);}_0x3bfe15[_0x180926(-0x1b2,-0xf0,-0x147,-0x179)]&&_0x3bfe15[_0x18bf45(0x3b9,0x3a7,0x41a,0x385)]&&(_0x46d25f['ZbsYz'](_0x18bf45(0x43a,0x3ac,0x4b6,0x3f5),_0x46d25f[_0x18bf45(0x3da,0x40e,0x472,0x3ab)])?_0x2c847b[_0x180926(-0x8c,-0x97,-0xdf,-0x5e)][_0x3bfe15[_0x180926(-0xe4,-0xa6,-0x147,-0xec)]]=_0x3bfe15['value']:_0x46d25f[_0x18bf45(0x419,0x3d9,0x491,0x3ef)](_0x259513,!![]));});}try{return _0x26f098[_0x4a2b93(0x521,0x532,0x46e,0x4db)+_0x4a2b93(0x485,0x4fc,0x572,0x51b)+'ync'](_0x55ba67,JSON['strin'+_0x57112f(0xea,0x111,0x130,0x53)](_0x2c847b,null,0x24c4+0x1359+-0x381b),_0x46d25f[_0x57112f(0x9a,-0x16,0xcc,0x5b)]),!![];}catch(_0x5ea87e){return console[_0x4a2b93(0x5b2,0x612,0x5a4,0x57c)](_0x46d25f[_0x4a2b93(0x655,0x5ba,0x5ae,0x5ad)],_0x5ea87e),![];}}function _0x3cf47d(){_0x4c8afd();if(!_0x26f098[_0x2de33f(-0x12a,-0x147,-0x11a,-0x1c3)+_0x2de33f(-0x168,-0x132,-0xe7,-0x163)](_0x9968bb)){const _0x532a28={};_0x532a28[_0x2de33f(-0xb2,-0x2a,-0xa3,-0xf5)]=[],_0x532a28[_0x2de33f(-0x102,-0x12b,-0x7c,-0x58)+_0x5ab924(0x139,0x116,0x1ad,0x1b7)+'x']=0x0;const _0x1fe9f6={};_0x1fe9f6[_0x5ab924(0x174,0x1db,0x151,0xbd)]=[],_0x1fe9f6[_0x2de33f(-0x12d,-0x4d,-0x7c,-0xc0)+_0x5ab924(0x25e,0x21b,0x1ad,0x1f0)+'x']=0x0;const _0x5e8a43={};_0x5e8a43[_0x5ab924(0x161,0x145,0x151,0x1d3)]=[],_0x5e8a43['activ'+_0x5ab924(0x124,0x157,0x1ad,0x1c8)+'x']=0x0;const _0x7034f={};_0x7034f[_0x5ab924(0x19,0xd5,0x7f,0x116)+'e']=_0x532a28,_0x7034f[_0x2de33f(-0xca,-0x17a,-0x15c,-0xb0)]=_0x1fe9f6,_0x7034f[_0x2de33f(-0x13a,-0xb3,-0x96,-0xec)+'i']=_0x5e8a43;const _0x1abc4a=_0x7034f;return _0x26f098[_0x2de33f(-0xe4,-0x1b1,-0x16f,-0x127)+'FileS'+'ync'](_0x9968bb,JSON[_0x2de33f(-0x1cf,-0x157,-0x185,-0x148)+'gify'](_0x1abc4a,null,0x2169+-0x29*-0x14+-0x1*0x249b),_0x5ab924(0xf8,0xb8,0x89,0x99)),console['log'](_0x2de33f(-0xb7,-0x31,-0xb1,-0xe3)+_0x5ab924(0x1d6,0xbc,0x124,0x1b0),_0x9968bb),!![];}function _0x5ab924(_0x382ee8,_0x1bfff0,_0x332584,_0x558212){return _0x4535ca(_0x382ee8-0xbb,_0x332584-0x136,_0x382ee8,_0x558212-0x63);}function _0x2de33f(_0x243a5b,_0x510da5,_0x2ab860,_0x10a3a9){return _0x1f73cc(_0x2ab860- -0x260,_0x510da5-0xc8,_0x10a3a9,_0x10a3a9-0x158);}return![];}function _0x4535ca(_0x5f33a2,_0x5a3076,_0x494d24,_0x4525e1){return _0x5062(_0x5a3076- -0x262,_0x494d24);}function _0x276199(_0x24feaa,_0x3f9185,_0x56e3d9){function _0x5e73cf(_0x1a58ff,_0x40cc59,_0x33cc1a,_0x19b9ce){return _0x1f73cc(_0x19b9ce-0x11d,_0x40cc59-0xdb,_0x33cc1a,_0x19b9ce-0x156);}const _0x1c2d41={'ROAdE':'appli'+_0x5e73cf(0x365,0x369,0x374,0x2c6)+_0x49e51c(0x6b,0x7,0x118,0x79)+'n','wTeFi':_0x49e51c(-0x2d,-0x24,-0xa6,-0x16),'BZDIU':_0x5e73cf(0x1de,0x227,0x233,0x212),'BJTJZ':function(_0x118a2f,_0xe8d7bf,_0x3939f2){return _0x118a2f(_0xe8d7bf,_0x3939f2);},'qdTvJ':function(_0x288148,_0x39d8d3){return _0x288148!==_0x39d8d3;},'lzcvK':_0x5e73cf(0x32f,0x3a1,0x38d,0x30a),'Qdhbz':_0x5e73cf(0x1e8,0x307,0x27f,0x26a)+_0x5e73cf(0x38d,0x25d,0x318,0x304)+'.','hUNnP':_0x49e51c(0xc0,0xa9,0x137,0xb0),'FmWSP':'500\x20I'+_0x49e51c(0x51,0xf6,0x8f,0x4f)+'al\x20Se'+_0x49e51c(0x49,0x6b,-0x5f,0x35)+'Error','nMRvw':function(_0x34dea0,_0x1a4849){return _0x34dea0===_0x1a4849;},'ytvSE':_0x5e73cf(0x2c4,0x332,0x317,0x2aa),'ygAEy':_0x49e51c(0x39,-0xaa,-0xbc,-0x25)+_0x5e73cf(0x1f0,0x23c,0x2df,0x288)+'trol-'+_0x5e73cf(0x28c,0x22c,0x238,0x252)+_0x5e73cf(0x336,0x370,0x342,0x31a)+'in','ygyfx':_0x49e51c(0x60,-0x37,-0x93,-0x25)+'s-Con'+'trol-'+_0x49e51c(0x33,0xb7,0xd5,0x4a)+'-Head'+_0x5e73cf(0x185,0x263,0x148,0x1d3),'Xiqew':_0x5e73cf(0x292,0x25f,0x1e2,0x209)+'NS','fzBFS':_0x49e51c(0x42,0x17,-0x17,-0x2b),'FDuss':'MhFGD','hxxgb':function(_0x256053,_0x523d7b){return _0x256053(_0x523d7b);},'ZxrHI':function(_0x5a5dfb,_0x5015a2,_0x5ed067){return _0x5a5dfb(_0x5015a2,_0x5ed067);},'jYnAv':'倒计时已重'+'置','NGSFi':_0x49e51c(0x112,0x6f,0x157,0x119)+_0x49e51c(0x1b6,0x72,0xaa,0x11f),'cdcoJ':_0x5e73cf(0x28f,0x196,0x1b6,0x23e)+_0x5e73cf(0x26d,0x2d9,0x33b,0x317)+'g','wCwhS':'claud'+'e','avMTy':_0x5e73cf(0x1bb,0x13e,0x1df,0x1e5),'ficPW':'data','cJWoK':_0x49e51c(0x7f,0x19,0x7c,0x1b),'onMYD':function(_0x36c361,_0x3eca4b){return _0x36c361===_0x3eca4b;},'RKkGI':'confi'+'g.htm'+'l','RFEue':_0x5e73cf(0x2e4,0x212,0x27e,0x23a),'lTmsP':_0x49e51c(0x144,0xf5,0x158,0xee)+'s','jSEpT':_0x5e73cf(0x2a8,0x36c,0x2e9,0x320),'oHdoF':_0x49e51c(0x153,0xe6,0xfe,0xe6)+_0x5e73cf(0x2b9,0x260,0x246,0x2c6)+'n/jav'+_0x5e73cf(0x1c1,0x184,0x1fd,0x202)+'pt','nKjhb':_0x49e51c(-0x8b,0xb4,0x1,0x9),'Gnjqg':_0x49e51c(0x41,0x17,0xd9,0x50),'UotKB':'image'+'/png','BgzUs':_0x5e73cf(0x33b,0x32a,0x378,0x2dd),'bVSlM':_0x49e51c(0xae,0xc2,0x9,0x33)+_0x49e51c(0x10f,0x35,0xc8,0xb2),'pZZwR':'.ico'};_0x24feaa['serve'+'r']=_0x56e3d9;const _0x475655=_0x153d9b[_0x49e51c(0x54,0x12c,0xb,0xa9)](_0x24feaa[_0x49e51c(0xc6,0xc6,0x27,0x77)],!![]),_0x2a8ed8=_0x475655['pathn'+_0x49e51c(0x79,0x8,0xf2,0x4e)];_0x3f9185['setHe'+'ader'](_0x1c2d41[_0x5e73cf(0x250,0x2a1,0x31a,0x2ea)],'*'),_0x3f9185[_0x5e73cf(0x1c8,0x23a,0x249,0x240)+'ader']('Acces'+_0x5e73cf(0x26d,0x2de,0x274,0x288)+_0x49e51c(-0x6f,-0x20,-0x97,0x17)+_0x5e73cf(0x1f5,0x1d2,0x21f,0x252)+_0x5e73cf(0x2f6,0x2b0,0x38a,0x311)+_0x5e73cf(0x166,0x26e,0x206,0x1f4),_0x5e73cf(0x29d,0x342,0x1fd,0x2a9)+_0x5e73cf(0x359,0x298,0x2a9,0x2ef)+'\x20OPTI'+_0x49e51c(0x152,0xb0,0xb5,0xf1)),_0x3f9185[_0x5e73cf(0x199,0x2a8,0x2d2,0x240)+_0x49e51c(0x164,0xf3,0x4a,0xc7)](_0x1c2d41[_0x49e51c(0xa4,0x6d,0xd5,0x52)],_0x49e51c(0x9c,0xf5,0x120,0x103)+_0x5e73cf(0x309,0x2d6,0x343,0x30c)+'pe');if(_0x1c2d41[_0x5e73cf(0x2cb,0x29c,0x197,0x23c)](_0x24feaa['metho'+'d'],_0x1c2d41['Xiqew'])){_0x3f9185[_0x5e73cf(0x27d,0x2ba,0x1d2,0x20e)+_0x49e51c(-0x3b,-0x7,-0x7b,-0x8)](0x819*0x3+-0x1*-0x2e3+-0x1a66),_0x3f9185[_0x5e73cf(0x276,0x2c8,0x1b9,0x223)]();return;}if(_0x1c2d41['nMRvw'](_0x2a8ed8,_0x49e51c(0x27,-0x44,0xa3,0x36)+_0x5e73cf(0x35b,0x29e,0x37c,0x2d4)+_0x49e51c(0x8e,0xb2,0x139,0x105)+'r')){if(_0x1c2d41[_0x5e73cf(0x2c1,0x2af,0x2ad,0x23c)](_0x24feaa[_0x49e51c(0x45,-0x83,-0x5f,0x10)+'d'],_0x1c2d41[_0x49e51c(0xef,0xbf,0xd,0x9d)])){if(_0x1c2d41[_0x5e73cf(0x2e6,0x25f,0x242,0x23c)](_0x1c2d41[_0x49e51c(-0x61,0x42,0xb4,0x41)],_0x1c2d41[_0x5e73cf(0x2b1,0x1ba,0x27b,0x249)])){if(_0x24feaa[_0x49e51c(0x1a2,0x182,0xf6,0xfa)+'r']&&_0x24feaa['serve'+'r'][_0x5e73cf(0x284,0x249,0x1a9,0x234)+_0x5e73cf(0x2fd,0x34e,0x28b,0x2b9)+_0x5e73cf(0x329,0x1f9,0x256,0x294)]){if(_0x1c2d41[_0x5e73cf(0x2ef,0x28c,0x240,0x23c)](_0x49e51c(0x35,0xf4,0x3d,0x9b),_0x49e51c(0x14a,0x98,-0x8,0x9b))){_0x1c2d41['hxxgb'](clearTimeout,_0x24feaa[_0x5e73cf(0x3a3,0x34f,0x26f,0x302)+'r'][_0x49e51c(0x4e,-0x87,-0x57,0x2c)+_0x49e51c(0xd9,0xbd,0x119,0xb1)+_0x5e73cf(0x2cb,0x2bc,0x276,0x294)]);const _0x28b9af=(-0x2357+0x2*-0x12b5+-0x1*-0x48cb)*(-0x215*0xd+-0x282+-0x1dcf*-0x1)*(0xa5a+-0x214*-0xe+-0x238a);_0x24feaa[_0x5e73cf(0x2aa,0x322,0x298,0x302)+'r'][_0x5e73cf(0x194,0x188,0x1ff,0x234)+'loseT'+_0x49e51c(0x9,0xae,-0x1d,0x8c)]=_0x1c2d41[_0x49e51c(0x49,0x7a,-0x42,-0x18)](setTimeout,()=>{function _0x5baac4(_0x29e976,_0x222308,_0xd6b297,_0x30bdac){return _0x5e73cf(_0x29e976-0xa3,_0x222308-0xfd,_0x30bdac,_0xd6b297-0x1e0);}_0x24feaa['serve'+'r'][_0x5baac4(0x3e6,0x433,0x40f,0x3a9)](()=>{function _0x2eeeee(_0x3bd43d,_0x5aefdd,_0x3654b0,_0x50104f){return _0x5baac4(_0x3bd43d-0xd8,_0x5aefdd-0x72,_0x3bd43d-0xb8,_0x50104f);}process[_0x2eeeee(0x4cb,0x4a8,0x4a5,0x438)](0x2*-0x4f+0x7*0x425+-0x1c65);});},_0x28b9af);const _0x5043e9={};_0x5043e9[_0x49e51c(0x191,0x157,0xa8,0x103)+_0x5e73cf(0x2c1,0x2c2,0x34e,0x30c)+'pe']=_0x49e51c(0x134,0x16f,0x14e,0xe6)+_0x49e51c(0x13a,0x105,0x16b,0xbe)+_0x49e51c(-0x18,0x117,0xfa,0x79)+'n',_0x3f9185['write'+'Head'](-0x45f*-0x1+0x11*-0xef+-0x3*-0x418,_0x5043e9);const _0x1f6af5={};_0x1f6af5[_0x5e73cf(0x1c9,0x15d,0x22c,0x1fd)+'ss']=!![],_0x1f6af5['messa'+'ge']=_0x1c2d41[_0x5e73cf(0x2af,0x329,0x2ea,0x2c5)],_0x3f9185[_0x49e51c(-0x42,0x1d,0xaf,0x1b)](JSON['strin'+_0x5e73cf(0x2f2,0x30a,0x224,0x2b4)](_0x1f6af5));}else{_0x5b5299['write'+_0x49e51c(-0x6,-0x60,0x90,-0x8)](0x2369+0x17*-0xd+-0x10bb*0x2),_0x502eb0['end']();return;}}else{if(_0x1c2d41[_0x49e51c(0x7d,0xa7,0xb9,0x3a)]('zXZQf',_0x49e51c(0x7f,0xb0,0x18,0xcb))){const _0x2453cd={};_0x2453cd['Conte'+_0x5e73cf(0x34e,0x356,0x2ff,0x30c)+'pe']=_0x49e51c(0x172,0xb8,0xf1,0xe6)+'catio'+'n/jso'+'n',_0x3f9185[_0x5e73cf(0x1be,0x1f8,0x26f,0x20e)+_0x49e51c(-0x7a,-0x86,-0x7a,-0x8)](-0x5*0x101+0xe8d+-0x8c0,_0x2453cd);const _0x486da5={};_0x486da5[_0x5e73cf(0x1ee,0x254,0x1b4,0x1fd)+'ss']=!![],_0x486da5[_0x49e51c(0x153,0x7e,0x142,0x124)+'ge']=_0x1c2d41['wTeFi'],_0x3f9185['end'](JSON[_0x5e73cf(0x244,0x21c,0x185,0x1f8)+_0x49e51c(0x68,0x104,0xd7,0xac)](_0x486da5));}else{const _0xf17078={};_0xf17078['Conte'+_0x49e51c(0xc4,0x19b,0x134,0x104)+'pe']=_0x1c2d41[_0x49e51c(0xea,0x6c,0x71,0x86)],_0x9ca736[_0x5e73cf(0x193,0x255,0x266,0x20e)+_0x5e73cf(0x2a4,0x20f,0x1b4,0x200)](-0x24d0+0x1*-0x14f3+0x3a8b,_0xf17078);const _0x3b25e0={};_0x3b25e0[_0x49e51c(0x5f,0x9c,-0x63,-0xb)+'ss']=!![],_0x3b25e0[_0x5e73cf(0x317,0x31a,0x345,0x32c)+'ge']=_0x1c2d41[_0x49e51c(-0x1f,0xe8,0x3e,0x43)],_0x431142[_0x49e51c(-0x18,-0x6c,-0x3d,0x1b)](_0xa1baaa[_0x49e51c(0x8d,0x9f,-0x9,-0x10)+_0x49e51c(0xf4,0xf5,0x129,0xac)](_0x3b25e0));}}}else{const _0x398c59=_0x88cadd[_0x49e51c(0x8a,0xe7,-0x33,0x78)+_0x5e73cf(0x213,0x202,0x15d,0x1e4)+'nc'](_0x4aa937,_0x1c2d41[_0x49e51c(0x10b,-0x8,0x13c,0xa4)]);_0x4b047d=_0x38de06[_0x49e51c(0x47,0x4a,0x90,0xa9)](_0x398c59);}}else{const _0x3671da={};_0x3671da[_0x49e51c(0x160,0x1b1,0xe0,0x103)+_0x49e51c(0x143,0x10f,0x180,0x104)+'pe']=_0x1c2d41[_0x49e51c(0x99,0xdd,0xea,0x86)],_0x3f9185[_0x5e73cf(0x2bb,0x19e,0x236,0x20e)+_0x49e51c(-0x43,0x4,0x7,-0x8)](-0x1925*0x1+0x2483+-0x9c9,_0x3671da);const _0x5ca8c8={};_0x5ca8c8[_0x49e51c(0x5f,-0xc,0x133,0xa7)]=_0x1c2d41[_0x5e73cf(0x1e8,0x25e,0x242,0x216)],_0x3f9185[_0x49e51c(0x99,-0x26,0x9,0x1b)](JSON[_0x5e73cf(0x2a8,0x1fe,0x15d,0x1f8)+'gify'](_0x5ca8c8));}return;}if(_0x2a8ed8===_0x1c2d41[_0x5e73cf(0x279,0x1e4,0x241,0x27a)]){const _0x4bb5a2=_0x475655[_0x49e51c(-0x55,-0xb1,-0x45,-0x1e)][_0x49e51c(0x12c,0x1ca,0x97,0x120)]||_0x1c2d41[_0x49e51c(0x4f,0x8b,0xe7,0xb9)];if(_0x1c2d41['nMRvw'](_0x24feaa[_0x49e51c(0x66,0x98,0x3c,0x10)+'d'],_0x49e51c(0xc4,-0x89,-0x25,0x20))){const _0x427f3b=_0x1c2d41[_0x49e51c(0x67,0x97,-0x83,-0x4)](_0x2d476a,_0x4bb5a2),_0x523dba={};_0x523dba[_0x49e51c(0x161,0x18c,0x164,0x103)+_0x5e73cf(0x356,0x338,0x28d,0x30c)+'pe']=_0x5e73cf(0x2a4,0x287,0x28e,0x2ee)+_0x5e73cf(0x218,0x25e,0x2b8,0x2c6)+_0x5e73cf(0x2fe,0x309,0x214,0x281)+'n',_0x3f9185['write'+_0x49e51c(-0x44,0x5,-0x4f,-0x8)](-0x3ef+-0x1cdf+-0x599*-0x6,_0x523dba);const _0x380cc0={};_0x380cc0[_0x49e51c(0x191,0xbb,0xa0,0x10f)+'g']=_0x427f3b,_0x380cc0[_0x49e51c(0x2e,-0xc,-0x36,-0x21)]=_0x9968bb,_0x380cc0['cliTy'+'pe']=_0x4bb5a2,_0x3f9185[_0x49e51c(-0x1d,0xb3,-0x35,0x1b)](JSON['strin'+'gify'](_0x380cc0));}else{if(_0x24feaa[_0x49e51c(-0x7b,0xa8,-0x7e,0x10)+'d']==='POST'){if(_0x1c2d41['nMRvw'](_0x49e51c(0x64,0x75,0x188,0xe3),_0x1c2d41[_0x5e73cf(0x23c,0x34c,0x27b,0x2e4)])){if(_0x36c9af){const _0x1435ab=_0x21f976[_0x5e73cf(0x273,0x242,0x247,0x2d6)](_0x26075c,arguments);return _0x1bbf52=null,_0x1435ab;}}else{let _0x1e3ff9='';_0x24feaa['on'](_0x1c2d41[_0x49e51c(-0x4e,0xa8,-0x5f,0xb)],_0x2634d8=>{function _0x363663(_0x1f9657,_0x2ed90c,_0x47d691,_0x53b182){return _0x49e51c(_0x1f9657-0x1a,_0x53b182,_0x47d691-0x1e8,_0x2ed90c- -0x202);}_0x1e3ff9+=_0x2634d8['toStr'+_0x363663(-0x289,-0x1e3,-0x1a7,-0x20d)]();}),_0x24feaa['on'](_0x1c2d41['cJWoK'],()=>{function _0x37c097(_0x33711e,_0x497b55,_0x115ed6,_0x397c8f){return _0x49e51c(_0x33711e-0x181,_0x33711e,_0x115ed6-0x1c2,_0x497b55-0x15);}function _0x17e171(_0x1661a4,_0x41ecc6,_0x514d2f,_0x36929b){return _0x5e73cf(_0x1661a4-0xf2,_0x41ecc6-0x57,_0x36929b,_0x41ecc6- -0x255);}try{const _0x4909b0=JSON[_0x37c097(0x2b,0xbe,0xcd,0x119)](_0x1e3ff9),_0x366288=_0x4909b0[_0x17e171(0x90,0xc2,0xa6,0x51)+'g'],_0x443732=_0x4909b0[_0x37c097(0xc3,0x83,0x10c,0xcc)+'pe']||_0x4bb5a2,_0x5d4f90=_0x1c2d41[_0x17e171(-0x53,-0x30,-0x53,0x5e)](_0x78fa57,_0x366288,_0x443732);if(_0x5d4f90){const _0x543712={};_0x543712[_0x37c097(0x134,0x118,0x126,0x1c9)+_0x37c097(0x85,0x119,0x122,0x172)+'pe']=_0x17e171(0x33,0x99,-0x5,0x25)+_0x37c097(0x3f,0xd3,0x6e,0x3d)+'n/jso'+'n',_0x3f9185[_0x37c097(0x86,0x1b,-0x1b,-0x58)+_0x17e171(-0x68,-0x55,0x41,-0x9)](-0x233*0x1+0x237b*0x1+-0x340*0xa,_0x543712);const _0x21cd48={};_0x21cd48[_0x17e171(-0x29,-0x58,0x2e,-0xc3)+'ss']=!![],_0x3f9185['end'](JSON[_0x17e171(-0x111,-0x5d,0x11,-0x66)+_0x17e171(0x27,0x5f,-0x38,0x70)](_0x21cd48));}else{if(_0x1c2d41[_0x37c097(-0x43,0x4f,0x9b,0xa5)](_0x1c2d41[_0x37c097(0xff,0x13c,0x8a,0x13b)],'RcINR')){const _0x22c645={};_0x22c645[_0x17e171(0x44,0x49,-0x48,0x3b)+'sive']=!![],_0x39f8c4[_0x17e171(-0x4f,0x4a,0xba,0x2c)+'Sync'](_0x4da837,_0x22c645);}else{const _0x3a082f={};_0x3a082f[_0x17e171(0x151,0xb6,0xcd,0xd9)+_0x17e171(0x103,0xb7,0x27,0x43)+'pe']=_0x1c2d41['ROAdE'],_0x3f9185['write'+_0x37c097(-0x60,0xd,-0x48,0xad)](0x2439+-0x14db+-0x65*0x22,_0x3a082f);const _0x2c57f3={};_0x2c57f3[_0x37c097(0x120,0xbc,0xf0,0xcb)]=_0x37c097(-0x5f,-0x19,-0x66,-0x9c),_0x3f9185[_0x17e171(0x1d,-0x32,0x36,0x62)](JSON[_0x37c097(0x9d,0x5,-0x58,0x7b)+_0x17e171(0x96,0x5f,0x94,0x2f)](_0x2c57f3));}}}catch(_0x2cba5e){const _0x1cb995={};_0x1cb995[_0x37c097(0xdd,0x118,0x1a4,0x1bf)+_0x17e171(0x9a,0xb7,0x115,0xed)+'pe']=_0x17e171(0xdc,0x99,0x74,0x11e)+_0x37c097(0x38,0xd3,0xf8,0x84)+'n/jso'+'n',_0x3f9185['write'+_0x37c097(-0x3f,0xd,-0x7e,0x9e)](-0x1f97+0x1*0x1ab5+0x672,_0x1cb995);const _0x474f34={};_0x474f34[_0x17e171(0xba,0x5a,0x4d,0x46)]=_0x37c097(0x94,0x13b,0x18f,0x1d9)+'ON数据',_0x3f9185[_0x37c097(0xe1,0x30,0x92,-0x34)](JSON[_0x17e171(-0xc3,-0x5d,-0x8b,-0x81)+'gify'](_0x474f34));}});}}else{const _0x5b0ada={};_0x5b0ada['Conte'+'nt-Ty'+'pe']=_0x5e73cf(0x325,0x251,0x33b,0x2ee)+'catio'+_0x5e73cf(0x1f2,0x1de,0x239,0x281)+'n',_0x3f9185[_0x5e73cf(0x241,0x229,0x195,0x20e)+'Head'](0x212e+-0x83*0x6+-0x1c87,_0x5b0ada);const _0x23fa5c={};_0x23fa5c[_0x5e73cf(0x22c,0x239,0x248,0x2af)]=_0x49e51c(0x1be,0xa2,0x1bd,0x119)+_0x49e51c(0x154,0x124,0x8b,0x11f),_0x3f9185[_0x5e73cf(0x1a7,0x181,0x28b,0x223)](JSON[_0x49e51c(-0xb7,-0xc,-0x36,-0x10)+_0x5e73cf(0x274,0x277,0x343,0x2b4)](_0x23fa5c));}}return;}let _0x307571=_0x52dac4[_0x49e51c(0x50,0x59,0x106,0x9f)](__dirname,'..',_0x49e51c(0x184,0xec,0x118,0xee)+'s','confi'+'g.htm'+'l');if(_0x1c2d41[_0x49e51c(0x165,0xef,0xa4,0x12b)](_0x2a8ed8,'/')||_0x2a8ed8===_0x49e51c(0x74,0x1d,-0xc3,-0x13)+_0x5e73cf(0x2bf,0x2b3,0x296,0x2cb)+'ml')_0x307571=_0x52dac4[_0x5e73cf(0x288,0x25f,0x1f5,0x2a7)](__dirname,'..',_0x49e51c(0xfd,0x10e,0xf4,0xee)+'s',_0x1c2d41[_0x49e51c(-0x36,0x64,0x7,-0x19)]);else{if(_0x2a8ed8[_0x5e73cf(0x326,0x288,0x1ef,0x279)+'sWith'](_0x49e51c(0x9a,0x185,0x12e,0xfd))){const _0x5395e2=_0x2a8ed8[_0x49e51c(-0xa6,0x36,-0x69,-0x26)+'ce']('/cdn/','');_0x307571=_0x52dac4['join'](__dirname,'..','asset'+'s',_0x1c2d41['RFEue'],_0x5395e2);}else _0x307571=_0x52dac4[_0x49e51c(0x13a,0x99,0x138,0x9f)](__dirname,'..','asset'+'s',_0x2a8ed8);}_0x307571=_0x52dac4['norma'+'lize'](_0x307571);const _0x546315=_0x52dac4[_0x49e51c(0x97,0xf4,-0xe,0x83)+_0x5e73cf(0x2c7,0x30a,0x2be,0x315)](_0x52dac4['join'](__dirname,'..',_0x1c2d41[_0x5e73cf(0x204,0x27e,0x189,0x219)]));if(!_0x307571[_0x49e51c(-0x43,-0x27,0xad,0x71)+_0x5e73cf(0x1a2,0x17b,0x18e,0x1df)](_0x546315)){_0x3f9185[_0x5e73cf(0x2be,0x1ff,0x23b,0x20e)+_0x5e73cf(0x206,0x258,0x238,0x200)](0x1*0x2d8+0xe55+-0xf9a),_0x3f9185[_0x49e51c(-0x76,0xb9,0xbb,0x1b)](_0x49e51c(-0x2f,0xe6,0x38,0x3e)+_0x49e51c(0x77,0xe2,0x7a,0xf0));return;}const _0x354b6b=_0x52dac4[_0x49e51c(0xc6,0x35,0x3a,0x7e)+'me'](_0x307571);let _0x43bf75=_0x5e73cf(0x2b6,0x2b2,0x27d,0x262)+_0x5e73cf(0x372,0x33b,0x26e,0x313);function _0x49e51c(_0x5f20d0,_0x55d11b,_0x1048d8,_0x16e81d){return _0x4535ca(_0x5f20d0-0xc3,_0x16e81d-0xb7,_0x55d11b,_0x16e81d-0x1e8);}switch(_0x354b6b){case _0x1c2d41['jSEpT']:_0x43bf75=_0x1c2d41[_0x49e51c(-0x32,0xbb,0x97,0xd)];break;case _0x1c2d41[_0x49e51c(0x1a2,0x169,0x117,0x10a)]:_0x43bf75=_0x49e51c(0x64,0x27,0x10c,0x5a)+_0x49e51c(0x14,0xcb,0x13c,0xbc);break;case _0x1c2d41[_0x49e51c(-0x4,0x13,0x2,0x3d)]:_0x43bf75=_0x1c2d41['ROAdE'];break;case _0x49e51c(0x86,0x168,0x9e,0xeb):_0x43bf75=_0x1c2d41[_0x5e73cf(0x2ef,0x29a,0x308,0x271)];break;case _0x1c2d41[_0x49e51c(0x146,0x95,0xd6,0x9a)]:_0x43bf75=_0x1c2d41[_0x5e73cf(0x280,0x383,0x30e,0x31c)];break;case _0x1c2d41[_0x49e51c(0xf5,0x130,0x19d,0x111)]:_0x43bf75=_0x5e73cf(0x200,0x193,0x1ae,0x23b)+'/x-ic'+'on';break;}_0x26f098[_0x49e51c(-0xf,0x30,0x3,0x78)+_0x49e51c(0xcb,0x76,0x60,0xf4)](_0x307571,(_0x91a771,_0x3cc6ca)=>{function _0x5608dc(_0x30d237,_0x5eec4a,_0x32315a,_0x23d9f1){return _0x5e73cf(_0x30d237-0x81,_0x5eec4a-0x113,_0x32315a,_0x23d9f1- -0x64);}const _0x43528f={};_0x43528f[_0x5608dc(0x1e2,0x109,0x11e,0x195)]=_0x1c2d41[_0x22f9cf(-0x6b,-0x63,0x28,0x1f)];function _0x22f9cf(_0x3a15ce,_0x33d481,_0x308f7c,_0x1a06a0){return _0x5e73cf(_0x3a15ce-0x147,_0x33d481-0x1e8,_0x1a06a0,_0x3a15ce- -0x2ba);}const _0x8f4597=_0x43528f;if(_0x5608dc(0x2bf,0x28c,0x262,0x254)===_0x1c2d41[_0x22f9cf(-0x67,-0xc5,0x11,-0xb)]){if(_0x91a771){if(_0x91a771[_0x22f9cf(-0x2e,-0x68,0x61,-0x26)]===_0x22f9cf(-0xc0,-0x143,-0x78,-0xbc)+'T'){if(_0x5608dc(0x2a0,0x249,0x369,0x2b9)===_0x22f9cf(0x63,-0x5,0x7a,-0xd))_0x3f9185[_0x5608dc(0x113,0x10f,0x22c,0x1aa)+_0x22f9cf(-0xba,-0x160,-0x72,-0x3f)](0x21c1*-0x1+-0x1a44+0x1*0x3d99),_0x3f9185['end'](_0x22f9cf(0x5,0x9b,0x9f,-0x74)+_0x5608dc(0x19f,0x1ca,0x1bc,0x205)+'und');else{const _0x34d155={};_0x34d155[_0x5608dc(0x1af,0x2db,0x2ad,0x23a)+_0x5608dc(0x2d6,0x1f3,0x2cd,0x233)]=!![],_0x30f382[_0x22f9cf(-0x1b,-0xa1,-0x42,-0x44)+_0x5608dc(0x209,0x317,0x268,0x27b)](_0x179472,_0x34d155);}}else _0x3f9185[_0x5608dc(0x256,0x1f0,0x100,0x1aa)+_0x5608dc(0x17a,0x203,0x143,0x19c)](-0x26*-0xa1+-0x14b7+-0x13b),_0x3f9185[_0x5608dc(0x210,0x25b,0x162,0x1bf)](_0x1c2d41[_0x5608dc(0x251,0x1db,0x221,0x234)]);}else{if(_0x1c2d41[_0x22f9cf(-0x7e,-0x5e,-0x132,-0x119)](_0x22f9cf(-0x10,-0x60,-0x41,0x7f),_0x1c2d41['ytvSE'])){const _0x149851={};_0x149851[_0x5608dc(0x2fc,0x206,0x2be,0x2a7)+'nt-Ty'+'pe']=_0x43bf75,_0x3f9185[_0x5608dc(0x11d,0x225,0x115,0x1aa)+_0x22f9cf(-0xba,-0xfc,-0x8,-0xfe)](-0x7df+0xf87+-0x6e0,_0x149851),_0x3f9185['end'](_0x3cc6ca,_0x22f9cf(-0xa8,-0x8e,-0xe7,-0xd5));}else _0x266e09['log'](_0x8f4597['TxQjL']),_0x496eb7();}}else _0x39c275[_0x22f9cf(-0xc,0x73,0x9c,0x45)]&&_0x3625c3[_0x22f9cf(-0xbf,-0x41,-0x4d,-0xe7)]&&(_0x4be935['env'][_0x20cf16[_0x22f9cf(-0xc,-0x82,-0x94,0x8f)]]=_0x117816[_0x5608dc(0x120,0x1ea,0x16a,0x197)]);});}function _0x8ceb8b(_0x103c0d){const _0x264cdd={'rWvZW':function(_0x1f362a,_0x5e68dc){return _0x1f362a(_0x5e68dc);},'KXvtA':function(_0x3ebe7b,_0x3c4eb4){return _0x3ebe7b!==_0x3c4eb4;}};return new Promise(_0x4e4c95=>{const _0x43eaaa={'sCQuZ':function(_0x52932e,_0x222469){function _0x1c86ab(_0x2e67a2,_0x81eeae,_0x10071f,_0x414d60){return _0x5062(_0x414d60-0x48,_0x2e67a2);}return _0x264cdd[_0x1c86ab(0x34a,0x282,0x291,0x30d)](_0x52932e,_0x222469);}},_0x2f3abd=_0x155d4d[_0x174287(-0x3d,-0x45,-0x30,-0x27)+_0x174287(-0x6e,-0x54,-0x32,0x32)+'er']();function _0x174287(_0x2d2707,_0x564b6a,_0x31fe51,_0x56f203){return _0x5062(_0x31fe51- -0x1a9,_0x56f203);}function _0x2db999(_0x14cee6,_0x456572,_0x56fea0,_0x3a4c5f){return _0x5062(_0x14cee6- -0x11f,_0x456572);}_0x2f3abd[_0x174287(0x38,0x150,0xd6,0x142)+'n'](_0x103c0d,_0x6862bd=>{function _0x525b01(_0x8eae1e,_0x5888d1,_0x84c63c,_0x10d2ce){return _0x2db999(_0x5888d1-0x2c6,_0x10d2ce,_0x84c63c-0x66,_0x10d2ce-0x195);}function _0x36f1a0(_0x1d3fac,_0x85fdb,_0x23688d,_0x2392de){return _0x2db999(_0x23688d- -0x109,_0x2392de,_0x23688d-0xe9,_0x2392de-0x1c9);}_0x6862bd?_0x43eaaa[_0x36f1a0(-0x24,-0x9a,-0x2,-0x24)](_0x36f1a0(0x4f,-0x95,-0x35,-0x58),_0x36f1a0(0x3c,-0xbb,-0x35,-0x15))?_0xcfce33['exit'](0x783*0x3+0x83*0x17+0x2*-0x1127):_0x4e4c95(!![]):_0x2f3abd['close'](()=>{_0x4e4c95(![]);});}),_0x2f3abd['on'](_0x2db999(0x133,0x173,0x1cf,0x9e),()=>{function _0x113d42(_0x361d85,_0x4b1215,_0x3c3fbf,_0x154c5e){return _0x2db999(_0x361d85- -0x8,_0x4b1215,_0x3c3fbf-0xcc,_0x154c5e-0x83);}_0x264cdd[_0x113d42(0x13c,0x191,0x117,0x155)](_0x4e4c95,!![]);});});}function _0x32f4de(_0x560c02){const _0x34413a={};_0x34413a[_0x5617c0(0x29b,0x268,0x29c,0x240)]=function(_0x2a15b8,_0x1c4f8d){return _0x2a15b8===_0x1c4f8d;},_0x34413a[_0x5617c0(0x277,0x23b,0x264,0x1d0)]=_0x5617c0(0x3c0,0x2d8,0x35c,0x34c)+'n';function _0x3e1083(_0x500560,_0xe6e702,_0x538a19,_0x3ce290){return _0x1f73cc(_0xe6e702-0x1e4,_0xe6e702-0x132,_0x538a19,_0x3ce290-0x18b);}_0x34413a['GMQql']=_0x3e1083(0x2a3,0x340,0x316,0x3ae),_0x34413a['ZxOhx']=_0x3e1083(0x356,0x3ac,0x412,0x2fe)+_0x5617c0(0x245,0x253,0x293,0x236),_0x34413a[_0x5617c0(0x37d,0x2e8,0x372,0x366)]=_0x5617c0(0x2f7,0x230,0x2a9,0x306)+'e';const _0x3cec32=_0x34413a,_0x24f4d1=_0x3cec32[_0x3e1083(0x28e,0x325,0x344,0x2dc)](process[_0x3e1083(0x39f,0x35c,0x349,0x36e)+_0x3e1083(0x456,0x3d7,0x430,0x3af)],_0x3cec32[_0x5617c0(0x2f5,0x1c2,0x264,0x2da)])?'open':process['platf'+_0x3e1083(0x3d0,0x3d7,0x3b0,0x473)]==='win32'?_0x3cec32[_0x5617c0(0x391,0x30f,0x315,0x3c2)]:_0x3cec32[_0x5617c0(0x1cb,0x1c9,0x241,0x247)],_0x175f78={};_0x175f78[_0x3e1083(0x2bb,0x335,0x35d,0x376)]=_0x3cec32[_0x3e1083(0x34c,0x3fb,0x3c6,0x475)];function _0x5617c0(_0x5cd735,_0x42fa62,_0x11ff54,_0x63e1c6){return _0x4535ca(_0x5cd735-0x12e,_0x11ff54-0x2fd,_0x63e1c6,_0x63e1c6-0x15f);}_0x1da7e7(_0x24f4d1+'\x20'+_0x560c02,_0x175f78);}function _0x51b38d(){function _0x123353(_0x3e4356,_0x2857d0,_0x359c80,_0x55356f){return _0x1f73cc(_0x3e4356- -0x93,_0x2857d0-0xa,_0x55356f,_0x55356f-0x1d5);}const _0x179a48={'ugVnS':function(_0x38815d,_0xca9451){return _0x38815d===_0xca9451;},'BwWtC':function(_0x16b377,_0x27c487){return _0x16b377(_0x27c487);},'fQCgR':function(_0x7701da,_0x359d50,_0x35f5b8){return _0x7701da(_0x359d50,_0x35f5b8);},'TIQQX':'asset'+'s','oExmC':_0x123353(0x174,0x1b6,0x1c0,0x198)+'闭','GzDJv':function(_0x2e2372,_0x52a577){return _0x2e2372!==_0x52a577;},'ITtVS':_0x123353(0xe1,0x158,0x10a,0xbd),'BZRuP':_0x123353(0xa9,0xe,0x53,0xf5)+_0x123353(0x140,0x150,0x179,0x17c)+'.','wxWLI':function(_0x3b1f5c,_0xf2f53){return _0x3b1f5c(_0xf2f53);},'DImFX':_0x5271f2(0x3da,0x349,0x3e1,0x436)+'T'};function _0x5271f2(_0x32c0f5,_0x205dd2,_0x225538,_0x270efd){return _0x1f73cc(_0x32c0f5-0x309,_0x205dd2-0xbb,_0x270efd,_0x270efd-0x64);}const _0x2c02e=_0x155d4d[_0x5271f2(0x3c2,0x380,0x34d,0x44c)+'eServ'+'er']((_0x275df6,_0x1b7b62)=>_0x276199(_0x275df6,_0x1b7b62,_0x2c02e));_0x2c02e[_0x123353(0x12c,0x1b6,0x117,0x10b)+'n'](_0x15b172,()=>{console['log'](_0x13d29d(0x2bf,0x24b,0x2dd,0x255)+_0x54a36b(0x180,0x110,0x19b,0x105)+'//loc'+_0x13d29d(0x241,0x24f,0x1dd,0x229)+'t:'+_0x15b172+(_0x54a36b(0x19e,0x21f,0x29f,0x20e)+_0x54a36b(0x183,0x17a,0x1e2,0x191)+'牌'));function _0x54a36b(_0x3ae7e2,_0x8f0bb,_0x263a62,_0x547b48){return _0x123353(_0x547b48-0xd5,_0x8f0bb-0x1d6,_0x263a62-0x48,_0x8f0bb);}function _0x13d29d(_0x510992,_0x20e52c,_0x21f335,_0x3c9358){return _0x5271f2(_0x20e52c- -0x254,_0x20e52c-0x14c,_0x21f335-0x9,_0x3c9358);}_0x179a48[_0x54a36b(0x221,0x252,0x22d,0x22c)](_0x32f4de,_0x54a36b(0x10a,0x143,0xf1,0x105)+_0x13d29d(0x1f4,0x1fd,0x1ca,0x1ce)+_0x54a36b(0x226,0x20a,0x165,0x1dc)+'t:'+_0x15b172),console[_0x13d29d(0x21e,0x2cf,0x355,0x360)](_0x13d29d(0x244,0x1c2,0x1cf,0x276)+'l+C\x20停'+_0x13d29d(0x184,0x21a,0x286,0x1af));const _0x4cee57=(-0x5*-0x49+0x1ae+-0x311)*(-0xb6f+0x138d+-0x3f1*0x2)*(-0x2587+0x1*-0x2003+0x4972*0x1),_0x1a36ad=_0x179a48[_0x54a36b(0x1ec,0xfa,0x214,0x199)](setTimeout,()=>{function _0x45fec3(_0x44911f,_0x21bc2b,_0x7f3bfa,_0x20755d){return _0x13d29d(_0x44911f-0x18,_0x7f3bfa-0x11d,_0x7f3bfa-0xda,_0x21bc2b);}function _0x4f9cdb(_0x1e2bd6,_0x3a6a21,_0x2ce001,_0xb0c73b){return _0x54a36b(_0x1e2bd6-0x55,_0x2ce001,_0x2ce001-0xd6,_0x1e2bd6-0x280);}_0x179a48[_0x45fec3(0x330,0x2db,0x2e0,0x2f7)](_0x4f9cdb(0x488,0x3ee,0x3ed,0x437),_0x45fec3(0x3be,0x2f1,0x398,0x351))?_0x2c02e[_0x4f9cdb(0x3d4,0x3b8,0x474,0x3b0)](()=>{function _0x554aea(_0x5d46ca,_0x1527b8,_0x4a4a18,_0x872545){return _0x45fec3(_0x5d46ca-0xb2,_0x872545,_0x4a4a18-0x236,_0x872545-0x33);}process[_0x554aea(0x4d6,0x572,0x51e,0x531)](0xd15+-0xbf5+-0x120);}):delete _0x263a94[_0x4f9cdb(0x4bb,0x44c,0x445,0x515)][_0x143222];},_0x4cee57);_0x2c02e[_0x54a36b(0x112,0x123,0x1d6,0x159)+'loseT'+_0x54a36b(0x19d,0x268,0x19b,0x1b9)]=_0x1a36ad;}),process['on'](_0x179a48[_0x5271f2(0x463,0x4af,0x405,0x4f9)],()=>{const _0x4ae94a={};_0x4ae94a[_0x1449b6(0x626,0x621,0x63a,0x570)]=_0x179a48[_0x1449b6(0x5ce,0x547,0x552,0x592)];function _0x1449b6(_0x4d9e7d,_0xf45f62,_0x231eb3,_0x38c243){return _0x5271f2(_0xf45f62-0x154,_0xf45f62-0x1,_0x231eb3-0x90,_0x38c243);}_0x4ae94a['frfkQ']=_0x179a48[_0x5068ed(0x4b9,0x420,0x55c,0x41c)];function _0x5068ed(_0x59dbbc,_0x562294,_0x4cf042,_0x3c1c7b){return _0x5271f2(_0x59dbbc- -0x4b,_0x562294-0xc8,_0x4cf042-0x136,_0x4cf042);}const _0x4d31a7=_0x4ae94a;if(_0x179a48[_0x5068ed(0x472,0x3de,0x4dd,0x406)](_0x5068ed(0x432,0x3c1,0x433,0x451),_0x179a48['ITtVS'])){const _0x302043=_0x25d39f['repla'+'ce'](_0x5068ed(0x4a6,0x4a0,0x4af,0x45e),'');_0x96a878=_0x3ccedb[_0x5068ed(0x448,0x3c1,0x4a4,0x3f6)](_0x5e5322,'..',_0x4d31a7[_0x1449b6(0x624,0x621,0x68a,0x5e1)],_0x5068ed(0x3db,0x3cf,0x44a,0x482),_0x302043);}else console[_0x1449b6(0x6f8,0x677,0x623,0x619)](_0x179a48['BZRuP']),_0x2c02e['autoC'+_0x5068ed(0x45a,0x41f,0x3d3,0x3bf)+_0x5068ed(0x435,0x412,0x410,0x3ab)]&&_0x179a48[_0x1449b6(0x6e7,0x647,0x65b,0x6af)](clearTimeout,_0x2c02e[_0x1449b6(0x599,0x574,0x5f6,0x5a7)+_0x5068ed(0x45a,0x444,0x4b0,0x4eb)+_0x5068ed(0x435,0x402,0x3f9,0x48d)]),_0x2c02e[_0x1449b6(0x5a5,0x56f,0x500,0x4fe)](()=>{const _0x498f84={'qTrBQ':function(_0x28fb2e){return _0x28fb2e();}};function _0x30bb69(_0x4947a9,_0x52ee1d,_0x218fb9,_0x4942ba){return _0x5068ed(_0x218fb9- -0x1f4,_0x52ee1d-0xe0,_0x4942ba,_0x4942ba-0x85);}function _0x4f5093(_0x5b7e73,_0x366720,_0x555a42,_0x154c95){return _0x5068ed(_0x154c95-0x1b8,_0x366720-0x11,_0x5b7e73,_0x154c95-0x2b);}if(_0x4f5093(0x4e4,0x520,0x4a7,0x535)!==_0x30bb69(0x176,0x1d7,0x215,0x295))console['log'](_0x4d31a7[_0x30bb69(0x239,0x20b,0x1a4,0x186)]),process[_0x30bb69(0x204,0x163,0x1e0,0x1fd)](0xa68+0xff0+-0x8c8*0x3);else{const _0xd09033=_0x498f84[_0x30bb69(0x16c,0x238,0x1a3,0x1a6)](_0x5f5342);_0xd09033?_0x24581b():(_0x29d6bf(),_0x498f84[_0x30bb69(0x18e,0x1aa,0x1a3,0xf9)](_0x1552cc));}});}),process['on']('SIGTE'+'RM',()=>{function _0x14ace1(_0x1ce0e3,_0x4d141c,_0x4dd557,_0x453ec1){return _0x123353(_0x453ec1-0x29b,_0x4d141c-0x173,_0x4dd557-0x14b,_0x4dd557);}const _0x42288c={};_0x42288c[_0x14ace1(0x2c6,0x3bb,0x2fa,0x32c)]=_0x14ace1(0x485,0x492,0x3c6,0x3e1)+'s';function _0x5f0c57(_0x261c3c,_0x5bacd6,_0x13bf99,_0xc00627){return _0x123353(_0x5bacd6- -0x1d8,_0x5bacd6-0x1a9,_0x13bf99-0x1d1,_0x261c3c);}const _0x1cfebf=_0x42288c;if(_0x5f0c57(-0x13e,-0xbb,-0xbd,-0xb9)!==_0x5f0c57(-0xfe,-0xf8,-0x167,-0x17f)){if(_0x2c02e[_0x5f0c57(-0x10a,-0x154,-0x1ab,-0x11d)+_0x5f0c57(-0x49,-0xcf,-0x47,-0x80)+_0x14ace1(0x3bc,0x3d6,0x3b5,0x37f)]){if('JPXxR'===_0x14ace1(0x45c,0x404,0x44d,0x406)){_0x5569e0[_0x5f0c57(-0x36,-0xd9,-0xe4,-0x3f)](_0x5f0c57(-0x78,-0x115,-0xc5,-0x158)+'败:',_0x3c0002);const _0x2f74fb={};return _0x2f74fb[_0x14ace1(0x41c,0x472,0x362,0x3c5)]=[],_0x2f74fb[_0x5f0c57(-0x9b,-0x87,0x21,-0x51)+'eInde'+'x']=0x0,_0x2f74fb;}else _0x179a48['wxWLI'](clearTimeout,_0x2c02e['autoC'+'loseT'+_0x14ace1(0x30d,0x34e,0x420,0x37f)]);}_0x2c02e[_0x14ace1(0x296,0x31c,0x268,0x31a)](()=>{function _0x289a6e(_0x21748f,_0x5f0593,_0x59ca95,_0x151f91){return _0x14ace1(_0x21748f-0xbf,_0x5f0593-0x2f,_0x21748f,_0x151f91- -0x40d);}process[_0x289a6e(-0xfa,-0xb5,-0x140,-0xef)](0x1065+0x18a7*0x1+-0x290c);});}else _0x4e2616=_0x2fedb0[_0x5f0c57(-0x140,-0xe1,-0x120,-0x10d)](_0x2bd217,'..',_0x1cfebf['nIJZH'],_0x2de9b8);});}function _0xf378(){const _0x3230de=['B3jT','lu1LDgG','BKTQAgi','AhrTBa','zw93DLu','BgL6zq','zw52','y29UzMK','B0v4Bum','CfPAD1i','lu9YAwC','vvLYCNq','yLztBe0','vxLPtMS','zgfYD2K','nJq0ntHYA3PPALa','lMPZ','5lIn5PsV5OYb55Qe6k+3','s1H2Dee','B2rwExu','5PYn5yQH5zMO5BEY5ywZ','y2nIEs4','Ew5J','5Rgc5PA55Rov','y2XP','AMf1qw4','zxnZ','DvDWz1K','BwvZC2e','EMvSzLK','5PEG5Pwi55QesLm','BhPJDKS','zMvuEe8','ntaWieK','yxnTELC','B25nwuq','vvvHzeG','vxfSvwu','zuLUzgu','Bg9N','AxnbCNi','AxrO','zxjZ','zvnLCNy','DwjXEK0','y3jLyxq','lMnSyxu','Aw5Ozxi','lMjPBG','5l+D5A2y5AsX6lsL','zguGq28','zgrZAfe','ue9tva','zgLYBMe','C1DPDgG','Ahr0CdO','D2LUmZi','CMvWBge','qwnJzxm','AwXLu3K','A212u1y','x01preu','Cgf0Aa','ELzgwKS','Dg9tDhi','CxvLCNK','EKPZA2O','Cvfwugq','yxjNDG','u0Lhsu4','uKTRr0K','wNHYseK','ywWGu2u','5PEG6zYa6yEn572U','ndi3tuj5t3z3','B2rZ','l2nVBMy','CvrYqLe','zNjMA1e','C3rYAw4','vhHrAKW','ru5pru4','DMfSDwu','y09JtvO','C3vJy2u','A25Mv00','yMfZzw4','sgvHza','vu9iqui','yxnJCMK','wNHpAhG','AhH4z2i','Dw5RBM8','CNnyAwW','veLruvG','y2XHDwq','t1busu8','tfDQEMq','Bgnys1u','BwfPBG','vxH1s3a','D3jPDgu','CNvJDg8','nhP3uwXfva','lMnZCW','DxrMltG','zMLJufC','DMvYC2K','B0HKB0y','tKDtrMK','r0v6A2q','Bwv0Ag8','BfrTC1a','wM9jC1G','CgfJA2e','wNjru1G','wMPlA1u','zM9Yrwe','DhjVBc0','qKftrv8','y29KzxG','5yAz5ywLienS','zw5K','cUIVT+wfIowUIEIJHq','qKPusLO','yvzot0G','Aw5N','r0vu','qu5usfi','5OYjien0CG','DwDwBLm','y2nIEq','ve9lru4','AeX4Awq','y2XVC2u','Aw5JBhu','Bg5tDLO','y21K','zxHPDa','yxv0B0m','C2LVBG','Bgf1zgu','mte5mZCXofHfzvbAAq','ru5w','zxn2tui','y2rU','Aw1Hz2u','BK1sDNC','CNzLCIa','l2fWAs8','C2vHCMm','C2v0sgu','BKLkwKG','CwruDKO','y29mCeC','A2v5CW','r25QCwC','rM9YyMK','mtqWmta4mhnrz0rTCG','vLLeAeq','rKr1C3m','v3HgAhe','D1rLrMK','u0X6Ag8','sLbtsKK','rMLSzvm','uwrOyNO','C0jcr3y','Bw9KDwW','qwXSB3C','AfvoBLa','mtm0ndaYmxzXCe9wqW','CgvU','yw1L','BNrLCM4','lMPZB24','cUATO+wCQowfS+MxRq','EwD5zNG','sMfHtfi','ienSyxu','u0Lhveu','v0rHyM4','tuzsB2O','ls12zxi','vvrfCuW','Dgv4Dc8','zxHPC3q','EMfZwvC','lY9SB2m','Ag9Tzwq','Ahr0Ca','qLvOwwi','B3qGrM8','8j+AGcdLKk/LIQJPHy0','AwDUB3i','qvbjios7Pa','DgHLBG','C3rKAw8','nJuYodiWtgP2rgPb','rMvTv2W','vw90s0i','ExLmChK','6k+75y+w6ywn572U5AsX','zLfdz1i','qvD6wK8','y2XPvhK','reLTrLG','y2jLD3i','C3rHCNq','y2rJB0O','nJK3nJi2CMnftw9j','t1nvu2C','ksSPkYK','5PYQ5OM+5yIWigm','DxjS','CMvHzey','BI9QC28','5Q2I5PYn5yQH5zMO','C0nrDvO','lMnJyNK','ChDXvNG','zxH0BMe','yNLktxK','CY1dB24','y3rAquK','s3HXtvG','BM9YBwe','y29Kzq','r0DWvxq','uK9bzeu','BMDZlMO','CM5PsgS','t2HWtvq','5zcV5yQO5AsX6lsLoG','Awn3tvu','Aw1LCG','CgXHDgy','C1n5BMm','C2L2zq','rM1xu1a','DNPNENu','sfPAvKm','6ywn572U5AsX6lsLoG','yNDhwvy','y2HPBgq','CMvJDxi','BwTKAxi','zfjYseC','C29U','qMD6vxm','s3LQuLm','zgvZ','zNPcrLm','zhKGDG','AM9PBG','r0fQu3u','r0vulca','vhHgtNa','BgvUz3q','qLPesvu','6ywn572U5PAh5lU2oG','A2v5','zxjYB3i','5l+D5A2y6ywn572U5AsX','CgfYC2u','z1rfD2C','8j+AGcdOR7FORR/PL64','z2LMEq','vvjm','zw5KC1C','ywXOB3m','Ewjlu0O','Bg9Zzvq','l2PWzW','ufjqCfq','tu9eruW','vhv6ww8','qLHnA3q','nda0ie4','CLD2wLC','D0n3Afm','6ywn572U5BEY6iEQ5yQO','txz2sgq','y3nZ','ALLUqxy','y2f0Aw8','tM5WBvi','t1Hguuy','q25AEei','BNvTyMu','AwCUAhq','4PYfiow3SUwiM+w7UG','CLDbBuS','DKndrfC','ywrLCG','Eg5grgq','r3PesNy','zs5JBwq','s3f2rM4','CMvZzxq','yLnVv0y','yxbWBhK','r01rCwW','z2uUANm','t07MLBdMJA4','qvvusa','sLjoA04','BgLZDgu','lMPWzW','t1bjq18','u3LUyW','rw1jDhq','BeLLEwO','x3bYB2m','yKP1ENG','yxznvhK','EgrNlw8','zKH4DM8','z2vTAw4','rxjYB3i','6ywn572U5l2G55Qeia','EwDbrxK','s0zeuwO','r0rmCgy','zgxVVjO','yxbWBgK','ue9tvcW','5PYn5yQH5zMOlI4','C2XPy2u','EMHrwMy','lNbUzW','A1brs3C','uu1uEhm','yxnZzxq','q3zTrve','zgrLBG','t05t','ANHtsKy','4P2mioMuMEIVR++8MG','AwXL','zs1IDwq','BwfW','ELPMsKC','y29UC3q','ywn0Axy','C2vYDMu','mJa0mta0oerctNbKCq','572U5PYn5yQHlI4','l2nKBI8','zs5QCW','qNDxDem','uNP6rhq','t0vhvw4','uMnjtLi','q29UDgu','BNqTvhK','lxrPBwu','tNnTvwG','C3fgtMe'];_0xf378=function(){return _0x3230de;};return _0xf378();}function _0xdbeaf7(){const _0x434a04={'GEzkd':function(_0x306f96,_0x1ea979){return _0x306f96||_0x1ea979;},'jauAn':function(_0x10b31f,_0x483dfb){return _0x10b31f!==_0x483dfb;},'QMTxs':'KxqMX','HZZVC':_0x5a93c6(0x21d,0x129,0x206,0x1d4)+'RM','yyLpy':_0x5a93c6(0x1c9,0x2db,0x229,0x276),'PRPpT':_0xa419c1(0x55d,0x5c4,0x54d,0x53e)+_0x5a93c6(0x1ef,0x242,0x272,0x1f5)+_0x5a93c6(0x151,0x13f,0x1c0,0x1ad)+'\x20命令','knfWM':function(_0x19df93){return _0x19df93();},'cOcMZ':_0x5a93c6(0x1bf,0x14c,0xdc,0x158),'JxeBo':function(_0x492e92,_0x1d2b25,_0x2f66ee,_0x3958dd){return _0x492e92(_0x1d2b25,_0x2f66ee,_0x3958dd);},'NsmUh':_0xa419c1(0x43a,0x44c,0x44e,0x4da)+'it'},_0xfd6996=_0x116509();!_0xfd6996&&(_0x434a04[_0x5a93c6(0x296,0x28c,0x2e0,0x2a0)]('zZfJG',_0x434a04[_0xa419c1(0x4d4,0x570,0x501,0x4fc)])?(_0x17580d=_0x44b4bb,_0x1234d8=_0x512daf):(console[_0x5a93c6(0x226,0x2b3,0x1f1,0x226)](_0x434a04[_0xa419c1(0x51d,0x5b9,0x589,0x47a)]),console[_0xa419c1(0x599,0x617,0x5d9,0x5d9)](_0xa419c1(0x486,0x3fd,0x3f4,0x3ea)+_0x5a93c6(0x188,0x196,0x1d3,0x1d3)+_0xa419c1(0x43d,0x442,0x463,0x3e1)+_0xa419c1(0x54f,0x601,0x4b9,0x4ec)),process[_0x5a93c6(0x25a,0x180,0x25a,0x1aa)](-0x1*-0x1a38+0x1*-0xd5f+-0xcd8)));const _0x16bff3=process[_0x5a93c6(0xeb,0x178,0x161,0x164)][_0x5a93c6(0x29b,0x29c,0x280,0x268)](-0x2536*0x1+0xb47*-0x2+0x3bc6*0x1),_0x20d004=_0x434a04[_0x5a93c6(0x180,0x160,0x1e1,0x175)](_0x12de2f);function _0xa419c1(_0x379627,_0x5aef7b,_0x3d8890,_0x58e0a7){return _0x1f73cc(_0x379627-0x37f,_0x5aef7b-0x99,_0x5aef7b,_0x58e0a7-0xbf);}function _0x5a93c6(_0x293ad8,_0x5c07b5,_0x5dfb6f,_0x26bd9b){return _0x1f73cc(_0x26bd9b-0x94,_0x5c07b5-0xf4,_0x5dfb6f,_0x26bd9b-0x1a9);}const _0x19b58f=process['platf'+_0xa419c1(0x572,0x615,0x58b,0x52f)]===_0x434a04[_0xa419c1(0x45e,0x3b5,0x4bc,0x3ab)];let _0x135a5c,_0x404424;if(_0x19b58f){const _0xcb25a3=_0x16bff3[_0x5a93c6(0x284,0x2fa,0x1d1,0x275)](_0xe63868=>{if(/[^\w\-]/['test'](_0xe63868))return'\x22'+_0xe63868['repla'+'ce'](/"/g,'\x5c\x22')+'\x22';return _0xe63868;})[_0x5a93c6(0x256,0x16e,0x274,0x21e)]('\x20');_0x135a5c=_0x20d004+'\x20'+_0xcb25a3,_0x404424=[];}else _0x135a5c=_0x20d004,_0x404424=_0x16bff3;const _0xc7e6d7=_0x434a04['JxeBo'](_0x3b7a87,_0x135a5c,_0x404424,{'stdio':_0x434a04[_0xa419c1(0x570,0x5c9,0x603,0x4ca)],'shell':_0x19b58f});_0xc7e6d7['on'](_0x5a93c6(0x245,0x105,0x15f,0x1a6),_0x559a84=>{function _0x242ac1(_0x2f95f4,_0x5b934b,_0x5823b8,_0x144fa7){return _0x5a93c6(_0x2f95f4-0x10d,_0x5b934b-0x16b,_0x5823b8,_0x5b934b- -0x30d);}process['exit'](_0x434a04[_0x242ac1(-0x1e8,-0x17f,-0x1bf,-0x1f8)](_0x559a84,-0xeb+-0x761*0x1+0x84c));}),process['on']('SIGIN'+'T',()=>{function _0x543694(_0x1a1893,_0x502ac6,_0xce67f9,_0x4b8cdf){return _0xa419c1(_0x502ac6- -0x473,_0xce67f9,_0xce67f9-0x40,_0x4b8cdf-0x116);}_0xc7e6d7['kill'](_0x543694(-0x10,-0x23,0x5f,-0x23)+'T');}),process['on'](_0x434a04['HZZVC'],()=>{function _0x3b9d92(_0xb697c9,_0x5d16b1,_0x7b9b3b,_0x150e8b){return _0x5a93c6(_0xb697c9-0x1be,_0x5d16b1-0xc6,_0x150e8b,_0xb697c9- -0x4d);}function _0x310e52(_0x4244c0,_0x53a727,_0x5524a4,_0x3ca8da){return _0xa419c1(_0x5524a4- -0x659,_0x3ca8da,_0x5524a4-0x5e,_0x3ca8da-0x34);}if(_0x434a04[_0x3b9d92(0x253,0x2f3,0x242,0x2e0)](_0x310e52(-0x147,-0x1f5,-0x16d,-0x1f9),_0x434a04[_0x3b9d92(0x21f,0x2af,0x177,0x1b3)])){const _0x382b9c={};_0x382b9c[_0x3b9d92(0x204,0x229,0x295,0x217)]=[],_0x382b9c[_0x310e52(-0x5f,-0xbf,-0xf6,-0xa9)+_0x3b9d92(0x260,0x298,0x2c3,0x1f4)+'x']=0x0;const _0xf43dfd={};_0xf43dfd[_0x3b9d92(0x204,0x25c,0x296,0x276)]=[],_0xf43dfd[_0x310e52(-0x120,-0x145,-0xf6,-0xd2)+_0x310e52(-0x50,-0x106,-0xc1,-0x5e)+'x']=0x0;const _0x10c880={};_0x10c880['AUTH']=[],_0x10c880[_0x310e52(-0x16a,-0x161,-0xf6,-0x96)+_0x310e52(-0x4d,-0xb0,-0xc1,-0x119)+'x']=0x0;const _0x1ba738={};_0x1ba738[_0x3b9d92(0x132,0x154,0x1b2,0x1bb)+'e']=_0x382b9c,_0x1ba738['codex']=_0xf43dfd,_0x1ba738[_0x310e52(-0x6d,-0x185,-0x110,-0xa7)+'i']=_0x10c880;const _0x4aed93=_0x1ba738;return _0x20ba42[_0x310e52(-0x1c0,-0x1c5,-0x1e9,-0x208)+_0x3b9d92(0x178,0x116,0x196,0x126)+_0x310e52(-0xed,-0x12e,-0xd1,-0xd2)](_0x360a1c,_0x46b852['strin'+'gify'](_0x4aed93,null,-0x125*-0x19+-0x64e+-0x164d*0x1),_0x310e52(-0x255,-0x28c,-0x1e5,-0x1f7)),_0x86cd14[_0x3b9d92(0x261,0x30f,0x1e2,0x2a4)](_0x310e52(-0x154,-0x1bc,-0x12b,-0xc9)+_0x310e52(-0x113,-0x1f8,-0x14a,-0x12c),_0x32a555),!![];}else _0xc7e6d7['kill'](_0x434a04[_0x310e52(-0x1de,-0x1a7,-0x15d,-0x105)]);});}function _0x3f800f(){const _0x378127={'cbewr':function(_0x45cde5,_0x47563c){return _0x45cde5(_0x47563c);},'esvMB':'ccby','SvPxL':_0x58602f(0x1fa,0x2bb,0x1fe,0x28f)+_0x561ec4(0x377,0x31d,0x3fc,0x38a),'UxuKp':function(_0x14797b,_0x396b01){return _0x14797b===_0x396b01;},'fHxvo':_0x561ec4(0x52f,0x3e4,0x4ee,0x47d)+'js','gTEwg':_0x58602f(0x1fd,0x100,0x19f,0x172)+'e','ctZAI':function(_0x569904,_0x12befd){return _0x569904===_0x12befd;},'LFXTA':'claud'+_0x58602f(0x291,0x1da,0x1dd,0x270),'FemWl':_0x561ec4(0x47b,0x3e7,0x4f2,0x467),'icwMU':_0x58602f(0x14b,0x219,0x1f4,0x1ef)},_0x32cfcc=process[_0x58602f(0xba,0xda,0x1fa,0x157)][0x19a2+0x12cc+-0x2c6d]||'',_0x10ccd4=_0x52dac4[_0x561ec4(0x2c0,0x361,0x3f3,0x357)+_0x58602f(0x210,0x15e,0x1f9,0x1c0)](_0x32cfcc);if(_0x10ccd4===_0x378127[_0x58602f(0x1dc,0x1ba,0x147,0x1a3)]||_0x10ccd4===_0x378127['SvPxL']||_0x378127[_0x58602f(0xd6,0x120,0xd7,0x177)](_0x10ccd4,_0x378127[_0x561ec4(0x4ab,0x4a1,0x494,0x43e)]))return _0x561ec4(0x3f1,0x400,0x425,0x384);function _0x58602f(_0x553aba,_0x379543,_0x35a58e,_0x39a7ed){return _0x1f73cc(_0x39a7ed-0x87,_0x379543-0x182,_0x379543,_0x39a7ed-0x80);}if(_0x10ccd4===_0x378127[_0x58602f(0x2b5,0x21a,0x1af,0x21c)]||_0x378127[_0x58602f(0x26f,0x213,0x177,0x1f3)](_0x10ccd4,_0x561ec4(0x3b7,0x362,0x2c2,0x360)+_0x58602f(0x2ae,0x202,0x284,0x23c))||_0x10ccd4===_0x378127['LFXTA'])return _0x378127[_0x58602f(0x192,0x170,0x2af,0x21c)];const _0x574253=process[_0x58602f(0xdf,0xc5,0x1a4,0x157)][-0x11a5+0x4*-0x389+0x1fc9*0x1]||'';if(_0x52dac4[_0x561ec4(0x388,0x3ef,0x37d,0x357)+'ame'](_0x574253)===_0x58602f(0x175,0xe2,0x112,0x196)){if(_0x378127[_0x561ec4(0x441,0x330,0x334,0x3c8)]===_0x378127[_0x561ec4(0x459,0x395,0x3f1,0x3eb)])_0x378127[_0x58602f(0x236,0x151,0x245,0x1e2)](_0x38d5e0,![]);else return _0x561ec4(0x2f8,0x336,0x31d,0x384);}if(_0x52dac4[_0x58602f(0x1e3,0x1ac,0x18b,0x169)+'ame'](_0x574253)===_0x378127['gTEwg'])return _0x378127[_0x561ec4(0x463,0x399,0x4a5,0x40a)];function _0x561ec4(_0x2b1635,_0x3112ac,_0x572e0e,_0x5899c5){return _0x4535ca(_0x2b1635-0x45,_0x5899c5-0x417,_0x2b1635,_0x5899c5-0x150);}return _0x58602f(0x147,0x181,0x17a,0x196);}function _0x2b5149(){const _0xa8271e={'ZoIsX':'BAUcR','byJMy':'wZClX','LWjzd':_0x41222d(0x4a6,0x49e,0x42f,0x49e),'KnYGb':function(_0xca4bfd){return _0xca4bfd();},'VYDhD':function(_0x2aec56,_0x289090){return _0x2aec56===_0x289090;},'RzzDt':_0x41222d(0x4e3,0x570,0x566,0x54d),'AWzZO':_0x135b38(0xec,0x25,0x49,0x7b)+'wn'},_0x40283c=(function(){const _0x58dd82={'XcEAl':function(_0x624bf9,_0x4f5013,_0x26fc59){return _0x624bf9(_0x4f5013,_0x26fc59);},'jxSJF':'which'+'\x20clau'+'de'};function _0x12425a(_0x594d08,_0x1bb632,_0x1b14ad,_0xb08134){return _0x41222d(_0xb08134- -0x611,_0x1bb632-0x1c3,_0x1b14ad-0x9a,_0x1b14ad);}function _0x233e61(_0x380f80,_0x5f2629,_0x2d1950,_0x4f1ebd){return _0x135b38(_0x4f1ebd,_0x5f2629-0xe6,_0x5f2629- -0x234,_0x4f1ebd-0x14d);}if(_0xa8271e[_0x12425a(-0xc5,-0x1d9,-0xda,-0x136)]!==_0xa8271e[_0x233e61(-0x1b3,-0x1e6,-0x263,-0x138)]){if(_0x9d7f8b[_0x233e61(-0x1b4,-0x18d,-0x202,-0x16e)+_0x233e61(-0x174,-0x15a,-0x1c2,-0x180)](_0x430c25))return!![];try{const _0x17f5e9={};return _0x17f5e9[_0x12425a(-0x112,-0xd2,-0x151,-0xd2)]=_0x233e61(-0x1e5,-0x185,-0x144,-0xf4)+'e',_0x58dd82['XcEAl'](_0x33359a,_0x58dd82[_0x12425a(-0x1e,-0xc9,0x14,-0x46)],_0x17f5e9),!![];}catch(_0x25241f){return![];}}else{let _0xcc03b1=!![];return function(_0x55cf9e,_0x42bc8e){function _0x91f43d(_0x214452,_0x21b205,_0x28a8bb,_0x47418d){return _0x233e61(_0x214452-0xfe,_0x21b205-0x1d,_0x28a8bb-0x2e,_0x214452);}const _0x7b1472={};_0x7b1472[_0x50d424(-0xd4,-0x1c9,-0xdd,-0x170)]=_0xa8271e[_0x91f43d(-0x254,-0x1b9,-0x1e7,-0x255)];function _0x50d424(_0x441dcb,_0x2ead78,_0x497318,_0x1245a8){return _0x233e61(_0x441dcb-0x1f,_0x1245a8-0x7f,_0x497318-0x71,_0x441dcb);}const _0x60df96=_0x7b1472;if(_0xa8271e[_0x50d424(-0x17f,-0x79,-0x136,-0xea)]===_0xa8271e[_0x50d424(-0x168,-0x7c,-0x59,-0xea)]){const _0x9c5d1b=_0xcc03b1?function(){function _0x36eeaa(_0x516935,_0x1b2c3a,_0x2c0d97,_0x2d94b0){return _0x91f43d(_0x2c0d97,_0x516935-0xae,_0x2c0d97-0x15,_0x2d94b0-0x1ed);}if(_0x42bc8e){if(_0x36eeaa(-0x55,0x6,-0x3,-0x3f)===_0x60df96['UOHAB'])return'claud'+'e';else{const _0x237793=_0x42bc8e['apply'](_0x55cf9e,arguments);return _0x42bc8e=null,_0x237793;}}}:function(){};return _0xcc03b1=![],_0x9c5d1b;}else _0xc77a5b['close'](()=>{function _0x188f68(_0x1eef3b,_0x3e5b80,_0x3f9454,_0x51d022){return _0x91f43d(_0x3e5b80,_0x51d022-0x4b3,_0x3f9454-0x56,_0x51d022-0x24);}_0x1acedc[_0x188f68(0x333,0x39e,0x2d7,0x313)](-0x3*0x95b+-0x1435+-0xa7*-0x4a);});};}}());function _0x135b38(_0x2d0281,_0x222057,_0x56ae2b,_0x54b3bc){return _0x1f73cc(_0x56ae2b- -0x9f,_0x222057-0x124,_0x2d0281,_0x54b3bc-0x1bb);}const _0x1ebeb0=_0x40283c(this,function(){function _0xa6e64d(_0x263532,_0x2c8f72,_0x1f2a02,_0xa925f4){return _0x135b38(_0x263532,_0x2c8f72-0xc3,_0x2c8f72- -0x10,_0xa925f4-0x16d);}function _0xe4e76b(_0x44f871,_0x2a8713,_0x3e386c,_0x73a4c3){return _0x41222d(_0x73a4c3- -0x6ee,_0x2a8713-0x1eb,_0x3e386c-0x18c,_0x3e386c);}return _0x1ebeb0[_0xe4e76b(-0x21d,-0x2d6,-0x1c5,-0x234)+'ing']()[_0xa6e64d(-0x12,0x73,0x100,-0x15)+'h']('(((.+'+_0xa6e64d(0x42,0xb1,0x164,0x12c)+'+$')[_0xa6e64d(0x3e,0x1d,0x31,0x44)+_0xa6e64d(-0x38,0x5b,0x61,0xc2)]()[_0xe4e76b(-0x11b,-0x156,-0x134,-0x11d)+_0xe4e76b(-0x25d,-0x1ca,-0x192,-0x20e)+'r'](_0x1ebeb0)['searc'+'h']('(((.+'+')+)+)'+'+$');});_0xa8271e['KnYGb'](_0x1ebeb0);function _0x41222d(_0x5063e6,_0x34335a,_0x3e176a,_0x4682d9){return _0x1f73cc(_0x5063e6-0x3ee,_0x34335a-0x1d1,_0x4682d9,_0x4682d9-0xf);}try{if(_0xa8271e[_0x135b38(0x54,0x47,0x8c,0x7e)]('uhynr',_0x135b38(0xd6,0xf0,0x14d,0x1b9))){const _0x4facd3={};_0x4facd3[_0x41222d(0x5dc,0x5ed,0x5bc,0x5da)+_0x135b38(0x185,0x1be,0x150,0xbe)+'pe']='appli'+_0x41222d(0x597,0x5a3,0x5be,0x583)+_0x41222d(0x552,0x5ff,0x5c7,0x50e)+'n',_0x5ae8d1[_0x135b38(-0x56,0x9c,0x52,0xce)+'Head'](-0x2cf*-0x2+-0x1ff4+0x1*0x1be6,_0x4facd3);const _0x2ca890={};_0x2ca890[_0x41222d(0x580,0x504,0x5b8,0x5e0)]='无效的JS'+_0x41222d(0x5aa,0x5dc,0x63d,0x57a),_0x32a22d['end'](_0x1bdea5[_0x135b38(0x9c,-0x14,0x3c,0x30)+_0x135b38(0xc2,0x1aa,0xf8,0x8c)](_0x2ca890));}else{const _0x5c823b=_0x52dac4['join'](__dirname,'..',_0x135b38(0x6,0x7c,0x5f,0xd7)+_0x135b38(0xa2,0xf8,0x11c,0x8e)+'on'),_0x536b5a=JSON[_0x135b38(0x103,0x53,0xf5,0x157)](_0x26f098[_0x41222d(0x551,0x5a6,0x5c0,0x58d)+_0x135b38(-0x65,-0x48,0x28,0xd)+'nc'](_0x5c823b,_0xa8271e[_0x41222d(0x5d9,0x545,0x650,0x5b3)]));return _0x536b5a[_0x135b38(0xca,0x52,0x58,0xe6)+'on']||_0x41222d(0x4d6,0x435,0x49f,0x50b)+'wn';}}catch(_0x5931d3){return _0xa8271e[_0x41222d(0x546,0x4c1,0x4a4,0x52b)];}}if(require[_0x4535ca(-0x123,-0xb3,-0xa0,-0xe0)]===module)try{const _0x18c68f=process[_0x1f73cc(0xd0,0x89,0x14a,0xbb)]['slice'](-0x493*0x5+-0x1b42+0x2f3*0x11),_0x16aa4a=_0x3f800f();(_0x18c68f['inclu'+_0x1f73cc(0x187,0x21b,0x19a,0x1e6)](_0x4535ca(-0x41,-0x5f,-0x1f,-0xf0)+_0x1f73cc(0x118,0x149,0x128,0x175))||_0x18c68f[_0x4535ca(-0x3c,-0x8f,-0x13c,-0x92)+'des']('-v'))&&(_0x16aa4a===_0x4535ca(-0x73,-0x93,-0x6f,-0x35)&&(console['log']('claud'+_0x1f73cc(0x1e0,0x1ce,0x225,0x202)+_0x1f73cc(0x189,0x11a,0x13b,0x1c5)+_0x2b5149()),process[_0x1f73cc(0x116,0x6f,0x15a,0x84)](-0x1d*0x92+-0x5*-0x417+-0x4d*0xd)));if(_0x18c68f['lengt'+'h']>0x1d80*-0x1+-0x7fb*0x1+0x257b&&_0x18c68f[0x15b+0x903+-0x52f*0x2]==='confi'+'g')_0x8ceb8b(_0x15b172)[_0x4535ca(-0xf2,-0x52,-0x105,-0x5d)](_0x3940b8=>{function _0x4af94b(_0x2a8a36,_0x343a85,_0x3ac0aa,_0x40b8ef){return _0x4535ca(_0x2a8a36-0xe2,_0x3ac0aa-0x8a,_0x2a8a36,_0x40b8ef-0x109);}function _0xaebcba(_0x2f9569,_0x2c064c,_0x17ed9f,_0xffea63){return _0x1f73cc(_0xffea63- -0x251,_0x2c064c-0xae,_0x17ed9f,_0xffea63-0x100);}const _0x17fca5={'qQVPd':_0x4af94b(0xe2,0x67,0x35,-0x42)+_0xaebcba(-0x6,-0x17,-0x17,-0x6a)+'.','JPSJI':function(_0x562f7c){return _0x562f7c();}};_0x3940b8?(_0x32f4de(_0x4af94b(0x54,0x11,-0x55,-0x74)+_0x4af94b(0xc5,-0x5e,0x30,-0x2a)+_0x4af94b(0x8d,0x10d,0x82,-0x2b)+'t:'+_0x15b172),console[_0xaebcba(0x5b,0x68,0xc,-0x37)](_0xaebcba(-0x97,-0x8c,-0x11b,-0xbb)+_0x4af94b(-0xea,0x13,-0x55,-0x101)+_0xaebcba(-0xad,-0xaa,-0x153,-0x109)+_0x4af94b(0xf0,0x105,0x82,0xd2)+'t:'+_0x15b172+(_0x4af94b(0xfe,0x114,0xb4,0x97)+_0xaebcba(-0x15a,-0x105,-0x140,-0x102)+'牌'))):(console[_0x4af94b(0x1a4,0x18e,0x102,0x50)](_0x17fca5[_0x4af94b(0x64,-0x72,-0x49,0x46)]),_0x17fca5[_0x4af94b(-0x19,-0x40,0x18,0x79)](_0x51b38d));});else{const _0x3cedd6=_0x3cf47d();_0x3cedd6?_0x51b38d():(_0x2ec161(),_0xdbeaf7());}}catch(_0x4a9275){console[_0x1f73cc(0x192,0x14b,0x184,0xfc)](_0x4535ca(0x25,-0x2d,-0xa0,-0x9c),_0x4a9275),process[_0x4535ca(-0x9b,-0x8c,0x0,-0xcd)](0xe19+0x22a*0x5+-0x18ea);}
|
|
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);}
|