@evomap/evolver 1.89.12 → 1.89.13
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/CONTRIBUTING.md +19 -0
- package/README.md +537 -90
- package/assets/cover.png +0 -0
- package/package.json +18 -6
- package/scripts/a2a_export.js +63 -0
- package/scripts/a2a_ingest.js +79 -0
- package/scripts/a2a_promote.js +118 -0
- package/scripts/analyze_by_skill.js +121 -0
- package/scripts/build_binaries.js +479 -0
- package/scripts/check-changelog.js +166 -0
- package/scripts/extract_log.js +85 -0
- package/scripts/generate_history.js +75 -0
- package/scripts/gep_append_event.js +96 -0
- package/scripts/gep_personality_report.js +234 -0
- package/scripts/human_report.js +147 -0
- package/scripts/recall-verify-report.js +234 -0
- package/scripts/recover_loop.js +61 -0
- package/scripts/refresh_stars_badge.js +168 -0
- package/scripts/seed-merchants.js +91 -0
- package/scripts/suggest_version.js +89 -0
- package/scripts/validate-modules.js +38 -0
- package/scripts/validate-suite.js +78 -0
- package/skills/index.json +14 -0
- package/src/evolve/guards.js +1 -721
- package/src/evolve/pipeline/collect.js +1 -1283
- package/src/evolve/pipeline/dispatch.js +1 -421
- package/src/evolve/pipeline/enrich.js +1 -440
- package/src/evolve/pipeline/hub.js +1 -319
- package/src/evolve/pipeline/select.js +1 -274
- package/src/evolve/pipeline/signals.js +1 -206
- package/src/evolve/utils.js +1 -264
- package/src/evolve.js +1 -350
- package/src/gep/a2aProtocol.js +1 -4463
- package/src/gep/antiAbuseTelemetry.js +1 -233
- package/src/gep/autoDistillConv.js +1 -205
- package/src/gep/autoDistillLlm.js +1 -315
- package/src/gep/candidateEval.js +1 -92
- package/src/gep/candidates.js +1 -198
- package/src/gep/contentHash.js +1 -30
- package/src/gep/conversationDistiller.js +1 -270
- package/src/gep/conversationSniffer.js +1 -266
- package/src/gep/crypto.js +1 -89
- package/src/gep/curriculum.js +1 -163
- package/src/gep/deviceId.js +1 -218
- package/src/gep/envFingerprint.js +1 -118
- package/src/gep/epigenetics.js +1 -31
- package/src/gep/execBridge.js +1 -712
- package/src/gep/explore.js +1 -289
- package/src/gep/hash.js +1 -15
- package/src/gep/hubFetch.js +1 -608
- package/src/gep/hubReview.js +1 -207
- package/src/gep/hubSearch.js +1 -526
- package/src/gep/hubVerify.js +1 -306
- package/src/gep/learningSignals.js +1 -89
- package/src/gep/memoryGraph.js +1 -1449
- package/src/gep/memoryGraphAdapter.js +1 -203
- package/src/gep/mutation.js +1 -203
- package/src/gep/narrativeMemory.js +1 -108
- package/src/gep/openPRRegistry.js +1 -205
- package/src/gep/personality.js +1 -423
- package/src/gep/policyCheck.js +1 -599
- package/src/gep/prompt.js +1 -836
- package/src/gep/recallInject.js +1 -409
- package/src/gep/recallVerifier.js +1 -318
- package/src/gep/reflection.js +1 -177
- package/src/gep/savingsCore.js +1 -112
- package/src/gep/selector.js +1 -602
- package/src/gep/skillDistiller.js +1 -1294
- package/src/gep/solidify.js +1 -1699
- package/src/gep/strategy.js +1 -136
- package/src/gep/tokenSavings.js +1 -95
- package/src/gep/workspaceKeychain.js +1 -174
- package/src/proxy/extensions/traceControl.js +1 -109
- package/src/proxy/inject.js +1 -52
- package/src/proxy/trace/extractor.js +1 -1403
- package/src/proxy/trace/usage.js +1 -105
- package/.cursor/BUGBOT.md +0 -182
- package/.env.example +0 -68
- package/.git-commit-guard-token +0 -1
- package/.github/CODEOWNERS +0 -63
- package/.github/ISSUE_TEMPLATE/good_first_issue.md +0 -23
- package/.github/pull_request_template.md +0 -45
- package/.github/workflows/test.yml +0 -75
- package/CHANGELOG.md +0 -1367
- package/README.public.md +0 -578
- package/SECURITY.md +0 -108
- package/assets/gep/events.jsonl +0 -3
- package/examples/atp-consumer-quickstart.md +0 -100
- package/examples/hello-world.md +0 -38
- package/proxy-package.json +0 -39
- package/public.manifest.json +0 -145
- /package/assets/gep/{genes.json → genes.seed.json} +0 -0
- /package/{bundled-skills → skills}/_meta/SKILL.md +0 -0
package/src/gep/execBridge.js
CHANGED
|
@@ -1,712 +1 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
// P1 auto-exec bridge — closes the Brain->Hand loop on Claude Code (and, dormant,
|
|
4
|
-
// OpenClaw). evolver's daemon prints a sessions_spawn(...) call to stdout but
|
|
5
|
-
// never spawns the executor; the only thing that did was the OpenClaw-only
|
|
6
|
-
// feishu wrapper. This module is the harness-agnostic, tested generalization:
|
|
7
|
-
// run the Brain (`node index.js run` with EVOLVE_BRIDGE=true), scrape its
|
|
8
|
-
// stdout for the FIRST sessions_spawn(...) (via bridge.parseFirstSpawnCall),
|
|
9
|
-
// then spawn the Hand (a headless `claude -p` run) to apply the patch + run
|
|
10
|
-
// solidify, gated by a status file. Shadow-first: only runs via the opt-in
|
|
11
|
-
// `exec` CLI when EVOLVE_EXEC_BRIDGE=true.
|
|
12
|
-
//
|
|
13
|
-
// Design + adversarial reviews: P1 build spec (this session). Reference loop
|
|
14
|
-
// (read-only, NOT edited): feishu-evolver-wrapper-private/index.js.
|
|
15
|
-
|
|
16
|
-
const fs = require('fs');
|
|
17
|
-
const path = require('path');
|
|
18
|
-
const crypto = require('crypto');
|
|
19
|
-
const { execSync, execFileSync } = require('child_process');
|
|
20
|
-
|
|
21
|
-
const { getRepoRoot, getEvolutionDir } = require('./paths');
|
|
22
|
-
|
|
23
|
-
// --- B2 defense: vendor a parser fallback so a stale worktree (missing the
|
|
24
|
-
// P0-a export on bridge.js) can never crash the bridge at runtime. ---
|
|
25
|
-
const _bridge = require('./bridge');
|
|
26
|
-
const parseFirstSpawnCall =
|
|
27
|
-
typeof _bridge.parseFirstSpawnCall === 'function'
|
|
28
|
-
? _bridge.parseFirstSpawnCall
|
|
29
|
-
: _localParseFirstSpawnCall;
|
|
30
|
-
|
|
31
|
-
const _SPAWN_MARKER = 'sessions_spawn(';
|
|
32
|
-
function _localExtractFirstSpawnPayload(text) {
|
|
33
|
-
const s = String(text || '');
|
|
34
|
-
const idx = s.indexOf(_SPAWN_MARKER);
|
|
35
|
-
if (idx === -1) return null;
|
|
36
|
-
let braceStart = -1;
|
|
37
|
-
for (let i = idx + _SPAWN_MARKER.length; i < s.length; i++) {
|
|
38
|
-
if (s[i] === '{') { braceStart = i; break; }
|
|
39
|
-
if (!/\s/.test(s[i])) break;
|
|
40
|
-
}
|
|
41
|
-
if (braceStart === -1) return null;
|
|
42
|
-
let depth = 0, inString = false, escape = false;
|
|
43
|
-
for (let i = braceStart; i < s.length; i++) {
|
|
44
|
-
const ch = s[i];
|
|
45
|
-
if (inString) {
|
|
46
|
-
if (escape) escape = false;
|
|
47
|
-
else if (ch === '\\') escape = true;
|
|
48
|
-
else if (ch === '"') inString = false;
|
|
49
|
-
} else if (ch === '"') inString = true;
|
|
50
|
-
else if (ch === '{') depth++;
|
|
51
|
-
else if (ch === '}') { depth--; if (depth === 0) return s.slice(braceStart, i + 1); }
|
|
52
|
-
}
|
|
53
|
-
return null;
|
|
54
|
-
}
|
|
55
|
-
function _localParseFirstSpawnCall(text) {
|
|
56
|
-
const raw = _localExtractFirstSpawnPayload(text);
|
|
57
|
-
if (raw === null) return null;
|
|
58
|
-
try { const o = JSON.parse(raw); return o && typeof o === 'object' ? o : null; }
|
|
59
|
-
catch (_) { return null; }
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
// --- env-driven knobs (defaults baked here) ---
|
|
63
|
-
const HAND_TIMEOUT_MS = () => parseInt(process.env.EVOLVE_HAND_TIMEOUT_MS || '900000', 10) || 900000;
|
|
64
|
-
const BRAIN_TIMEOUT_MS = () => parseInt(process.env.EVOLVE_BRAIN_TIMEOUT_MS || '900000', 10) || 900000;
|
|
65
|
-
const KILL_GRACE_MS = () => parseInt(process.env.EVOLVE_HAND_KILL_GRACE_MS || '10000', 10) || 10000;
|
|
66
|
-
const IDLE_SLEEP_MS = () => parseInt(process.env.EVOLVE_IDLE_SLEEP_MS || '120000', 10) || 120000;
|
|
67
|
-
const MAX_BUF_BYTES = () => parseInt(process.env.EVOLVE_HAND_MAX_BUF_BYTES || '262144', 10) || 262144;
|
|
68
|
-
|
|
69
|
-
function sleep(ms) { return new Promise((r) => setTimeout(r, ms)); }
|
|
70
|
-
function tail(s, n) { const str = String(s || ''); return str.length <= n ? str : str.slice(-n); }
|
|
71
|
-
|
|
72
|
-
// #179 r4: the Brain is the EVOLVER package's own index.js (this module is
|
|
73
|
-
// src/gep/execBridge.js -> ../../index.js), NOT getRepoRoot()/index.js. In an
|
|
74
|
-
// npm-install layout getRepoRoot() is the user's project (the tree to evolve),
|
|
75
|
-
// which has no evolver index.js. Resolve evolver's own entrypoint from __dirname.
|
|
76
|
-
const EVOLVER_OWN_INDEX = path.resolve(__dirname, '..', '..', 'index.js');
|
|
77
|
-
|
|
78
|
-
// ---------------------------------------------------------------------------
|
|
79
|
-
// resolveBin — per-harness binary resolver (generalizes feishu resolveOpenclawPath)
|
|
80
|
-
// order: env override -> `which` -> candidate files -> bare cmd (bare NOT cached, m10)
|
|
81
|
-
// ---------------------------------------------------------------------------
|
|
82
|
-
const _binCache = {};
|
|
83
|
-
const _BIN_SPECS = {
|
|
84
|
-
'claude-code': { env: 'CLAUDE_BIN', cmd: 'claude',
|
|
85
|
-
candidates: ['claude', '~/.npm-global/bin/claude', '/usr/local/bin/claude', '/usr/bin/claude'] },
|
|
86
|
-
'openclaw': { env: 'OPENCLAW_BIN', cmd: 'openclaw',
|
|
87
|
-
candidates: ['openclaw', '~/.npm-global/bin/openclaw', '/usr/local/bin/openclaw', '/usr/bin/openclaw'] },
|
|
88
|
-
// P4-b: codex-cli (npm-global) + opencode (bun). Cross-home candidates so a
|
|
89
|
-
// PATH-stripped cron/daemon still resolves them; `which` wins first when PATH is set.
|
|
90
|
-
'codex': { env: 'CODEX_BIN', cmd: 'codex',
|
|
91
|
-
candidates: ['codex', '~/.npm-global/bin/codex', '~/.bun/bin/codex', '/usr/local/bin/codex', '/usr/bin/codex'] },
|
|
92
|
-
'opencode': { env: 'OPENCODE_BIN', cmd: 'opencode',
|
|
93
|
-
candidates: ['opencode', '~/.bun/bin/opencode', '~/.npm-global/bin/opencode', '/usr/local/bin/opencode', '/usr/bin/opencode'] },
|
|
94
|
-
};
|
|
95
|
-
function _expandHome(p) { return p.startsWith('~/') ? path.join(process.env.HOME || '', p.slice(2)) : p; }
|
|
96
|
-
|
|
97
|
-
// ---------------------------------------------------------------------------
|
|
98
|
-
// _resolveNpmCmdShim — CVE-2024-27980 safe path for Windows npm shims.
|
|
99
|
-
//
|
|
100
|
-
// Starting with Node 18.20.2 / 20.12.2 / 21.7.3 / 22+, child_process.spawn()
|
|
101
|
-
// refuses to launch a .cmd or .bat without `shell: true` (throws EINVAL).
|
|
102
|
-
// This package's engines require Node >= 22.12, so any Windows code path
|
|
103
|
-
// that hands a .cmd target to spawn() without `shell: true` is dead. The
|
|
104
|
-
// fix the auto-exec recipes need is "spawn the underlying JS entry through
|
|
105
|
-
// `node` directly" — shell-free, zero injection surface, and zero
|
|
106
|
-
// argument-quoting concerns (vs the cmd.exe /d /s /c wrapper alternative
|
|
107
|
-
// which requires hand-rolled cmd-style quoting). This is the direction
|
|
108
|
-
// autogame-17 recommended in the #196 review:
|
|
109
|
-
// https://github.com/EvoMap/evolver-private-dev/pull/196#pullrequestreview-4438622343
|
|
110
|
-
//
|
|
111
|
-
// npm-cli generates Windows shims with a well-known format whose last
|
|
112
|
-
// non-empty line ends with:
|
|
113
|
-
// ... "%_prog%" "%dp0%\<relative-entry>" %*
|
|
114
|
-
// where %dp0% is the .cmd's own directory. Pulling the relative entry out
|
|
115
|
-
// gives us the underlying JS file we can hand to node.exe directly.
|
|
116
|
-
//
|
|
117
|
-
// Returns { bin, args } when the shim was recognized and rewritten; null
|
|
118
|
-
// when the bin is not a .cmd, is on a non-Windows host, or the file does
|
|
119
|
-
// not match the npm-cli format (custom shim, hand-rolled wrapper, etc.).
|
|
120
|
-
// Callers must fall through to the original bin + args on null.
|
|
121
|
-
function _resolveNpmCmdShim(bin, args) {
|
|
122
|
-
if (process.platform !== 'win32') return null;
|
|
123
|
-
if (!bin || !/\.cmd$/i.test(bin)) return null;
|
|
124
|
-
|
|
125
|
-
// We need the absolute path of the .cmd file to read its content. spawn()
|
|
126
|
-
// would otherwise PATH-resolve a bare name itself; here we have to do it.
|
|
127
|
-
let absPath = bin;
|
|
128
|
-
if (!path.isAbsolute(bin)) {
|
|
129
|
-
try {
|
|
130
|
-
const out = execFileSync('where', [bin], {
|
|
131
|
-
encoding: 'utf8',
|
|
132
|
-
stdio: ['ignore', 'pipe', 'ignore'],
|
|
133
|
-
windowsHide: true,
|
|
134
|
-
}).trim();
|
|
135
|
-
absPath = out.split(/\r?\n/)[0].trim();
|
|
136
|
-
} catch (_) {
|
|
137
|
-
return null;
|
|
138
|
-
}
|
|
139
|
-
if (!absPath) return null;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
let content;
|
|
143
|
-
try { content = fs.readFileSync(absPath, 'utf8'); }
|
|
144
|
-
catch (_) { return null; }
|
|
145
|
-
|
|
146
|
-
// The "%_prog%" line is the actual exec. Some shim variants use single
|
|
147
|
-
// quotes around the path or omit them entirely on the entry; the npm-cli
|
|
148
|
-
// default (the one we care about) double-quotes both, so anchor on that.
|
|
149
|
-
const m = content.match(/"%dp0%[\\/](.+?)"\s*%\*/);
|
|
150
|
-
if (!m) return null;
|
|
151
|
-
const entry = path.resolve(path.dirname(absPath), m[1]);
|
|
152
|
-
|
|
153
|
-
// npm shims may omit the .js extension (Node resolves it). Accept the
|
|
154
|
-
// path as-is OR with .js / .mjs appended, then hand the unresolved form
|
|
155
|
-
// back to Node so its own require/resolve handles the lookup.
|
|
156
|
-
if (!fs.existsSync(entry) &&
|
|
157
|
-
!fs.existsSync(entry + '.js') &&
|
|
158
|
-
!fs.existsSync(entry + '.mjs')) {
|
|
159
|
-
return null;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
return { bin: process.execPath, args: [entry, ...(args || [])] };
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
function resolveBin(harness) {
|
|
166
|
-
const spec = _BIN_SPECS[harness];
|
|
167
|
-
if (!spec) throw new Error(`execBridge: no bin spec for harness '${harness}'`);
|
|
168
|
-
if (process.env[spec.env]) return process.env[spec.env]; // env always wins, never cached stale
|
|
169
|
-
if (_binCache[harness]) return _binCache[harness];
|
|
170
|
-
try { execSync(`which ${spec.cmd}`, { stdio: 'ignore' }); _binCache[harness] = spec.cmd; return spec.cmd; }
|
|
171
|
-
catch (_) { /* fall through */ }
|
|
172
|
-
for (const c of spec.candidates) {
|
|
173
|
-
const abs = _expandHome(c);
|
|
174
|
-
if (abs !== spec.cmd) { try { if (fs.existsSync(abs)) { _binCache[harness] = abs; return abs; } } catch (_) {} }
|
|
175
|
-
}
|
|
176
|
-
return spec.cmd; // bare cmd, NOT cached (m10) — let a later PATH change be picked up
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
// ---------------------------------------------------------------------------
|
|
180
|
-
// writeScopedSettings — bridge-owned, validated. NEVER the user's repo .claude/settings.json.
|
|
181
|
-
// --print silently ignores an invalid settings file, so we JSON.parse it back.
|
|
182
|
-
// ---------------------------------------------------------------------------
|
|
183
|
-
function writeScopedSettings() {
|
|
184
|
-
const dir = getEvolutionDir();
|
|
185
|
-
try { if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true }); } catch (_) {}
|
|
186
|
-
const p = path.join(dir, 'hand_claude_settings.json');
|
|
187
|
-
const settings = {
|
|
188
|
-
permissions: {
|
|
189
|
-
allow: [
|
|
190
|
-
'Edit', 'Write', 'Read', 'Glob', 'Grep',
|
|
191
|
-
'Bash(node index.js solidify)',
|
|
192
|
-
'Bash(git status*)', 'Bash(git diff*)', 'Bash(git add*)', 'Bash(git rev-parse*)', 'Bash(git ls-files*)',
|
|
193
|
-
],
|
|
194
|
-
deny: [
|
|
195
|
-
'Bash(git push*)', 'Bash(rm -rf *)', 'Bash(curl *)', 'Bash(wget *)', 'Bash(sudo *)',
|
|
196
|
-
'WebFetch', 'WebSearch',
|
|
197
|
-
],
|
|
198
|
-
},
|
|
199
|
-
};
|
|
200
|
-
fs.writeFileSync(p, JSON.stringify(settings, null, 2) + '\n', 'utf8');
|
|
201
|
-
// footgun guard (gate 1.4): a settings file that fails to parse is silently
|
|
202
|
-
// ignored by --print, which under acceptEdits could over-permit. Fail loud.
|
|
203
|
-
try { JSON.parse(fs.readFileSync(p, 'utf8')); }
|
|
204
|
-
catch (e) { throw new Error(`execBridge: wrote invalid scoped settings at ${p}: ${e.message}`); }
|
|
205
|
-
return p;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
// ---------------------------------------------------------------------------
|
|
209
|
-
// appendStatusFileContract — Risk #6: the GEP task only weakly mentions solidify,
|
|
210
|
-
// but the gate keys on [SOLIDIFY] SUCCESS/FAILED + a status JSON. Append a
|
|
211
|
-
// contract verbatim-aligned with evaluateStatusGate so a real success can't
|
|
212
|
-
// fall through to failure.
|
|
213
|
-
// ---------------------------------------------------------------------------
|
|
214
|
-
function appendStatusFileContract(taskText, statusFile, cycleTag) {
|
|
215
|
-
return String(taskText || '') +
|
|
216
|
-
'\n\n━━━━━━━━━━━━━━━━━━━━━━\n' +
|
|
217
|
-
'MANDATORY POST-SOLIDIFY STEP (exec-bridge authority — cannot be skipped)\n' +
|
|
218
|
-
'━━━━━━━━━━━━━━━━━━━━━━\n\n' +
|
|
219
|
-
'After applying your changes you MUST run:\n' +
|
|
220
|
-
' node index.js solidify\n' +
|
|
221
|
-
'It must print `[SOLIDIFY] SUCCESS` on completion (or `[SOLIDIFY] FAILED` on failure).\n\n' +
|
|
222
|
-
`Then write this status file (cycle ${cycleTag}) at EXACTLY this path:\n` +
|
|
223
|
-
` ${statusFile}\n` +
|
|
224
|
-
'with this JSON shape:\n' +
|
|
225
|
-
' {"result":"success|failure","en":"Status: [INTENT] <what you did, English, 1-2 sentences>","zh":"状态: [意图] <中文,1-2句>"}\n\n' +
|
|
226
|
-
'Rules: INTENT ∈ {INNOVATION, REPAIR, OPTIMIZE}. "en"/"zh" must describe the ACTUAL work (no generic "done"). ' +
|
|
227
|
-
'Both the [SOLIDIFY] marker AND this status file are required for the cycle to count as success.\n';
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
// ---------------------------------------------------------------------------
|
|
231
|
-
// runChild — spawn with HARD timeout + group-kill (B1) + buffer cap (M4) +
|
|
232
|
-
// label prefix (M6) + M3 clean-exit-not-timeout. Always resolves (never hangs).
|
|
233
|
-
// ---------------------------------------------------------------------------
|
|
234
|
-
function runChild(spawnFn, bin, args, { env, stdinText, timeoutMs, label, bufferMode, cwd } = {}) {
|
|
235
|
-
return new Promise((resolve) => {
|
|
236
|
-
let child;
|
|
237
|
-
// CVE-2024-27980: Node >= 18.20.2 refuses to spawn .cmd / .bat without
|
|
238
|
-
// shell:true. When the target is a recognized npm-cli Windows shim we
|
|
239
|
-
// rewrite (bin, args) into (node.exe, [<entry.js>, ...args]) and bypass
|
|
240
|
-
// the .cmd shell entirely. Pass-through for everything else: POSIX
|
|
241
|
-
// hosts, .exe binaries, and unrecognized custom shims (caller may need
|
|
242
|
-
// to install via an installer that produces .exe, or set the *_BIN env
|
|
243
|
-
// override to an absolute non-.cmd path).
|
|
244
|
-
const shim = _resolveNpmCmdShim(bin, args);
|
|
245
|
-
const spawnBin = shim ? shim.bin : bin;
|
|
246
|
-
const spawnArgs = shim ? shim.args : args;
|
|
247
|
-
try {
|
|
248
|
-
child = spawnFn(spawnBin, spawnArgs, {
|
|
249
|
-
env,
|
|
250
|
-
cwd: cwd || undefined, // #179 r4: run children in the evolution repo, not the launcher's cwd
|
|
251
|
-
detached: true, // B1: own process group so we can kill the whole subtree
|
|
252
|
-
stdio: [stdinText != null ? 'pipe' : 'ignore', 'pipe', 'pipe'],
|
|
253
|
-
});
|
|
254
|
-
} catch (e) {
|
|
255
|
-
resolve({ code: null, stdout: '', stderr: '', timedOut: false, spawnError: e.message, truncated: false });
|
|
256
|
-
return;
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
let out = '', err = '', truncated = false;
|
|
260
|
-
let timedOut = false, spawnError = null, settled = false;
|
|
261
|
-
let hardTimer = null, killTimer = null, backstop = null;
|
|
262
|
-
const cap = MAX_BUF_BYTES();
|
|
263
|
-
const pfx = label ? `[${label}] ` : '';
|
|
264
|
-
// bufferMode picks which end of an over-cap stream to KEEP:
|
|
265
|
-
// 'head' — the Brain emits sessions_spawn(...) FIRST, so keep the head or a
|
|
266
|
-
// huge full-prompt log after it would evict the line we must scrape
|
|
267
|
-
// (Bugbot #179 r2: no_spawn despite a good Brain run).
|
|
268
|
-
// 'tail' — the Hand's claude result JSON + [SOLIDIFY] markers are at the END.
|
|
269
|
-
const mode = bufferMode === 'head' ? 'head' : 'tail';
|
|
270
|
-
|
|
271
|
-
// M4: bound the retained buffer at `cap` even when a single chunk is huge —
|
|
272
|
-
// concat then hard-slice every append so one large write can't blow past it.
|
|
273
|
-
const append = (buf, chunk) => {
|
|
274
|
-
const combined = buf + chunk;
|
|
275
|
-
if (combined.length <= cap) return combined;
|
|
276
|
-
truncated = true;
|
|
277
|
-
return mode === 'head' ? combined.slice(0, cap) : combined.slice(-cap);
|
|
278
|
-
};
|
|
279
|
-
|
|
280
|
-
const finish = (code) => {
|
|
281
|
-
if (settled) return; settled = true;
|
|
282
|
-
if (code === 0) timedOut = false; // M3: clean exit within grace is NOT a timeout
|
|
283
|
-
clearTimeout(hardTimer); clearTimeout(killTimer); clearTimeout(backstop);
|
|
284
|
-
resolve({ code, stdout: out, stderr: err, timedOut, spawnError, truncated });
|
|
285
|
-
};
|
|
286
|
-
|
|
287
|
-
child.on('error', (e) => { spawnError = e.message; finish(null); });
|
|
288
|
-
// #179 r6 (security MEDIUM): live-mirroring raw child output to the parent's
|
|
289
|
-
// stdout/stderr aids debugging but can surface tool output / secrets in logs.
|
|
290
|
-
// Mirror by default (operator-facing progress), but allow muting via
|
|
291
|
-
// EVOLVE_HAND_QUIET=true; the captured buffer is unaffected either way.
|
|
292
|
-
const mirror = String(process.env.EVOLVE_HAND_QUIET || '').toLowerCase() !== 'true';
|
|
293
|
-
if (child.stdout) child.stdout.on('data', (d) => { out = append(out, d.toString()); if (mirror) process.stdout.write(pfx + d); });
|
|
294
|
-
if (child.stderr) child.stderr.on('data', (d) => { err = append(err, d.toString()); if (mirror) process.stderr.write(pfx + d); });
|
|
295
|
-
child.on('close', (code) => finish(code));
|
|
296
|
-
|
|
297
|
-
hardTimer = setTimeout(() => {
|
|
298
|
-
timedOut = true;
|
|
299
|
-
const pid = child.pid;
|
|
300
|
-
try { process.kill(-pid, 'SIGTERM'); } catch (_) { try { child.kill('SIGTERM'); } catch (_) {} }
|
|
301
|
-
killTimer = setTimeout(() => {
|
|
302
|
-
try { process.kill(-pid, 'SIGKILL'); } catch (_) { try { child.kill('SIGKILL'); } catch (_) {} }
|
|
303
|
-
}, KILL_GRACE_MS());
|
|
304
|
-
// backstop: even an unkillable child can't wedge the loop — detach pipes,
|
|
305
|
-
// unref, and resolve so the parent event loop drains.
|
|
306
|
-
backstop = setTimeout(() => {
|
|
307
|
-
try { if (child.stdout) child.stdout.destroy(); if (child.stderr) child.stderr.destroy(); child.unref(); } catch (_) {}
|
|
308
|
-
finish(null);
|
|
309
|
-
}, KILL_GRACE_MS() + 5000);
|
|
310
|
-
}, timeoutMs);
|
|
311
|
-
|
|
312
|
-
if (stdinText != null) writeStdin(child, stdinText);
|
|
313
|
-
});
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
// m7: EPIPE-guarded one-shot stdin write+end (child gets EOF to start its turn).
|
|
317
|
-
function writeStdin(child, text) {
|
|
318
|
-
if (!child.stdin) return;
|
|
319
|
-
child.stdin.on('error', () => {}); // swallow EPIPE if child already exited
|
|
320
|
-
try { child.stdin.write(String(text), 'utf8'); child.stdin.end(); }
|
|
321
|
-
catch (_) { /* child gone; the timeout/close path handles it */ }
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
// ---------------------------------------------------------------------------
|
|
325
|
-
// tryParseClaudeResult — M5: claude -p --output-format json emits ONE result
|
|
326
|
-
// doc. Strip our [Hand] prefix, take the last non-empty line, JSON.parse it.
|
|
327
|
-
// Do NOT substring-match (model's free-text result may contain "type":"result").
|
|
328
|
-
// ---------------------------------------------------------------------------
|
|
329
|
-
function tryParseClaudeResult(stdout) {
|
|
330
|
-
const lines = String(stdout || '')
|
|
331
|
-
.split('\n')
|
|
332
|
-
.map((l) => l.replace(/^\[Hand\]\s?/, '').trim())
|
|
333
|
-
.filter(Boolean);
|
|
334
|
-
for (let i = lines.length - 1; i >= 0; i--) {
|
|
335
|
-
if (!lines[i].startsWith('{')) continue;
|
|
336
|
-
try {
|
|
337
|
-
const o = JSON.parse(lines[i]);
|
|
338
|
-
if (o && o.type === 'result') return o;
|
|
339
|
-
} catch (_) { /* keep scanning upward */ }
|
|
340
|
-
}
|
|
341
|
-
return null;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
// ---------------------------------------------------------------------------
|
|
345
|
-
// evaluateStatusGate — minimal v1 gate. Fallback A/B behind EVOLVE_EXEC_FALLBACKS.
|
|
346
|
-
// ---------------------------------------------------------------------------
|
|
347
|
-
function evaluateStatusGate({ r, statusFile, cycleStartMs, attemptStartMs, solidifyProof }) {
|
|
348
|
-
const combined = `${r.stdout}\n${r.stderr}`;
|
|
349
|
-
if (r.spawnError) return { ok: false, kind: 'spawn_error', reason: `spawn error: ${r.spawnError}` };
|
|
350
|
-
|
|
351
|
-
// claude JSON classification first (deterministic)
|
|
352
|
-
const jr = tryParseClaudeResult(r.stdout);
|
|
353
|
-
if (jr) {
|
|
354
|
-
// #179 r4: persist only the fixed enum subtype, never jr.result (free model
|
|
355
|
-
// text — may contain secrets/tool output that lands in the lessons log).
|
|
356
|
-
if (jr.is_error) return { ok: false, kind: 'nonzero', reason: `claude is_error: ${String(jr.subtype || 'unknown').slice(0, 80)}` };
|
|
357
|
-
if (Array.isArray(jr.permission_denials) && jr.permission_denials.length > 0) {
|
|
358
|
-
// surface only the denied tool NAMES, never tool_input (the command may
|
|
359
|
-
// embed secrets). Names are a bounded, non-sensitive enum.
|
|
360
|
-
const names = jr.permission_denials.map((d) => (d && d.tool_name) || '?').slice(0, 10);
|
|
361
|
-
return { ok: false, kind: 'permission_denied', reason: `tool perms denied: ${names.join(',')}` };
|
|
362
|
-
}
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
const hasSolidifyFail = combined.includes('[SOLIDIFY] FAILED'); // honored for ALL harnesses (cheap, can only fail)
|
|
366
|
-
// P4-b: how to obtain POSITIVE proof that solidify succeeded.
|
|
367
|
-
// 'stdout' (default — claude-code): the [SOLIDIFY] SUCCESS marker rides the
|
|
368
|
-
// claude --output-format json transcript reliably. Unchanged behavior.
|
|
369
|
-
// 'state' (codex/opencode): those harnesses frame/swallow the child's
|
|
370
|
-
// stdout, so trust the evolver-written evolution_solidify_state.json
|
|
371
|
-
// instead (written by solidify.js, freshness+skip_reason gated). Stricter,
|
|
372
|
-
// not weaker. Per-attempt freshness uses attemptStartMs (cycleStartMs fallback).
|
|
373
|
-
const sinceMs = Number.isFinite(attemptStartMs) ? attemptStartMs : cycleStartMs;
|
|
374
|
-
const hasSolidifyOk = (solidifyProof === 'state')
|
|
375
|
-
? solidifyStateSucceededSince(sinceMs)
|
|
376
|
-
: combined.includes('[SOLIDIFY] SUCCESS');
|
|
377
|
-
const statusResult = readStatusResult(statusFile); // null | 'success' | 'failure' | 'invalid'
|
|
378
|
-
|
|
379
|
-
// success check BEFORE honoring timeout (M3: clean exit within SIGTERM grace).
|
|
380
|
-
// Bugbot #179 r3: require POSITIVE proof of solidify, not just absence of
|
|
381
|
-
// FAILED. A Hand that skips `node index.js solidify`, or writes
|
|
382
|
-
// result:"failure", must NOT close the cycle as success. So: exit 0 AND no
|
|
383
|
-
// FAILED marker AND positive solidify proof (marker OR state per solidifyProof)
|
|
384
|
-
// AND a status file whose parsed result is exactly "success".
|
|
385
|
-
if (r.code === 0 && !hasSolidifyFail && hasSolidifyOk && statusResult === 'success') {
|
|
386
|
-
return { ok: true, kind: 'success', reason: '' };
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
if (r.timedOut) return { ok: false, kind: 'timeout', reason: `hand timed out after ${HAND_TIMEOUT_MS()}ms` };
|
|
390
|
-
|
|
391
|
-
if (String(process.env.EVOLVE_EXEC_FALLBACKS || '') === 'true') {
|
|
392
|
-
// Fallback A: stdout success markers -> auto-write status (v1.1 — port from feishu).
|
|
393
|
-
// P4-b (Bugbot #184): this path trusts stdout/stderr markers, which is exactly
|
|
394
|
-
// what solidifyProof:'state' exists to DISTRUST (codex frames its transcript to
|
|
395
|
-
// stderr; opencode reframes tool output into events). So skip Fallback A entirely
|
|
396
|
-
// for 'state' harnesses — they fall through to Fallback B (the state-file proof,
|
|
397
|
-
// which rejects skip_reason). claude-code ('stdout') keeps Fallback A unchanged.
|
|
398
|
-
const hasEvent = combined.includes('"type": "EvolutionEvent"') || combined.includes('"type":"EvolutionEvent"');
|
|
399
|
-
const hasCapsule = combined.includes('"type": "Capsule"') || combined.includes('"type":"Capsule"');
|
|
400
|
-
if (solidifyProof !== 'state' && r.code === 0 && !hasSolidifyFail && (combined.includes('[SOLIDIFY] SUCCESS') || (hasEvent && hasCapsule))) {
|
|
401
|
-
try {
|
|
402
|
-
fs.writeFileSync(statusFile, JSON.stringify({
|
|
403
|
-
result: 'success',
|
|
404
|
-
en: 'Status: [AUTO-DETECTED] Hand completed work (status auto-generated by exec-bridge).',
|
|
405
|
-
zh: '状态: [自动检测] Hand 完成工作(状态由 exec-bridge 自动生成)。',
|
|
406
|
-
}, null, 2));
|
|
407
|
-
return { ok: true, kind: 'success_fallback_a', reason: '' };
|
|
408
|
-
} catch (_) { /* fall through */ }
|
|
409
|
-
}
|
|
410
|
-
// Fallback B: solidify_state confirms a success AFTER THIS ATTEMPT started.
|
|
411
|
-
// Bugbot #179 r3: must gate on the per-ATTEMPT start, not the per-cycle start.
|
|
412
|
-
// P4-b (Bugbot #184): reuse solidifyStateSucceededSince so Fallback B applies
|
|
413
|
-
// the SAME success criteria as the primary 'state' proof — in particular it
|
|
414
|
-
// must also REJECT a fresh status:'success' that carries skip_reason (e.g. a
|
|
415
|
-
// PR-overlap rollback). Inlining the check here previously let such a rollback
|
|
416
|
-
// close the cycle as success_fallback_b even though the primary gate rejects it.
|
|
417
|
-
if (solidifyStateSucceededSince(sinceMs)) {
|
|
418
|
-
return { ok: true, kind: 'success_fallback_b', reason: '' };
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
// classify the failure precisely (#267): distinguish no-solidify-marker,
|
|
423
|
-
// explicit result:"failure", and missing/invalid status from a plain nonzero.
|
|
424
|
-
let kind;
|
|
425
|
-
if (hasSolidifyFail) kind = 'solidify_failed';
|
|
426
|
-
else if (!hasSolidifyOk) kind = 'no_solidify_marker';
|
|
427
|
-
else if (statusResult === null) kind = 'no_status';
|
|
428
|
-
else if (statusResult === 'failure') kind = 'status_failure';
|
|
429
|
-
else if (statusResult === 'invalid') kind = 'status_invalid';
|
|
430
|
-
else kind = 'nonzero';
|
|
431
|
-
// #299: do NOT persist raw model/tool stdout (may contain secrets). Keep only
|
|
432
|
-
// a classified, bounded reason — no transcript tail.
|
|
433
|
-
return { ok: false, kind, reason: `code=${r.code} solidify_ok=${hasSolidifyOk} status_result=${statusResult}` };
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
// Parse the Hand-written status file: -> 'success' | 'failure' | 'invalid' | null(absent).
|
|
437
|
-
// #267: a positive `result:"success"` is required for the success gate.
|
|
438
|
-
function readStatusResult(statusFile) {
|
|
439
|
-
if (!statusFile || !fs.existsSync(statusFile)) return null;
|
|
440
|
-
try {
|
|
441
|
-
const o = JSON.parse(fs.readFileSync(statusFile, 'utf8'));
|
|
442
|
-
if (o && o.result === 'success') return 'success';
|
|
443
|
-
if (o && o.result === 'failure') return 'failure';
|
|
444
|
-
return 'invalid';
|
|
445
|
-
} catch (_) { return 'invalid'; }
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
// P4-b: harness-AGNOSTIC positive proof that `node index.js solidify` ran and
|
|
449
|
-
// SUCCEEDED in THIS attempt — used for harnesses (codex/opencode) whose
|
|
450
|
-
// stdout/stderr may not relay the `[SOLIDIFY] SUCCESS` marker verbatim (codex
|
|
451
|
-
// frames its transcript to stderr; opencode reframes tool output into events).
|
|
452
|
-
// This is STRICTER than the stdout substring, not weaker: the state file is
|
|
453
|
-
// written by solidify.js itself (not the model, so it can't be faked by an
|
|
454
|
-
// echoed line), it is freshness-gated per-attempt, and it rejects any
|
|
455
|
-
// skip_reason. solidify.js writes state.last_solidify UNCONDITIONALLY on both
|
|
456
|
-
// success and failure (solidify.js:~1169), so freshness alone is insufficient —
|
|
457
|
-
// we require outcome.status==='success' AND no skip_reason AND at>=sinceMs.
|
|
458
|
-
// A PR-overlap rollback serializes outcome.status:'success' + skip_reason:
|
|
459
|
-
// 'open_pr_overlap' (solidify.js:~942) — that is NOT a real solidify success.
|
|
460
|
-
function solidifyStateSucceededSince(sinceMs) {
|
|
461
|
-
try {
|
|
462
|
-
if (!Number.isFinite(sinceMs)) return false;
|
|
463
|
-
const stPath = path.join(getEvolutionDir(), 'evolution_solidify_state.json');
|
|
464
|
-
if (!fs.existsSync(stPath)) return false;
|
|
465
|
-
const st = JSON.parse(fs.readFileSync(stPath, 'utf8'));
|
|
466
|
-
const ls = st && st.last_solidify;
|
|
467
|
-
if (!ls || !ls.outcome) return false;
|
|
468
|
-
if (ls.outcome.status !== 'success') return false;
|
|
469
|
-
if (ls.outcome.skip_reason) return false; // PR-overlap rollback etc. is NOT a real success
|
|
470
|
-
const at = Date.parse(ls.at || 0);
|
|
471
|
-
return Number.isFinite(at) && at >= sinceMs;
|
|
472
|
-
} catch (_) { return false; }
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
// thin lesson bank (full bank deferred to v1.1)
|
|
476
|
-
function appendFailureLesson(cycleTag, tag, reason) {
|
|
477
|
-
try {
|
|
478
|
-
const dir = getEvolutionDir();
|
|
479
|
-
if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
|
|
480
|
-
fs.appendFileSync(path.join(dir, 'exec_bridge_lessons.jsonl'),
|
|
481
|
-
JSON.stringify({ at: new Date().toISOString(), cycle: cycleTag, tag, reason: String(reason || '').slice(0, 500) }) + '\n', 'utf8');
|
|
482
|
-
} catch (_) {}
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
// ---------------------------------------------------------------------------
|
|
486
|
-
// Recipes — per-harness Hand invocation.
|
|
487
|
-
// ---------------------------------------------------------------------------
|
|
488
|
-
const RECIPES = {
|
|
489
|
-
'claude-code': {
|
|
490
|
-
deliversTaskVia: 'stdin',
|
|
491
|
-
buildArgs({ sessionId, statusFile, cycleTag, settingsPath }) {
|
|
492
|
-
const allow = [
|
|
493
|
-
'Edit', 'Write', 'Read', 'Glob', 'Grep',
|
|
494
|
-
'Bash(node index.js solidify)',
|
|
495
|
-
'Bash(git status*)', 'Bash(git diff*)', 'Bash(git add*)', 'Bash(git rev-parse*)', 'Bash(git ls-files*)',
|
|
496
|
-
];
|
|
497
|
-
const args = [
|
|
498
|
-
'-p', '--output-format', 'json',
|
|
499
|
-
'--permission-mode', 'acceptEdits',
|
|
500
|
-
'--settings', settingsPath,
|
|
501
|
-
'--allowedTools', ...allow, // redundant defense vs silently-ignored settings (gate 1.4)
|
|
502
|
-
'--model', process.env.EVOLVE_HAND_MODEL || 'sonnet',
|
|
503
|
-
'--session-id', sessionId,
|
|
504
|
-
'--add-dir', getRepoRoot(),
|
|
505
|
-
'--max-turns', String(process.env.EVOLVE_HAND_MAX_TURNS || 60),
|
|
506
|
-
...(String(process.env.EVOLVE_HAND_DANGEROUS || '') === 'true' ? ['--dangerously-skip-permissions'] : []),
|
|
507
|
-
];
|
|
508
|
-
return { bin: resolveBin('claude-code'), args,
|
|
509
|
-
env: { EVOLVE_CYCLE_TAG: String(cycleTag), EVOLVE_STATUS_FILE: statusFile } };
|
|
510
|
-
},
|
|
511
|
-
},
|
|
512
|
-
// v1.1 — contract written, dormant (feishu already closes the openclaw loop).
|
|
513
|
-
'openclaw': {
|
|
514
|
-
deliversTaskVia: 'argv',
|
|
515
|
-
buildArgs({ sessionId, statusFile, cycleTag, taskText }) {
|
|
516
|
-
return {
|
|
517
|
-
bin: resolveBin('openclaw'),
|
|
518
|
-
args: ['agent', '--agent', 'main', '--session-id', sessionId, '-m', taskText, '--timeout', '600'],
|
|
519
|
-
env: { EVOLVE_CYCLE_TAG: String(cycleTag), EVOLVE_STATUS_FILE: statusFile },
|
|
520
|
-
};
|
|
521
|
-
},
|
|
522
|
-
},
|
|
523
|
-
// P4-b — codex-cli 0.131.0 headless `codex exec`. SHADOW/experimental until the
|
|
524
|
-
// live smoke test (scripts/smoke-exec-hand.sh) passes on a working-provider box.
|
|
525
|
-
// Verified on-box 2026-06-03 (flags/sandbox/framing; the live agentic turn was
|
|
526
|
-
// NOT verifiable here — provider auth 401):
|
|
527
|
-
// * deliversTaskVia:'stdin' — `codex exec` with no PROMPT reads stdin; the
|
|
528
|
-
// bridge pipes taskText (stdio[0]='pipe'). Avoids the argv leading-dash footgun.
|
|
529
|
-
// * solidifyProof:'state' — codex frames its transcript to STDERR (stdout=0 bytes)
|
|
530
|
-
// and may not relay the child `node index.js solidify` stdout, so the gate uses
|
|
531
|
-
// evolution_solidify_state.json (written by solidify.js) as positive proof.
|
|
532
|
-
// * -s workspace-write: writes confined to [workdir,/tmp,$TMPDIR], NETWORK OFF —
|
|
533
|
-
// the claude-acceptEdits analog (NOT --dangerously-bypass). Coarser than claude's
|
|
534
|
-
// per-command allow/deny (codex may run arbitrary shell INSIDE the sandbox), but
|
|
535
|
-
// network-off + cwd=git-repo make in-workspace damage recoverable.
|
|
536
|
-
// * -c approval_policy=never: non-interactive auto-approve INSIDE the sandbox.
|
|
537
|
-
// * -C REPO_ROOT: working + sandbox root.
|
|
538
|
-
// * --add-dir getEvolutionDir(): UNCONDITIONAL — MEMORY_DIR/EVOLUTION_DIR/
|
|
539
|
-
// OPENCLAW_WORKSPACE/EVOLVER_SESSION_SCOPE (paths.js) can relocate the status +
|
|
540
|
-
// state files OUTSIDE REPO_ROOT, which workspace-write would otherwise block.
|
|
541
|
-
// * --skip-git-repo-check + --ephemeral (no session persistence in ~/.codex).
|
|
542
|
-
// * NO --session-id (codex has none; resume is a subcommand) — passed id ignored.
|
|
543
|
-
// * EVOLVE_HAND_DANGEROUS=true escalates to danger-full-access (parity escape hatch).
|
|
544
|
-
// * -m only when EVOLVE_HAND_MODEL is set (codex wants a bare model name; claude's
|
|
545
|
-
// 'sonnet' default would be wrong to forward).
|
|
546
|
-
'codex': {
|
|
547
|
-
deliversTaskVia: 'stdin',
|
|
548
|
-
solidifyProof: 'state',
|
|
549
|
-
buildArgs({ statusFile, cycleTag }) {
|
|
550
|
-
const sandbox = String(process.env.EVOLVE_HAND_DANGEROUS || '') === 'true'
|
|
551
|
-
? 'danger-full-access' : 'workspace-write';
|
|
552
|
-
const args = [
|
|
553
|
-
'exec',
|
|
554
|
-
'-s', sandbox,
|
|
555
|
-
'-c', 'approval_policy=never',
|
|
556
|
-
'-C', getRepoRoot(),
|
|
557
|
-
'--add-dir', getEvolutionDir(),
|
|
558
|
-
'--skip-git-repo-check',
|
|
559
|
-
'--ephemeral',
|
|
560
|
-
...(process.env.EVOLVE_HAND_MODEL ? ['-m', process.env.EVOLVE_HAND_MODEL] : []),
|
|
561
|
-
// task delivered on stdin (deliversTaskVia:'stdin'); no PROMPT argv.
|
|
562
|
-
];
|
|
563
|
-
return { bin: resolveBin('codex'), args,
|
|
564
|
-
env: { EVOLVE_CYCLE_TAG: String(cycleTag), EVOLVE_STATUS_FILE: statusFile } };
|
|
565
|
-
},
|
|
566
|
-
},
|
|
567
|
-
// P4-b — opencode 1.14.41 headless `opencode run [message..]`. SHADOW/experimental
|
|
568
|
-
// (same live-turn caveat as codex; opencode hung at the model call on-box).
|
|
569
|
-
// * deliversTaskVia:'argv' — `opencode run` reads the message from the ARGV
|
|
570
|
-
// positional (NOT stdin). Verified multiline-safe (ARG_MAX 3.2MB, shell-free
|
|
571
|
-
// array spawn). The message MUST be the LAST arg (variadic [message..]); a `--`
|
|
572
|
-
// terminator guards a '-'-leading taskText.
|
|
573
|
-
// * solidifyProof:'state' — same rationale; opencode reframes tool output into
|
|
574
|
-
// events that bufferMode:'tail' could evict.
|
|
575
|
-
// * PERMISSIONS ASYMMETRY (honest): opencode has NO fine-grained scoping or
|
|
576
|
-
// sandbox — only the blunt --dangerously-skip-permissions (can run unrestricted
|
|
577
|
-
// shell: push/curl/rm anywhere). Mandatory for headless function (else it hangs
|
|
578
|
-
// on the first edit approval), so it is gated by a SECOND explicit env
|
|
579
|
-
// EVOLVE_OPENCODE_DANGEROUS=true, refused FAIL-FAST before the loop in
|
|
580
|
-
// runExecBridge (NOT thrown from buildArgs, which stays pure). Weakest-isolation
|
|
581
|
-
// harness — documented, opt-in twice.
|
|
582
|
-
// * --dir REPO_ROOT. No --format json (default relays to stdout = operator mirror;
|
|
583
|
-
// json buries output in non-tail events). -m only when EVOLVE_HAND_MODEL set
|
|
584
|
-
// (opencode wants provider/model).
|
|
585
|
-
'opencode': {
|
|
586
|
-
deliversTaskVia: 'argv',
|
|
587
|
-
solidifyProof: 'state',
|
|
588
|
-
buildArgs({ statusFile, cycleTag, taskText }) {
|
|
589
|
-
const args = [
|
|
590
|
-
'run',
|
|
591
|
-
'--dangerously-skip-permissions', // blunt; gated by EVOLVE_OPENCODE_DANGEROUS (checked pre-loop)
|
|
592
|
-
'--dir', getRepoRoot(),
|
|
593
|
-
...(process.env.EVOLVE_HAND_MODEL ? ['-m', process.env.EVOLVE_HAND_MODEL] : []),
|
|
594
|
-
'--', // terminate flags so a '-'-leading taskText is the message, not a flag
|
|
595
|
-
taskText, // positional message — MUST be last (variadic [message..])
|
|
596
|
-
];
|
|
597
|
-
return { bin: resolveBin('opencode'), args,
|
|
598
|
-
env: { EVOLVE_CYCLE_TAG: String(cycleTag), EVOLVE_STATUS_FILE: statusFile } };
|
|
599
|
-
},
|
|
600
|
-
},
|
|
601
|
-
// P3: a LIGHT read-only claude for DISTILLATION — it reads a distill prompt on
|
|
602
|
-
// stdin and outputs a Gene JSON; it must NOT edit files or run tools. Hence
|
|
603
|
-
// --permission-mode plan (read-only posture), no --add-dir / --settings /
|
|
604
|
-
// --allowedTools (an empty --allowedTools would swallow the next arg), low
|
|
605
|
-
// --max-turns. Distinct from the 'claude-code' Hand recipe (which edits + solidifies).
|
|
606
|
-
'claude-distill': {
|
|
607
|
-
deliversTaskVia: 'stdin',
|
|
608
|
-
buildArgs({ sessionId }) {
|
|
609
|
-
const args = [
|
|
610
|
-
'-p', '--output-format', 'json',
|
|
611
|
-
'--permission-mode', 'plan',
|
|
612
|
-
'--model', process.env.EVOLVE_DISTILL_MODEL || 'sonnet',
|
|
613
|
-
'--session-id', sessionId,
|
|
614
|
-
'--max-turns', String(parseInt(process.env.EVOLVE_DISTILL_MAX_TURNS || '3', 10) || 3),
|
|
615
|
-
];
|
|
616
|
-
return { bin: resolveBin('claude-code'), args, env: {} };
|
|
617
|
-
},
|
|
618
|
-
},
|
|
619
|
-
};
|
|
620
|
-
|
|
621
|
-
// ---------------------------------------------------------------------------
|
|
622
|
-
// runExecBridge — the loop. Brain -> scrape -> Hand (retry w/ hard timeout) -> gate.
|
|
623
|
-
// ---------------------------------------------------------------------------
|
|
624
|
-
async function runExecBridge(opts = {}) {
|
|
625
|
-
const harness = opts.harness || 'claude-code';
|
|
626
|
-
const recipe = RECIPES[harness];
|
|
627
|
-
if (!recipe) throw new Error(`execBridge: no recipe for harness '${harness}'`);
|
|
628
|
-
// P4-b: opencode has NO sandbox / fine-grained permissions — only the blunt
|
|
629
|
-
// --dangerously-skip-permissions (the Hand can run unrestricted shell). Refuse
|
|
630
|
-
// FAIL-FAST here (before any Brain run) unless the operator explicitly accepts
|
|
631
|
-
// that trade-off via a SECOND env. Done at the loop head — not in buildArgs
|
|
632
|
-
// (which must stay pure) — so a wasted Brain cycle never precedes the refusal.
|
|
633
|
-
if (harness === 'opencode'
|
|
634
|
-
&& String(process.env.EVOLVE_OPENCODE_DANGEROUS || '').toLowerCase() !== 'true') {
|
|
635
|
-
throw new Error(
|
|
636
|
-
'execBridge: opencode Hand requires EVOLVE_OPENCODE_DANGEROUS=true. opencode has no ' +
|
|
637
|
-
'fine-grained permission scoping (only the blunt --dangerously-skip-permissions, no ' +
|
|
638
|
-
'sandbox like codex -s workspace-write or claude --settings). Set it explicitly to accept ' +
|
|
639
|
-
'that the opencode Hand can run unrestricted shell, or use claude-code/codex.');
|
|
640
|
-
}
|
|
641
|
-
const spawnFn = opts.spawnFn || require('child_process').spawn;
|
|
642
|
-
const maxCycles = opts.once ? 1 : (Number(opts.maxCycles) || 0); // 0 = unbounded
|
|
643
|
-
const REPO_ROOT = getRepoRoot();
|
|
644
|
-
const MAX_RETRIES = parseInt(process.env.EVOLVE_HAND_MAX_RETRIES || '3', 10) || 3;
|
|
645
|
-
const BACKOFF_MS = (parseInt(process.env.EVOLVE_HAND_RETRY_BACKOFF_SECONDS || '15', 10) || 15) * 1000;
|
|
646
|
-
const settingsPath = (harness === 'claude-code') ? writeScopedSettings() : null;
|
|
647
|
-
|
|
648
|
-
let cycleCount = 0, lastOutcome = 'none';
|
|
649
|
-
while (maxCycles === 0 || cycleCount < maxCycles) {
|
|
650
|
-
cycleCount++;
|
|
651
|
-
const cycleStartMs = Date.now();
|
|
652
|
-
const cycleTag = String(cycleCount).padStart(4, '0');
|
|
653
|
-
const statusBase = path.join(getEvolutionDir(), `status_${cycleTag}`);
|
|
654
|
-
|
|
655
|
-
// BRAIN — force bridge print mode, scrape stdout (dispatch.js untouched).
|
|
656
|
-
const brain = await runChild(spawnFn, 'node', [EVOLVER_OWN_INDEX, 'run'], {
|
|
657
|
-
env: { ...process.env, EVOLVE_BRIDGE: 'true' }, stdinText: null, cwd: REPO_ROOT, // evolve the target tree, run evolver's own index.js
|
|
658
|
-
timeoutMs: BRAIN_TIMEOUT_MS(), label: 'Brain', bufferMode: 'head', // keep the sessions_spawn line at the head
|
|
659
|
-
});
|
|
660
|
-
if (brain.timedOut) { lastOutcome = 'brain_timeout'; appendFailureLesson(cycleTag, 'brain_timeout', brain.spawnError || ''); if (opts.once) break; await sleep(IDLE_SLEEP_MS()); continue; }
|
|
661
|
-
if (brain.code !== 0) { lastOutcome = 'brain_failed'; appendFailureLesson(cycleTag, 'brain_failed', brain.spawnError || `code=${brain.code}`); if (opts.once) break; await sleep(IDLE_SLEEP_MS()); continue; }
|
|
662
|
-
|
|
663
|
-
const spawnObj = parseFirstSpawnCall(brain.stdout);
|
|
664
|
-
if (!spawnObj || !spawnObj.task) { lastOutcome = 'no_spawn'; if (opts.once) break; await sleep(IDLE_SLEEP_MS()); continue; }
|
|
665
|
-
|
|
666
|
-
const baseTask = spawnObj.task;
|
|
667
|
-
let handOk = false;
|
|
668
|
-
let cycleOutcome = 'hand_failed'; // #179 r5: each cycle owns its outcome; the LAST cycle wins
|
|
669
|
-
for (let attempt = 1; attempt <= MAX_RETRIES && !handOk; attempt++) {
|
|
670
|
-
const attemptStartMs = Date.now(); // #179 r3: Fallback B must gate per-attempt, not per-cycle
|
|
671
|
-
const statusFile = `${statusBase}_${attempt}.json`; // m8: per-attempt file
|
|
672
|
-
try { if (fs.existsSync(statusFile)) fs.unlinkSync(statusFile); } catch (_) {}
|
|
673
|
-
const hint = attempt > 1
|
|
674
|
-
? `\n\nRETRY ${attempt}/${MAX_RETRIES}: previous attempt failed. Keep changes small/reversible; you MUST run \`node index.js solidify\` AND write the status JSON.\n`
|
|
675
|
-
: '';
|
|
676
|
-
const taskText = appendStatusFileContract(baseTask + hint, statusFile, cycleTag);
|
|
677
|
-
try { fs.writeFileSync(`${statusBase}_${attempt}_task.txt`, taskText); } catch (_) {}
|
|
678
|
-
|
|
679
|
-
const sessionId = (harness === 'claude-code') ? crypto.randomUUID() : `evolver_hand_${cycleTag}_${Date.now()}_${attempt}`;
|
|
680
|
-
const built = recipe.buildArgs({ sessionId, statusFile, cycleTag, settingsPath, taskText });
|
|
681
|
-
|
|
682
|
-
const r = await runChild(spawnFn, built.bin, built.args, {
|
|
683
|
-
env: { ...process.env, ...built.env },
|
|
684
|
-
stdinText: recipe.deliversTaskVia === 'stdin' ? taskText : null, cwd: REPO_ROOT, // Hand's solidify+git must run in the evolution repo
|
|
685
|
-
timeoutMs: HAND_TIMEOUT_MS(), label: 'Hand', bufferMode: 'tail', // keep claude's result JSON at the tail
|
|
686
|
-
});
|
|
687
|
-
|
|
688
|
-
const gate = evaluateStatusGate({ r, statusFile, cycleStartMs, attemptStartMs, solidifyProof: recipe.solidifyProof || 'stdout' });
|
|
689
|
-
if (gate.ok) { handOk = true; cycleOutcome = 'success'; break; }
|
|
690
|
-
appendFailureLesson(cycleTag, `hand_attempt_${attempt}_${gate.kind}`, gate.reason);
|
|
691
|
-
if (attempt < MAX_RETRIES) await sleep(BACKOFF_MS * attempt);
|
|
692
|
-
}
|
|
693
|
-
// #179 r5: assign unconditionally so a LATER cycle's failure is not masked by
|
|
694
|
-
// an EARLIER cycle's success. The latest cycle's outcome is the run outcome.
|
|
695
|
-
lastOutcome = cycleOutcome;
|
|
696
|
-
if (opts.once) break;
|
|
697
|
-
}
|
|
698
|
-
return { cycles: cycleCount, lastOutcome };
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
module.exports = {
|
|
702
|
-
runExecBridge, resolveBin, evaluateStatusGate, writeScopedSettings,
|
|
703
|
-
appendStatusFileContract, tryParseClaudeResult, runChild, RECIPES,
|
|
704
|
-
// Test-only surface for the CVE-2024-27980 Windows npm-shim resolver.
|
|
705
|
-
// Exposes the helper so tests can verify the parser handles real shim
|
|
706
|
-
// formats (claude-code, codex, opencode, openclaw, sdk packages) and
|
|
707
|
-
// gracefully returns null for non-shim targets, custom shims, missing
|
|
708
|
-
// entries, and non-Windows hosts.
|
|
709
|
-
__test: {
|
|
710
|
-
resolveNpmCmdShim: _resolveNpmCmdShim,
|
|
711
|
-
},
|
|
712
|
-
};
|
|
1
|
+
const _0xf7d584=_0x51ac;(function(_0x2044a6,_0x17e75d){const _0x22a0ff=_0x51ac,_0x17027a=_0x2044a6();while(!![]){try{const _0x522044=-parseInt(_0x22a0ff(0x528,'\x69\x51\x48\x5d'))/(0xa94*-0x1+-0x19e+-0x411*-0x3)+-parseInt(_0x22a0ff(0x428,'\x31\x40\x65\x5b'))/(0x419+0xf77*-0x1+-0x1a0*-0x7)*(-parseInt(_0x22a0ff(0x4bb,'\x7a\x56\x5b\x28'))/(-0x1*0x177f+-0x5*-0x311+0x82d))+-parseInt(_0x22a0ff(0x3b1,'\x29\x6b\x52\x6e'))/(-0x10f5+-0x350+0x1449)+-parseInt(_0x22a0ff(0x44a,'\x6a\x52\x43\x45'))/(-0x203*-0xf+0xb20+-0x2948)+-parseInt(_0x22a0ff(0x33a,'\x79\x76\x62\x5d'))/(-0x85*0x7+0x1954+-0x15ab*0x1)+-parseInt(_0x22a0ff(0x1c8,'\x24\x67\x53\x39'))/(0x1*0xa13+-0x14a6+0xa9a*0x1)*(parseInt(_0x22a0ff(0x90,'\x67\x6e\x43\x63'))/(-0xcb3*0x1+0x2574+-0x1*0x18b9))+parseInt(_0x22a0ff(0x47b,'\x6d\x24\x62\x47'))/(-0x3e*-0x25+0x15e+-0x11*0x9b);if(_0x522044===_0x17e75d)break;else _0x17027a['push'](_0x17027a['shift']());}catch(_0x3ca4e8){_0x17027a['push'](_0x17027a['shift']());}}}(_0x2999,0x7f7*-0x271+-0x5e9a7+0x278be5));const _0x691516=(function(){const _0x42b952=_0x51ac,_0x3b6b40={};_0x3b6b40[_0x42b952(0x438,'\x5e\x66\x77\x46')]=function(_0x3ab0a2,_0x3484af){return _0x3ab0a2!==_0x3484af;},_0x3b6b40[_0x42b952(0x329,'\x6b\x40\x41\x7a')]=_0x42b952(0x555,'\x73\x35\x40\x78');const _0x50efe2=_0x3b6b40;let _0x454377=!![];return function(_0x5c0a47,_0x1feaf1){const _0x5cb642=_0x42b952;if(_0x50efe2[_0x5cb642(0x494,'\x4a\x6f\x48\x4d')](_0x50efe2[_0x5cb642(0x487,'\x55\x64\x62\x35')],_0x50efe2['\x53\x61\x74\x78\x53'])){if(_0x21a723['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x59a891))_0x17ed52[_0x5cb642(0x45a,'\x6d\x24\x62\x47')+'\x6e\x63'](_0x332706);}else{const _0x25338c=_0x454377?function(){const _0x4212be=_0x5cb642;if(_0x1feaf1){const _0x49ed3b=_0x1feaf1[_0x4212be(0x3bc,'\x35\x6f\x34\x28')](_0x5c0a47,arguments);return _0x1feaf1=null,_0x49ed3b;}}:function(){};return _0x454377=![],_0x25338c;}};}()),_0x22e00e=_0x691516(this,function(){const _0x2ec7fc=_0x51ac,_0x58f273={};_0x58f273[_0x2ec7fc(0x4e9,'\x35\x6f\x34\x28')]=_0x2ec7fc(0x203,'\x63\x56\x41\x66')+_0x2ec7fc(0x41c,'\x75\x74\x38\x6c');const _0x36b8d1=_0x58f273;return _0x22e00e['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x2ec7fc(0x28f,'\x6e\x25\x6a\x53')](_0x36b8d1[_0x2ec7fc(0x35a,'\x47\x47\x32\x21')])[_0x2ec7fc(0x33f,'\x32\x34\x54\x6d')]()[_0x2ec7fc(0x1e0,'\x35\x6f\x34\x28')+_0x2ec7fc(0x2fb,'\x73\x35\x40\x78')](_0x22e00e)[_0x2ec7fc(0x26b,'\x62\x32\x31\x5a')](_0x36b8d1[_0x2ec7fc(0x1da,'\x73\x35\x40\x78')]);});_0x22e00e();'use strict';const _0x48aa54=require('\x66\x73'),_0x269de0=require('\x70\x61\x74\x68'),_0x4d83f4=require('\x63\x72\x79\x70\x74\x6f'),{execSync:_0x11e2c2,execFileSync:_0x4a4b50}=require(_0xf7d584(0x550,'\x24\x67\x53\x39')+_0xf7d584(0x551,'\x63\x56\x41\x66')),{getRepoRoot:_0x57848d,getEvolutionDir:_0x5f55e7}=require(_0xf7d584(0x42d,'\x79\x76\x62\x5d')),_0x398386=require(_0xf7d584(0x3cb,'\x6a\x68\x4b\x54')),_0x1df3d0=typeof _0x398386[_0xf7d584(0x455,'\x69\x51\x48\x5d')+_0xf7d584(0x1b7,'\x6d\x24\x62\x47')+_0xf7d584(0xbd,'\x62\x32\x31\x5a')]===_0xf7d584(0x541,'\x30\x23\x48\x64')?_0x398386[_0xf7d584(0x24f,'\x63\x56\x41\x66')+_0xf7d584(0x4e1,'\x6a\x52\x43\x45')+_0xf7d584(0xd8,'\x73\x35\x40\x78')]:_0x5e9419,_0x12a61e=_0xf7d584(0x1cc,'\x4b\x61\x5d\x48')+_0xf7d584(0x9d,'\x43\x71\x4f\x50');function _0x18c4fe(_0x40f3f1){const _0x479f31=_0xf7d584,_0x6177c6={};_0x6177c6[_0x479f31(0x214,'\x25\x51\x28\x64')]=function(_0x2662f5,_0x2b7e95){return _0x2662f5||_0x2b7e95;},_0x6177c6[_0x479f31(0x4d0,'\x79\x76\x62\x5d')]=function(_0x8cc59b,_0xc9d4dd){return _0x8cc59b<_0xc9d4dd;},_0x6177c6['\x64\x5a\x49\x54\x56']=function(_0x44eeb7,_0x4c0ca){return _0x44eeb7===_0x4c0ca;},_0x6177c6[_0x479f31(0x47e,'\x47\x47\x32\x21')]=function(_0x5f4112,_0x55d328){return _0x5f4112!==_0x55d328;},_0x6177c6['\x6f\x63\x59\x53\x51']=_0x479f31(0x546,'\x79\x76\x62\x5d'),_0x6177c6[_0x479f31(0x341,'\x25\x51\x28\x64')]=function(_0x5a7230,_0x377aad){return _0x5a7230===_0x377aad;},_0x6177c6[_0x479f31(0xe1,'\x4e\x5b\x25\x31')]=function(_0x158fea,_0x653c0){return _0x158fea===_0x653c0;};const _0x554b83=_0x6177c6,_0x22c095=String(_0x554b83[_0x479f31(0x479,'\x6b\x40\x41\x7a')](_0x40f3f1,'')),_0xb943ea=_0x22c095[_0x479f31(0x523,'\x48\x5d\x5d\x79')](_0x12a61e);if(_0xb943ea===-(-0x14c9*-0x1+0xab8+-0x1c*0x120))return null;let _0x730c9e=-(0x796*-0x3+0x8*-0x457+-0x147*-0x2d);for(let _0x42e2c3=_0xb943ea+_0x12a61e[_0x479f31(0x232,'\x4e\x5b\x25\x31')];_0x554b83[_0x479f31(0xaa,'\x71\x76\x77\x72')](_0x42e2c3,_0x22c095[_0x479f31(0x4dc,'\x6e\x25\x6a\x53')]);_0x42e2c3++){if(_0x554b83[_0x479f31(0x199,'\x55\x21\x6e\x62')](_0x22c095[_0x42e2c3],'\x7b')){if(_0x554b83[_0x479f31(0xa8,'\x51\x26\x49\x45')](_0x554b83[_0x479f31(0x266,'\x4d\x39\x33\x56')],_0x554b83[_0x479f31(0xe0,'\x6f\x48\x41\x45')]))return new _0x4d424a(_0x2c23e3=>_0x32452a(_0x2c23e3,_0x1379c8));else{_0x730c9e=_0x42e2c3;break;}}if(!/\s/[_0x479f31(0x48a,'\x6e\x25\x6a\x53')](_0x22c095[_0x42e2c3]))break;}if(_0x554b83[_0x479f31(0x3b8,'\x33\x65\x65\x5d')](_0x730c9e,-(0x2*0x113c+-0x1*0x1049+-0x1a*0xb3)))return null;let _0x2b3b18=0x48*0x2f+-0x67e+-0x6ba,_0x38cc5e=![],_0x250d14=![];for(let _0x47556d=_0x730c9e;_0x554b83[_0x479f31(0x4e3,'\x6b\x40\x41\x7a')](_0x47556d,_0x22c095[_0x479f31(0x2bd,'\x29\x59\x47\x50')]);_0x47556d++){const _0xb28770=_0x22c095[_0x47556d];if(_0x38cc5e){if(_0x250d14)_0x250d14=![];else{if(_0xb28770==='\x5c')_0x250d14=!![];else{if(_0xb28770==='\x22')_0x38cc5e=![];}}}else{if(_0x554b83[_0x479f31(0x562,'\x4a\x6f\x48\x4d')](_0xb28770,'\x22'))_0x38cc5e=!![];else{if(_0x554b83[_0x479f31(0x409,'\x51\x26\x49\x45')](_0xb28770,'\x7b'))_0x2b3b18++;else{if(_0x554b83[_0x479f31(0x49b,'\x38\x58\x35\x5a')](_0xb28770,'\x7d')){_0x2b3b18--;if(_0x2b3b18===-0x1*0x57+0x52f*0x1+-0x4d8)return _0x22c095[_0x479f31(0x50e,'\x72\x30\x67\x76')](_0x730c9e,_0x47556d+(-0x1*0x2476+-0x2605*-0x1+0x2*-0xc7));}}}}}return null;}function _0x5e9419(_0x426366){const _0x5ce597=_0xf7d584,_0x1d50f5={'\x79\x52\x64\x7a\x77':function(_0x1d91dc,_0x85ccfb){return _0x1d91dc(_0x85ccfb);},'\x58\x42\x69\x67\x78':function(_0x5e03e4,_0x1050f8){return _0x5e03e4===_0x1050f8;},'\x6e\x72\x57\x66\x4b':function(_0x4867ff,_0x126811){return _0x4867ff===_0x126811;},'\x46\x78\x54\x7a\x74':_0x5ce597(0x36f,'\x6b\x40\x41\x7a')},_0x32a42f=_0x1d50f5[_0x5ce597(0x21c,'\x7a\x56\x5b\x28')](_0x18c4fe,_0x426366);if(_0x1d50f5[_0x5ce597(0x3d8,'\x4b\x61\x5d\x48')](_0x32a42f,null))return null;try{const _0x31cea5=JSON[_0x5ce597(0x46b,'\x5a\x46\x45\x52')](_0x32a42f);return _0x31cea5&&_0x1d50f5[_0x5ce597(0x474,'\x6f\x48\x41\x45')](typeof _0x31cea5,_0x1d50f5[_0x5ce597(0x40e,'\x25\x51\x28\x64')])?_0x31cea5:null;}catch(_0x576bd9){return null;}}const _0x5885da=()=>parseInt(process.env.EVOLVE_HAND_TIMEOUT_MS||_0xf7d584(0x286,'\x4b\x61\x5d\x48'),0x34*0x2+-0x132e*0x1+-0xac*-0x1c)||0xe5c08+-0xbb582+0x2*0x58a8d,_0x167341=()=>parseInt(process.env.EVOLVE_BRAIN_TIMEOUT_MS||_0xf7d584(0x43e,'\x35\x6f\x34\x28'),0x1d*0x7+0x36f+-0x430)||0x10d305+0x1a0461+0x4288a*-0x7,_0x1bff38=()=>parseInt(process.env.EVOLVE_HAND_KILL_GRACE_MS||'\x31\x30\x30\x30\x30',-0x179f+-0x1874+0x301d)||0x1e69+-0x1*-0x1bb6+-0x11f*0x11,_0x3039e9=()=>parseInt(process.env.EVOLVE_IDLE_SLEEP_MS||_0xf7d584(0x375,'\x51\x26\x49\x45'),-0x670*-0x4+-0x321*0x2+-0x1f2*0xa)||0x3a5f*0xd+0x21a67+-0x33c7a,_0x363091=()=>parseInt(process.env.EVOLVE_HAND_MAX_BUF_BYTES||_0xf7d584(0x3a4,'\x33\x65\x65\x5d'),-0x2183+0x3*-0x644+0x3459)||0x217c*-0x22+0x6a1c*0xe+0x2a4f0;function _0x1bce88(_0x33b044){return new Promise(_0x2b52ea=>setTimeout(_0x2b52ea,_0x33b044));}function _0x15afb5(_0x4fc20e,_0x49643a){const _0x5c50ac=_0xf7d584,_0x3fbb4f={};_0x3fbb4f[_0x5c50ac(0x1cd,'\x25\x51\x28\x64')]=function(_0x106947,_0x2fb6d1){return _0x106947<=_0x2fb6d1;};const _0x4a9917=_0x3fbb4f,_0x5ed2d8=String(_0x4fc20e||'');return _0x4a9917[_0x5c50ac(0x348,'\x6f\x48\x41\x45')](_0x5ed2d8[_0x5c50ac(0x3d5,'\x52\x43\x65\x48')],_0x49643a)?_0x5ed2d8:_0x5ed2d8['\x73\x6c\x69\x63\x65'](-_0x49643a);}const _0xc45aa=_0x269de0['\x72\x65\x73\x6f\x6c\x76\x65'](__dirname,'\x2e\x2e','\x2e\x2e',_0xf7d584(0xe5,'\x7a\x56\x5b\x28')),_0x83dbf5={},_0x106d28={};_0x106d28[_0xf7d584(0x53b,'\x59\x54\x4a\x6c')]=_0xf7d584(0x141,'\x55\x21\x6e\x62')+'\x49\x4e',_0x106d28[_0xf7d584(0x548,'\x47\x47\x32\x21')]=_0xf7d584(0x2b8,'\x30\x23\x48\x64'),_0x106d28[_0xf7d584(0x4f5,'\x46\x6b\x26\x5e')+'\x65\x73']=[_0xf7d584(0x2ff,'\x4b\x61\x5d\x48'),_0xf7d584(0x4bc,'\x70\x52\x38\x39')+'\x6c\x6f\x62\x61\x6c\x2f\x62\x69'+_0xf7d584(0x140,'\x63\x56\x41\x66'),_0xf7d584(0x1d9,'\x4d\x39\x33\x56')+_0xf7d584(0x496,'\x57\x39\x62\x51')+_0xf7d584(0x165,'\x55\x21\x6e\x62'),_0xf7d584(0x186,'\x6a\x68\x4b\x54')+_0xf7d584(0x258,'\x73\x35\x40\x78')];const _0x447453={};_0x447453[_0xf7d584(0x51d,'\x69\x51\x48\x5d')]=_0xf7d584(0x444,'\x4e\x5b\x25\x31')+'\x5f\x42\x49\x4e',_0x447453[_0xf7d584(0xb7,'\x24\x67\x53\x39')]=_0xf7d584(0x52f,'\x4a\x6f\x48\x4d'),_0x447453[_0xf7d584(0x4f5,'\x46\x6b\x26\x5e')+'\x65\x73']=[_0xf7d584(0x2d6,'\x48\x5d\x5d\x79'),_0xf7d584(0x4bc,'\x70\x52\x38\x39')+_0xf7d584(0x3ec,'\x6d\x24\x62\x47')+_0xf7d584(0x2a8,'\x4d\x39\x33\x56')+'\x61\x77',_0xf7d584(0x1ce,'\x6a\x52\x43\x45')+'\x61\x6c\x2f\x62\x69\x6e\x2f\x6f'+'\x70\x65\x6e\x63\x6c\x61\x77',_0xf7d584(0x27a,'\x79\x76\x62\x5d')+'\x2f\x6f\x70\x65\x6e\x63\x6c\x61'+'\x77'];const _0x3eb697={};_0x3eb697[_0xf7d584(0x53b,'\x59\x54\x4a\x6c')]=_0xf7d584(0x1b0,'\x6d\x24\x62\x47')+'\x4e',_0x3eb697[_0xf7d584(0x33d,'\x7a\x56\x5b\x28')]=_0xf7d584(0x2e1,'\x73\x35\x40\x78'),_0x3eb697[_0xf7d584(0x173,'\x6e\x25\x6a\x53')+'\x65\x73']=[_0xf7d584(0xf3,'\x29\x59\x47\x50'),_0xf7d584(0x3c4,'\x6f\x48\x41\x45')+_0xf7d584(0x4ca,'\x63\x56\x41\x66')+_0xf7d584(0x386,'\x48\x5d\x5d\x79'),_0xf7d584(0x12b,'\x6d\x24\x62\x47')+'\x69\x6e\x2f\x63\x6f\x64\x65\x78',_0xf7d584(0x33b,'\x25\x51\x28\x64')+_0xf7d584(0x496,'\x57\x39\x62\x51')+_0xf7d584(0x157,'\x30\x23\x48\x64'),_0xf7d584(0x1b1,'\x33\x65\x65\x5d')+_0xf7d584(0x222,'\x41\x4a\x41\x76')];const _0x5e019b={};_0x5e019b['\x65\x6e\x76']=_0xf7d584(0x221,'\x43\x71\x4f\x50')+_0xf7d584(0x4d1,'\x59\x54\x4a\x6c'),_0x5e019b['\x63\x6d\x64']=_0xf7d584(0x3a8,'\x6a\x68\x4b\x54'),_0x5e019b[_0xf7d584(0xb3,'\x71\x76\x77\x72')+'\x65\x73']=[_0xf7d584(0x24a,'\x25\x51\x28\x64'),'\x7e\x2f\x2e\x62\x75\x6e\x2f\x62'+_0xf7d584(0x1f1,'\x36\x6e\x6d\x37')+_0xf7d584(0xf8,'\x29\x6b\x52\x6e'),_0xf7d584(0x287,'\x73\x35\x40\x78')+_0xf7d584(0x490,'\x59\x54\x4a\x6c')+_0xf7d584(0x55b,'\x4e\x5b\x25\x31')+'\x64\x65','\x2f\x75\x73\x72\x2f\x6c\x6f\x63'+_0xf7d584(0x47d,'\x70\x52\x38\x39')+'\x70\x65\x6e\x63\x6f\x64\x65',_0xf7d584(0x2df,'\x52\x43\x65\x48')+_0xf7d584(0xc1,'\x6b\x40\x41\x7a')+'\x65'];const _0x4d3ea7={};function _0x51ac(_0x48e52b,_0x203d83){_0x48e52b=_0x48e52b-(0x3a7+0x2*0x131c+-0x294f);const _0x5168e8=_0x2999();let _0x529fad=_0x5168e8[_0x48e52b];if(_0x51ac['\x6c\x50\x42\x53\x48\x6c']===undefined){var _0x542d73=function(_0x11abf0){const _0x2644d1='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let _0x5cbc27='',_0x6151c0='',_0x5de1ad=_0x5cbc27+_0x542d73,_0x4395d9=(''+function(){return 0x1bd9+-0x1523+-0x6b6;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x194e*-0x1+0x1796*0x1+-0x30e3*0x1);for(let _0xc98b50=-0x2*0x3fc+-0x2179+0x2971,_0x30596e,_0x2bcc96,_0x4e3e79=-0x638+-0x26e1+0x2d19;_0x2bcc96=_0x11abf0['\x63\x68\x61\x72\x41\x74'](_0x4e3e79++);~_0x2bcc96&&(_0x30596e=_0xc98b50%(-0x1*0x63d+-0x1*-0x1958+-0x1317)?_0x30596e*(-0x1*0x8c7+0xaf4*0x1+-0x1ed)+_0x2bcc96:_0x2bcc96,_0xc98b50++%(0xebb+0x12ea+0x21a1*-0x1))?_0x5cbc27+=_0x4395d9||_0x5de1ad['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4e3e79+(-0x14e9*-0x1+-0x43*0x59+0x26c))-(0x1205+-0xb7*0x2a+-0xc0b*-0x1)!==0x1e1a*0x1+0x9b7*-0x2+0x2ab*-0x4?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x51f+-0x42b*0x5+0x1af5&_0x30596e>>(-(-0x1*-0x1d64+0x245*0xd+-0x3ae3)*_0xc98b50&-0x1c9f+-0x19d8+0x1d*0x1e1)):_0xc98b50:-0x1b69+0x305*0x6+0x1*0x94b){_0x2bcc96=_0x2644d1['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2bcc96);}for(let _0xc22443=0x21e+0x16*-0x10d+-0x1c*-0xc0,_0x10e782=_0x5cbc27['\x6c\x65\x6e\x67\x74\x68'];_0xc22443<_0x10e782;_0xc22443++){_0x6151c0+='\x25'+('\x30\x30'+_0x5cbc27['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xc22443)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x25c+-0x865*-0x2+-0xe5e))['\x73\x6c\x69\x63\x65'](-(0x2b*-0xa0+-0x2390*-0x1+-0x8ae));}return decodeURIComponent(_0x6151c0);};const _0x548ae=function(_0x48b2f7,_0x29d8d5){let _0x387f71=[],_0x2ef9ae=0x91d*-0x3+0xb53*0x3+0x3*-0x236,_0x41d93a,_0x4fb5f4='';_0x48b2f7=_0x542d73(_0x48b2f7);let _0x5b11a7;for(_0x5b11a7=0x1*-0xf71+-0x1910+0x2881;_0x5b11a7<0x1bdb+0x247e+-0x3f59;_0x5b11a7++){_0x387f71[_0x5b11a7]=_0x5b11a7;}for(_0x5b11a7=-0x23b8+0x1*0xa7b+-0x47*-0x5b;_0x5b11a7<-0x3b6+-0x1*0x545+0x23*0x49;_0x5b11a7++){_0x2ef9ae=(_0x2ef9ae+_0x387f71[_0x5b11a7]+_0x29d8d5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5b11a7%_0x29d8d5['\x6c\x65\x6e\x67\x74\x68']))%(-0x1f1*-0xd+-0x17c0+-0x7d),_0x41d93a=_0x387f71[_0x5b11a7],_0x387f71[_0x5b11a7]=_0x387f71[_0x2ef9ae],_0x387f71[_0x2ef9ae]=_0x41d93a;}_0x5b11a7=0x1135*0x1+0x1*0xdcf+0x18d*-0x14,_0x2ef9ae=-0x73f+0x60b+0x134;for(let _0x52d8a5=0x1*0x1915+-0x2*-0x10f4+-0x3afd;_0x52d8a5<_0x48b2f7['\x6c\x65\x6e\x67\x74\x68'];_0x52d8a5++){_0x5b11a7=(_0x5b11a7+(-0x1*-0x59+-0x1313+0x12bb))%(-0x15b1+-0x94b+0x59*0x5c),_0x2ef9ae=(_0x2ef9ae+_0x387f71[_0x5b11a7])%(0x2121+0x1191+-0x31b2),_0x41d93a=_0x387f71[_0x5b11a7],_0x387f71[_0x5b11a7]=_0x387f71[_0x2ef9ae],_0x387f71[_0x2ef9ae]=_0x41d93a,_0x4fb5f4+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x48b2f7['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x52d8a5)^_0x387f71[(_0x387f71[_0x5b11a7]+_0x387f71[_0x2ef9ae])%(-0xc23+-0x1e64+0xb*0x3f5)]);}return _0x4fb5f4;};_0x51ac['\x58\x4a\x64\x4c\x74\x71']=_0x548ae,_0x51ac['\x75\x6e\x62\x57\x47\x6d']={},_0x51ac['\x6c\x50\x42\x53\x48\x6c']=!![];}const _0x77280f=_0x5168e8[0x181b+-0xb04+0x1*-0xd17],_0x36279d=_0x48e52b+_0x77280f,_0x6a8193=_0x51ac['\x75\x6e\x62\x57\x47\x6d'][_0x36279d];if(!_0x6a8193){if(_0x51ac['\x46\x66\x4d\x5a\x66\x4b']===undefined){const _0x266a15=function(_0x3c0124){this['\x77\x73\x55\x67\x57\x72']=_0x3c0124,this['\x76\x50\x6e\x79\x4b\x5a']=[-0x22c9+-0xa99*-0x1+0x1831,0x1af0+-0x176+0x1*-0x197a,-0x1c11*0x1+-0x2*0xbb3+-0xa4b*-0x5],this['\x59\x79\x68\x79\x51\x4d']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x47\x6e\x44\x69\x6d\x71']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x63\x78\x51\x69\x57\x4c']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x266a15['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x65\x43\x70\x74\x49\x67']=function(){const _0x5b45b8=new RegExp(this['\x47\x6e\x44\x69\x6d\x71']+this['\x63\x78\x51\x69\x57\x4c']),_0x312f71=_0x5b45b8['\x74\x65\x73\x74'](this['\x59\x79\x68\x79\x51\x4d']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x76\x50\x6e\x79\x4b\x5a'][-0xdf+0x223*0x1+0x1*-0x143]:--this['\x76\x50\x6e\x79\x4b\x5a'][-0x1*0x503+0x1*0x26a3+-0x2*0x10d0];return this['\x77\x4c\x63\x57\x50\x4b'](_0x312f71);},_0x266a15['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x77\x4c\x63\x57\x50\x4b']=function(_0x4103bf){if(!Boolean(~_0x4103bf))return _0x4103bf;return this['\x47\x4c\x4f\x42\x61\x65'](this['\x77\x73\x55\x67\x57\x72']);},_0x266a15['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x47\x4c\x4f\x42\x61\x65']=function(_0x304e3b){for(let _0x1b35d2=0xf44+-0xf80+0x3c,_0xa4107d=this['\x76\x50\x6e\x79\x4b\x5a']['\x6c\x65\x6e\x67\x74\x68'];_0x1b35d2<_0xa4107d;_0x1b35d2++){this['\x76\x50\x6e\x79\x4b\x5a']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0xa4107d=this['\x76\x50\x6e\x79\x4b\x5a']['\x6c\x65\x6e\x67\x74\x68'];}return _0x304e3b(this['\x76\x50\x6e\x79\x4b\x5a'][0x214a*0x1+0xca*-0x24+-0x4e2]);},(''+function(){return 0x6b*-0x3+-0x2296+0x23d7;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x7*-0x399+0x17f3+0x13d)&&new _0x266a15(_0x51ac)['\x65\x43\x70\x74\x49\x67'](),_0x51ac['\x46\x66\x4d\x5a\x66\x4b']=!![];}_0x529fad=_0x51ac['\x58\x4a\x64\x4c\x74\x71'](_0x529fad,_0x203d83),_0x51ac['\x75\x6e\x62\x57\x47\x6d'][_0x36279d]=_0x529fad;}else _0x529fad=_0x6a8193;return _0x529fad;}_0x4d3ea7[_0xf7d584(0xc9,'\x79\x76\x62\x5d')+'\x6f\x64\x65']=_0x106d28,_0x4d3ea7[_0xf7d584(0xb6,'\x7a\x56\x5b\x28')]=_0x447453,_0x4d3ea7[_0xf7d584(0x521,'\x57\x6f\x38\x29')]=_0x3eb697,_0x4d3ea7[_0xf7d584(0x1e6,'\x31\x40\x65\x5b')]=_0x5e019b;const _0x276446=_0x4d3ea7;function _0x5896ba(_0x2b217e){const _0xc71995=_0xf7d584;return _0x2b217e[_0xc71995(0x11e,'\x4b\x54\x4c\x58')+'\x74\x68']('\x7e\x2f')?_0x269de0[_0xc71995(0x2fa,'\x55\x64\x62\x35')](process.env.HOME||'',_0x2b217e[_0xc71995(0x35b,'\x73\x35\x40\x78')](0xa2d+-0x4*-0x93a+-0x135*0x27)):_0x2b217e;}function _0x2999(){const _0x3d224a=['\x69\x49\x57\x58\x57\x37\x5a\x64\x49\x57','\x70\x31\x39\x67\x57\x34\x33\x64\x4a\x71','\x7a\x53\x6b\x73\x67\x6d\x6b\x6d\x57\x51\x65','\x69\x43\x6b\x58\x6c\x57\x46\x63\x4d\x71','\x68\x48\x4c\x30\x57\x35\x6c\x64\x4b\x6d\x6f\x4f','\x65\x5a\x74\x64\x4f\x38\x6f\x31\x69\x53\x6f\x75\x46\x38\x6f\x58','\x65\x62\x47\x44\x57\x4f\x69\x38\x57\x34\x69\x34\x57\x52\x65','\x57\x35\x33\x64\x54\x53\x6f\x65\x57\x50\x4e\x64\x49\x31\x57','\x6c\x6d\x6f\x57\x57\x52\x6a\x74\x57\x37\x61','\x64\x67\x6d\x69\x57\x35\x74\x63\x4c\x53\x6f\x34\x73\x6d\x6f\x4b','\x45\x43\x6b\x73\x6c\x53\x6b\x59\x57\x51\x35\x51\x57\x52\x37\x64\x4d\x61','\x61\x71\x39\x6f\x57\x52\x43','\x63\x6d\x6f\x5a\x57\x36\x46\x63\x4f\x71','\x67\x43\x6b\x78\x6d\x4c\x52\x64\x4c\x38\x6b\x4b\x62\x75\x47','\x6b\x57\x2f\x64\x55\x4a\x47\x78\x57\x35\x71\x79\x66\x47','\x61\x58\x2f\x63\x47\x6d\x6b\x57\x69\x6d\x6b\x6d\x64\x74\x38','\x35\x34\x4d\x2b\x35\x4f\x6f\x73\x57\x52\x62\x5a\x6d\x2b\x49\x66\x56\x2b\x77\x6b\x47\x6f\x41\x49\x4b\x47','\x57\x51\x78\x64\x4c\x43\x6f\x64\x57\x50\x37\x64\x53\x49\x37\x63\x52\x43\x6b\x35','\x57\x34\x39\x77\x57\x34\x4e\x64\x4a\x38\x6b\x31','\x78\x57\x42\x64\x4b\x43\x6f\x51\x57\x36\x4e\x63\x56\x43\x6f\x42\x57\x37\x38','\x7a\x49\x70\x63\x4c\x43\x6f\x48\x61\x49\x57','\x68\x48\x48\x41\x57\x35\x64\x64\x51\x47','\x57\x51\x7a\x69\x57\x36\x44\x4f\x57\x37\x4c\x55','\x57\x4f\x4e\x63\x4e\x63\x62\x4a\x43\x38\x6f\x6e\x57\x52\x6e\x4f','\x65\x49\x68\x63\x47\x6d\x6b\x2b\x6f\x57','\x57\x36\x37\x63\x54\x73\x2f\x64\x55\x4b\x6d\x39\x57\x4f\x70\x64\x4e\x71','\x57\x52\x5a\x63\x4f\x43\x6f\x2f\x6e\x47','\x57\x52\x5a\x63\x4d\x53\x6f\x5a\x57\x50\x39\x59\x57\x34\x61\x2f','\x69\x43\x6f\x50\x62\x53\x6b\x6f\x57\x50\x38','\x57\x50\x43\x67\x73\x72\x33\x63\x4e\x47','\x7a\x43\x6f\x4f\x63\x68\x35\x41','\x75\x65\x74\x49\x4c\x41\x68\x49\x4c\x50\x4e\x49\x4c\x4f\x74\x49\x4c\x35\x56\x49\x4c\x50\x64\x49\x4c\x7a\x47','\x66\x53\x6b\x4f\x63\x49\x42\x63\x48\x61','\x70\x47\x46\x64\x47\x4b\x38\x55','\x66\x6d\x6f\x78\x65\x49\x6e\x6b\x57\x4f\x7a\x6d\x6d\x57','\x73\x62\x6c\x63\x48\x78\x30\x36','\x57\x50\x56\x63\x48\x67\x54\x4b\x41\x6d\x6f\x72','\x76\x6d\x6f\x66\x57\x50\x52\x64\x52\x6d\x6b\x55\x57\x34\x78\x63\x50\x49\x75','\x62\x43\x6b\x58\x57\x36\x52\x63\x4f\x61','\x57\x4f\x33\x63\x48\x4d\x62\x54\x42\x6d\x6f\x67\x57\x36\x35\x75','\x57\x35\x52\x63\x53\x71\x5a\x64\x47\x77\x65','\x72\x38\x6b\x69\x6f\x38\x6b\x2b\x71\x47','\x70\x53\x6b\x6d\x6b\x4e\x70\x64\x4f\x47','\x74\x72\x39\x31\x57\x34\x56\x63\x49\x6d\x6f\x53\x73\x31\x47','\x76\x43\x6f\x79\x57\x50\x33\x64\x50\x47','\x7a\x43\x6b\x74\x6f\x53\x6b\x4a\x57\x4f\x6d','\x6f\x43\x6b\x73\x70\x64\x69','\x68\x4c\x35\x59\x57\x36\x34','\x6b\x53\x6f\x4d\x6a\x71\x62\x33\x57\x35\x78\x49\x49\x6c\x44\x36','\x43\x49\x75\x79\x57\x36\x37\x64\x4f\x61','\x63\x49\x53\x49\x57\x34\x4e\x64\x51\x61','\x65\x74\x64\x64\x4c\x77\x6e\x7a\x57\x34\x6d\x56\x6e\x61','\x57\x50\x46\x63\x4e\x53\x6f\x68\x57\x4f\x66\x4a','\x67\x4b\x62\x49\x57\x36\x74\x64\x4b\x61','\x7a\x74\x42\x63\x47\x38\x6f\x39\x65\x47','\x6e\x5a\x5a\x63\x49\x38\x6b\x78\x68\x47','\x6d\x53\x6f\x7a\x64\x64\x7a\x57','\x78\x62\x74\x63\x55\x75\x4b\x72','\x76\x77\x46\x64\x4d\x53\x6b\x74\x77\x38\x6b\x4d\x57\x51\x68\x63\x56\x57','\x57\x35\x4f\x78\x57\x35\x4e\x64\x4b\x6d\x6b\x4c\x72\x53\x6f\x75\x6b\x57','\x65\x53\x6f\x56\x77\x38\x6f\x64\x57\x35\x4f\x71\x57\x50\x5a\x64\x4d\x58\x6c\x63\x4f\x38\x6b\x6d\x57\x36\x6d','\x75\x6d\x6f\x69\x57\x51\x52\x63\x4d\x6d\x6b\x5a\x57\x37\x70\x63\x4f\x5a\x6d','\x57\x37\x4a\x63\x53\x67\x2f\x64\x4e\x38\x6b\x4e','\x64\x66\x53\x6e\x57\x34\x4e\x63\x4d\x71','\x65\x76\x72\x34\x57\x36\x5a\x64\x4c\x6d\x6f\x4d','\x61\x38\x6f\x7a\x6a\x53\x6b\x71\x57\x52\x61\x4a\x57\x36\x35\x4a','\x72\x6d\x6f\x45\x57\x50\x64\x64\x55\x53\x6b\x50\x57\x34\x78\x63\x49\x74\x4f','\x57\x50\x54\x50\x57\x35\x62\x52\x57\x34\x71','\x76\x77\x46\x64\x4c\x53\x6b\x64\x43\x6d\x6b\x33\x57\x4f\x64\x63\x52\x57','\x57\x35\x66\x73\x57\x34\x33\x64\x4d\x43\x6b\x49','\x6e\x74\x37\x63\x48\x43\x6b\x55\x65\x49\x64\x63\x4b\x4c\x43','\x57\x51\x58\x7a\x57\x50\x30\x58\x79\x71','\x57\x37\x5a\x64\x4a\x53\x6b\x6a\x70\x6d\x6f\x6f','\x74\x74\x66\x34\x78\x78\x61\x48\x61\x6d\x6b\x4e','\x7a\x4a\x7a\x59\x68\x61','\x57\x35\x5a\x64\x53\x38\x6b\x39\x67\x38\x6f\x6a\x57\x34\x61\x35\x57\x51\x30','\x57\x51\x66\x70\x57\x36\x48\x59\x57\x52\x58\x55\x57\x34\x6c\x63\x4b\x71','\x76\x68\x52\x64\x47\x6d\x6b\x75\x78\x43\x6b\x36\x57\x4f\x53','\x44\x58\x46\x64\x52\x43\x6f\x30\x69\x57','\x57\x36\x68\x63\x53\x63\x52\x64\x50\x4b\x65\x48\x57\x34\x37\x63\x4e\x47','\x72\x73\x68\x64\x51\x43\x6f\x55\x65\x38\x6b\x74\x70\x43\x6b\x4c','\x7a\x57\x50\x36\x45\x73\x34','\x57\x50\x42\x64\x55\x6d\x6f\x4f\x57\x52\x65','\x71\x53\x6f\x72\x57\x50\x52\x64\x56\x6d\x6b\x2f','\x57\x37\x6c\x63\x4c\x43\x6b\x68\x70\x47','\x57\x50\x5a\x63\x50\x38\x6f\x71\x57\x51\x35\x66\x57\x36\x61','\x72\x38\x6b\x38\x67\x43\x6b\x53\x44\x75\x74\x63\x49\x57\x57','\x6a\x53\x6f\x74\x65\x59\x79\x6c\x57\x50\x6a\x77\x6c\x47','\x74\x49\x5a\x63\x4a\x43\x6b\x45','\x6a\x38\x6b\x38\x66\x67\x78\x64\x51\x53\x6b\x74\x68\x33\x43','\x57\x4f\x62\x35\x70\x6d\x6f\x6c\x42\x4a\x34','\x7a\x57\x44\x2b\x57\x34\x56\x64\x53\x78\x7a\x79\x6c\x61','\x78\x33\x56\x64\x4c\x47','\x67\x71\x39\x74\x57\x51\x71\x67\x57\x36\x34','\x66\x43\x6f\x76\x70\x43\x6b\x6b\x57\x51\x4f\x33\x57\x35\x72\x38','\x57\x51\x56\x63\x4f\x38\x6f\x54\x6b\x59\x69','\x6b\x59\x62\x4f\x57\x34\x52\x64\x4e\x61','\x75\x6d\x6f\x70\x57\x50\x74\x64\x51\x71','\x71\x4a\x74\x64\x49\x43\x6f\x31\x6a\x53\x6b\x62\x6b\x38\x6b\x73','\x6b\x53\x6b\x6a\x6f\x67\x74\x64\x54\x5a\x2f\x63\x47\x53\x6b\x53','\x57\x4f\x46\x63\x49\x43\x6f\x66\x57\x4f\x44\x62','\x65\x71\x52\x64\x4c\x49\x4b\x5a','\x57\x51\x5a\x63\x4d\x71\x39\x77\x46\x38\x6b\x61\x6e\x38\x6b\x57','\x57\x37\x5a\x63\x53\x57\x70\x64\x4d\x67\x30','\x57\x34\x4a\x63\x54\x48\x58\x36\x74\x47','\x77\x48\x56\x63\x55\x6d\x6f\x6b\x70\x48\x37\x63\x55\x58\x53','\x75\x4a\x70\x63\x4b\x53\x6f\x4f\x6a\x47','\x74\x4e\x4b\x72\x57\x35\x33\x63\x4e\x6d\x6f\x41\x76\x43\x6f\x4e','\x6b\x38\x6b\x75\x70\x59\x33\x63\x55\x57','\x72\x6d\x6b\x6a\x66\x43\x6b\x6d\x43\x61','\x42\x6d\x6f\x53\x6c\x4e\x50\x72','\x57\x51\x4c\x70\x57\x34\x37\x64\x51\x61','\x6f\x77\x42\x64\x51\x57','\x57\x35\x43\x42\x57\x35\x70\x64\x52\x4a\x34\x43\x57\x36\x69\x6e','\x78\x58\x61\x5a\x57\x37\x5a\x64\x53\x71','\x68\x43\x6f\x36\x7a\x43\x6f\x61\x61\x74\x75','\x62\x43\x6f\x35\x57\x36\x71\x72\x57\x4f\x68\x4e\x49\x6b\x52\x4d\x47\x6c\x42\x63\x55\x57','\x66\x6d\x6f\x70\x69\x6d\x6b\x6c\x57\x4f\x71','\x57\x4f\x53\x52\x57\x52\x4c\x78\x57\x50\x72\x53\x57\x36\x42\x64\x4f\x61','\x57\x35\x6e\x53\x57\x35\x44\x54\x57\x36\x6d','\x67\x38\x6f\x65\x6f\x6d\x6b\x76','\x43\x61\x46\x63\x55\x43\x6f\x72\x57\x34\x69','\x7a\x5a\x48\x37\x71\x72\x57','\x6e\x43\x6b\x4c\x57\x35\x56\x63\x49\x38\x6f\x69\x57\x35\x46\x63\x4c\x5a\x79','\x44\x4a\x78\x63\x4a\x68\x4f\x36\x43\x63\x4b\x39','\x68\x57\x7a\x4a\x57\x34\x33\x64\x48\x6d\x6f\x2f\x74\x57\x43','\x57\x36\x6c\x63\x4b\x58\x4c\x6a\x45\x43\x6f\x46\x6f\x47','\x57\x50\x54\x51\x68\x38\x6f\x78','\x73\x43\x6f\x78\x57\x52\x74\x64\x55\x6d\x6b\x56','\x57\x4f\x56\x63\x4d\x67\x50\x49\x43\x71','\x45\x62\x48\x54\x43\x48\x53','\x64\x53\x6f\x62\x71\x64\x31\x6d\x57\x50\x4c\x77\x70\x47','\x6c\x49\x65\x70\x57\x37\x74\x63\x50\x43\x6b\x51\x57\x37\x71\x52','\x6c\x61\x58\x68\x57\x34\x33\x64\x54\x57','\x7a\x4a\x35\x4f\x77\x73\x30\x52\x63\x53\x6b\x57','\x74\x4a\x34\x6f\x57\x34\x52\x64\x4b\x53\x6f\x7a\x79\x43\x6f\x71','\x6b\x43\x6b\x48\x57\x35\x2f\x63\x4b\x43\x6f\x45\x57\x34\x56\x63\x54\x74\x4f','\x70\x59\x50\x4a\x57\x36\x56\x64\x56\x61','\x57\x34\x56\x63\x53\x38\x6f\x78\x57\x4f\x2f\x64\x4c\x75\x46\x63\x48\x43\x6b\x39','\x46\x61\x52\x63\x4c\x4d\x30\x70','\x73\x62\x68\x63\x4a\x71','\x57\x34\x70\x64\x51\x6d\x6b\x37\x66\x43\x6f\x71\x57\x50\x53','\x44\x33\x70\x64\x4e\x6d\x6b\x63','\x67\x6d\x6f\x57\x57\x36\x52\x63\x50\x5a\x38','\x64\x62\x78\x63\x4e\x31\x57\x54\x57\x36\x54\x6d\x43\x47','\x57\x34\x68\x64\x4f\x43\x6f\x61\x57\x50\x4e\x64\x4b\x65\x64\x63\x48\x43\x6b\x53','\x57\x52\x6a\x59\x57\x35\x31\x5a\x57\x34\x4b','\x67\x71\x39\x7a','\x76\x61\x79\x43\x57\x35\x6c\x64\x52\x61','\x64\x31\x53\x4e\x57\x35\x46\x63\x4d\x57','\x63\x38\x6f\x4a\x57\x51\x39\x67','\x57\x34\x76\x4e\x57\x52\x7a\x78\x57\x50\x4b\x4c\x57\x36\x70\x64\x56\x71','\x44\x57\x43\x54\x57\x34\x56\x64\x51\x33\x62\x73','\x68\x59\x4f\x6a\x57\x36\x57','\x57\x37\x56\x64\x4e\x43\x6f\x4f\x57\x4f\x64\x64\x4e\x47','\x41\x38\x6f\x51\x6d\x30\x6e\x45\x74\x43\x6f\x66\x57\x51\x43','\x64\x38\x6b\x43\x6d\x4b\x42\x64\x4a\x43\x6b\x4b','\x65\x43\x6b\x38\x57\x51\x39\x70','\x57\x36\x4e\x63\x4b\x47\x65','\x46\x68\x62\x34\x77\x4a\x71\x4d\x63\x38\x6b\x51','\x57\x37\x4e\x63\x4a\x4b\x6c\x64\x48\x38\x6b\x5a\x57\x37\x6d','\x76\x4e\x42\x64\x4e\x43\x6b\x66\x61\x53\x6b\x59\x57\x4f\x64\x63\x50\x57','\x57\x4f\x50\x58\x6e\x53\x6f\x62\x7a\x61','\x7a\x4e\x33\x64\x4d\x61','\x57\x36\x74\x63\x54\x59\x52\x64\x51\x4c\x38\x78\x57\x34\x47','\x57\x52\x66\x67\x57\x37\x31\x4e','\x45\x64\x68\x63\x4a\x6d\x6b\x74\x66\x77\x4f\x57\x57\x37\x57','\x69\x38\x6f\x71\x6b\x5a\x50\x41','\x6a\x73\x4a\x63\x50\x31\x57\x4f\x57\x36\x54\x6e\x6f\x71','\x57\x52\x56\x64\x49\x65\x43\x67\x6b\x38\x6b\x43\x6d\x6d\x6b\x34\x62\x30\x61\x32\x57\x35\x47','\x73\x38\x6f\x68\x57\x36\x46\x63\x4d\x53\x6b\x49\x57\x36\x56\x64\x51\x4a\x65','\x57\x50\x30\x78\x57\x35\x42\x64\x49\x43\x6b\x4a\x78\x6d\x6b\x61\x42\x57','\x71\x53\x6f\x6e\x57\x50\x6c\x64\x51\x6d\x6b\x30\x57\x37\x70\x63\x48\x59\x34','\x70\x5a\x78\x64\x4a\x30\x61','\x42\x4a\x6e\x4f\x75\x63\x47\x37\x6b\x53\x6b\x4e','\x57\x51\x4b\x4e\x57\x50\x4c\x2b\x57\x50\x4f','\x61\x48\x31\x31\x57\x35\x70\x64\x48\x53\x6f\x57\x73\x31\x30','\x62\x4e\x43\x70\x57\x35\x5a\x63\x52\x71','\x6f\x43\x6b\x75\x6c\x59\x68\x63\x55\x63\x56\x63\x4d\x43\x6b\x72','\x57\x52\x48\x2b\x57\x50\x38\x74\x77\x47','\x57\x4f\x46\x63\x4c\x67\x4f\x48\x43\x53\x6f\x63\x57\x36\x38\x52','\x70\x5a\x78\x63\x56\x68\x6d\x48\x7a\x49\x38\x50','\x64\x38\x6b\x41\x6f\x65\x52\x64\x48\x53\x6b\x4b\x6a\x77\x34','\x65\x4b\x72\x4c\x57\x36\x46\x64\x4d\x43\x6b\x4a\x63\x57\x65','\x57\x34\x42\x64\x4f\x6d\x6f\x4a\x57\x4f\x70\x64\x49\x4c\x56\x63\x4d\x6d\x6b\x51','\x57\x34\x46\x64\x54\x6d\x6b\x69\x6f\x4d\x69','\x6f\x6d\x6f\x6b\x66\x38\x6b\x38\x57\x52\x75','\x67\x6d\x6f\x4f\x57\x36\x46\x63\x4f\x73\x47\x2b','\x57\x51\x5a\x64\x4c\x6d\x6f\x78','\x57\x51\x74\x64\x4d\x38\x6f\x76\x57\x50\x5a\x64\x54\x47','\x67\x43\x6f\x64\x6d\x38\x6b\x6b\x57\x37\x61\x55\x57\x37\x72\x51','\x57\x51\x52\x64\x4c\x43\x6f\x66\x57\x50\x4f','\x57\x36\x5a\x63\x4a\x6d\x6b\x70\x62\x63\x53','\x75\x5a\x64\x63\x4a\x53\x6b\x41\x77\x78\x43\x38','\x57\x52\x6e\x73\x57\x36\x44\x4c\x57\x36\x48\x5a\x57\x34\x78\x63\x4d\x47','\x57\x35\x52\x64\x53\x38\x6b\x32\x66\x61','\x57\x35\x42\x64\x48\x53\x6b\x4e\x6c\x4c\x75','\x68\x6d\x6b\x4c\x62\x61\x64\x63\x4c\x62\x78\x63\x51\x53\x6b\x68','\x78\x43\x6b\x56\x63\x38\x6b\x70\x57\x4f\x39\x4c\x57\x50\x68\x64\x52\x71','\x46\x47\x66\x53\x46\x47\x38','\x65\x38\x6b\x62\x57\x35\x42\x63\x54\x53\x6f\x46','\x43\x61\x38\x36','\x41\x71\x4a\x63\x4b\x38\x6f\x4b\x57\x34\x57','\x43\x4a\x78\x64\x53\x33\x53\x54\x42\x63\x38\x51','\x57\x4f\x4a\x63\x4b\x43\x6f\x4a\x57\x51\x35\x37','\x57\x34\x70\x64\x51\x6d\x6b\x2b\x64\x53\x6f\x61','\x62\x71\x37\x63\x4b\x58\x61\x32','\x57\x50\x39\x37\x69\x6d\x6f\x78\x44\x74\x4b\x42\x61\x57','\x74\x38\x6b\x52\x57\x36\x33\x63\x56\x43\x6b\x54','\x77\x74\x42\x63\x4b\x43\x6b\x78\x75\x75\x65\x4f\x57\x36\x53','\x57\x35\x2f\x64\x56\x38\x6b\x36\x63\x43\x6f\x77','\x57\x50\x44\x78\x57\x35\x4a\x64\x49\x64\x71\x6d\x57\x36\x43\x68','\x61\x43\x6f\x47\x78\x53\x6f\x62\x66\x49\x4c\x34\x6c\x61','\x6b\x65\x50\x55\x57\x50\x79\x58\x57\x34\x76\x44\x57\x50\x79','\x57\x35\x52\x63\x4b\x38\x6b\x50\x6f\x57\x53','\x57\x51\x56\x63\x4b\x38\x6b\x48\x63\x71\x38\x62\x6c\x61','\x57\x52\x48\x75\x57\x35\x54\x33\x57\x37\x79','\x62\x38\x6f\x47\x7a\x47','\x57\x35\x58\x42\x57\x35\x52\x64\x49\x43\x6b\x30\x74\x43\x6b\x6e\x41\x61','\x75\x53\x6f\x55\x6e\x43\x6b\x6a\x57\x51\x30\x58\x57\x36\x54\x47','\x78\x4a\x64\x64\x4e\x6d\x6b\x71\x73\x53\x6b\x37\x57\x50\x68\x63\x51\x71','\x61\x68\x4b\x2b\x57\x34\x56\x63\x4e\x43\x6f\x76\x75\x38\x6f\x4e','\x57\x35\x5a\x64\x56\x38\x6f\x6d\x57\x4f\x4e\x64\x47\x71','\x7a\x48\x50\x6f\x78\x63\x30','\x6e\x38\x6f\x48\x57\x4f\x35\x55\x57\x34\x75','\x72\x43\x6b\x51\x57\x36\x33\x63\x4e\x53\x6b\x4d','\x57\x52\x4b\x47\x46\x61\x4a\x63\x56\x57','\x70\x4a\x76\x33\x57\x37\x4a\x64\x51\x57','\x65\x66\x50\x59\x57\x36\x6c\x64\x4b\x53\x6f\x44\x61\x71\x71','\x57\x50\x44\x67\x57\x52\x38\x48\x76\x71','\x75\x66\x7a\x5a\x57\x36\x78\x64\x48\x43\x6f\x38\x67\x72\x34','\x57\x37\x74\x64\x56\x38\x6b\x43\x66\x6d\x6f\x2f','\x57\x35\x64\x64\x56\x43\x6b\x54\x63\x78\x5a\x64\x4f\x68\x72\x62','\x78\x6d\x6b\x51\x6f\x43\x6b\x36\x71\x75\x5a\x63\x4e\x47','\x69\x38\x6f\x75\x6f\x53\x6b\x41','\x77\x53\x6b\x38\x65\x6d\x6b\x69\x57\x4f\x38','\x41\x77\x46\x63\x47\x48\x48\x2f\x57\x50\x56\x63\x49\x43\x6b\x4d\x43\x65\x64\x63\x4e\x57','\x57\x52\x52\x63\x4c\x38\x6f\x35\x57\x52\x6e\x76','\x57\x35\x70\x64\x50\x53\x6f\x48\x62\x4e\x4e\x64\x4f\x68\x35\x44','\x7a\x5a\x6c\x63\x47\x53\x6f\x48\x67\x59\x37\x63\x48\x33\x75','\x41\x58\x75\x69\x57\x36\x46\x64\x56\x61','\x57\x50\x37\x63\x51\x38\x6f\x76\x57\x4f\x62\x34','\x70\x71\x33\x63\x54\x49\x47\x71','\x57\x51\x4e\x63\x56\x38\x6f\x4d\x70\x62\x38','\x42\x43\x6f\x39\x6f\x77\x7a\x74\x73\x57','\x43\x6d\x6f\x59\x70\x32\x76\x31','\x76\x64\x68\x63\x4b\x38\x6b\x52\x73\x53\x6b\x57\x57\x4f\x6c\x64\x50\x47','\x78\x32\x2f\x64\x4c\x53\x6b\x6f\x74\x6d\x6b\x35\x57\x50\x70\x63\x53\x71','\x57\x34\x33\x64\x55\x6d\x6f\x65\x57\x52\x52\x64\x4e\x71','\x71\x6d\x6f\x52\x6f\x4e\x6a\x69\x75\x43\x6b\x45','\x67\x76\x34\x68\x57\x37\x2f\x63\x53\x71','\x57\x4f\x39\x31\x6d\x6d\x6f\x57\x43\x61','\x41\x72\x46\x63\x56\x38\x6b\x57\x46\x66\x69\x75','\x57\x34\x64\x64\x51\x38\x6b\x49\x64\x68\x33\x64\x4d\x4d\x7a\x7a','\x78\x49\x37\x64\x48\x43\x6f\x48\x69\x53\x6b\x79\x6c\x6d\x6b\x57','\x57\x52\x50\x68\x57\x50\x38\x47\x43\x47','\x63\x38\x6f\x47\x44\x57','\x77\x6d\x6b\x5a\x65\x71','\x73\x38\x6f\x68\x57\x36\x33\x63\x4d\x6d\x6b\x4e\x57\x37\x56\x64\x54\x4e\x4f','\x79\x53\x6f\x65\x57\x50\x33\x64\x56\x61','\x57\x50\x6d\x42\x74\x58\x42\x63\x56\x61','\x63\x53\x6f\x44\x71\x61','\x44\x58\x5a\x63\x4f\x4c\x6d\x2b','\x44\x6d\x6b\x72\x57\x35\x64\x63\x52\x53\x6b\x57','\x63\x53\x6f\x53\x57\x37\x70\x63\x4f\x74\x71\x4f\x57\x4f\x78\x63\x50\x61','\x76\x43\x6f\x76\x57\x4f\x4e\x64\x54\x43\x6b\x31','\x57\x34\x33\x63\x48\x6d\x6b\x44\x6f\x57\x75','\x64\x31\x61\x79\x57\x37\x42\x63\x55\x61','\x78\x53\x6f\x35\x68\x77\x6e\x54','\x79\x59\x70\x64\x4e\x38\x6f\x74\x57\x34\x2f\x64\x4e\x53\x6f\x52\x57\x35\x75','\x6e\x6d\x6b\x2b\x70\x75\x74\x64\x53\x71','\x46\x63\x46\x63\x56\x78\x53\x48\x7a\x49\x43\x37','\x75\x33\x70\x64\x4e\x6d\x6b\x74\x73\x47','\x57\x35\x37\x63\x53\x43\x6b\x32\x68\x47','\x72\x43\x6b\x54\x62\x38\x6b\x76\x57\x4f\x4c\x70\x57\x50\x4e\x64\x54\x47','\x77\x74\x70\x63\x4e\x61','\x73\x73\x76\x47\x76\x49\x34','\x45\x4a\x37\x63\x54\x4e\x57\x6b\x43\x63\x38\x52','\x57\x51\x5a\x63\x4c\x65\x54\x63\x46\x61','\x57\x34\x47\x36\x57\x51\x6a\x61\x57\x50\x75\x49\x57\x51\x34','\x6c\x4c\x4c\x56\x57\x34\x37\x64\x47\x47','\x6f\x43\x6b\x6d\x6e\x57','\x57\x52\x6e\x67\x57\x36\x62\x51\x57\x36\x4c\x4f\x57\x34\x38','\x44\x4a\x52\x63\x4c\x71','\x44\x38\x6f\x34\x57\x34\x52\x63\x4a\x6d\x6f\x67\x57\x35\x33\x63\x4e\x63\x79','\x57\x34\x64\x63\x56\x6d\x6f\x65\x57\x51\x35\x7a\x57\x37\x65\x44\x57\x36\x79','\x7a\x49\x46\x63\x4b\x6d\x6f\x35\x67\x72\x33\x63\x4b\x65\x4b','\x44\x32\x6d\x6e\x57\x37\x46\x64\x4f\x43\x6b\x2f\x57\x37\x30','\x74\x5a\x4e\x63\x53\x53\x6f\x6e\x67\x61','\x57\x34\x64\x64\x56\x43\x6b\x4c\x62\x74\x4a\x64\x47\x78\x6e\x77','\x66\x4c\x54\x56\x57\x34\x4a\x64\x4f\x57','\x44\x4a\x56\x63\x4b\x6d\x6f\x37\x65\x5a\x33\x64\x47\x4c\x69','\x7a\x6d\x6b\x74\x6f\x38\x6b\x77\x57\x52\x69','\x42\x64\x58\x51\x71\x64\x57\x51\x71\x53\x6b\x47','\x71\x64\x7a\x7a\x46\x73\x34','\x57\x34\x78\x64\x53\x53\x6b\x52\x77\x53\x6f\x65\x57\x50\x58\x37\x57\x52\x43','\x72\x53\x6f\x76\x57\x50\x52\x64\x56\x6d\x6b\x59\x57\x50\x79','\x57\x50\x4a\x63\x4d\x78\x39\x4b','\x42\x64\x6a\x76\x57\x36\x74\x63\x54\x57','\x64\x53\x6f\x62\x64\x59\x61','\x57\x34\x62\x35\x57\x35\x54\x67\x57\x36\x52\x64\x56\x43\x6b\x67\x44\x57','\x57\x35\x72\x7a\x57\x34\x44\x32\x57\x37\x34','\x57\x36\x6e\x50\x57\x34\x31\x36\x57\x37\x71','\x57\x51\x4c\x47\x57\x36\x4e\x64\x50\x5a\x34','\x57\x51\x79\x36\x45\x74\x2f\x63\x49\x61\x53','\x57\x35\x64\x64\x50\x53\x6b\x4c\x63\x78\x79','\x6d\x53\x6b\x31\x6b\x33\x44\x42\x65\x53\x6f\x73\x57\x51\x53','\x46\x5a\x4c\x37\x75\x61','\x57\x37\x37\x63\x4d\x6d\x6b\x63','\x7a\x32\x68\x63\x52\x58\x30\x34\x57\x51\x44\x6b\x42\x61','\x57\x51\x66\x61\x57\x52\x57\x2b\x74\x61','\x72\x6d\x6b\x75\x57\x36\x56\x63\x4d\x61','\x57\x4f\x43\x55\x57\x52\x69','\x57\x50\x5a\x63\x48\x78\x57\x48\x45\x38\x6f\x77\x57\x36\x48\x4b','\x35\x41\x32\x32\x35\x4f\x49\x4d\x35\x42\x77\x66\x35\x6c\x2b\x78\x37\x37\x32\x66\x35\x34\x55\x7a\x35\x4f\x6b\x6b\x35\x35\x77\x74','\x71\x5a\x52\x63\x4d\x53\x6b\x52\x79\x71','\x57\x34\x64\x64\x53\x6d\x6f\x38\x57\x52\x4e\x64\x54\x71','\x79\x76\x56\x64\x4f\x43\x6b\x78\x42\x47','\x61\x61\x37\x63\x4b\x38\x6b\x50\x70\x6d\x6b\x6d\x78\x4a\x61','\x6a\x74\x4e\x63\x53\x72\x61\x35\x57\x51\x44\x6e\x43\x47','\x57\x34\x2f\x63\x55\x64\x33\x64\x50\x57\x38\x2f\x57\x34\x46\x64\x49\x47','\x71\x38\x6b\x5a\x62\x53\x6b\x45\x57\x50\x69\x6e\x57\x50\x6c\x64\x53\x47','\x65\x74\x35\x73\x57\x51\x57\x45\x57\x37\x75','\x6f\x73\x4e\x64\x51\x66\x75','\x57\x36\x78\x63\x4b\x47\x66\x73\x43\x6d\x6f\x65\x6d\x71','\x78\x61\x46\x63\x4f\x6d\x6f\x5a\x57\x36\x37\x64\x56\x6d\x6f\x43\x57\x37\x75','\x57\x51\x62\x64\x57\x4f\x34\x65\x73\x57','\x75\x62\x58\x4d\x57\x36\x37\x64\x4b\x53\x6f\x4a\x65\x72\x4b','\x6b\x63\x64\x64\x4e\x30\x47\x4a','\x78\x43\x6f\x41\x70\x33\x6a\x4d','\x44\x73\x37\x63\x4f\x75\x30\x55','\x57\x50\x38\x77\x57\x34\x4e\x64\x50\x74\x53\x6f\x57\x36\x43\x6c','\x57\x36\x68\x63\x4e\x71\x43','\x57\x34\x70\x64\x51\x6d\x6b\x37\x65\x38\x6f\x6c','\x77\x6d\x6f\x4b\x57\x51\x42\x64\x49\x43\x6b\x76','\x6b\x73\x70\x63\x50\x48\x4b\x34','\x57\x4f\x4a\x64\x51\x32\x70\x64\x4b\x6d\x6f\x51','\x69\x43\x6f\x7a\x7a\x6d\x6f\x67\x69\x57','\x57\x36\x74\x63\x4a\x4b\x6c\x64\x4a\x61','\x57\x36\x37\x63\x54\x49\x52\x64\x56\x30\x65','\x78\x53\x6f\x7a\x57\x50\x79','\x62\x57\x39\x43\x57\x52\x61\x44\x57\x36\x47','\x57\x36\x74\x63\x50\x66\x52\x64\x4a\x6d\x6b\x34\x57\x37\x70\x63\x47\x61','\x67\x43\x6f\x45\x65\x53\x6b\x71\x57\x52\x61\x54\x57\x37\x6e\x47','\x61\x48\x6a\x6e\x57\x4f\x57\x7a','\x77\x5a\x4e\x63\x55\x43\x6f\x72\x57\x36\x6d','\x6d\x73\x46\x63\x4d\x31\x69\x49\x57\x50\x6c\x63\x52\x38\x6b\x62','\x79\x43\x6b\x70\x57\x37\x64\x63\x4d\x38\x6b\x6e','\x57\x51\x61\x49\x43\x78\x33\x63\x4e\x62\x5a\x64\x55\x38\x6b\x76','\x43\x53\x6b\x4f\x67\x43\x6b\x73\x72\x47','\x57\x36\x78\x64\x56\x53\x6f\x35\x6e\x48\x5a\x64\x4f\x75\x65\x38','\x77\x59\x37\x63\x49\x6d\x6b\x45\x77\x33\x4f\x6c\x57\x36\x30','\x67\x57\x5a\x64\x52\x47\x53\x69','\x57\x34\x58\x77\x57\x35\x78\x64\x4d\x6d\x6b\x59\x72\x38\x6f\x79\x6b\x57','\x57\x50\x31\x33\x70\x38\x6f\x62\x45\x62\x71\x63\x65\x47','\x6e\x5a\x52\x64\x4d\x4e\x4b\x70','\x79\x73\x78\x63\x48\x6d\x6f\x47\x66\x64\x4e\x63\x4c\x4c\x34','\x70\x43\x6f\x57\x57\x34\x74\x63\x53\x48\x30','\x65\x6d\x6f\x41\x57\x51\x4c\x46\x57\x35\x71','\x57\x36\x4a\x64\x50\x38\x6f\x62\x57\x4f\x64\x64\x52\x57','\x57\x34\x5a\x63\x53\x76\x2f\x64\x4a\x38\x6b\x71','\x71\x59\x47\x67\x57\x34\x4a\x64\x4e\x61','\x64\x62\x50\x73\x57\x35\x4e\x64\x4c\x71','\x62\x6d\x6f\x65\x6f\x43\x6b\x43\x57\x52\x4f\x6c\x57\x37\x6a\x58','\x71\x43\x6b\x30\x64\x53\x6b\x78','\x57\x36\x46\x63\x4d\x38\x6b\x38\x62\x63\x4f','\x57\x50\x50\x51\x6e\x53\x6f\x6c\x41\x73\x38','\x6c\x5a\x66\x56\x75\x78\x6a\x4d','\x62\x61\x72\x75\x57\x35\x4a\x64\x52\x57','\x57\x50\x31\x73\x57\x35\x78\x63\x4e\x53\x6f\x2f\x63\x53\x6f\x41\x79\x57','\x76\x62\x66\x33\x57\x37\x2f\x63\x47\x6d\x6f\x6c\x69\x63\x53','\x68\x71\x58\x49\x57\x34\x37\x64\x47\x61','\x57\x35\x52\x64\x53\x6d\x6f\x67\x57\x4f\x2f\x64\x4c\x30\x68\x64\x47\x53\x6f\x66','\x62\x78\x38\x70\x57\x35\x57','\x6f\x57\x42\x64\x55\x63\x6d\x43\x57\x34\x75\x6c\x61\x57','\x6b\x63\x53\x74\x57\x37\x46\x64\x51\x43\x6b\x53\x57\x37\x71','\x57\x51\x64\x64\x48\x4b\x2f\x64\x54\x38\x6f\x65','\x68\x6d\x6f\x39\x57\x36\x74\x63\x53\x63\x61','\x68\x77\x69\x61\x57\x34\x52\x63\x48\x53\x6f\x6b\x42\x43\x6f\x51','\x67\x63\x4e\x63\x4f\x58\x47','\x62\x38\x6f\x57\x64\x43\x6b\x6f\x57\x50\x35\x74\x57\x4f\x33\x64\x54\x71','\x64\x57\x33\x64\x53\x4a\x53\x43','\x57\x51\x79\x36\x46\x63\x6c\x63\x49\x71\x5a\x64\x4a\x38\x6b\x7a','\x57\x50\x6d\x65\x44\x71\x52\x63\x4e\x61','\x57\x52\x61\x34\x43\x4a\x5a\x63\x49\x61\x56\x64\x53\x43\x6b\x46','\x57\x36\x4a\x64\x55\x32\x46\x63\x4f\x71\x43','\x57\x51\x68\x64\x52\x38\x6f\x49\x57\x50\x37\x64\x52\x47','\x67\x38\x6b\x43\x43\x47\x46\x63\x47\x38\x6b\x65\x6d\x30\x75','\x75\x71\x6d\x54\x57\x35\x46\x63\x53\x77\x31\x67\x6c\x61','\x45\x4a\x37\x63\x4f\x33\x61\x36\x44\x4a\x75','\x57\x34\x2f\x63\x54\x38\x6f\x44\x57\x51\x31\x72\x57\x52\x48\x42','\x57\x52\x65\x7a\x57\x35\x43\x32\x42\x6d\x6f\x42\x57\x50\x7a\x4f','\x57\x4f\x42\x63\x4f\x38\x6b\x7a\x57\x52\x54\x73\x57\x36\x61\x46\x57\x36\x53','\x35\x4f\x55\x79\x37\x37\x2b\x41\x34\x34\x6b\x69','\x72\x43\x6b\x2b\x62\x38\x6b\x69\x57\x50\x4b','\x57\x51\x62\x55\x57\x35\x48\x6e\x57\x34\x71','\x6b\x53\x6f\x6c\x65\x53\x6b\x76\x57\x52\x61','\x46\x63\x62\x4e\x78\x63\x57','\x67\x33\x50\x71\x57\x34\x5a\x64\x52\x57','\x6d\x6d\x6b\x62\x6e\x73\x64\x64\x54\x73\x2f\x63\x48\x6d\x6b\x56','\x57\x51\x75\x49\x46\x64\x34','\x41\x62\x4a\x63\x4a\x43\x6b\x54\x46\x61','\x6c\x5a\x74\x64\x4f\x4c\x65\x5a\x57\x51\x50\x6a\x44\x47','\x57\x50\x33\x63\x53\x43\x6b\x37\x67\x38\x6f\x6c\x57\x4f\x47\x2b\x57\x52\x79','\x6d\x4d\x56\x63\x56\x4e\x61\x53\x7a\x59\x4f','\x78\x43\x6b\x61\x6a\x38\x6b\x43\x57\x51\x30\x33\x57\x36\x35\x51','\x57\x52\x52\x64\x4a\x53\x6f\x74\x57\x50\x42\x64\x53\x67\x42\x63\x50\x53\x6b\x32','\x66\x58\x33\x63\x4b\x6d\x6f\x4b\x57\x37\x2f\x63\x53\x53\x6f\x6c\x57\x37\x38','\x57\x51\x56\x63\x56\x6d\x6f\x55\x6e\x47','\x57\x36\x70\x64\x4b\x6d\x6f\x68\x57\x51\x64\x64\x53\x47','\x57\x52\x5a\x63\x54\x53\x6f\x35\x6a\x57','\x77\x6d\x6b\x6e\x63\x53\x6b\x72\x57\x51\x53','\x57\x35\x37\x63\x53\x38\x6b\x38\x66\x53\x6f\x65\x57\x50\x4f\x2f\x57\x51\x65','\x6c\x43\x6f\x63\x71\x6d\x6f\x57\x6e\x57\x6a\x6f\x63\x57','\x57\x4f\x2f\x63\x49\x77\x58\x4b\x76\x71','\x62\x53\x6b\x4e\x64\x67\x56\x64\x48\x61','\x57\x34\x6c\x64\x55\x53\x6f\x77\x57\x50\x4e\x64\x4a\x76\x33\x63\x47\x53\x6f\x56','\x57\x34\x42\x64\x54\x53\x6f\x48\x64\x32\x33\x64\x56\x74\x6a\x7a','\x68\x38\x6b\x33\x6d\x72\x46\x63\x4e\x47','\x65\x53\x6f\x78\x57\x36\x78\x63\x53\x61\x38','\x68\x68\x58\x71\x57\x36\x74\x64\x49\x71','\x78\x33\x68\x64\x47\x61','\x63\x58\x4a\x64\x47\x57\x30\x38','\x6f\x57\x47\x7a\x57\x35\x42\x64\x4a\x57','\x68\x38\x6b\x62\x63\x63\x37\x63\x4f\x61','\x78\x53\x6b\x59\x6d\x43\x6b\x70\x57\x50\x48\x6b\x57\x50\x42\x64\x50\x47','\x57\x50\x54\x51\x57\x50\x31\x47\x57\x52\x6a\x67\x57\x51\x46\x64\x50\x57','\x73\x71\x52\x63\x4e\x53\x6f\x30\x57\x36\x2f\x64\x52\x53\x6f\x33\x57\x37\x4b','\x62\x4b\x79\x34\x57\x35\x4e\x63\x51\x57','\x72\x53\x6b\x38\x63\x38\x6b\x37\x77\x4b\x6c\x63\x49\x73\x61','\x6c\x43\x6f\x76\x57\x34\x64\x63\x51\x59\x6d','\x76\x57\x33\x64\x4e\x38\x6f\x4b\x57\x37\x2f\x64\x53\x38\x6f\x62\x57\x37\x75','\x57\x50\x46\x64\x4b\x4b\x6c\x64\x4e\x6d\x6f\x62','\x57\x50\x54\x33\x57\x34\x37\x64\x4a\x59\x57','\x6b\x6d\x6b\x47\x57\x35\x61','\x57\x52\x50\x64\x57\x36\x58\x2b','\x57\x34\x42\x63\x4d\x4e\x58\x55\x44\x61','\x57\x51\x42\x63\x48\x53\x6f\x47\x57\x50\x6e\x76','\x70\x53\x6b\x6f\x6b\x65\x68\x63\x49\x38\x6b\x35\x6f\x76\x75','\x57\x36\x74\x63\x4c\x38\x6f\x6f\x57\x4f\x52\x64\x51\x4e\x68\x63\x55\x53\x6b\x4b','\x78\x32\x33\x64\x4d\x6d\x6f\x61\x62\x38\x6b\x4d\x57\x4f\x42\x63\x50\x57','\x77\x43\x6b\x50\x62\x53\x6b\x45\x57\x50\x48\x72','\x70\x6d\x6f\x34\x65\x6d\x6b\x30\x57\x52\x6d','\x6f\x43\x6b\x30\x57\x35\x64\x63\x47\x43\x6f\x63\x57\x35\x5a\x63\x4b\x49\x43','\x57\x50\x43\x56\x42\x4a\x4a\x64\x4c\x72\x4a\x64\x53\x43\x6b\x65','\x57\x51\x79\x39\x44\x64\x2f\x63\x4b\x57\x5a\x63\x54\x6d\x6f\x71','\x57\x52\x31\x79\x57\x51\x4f\x58\x43\x61','\x57\x37\x70\x64\x49\x53\x6b\x78\x63\x4d\x69','\x61\x6d\x6b\x73\x65\x59\x31\x6d\x57\x4f\x76\x41\x70\x47','\x61\x53\x6f\x56\x44\x6d\x6f\x62\x66\x47','\x46\x6d\x6b\x71\x6e\x38\x6b\x51\x79\x57','\x6e\x53\x6b\x68\x6b\x61','\x71\x62\x75\x4d\x57\x34\x2f\x64\x4b\x71','\x57\x34\x71\x53\x43\x53\x6f\x78\x45\x74\x75\x64\x61\x57','\x57\x34\x46\x63\x52\x6d\x6b\x48\x61\x59\x75','\x6b\x63\x68\x64\x4d\x65\x69\x4f\x57\x4f\x33\x63\x54\x71','\x78\x43\x6f\x35\x6f\x78\x53\x78\x77\x6d\x6f\x46\x57\x52\x79','\x70\x64\x5a\x64\x53\x4c\x6d\x6f','\x57\x4f\x65\x34\x57\x52\x6a\x78\x57\x35\x31\x55\x57\x36\x4a\x64\x50\x47','\x61\x47\x6e\x5a\x57\x35\x47','\x61\x57\x37\x63\x4c\x43\x6b\x57\x70\x6d\x6b\x72\x73\x49\x4f','\x73\x53\x6f\x45\x61\x31\x76\x35','\x73\x43\x6b\x63\x57\x52\x37\x64\x4c\x53\x6b\x30\x57\x36\x5a\x64\x4f\x73\x61','\x66\x47\x54\x74\x57\x51\x43\x42\x57\x36\x6a\x35\x57\x52\x65','\x61\x38\x6f\x52\x42\x53\x6f\x71\x62\x57','\x57\x4f\x54\x50\x6f\x43\x6f\x66\x46\x71','\x67\x6d\x6f\x50\x57\x36\x64\x63\x50\x5a\x38\x2f\x57\x52\x61','\x57\x4f\x4e\x63\x55\x53\x6f\x41\x57\x51\x34\x41\x57\x37\x75\x61\x57\x36\x6d','\x67\x67\x6a\x56\x57\x36\x78\x64\x47\x57','\x57\x35\x70\x63\x4a\x78\x74\x64\x51\x6d\x6b\x65','\x57\x36\x74\x63\x4e\x72\x4c\x78\x71\x38\x6f\x6c\x6e\x6d\x6b\x52','\x63\x30\x75\x79\x57\x35\x42\x63\x4b\x71','\x34\x50\x77\x4c\x34\x50\x41\x5a\x34\x50\x77\x48\x34\x50\x77\x70\x34\x50\x73\x49\x34\x50\x45\x30\x34\x50\x73\x2b\x34\x50\x77\x42','\x6e\x43\x6b\x47\x57\x34\x52\x63\x48\x53\x6f\x65\x57\x35\x78\x63\x4c\x47','\x45\x6d\x6b\x4f\x57\x37\x33\x63\x4f\x43\x6b\x51','\x57\x36\x74\x63\x54\x59\x56\x64\x51\x57\x43\x4f\x57\x34\x56\x64\x4a\x61','\x57\x37\x4a\x63\x4e\x72\x35\x46','\x75\x58\x52\x63\x49\x43\x6f\x35\x64\x47','\x57\x34\x2f\x63\x4f\x6d\x6f\x61\x57\x51\x50\x64\x57\x36\x43\x62\x57\x35\x30','\x57\x35\x6c\x64\x56\x53\x6b\x2b\x61\x38\x6f\x64','\x6b\x43\x6f\x30\x45\x38\x6f\x75\x69\x71','\x66\x4a\x57\x6e\x57\x35\x56\x64\x52\x71','\x57\x34\x68\x64\x51\x77\x4a\x64\x52\x38\x6b\x65\x57\x34\x64\x63\x48\x38\x6b\x6a','\x73\x62\x56\x63\x4e\x53\x6f\x4b\x57\x35\x5a\x64\x54\x6d\x6f\x65\x57\x37\x75','\x78\x31\x37\x63\x4c\x53\x6f\x55\x57\x37\x37\x64\x55\x6d\x6f\x71\x57\x52\x34','\x57\x37\x2f\x63\x4a\x62\x7a\x65\x43\x53\x6f\x4f\x6a\x38\x6b\x57','\x57\x34\x37\x63\x52\x65\x78\x64\x48\x53\x6b\x71','\x57\x34\x52\x64\x49\x38\x6b\x75\x6e\x4c\x43','\x79\x43\x6b\x49\x57\x34\x37\x63\x48\x53\x6b\x66','\x41\x61\x46\x63\x4e\x53\x6b\x5a\x44\x47','\x62\x38\x6f\x51\x71\x43\x6f\x58\x61\x75\x4a\x63\x51\x63\x52\x63\x52\x32\x72\x76','\x6a\x58\x54\x79\x57\x36\x37\x64\x49\x71','\x44\x68\x64\x64\x53\x47','\x57\x51\x33\x63\x54\x49\x64\x63\x52\x30\x65\x35\x57\x34\x46\x64\x4b\x47','\x57\x35\x66\x79\x57\x34\x57','\x57\x36\x2f\x64\x47\x76\x4a\x64\x47\x43\x6b\x5a\x57\x51\x46\x64\x4b\x75\x43','\x57\x34\x5a\x63\x56\x43\x6b\x50\x67\x59\x4b\x4b\x61\x71','\x62\x72\x76\x42\x57\x35\x78\x64\x50\x61','\x78\x71\x72\x73\x57\x36\x6d\x76\x57\x36\x6e\x32\x57\x51\x61','\x67\x43\x6b\x78\x70\x4b\x52\x64\x4f\x43\x6b\x4c\x70\x31\x75','\x70\x77\x65\x7a\x57\x34\x4a\x63\x55\x47','\x63\x53\x6f\x75\x73\x6d\x6f\x58\x6a\x71','\x65\x77\x64\x63\x55\x53\x6b\x4c','\x75\x4e\x33\x64\x4b\x53\x6b\x7a\x73\x71','\x68\x43\x6b\x43\x70\x47','\x57\x34\x74\x64\x55\x53\x6f\x6a\x57\x4f\x79','\x57\x36\x78\x64\x4b\x38\x6b\x7a\x66\x66\x6d','\x61\x57\x69\x57','\x57\x4f\x37\x64\x4a\x43\x6f\x73\x57\x50\x5a\x64\x52\x61','\x57\x37\x4a\x63\x4b\x43\x6f\x75\x43\x61\x38\x79\x6b\x67\x30','\x57\x35\x56\x63\x4a\x48\x35\x68\x45\x71','\x57\x51\x44\x63\x57\x37\x50\x5a\x57\x37\x62\x55','\x57\x37\x4e\x63\x4b\x75\x33\x64\x4e\x53\x6b\x34\x57\x34\x6c\x64\x4b\x65\x65','\x6d\x5a\x78\x64\x49\x30\x72\x33\x57\x37\x71','\x64\x43\x6f\x42\x6a\x63\x54\x50','\x6b\x4a\x50\x36\x57\x36\x37\x64\x52\x47','\x42\x53\x6b\x6b\x6e\x38\x6b\x65\x45\x4d\x4e\x63\x52\x49\x38','\x78\x59\x2f\x63\x55\x47','\x71\x38\x6b\x4a\x43\x53\x6f\x6f\x67\x4a\x43\x38\x6c\x47','\x65\x66\x72\x4c\x57\x37\x4a\x64\x47\x43\x6f\x50\x68\x71','\x57\x37\x2f\x64\x4e\x53\x6b\x72\x66\x53\x6f\x61','\x57\x4f\x48\x62\x57\x4f\x4f\x33\x41\x57','\x62\x5a\x54\x2b\x57\x52\x75\x64','\x57\x37\x6c\x64\x49\x38\x6b\x58\x6b\x38\x6f\x43','\x57\x4f\x58\x35\x57\x52\x30\x72\x71\x43\x6f\x51\x57\x37\x54\x64','\x57\x36\x46\x63\x50\x53\x6f\x35\x69\x75\x46\x64\x54\x30\x65\x38','\x67\x59\x56\x64\x4c\x58\x7a\x7a\x57\x36\x75\x63\x64\x71','\x57\x35\x5a\x64\x4f\x6d\x6f\x6d\x57\x4f\x78\x64\x49\x4b\x65','\x73\x5a\x68\x63\x4a\x43\x6b\x5a\x77\x47','\x61\x6d\x6b\x4a\x57\x36\x52\x63\x56\x43\x6f\x79','\x57\x34\x6c\x64\x48\x38\x6b\x54\x6f\x4e\x34','\x57\x52\x58\x63\x57\x51\x4f\x4b\x45\x6d\x6f\x63\x57\x35\x44\x6a','\x41\x47\x68\x64\x4a\x38\x6f\x72\x63\x6d\x6f\x42\x61\x43\x6b\x75','\x71\x53\x6f\x6e\x57\x50\x2f\x64\x54\x53\x6b\x55','\x6c\x49\x42\x64\x4d\x62\x75\x75','\x67\x6d\x6b\x36\x66\x38\x6b\x53\x76\x47\x6c\x63\x48\x61\x79','\x57\x52\x38\x42\x57\x50\x4c\x37\x57\x50\x43','\x57\x34\x74\x64\x54\x43\x6b\x61\x65\x67\x69','\x69\x6d\x6f\x4c\x57\x51\x44\x79\x57\x34\x4a\x63\x53\x4b\x70\x64\x55\x71','\x57\x4f\x5a\x64\x51\x4d\x2f\x64\x50\x38\x6f\x69','\x64\x43\x6f\x30\x57\x51\x44\x70\x57\x36\x78\x64\x54\x76\x56\x64\x50\x61','\x6f\x63\x42\x64\x4a\x33\x61\x50','\x57\x36\x4e\x64\x4d\x38\x6f\x66\x57\x50\x56\x63\x54\x63\x47','\x57\x35\x6e\x73\x57\x50\x56\x64\x49\x6d\x6b\x2f\x63\x6d\x6f\x64\x7a\x61','\x42\x43\x6f\x6a\x65\x65\x66\x6f','\x45\x61\x53\x57\x57\x35\x53','\x6f\x6d\x6f\x4c\x57\x36\x33\x63\x50\x57','\x57\x4f\x64\x63\x56\x43\x6f\x78\x57\x51\x34','\x63\x32\x42\x64\x4a\x43\x6f\x6f\x46\x4d\x47\x72\x57\x36\x68\x64\x49\x38\x6f\x6c','\x57\x34\x52\x63\x51\x59\x56\x64\x56\x57','\x57\x34\x52\x64\x56\x53\x6f\x76\x57\x50\x37\x64\x55\x57','\x41\x5a\x2f\x63\x52\x53\x6f\x74\x57\x37\x38','\x57\x37\x4e\x63\x48\x66\x2f\x64\x4d\x53\x6b\x2f\x57\x36\x4a\x64\x4a\x65\x61','\x65\x74\x47\x5a\x57\x36\x52\x64\x54\x71','\x68\x4a\x78\x64\x51\x43\x6f\x33\x41\x6d\x6b\x41\x6b\x53\x6b\x59','\x75\x62\x58\x33\x57\x36\x2f\x64\x48\x6d\x6b\x4a\x68\x61\x6d','\x57\x36\x4a\x63\x4f\x73\x56\x64\x52\x61','\x46\x53\x6f\x51\x6c\x5a\x6e\x6e\x77\x53\x6f\x68\x57\x52\x43','\x66\x74\x4a\x63\x4d\x6d\x6b\x51\x6e\x47','\x57\x35\x62\x72\x57\x35\x58\x79\x57\x36\x65','\x6b\x38\x6b\x76\x66\x57\x46\x63\x54\x61','\x43\x48\x61\x35\x57\x34\x57','\x42\x53\x6f\x49\x57\x4f\x46\x64\x55\x53\x6b\x50\x57\x34\x69','\x57\x52\x35\x37\x6d\x6d\x6f\x49\x45\x73\x38\x75\x64\x47','\x57\x36\x66\x42\x57\x50\x6d\x4e','\x44\x43\x6b\x47\x57\x34\x33\x63\x4c\x38\x6b\x65\x57\x35\x74\x63\x4e\x64\x61','\x57\x35\x4a\x63\x4b\x6d\x6b\x6e\x6e\x4a\x65','\x68\x72\x39\x35\x57\x35\x70\x64\x4b\x43\x6b\x38\x73\x4e\x65','\x74\x38\x6b\x2b\x74\x38\x6b\x7a\x57\x50\x48\x6b\x57\x50\x5a\x64\x50\x47','\x6b\x38\x6b\x75\x70\x59\x68\x63\x50\x59\x4b','\x57\x37\x31\x59\x57\x36\x6c\x64\x4b\x38\x6b\x50','\x61\x38\x6f\x43\x43\x43\x6f\x4d\x61\x61','\x44\x4a\x4a\x63\x4e\x38\x6f\x39\x61\x59\x52\x63\x4c\x31\x47','\x57\x35\x33\x64\x54\x53\x6f\x77\x57\x50\x2f\x64\x49\x65\x79','\x6b\x6d\x6b\x72\x69\x48\x42\x63\x47\x47','\x57\x35\x62\x55\x57\x36\x68\x64\x51\x43\x6b\x4e','\x62\x59\x54\x2b\x57\x37\x2f\x64\x49\x57','\x57\x51\x35\x6a\x6f\x6d\x6f\x33\x76\x57','\x65\x4b\x66\x5a\x57\x36\x78\x64\x47\x38\x6f\x48\x68\x61\x38','\x46\x6d\x6f\x33\x6c\x4d\x6e\x7a','\x57\x50\x58\x61\x57\x50\x75\x57\x74\x57','\x75\x48\x2f\x63\x4d\x6d\x6b\x30\x6d\x6d\x6f\x44\x66\x33\x53','\x45\x57\x53\x54\x57\x50\x2f\x64\x51\x4d\x54\x6b\x45\x61','\x79\x6d\x6b\x30\x57\x35\x68\x63\x47\x43\x6b\x71','\x66\x6d\x6b\x6b\x6f\x4b\x30','\x57\x37\x2f\x63\x4b\x62\x35\x71\x45\x71','\x6b\x5a\x4e\x63\x4c\x63\x30\x52','\x75\x6d\x6f\x77\x65\x4b\x54\x77','\x44\x4a\x46\x64\x51\x43\x6f\x4d\x6e\x71','\x75\x58\x64\x64\x4b\x6d\x6f\x56\x57\x36\x52\x64\x55\x6d\x6f\x67\x57\x37\x6d','\x72\x43\x6b\x4f\x66\x53\x6b\x79\x57\x4f\x76\x6f\x57\x50\x30','\x6b\x47\x66\x2f\x57\x35\x38','\x6c\x33\x4b\x59\x57\x35\x68\x63\x4e\x61','\x79\x49\x78\x63\x4d\x6d\x6f\x36\x65\x48\x37\x63\x49\x31\x43','\x45\x6d\x6f\x39\x43\x64\x6e\x71\x74\x38\x6f\x74\x57\x51\x57','\x68\x71\x66\x58\x57\x34\x4e\x64\x47\x38\x6f\x5a\x77\x65\x43','\x57\x34\x33\x63\x4c\x4c\x2f\x64\x49\x53\x6b\x4b','\x57\x35\x2f\x64\x4f\x38\x6f\x64\x57\x52\x33\x64\x48\x47','\x57\x35\x78\x64\x50\x6d\x6b\x32\x63\x43\x6f\x72\x57\x50\x57\x69\x57\x52\x30','\x6b\x31\x2f\x64\x55\x4a\x54\x7a','\x78\x4e\x37\x63\x49\x53\x6b\x45\x72\x67\x53\x58\x57\x36\x53','\x42\x38\x6b\x36\x6d\x43\x6b\x33\x57\x50\x53','\x57\x34\x30\x63\x57\x50\x64\x63\x56\x4e\x50\x45\x57\x36\x34\x79\x57\x4f\x56\x63\x55\x53\x6b\x45\x57\x36\x53','\x63\x63\x33\x63\x53\x72\x72\x4f\x57\x37\x4c\x6c\x46\x71','\x57\x52\x39\x42\x57\x52\x4f\x35\x46\x43\x6f\x4d\x57\x35\x66\x4a','\x57\x4f\x4b\x5a\x57\x34\x31\x38\x57\x37\x6c\x64\x52\x6d\x6b\x43\x41\x47','\x41\x74\x4c\x4e\x71\x74\x30\x39','\x57\x50\x4a\x63\x54\x6d\x6f\x33\x76\x6d\x6b\x6f\x57\x34\x7a\x57\x57\x36\x30','\x73\x4a\x56\x63\x49\x53\x6b\x77\x78\x67\x30\x52\x57\x37\x61','\x57\x34\x74\x64\x54\x43\x6b\x59\x68\x38\x6f\x62\x57\x51\x61\x55\x57\x52\x61','\x57\x37\x4a\x63\x4b\x5a\x54\x43\x41\x38\x6f\x69\x6a\x38\x6b\x62','\x57\x50\x4c\x37\x69\x6d\x6f\x6a\x44\x73\x47\x65\x64\x57','\x6b\x63\x53\x71\x57\x37\x74\x64\x50\x6d\x6b\x35\x57\x37\x71','\x57\x36\x4e\x63\x4d\x53\x6b\x62\x57\x35\x2f\x64\x53\x67\x37\x63\x51\x38\x6b\x31','\x71\x38\x6f\x4f\x42\x53\x6f\x78\x68\x49\x7a\x4c','\x6b\x53\x6b\x76\x6e\x71\x68\x63\x52\x74\x37\x63\x4a\x53\x6b\x61','\x76\x48\x2f\x63\x4a\x6d\x6f\x30\x57\x35\x78\x64\x51\x6d\x6f\x43\x57\x37\x6d','\x67\x4e\x34\x65\x57\x50\x4a\x63\x53\x38\x6f\x36\x42\x53\x6f\x77','\x7a\x49\x70\x63\x47\x38\x6f\x4e\x67\x74\x2f\x63\x49\x31\x30','\x6d\x48\x37\x64\x56\x4b\x47\x34','\x6b\x6d\x6f\x36\x41\x6d\x6f\x64\x6f\x57','\x45\x64\x42\x63\x47\x71','\x57\x37\x52\x64\x55\x53\x6b\x6f\x62\x65\x47','\x6e\x78\x39\x31\x57\x34\x4e\x64\x52\x61','\x6b\x59\x47\x68\x57\x36\x64\x64\x47\x57','\x77\x6d\x6f\x74\x57\x50\x64\x64\x53\x38\x6b\x56\x57\x35\x6c\x63\x4b\x63\x38','\x57\x51\x6d\x77\x57\x37\x64\x64\x48\x62\x34\x37\x57\x51\x79\x58','\x71\x53\x6b\x57\x66\x53\x6f\x37\x61\x71','\x57\x34\x66\x4d\x57\x35\x44\x51\x57\x37\x6c\x64\x51\x38\x6b\x4d\x46\x71','\x65\x47\x38\x68\x57\x36\x6d\x43\x57\x36\x4b\x34\x57\x51\x43','\x6b\x63\x78\x63\x52\x61','\x35\x52\x77\x48\x57\x4f\x62\x63\x57\x52\x70\x63\x49\x30\x33\x63\x4e\x6d\x6b\x48','\x75\x38\x6b\x70\x62\x53\x6b\x62\x57\x50\x30','\x57\x51\x33\x63\x51\x38\x6f\x56\x6d\x63\x52\x64\x50\x30\x65\x32','\x57\x35\x78\x63\x52\x59\x7a\x4b\x44\x57','\x43\x6d\x6b\x39\x65\x43\x6b\x38','\x66\x53\x6f\x33\x6f\x38\x6b\x31\x57\x51\x53','\x75\x6d\x6f\x69\x64\x31\x31\x38\x43\x6d\x6f\x59\x57\x4f\x43','\x57\x35\x76\x76\x57\x34\x2f\x64\x52\x59\x47\x78','\x78\x4b\x74\x64\x4e\x57','\x57\x35\x4a\x63\x47\x53\x6b\x44\x68\x62\x43','\x61\x78\x47\x2b\x57\x35\x5a\x63\x4c\x38\x6f\x78\x75\x38\x6f\x4d','\x65\x4c\x39\x31\x57\x36\x34','\x57\x51\x4a\x64\x4a\x53\x6f\x75\x57\x4f\x5a\x63\x50\x63\x68\x63\x4c\x6d\x6b\x7a','\x57\x37\x2f\x63\x49\x62\x6e\x43\x41\x43\x6f\x7a','\x57\x36\x31\x74\x57\x50\x44\x32\x69\x38\x6b\x78\x57\x36\x50\x2b','\x74\x48\x57\x52\x71\x4a\x43\x39\x62\x6d\x6f\x4a','\x62\x71\x6e\x6e\x57\x51\x79','\x7a\x53\x6b\x35\x6c\x43\x6b\x33\x57\x51\x47','\x61\x78\x47\x2b\x57\x35\x5a\x63\x4c\x38\x6f\x78\x75\x38\x6f\x49','\x41\x61\x2f\x64\x54\x53\x6f\x50\x62\x47','\x6f\x38\x6b\x6d\x6f\x4a\x68\x63\x53\x74\x37\x64\x47\x6d\x6b\x48','\x57\x36\x33\x63\x4b\x6d\x6b\x75\x67\x72\x4f','\x71\x53\x6f\x6c\x57\x51\x74\x63\x4d\x43\x6b\x58\x57\x52\x37\x64\x55\x59\x43','\x78\x68\x52\x64\x4e\x43\x6b\x68\x77\x38\x6b\x39','\x57\x37\x4e\x63\x56\x63\x52\x63\x52\x31\x71\x57\x57\x34\x56\x64\x4b\x47','\x57\x50\x4c\x59\x6e\x38\x6f\x71\x45\x74\x39\x78\x65\x71','\x41\x64\x4a\x63\x55\x57\x57\x4c\x57\x51\x47\x65\x6f\x71','\x57\x34\x6c\x64\x48\x38\x6f\x53\x57\x50\x56\x64\x48\x71','\x57\x35\x74\x64\x55\x43\x6b\x4e\x76\x61','\x71\x6d\x6b\x54\x68\x53\x6f\x57','\x57\x52\x6c\x64\x4d\x43\x6b\x45\x6e\x72\x69\x66\x6a\x68\x61','\x63\x38\x6b\x44\x6d\x4c\x33\x64\x48\x47','\x70\x5a\x78\x63\x54\x4d\x53\x38\x41\x59\x47\x4f','\x57\x4f\x50\x75\x69\x6d\x6f\x63\x42\x61','\x65\x4a\x53\x79\x57\x37\x56\x64\x47\x57','\x67\x78\x4b\x74\x57\x35\x70\x63\x47\x43\x6f\x6a\x77\x38\x6f\x47','\x67\x71\x38\x44','\x57\x37\x33\x64\x4e\x43\x6b\x72\x70\x53\x6f\x4b\x57\x52\x53\x75\x57\x50\x79','\x64\x4d\x35\x5a\x57\x37\x4e\x64\x4b\x53\x6f\x48\x63\x4c\x61','\x6f\x5a\x34\x71\x57\x36\x52\x64\x51\x53\x6b\x53\x57\x37\x61\x31','\x67\x72\x56\x64\x4a\x6d\x6b\x30\x6d\x6d\x6b\x6e\x71\x64\x61','\x6b\x4a\x37\x64\x54\x30\x61\x30','\x57\x4f\x62\x51\x46\x38\x6f\x77\x45\x73\x53\x79\x73\x57','\x62\x49\x33\x63\x4c\x43\x6b\x61\x68\x47','\x78\x53\x6b\x59\x6c\x53\x6b\x75\x57\x50\x31\x67\x57\x4f\x52\x64\x47\x47','\x43\x43\x6b\x74\x57\x36\x78\x63\x48\x43\x6b\x4f\x57\x52\x64\x64\x55\x49\x57','\x7a\x53\x6b\x6e\x6d\x53\x6b\x38\x77\x71','\x6e\x74\x34\x66\x57\x37\x42\x64\x50\x53\x6b\x31\x57\x37\x75\x38','\x57\x51\x58\x4f\x70\x43\x6f\x69\x41\x73\x38\x45\x63\x71','\x44\x63\x71\x74','\x57\x52\x65\x78\x57\x37\x44\x31\x57\x52\x58\x62\x57\x34\x56\x64\x4b\x71','\x69\x64\x70\x63\x54\x38\x6b\x55\x6c\x57','\x57\x34\x64\x64\x56\x43\x6b\x54\x63\x43\x6f\x61\x57\x51\x4b\x59\x57\x52\x79','\x57\x52\x35\x6f\x57\x36\x76\x51','\x68\x49\x74\x63\x50\x58\x6a\x47\x57\x37\x31\x6d\x43\x61','\x6b\x43\x6f\x32\x57\x35\x64\x63\x47\x62\x4b','\x57\x4f\x5a\x63\x4b\x77\x66\x4d\x46\x38\x6f\x72\x57\x52\x66\x54','\x45\x5a\x4a\x63\x4c\x43\x6f\x52\x76\x5a\x68\x63\x4a\x66\x38','\x57\x36\x4c\x6e\x57\x35\x50\x56\x57\x34\x75','\x57\x35\x5a\x64\x55\x6d\x6f\x6d\x57\x50\x52\x64\x55\x30\x64\x63\x49\x43\x6b\x55','\x57\x37\x2f\x63\x49\x71\x42\x64\x52\x4e\x71','\x57\x52\x64\x63\x4c\x38\x6b\x63\x6d\x72\x75\x6d\x6b\x61','\x67\x6d\x6f\x31\x57\x36\x5a\x63\x51\x4e\x43\x48\x57\x51\x5a\x63\x51\x71','\x66\x49\x4c\x5a\x57\x4f\x65\x68','\x42\x67\x5a\x64\x55\x47','\x79\x38\x6b\x42\x69\x43\x6b\x6c\x57\x52\x4f','\x6b\x63\x74\x63\x4a\x4a\x75\x6a','\x57\x36\x33\x63\x4d\x6d\x6b\x62\x6f\x47\x69','\x63\x64\x70\x64\x4f\x32\x6d\x69','\x57\x4f\x4b\x2b\x57\x51\x6a\x61\x57\x52\x54\x48\x57\x36\x56\x64\x53\x71','\x57\x52\x48\x78\x57\x35\x70\x64\x4f\x32\x75\x69\x57\x36\x69\x77','\x6f\x73\x48\x74\x57\x36\x4e\x64\x4f\x6d\x6f\x79\x44\x57\x4f','\x44\x4a\x42\x64\x56\x4d\x38\x54\x43\x63\x53\x4d','\x73\x58\x5a\x63\x4b\x43\x6b\x34\x7a\x71','\x44\x6d\x6b\x2f\x64\x6d\x6b\x54\x71\x71\x33\x63\x48\x48\x4b','\x6e\x43\x6b\x32\x57\x36\x46\x63\x54\x53\x6f\x36','\x75\x43\x6f\x42\x6c\x4e\x35\x31','\x57\x51\x62\x6a\x57\x37\x54\x4a\x57\x37\x4f','\x64\x43\x6f\x4a\x7a\x71','\x57\x51\x64\x64\x54\x38\x6f\x4b\x57\x4f\x4a\x64\x4b\x57','\x6b\x38\x6b\x66\x6f\x4a\x42\x63\x54\x4a\x6d','\x57\x36\x6a\x74\x57\x34\x7a\x55\x57\x37\x38','\x57\x4f\x66\x41\x57\x50\x34\x78\x73\x71','\x63\x53\x6f\x44\x6c\x58\x7a\x55','\x42\x75\x4a\x63\x51\x4e\x50\x62\x57\x51\x72\x46\x65\x6d\x6f\x66\x57\x36\x66\x70\x77\x4c\x69','\x57\x34\x64\x64\x56\x43\x6b\x4c\x62\x71','\x65\x73\x74\x64\x53\x38\x6f\x4a\x69\x43\x6f\x43\x42\x61','\x57\x51\x7a\x74\x57\x36\x31\x50\x57\x36\x4c\x55','\x57\x50\x6c\x63\x4f\x75\x48\x6f\x78\x71','\x57\x34\x62\x71\x57\x34\x72\x31\x57\x37\x75','\x57\x4f\x56\x64\x50\x68\x6c\x64\x52\x53\x6f\x46\x57\x35\x68\x63\x56\x43\x6b\x45','\x71\x38\x6b\x78\x6a\x38\x6b\x73\x57\x50\x38','\x57\x52\x2f\x63\x53\x53\x6b\x56\x67\x73\x57\x54\x63\x77\x6d','\x78\x61\x4b\x67\x57\x35\x46\x64\x47\x61','\x64\x43\x6b\x4b\x57\x36\x5a\x63\x54\x43\x6f\x7a','\x69\x63\x76\x34\x72\x33\x43\x54\x62\x53\x6b\x54','\x57\x50\x4e\x63\x50\x6d\x6f\x70\x70\x72\x57','\x6d\x38\x6f\x4d\x6e\x49\x58\x72','\x67\x43\x6f\x36\x57\x37\x64\x63\x4b\x73\x57','\x6e\x72\x42\x64\x51\x64\x57\x71\x57\x37\x34\x65\x72\x61','\x45\x5a\x4a\x64\x49\x61\x57\x52\x57\x50\x46\x63\x51\x53\x6b\x61','\x57\x52\x33\x63\x4e\x6d\x6f\x48\x57\x50\x47\x6b\x57\x36\x79\x61\x57\x37\x43','\x57\x34\x46\x64\x52\x53\x6b\x32\x64\x53\x6f\x61\x57\x52\x57\x34\x57\x51\x53','\x57\x36\x37\x64\x51\x6d\x6b\x72\x6f\x66\x4b','\x6f\x32\x61\x2b\x61\x77\x4c\x33\x77\x53\x6f\x36\x57\x50\x71\x71\x57\x4f\x64\x64\x4d\x53\x6b\x41\x57\x37\x61','\x65\x57\x6d\x50\x57\x34\x6c\x64\x47\x6d\x6b\x4e\x57\x52\x39\x35','\x44\x64\x64\x63\x50\x53\x6f\x54\x57\x34\x69','\x57\x52\x70\x64\x4b\x72\x5a\x63\x4d\x43\x6f\x4d\x57\x52\x43','\x57\x36\x68\x64\x4d\x38\x6f\x61\x70\x48\x61\x66\x79\x67\x71','\x68\x6d\x6b\x4a\x6c\x57\x56\x63\x55\x47','\x65\x53\x6f\x30\x57\x52\x76\x79\x57\x34\x6c\x64\x55\x31\x69','\x62\x38\x6f\x44\x62\x63\x53','\x6b\x38\x6f\x77\x57\x4f\x72\x72\x57\x37\x43','\x68\x77\x6d\x6e\x57\x34\x5a\x64\x4b\x6d\x6b\x64\x67\x6d\x6f\x57','\x79\x63\x76\x2f\x76\x4a\x43\x49\x63\x47','\x57\x37\x46\x64\x56\x43\x6b\x6d\x65\x6d\x6f\x71','\x62\x47\x39\x43\x57\x52\x65\x72\x57\x36\x34','\x57\x50\x76\x61\x57\x35\x30','\x6b\x63\x74\x64\x4c\x67\x38\x4b','\x70\x5a\x37\x64\x49\x47\x47\x6d','\x57\x51\x68\x63\x50\x38\x6f\x35','\x46\x64\x4c\x4b\x77\x33\x75\x49\x61\x6d\x6b\x4e','\x75\x4e\x42\x64\x4e\x71','\x57\x36\x78\x63\x4a\x66\x50\x64\x45\x43\x6f\x46\x6f\x6d\x6b\x52','\x57\x37\x47\x6b\x57\x36\x72\x4e\x57\x36\x71\x33\x57\x35\x37\x63\x47\x71','\x75\x59\x33\x63\x56\x53\x6b\x73\x77\x33\x43\x53\x57\x37\x57','\x42\x6d\x6b\x67\x57\x37\x46\x63\x4e\x53\x6f\x52\x57\x36\x4e\x64\x51\x74\x65','\x77\x53\x6b\x38\x62\x53\x6b\x4f\x57\x50\x35\x63\x57\x4f\x52\x64\x54\x71','\x57\x35\x37\x64\x50\x53\x6b\x6e\x57\x37\x57\x65\x57\x51\x7a\x67\x57\x34\x46\x64\x4b\x43\x6f\x42\x78\x4d\x4a\x63\x4d\x61','\x57\x4f\x68\x63\x55\x65\x6e\x74\x73\x57','\x57\x4f\x78\x64\x54\x78\x78\x64\x55\x71','\x57\x51\x58\x69\x68\x43\x6f\x4f\x73\x48\x34\x4f\x6a\x61','\x64\x43\x6f\x48\x7a\x43\x6f\x61\x74\x47','\x68\x64\x57\x4f\x57\x35\x5a\x64\x49\x47','\x57\x51\x5a\x63\x4a\x57\x6e\x73\x41\x6d\x6f\x79\x6a\x53\x6f\x4f','\x57\x37\x74\x63\x4e\x43\x6b\x63\x70\x61','\x57\x35\x64\x64\x56\x53\x6b\x4f\x61\x33\x30','\x75\x59\x52\x63\x49\x57','\x75\x73\x4f\x30\x57\x36\x46\x64\x52\x61','\x69\x43\x6f\x77\x63\x74\x4f','\x57\x50\x35\x75\x57\x50\x43\x33\x44\x57','\x6e\x6d\x6f\x36\x57\x35\x68\x63\x4c\x43\x6f\x6f\x57\x35\x42\x63\x4b\x64\x38','\x66\x6d\x6b\x4b\x63\x5a\x5a\x63\x4c\x61','\x7a\x38\x6b\x50\x6d\x6d\x6b\x51\x77\x57','\x57\x34\x6c\x64\x53\x53\x6f\x76','\x57\x51\x33\x63\x53\x53\x6f\x68\x57\x51\x6d\x46\x57\x37\x75\x42\x57\x37\x79','\x66\x38\x6f\x67\x62\x63\x54\x72\x57\x4f\x43','\x75\x58\x64\x63\x4e\x6d\x6f\x53\x57\x36\x2f\x64\x55\x43\x6f\x6e\x57\x36\x6d','\x79\x53\x6f\x50\x57\x35\x70\x64\x52\x43\x6b\x56\x57\x35\x4a\x64\x4c\x74\x57','\x57\x35\x37\x64\x53\x38\x6b\x61\x63\x43\x6f\x72\x57\x4f\x34\x56\x57\x52\x65','\x57\x52\x64\x63\x55\x30\x66\x33\x41\x71','\x6d\x58\x70\x63\x52\x72\x44\x39','\x68\x71\x54\x74\x57\x51\x43\x54\x57\x36\x76\x30\x57\x51\x71','\x42\x48\x74\x63\x4d\x31\x4b\x70','\x57\x52\x52\x63\x54\x75\x58\x69\x73\x53\x6f\x4d\x57\x34\x38','\x57\x50\x52\x63\x4c\x78\x58\x30\x44\x53\x6f\x78','\x66\x38\x6f\x68\x61\x59\x31\x67\x57\x4f\x7a\x6d','\x57\x52\x7a\x6c\x57\x36\x48\x5a\x57\x37\x48\x2f','\x45\x5a\x39\x63\x7a\x48\x43\x43\x67\x38\x6b\x58','\x64\x68\x58\x43\x57\x36\x64\x64\x49\x57','\x6b\x43\x6b\x48\x57\x35\x2f\x63\x4b\x43\x6f\x45\x57\x34\x53','\x72\x53\x6f\x35\x63\x6d\x6b\x50\x72\x30\x78\x64\x4e\x77\x6d','\x6a\x49\x4e\x63\x52\x62\x53\x30\x57\x36\x69','\x61\x38\x6f\x62\x70\x43\x6b\x41\x57\x52\x53','\x57\x35\x72\x73\x57\x36\x39\x6e\x57\x34\x43','\x42\x43\x6f\x39\x6f\x78\x58\x74\x73\x43\x6f\x74\x57\x4f\x61','\x7a\x4a\x56\x63\x4d\x6d\x6f\x54\x65\x47','\x6b\x73\x30\x70\x57\x36\x4a\x64\x52\x6d\x6b\x30\x57\x37\x7a\x35','\x6f\x53\x6f\x63\x57\x52\x7a\x69\x57\x37\x61','\x57\x34\x48\x66\x57\x35\x6c\x64\x49\x6d\x6b\x31\x63\x6d\x6f\x70\x45\x71','\x57\x50\x54\x37\x6d\x38\x6f\x61\x77\x4a\x69\x42\x61\x57','\x42\x64\x70\x63\x53\x68\x57\x54\x43\x74\x75','\x46\x64\x56\x63\x4c\x6d\x6f\x51','\x57\x37\x6c\x63\x4b\x43\x6b\x44\x69\x57\x65\x70\x6b\x61','\x57\x36\x74\x64\x4f\x6d\x6b\x4b\x65\x61','\x67\x6d\x6f\x53\x57\x36\x5a\x63\x49\x4a\x6d','\x66\x31\x70\x63\x4d\x38\x6f\x48\x57\x37\x74\x64\x55\x53\x6f\x6e\x57\x36\x69','\x57\x34\x52\x64\x51\x38\x6f\x6d\x57\x50\x4e\x64\x4b\x65\x68\x63\x56\x38\x6b\x32','\x66\x71\x2f\x64\x47\x43\x6b\x4d\x6c\x6d\x6f\x46\x73\x63\x65','\x42\x6d\x6f\x41\x70\x4c\x7a\x2b','\x6c\x61\x33\x64\x52\x49\x4f','\x57\x50\x43\x6e\x74\x48\x70\x63\x52\x57','\x62\x43\x6f\x68\x57\x50\x35\x6b\x57\x36\x4b','\x57\x50\x4a\x64\x4d\x6d\x6f\x70\x57\x50\x5a\x64\x53\x61','\x41\x49\x6c\x63\x54\x4b\x61\x37\x7a\x5a\x69\x37','\x57\x34\x56\x63\x51\x43\x6b\x66','\x65\x68\x5a\x64\x4e\x38\x6b\x62\x77\x53\x6b\x58\x57\x50\x46\x64\x50\x47','\x57\x36\x6c\x63\x51\x73\x56\x64\x4f\x75\x71\x30\x57\x34\x2f\x64\x49\x71','\x57\x37\x37\x63\x52\x73\x2f\x64\x55\x30\x69','\x57\x37\x37\x63\x4c\x72\x6e\x75\x45\x71','\x57\x50\x33\x63\x53\x43\x6b\x53\x68\x38\x6f\x72\x57\x50\x53\x59\x57\x51\x4f','\x6b\x72\x64\x64\x4c\x63\x61\x73','\x65\x38\x6f\x66\x6e\x43\x6b\x78\x57\x52\x4b\x48\x57\x37\x71\x4c','\x57\x35\x52\x64\x51\x6d\x6b\x33\x61\x76\x4f','\x67\x58\x4c\x72\x57\x51\x79\x64','\x57\x51\x33\x64\x49\x4c\x46\x64\x50\x43\x6f\x6f','\x67\x53\x6b\x53\x63\x38\x6b\x36\x68\x65\x2f\x63\x4a\x47\x43','\x61\x38\x6f\x63\x6f\x6d\x6b\x71\x57\x52\x4f\x54\x57\x36\x66\x38','\x57\x37\x5a\x63\x4d\x38\x6b\x6b\x6e\x72\x47','\x62\x67\x6a\x65\x57\x34\x42\x64\x54\x71','\x57\x34\x74\x64\x52\x53\x6b\x51\x66\x6d\x6f\x67\x57\x4f\x34\x56\x57\x51\x65','\x7a\x49\x46\x63\x4b\x6d\x6f\x35\x67\x78\x4a\x63\x48\x30\x4b','\x57\x52\x4e\x64\x4d\x38\x6f\x74\x57\x4f\x5a\x64\x55\x57','\x6c\x6d\x6f\x74\x64\x49\x4f','\x6f\x63\x33\x63\x52\x62\x47\x56\x57\x36\x44\x52\x74\x61','\x63\x6d\x6f\x7a\x57\x51\x62\x53\x57\x36\x61','\x45\x72\x43\x42\x57\x37\x52\x64\x55\x61','\x57\x4f\x6c\x64\x4f\x53\x6f\x6b\x57\x52\x68\x64\x49\x61','\x73\x73\x56\x63\x4d\x38\x6b\x79\x75\x67\x30\x52\x57\x34\x79','\x46\x63\x72\x51\x71\x73\x30\x38\x6b\x43\x6b\x51','\x57\x37\x76\x55\x70\x78\x64\x63\x48\x4c\x33\x64\x51\x53\x6b\x76','\x46\x53\x6b\x46\x57\x34\x56\x63\x4d\x6d\x6b\x66','\x57\x34\x58\x73\x57\x50\x68\x63\x4c\x71','\x57\x4f\x56\x64\x56\x43\x6b\x56\x64\x67\x68\x63\x51\x77\x7a\x71','\x57\x52\x56\x63\x50\x53\x6f\x50\x6d\x61\x33\x64\x50\x4c\x53','\x6b\x48\x52\x64\x55\x49\x53\x2f\x57\x37\x47\x67\x61\x71','\x64\x38\x6f\x57\x57\x52\x72\x79\x57\x34\x79','\x57\x37\x42\x63\x48\x38\x6b\x56\x6d\x48\x6d\x68\x69\x78\x79','\x71\x43\x6b\x52\x64\x43\x6b\x54','\x44\x63\x75\x36\x57\x35\x37\x64\x4e\x71','\x67\x4e\x38\x6d\x57\x35\x33\x63\x4c\x53\x6f\x32\x74\x38\x6f\x33','\x57\x4f\x64\x63\x56\x43\x6f\x58\x57\x52\x31\x73\x57\x37\x57\x67\x57\x51\x61','\x64\x38\x6f\x36\x44\x6d\x6f\x77\x75\x57\x31\x63\x62\x47','\x66\x43\x6f\x2b\x57\x51\x39\x66','\x57\x36\x56\x63\x4d\x38\x6b\x43','\x57\x4f\x48\x74\x57\x35\x70\x64\x56\x49\x65\x42','\x70\x59\x30\x6a\x57\x36\x4a\x64\x4f\x6d\x6f\x36\x57\x37\x43\x32','\x57\x37\x72\x41\x57\x37\x78\x64\x55\x6d\x6b\x48','\x57\x36\x4e\x63\x4a\x75\x33\x64\x4e\x6d\x6b\x59\x57\x36\x69','\x73\x38\x6b\x76\x57\x37\x42\x63\x4d\x43\x6b\x58','\x57\x37\x2f\x63\x4b\x30\x4e\x63\x47\x6d\x6f\x34\x57\x4f\x33\x63\x51\x61','\x57\x35\x5a\x64\x48\x5a\x57\x59\x6b\x6d\x6b\x72\x57\x51\x58\x4b\x57\x34\x38\x71\x61\x58\x46\x63\x55\x71','\x71\x59\x78\x64\x55\x43\x6f\x57\x6e\x43\x6b\x66\x6c\x6d\x6b\x4e','\x67\x47\x44\x4f\x57\x50\x71\x41','\x57\x50\x52\x63\x4b\x77\x6d','\x70\x74\x56\x64\x49\x71\x65\x4c\x57\x50\x2f\x63\x54\x6d\x6b\x6c','\x6d\x6d\x6b\x48\x6e\x31\x2f\x64\x53\x61','\x66\x4d\x57\x64\x57\x35\x37\x63\x49\x57','\x57\x4f\x4b\x5a\x57\x34\x31\x38\x57\x37\x78\x64\x51\x38\x6b\x43\x41\x57','\x77\x57\x33\x63\x4d\x47','\x78\x61\x52\x63\x4d\x53\x6f\x59\x57\x52\x4f','\x45\x6d\x6b\x4f\x64\x53\x6b\x45\x57\x50\x4b\x7a\x57\x35\x4a\x64\x49\x61','\x6d\x48\x64\x64\x53\x49\x65','\x61\x6d\x6b\x6e\x57\x37\x46\x63\x4d\x43\x6b\x54','\x57\x51\x52\x63\x4b\x78\x58\x50\x6d\x53\x6f\x65\x57\x37\x76\x2f','\x78\x5a\x46\x63\x51\x6d\x6f\x64\x57\x36\x4b','\x45\x6d\x6b\x75\x6d\x59\x68\x64\x54\x74\x4a\x63\x4c\x6d\x6b\x48','\x67\x61\x39\x6f\x57\x52\x61\x74\x57\x36\x66\x39','\x57\x51\x62\x39\x57\x34\x42\x64\x55\x73\x61','\x69\x6d\x6f\x52\x66\x38\x6b\x58\x57\x52\x47','\x6a\x47\x78\x63\x4c\x71\x71\x4e','\x70\x32\x34\x6a\x57\x37\x42\x64\x4f\x43\x6b\x2f\x57\x36\x4c\x33','\x70\x64\x70\x63\x55\x38\x6b\x55\x62\x61','\x66\x53\x6b\x36\x69\x4b\x78\x64\x47\x47','\x72\x74\x42\x63\x48\x43\x6f\x4d','\x44\x43\x6f\x6e\x6e\x49\x78\x63\x52\x78\x42\x63\x4d\x43\x6b\x33','\x57\x37\x4c\x34\x57\x35\x52\x64\x52\x43\x6b\x72','\x57\x4f\x57\x53\x57\x50\x35\x50\x57\x4f\x43','\x57\x37\x54\x44\x57\x35\x52\x64\x53\x53\x6b\x44','\x57\x4f\x62\x39\x57\x37\x6e\x32\x57\x34\x75','\x6e\x6d\x6f\x61\x43\x77\x30','\x6d\x43\x6f\x66\x6e\x72\x50\x59','\x66\x38\x6f\x44\x64\x47','\x57\x35\x43\x42\x57\x34\x78\x64\x55\x59\x75\x6b\x57\x36\x79\x68','\x68\x77\x69\x66\x57\x35\x68\x63\x4e\x71','\x70\x38\x6f\x37\x57\x50\x37\x63\x49\x53\x6f\x42\x57\x35\x33\x63\x4e\x74\x61','\x57\x50\x30\x2b\x57\x52\x65\x6c','\x6d\x43\x6b\x79\x57\x35\x46\x63\x4a\x43\x6f\x6f','\x6b\x4c\x76\x43\x57\x35\x70\x64\x50\x57','\x75\x49\x78\x63\x4c\x6d\x6f\x2b','\x57\x52\x5a\x63\x53\x53\x6f\x61\x57\x52\x6e\x4b','\x57\x4f\x34\x71\x57\x52\x48\x2f\x57\x4f\x47','\x72\x4a\x6c\x64\x53\x38\x6f\x58\x69\x47','\x61\x48\x74\x64\x54\x58\x79\x45','\x57\x37\x52\x63\x48\x38\x6f\x6f\x66\x74\x79\x4e\x61\x76\x75','\x67\x4a\x37\x63\x52\x72\x6d\x4d','\x6e\x4e\x34\x56\x57\x36\x4a\x63\x51\x61','\x73\x6d\x6b\x45\x57\x4f\x34','\x57\x35\x62\x4e\x57\x34\x35\x38','\x42\x6d\x6b\x6b\x57\x36\x2f\x63\x4f\x43\x6b\x36','\x6c\x62\x56\x64\x55\x64\x4b\x50','\x69\x59\x6c\x63\x4f\x72\x61\x31\x57\x36\x35\x42\x41\x47','\x62\x6d\x6f\x79\x57\x4f\x48\x4c\x57\x36\x5a\x64\x49\x4e\x42\x64\x4c\x71','\x6b\x43\x6b\x35\x57\x35\x46\x63\x48\x53\x6f\x6f','\x70\x6d\x6f\x34\x57\x34\x4e\x63\x4e\x62\x30','\x57\x51\x70\x64\x49\x43\x6f\x6f\x57\x50\x65','\x57\x37\x4e\x63\x4c\x65\x64\x64\x4e\x71','\x70\x4d\x75\x59\x61\x4d\x54\x37\x77\x38\x6b\x67\x57\x50\x61\x77\x57\x52\x46\x64\x48\x38\x6b\x2f','\x44\x74\x53\x74\x57\x36\x52\x63\x51\x53\x6b\x32\x57\x37\x34\x36','\x57\x4f\x5a\x63\x4c\x4b\x7a\x42\x79\x61','\x73\x43\x6b\x57\x62\x47','\x65\x74\x34\x6f\x57\x37\x70\x64\x4b\x61','\x62\x61\x74\x63\x53\x53\x6b\x57\x6a\x38\x6b\x77\x71\x5a\x34','\x6e\x58\x68\x64\x51\x67\x65\x74\x57\x36\x69\x66\x63\x47','\x63\x72\x79\x68\x57\x35\x33\x64\x49\x57','\x68\x77\x69\x66\x57\x35\x68\x63\x4e\x61','\x57\x4f\x6c\x63\x50\x78\x44\x57\x76\x61','\x57\x36\x4a\x63\x4e\x6d\x6b\x6c\x69\x47\x75','\x64\x38\x6b\x42\x70\x30\x42\x64\x4c\x53\x6b\x4a','\x76\x64\x70\x64\x55\x43\x6f\x33\x6c\x53\x6b\x75\x69\x6d\x6f\x58','\x6e\x57\x54\x6f\x57\x51\x54\x41\x57\x36\x48\x33\x57\x51\x65','\x57\x36\x74\x64\x50\x43\x6f\x32\x57\x50\x4a\x64\x4c\x61','\x57\x4f\x37\x63\x48\x33\x44\x6d\x77\x57','\x57\x4f\x68\x63\x4b\x32\x7a\x31\x44\x53\x6f\x41\x57\x52\x58\x2f','\x76\x48\x46\x63\x4c\x6d\x6f\x4c\x57\x52\x52\x64\x56\x53\x6f\x68\x57\x37\x71','\x34\x50\x45\x50\x34\x50\x77\x6c\x34\x50\x45\x77\x34\x50\x73\x59\x34\x50\x45\x38\x34\x50\x73\x6a\x34\x50\x41\x67\x34\x50\x41\x76','\x57\x4f\x39\x44\x57\x36\x46\x64\x50\x49\x79','\x45\x4a\x30\x75\x57\x37\x4e\x64\x53\x43\x6b\x56\x57\x36\x6a\x5a','\x57\x37\x33\x63\x49\x66\x4a\x64\x47\x43\x6f\x32\x57\x37\x70\x64\x49\x4c\x4f','\x69\x6d\x6f\x72\x57\x34\x46\x63\x4e\x48\x61','\x57\x36\x52\x63\x4c\x53\x6f\x38\x70\x61\x74\x64\x4f\x66\x57\x37','\x57\x35\x35\x30\x57\x34\x35\x6d\x57\x36\x69','\x57\x4f\x5a\x63\x50\x67\x62\x55\x44\x53\x6f\x71','\x62\x62\x4e\x63\x49\x6d\x6b\x50','\x57\x51\x50\x61\x57\x50\x47\x34\x42\x6d\x6f\x75\x57\x34\x31\x56','\x57\x52\x46\x63\x55\x38\x6f\x76\x57\x50\x48\x5a','\x63\x43\x6f\x39\x6b\x6d\x6b\x6c\x75\x58\x72\x30\x70\x71','\x44\x5a\x74\x64\x53\x38\x6f\x4a\x64\x57','\x76\x64\x4a\x63\x55\x53\x6b\x4f\x6e\x6d\x6f\x77\x6d\x53\x6b\x2b','\x76\x61\x79\x39\x57\x35\x4e\x64\x49\x61','\x57\x36\x5a\x63\x4d\x6d\x6b\x68\x6d\x57\x75','\x6c\x5a\x4f\x67\x57\x51\x61','\x61\x38\x6f\x46\x73\x6d\x6f\x46\x69\x57','\x6f\x6d\x6f\x4d\x57\x52\x76\x69\x57\x35\x65','\x57\x4f\x56\x63\x50\x43\x6f\x4e\x6b\x5a\x47','\x57\x52\x4e\x64\x4b\x38\x6f\x72\x57\x50\x4f','\x57\x50\x56\x63\x4e\x67\x7a\x49\x46\x57','\x57\x36\x4e\x64\x50\x53\x6f\x63\x57\x4f\x68\x64\x49\x71','\x57\x34\x4e\x64\x56\x43\x6b\x4f\x64\x47','\x57\x36\x52\x64\x50\x53\x6f\x48\x64\x77\x33\x64\x55\x4d\x79\x79','\x76\x4a\x56\x63\x4c\x53\x6b\x43\x71\x78\x79','\x63\x33\x76\x6d\x57\x35\x52\x63\x47\x6d\x6f\x71\x78\x53\x6f\x4b','\x67\x73\x68\x63\x50\x6d\x6b\x54\x69\x61','\x57\x4f\x2f\x63\x54\x38\x6f\x62\x65\x71\x65','\x6b\x48\x52\x63\x51\x43\x6b\x64\x65\x71','\x57\x34\x74\x64\x56\x43\x6b\x32\x66\x47','\x72\x53\x6b\x63\x57\x36\x78\x63\x4b\x47','\x62\x43\x6b\x5a\x57\x35\x2f\x63\x4a\x6d\x6f\x68\x57\x35\x33\x63\x4c\x57','\x63\x38\x6b\x61\x45\x59\x56\x63\x55\x33\x56\x63\x4a\x53\x6b\x54','\x6f\x63\x6c\x63\x53\x71','\x57\x4f\x64\x63\x53\x43\x6f\x45\x57\x51\x35\x75\x57\x36\x79','\x65\x43\x6f\x75\x57\x4f\x46\x63\x56\x38\x6b\x2f\x57\x34\x37\x63\x48\x74\x61','\x66\x6d\x6f\x65\x6a\x53\x6b\x78\x57\x52\x38\x50\x57\x36\x69','\x57\x4f\x42\x63\x4e\x38\x6f\x39\x67\x62\x53','\x62\x57\x39\x6f\x57\x52\x79\x45\x57\x37\x69\x4c','\x57\x50\x38\x34\x57\x52\x35\x68\x57\x50\x48\x6f\x57\x36\x37\x64\x55\x61','\x57\x36\x72\x38\x6c\x77\x64\x64\x4a\x75\x38','\x57\x34\x52\x64\x53\x43\x6b\x4f\x66\x68\x74\x64\x53\x64\x6a\x6d','\x6d\x53\x6b\x7a\x57\x37\x6c\x63\x52\x43\x6f\x4e','\x70\x59\x4e\x63\x53\x6d\x6b\x4f\x69\x57','\x62\x53\x6f\x56\x57\x35\x68\x63\x54\x74\x61','\x57\x52\x43\x38\x46\x64\x4e\x63\x4b\x59\x64\x64\x56\x53\x6b\x72','\x79\x72\x66\x67\x45\x63\x53','\x6e\x53\x6b\x37\x57\x35\x2f\x63\x56\x43\x6f\x50','\x66\x38\x6b\x78\x6c\x72\x74\x63\x54\x61','\x76\x63\x33\x64\x56\x6d\x6f\x33\x65\x47','\x57\x51\x4f\x34\x57\x52\x7a\x41\x57\x50\x6d','\x6b\x63\x53\x62\x57\x36\x56\x64\x51\x53\x6b\x30','\x76\x74\x2f\x64\x4b\x53\x6b\x76\x77\x38\x6b\x39\x57\x50\x33\x63\x54\x61','\x72\x4a\x6c\x64\x53\x38\x6f\x58\x69\x53\x6b\x57\x6c\x6d\x6b\x39','\x6b\x63\x65\x73\x57\x51\x6c\x63\x50\x71','\x45\x64\x74\x63\x4f\x4e\x4f\x51','\x67\x71\x6a\x64\x57\x34\x4e\x64\x4c\x38\x6f\x31\x72\x65\x30','\x57\x36\x70\x64\x54\x49\x33\x64\x4f\x65\x6d\x39\x57\x35\x79','\x57\x36\x52\x64\x52\x43\x6b\x78\x70\x43\x6f\x48','\x57\x52\x54\x78\x57\x4f\x4f\x2f','\x57\x4f\x37\x64\x4c\x53\x6f\x6f\x57\x50\x30','\x76\x64\x70\x64\x51\x43\x6b\x4c\x79\x61','\x6a\x71\x6a\x66\x57\x34\x46\x64\x4c\x71','\x57\x34\x64\x63\x47\x57\x4e\x64\x56\x4c\x30','\x6a\x62\x2f\x63\x4c\x38\x6b\x57\x6f\x57','\x57\x35\x5a\x64\x56\x43\x6b\x53\x64\x53\x6f\x36\x57\x50\x57\x30\x57\x51\x47','\x79\x43\x6b\x75\x57\x35\x70\x63\x48\x43\x6b\x54','\x78\x43\x6f\x79\x57\x50\x33\x64\x55\x6d\x6b\x55\x57\x35\x34','\x57\x34\x50\x54\x57\x35\x6a\x38\x57\x37\x43','\x74\x64\x58\x51\x71\x64\x57\x51\x70\x43\x6b\x4d','\x57\x35\x6a\x68\x57\x35\x46\x64\x4d\x43\x6b\x4b\x71\x43\x6f\x70\x7a\x71','\x63\x38\x6f\x43\x61\x59\x53','\x75\x6d\x6f\x45\x69\x6d\x6b\x79\x57\x51\x4f\x58\x57\x37\x71\x56','\x71\x48\x5a\x63\x52\x53\x6f\x4b\x57\x35\x71','\x57\x52\x52\x64\x49\x53\x6f\x61\x57\x4f\x4a\x64\x53\x65\x74\x63\x56\x43\x6b\x49','\x75\x38\x6b\x34\x65\x43\x6b\x4b\x72\x4c\x2f\x63\x47\x47','\x65\x47\x38\x68\x57\x36\x6d\x43\x57\x36\x4b\x34\x57\x52\x43','\x57\x4f\x70\x64\x56\x53\x6b\x59\x74\x78\x37\x64\x4f\x68\x35\x44','\x42\x4a\x44\x55\x77\x59\x57','\x57\x4f\x4c\x53\x57\x35\x47\x35\x57\x51\x5a\x63\x53\x71','\x57\x37\x33\x63\x4d\x57\x74\x64\x55\x75\x61','\x57\x52\x58\x30\x57\x36\x62\x77\x57\x35\x34','\x41\x5a\x74\x63\x50\x4e\x4f','\x6f\x6d\x6f\x4f\x6c\x53\x6b\x36\x57\x50\x75','\x57\x50\x5a\x63\x4f\x38\x6f\x76\x57\x52\x58\x7a','\x57\x36\x33\x63\x4b\x4c\x44\x62\x41\x43\x6f\x64\x44\x43\x6b\x33','\x57\x37\x62\x37\x57\x37\x6c\x64\x55\x6d\x6b\x7a\x42\x53\x6f\x35\x76\x47','\x57\x37\x52\x64\x50\x43\x6b\x34\x79\x4c\x5a\x63\x4f\x71','\x43\x47\x65\x39\x57\x35\x52\x64\x51\x77\x54\x55\x41\x61','\x78\x43\x6b\x51\x6c\x43\x6b\x41\x73\x47','\x57\x51\x65\x48\x74\x49\x74\x63\x4a\x58\x42\x64\x54\x53\x6b\x78','\x57\x4f\x68\x64\x52\x68\x37\x64\x53\x38\x6f\x69\x57\x34\x33\x63\x49\x53\x6b\x63','\x69\x6d\x6b\x7a\x57\x37\x70\x63\x50\x6d\x6f\x36','\x57\x37\x68\x63\x4d\x38\x6b\x7a','\x57\x37\x71\x77\x57\x4f\x61\x37\x42\x6d\x6b\x76\x57\x37\x72\x46','\x74\x38\x6b\x4c\x63\x38\x6b\x69\x57\x50\x35\x71\x57\x51\x56\x64\x55\x61','\x57\x37\x5a\x63\x4d\x71\x76\x45\x44\x43\x6f\x45\x6a\x53\x6b\x52','\x71\x53\x6f\x6e\x57\x50\x6c\x64\x51\x6d\x6b\x30\x57\x37\x64\x63\x4d\x57','\x57\x4f\x70\x64\x50\x77\x4e\x64\x52\x38\x6f\x56','\x6a\x38\x6f\x4c\x43\x6d\x6f\x55\x67\x47','\x62\x43\x6b\x6b\x57\x34\x64\x63\x52\x6d\x6f\x4f\x57\x4f\x74\x64\x48\x74\x70\x64\x52\x32\x6a\x66\x57\x34\x4e\x63\x54\x57','\x67\x43\x6b\x76\x6b\x4c\x56\x64\x4f\x47','\x57\x36\x78\x64\x56\x53\x6f\x52\x6e\x61\x33\x64\x55\x31\x57','\x57\x34\x35\x6c\x57\x34\x44\x31\x57\x36\x43','\x73\x38\x6f\x6a\x57\x51\x74\x63\x4d\x43\x6b\x5a\x57\x37\x56\x64\x4f\x64\x43','\x66\x6d\x6f\x74\x65\x4a\x31\x67','\x7a\x49\x70\x63\x4c\x43\x6f\x52\x62\x73\x4f','\x57\x50\x56\x63\x49\x38\x6f\x54\x66\x49\x79','\x57\x51\x79\x36\x46\x63\x74\x63\x49\x61\x5a\x64\x48\x38\x6b\x77','\x45\x64\x70\x63\x4b\x38\x6b\x53\x74\x61','\x64\x6d\x6f\x4c\x57\x51\x44\x7a\x57\x35\x46\x64\x52\x32\x64\x64\x51\x61','\x44\x63\x46\x63\x47\x43\x6f\x49\x64\x47','\x71\x6d\x6b\x34\x57\x37\x46\x63\x4d\x43\x6b\x56\x57\x37\x46\x64\x51\x4a\x30','\x57\x4f\x78\x63\x56\x6d\x6f\x44\x57\x51\x75','\x74\x4e\x38\x70\x57\x35\x5a\x63\x4c\x38\x6f\x62\x66\x6d\x6f\x50','\x57\x36\x70\x63\x51\x59\x56\x64\x56\x66\x6d\x51\x57\x34\x46\x64\x4e\x71','\x57\x37\x56\x64\x55\x53\x6b\x70\x6d\x65\x69','\x57\x4f\x50\x32\x6f\x38\x6f\x69\x45\x61\x71\x68\x66\x61','\x6d\x4d\x56\x63\x53\x4e\x6d\x4b\x42\x74\x65\x51','\x57\x35\x68\x63\x56\x6d\x6b\x6c\x57\x4f\x74\x64\x4c\x66\x2f\x64\x47\x43\x6b\x4f','\x66\x6d\x6b\x62\x65\x4d\x52\x64\x4d\x47','\x63\x73\x74\x63\x54\x6d\x6b\x4a\x6c\x61','\x6e\x6d\x6b\x32\x57\x35\x56\x63\x4c\x53\x6b\x76\x57\x50\x52\x64\x4e\x33\x65','\x57\x50\x33\x64\x55\x53\x6b\x57\x63\x6d\x6f\x69\x57\x4f\x34\x56','\x66\x58\x46\x64\x4e\x61\x75\x4f','\x57\x51\x7a\x71\x57\x4f\x61\x6c\x44\x6d\x6f\x75\x57\x34\x54\x48','\x57\x34\x64\x63\x53\x33\x4e\x64\x52\x38\x6f\x63\x57\x34\x42\x63\x49\x43\x6b\x63','\x70\x74\x70\x63\x4a\x53\x6b\x38\x70\x71','\x75\x5a\x64\x63\x4d\x38\x6b\x78\x71\x68\x4f\x39\x57\x36\x4f','\x57\x52\x33\x63\x54\x53\x6f\x76\x57\x51\x38','\x6d\x43\x6b\x36\x63\x68\x33\x63\x47\x38\x6b\x4c\x69\x31\x38','\x57\x50\x79\x56\x42\x73\x70\x63\x49\x62\x70\x64\x56\x43\x6f\x73','\x7a\x5a\x54\x74\x44\x4a\x61','\x78\x43\x6b\x74\x57\x36\x64\x63\x4d\x43\x6b\x32\x57\x36\x4f','\x6a\x38\x6f\x46\x70\x43\x6b\x6e\x57\x52\x53','\x67\x62\x4c\x32\x57\x4f\x75','\x77\x43\x6b\x38\x66\x53\x6b\x56\x72\x30\x75','\x57\x50\x69\x41\x57\x34\x4a\x64\x4d\x43\x6b\x4b\x78\x6d\x6f\x6a\x7a\x71','\x6c\x53\x6b\x30\x57\x34\x33\x63\x4a\x47','\x57\x35\x6c\x63\x4f\x30\x78\x64\x4a\x53\x6b\x55','\x76\x64\x4a\x64\x56\x38\x6f\x4d\x62\x43\x6b\x65\x6c\x6d\x6b\x31','\x74\x6d\x6b\x77\x6a\x6d\x6b\x38\x57\x51\x75','\x74\x6d\x6b\x38\x63\x38\x6b\x78\x57\x50\x39\x72\x57\x50\x30','\x64\x53\x6b\x30\x57\x34\x33\x63\x4a\x53\x6f\x39\x57\x35\x68\x63\x4b\x47','\x64\x38\x6b\x34\x6f\x4c\x4e\x64\x53\x47','\x62\x48\x35\x7a\x57\x51\x79\x61\x57\x37\x71','\x63\x53\x6f\x2f\x57\x51\x50\x63\x57\x34\x33\x64\x54\x32\x74\x64\x55\x61','\x57\x50\x53\x2f\x57\x52\x72\x71\x57\x50\x48\x37\x57\x37\x71','\x69\x6d\x6f\x41\x79\x53\x6f\x72\x69\x47','\x73\x6d\x6b\x30\x64\x61','\x57\x35\x42\x64\x4e\x43\x6f\x38\x57\x51\x56\x64\x4a\x47','\x57\x34\x5a\x64\x56\x6d\x6b\x45\x62\x68\x33\x64\x50\x33\x54\x7a','\x57\x52\x6c\x63\x55\x43\x6f\x34\x67\x49\x61','\x61\x48\x48\x4a\x57\x35\x68\x64\x4e\x6d\x6b\x58\x77\x75\x65','\x62\x61\x6e\x5a\x57\x35\x68\x64\x4b\x6d\x6f\x34\x74\x31\x4b','\x57\x51\x6a\x62\x57\x37\x35\x2f\x57\x35\x75','\x78\x53\x6f\x77\x64\x4a\x6e\x69\x74\x43\x6f\x46\x57\x52\x79','\x68\x57\x42\x63\x48\x61','\x63\x38\x6b\x44\x6d\x4c\x33\x64\x48\x53\x6f\x33\x6f\x75\x6d','\x57\x51\x6e\x7a\x57\x50\x53\x31\x44\x43\x6b\x41\x57\x35\x54\x4a','\x62\x38\x6f\x4f\x45\x6d\x6b\x6d','\x44\x38\x6b\x69\x6b\x38\x6b\x41\x7a\x71','\x65\x68\x56\x64\x4d\x53\x6b\x65\x61\x38\x6f\x31\x57\x52\x46\x63\x51\x61','\x6b\x43\x6b\x57\x57\x50\x74\x64\x4a\x61','\x79\x71\x66\x35\x46\x49\x69','\x57\x35\x56\x64\x56\x6d\x6f\x6b\x57\x4f\x42\x64\x55\x31\x5a\x63\x4a\x43\x6b\x49','\x70\x43\x6f\x37\x57\x50\x76\x56\x57\x36\x61','\x57\x4f\x52\x63\x53\x53\x6f\x35\x6f\x30\x64\x64\x53\x4b\x65\x4d','\x6e\x5a\x4e\x64\x53\x4b\x4f\x31','\x57\x36\x37\x63\x4d\x38\x6b\x42\x67\x61\x38','\x46\x63\x4e\x63\x54\x33\x50\x4f\x73\x49\x43\x48','\x46\x43\x6b\x74\x57\x36\x78\x63\x47\x53\x6b\x32\x57\x36\x33\x63\x54\x68\x71','\x57\x50\x5a\x63\x50\x38\x6f\x71\x57\x51\x6a\x7a','\x57\x52\x52\x64\x4a\x53\x6f\x66\x57\x50\x64\x64\x51\x33\x75','\x57\x36\x74\x63\x4a\x47\x57','\x44\x73\x5a\x63\x50\x43\x6f\x50\x57\x34\x53','\x57\x52\x35\x45\x57\x37\x70\x64\x4f\x74\x30','\x72\x63\x37\x64\x51\x6d\x6f\x47\x69\x71','\x57\x34\x31\x36\x57\x35\x4c\x38\x57\x51\x42\x4f\x48\x42\x6c\x4c\x49\x7a\x33\x4e\x4c\x6a\x53','\x64\x43\x6f\x43\x66\x49\x39\x70\x57\x50\x58\x42','\x67\x71\x2f\x63\x49\x6d\x6b\x49\x6c\x61','\x64\x4a\x74\x64\x56\x57\x65\x37','\x6d\x72\x58\x35\x57\x52\x4b\x2f','\x57\x37\x64\x64\x48\x53\x6b\x65\x6d\x64\x4a\x63\x4f\x78\x44\x61','\x68\x47\x74\x63\x48\x43\x6b\x48','\x57\x35\x64\x64\x56\x38\x6b\x47\x64\x68\x74\x63\x50\x4d\x62\x44','\x57\x36\x4a\x63\x4b\x30\x33\x64\x47\x6d\x6b\x34\x57\x35\x4a\x64\x4c\x4c\x4f','\x77\x6d\x6f\x55\x6f\x76\x39\x69','\x57\x4f\x79\x77\x45\x48\x78\x63\x53\x57','\x43\x67\x42\x64\x55\x74\x79','\x6d\x68\x74\x63\x52\x43\x6f\x66\x57\x34\x37\x64\x4a\x38\x6f\x58\x57\x52\x61','\x57\x36\x2f\x64\x47\x77\x74\x64\x49\x6d\x6b\x34\x57\x36\x70\x63\x47\x4c\x61','\x65\x73\x2f\x64\x51\x53\x6f\x47\x6b\x43\x6b\x76\x6b\x53\x6b\x31','\x68\x64\x79\x30\x57\x36\x6c\x64\x53\x71','\x57\x37\x4a\x63\x4a\x66\x5a\x64\x4a\x53\x6b\x47','\x74\x4a\x68\x63\x4c\x38\x6b\x78\x66\x77\x34\x39\x57\x36\x53','\x57\x37\x4e\x63\x49\x62\x65\x6c','\x57\x50\x42\x63\x4d\x53\x6f\x6e\x57\x51\x48\x31','\x76\x76\x37\x63\x4e\x53\x6f\x4a\x57\x37\x4e\x64\x55\x6d\x6f\x79\x57\x36\x71','\x43\x49\x52\x63\x54\x6d\x6b\x51\x78\x71','\x70\x49\x5a\x64\x4e\x4b\x69\x44\x57\x50\x2f\x63\x53\x53\x6b\x6e','\x64\x76\x62\x4b\x57\x37\x4a\x64\x48\x71','\x57\x37\x6c\x64\x56\x43\x6b\x53\x65\x53\x6b\x6e\x57\x4f\x47\x59\x57\x52\x61','\x65\x74\x6c\x64\x56\x38\x6f\x5a\x41\x53\x6b\x67\x6a\x6d\x6b\x4a','\x63\x61\x4e\x63\x53\x6d\x6b\x47\x67\x57','\x57\x4f\x50\x30\x57\x36\x52\x64\x56\x73\x4f','\x57\x52\x37\x63\x47\x38\x6f\x65\x69\x63\x69','\x74\x38\x6b\x42\x73\x32\x4f','\x57\x52\x76\x62\x57\x35\x42\x64\x4d\x59\x57','\x72\x43\x6b\x54\x62\x38\x6b\x76\x57\x4f\x4c\x6d\x57\x50\x5a\x64\x50\x61','\x61\x53\x6f\x67\x6a\x38\x6b\x6a\x57\x52\x38\x4e\x57\x36\x69\x4f','\x57\x52\x31\x74\x57\x4f\x4f\x48\x44\x43\x6f\x62','\x6f\x4b\x44\x4c\x57\x34\x46\x64\x4c\x57','\x41\x59\x2f\x63\x56\x4e\x4f\x53\x74\x74\x6d\x37','\x71\x64\x42\x63\x56\x68\x6d\x48\x79\x74\x39\x59','\x78\x6d\x6b\x6d\x6e\x30\x4a\x64\x4c\x53\x6b\x5a\x6d\x58\x65','\x73\x43\x6f\x4f\x57\x37\x52\x63\x54\x64\x39\x55\x57\x37\x4e\x64\x52\x57','\x61\x43\x6f\x5a\x57\x36\x52\x63\x51\x47','\x6b\x38\x6b\x75\x6f\x4a\x64\x63\x4f\x63\x4a\x63\x53\x47','\x73\x76\x7a\x7a\x57\x35\x6c\x64\x4a\x38\x6f\x4e\x67\x71','\x6d\x58\x42\x64\x54\x59\x6d','\x74\x49\x5a\x63\x4b\x43\x6b\x77','\x6d\x38\x6b\x5a\x57\x34\x46\x64\x4a\x61','\x6e\x63\x68\x64\x4a\x68\x65\x46','\x69\x78\x39\x37\x76\x63\x57\x4e\x68\x61','\x41\x64\x74\x63\x55\x4d\x53\x54','\x79\x32\x42\x63\x47\x48\x4c\x39\x57\x34\x33\x63\x4f\x53\x6b\x2f\x45\x4e\x5a\x63\x49\x38\x6b\x65','\x57\x4f\x54\x36\x57\x50\x53\x4a\x45\x47','\x42\x64\x42\x63\x53\x4d\x47\x4d\x72\x5a\x71\x39','\x57\x34\x35\x79\x57\x34\x37\x64\x54\x6d\x6b\x2f','\x6a\x4b\x75\x6b\x57\x36\x2f\x63\x53\x71','\x41\x43\x6f\x33\x57\x50\x64\x64\x4c\x43\x6b\x78','\x62\x59\x52\x63\x54\x61\x4b\x4a','\x57\x36\x5a\x63\x4e\x5a\x46\x64\x47\x77\x30','\x57\x4f\x52\x64\x55\x78\x46\x64\x54\x6d\x6f\x44\x57\x34\x46\x63\x4e\x6d\x6b\x75','\x57\x34\x58\x63\x57\x37\x68\x64\x4b\x43\x6b\x46','\x57\x34\x37\x64\x48\x6d\x6b\x6d\x6d\x4e\x53','\x43\x5a\x42\x63\x4e\x43\x6f\x49\x66\x74\x4e\x63\x47\x76\x61','\x6d\x53\x6b\x37\x57\x37\x46\x63\x50\x53\x6f\x73','\x57\x51\x33\x64\x53\x38\x6f\x50\x70\x57\x4e\x64\x4f\x65\x57\x33','\x78\x63\x50\x45\x75\x59\x69','\x6c\x67\x46\x64\x47\x43\x6b\x2b\x72\x32\x47','\x61\x6d\x6f\x69\x6a\x53\x6b\x75\x57\x52\x43\x33\x57\x37\x72\x53','\x57\x52\x56\x63\x50\x65\x76\x31\x43\x61','\x44\x74\x78\x64\x53\x32\x57\x4e\x42\x49\x38\x52','\x34\x50\x73\x6f\x34\x50\x77\x72\x34\x50\x73\x6b\x34\x50\x73\x30\x34\x50\x77\x7a\x34\x50\x77\x6f\x34\x50\x77\x55\x34\x50\x45\x63','\x68\x38\x6f\x70\x70\x53\x6b\x43\x57\x52\x30\x57','\x46\x30\x2f\x64\x54\x53\x6b\x55\x42\x6d\x6b\x7a\x57\x52\x70\x63\x4b\x71','\x41\x71\x70\x63\x51\x5a\x6e\x6e\x57\x36\x31\x7a\x67\x61','\x68\x6d\x6b\x71\x57\x4f\x64\x64\x55\x53\x6b\x50\x57\x34\x78\x63\x4e\x64\x6d','\x79\x72\x43\x57\x57\x37\x5a\x64\x53\x78\x7a\x68\x41\x61','\x64\x6d\x6f\x4c\x57\x51\x6a\x65\x57\x35\x42\x64\x51\x61','\x41\x63\x37\x63\x53\x4d\x54\x4f\x45\x59\x4b\x36','\x62\x68\x46\x63\x51\x38\x6b\x57\x46\x38\x6f\x64\x43\x6d\x6b\x4c\x57\x50\x66\x47\x6a\x53\x6f\x58\x57\x37\x43','\x65\x4b\x72\x4b\x57\x51\x56\x64\x47\x38\x6f\x4d\x67\x71\x71','\x57\x37\x37\x63\x4d\x72\x72\x67\x42\x53\x6f\x45\x70\x6d\x6b\x30','\x67\x32\x69\x68\x57\x4f\x61','\x68\x53\x6f\x78\x57\x52\x39\x4c\x57\x36\x4b','\x72\x53\x6b\x34\x66\x53\x6b\x53\x75\x75\x6c\x63\x4e\x30\x4b','\x57\x52\x54\x69\x57\x37\x34','\x71\x43\x6b\x73\x57\x37\x46\x63\x4d\x53\x6b\x36\x57\x52\x70\x64\x56\x74\x38','\x57\x51\x62\x78\x68\x43\x6f\x67\x74\x61','\x70\x4a\x35\x36\x57\x4f\x47\x65','\x57\x36\x46\x63\x4d\x66\x37\x64\x4d\x38\x6b\x73','\x57\x37\x5a\x63\x4e\x71\x76\x61\x45\x43\x6f\x52\x70\x6d\x6b\x57','\x43\x62\x68\x63\x51\x38\x6b\x6a\x45\x71','\x6d\x59\x4b\x6f\x57\x37\x46\x64\x54\x38\x6b\x2f','\x57\x36\x74\x63\x52\x74\x46\x63\x52\x2b\x6b\x61\x53\x33\x4a\x64\x4a\x43\x6f\x46','\x57\x34\x46\x64\x4c\x6d\x6b\x35\x70\x43\x6f\x4d','\x57\x52\x50\x79\x57\x50\x75\x39\x44\x38\x6f\x45\x57\x36\x50\x5a','\x75\x57\x46\x63\x52\x43\x6b\x54\x45\x47','\x67\x65\x71\x35\x57\x35\x74\x63\x4c\x71','\x6b\x6d\x6b\x2b\x57\x35\x4a\x63\x53\x38\x6f\x6d','\x72\x43\x6b\x44\x57\x35\x4e\x63\x54\x47','\x62\x59\x70\x63\x48\x38\x6b\x64\x66\x47','\x66\x48\x6e\x45\x57\x51\x38\x78\x57\x37\x75','\x69\x6d\x6f\x46\x6f\x38\x6b\x77\x57\x52\x47','\x57\x4f\x4e\x64\x55\x77\x4a\x63\x56\x43\x6f\x73\x57\x34\x33\x63\x4d\x38\x6f\x68','\x6c\x4a\x52\x64\x4b\x65\x38\x49\x57\x4f\x4e\x63\x51\x61','\x62\x47\x72\x38\x57\x35\x65','\x74\x53\x6f\x76\x75\x53\x6f\x51\x70\x57\x35\x76\x61\x61','\x43\x62\x64\x64\x54\x73\x6d\x61\x57\x52\x65\x45\x64\x61','\x6b\x6d\x6f\x30\x57\x51\x72\x34\x57\x34\x42\x64\x56\x75\x78\x64\x4f\x47','\x70\x63\x78\x63\x4a\x43\x6b\x59\x62\x47','\x46\x43\x6b\x74\x57\x36\x78\x63\x47\x53\x6b\x32\x57\x36\x33\x64\x49\x74\x75','\x57\x4f\x64\x64\x51\x4e\x52\x64\x53\x43\x6f\x63\x57\x34\x79','\x57\x35\x72\x2f\x57\x34\x58\x51\x57\x36\x6d','\x76\x73\x4e\x63\x49\x43\x6b\x30\x78\x61','\x57\x34\x37\x63\x4e\x71\x72\x42\x6e\x6d\x6f\x6b\x70\x6d\x6b\x32','\x65\x62\x64\x64\x54\x63\x4b\x6c','\x7a\x6d\x6b\x55\x70\x43\x6b\x4d\x72\x57','\x64\x38\x6f\x4f\x45\x43\x6f\x48\x61\x47','\x67\x59\x39\x4c\x57\x51\x79\x30','\x57\x36\x37\x63\x54\x49\x52\x64\x51\x47','\x57\x51\x65\x42\x57\x50\x61\x57','\x57\x34\x68\x64\x4f\x43\x6f\x59\x57\x4f\x5a\x64\x52\x57','\x57\x51\x62\x75\x57\x50\x75\x74\x79\x57','\x57\x34\x50\x64\x57\x35\x33\x63\x48\x61','\x57\x50\x35\x74\x57\x35\x4a\x63\x50\x71','\x57\x36\x31\x73\x57\x35\x52\x64\x4d\x61','\x57\x50\x37\x63\x54\x43\x6f\x74\x57\x52\x6e\x58','\x57\x50\x39\x53\x35\x4f\x41\x30\x35\x7a\x4d\x63\x57\x4f\x30\x69\x57\x50\x5a\x4b\x55\x6b\x79','\x57\x37\x53\x67\x57\x34\x58\x47\x6b\x6d\x6b\x6e\x57\x4f\x57\x5a\x57\x34\x33\x63\x54\x38\x6b\x4b\x57\x35\x6e\x37\x79\x71','\x57\x50\x53\x2b\x57\x52\x6e\x41\x57\x50\x6d','\x74\x38\x6b\x6c\x57\x51\x56\x63\x4c\x6d\x6b\x51\x57\x37\x64\x63\x4f\x74\x53','\x76\x74\x43\x6d\x57\x37\x4e\x64\x4d\x61'];_0x2999=function(){return _0x3d224a;};return _0x2999();}function _0x19ccfd(_0x4e1c5c,_0xb5a9a4){const _0xf865e8=_0xf7d584,_0x1b343b={'\x78\x62\x51\x64\x4e':function(_0x5d09c3,_0x37bf3c){return _0x5d09c3+_0x37bf3c;},'\x4f\x52\x5a\x69\x51':_0xf865e8(0x21d,'\x33\x65\x65\x5d')+_0xf865e8(0x1f6,'\x43\x71\x4f\x50')+_0xf865e8(0xc5,'\x70\x32\x73\x47')+_0xf865e8(0x1fc,'\x24\x67\x53\x39')+'\x65\x73\x20\x45\x56\x4f\x4c\x56'+'\x45\x5f\x4f\x50\x45\x4e\x43\x4f'+_0xf865e8(0x544,'\x62\x32\x31\x5a')+_0xf865e8(0x280,'\x6b\x40\x41\x7a')+_0xf865e8(0x3b5,'\x70\x52\x38\x39')+_0xf865e8(0x533,'\x57\x39\x62\x51')+_0xf865e8(0x3fb,'\x4b\x61\x5d\x48'),'\x58\x4a\x77\x56\x64':_0xf865e8(0x520,'\x4e\x5b\x25\x31')+_0xf865e8(0x17f,'\x48\x5d\x5d\x79')+_0xf865e8(0x144,'\x6f\x48\x41\x45')+'\x73\x63\x6f\x70\x69\x6e\x67\x20'+_0xf865e8(0x2f0,'\x70\x32\x73\x47')+'\x65\x20\x62\x6c\x75\x6e\x74\x20'+_0xf865e8(0x2cb,'\x36\x6e\x6d\x37')+_0xf865e8(0x3e6,'\x4a\x6f\x48\x4d')+_0xf865e8(0x263,'\x71\x76\x77\x72')+_0xf865e8(0x161,'\x51\x26\x49\x45')+_0xf865e8(0x1a9,'\x6a\x52\x43\x45'),'\x75\x54\x66\x4e\x4d':'\x74\x68\x61\x74\x20\x74\x68\x65'+_0xf865e8(0x4ea,'\x4b\x54\x4c\x58')+_0xf865e8(0x40c,'\x4b\x61\x5d\x48')+'\x61\x6e\x20\x72\x75\x6e\x20\x75'+_0xf865e8(0x510,'\x6f\x48\x41\x45')+'\x74\x65\x64\x20\x73\x68\x65\x6c'+_0xf865e8(0x231,'\x70\x52\x38\x39')+_0xf865e8(0x529,'\x70\x52\x38\x39')+_0xf865e8(0x13b,'\x36\x6e\x6d\x37')+_0xf865e8(0x237,'\x63\x56\x41\x66'),'\x47\x74\x64\x6a\x4b':function(_0x4bd31a,_0x4315c2){return _0x4bd31a(_0x4315c2);},'\x72\x51\x5a\x52\x71':'\x53\x49\x47\x54\x45\x52\x4d','\x44\x68\x53\x6a\x70':function(_0x304af5,_0x31b33a){return _0x304af5!==_0x31b33a;},'\x57\x51\x4e\x48\x6a':_0xf865e8(0x217,'\x52\x43\x65\x48'),'\x55\x5a\x7a\x70\x59':_0xf865e8(0x4f8,'\x36\x6e\x6d\x37'),'\x49\x55\x54\x58\x62':function(_0x118146,_0x200ff9,_0x257bfd,_0x38380b){return _0x118146(_0x200ff9,_0x257bfd,_0x38380b);},'\x73\x43\x7a\x71\x74':_0xf865e8(0x344,'\x73\x35\x40\x78'),'\x51\x62\x6e\x63\x6e':'\x75\x74\x66\x38','\x66\x4b\x46\x47\x4f':'\x69\x67\x6e\x6f\x72\x65','\x64\x68\x7a\x6a\x6f':_0xf865e8(0xd7,'\x79\x76\x62\x5d'),'\x73\x70\x6f\x4e\x69':function(_0x1c5942,_0x1f6faa){return _0x1c5942!==_0x1f6faa;},'\x50\x46\x43\x48\x66':_0xf865e8(0x4ec,'\x52\x43\x65\x48'),'\x75\x6b\x47\x6d\x6b':function(_0x42e068,_0x497631){return _0x42e068!==_0x497631;},'\x48\x75\x78\x63\x46':_0xf865e8(0x1af,'\x63\x56\x41\x66'),'\x48\x67\x43\x45\x6b':function(_0x42728c,_0x30fec7){return _0x42728c+_0x30fec7;},'\x65\x49\x57\x43\x73':_0xf865e8(0x264,'\x24\x67\x53\x39'),'\x44\x76\x44\x7a\x4d':_0xf865e8(0x4b4,'\x31\x40\x65\x5b')};if(_0x1b343b[_0xf865e8(0x3fd,'\x41\x4a\x41\x76')](process[_0xf865e8(0x1f7,'\x4a\x6f\x48\x4d')],_0x1b343b[_0xf865e8(0x1bc,'\x46\x6b\x26\x5e')]))return null;if(!_0x4e1c5c||!/\.cmd$/i[_0xf865e8(0x13e,'\x33\x65\x65\x5d')](_0x4e1c5c))return null;let _0xe4d7f=_0x4e1c5c;if(!_0x269de0[_0xf865e8(0x2f4,'\x73\x35\x40\x78')+'\x74\x65'](_0x4e1c5c)){try{if(_0xf865e8(0x3dd,'\x6d\x56\x65\x57')===_0x1b343b[_0xf865e8(0x31e,'\x30\x23\x48\x64')])throw new _0x43239a(_0x1b343b[_0xf865e8(0x419,'\x32\x34\x54\x6d')](_0x1b343b[_0xf865e8(0x47f,'\x25\x51\x28\x64')](_0x1b343b[_0xf865e8(0x3fc,'\x36\x6e\x6d\x37')]+_0x1b343b['\x58\x4a\x77\x56\x64'],_0xf865e8(0x44f,'\x52\x43\x65\x48')+_0xf865e8(0x34b,'\x36\x6e\x6d\x37')+_0xf865e8(0x136,'\x29\x59\x47\x50')+_0xf865e8(0x4fc,'\x4a\x6f\x48\x4d')+_0xf865e8(0x3eb,'\x6d\x56\x65\x57')+_0xf865e8(0x424,'\x6d\x56\x65\x57')+_0xf865e8(0x201,'\x5a\x46\x45\x52')+_0xf865e8(0x127,'\x6d\x56\x65\x57')+_0xf865e8(0x4c5,'\x35\x6f\x34\x28')+_0xf865e8(0x376,'\x70\x32\x73\x47')+'\x6f\x20\x61\x63\x63\x65\x70\x74'+'\x20'),_0x1b343b[_0xf865e8(0x543,'\x70\x32\x73\x47')]));else{const _0x71706=_0x1b343b[_0xf865e8(0x159,'\x6b\x40\x41\x7a')](_0x4a4b50,_0x1b343b['\x73\x43\x7a\x71\x74'],[_0x4e1c5c],{'\x65\x6e\x63\x6f\x64\x69\x6e\x67':_0x1b343b[_0xf865e8(0x2a7,'\x6d\x24\x62\x47')],'\x73\x74\x64\x69\x6f':[_0x1b343b[_0xf865e8(0x132,'\x31\x40\x65\x5b')],_0x1b343b[_0xf865e8(0xad,'\x29\x6b\x52\x6e')],_0x1b343b[_0xf865e8(0x3da,'\x7a\x56\x5b\x28')]],'\x77\x69\x6e\x64\x6f\x77\x73\x48\x69\x64\x65':!![]})[_0xf865e8(0x354,'\x32\x34\x54\x6d')]();_0xe4d7f=_0x71706['\x73\x70\x6c\x69\x74'](/\r?\n/)[0x1610+0x942*0x4+-0x1*0x3b18][_0xf865e8(0x515,'\x55\x64\x62\x35')]();}}catch(_0x1f96b8){return null;}if(!_0xe4d7f)return null;}let _0x578bb;try{_0x1b343b[_0xf865e8(0x291,'\x67\x6e\x43\x63')](_0x1b343b[_0xf865e8(0x314,'\x38\x58\x35\x5a')],'\x71\x50\x6d\x44\x43')?_0x457c9d[_0xf865e8(0x429,'\x49\x32\x78\x6f')](_0xf865e8(0xa0,'\x24\x67\x53\x39')):_0x578bb=_0x48aa54[_0xf865e8(0x2c5,'\x57\x6f\x38\x29')+_0xf865e8(0x4ee,'\x41\x4a\x41\x76')](_0xe4d7f,_0x1b343b[_0xf865e8(0x2d2,'\x59\x54\x4a\x6c')]);}catch(_0x5cbb68){if(_0x1b343b[_0xf865e8(0x34d,'\x41\x4a\x41\x76')](_0x1b343b[_0xf865e8(0x23d,'\x25\x51\x28\x64')],_0xf865e8(0x2ba,'\x31\x40\x65\x5b')))return null;else _0x2231f8=_0x3e862f[_0xf865e8(0x289,'\x55\x64\x62\x35')],_0x1b343b[_0xf865e8(0x10b,'\x6f\x48\x41\x45')](_0x30a277,null);}const _0x4ffde4=_0x578bb[_0xf865e8(0x53c,'\x59\x54\x4a\x6c')](/"%dp0%[\\/](.+?)"\s*%\*/);if(!_0x4ffde4)return null;const _0x4b41b4=_0x269de0[_0xf865e8(0x11b,'\x25\x51\x28\x64')](_0x269de0[_0xf865e8(0x371,'\x38\x58\x35\x5a')](_0xe4d7f),_0x4ffde4[-0x223b+-0x252d+0x1*0x4769]);if(!_0x48aa54[_0xf865e8(0x218,'\x5a\x46\x45\x52')+'\x6e\x63'](_0x4b41b4)&&!_0x48aa54[_0xf865e8(0x4b9,'\x4e\x5b\x25\x31')+'\x6e\x63'](_0x1b343b[_0xf865e8(0x539,'\x38\x58\x35\x5a')](_0x4b41b4,_0xf865e8(0x24c,'\x25\x51\x28\x64')))&&!_0x48aa54[_0xf865e8(0x275,'\x6a\x68\x4b\x54')+'\x6e\x63'](_0x1b343b[_0xf865e8(0x396,'\x36\x6e\x6d\x37')](_0x4b41b4,_0xf865e8(0x1d8,'\x6d\x24\x62\x47')))){if(_0x1b343b[_0xf865e8(0x2ca,'\x72\x30\x67\x76')](_0x1b343b[_0xf865e8(0x310,'\x36\x6e\x6d\x37')],_0x1b343b[_0xf865e8(0x403,'\x6e\x25\x6a\x53')]))return null;else _0x190aff[_0xf865e8(0x19d,'\x6f\x48\x41\x45')](-_0x3a8bdc,_0x1b343b[_0xf865e8(0x1c4,'\x43\x71\x4f\x50')]);}const _0x18e229={};return _0x18e229[_0xf865e8(0x3e2,'\x7a\x56\x5b\x28')]=process[_0xf865e8(0x415,'\x67\x6e\x43\x63')],_0x18e229[_0xf865e8(0x1d5,'\x47\x47\x32\x21')]=[_0x4b41b4,..._0xb5a9a4||[]],_0x18e229;}function _0x3b370a(_0x665605){const _0x4364ba=_0xf7d584,_0x21ca8d={'\x50\x65\x42\x51\x6d':_0x4364ba(0x35c,'\x25\x51\x28\x64'),'\x47\x76\x73\x4c\x77':function(_0x45aa79,_0xfd256){return _0x45aa79===_0xfd256;},'\x42\x6a\x53\x44\x43':_0x4364ba(0x2b7,'\x75\x74\x38\x6c'),'\x49\x49\x4f\x62\x50':_0x4364ba(0x3db,'\x7a\x56\x5b\x28'),'\x4f\x68\x47\x4a\x51':_0x4364ba(0xe8,'\x69\x51\x48\x5d'),'\x59\x68\x4f\x64\x50':function(_0x402915,_0x59e7b9,_0x1bf89e){return _0x402915(_0x59e7b9,_0x1bf89e);},'\x46\x72\x48\x44\x4f':function(_0x4cdbad,_0x45047e){return _0x4cdbad+_0x45047e;},'\x41\x6d\x4e\x4d\x67':_0x4364ba(0x457,'\x25\x51\x28\x64'),'\x4f\x77\x76\x50\x61':_0x4364ba(0x10d,'\x47\x47\x32\x21'),'\x45\x53\x70\x63\x53':function(_0x2eefc3,_0x2eeb2c){return _0x2eefc3(_0x2eeb2c);},'\x62\x68\x4c\x49\x49':function(_0x2a31d1,_0x11438c){return _0x2a31d1!==_0x11438c;},'\x61\x4d\x46\x6f\x69':_0x4364ba(0x25a,'\x6e\x25\x6a\x53')},_0x5102c8=_0x276446[_0x665605];if(!_0x5102c8)throw new Error(_0x4364ba(0x197,'\x6d\x56\x65\x57')+_0x4364ba(0x219,'\x6e\x25\x6a\x53')+'\x69\x6e\x20\x73\x70\x65\x63\x20'+_0x4364ba(0x306,'\x67\x6e\x43\x63')+_0x4364ba(0x38a,'\x6a\x52\x43\x45')+_0x665605+'\x27');if(process.env[_0x5102c8.env])return process.env[_0x5102c8.env];if(_0x83dbf5[_0x665605])return _0x83dbf5[_0x665605];try{const _0x3368b4={};return _0x3368b4[_0x4364ba(0x323,'\x4b\x54\x4c\x58')]=_0x21ca8d[_0x4364ba(0x52e,'\x46\x6b\x26\x5e')],_0x11e2c2(_0x4364ba(0xcc,'\x29\x6b\x52\x6e')+_0x5102c8['\x63\x6d\x64'],_0x3368b4),_0x83dbf5[_0x665605]=_0x5102c8['\x63\x6d\x64'],_0x5102c8['\x63\x6d\x64'];}catch(_0x1f54f1){}for(const _0x584a55 of _0x5102c8[_0x4364ba(0x15f,'\x4d\x39\x33\x56')+'\x65\x73']){if(_0x21ca8d[_0x4364ba(0x41d,'\x41\x4a\x41\x76')]===_0x21ca8d[_0x4364ba(0x37d,'\x62\x32\x31\x5a')]){const _0x336e09=_0x21ca8d[_0x4364ba(0x2c3,'\x55\x64\x62\x35')](_0x5896ba,_0x584a55);if(_0x21ca8d[_0x4364ba(0x25d,'\x29\x59\x47\x50')](_0x336e09,_0x5102c8[_0x4364ba(0xbf,'\x35\x6f\x34\x28')])){if(_0x21ca8d[_0x4364ba(0x408,'\x43\x71\x4f\x50')](_0x21ca8d[_0x4364ba(0x514,'\x4b\x54\x4c\x58')],_0x21ca8d[_0x4364ba(0x148,'\x31\x40\x65\x5b')]))try{if(_0x48aa54[_0x4364ba(0x48c,'\x6d\x56\x65\x57')+'\x6e\x63'](_0x336e09))return _0x83dbf5[_0x665605]=_0x336e09,_0x336e09;}catch(_0x3c35d3){}else{const _0x37ffaf=_0xab1d68[_0x4364ba(0x46b,'\x5a\x46\x45\x52')](_0x45688d[_0x4364ba(0x2f2,'\x49\x32\x78\x6f')+_0x4364ba(0x1c6,'\x72\x30\x67\x76')](_0x572b36,_0x21ca8d[_0x4364ba(0x4b1,'\x25\x51\x28\x64')]));if(_0x37ffaf&&_0x21ca8d[_0x4364ba(0x421,'\x31\x40\x65\x5b')](_0x37ffaf[_0x4364ba(0x98,'\x43\x71\x4f\x50')],_0x21ca8d[_0x4364ba(0x3f3,'\x55\x64\x62\x35')]))return _0x21ca8d[_0x4364ba(0x252,'\x72\x30\x67\x76')];if(_0x37ffaf&&_0x21ca8d[_0x4364ba(0x224,'\x73\x35\x40\x78')](_0x37ffaf[_0x4364ba(0x2b6,'\x57\x39\x62\x51')],_0x21ca8d[_0x4364ba(0x166,'\x52\x43\x65\x48')]))return _0x21ca8d[_0x4364ba(0x452,'\x57\x6f\x38\x29')];return _0x21ca8d[_0x4364ba(0x3c9,'\x49\x32\x78\x6f')];}}}else{_0xd07efb=_0x21ca8d[_0x4364ba(0x212,'\x70\x32\x73\x47')](_0x182d23,_0x28ee4b,_0x58844a[_0x4364ba(0x14d,'\x7a\x56\x5b\x28')]());if(_0x3ea725)_0xbea1cf['\x73\x74\x64\x65\x72\x72'][_0x4364ba(0x23a,'\x6d\x56\x65\x57')](_0x21ca8d[_0x4364ba(0x2a0,'\x25\x51\x28\x64')](_0x3ba6d1,_0x520979));}}return _0x5102c8[_0x4364ba(0x269,'\x55\x21\x6e\x62')];}function _0xf2f1eb(){const _0x3b97e3=_0xf7d584,_0x42be56={'\x65\x6d\x66\x72\x55':function(_0x7b3719){return _0x7b3719();},'\x61\x41\x6e\x44\x61':_0x3b97e3(0x2b3,'\x6e\x25\x6a\x53')+_0x3b97e3(0x2d3,'\x71\x76\x77\x72')+_0x3b97e3(0x53d,'\x38\x58\x35\x5a')+'\x6e','\x46\x57\x77\x71\x64':_0x3b97e3(0x518,'\x25\x51\x28\x64'),'\x43\x76\x6d\x78\x50':_0x3b97e3(0x389,'\x59\x54\x4a\x6c'),'\x69\x4d\x45\x77\x4d':_0x3b97e3(0x1c9,'\x48\x5d\x5d\x79'),'\x52\x41\x6a\x7a\x71':_0x3b97e3(0x4c8,'\x79\x76\x62\x5d')+_0x3b97e3(0xa6,'\x70\x52\x38\x39')+_0x3b97e3(0x502,'\x75\x74\x38\x6c')+_0x3b97e3(0x42b,'\x4d\x39\x33\x56'),'\x4c\x52\x56\x46\x6b':_0x3b97e3(0x30f,'\x57\x39\x62\x51')+_0x3b97e3(0x395,'\x38\x58\x35\x5a')+'\x29','\x64\x4e\x7a\x6c\x73':_0x3b97e3(0x160,'\x51\x26\x49\x45')+'\x20\x64\x69\x66\x66\x2a\x29','\x6d\x51\x49\x7a\x50':_0x3b97e3(0x4d6,'\x75\x74\x38\x6c')+_0x3b97e3(0x113,'\x79\x76\x62\x5d'),'\x48\x65\x48\x62\x4a':_0x3b97e3(0xe4,'\x48\x5d\x5d\x79')+'\x20\x72\x65\x76\x2d\x70\x61\x72'+_0x3b97e3(0x3f0,'\x4d\x39\x33\x56'),'\x4c\x42\x53\x62\x72':_0x3b97e3(0xe4,'\x48\x5d\x5d\x79')+_0x3b97e3(0xbb,'\x46\x6b\x26\x5e'),'\x47\x64\x4b\x42\x69':_0x3b97e3(0x128,'\x47\x47\x32\x21')+_0x3b97e3(0x39c,'\x5a\x46\x45\x52'),'\x5a\x6b\x6c\x59\x67':'\x42\x61\x73\x68\x28\x63\x75\x72'+_0x3b97e3(0x31f,'\x62\x32\x31\x5a'),'\x71\x52\x48\x46\x47':_0x3b97e3(0x299,'\x70\x52\x38\x39')+_0x3b97e3(0x45e,'\x29\x6b\x52\x6e'),'\x49\x6b\x71\x4b\x69':_0x3b97e3(0x1ff,'\x29\x59\x47\x50')+_0x3b97e3(0x40a,'\x71\x76\x77\x72'),'\x79\x49\x79\x63\x42':_0x3b97e3(0x1d7,'\x57\x6f\x38\x29'),'\x6d\x59\x4b\x4a\x5a':_0x3b97e3(0x467,'\x55\x64\x62\x35')+'\x68','\x75\x64\x56\x75\x4a':_0x3b97e3(0x238,'\x52\x43\x65\x48'),'\x4c\x44\x50\x78\x41':function(_0x1ca312,_0x5126d7){return _0x1ca312===_0x5126d7;},'\x47\x71\x61\x5a\x75':_0x3b97e3(0x278,'\x47\x47\x32\x21'),'\x61\x4c\x69\x4b\x6e':_0x3b97e3(0x3a9,'\x4d\x39\x33\x56')},_0x159ae1=_0x42be56[_0x3b97e3(0x37e,'\x6a\x52\x43\x45')](_0x5f55e7);try{const _0x52d3fb={};_0x52d3fb[_0x3b97e3(0x303,'\x6a\x52\x43\x45')+'\x65']=!![];if(!_0x48aa54['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x159ae1))_0x48aa54['\x6d\x6b\x64\x69\x72\x53\x79\x6e'+'\x63'](_0x159ae1,_0x52d3fb);}catch(_0x22c51a){}const _0x595858=_0x269de0[_0x3b97e3(0x363,'\x70\x32\x73\x47')](_0x159ae1,_0x42be56[_0x3b97e3(0x155,'\x41\x4a\x41\x76')]),_0x1cbfb4={};_0x1cbfb4[_0x3b97e3(0x97,'\x33\x65\x65\x5d')]=[_0x42be56[_0x3b97e3(0x4cd,'\x6a\x52\x43\x45')],_0x3b97e3(0x1a2,'\x69\x51\x48\x5d'),_0x3b97e3(0x3ce,'\x6b\x40\x41\x7a'),_0x42be56[_0x3b97e3(0x35f,'\x33\x65\x65\x5d')],_0x42be56[_0x3b97e3(0x26a,'\x59\x54\x4a\x6c')],_0x42be56['\x52\x41\x6a\x7a\x71'],_0x42be56[_0x3b97e3(0x4c7,'\x63\x56\x41\x66')],_0x42be56[_0x3b97e3(0x274,'\x5a\x46\x45\x52')],_0x42be56[_0x3b97e3(0x35d,'\x55\x21\x6e\x62')],_0x42be56['\x48\x65\x48\x62\x4a'],'\x42\x61\x73\x68\x28\x67\x69\x74'+_0x3b97e3(0x27f,'\x67\x6e\x43\x63')+_0x3b97e3(0x522,'\x35\x6f\x34\x28')],_0x1cbfb4[_0x3b97e3(0x4ab,'\x29\x6b\x52\x6e')]=[_0x42be56['\x4c\x42\x53\x62\x72'],_0x42be56[_0x3b97e3(0x368,'\x33\x65\x65\x5d')],_0x42be56[_0x3b97e3(0x32c,'\x49\x32\x78\x6f')],_0x42be56[_0x3b97e3(0x2b4,'\x71\x76\x77\x72')],_0x42be56[_0x3b97e3(0x3b0,'\x55\x21\x6e\x62')],_0x42be56[_0x3b97e3(0x412,'\x6b\x40\x41\x7a')],_0x42be56['\x6d\x59\x4b\x4a\x5a']];const _0x5312ed={};_0x5312ed[_0x3b97e3(0xe2,'\x32\x34\x54\x6d')+_0x3b97e3(0x149,'\x4e\x5b\x25\x31')]=_0x1cbfb4;const _0x2768bd=_0x5312ed;_0x48aa54[_0x3b97e3(0x1f5,'\x35\x6f\x34\x28')+_0x3b97e3(0x178,'\x31\x40\x65\x5b')](_0x595858,JSON[_0x3b97e3(0x13a,'\x59\x54\x4a\x6c')+'\x79'](_0x2768bd,null,-0xcea+-0x1205+-0x1ef1*-0x1)+'\x0a',_0x42be56['\x75\x64\x56\x75\x4a']);try{JSON[_0x3b97e3(0x4b5,'\x35\x6f\x34\x28')](_0x48aa54[_0x3b97e3(0x187,'\x36\x6e\x6d\x37')+_0x3b97e3(0xa7,'\x29\x6b\x52\x6e')](_0x595858,_0x42be56['\x75\x64\x56\x75\x4a']));}catch(_0x39f981){if(_0x42be56[_0x3b97e3(0x2a9,'\x62\x32\x31\x5a')](_0x42be56[_0x3b97e3(0x101,'\x52\x43\x65\x48')],_0x42be56[_0x3b97e3(0x54f,'\x70\x52\x38\x39')]))try{if(_0x4e4cce[_0x3b97e3(0x4a4,'\x29\x6b\x52\x6e')+'\x6e\x63'](_0x591232))return _0x8ecd0e[_0x301c7a]=_0x18681c,_0x5ac89d;}catch(_0x3b8bdb){}else throw new Error(_0x3b97e3(0x3d9,'\x6a\x52\x43\x45')+_0x3b97e3(0x172,'\x70\x52\x38\x39')+_0x3b97e3(0xef,'\x41\x4a\x41\x76')+_0x3b97e3(0x164,'\x75\x74\x38\x6c')+_0x3b97e3(0x23b,'\x71\x76\x77\x72')+_0x3b97e3(0x1fb,'\x49\x32\x78\x6f')+_0x595858+'\x3a\x20'+_0x39f981[_0x3b97e3(0x312,'\x6e\x25\x6a\x53')]);}return _0x595858;}function _0x2a3bfc(_0x419e88,_0x1070d6,_0x2d5aef){const _0xefed79=_0xf7d584,_0x454972={'\x47\x77\x73\x63\x72':function(_0x18121b,_0x2fcc14){return _0x18121b+_0x2fcc14;},'\x4b\x70\x6e\x6b\x55':function(_0x1feb06,_0x1ddde0){return _0x1feb06+_0x1ddde0;},'\x73\x78\x61\x54\x4b':function(_0x3f15c6,_0x215be9){return _0x3f15c6+_0x215be9;},'\x77\x78\x70\x4f\x6b':function(_0x1d7117,_0x5217bd){return _0x1d7117+_0x5217bd;},'\x77\x57\x6c\x63\x58':function(_0x3e9bc0,_0x191b9a){return _0x3e9bc0(_0x191b9a);},'\x74\x62\x75\x46\x50':function(_0x2f2d7b,_0x1f5a5b){return _0x2f2d7b||_0x1f5a5b;},'\x6b\x6a\x79\x43\x43':_0xefed79(0x49e,'\x25\x51\x28\x64')+_0xefed79(0x17c,'\x75\x74\x38\x6c')+_0xefed79(0x34c,'\x46\x6b\x26\x5e')+'\x0a','\x64\x62\x74\x72\x5a':_0xefed79(0x240,'\x63\x56\x41\x66')+_0xefed79(0x216,'\x41\x4a\x41\x76')+_0xefed79(0x4e8,'\x35\x6f\x34\x28')+_0xefed79(0x404,'\x70\x32\x73\x47')+_0xefed79(0x1dc,'\x7a\x56\x5b\x28')+_0xefed79(0x381,'\x4e\x5b\x25\x31')+_0xefed79(0x458,'\x48\x5d\x5d\x79')+'\x6e\x6e\x6f\x74\x20\x62\x65\x20'+'\x73\x6b\x69\x70\x70\x65\x64\x29'+'\x0a','\x63\x72\x74\x51\x64':_0xefed79(0x442,'\x79\x76\x62\x5d')+_0xefed79(0x17c,'\x75\x74\x38\x6c')+'\u2501\u2501\u2501\u2501\u2501\u2501\x0a\x0a','\x48\x6f\x6f\x66\x72':_0xefed79(0x265,'\x52\x43\x65\x48')+'\x70\x6c\x79\x69\x6e\x67\x20\x79'+_0xefed79(0x44b,'\x31\x40\x65\x5b')+_0xefed79(0x462,'\x6a\x68\x4b\x54')+_0xefed79(0x3cf,'\x6d\x56\x65\x57')+'\x3a\x0a','\x6e\x6f\x4f\x58\x4d':_0xefed79(0x209,'\x59\x54\x4a\x6c')+_0xefed79(0x3bf,'\x4b\x54\x4c\x58')+_0xefed79(0x51e,'\x79\x76\x62\x5d')+_0xefed79(0x330,'\x70\x52\x38\x39'),'\x6a\x75\x45\x45\x61':_0xefed79(0x364,'\x70\x32\x73\x47')+_0xefed79(0x1db,'\x4a\x6f\x48\x4d')+_0xefed79(0x489,'\x7a\x56\x5b\x28')+_0xefed79(0x554,'\x6e\x25\x6a\x53')+_0xefed79(0x36d,'\x62\x32\x31\x5a')+_0xefed79(0x393,'\x5e\x66\x77\x46')+_0xefed79(0x506,'\x4b\x54\x4c\x58')+_0xefed79(0x3a3,'\x5e\x66\x77\x46')+_0xefed79(0x277,'\x73\x35\x40\x78')+_0xefed79(0x191,'\x48\x5d\x5d\x79')+_0xefed79(0x301,'\x4b\x61\x5d\x48'),'\x58\x68\x61\x53\x44':_0xefed79(0x34f,'\x4b\x61\x5d\x48')+_0xefed79(0x14e,'\x46\x6b\x26\x5e')+_0xefed79(0x1a5,'\x67\x6e\x43\x63'),'\x6e\x51\x72\x4b\x7a':_0xefed79(0x2ed,'\x51\x26\x49\x45')+_0xefed79(0x28c,'\x4b\x54\x4c\x58')+_0xefed79(0x4c1,'\x29\x6b\x52\x6e')+'\x61\x69\x6c\x75\x72\x65\x22\x2c'+_0xefed79(0x229,'\x6d\x24\x62\x47')+_0xefed79(0x227,'\x59\x54\x4a\x6c')+'\x4e\x54\x45\x4e\x54\x5d\x20\x3c'+_0xefed79(0x449,'\x71\x76\x77\x72')+_0xefed79(0x3ef,'\x4e\x5b\x25\x31')+'\x67\x6c\x69\x73\x68\x2c\x20\x31'+_0xefed79(0x169,'\x57\x6f\x38\x29')+_0xefed79(0x3c7,'\x4d\x39\x33\x56')+_0xefed79(0x4f3,'\x55\x64\x62\x35')+_0xefed79(0x47a,'\x5e\x66\x77\x46')+'\u6587\uff0c\x31\x2d\x32\u53e5\x3e\x22'+_0xefed79(0x290,'\x46\x6b\x26\x5e'),'\x46\x75\x67\x6b\x6d':_0xefed79(0x30c,'\x7a\x56\x5b\x28')+_0xefed79(0x4af,'\x75\x74\x38\x6c')+_0xefed79(0x335,'\x55\x64\x62\x35')+_0xefed79(0x4b2,'\x49\x32\x78\x6f')+'\x41\x49\x52\x2c\x20\x4f\x50\x54'+_0xefed79(0x284,'\x25\x51\x28\x64')+_0xefed79(0x115,'\x5e\x66\x77\x46')+_0xefed79(0x52a,'\x5e\x66\x77\x46')+_0xefed79(0x346,'\x6a\x52\x43\x45')+_0xefed79(0x20d,'\x4b\x54\x4c\x58')+_0xefed79(0x22a,'\x79\x76\x62\x5d')+_0xefed79(0x196,'\x6e\x25\x6a\x53')+_0xefed79(0x4e2,'\x62\x32\x31\x5a')+_0xefed79(0x125,'\x48\x5d\x5d\x79')};return _0x454972[_0xefed79(0x1ad,'\x6d\x24\x62\x47')](_0x454972[_0xefed79(0xd2,'\x5a\x46\x45\x52')](_0x454972[_0xefed79(0x1a0,'\x59\x54\x4a\x6c')](_0x454972[_0xefed79(0x1f0,'\x6a\x52\x43\x45')](_0x454972[_0xefed79(0x1f8,'\x4b\x61\x5d\x48')](_0x454972[_0xefed79(0x33e,'\x25\x51\x28\x64')](_0x454972[_0xefed79(0x53f,'\x73\x35\x40\x78')](_0x454972[_0xefed79(0x35e,'\x55\x64\x62\x35')](_0x454972[_0xefed79(0xfc,'\x6e\x25\x6a\x53')](_0x454972['\x77\x57\x6c\x63\x58'](String,_0x454972['\x74\x62\x75\x46\x50'](_0x419e88,''))+_0x454972[_0xefed79(0xc6,'\x31\x40\x65\x5b')],_0x454972[_0xefed79(0x4f4,'\x38\x58\x35\x5a')])+_0x454972[_0xefed79(0x1c1,'\x67\x6e\x43\x63')],_0x454972[_0xefed79(0x46e,'\x49\x32\x78\x6f')]),_0x454972[_0xefed79(0x26e,'\x75\x74\x38\x6c')]),_0x454972[_0xefed79(0x2e9,'\x47\x47\x32\x21')]),_0xefed79(0x251,'\x29\x59\x47\x50')+_0xefed79(0x4da,'\x47\x47\x32\x21')+_0xefed79(0x48e,'\x32\x34\x54\x6d')+'\x69\x6c\x65\x20\x28\x63\x79\x63'+_0xefed79(0x23f,'\x6e\x25\x6a\x53')+_0x2d5aef+(_0xefed79(0x116,'\x31\x40\x65\x5b')+_0xefed79(0x1b2,'\x49\x32\x78\x6f')+_0xefed79(0x2bc,'\x52\x43\x65\x48')))+(_0xefed79(0x19a,'\x6a\x52\x43\x45')+_0x1070d6+'\x0a'),_0x454972[_0xefed79(0x356,'\x6b\x40\x41\x7a')]),_0x454972[_0xefed79(0x3f1,'\x79\x76\x62\x5d')]),_0x454972[_0xefed79(0x362,'\x6f\x48\x41\x45')]),_0xefed79(0x525,'\x24\x67\x53\x39')+_0xefed79(0x465,'\x55\x21\x6e\x62')+_0xefed79(0x50f,'\x29\x59\x47\x50')+_0xefed79(0x485,'\x6e\x25\x6a\x53')+_0xefed79(0x1ea,'\x47\x47\x32\x21')+'\x75\x73\x20\x66\x69\x6c\x65\x20'+_0xefed79(0x1d1,'\x43\x71\x4f\x50')+_0xefed79(0x16e,'\x46\x6b\x26\x5e')+_0xefed79(0x311,'\x62\x32\x31\x5a')+_0xefed79(0x1c3,'\x5e\x66\x77\x46')+_0xefed79(0xcb,'\x63\x56\x41\x66')+_0xefed79(0x118,'\x6f\x48\x41\x45'));}function _0x5c446f(_0x29f8a5,_0x1cca36,_0x4aee46,{env:_0x516e22,stdinText:_0x3008ad,timeoutMs:_0xfad6de,label:_0x19020c,bufferMode:_0x52b55a,cwd:_0x592736}={}){const _0x56c048=_0xf7d584,_0x251085={'\x79\x64\x62\x50\x54':function(_0x4eea6f,_0x5a23d3){return _0x4eea6f+_0x5a23d3;},'\x48\x74\x4c\x51\x68':function(_0x39f52d,_0x36cbe3){return _0x39f52d<=_0x36cbe3;},'\x73\x42\x74\x45\x41':function(_0x2e27f2,_0x27b08e){return _0x2e27f2===_0x27b08e;},'\x61\x46\x79\x4e\x4a':function(_0x5e87a0,_0x3445c1,_0x1e4079){return _0x5e87a0(_0x3445c1,_0x1e4079);},'\x4d\x58\x6f\x78\x68':function(_0x11e7a9,_0x418fd4){return _0x11e7a9+_0x418fd4;},'\x52\x70\x48\x62\x68':_0x56c048(0x49a,'\x6b\x40\x41\x7a'),'\x78\x4d\x73\x4a\x54':'\x31\x7c\x35\x7c\x32\x7c\x36\x7c'+'\x33\x7c\x30\x7c\x34','\x4d\x5a\x47\x71\x7a':function(_0x471503,_0x1dc1a1){return _0x471503===_0x1dc1a1;},'\x63\x4c\x45\x72\x47':function(_0x3ab91d,_0x148426){return _0x3ab91d(_0x148426);},'\x68\x68\x70\x74\x44':_0x56c048(0x194,'\x73\x35\x40\x78'),'\x72\x6c\x6f\x6a\x62':function(_0x4cbe3c,_0x361ae2){return _0x4cbe3c===_0x361ae2;},'\x4e\x48\x51\x62\x51':_0x56c048(0x3e1,'\x55\x21\x6e\x62'),'\x73\x75\x4c\x43\x61':_0x56c048(0x43f,'\x38\x58\x35\x5a')+_0x56c048(0x225,'\x4b\x54\x4c\x58')+'\x64','\x55\x50\x66\x71\x62':function(_0x11a6cd,_0x231d17){return _0x11a6cd!==_0x231d17;},'\x67\x56\x48\x5a\x6f':_0x56c048(0x402,'\x49\x32\x78\x6f'),'\x59\x6c\x58\x41\x52':_0x56c048(0x288,'\x62\x32\x31\x5a'),'\x61\x66\x78\x44\x71':_0x56c048(0x38d,'\x32\x34\x54\x6d'),'\x47\x61\x53\x6a\x75':function(_0x37c6e6){return _0x37c6e6();},'\x77\x61\x67\x74\x7a':function(_0x120b5a,_0x3565d8){return _0x120b5a===_0x3565d8;},'\x78\x6a\x47\x67\x75':_0x56c048(0x282,'\x70\x32\x73\x47'),'\x4f\x42\x4e\x6c\x65':_0x56c048(0x482,'\x62\x32\x31\x5a'),'\x62\x62\x61\x79\x66':function(_0x5eba95,_0x2693fc){return _0x5eba95!=_0x2693fc;},'\x44\x4d\x69\x6f\x46':_0x56c048(0x22b,'\x6e\x25\x6a\x53'),'\x6f\x77\x71\x4f\x69':_0x56c048(0x4d9,'\x57\x6f\x38\x29'),'\x6d\x52\x70\x43\x73':_0x56c048(0xbc,'\x31\x40\x65\x5b'),'\x78\x77\x56\x58\x65':_0x56c048(0x18c,'\x70\x52\x38\x39'),'\x69\x53\x69\x50\x42':function(_0x57a2ec,_0x19b53a){return _0x57a2ec(_0x19b53a);},'\x6f\x75\x77\x50\x52':_0x56c048(0x1ec,'\x6d\x56\x65\x57'),'\x6f\x58\x6d\x7a\x7a':_0x56c048(0x180,'\x69\x51\x48\x5d'),'\x5a\x6e\x43\x43\x6f':'\x65\x72\x72\x6f\x72','\x58\x4b\x4e\x76\x73':function(_0x2623a4,_0x2652d8){return _0x2623a4!==_0x2652d8;},'\x67\x41\x51\x47\x75':_0x56c048(0x4d7,'\x24\x67\x53\x39'),'\x68\x4c\x4c\x48\x4c':_0x56c048(0x524,'\x30\x23\x48\x64'),'\x79\x53\x52\x4d\x55':_0x56c048(0xb4,'\x4e\x5b\x25\x31')};return new Promise(_0x2b0792=>{const _0x530bca=_0x56c048,_0x25db04={'\x66\x5a\x6f\x4c\x75':_0x251085[_0x530bca(0x2aa,'\x52\x43\x65\x48')],'\x70\x70\x66\x57\x62':_0x251085[_0x530bca(0x4b3,'\x6b\x40\x41\x7a')],'\x79\x7a\x76\x61\x42':function(_0x3d670a,_0x115b67){const _0x348442=_0x530bca;return _0x251085[_0x348442(0x38c,'\x48\x5d\x5d\x79')](_0x3d670a,_0x115b67);},'\x47\x57\x6a\x53\x4b':function(_0x45b339,_0x48a6f6){const _0x8109c7=_0x530bca;return _0x251085[_0x8109c7(0x50a,'\x71\x76\x77\x72')](_0x45b339,_0x48a6f6);},'\x66\x77\x78\x4d\x41':_0x251085[_0x530bca(0x4f9,'\x79\x76\x62\x5d')],'\x59\x4f\x6c\x6c\x41':_0x530bca(0x443,'\x38\x58\x35\x5a'),'\x42\x45\x59\x6f\x79':function(_0x5a3e19,_0x382b1f){return _0x251085['\x72\x6c\x6f\x6a\x62'](_0x5a3e19,_0x382b1f);},'\x56\x4f\x79\x57\x69':_0x251085[_0x530bca(0x49f,'\x62\x32\x31\x5a')],'\x56\x6b\x6c\x78\x53':function(_0x13b675,_0x2f6fc6){return _0x13b675(_0x2f6fc6);},'\x69\x48\x4c\x52\x51':_0x251085[_0x530bca(0x1d4,'\x62\x32\x31\x5a')],'\x5a\x76\x54\x58\x73':function(_0x7ce97c,_0x108491){return _0x251085['\x55\x50\x66\x71\x62'](_0x7ce97c,_0x108491);},'\x48\x53\x6b\x57\x43':_0x251085['\x67\x56\x48\x5a\x6f'],'\x42\x63\x71\x5a\x41':_0x530bca(0xff,'\x70\x52\x38\x39'),'\x79\x4b\x66\x74\x55':_0x251085[_0x530bca(0x179,'\x4b\x61\x5d\x48')],'\x5a\x66\x46\x6c\x6e':_0x251085[_0x530bca(0x470,'\x55\x21\x6e\x62')],'\x4f\x4b\x6a\x52\x76':function(_0x5c3a09,_0x7f29a7,_0x285e45){const _0x3be145=_0x530bca;return _0x251085[_0x3be145(0x14b,'\x25\x51\x28\x64')](_0x5c3a09,_0x7f29a7,_0x285e45);},'\x69\x69\x44\x65\x4a':function(_0x3ff3c3){const _0x4cb3ab=_0x530bca;return _0x251085[_0x4cb3ab(0x14c,'\x62\x32\x31\x5a')](_0x3ff3c3);},'\x4d\x73\x67\x54\x7a':function(_0x312028,_0x421029){return _0x312028+_0x421029;}};if(_0x251085[_0x530bca(0x11d,'\x72\x30\x67\x76')](_0x251085[_0x530bca(0x4ff,'\x29\x6b\x52\x6e')],_0x251085[_0x530bca(0x1ac,'\x63\x56\x41\x66')]))_0x14134a[_0x530bca(0x19d,'\x6f\x48\x41\x45')](_0x25db04[_0x530bca(0x220,'\x38\x58\x35\x5a')]);else{let _0x267c16;const _0x576daf=_0x251085[_0x530bca(0x436,'\x48\x5d\x5d\x79')](_0x19ccfd,_0x1cca36,_0x4aee46),_0xf9d3eb=_0x576daf?_0x576daf[_0x530bca(0x295,'\x4e\x5b\x25\x31')]:_0x1cca36,_0x136ce8=_0x576daf?_0x576daf['\x61\x72\x67\x73']:_0x4aee46;try{_0x267c16=_0x29f8a5(_0xf9d3eb,_0x136ce8,{'\x65\x6e\x76':_0x516e22,'\x63\x77\x64':_0x592736||undefined,'\x64\x65\x74\x61\x63\x68\x65\x64':!![],'\x73\x74\x64\x69\x6f':[_0x251085[_0x530bca(0x183,'\x63\x56\x41\x66')](_0x3008ad,null)?_0x251085[_0x530bca(0x18a,'\x4b\x61\x5d\x48')]:_0x251085[_0x530bca(0x46c,'\x24\x67\x53\x39')],_0x530bca(0xcd,'\x57\x39\x62\x51'),_0x530bca(0x360,'\x59\x54\x4a\x6c')]});}catch(_0xcb20f7){if(_0x251085[_0x530bca(0x1df,'\x55\x21\x6e\x62')]!==_0x251085[_0x530bca(0x94,'\x47\x47\x32\x21')]){const _0x521e42={};_0x521e42[_0x530bca(0x53e,'\x59\x54\x4a\x6c')]=null,_0x521e42[_0x530bca(0x50c,'\x63\x56\x41\x66')]='',_0x521e42['\x73\x74\x64\x65\x72\x72']='',_0x521e42[_0x530bca(0x10f,'\x38\x58\x35\x5a')]=![],_0x521e42[_0x530bca(0xc2,'\x35\x6f\x34\x28')+'\x6f\x72']=_0xcb20f7[_0x530bca(0x1ab,'\x31\x40\x65\x5b')],_0x521e42[_0x530bca(0x108,'\x35\x6f\x34\x28')+'\x64']=![],_0x251085[_0x530bca(0x39e,'\x30\x23\x48\x64')](_0x2b0792,_0x521e42);return;}else return _0x39498b[_0x530bca(0x3bb,'\x55\x64\x62\x35')+'\x74\x68']('\x7e\x2f')?_0xcd174[_0x530bca(0x542,'\x63\x56\x41\x66')](_0x141a65.env.HOME||'',_0xe52010[_0x530bca(0x361,'\x57\x39\x62\x51')](-0x1603+0x1d3*0x5+0xd*0xfe)):_0x592755;}let _0x5c7223='',_0x4d3312='',_0x3f6c9b=![],_0x28e0f3=![],_0x4ce2f2=null,_0x5ebc0e=![],_0x3bc540=null,_0x1c9bc3=null,_0x51864f=null;const _0x11946e=_0x251085[_0x530bca(0x28e,'\x63\x56\x41\x66')](_0x363091),_0x209e60=_0x19020c?'\x5b'+_0x19020c+'\x5d\x20':'',_0x51fa8e=_0x251085[_0x530bca(0x25e,'\x73\x35\x40\x78')](_0x52b55a,_0x251085[_0x530bca(0xea,'\x6d\x24\x62\x47')])?_0x251085[_0x530bca(0x42c,'\x67\x6e\x43\x63')]:_0x251085['\x6f\x58\x6d\x7a\x7a'],_0x2d3ef3=(_0x2d5a6f,_0x173527)=>{const _0x5046e5=_0x530bca,_0x23fa83=_0x251085[_0x5046e5(0xdf,'\x24\x67\x53\x39')](_0x2d5a6f,_0x173527);if(_0x251085[_0x5046e5(0x414,'\x24\x67\x53\x39')](_0x23fa83[_0x5046e5(0x390,'\x29\x6b\x52\x6e')],_0x11946e))return _0x23fa83;return _0x3f6c9b=!![],_0x251085[_0x5046e5(0x2ce,'\x43\x71\x4f\x50')](_0x51fa8e,_0x5046e5(0x36b,'\x70\x52\x38\x39'))?_0x23fa83[_0x5046e5(0x2be,'\x38\x58\x35\x5a')](-0xed9+-0xfc6*-0x1+-0xed,_0x11946e):_0x23fa83[_0x5046e5(0x1ed,'\x69\x51\x48\x5d')](-_0x11946e);},_0x3d4cdd=_0x28679f=>{const _0x294a09=_0x530bca,_0x549d1e=_0x25db04[_0x294a09(0x1f9,'\x6f\x48\x41\x45')][_0x294a09(0x131,'\x79\x76\x62\x5d')]('\x7c');let _0x8bb935=0x34f+-0x82d*0x1+0x4de;while(!![]){switch(_0x549d1e[_0x8bb935++]){case'\x30':clearTimeout(_0x51864f);continue;case'\x31':if(_0x5ebc0e)return;continue;case'\x32':if(_0x25db04[_0x294a09(0x2dc,'\x70\x32\x73\x47')](_0x28679f,0x93f+-0x2614+0x79*0x3d))_0x28e0f3=![];continue;case'\x33':_0x25db04[_0x294a09(0x4b6,'\x32\x34\x54\x6d')](clearTimeout,_0x1c9bc3);continue;case'\x34':const _0x19c9eb={};_0x19c9eb[_0x294a09(0x270,'\x70\x32\x73\x47')]=_0x28679f,_0x19c9eb[_0x294a09(0x272,'\x30\x23\x48\x64')]=_0x5c7223,_0x19c9eb[_0x294a09(0x53a,'\x72\x30\x67\x76')]=_0x4d3312,_0x19c9eb[_0x294a09(0x2f7,'\x4b\x54\x4c\x58')]=_0x28e0f3,_0x19c9eb[_0x294a09(0x1a4,'\x4b\x61\x5d\x48')+'\x6f\x72']=_0x4ce2f2,_0x19c9eb[_0x294a09(0x2e3,'\x63\x56\x41\x66')+'\x64']=_0x3f6c9b,_0x2b0792(_0x19c9eb);continue;case'\x35':_0x5ebc0e=!![];continue;case'\x36':_0x25db04[_0x294a09(0x146,'\x62\x32\x31\x5a')](clearTimeout,_0x3bc540);continue;}break;}};_0x267c16['\x6f\x6e'](_0x251085[_0x530bca(0xc4,'\x35\x6f\x34\x28')],_0x57a0ac=>{const _0x4e70c7=_0x530bca;_0x4ce2f2=_0x57a0ac[_0x4e70c7(0x2c8,'\x73\x35\x40\x78')],_0x25db04[_0x4e70c7(0x1e5,'\x57\x6f\x38\x29')](_0x3d4cdd,null);});const _0x351772=_0x251085[_0x530bca(0x2b1,'\x57\x39\x62\x51')](String(process.env.EVOLVE_HAND_QUIET||'')[_0x530bca(0x247,'\x7a\x56\x5b\x28')+_0x530bca(0x19c,'\x6d\x56\x65\x57')](),_0x251085[_0x530bca(0x292,'\x49\x32\x78\x6f')]);if(_0x267c16['\x73\x74\x64\x6f\x75\x74'])_0x267c16[_0x530bca(0xd4,'\x51\x26\x49\x45')]['\x6f\x6e'](_0x251085[_0x530bca(0x377,'\x4d\x39\x33\x56')],_0x58220d=>{const _0x642674=_0x530bca;_0x5c7223=_0x251085[_0x642674(0xaf,'\x4b\x54\x4c\x58')](_0x2d3ef3,_0x5c7223,_0x58220d[_0x642674(0x3a7,'\x51\x26\x49\x45')]());if(_0x351772)process[_0x642674(0x3d2,'\x70\x52\x38\x39')][_0x642674(0x32b,'\x6a\x52\x43\x45')](_0x209e60+_0x58220d);});if(_0x267c16[_0x530bca(0x2ad,'\x75\x74\x38\x6c')])_0x267c16[_0x530bca(0x3b7,'\x35\x6f\x34\x28')]['\x6f\x6e'](_0x530bca(0x52c,'\x67\x6e\x43\x63'),_0x1637e8=>{const _0x4119f9=_0x530bca;_0x4d3312=_0x2d3ef3(_0x4d3312,_0x1637e8[_0x4119f9(0x385,'\x4a\x6f\x48\x4d')]());if(_0x351772)process[_0x4119f9(0x4d4,'\x6b\x40\x41\x7a')][_0x4119f9(0x42e,'\x71\x76\x77\x72')](_0x251085[_0x4119f9(0x3cc,'\x32\x34\x54\x6d')](_0x209e60,_0x1637e8));});_0x267c16['\x6f\x6e'](_0x251085[_0x530bca(0x2e2,'\x31\x40\x65\x5b')],_0x114d46=>_0x3d4cdd(_0x114d46)),_0x3bc540=setTimeout(()=>{const _0x537414=_0x530bca,_0x55d40a={'\x57\x54\x56\x62\x72':function(_0x4ea4aa,_0xaca762){return _0x4ea4aa===_0xaca762;},'\x6d\x64\x66\x64\x50':_0x25db04[_0x537414(0x22e,'\x6a\x52\x43\x45')],'\x4b\x54\x47\x4b\x76':function(_0x28866b,_0x325d99){const _0x94ff40=_0x537414;return _0x25db04[_0x94ff40(0x1de,'\x5e\x66\x77\x46')](_0x28866b,_0x325d99);},'\x68\x55\x43\x61\x70':_0x25db04[_0x537414(0x17e,'\x70\x52\x38\x39')],'\x53\x76\x6c\x64\x56':_0x25db04[_0x537414(0x349,'\x57\x39\x62\x51')],'\x67\x42\x4d\x6f\x4f':function(_0x49d229,_0xe6f320){const _0x3861a9=_0x537414;return _0x25db04[_0x3861a9(0x4b7,'\x75\x74\x38\x6c')](_0x49d229,_0xe6f320);},'\x4d\x66\x76\x75\x63':_0x25db04[_0x537414(0x29c,'\x57\x39\x62\x51')],'\x6f\x71\x51\x4f\x50':function(_0x4917de,_0x29ae43){const _0x49c799=_0x537414;return _0x25db04[_0x49c799(0xab,'\x70\x52\x38\x39')](_0x4917de,_0x29ae43);},'\x7a\x70\x42\x6d\x65':_0x25db04[_0x537414(0x433,'\x4b\x54\x4c\x58')],'\x4f\x73\x57\x73\x6e':function(_0xa48fbc,_0x4afab1){const _0x317aca=_0x537414;return _0x25db04[_0x317aca(0x1b5,'\x4d\x39\x33\x56')](_0xa48fbc,_0x4afab1);},'\x62\x71\x6b\x71\x42':_0x25db04[_0x537414(0x4a9,'\x6d\x56\x65\x57')],'\x47\x72\x71\x6b\x4a':function(_0x5e6cfe,_0x1c5bb3){const _0x540a26=_0x537414;return _0x25db04[_0x540a26(0x1a7,'\x4a\x6f\x48\x4d')](_0x5e6cfe,_0x1c5bb3);}};_0x28e0f3=!![];const _0x1c08e2=_0x267c16['\x70\x69\x64'];try{process[_0x537414(0x2a2,'\x73\x35\x40\x78')](-_0x1c08e2,_0x25db04['\x66\x5a\x6f\x4c\x75']);}catch(_0x1e62e2){try{if(_0x25db04[_0x537414(0x147,'\x72\x30\x67\x76')]!==_0x25db04[_0x537414(0x130,'\x38\x58\x35\x5a')])_0x267c16[_0x537414(0x250,'\x30\x23\x48\x64')](_0x25db04[_0x537414(0x32a,'\x46\x6b\x26\x5e')]);else try{_0x3d148f[_0x537414(0x4f7,'\x38\x58\x35\x5a')](_0x25db04[_0x537414(0xf4,'\x6a\x68\x4b\x54')]);}catch(_0x49c0f5){}}catch(_0x24bcd6){}}_0x1c9bc3=_0x25db04['\x4f\x4b\x6a\x52\x76'](setTimeout,()=>{const _0x25bd34=_0x537414;if(_0x55d40a[_0x25bd34(0x453,'\x6e\x25\x6a\x53')](_0x25bd34(0x471,'\x6e\x25\x6a\x53'),_0x55d40a[_0x25bd34(0x126,'\x59\x54\x4a\x6c')])){const _0x1bd119=_0x4aacff[_0x25bd34(0x416,'\x31\x40\x65\x5b')](_0x3c7b0e);return _0x1bd119&&IECWch[_0x25bd34(0x27c,'\x75\x74\x38\x6c')](typeof _0x1bd119,IECWch['\x6d\x64\x66\x64\x50'])?_0x1bd119:null;}else try{process[_0x25bd34(0x110,'\x7a\x56\x5b\x28')](-_0x1c08e2,_0x55d40a[_0x25bd34(0x549,'\x36\x6e\x6d\x37')]);}catch(_0x180661){if(_0x25bd34(0x378,'\x32\x34\x54\x6d')===_0x25bd34(0x54d,'\x29\x59\x47\x50'))try{_0x267c16[_0x25bd34(0x464,'\x4a\x6f\x48\x4d')](_0x55d40a[_0x25bd34(0x1e8,'\x6d\x24\x62\x47')]);}catch(_0x49a284){}else _0x141c30[_0x25bd34(0x545,'\x7a\x56\x5b\x28')+_0x25bd34(0x1d2,'\x32\x34\x54\x6d')](_0x4ca5ba+'\x5f'+_0x42392a+(_0x25bd34(0x1be,'\x55\x64\x62\x35')+'\x74'),_0x2114b3);}},_0x25db04[_0x537414(0x114,'\x4a\x6f\x48\x4d')](_0x1bff38)),_0x51864f=setTimeout(()=>{const _0x5cc0fd=_0x537414,_0xbc669={};_0xbc669[_0x5cc0fd(0x14a,'\x49\x32\x78\x6f')]=_0x55d40a[_0x5cc0fd(0x435,'\x29\x59\x47\x50')];const _0xf01281=_0xbc669;if(_0x55d40a['\x6f\x71\x51\x4f\x50'](_0x5cc0fd(0xd3,'\x41\x4a\x41\x76'),_0x55d40a[_0x5cc0fd(0x49d,'\x43\x71\x4f\x50')])){try{if(_0x55d40a[_0x5cc0fd(0x38f,'\x70\x52\x38\x39')](_0x55d40a['\x62\x71\x6b\x71\x42'],_0x5cc0fd(0x16a,'\x73\x35\x40\x78'))){if(_0x267c16[_0x5cc0fd(0x448,'\x55\x64\x62\x35')])_0x267c16[_0x5cc0fd(0x3fa,'\x59\x54\x4a\x6c')][_0x5cc0fd(0x4cc,'\x4e\x5b\x25\x31')]();if(_0x267c16[_0x5cc0fd(0x4a3,'\x57\x39\x62\x51')])_0x267c16[_0x5cc0fd(0x15d,'\x7a\x56\x5b\x28')][_0x5cc0fd(0x517,'\x47\x47\x32\x21')]();_0x267c16[_0x5cc0fd(0x268,'\x30\x23\x48\x64')]();}else{const _0x44609b=_0x536e9c['\x70\x65\x72\x6d\x69\x73\x73\x69'+_0x5cc0fd(0x3e4,'\x70\x32\x73\x47')+'\x6c\x73'][_0x5cc0fd(0x211,'\x35\x6f\x34\x28')](_0xee9bc1=>_0xee9bc1&&_0xee9bc1[_0x5cc0fd(0x3f2,'\x6f\x48\x41\x45')+'\x65']||'\x3f')[_0x5cc0fd(0x2a3,'\x70\x32\x73\x47')](0xe*-0xd3+0x13a+-0x108*-0xa,0xb6*0x29+0xf40+-0x2c5c);return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0xf01281[_0x5cc0fd(0x25f,'\x67\x6e\x43\x63')],'\x72\x65\x61\x73\x6f\x6e':_0x5cc0fd(0x503,'\x25\x51\x28\x64')+_0x5cc0fd(0x54a,'\x71\x76\x77\x72')+_0x5cc0fd(0x223,'\x36\x6e\x6d\x37')+_0x44609b[_0x5cc0fd(0x30d,'\x49\x32\x78\x6f')]('\x2c')};}}catch(_0x2c7916){}_0x55d40a['\x47\x72\x71\x6b\x4a'](_0x3d4cdd,null);}else{const _0x1fa5ba=IECWch['\x67\x42\x4d\x6f\x4f'](_0x39c18b,_0x2e9f83);if(_0x1fa5ba===null)return null;try{const _0x3a0424=_0x4e148a[_0x5cc0fd(0x3b6,'\x75\x74\x38\x6c')](_0x1fa5ba);return _0x3a0424&&IECWch[_0x5cc0fd(0x4a2,'\x71\x76\x77\x72')](typeof _0x3a0424,'\x6f\x62\x6a\x65\x63\x74')?_0x3a0424:null;}catch(_0x17cfe5){return null;}}},_0x25db04['\x4d\x73\x67\x54\x7a'](_0x25db04[_0x537414(0x1a6,'\x75\x74\x38\x6c')](_0x1bff38),-0xc6d+-0x390+0x2385));},_0xfad6de);if(_0x251085[_0x530bca(0x19b,'\x4e\x5b\x25\x31')](_0x3008ad,null))_0x251085[_0x530bca(0x44e,'\x55\x64\x62\x35')](_0x353782,_0x267c16,_0x3008ad);}});}function _0x353782(_0x12d027,_0x32d4e7){const _0x4720ed=_0xf7d584,_0x78d736={'\x55\x46\x49\x46\x46':_0x4720ed(0x300,'\x70\x52\x38\x39'),'\x78\x6f\x52\x54\x4a':function(_0x18931e,_0x453ad1){return _0x18931e===_0x453ad1;},'\x42\x6e\x50\x46\x6d':_0x4720ed(0x3f5,'\x67\x6e\x43\x63'),'\x59\x53\x51\x57\x6b':_0x4720ed(0x45d,'\x4d\x39\x33\x56'),'\x4c\x4f\x7a\x77\x4b':function(_0x3dce68,_0x545c4c){return _0x3dce68(_0x545c4c);},'\x6a\x68\x72\x52\x66':_0x4720ed(0x411,'\x69\x51\x48\x5d')};if(!_0x12d027[_0x4720ed(0x4eb,'\x62\x32\x31\x5a')])return;_0x12d027[_0x4720ed(0x47c,'\x46\x6b\x26\x5e')]['\x6f\x6e'](_0x78d736[_0x4720ed(0x171,'\x43\x71\x4f\x50')],()=>{});try{if(_0x78d736[_0x4720ed(0x111,'\x73\x35\x40\x78')](_0x78d736[_0x4720ed(0x480,'\x31\x40\x65\x5b')],_0x78d736[_0x4720ed(0x21e,'\x69\x51\x48\x5d')]))return _0x223ecb[_0xc5bc42]=_0x1319cf,_0x517d5a;else _0x12d027[_0x4720ed(0xd5,'\x70\x32\x73\x47')][_0x4720ed(0x4f6,'\x5a\x46\x45\x52')](_0x78d736[_0x4720ed(0x481,'\x7a\x56\x5b\x28')](String,_0x32d4e7),_0x78d736[_0x4720ed(0xee,'\x71\x76\x77\x72')]),_0x12d027[_0x4720ed(0x342,'\x4b\x54\x4c\x58')]['\x65\x6e\x64']();}catch(_0x76bb5c){}}function _0x4d4992(_0x6ad960){const _0x1f2223=_0xf7d584,_0x1d0463={'\x58\x70\x46\x75\x4c':function(_0x53a9f3,_0x58bc7b){return _0x53a9f3(_0x58bc7b);},'\x71\x78\x61\x4b\x4f':function(_0x289223,_0x190774){return _0x289223||_0x190774;},'\x49\x75\x4d\x66\x4a':function(_0x47e1de,_0x487b9f){return _0x47e1de-_0x487b9f;},'\x46\x41\x58\x74\x4b':function(_0x1a810b,_0x118bbc){return _0x1a810b>=_0x118bbc;},'\x44\x4a\x6b\x49\x52':function(_0x3785f6,_0x3865cc){return _0x3785f6===_0x3865cc;}},_0x5b7f1c=_0x1d0463[_0x1f2223(0x564,'\x6d\x24\x62\x47')](String,_0x1d0463[_0x1f2223(0x95,'\x6b\x40\x41\x7a')](_0x6ad960,''))['\x73\x70\x6c\x69\x74']('\x0a')[_0x1f2223(0xf0,'\x69\x51\x48\x5d')](_0x5ac981=>_0x5ac981[_0x1f2223(0x208,'\x25\x51\x28\x64')](/^\[Hand\]\s?/,'')[_0x1f2223(0x42a,'\x24\x67\x53\x39')]())[_0x1f2223(0x202,'\x79\x76\x62\x5d')](Boolean);for(let _0x3524a3=_0x1d0463[_0x1f2223(0x4e4,'\x49\x32\x78\x6f')](_0x5b7f1c[_0x1f2223(0x365,'\x24\x67\x53\x39')],0xe1a+-0x1ba6+0xd8d);_0x1d0463[_0x1f2223(0x19e,'\x70\x32\x73\x47')](_0x3524a3,-0x2064+0x141d+-0x7*-0x1c1);_0x3524a3--){if(!_0x5b7f1c[_0x3524a3][_0x1f2223(0x122,'\x51\x26\x49\x45')+'\x74\x68']('\x7b'))continue;try{const _0xbcbed=JSON[_0x1f2223(0x2f3,'\x55\x64\x62\x35')](_0x5b7f1c[_0x3524a3]);if(_0xbcbed&&_0x1d0463[_0x1f2223(0x4e7,'\x69\x51\x48\x5d')](_0xbcbed[_0x1f2223(0x331,'\x5a\x46\x45\x52')],_0x1f2223(0x420,'\x6d\x24\x62\x47')))return _0xbcbed;}catch(_0x58f957){}}return null;}function _0x46a673({r:_0x632814,statusFile:_0xd12bc9,cycleStartMs:_0x1715dc,attemptStartMs:_0x588be6,solidifyProof:_0x17413f}){const _0x5caf8f=_0xf7d584,_0x4947ba={'\x67\x47\x64\x61\x44':_0x5caf8f(0x44d,'\x4b\x54\x4c\x58'),'\x71\x6f\x75\x48\x6f':_0x5caf8f(0x2c6,'\x71\x76\x77\x72'),'\x77\x48\x66\x47\x43':function(_0x5edff2,_0x1b4985){return _0x5edff2===_0x1b4985;},'\x51\x77\x45\x6e\x74':_0x5caf8f(0xbe,'\x30\x23\x48\x64'),'\x42\x6d\x6b\x57\x79':_0x5caf8f(0x540,'\x24\x67\x53\x39'),'\x6f\x6a\x75\x76\x4a':_0x5caf8f(0x445,'\x49\x32\x78\x6f')+_0x5caf8f(0xce,'\x25\x51\x28\x64'),'\x53\x77\x78\x70\x48':function(_0x51f680,_0x1b278e){return _0x51f680(_0x1b278e);},'\x4b\x58\x6b\x4e\x56':'\x73\x70\x61\x77\x6e\x5f\x65\x72'+_0x5caf8f(0x50b,'\x36\x6e\x6d\x37'),'\x70\x42\x4a\x76\x67':_0x5caf8f(0x4fd,'\x69\x51\x48\x5d'),'\x5a\x4b\x66\x72\x6d':function(_0x594ddf,_0x24f8d5){return _0x594ddf>_0x24f8d5;},'\x5a\x71\x48\x47\x44':_0x5caf8f(0x2d7,'\x48\x5d\x5d\x79'),'\x6d\x79\x72\x72\x44':_0x5caf8f(0x4d8,'\x6d\x56\x65\x57')+_0x5caf8f(0xb1,'\x36\x6e\x6d\x37')+'\x53\x53','\x68\x6e\x49\x43\x79':function(_0x409048,_0x2dbb3d){return _0x409048(_0x2dbb3d);},'\x72\x51\x43\x76\x71':function(_0x3107db,_0x418cce){return _0x3107db===_0x418cce;},'\x5a\x46\x63\x77\x51':'\x74\x69\x6d\x65\x6f\x75\x74','\x7a\x51\x5a\x75\x42':function(_0x20339a){return _0x20339a();},'\x76\x52\x58\x6c\x67':function(_0x27f495,_0x5cd99a){return _0x27f495(_0x5cd99a);},'\x4b\x4d\x44\x5a\x4a':_0x5caf8f(0x2cf,'\x49\x32\x78\x6f'),'\x47\x64\x42\x6d\x75':_0x5caf8f(0x484,'\x6a\x52\x43\x45')+_0x5caf8f(0x351,'\x33\x65\x65\x5d')+_0x5caf8f(0x2f8,'\x6b\x40\x41\x7a'),'\x48\x70\x48\x45\x66':_0x5caf8f(0x425,'\x72\x30\x67\x76')+_0x5caf8f(0x24b,'\x57\x6f\x38\x29')+_0x5caf8f(0xfa,'\x4b\x61\x5d\x48'),'\x54\x4e\x4d\x6a\x7a':_0x5caf8f(0x235,'\x29\x59\x47\x50')+_0x5caf8f(0x55a,'\x38\x58\x35\x5a')+'\x22','\x67\x64\x61\x4e\x6e':_0x5caf8f(0x1e9,'\x32\x34\x54\x6d')+_0x5caf8f(0x3d0,'\x51\x26\x49\x45'),'\x42\x71\x46\x5a\x4e':function(_0x4b4ab9,_0x57edd1){return _0x4b4ab9!==_0x57edd1;},'\x68\x78\x4b\x68\x41':function(_0x16df8a,_0x81fd48){return _0x16df8a&&_0x81fd48;},'\x6e\x73\x6c\x65\x71':_0x5caf8f(0xb2,'\x6d\x56\x65\x57'),'\x52\x47\x73\x56\x59':_0x5caf8f(0x48f,'\x33\x65\x65\x5d')+_0x5caf8f(0x21b,'\x7a\x56\x5b\x28')+_0x5caf8f(0xde,'\x41\x4a\x41\x76')+_0x5caf8f(0x4e5,'\x69\x51\x48\x5d')+_0x5caf8f(0x3ff,'\x5a\x46\x45\x52')+_0x5caf8f(0x12d,'\x33\x65\x65\x5d'),'\x4e\x43\x64\x6d\x4a':_0x5caf8f(0x2eb,'\x24\x67\x53\x39')+_0x5caf8f(0x43a,'\x35\x6f\x34\x28')+'\x5f\x61','\x72\x50\x48\x61\x53':_0x5caf8f(0x535,'\x6d\x56\x65\x57')+'\x66\x61\x6c\x6c\x62\x61\x63\x6b'+'\x5f\x62','\x7a\x51\x47\x4f\x47':'\x73\x6f\x6c\x69\x64\x69\x66\x79'+_0x5caf8f(0x36c,'\x4d\x39\x33\x56'),'\x58\x4a\x63\x4a\x4d':_0x5caf8f(0x2b0,'\x63\x56\x41\x66')+'\x73','\x6b\x4f\x42\x42\x47':_0x5caf8f(0x3b9,'\x51\x26\x49\x45')+'\x61\x69\x6c\x75\x72\x65'},_0x2e308e=_0x632814[_0x5caf8f(0x112,'\x57\x6f\x38\x29')]+'\x0a'+_0x632814[_0x5caf8f(0x1dd,'\x62\x32\x31\x5a')];if(_0x632814[_0x5caf8f(0x189,'\x69\x51\x48\x5d')+'\x6f\x72'])return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0x4947ba[_0x5caf8f(0x2ea,'\x59\x54\x4a\x6c')],'\x72\x65\x61\x73\x6f\x6e':_0x5caf8f(0x2e4,'\x35\x6f\x34\x28')+_0x5caf8f(0x383,'\x25\x51\x28\x64')+_0x632814[_0x5caf8f(0x48d,'\x49\x32\x78\x6f')+'\x6f\x72']};const _0x59263c=_0x4947ba['\x53\x77\x78\x70\x48'](_0x4d4992,_0x632814[_0x5caf8f(0x345,'\x6d\x56\x65\x57')]);if(_0x59263c){if(_0x59263c[_0x5caf8f(0x4fb,'\x71\x76\x77\x72')])return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0x4947ba[_0x5caf8f(0x39d,'\x48\x5d\x5d\x79')],'\x72\x65\x61\x73\x6f\x6e':_0x5caf8f(0xc7,'\x35\x6f\x34\x28')+_0x5caf8f(0x241,'\x31\x40\x65\x5b')+'\x20'+String(_0x59263c['\x73\x75\x62\x74\x79\x70\x65']||_0x5caf8f(0x463,'\x67\x6e\x43\x63'))[_0x5caf8f(0x4d2,'\x29\x6b\x52\x6e')](-0x4e+0x1abd+-0x1a6f,-0x1ed*0x1+0x11d*-0x1f+0xa8*0x38)};if(Array[_0x5caf8f(0x568,'\x52\x43\x65\x48')](_0x59263c[_0x5caf8f(0x207,'\x57\x6f\x38\x29')+_0x5caf8f(0x22d,'\x4b\x54\x4c\x58')+'\x6c\x73'])&&_0x4947ba[_0x5caf8f(0x313,'\x41\x4a\x41\x76')](_0x59263c[_0x5caf8f(0x204,'\x24\x67\x53\x39')+_0x5caf8f(0xa2,'\x6a\x52\x43\x45')+'\x6c\x73'][_0x5caf8f(0x4bf,'\x31\x40\x65\x5b')],0x1*-0x1945+0x77b+0x11ca)){const _0x49303f=_0x59263c[_0x5caf8f(0x3ad,'\x69\x51\x48\x5d')+'\x6f\x6e\x5f\x64\x65\x6e\x69\x61'+'\x6c\x73'][_0x5caf8f(0x2ab,'\x6f\x48\x41\x45')](_0x4fdedb=>_0x4fdedb&&_0x4fdedb['\x74\x6f\x6f\x6c\x5f\x6e\x61\x6d'+'\x65']||'\x3f')[_0x5caf8f(0x2c1,'\x35\x6f\x34\x28')](0x2*0x6c7+0x67*-0x29+-0xfb*-0x3,-0x9*0x1b7+-0x75c+0x16d5);return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0x5caf8f(0x4a1,'\x75\x74\x38\x6c')+_0x5caf8f(0x553,'\x55\x21\x6e\x62')+'\x64','\x72\x65\x61\x73\x6f\x6e':_0x5caf8f(0x410,'\x24\x67\x53\x39')+_0x5caf8f(0x153,'\x36\x6e\x6d\x37')+_0x5caf8f(0x2d4,'\x6f\x48\x41\x45')+_0x49303f['\x6a\x6f\x69\x6e']('\x2c')};}}const _0x41d850=_0x2e308e[_0x5caf8f(0x505,'\x79\x76\x62\x5d')](_0x5caf8f(0x1a8,'\x52\x43\x65\x48')+_0x5caf8f(0x24d,'\x46\x6b\x26\x5e')+'\x44'),_0x29aac8=Number[_0x5caf8f(0x298,'\x24\x67\x53\x39')](_0x588be6)?_0x588be6:_0x1715dc,_0x142c18=_0x17413f===_0x4947ba[_0x5caf8f(0x369,'\x32\x34\x54\x6d')]?_0x4947ba[_0x5caf8f(0x198,'\x4b\x54\x4c\x58')](_0x3e1b81,_0x29aac8):_0x2e308e[_0x5caf8f(0x215,'\x29\x6b\x52\x6e')](_0x4947ba[_0x5caf8f(0x3af,'\x6a\x68\x4b\x54')]),_0x5bda6e=_0x4947ba[_0x5caf8f(0x43b,'\x4d\x39\x33\x56')](_0x144255,_0xd12bc9);if(_0x4947ba[_0x5caf8f(0x2e8,'\x55\x64\x62\x35')](_0x632814[_0x5caf8f(0x472,'\x48\x5d\x5d\x79')],0x267b*0x1+0x9d6+0x7*-0x6e7)&&!_0x41d850&&_0x142c18&&_0x4947ba[_0x5caf8f(0x4bd,'\x4b\x61\x5d\x48')](_0x5bda6e,_0x5caf8f(0x3e0,'\x46\x6b\x26\x5e'))){const _0x58b82a={};return _0x58b82a['\x6f\x6b']=!![],_0x58b82a[_0x5caf8f(0x29d,'\x6a\x68\x4b\x54')]=_0x5caf8f(0x2f1,'\x33\x65\x65\x5d'),_0x58b82a[_0x5caf8f(0x380,'\x25\x51\x28\x64')]='',_0x58b82a;}if(_0x632814[_0x5caf8f(0x205,'\x63\x56\x41\x66')])return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0x4947ba['\x5a\x46\x63\x77\x51'],'\x72\x65\x61\x73\x6f\x6e':_0x5caf8f(0x133,'\x62\x32\x31\x5a')+_0x5caf8f(0x145,'\x70\x32\x73\x47')+_0x5caf8f(0x30b,'\x36\x6e\x6d\x37')+_0x4947ba['\x7a\x51\x5a\x75\x42'](_0x5885da)+'\x6d\x73'};if(_0x4947ba[_0x5caf8f(0x1ae,'\x6e\x25\x6a\x53')](_0x4947ba[_0x5caf8f(0x45c,'\x4b\x54\x4c\x58')](String,process.env.EVOLVE_EXEC_FALLBACKS||''),_0x4947ba[_0x5caf8f(0x350,'\x72\x30\x67\x76')])){const _0x133ff8=_0x2e308e[_0x5caf8f(0x3e7,'\x4a\x6f\x48\x4d')](_0x4947ba[_0x5caf8f(0x513,'\x47\x47\x32\x21')])||_0x2e308e[_0x5caf8f(0x2ae,'\x36\x6e\x6d\x37')](_0x4947ba[_0x5caf8f(0x55f,'\x55\x64\x62\x35')]),_0x3b5eb8=_0x2e308e['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x4947ba[_0x5caf8f(0x519,'\x6f\x48\x41\x45')])||_0x2e308e[_0x5caf8f(0x334,'\x29\x59\x47\x50')](_0x4947ba['\x67\x64\x61\x4e\x6e']);if(_0x4947ba['\x42\x71\x46\x5a\x4e'](_0x17413f,_0x4947ba[_0x5caf8f(0x387,'\x63\x56\x41\x66')])&&_0x4947ba[_0x5caf8f(0x45f,'\x32\x34\x54\x6d')](_0x632814['\x63\x6f\x64\x65'],0x705*-0x2+0x1aad*-0x1+-0x28b7*-0x1)&&!_0x41d850&&(_0x2e308e[_0x5caf8f(0x3cd,'\x24\x67\x53\x39')](_0x4947ba[_0x5caf8f(0x454,'\x4b\x61\x5d\x48')])||_0x4947ba[_0x5caf8f(0x195,'\x4a\x6f\x48\x4d')](_0x133ff8,_0x3b5eb8))){if(_0x4947ba[_0x5caf8f(0x532,'\x6d\x24\x62\x47')](_0x4947ba[_0x5caf8f(0x391,'\x5a\x46\x45\x52')],_0x4947ba[_0x5caf8f(0x2dd,'\x6e\x25\x6a\x53')]))try{if(_0x4947ba['\x72\x51\x43\x76\x71'](_0x5caf8f(0x9f,'\x57\x6f\x38\x29'),_0x5caf8f(0x16d,'\x67\x6e\x43\x63'))){if(!_0x46f832||!_0x2dfd16[_0x5caf8f(0x2cc,'\x6f\x48\x41\x45')+'\x6e\x63'](_0x5f05da))return null;try{const _0x497f83=_0x4b8948[_0x5caf8f(0x491,'\x5e\x66\x77\x46')](_0x4c72c6[_0x5caf8f(0x4d5,'\x52\x43\x65\x48')+'\x53\x79\x6e\x63'](_0xfe7222,_0x4947ba[_0x5caf8f(0x2f6,'\x47\x47\x32\x21')]));if(_0x497f83&&_0x497f83['\x72\x65\x73\x75\x6c\x74']===_0x4947ba[_0x5caf8f(0x1b4,'\x24\x67\x53\x39')])return _0x4947ba[_0x5caf8f(0x3f6,'\x73\x35\x40\x78')];if(_0x497f83&&_0x4947ba[_0x5caf8f(0x501,'\x79\x76\x62\x5d')](_0x497f83[_0x5caf8f(0x1e1,'\x6f\x48\x41\x45')],_0x4947ba[_0x5caf8f(0x46f,'\x52\x43\x65\x48')]))return _0x4947ba['\x51\x77\x45\x6e\x74'];return _0x4947ba[_0x5caf8f(0x3ba,'\x24\x67\x53\x39')];}catch(_0x3b511c){return _0x4947ba['\x42\x6d\x6b\x57\x79'];}}else{const _0x413b41={};_0x413b41['\x72\x65\x73\x75\x6c\x74']=_0x4947ba[_0x5caf8f(0x432,'\x5e\x66\x77\x46')],_0x413b41['\x65\x6e']=_0x5caf8f(0x3f8,'\x70\x52\x38\x39')+_0x5caf8f(0x1b8,'\x6a\x52\x43\x45')+_0x5caf8f(0x262,'\x4a\x6f\x48\x4d')+'\x48\x61\x6e\x64\x20\x63\x6f\x6d'+_0x5caf8f(0x234,'\x57\x6f\x38\x29')+_0x5caf8f(0x15c,'\x4e\x5b\x25\x31')+_0x5caf8f(0xdd,'\x57\x39\x62\x51')+_0x5caf8f(0x565,'\x31\x40\x65\x5b')+_0x5caf8f(0x2cd,'\x32\x34\x54\x6d')+_0x5caf8f(0x366,'\x4b\x54\x4c\x58')+'\x65\x29\x2e',_0x413b41['\x7a\x68']=_0x4947ba[_0x5caf8f(0x508,'\x4a\x6f\x48\x4d')],_0x48aa54[_0x5caf8f(0x374,'\x46\x6b\x26\x5e')+_0x5caf8f(0x4a0,'\x67\x6e\x43\x63')](_0xd12bc9,JSON[_0x5caf8f(0x4c0,'\x38\x58\x35\x5a')+'\x79'](_0x413b41,null,-0x253b+-0x9*0x2ce+0x3e7b));const _0x5c7bf6={};return _0x5c7bf6['\x6f\x6b']=!![],_0x5c7bf6['\x6b\x69\x6e\x64']=_0x4947ba[_0x5caf8f(0x267,'\x43\x71\x4f\x50')],_0x5c7bf6[_0x5caf8f(0xf9,'\x6e\x25\x6a\x53')]='',_0x5c7bf6;}}catch(_0x1e4f00){}else{const _0x3e1013=_0x4947ba[_0x5caf8f(0x99,'\x43\x71\x4f\x50')][_0x5caf8f(0x1b9,'\x29\x6b\x52\x6e')]('\x7c');let _0x3a9644=-0x797+-0xaaf*0x1+0x1*0x1246;while(!![]){switch(_0x3e1013[_0x3a9644++]){case'\x30':_0x48b2f7=!![];continue;case'\x31':if(_0x10e782)return;continue;case'\x32':const _0x534ae4={};_0x534ae4[_0x5caf8f(0x28a,'\x75\x74\x38\x6c')]=_0x5b45b8,_0x534ae4[_0x5caf8f(0x493,'\x35\x6f\x34\x28')]=_0x312f71,_0x534ae4[_0x5caf8f(0x3de,'\x6e\x25\x6a\x53')]=_0x4103bf,_0x534ae4[_0x5caf8f(0x422,'\x71\x76\x77\x72')]=_0x304e3b,_0x534ae4[_0x5caf8f(0x397,'\x59\x54\x4a\x6c')+'\x6f\x72']=_0x1b35d2,_0x534ae4['\x74\x72\x75\x6e\x63\x61\x74\x65'+'\x64']=_0xa4107d,_0x3c0124(_0x534ae4);continue;case'\x33':_0x2ef9ae(_0x41d93a);continue;case'\x34':if(ungKhp[_0x5caf8f(0x459,'\x63\x56\x41\x66')](_0x29d8d5,0x4d1+0xe16+-0x12e7))_0x387f71=![];continue;case'\x35':ungKhp[_0x5caf8f(0x168,'\x47\x47\x32\x21')](_0x52d8a5,_0x266a15);continue;case'\x36':ungKhp['\x53\x77\x78\x70\x48'](_0x4fb5f4,_0x5b11a7);continue;}break;}}}if(_0x4947ba[_0x5caf8f(0x3c5,'\x6d\x56\x65\x57')](_0x3e1b81,_0x29aac8)){const _0x1bfd76={};return _0x1bfd76['\x6f\x6b']=!![],_0x1bfd76[_0x5caf8f(0x119,'\x4b\x54\x4c\x58')]=_0x4947ba[_0x5caf8f(0x257,'\x48\x5d\x5d\x79')],_0x1bfd76['\x72\x65\x61\x73\x6f\x6e']='',_0x1bfd76;}}let _0x4523d5;if(_0x41d850)_0x4523d5=_0x4947ba[_0x5caf8f(0x273,'\x57\x39\x62\x51')];else{if(!_0x142c18)_0x4523d5=_0x5caf8f(0x55c,'\x4b\x54\x4c\x58')+_0x5caf8f(0x3ca,'\x6d\x24\x62\x47')+'\x65\x72';else{if(_0x4947ba['\x77\x48\x66\x47\x43'](_0x5bda6e,null))_0x4523d5=_0x4947ba[_0x5caf8f(0x434,'\x29\x6b\x52\x6e')];else{if(_0x4947ba[_0x5caf8f(0x9e,'\x4b\x54\x4c\x58')](_0x5bda6e,_0x4947ba[_0x5caf8f(0x27b,'\x33\x65\x65\x5d')]))_0x4523d5=_0x4947ba['\x6b\x4f\x42\x42\x47'];else{if(_0x4947ba[_0x5caf8f(0x4a8,'\x52\x43\x65\x48')](_0x5bda6e,_0x4947ba[_0x5caf8f(0x332,'\x70\x52\x38\x39')]))_0x4523d5=_0x5caf8f(0x14f,'\x36\x6e\x6d\x37')+_0x5caf8f(0x46a,'\x6a\x68\x4b\x54');else _0x4523d5=_0x4947ba[_0x5caf8f(0x41a,'\x41\x4a\x41\x76')];}}}}const _0x301324={};return _0x301324['\x6f\x6b']=![],_0x301324['\x6b\x69\x6e\x64']=_0x4523d5,_0x301324['\x72\x65\x61\x73\x6f\x6e']='\x63\x6f\x64\x65\x3d'+_0x632814[_0x5caf8f(0x13c,'\x33\x65\x65\x5d')]+(_0x5caf8f(0x534,'\x71\x76\x77\x72')+_0x5caf8f(0x2b2,'\x29\x59\x47\x50'))+_0x142c18+(_0x5caf8f(0x182,'\x6b\x40\x41\x7a')+_0x5caf8f(0x373,'\x6e\x25\x6a\x53'))+_0x5bda6e,_0x301324;}function _0x144255(_0x3be1e4){const _0x10152e=_0xf7d584,_0x400bc1={};_0x400bc1[_0x10152e(0x249,'\x52\x43\x65\x48')]=function(_0x869214,_0xd15a22){return _0x869214===_0xd15a22;},_0x400bc1[_0x10152e(0x337,'\x72\x30\x67\x76')]=_0x10152e(0x26d,'\x6d\x24\x62\x47'),_0x400bc1[_0x10152e(0x32f,'\x4b\x54\x4c\x58')]=_0x10152e(0xd1,'\x5a\x46\x45\x52'),_0x400bc1[_0x10152e(0x504,'\x4a\x6f\x48\x4d')]=_0x10152e(0x176,'\x72\x30\x67\x76'),_0x400bc1[_0x10152e(0x107,'\x67\x6e\x43\x63')]=_0x10152e(0x398,'\x52\x43\x65\x48'),_0x400bc1[_0x10152e(0x4b0,'\x47\x47\x32\x21')]=_0x10152e(0x400,'\x75\x74\x38\x6c');const _0x59433b=_0x400bc1;if(!_0x3be1e4||!_0x48aa54[_0x10152e(0x4b9,'\x4e\x5b\x25\x31')+'\x6e\x63'](_0x3be1e4))return null;try{if(_0x59433b[_0x10152e(0x327,'\x31\x40\x65\x5b')]===_0x59433b[_0x10152e(0x3c1,'\x70\x32\x73\x47')]){if(_0x134e12)_0x55a77d=![];else{if(_0x98f11a==='\x5c')_0x546d9f=!![];else{if(BhsQhb[_0x10152e(0x440,'\x57\x39\x62\x51')](_0x17f9a4,'\x22'))_0x4f8d79=![];}}}else{const _0x395546=JSON[_0x10152e(0x2e5,'\x59\x54\x4a\x6c')](_0x48aa54[_0x10152e(0x1c0,'\x55\x64\x62\x35')+_0x10152e(0x569,'\x38\x58\x35\x5a')](_0x3be1e4,_0x10152e(0x325,'\x46\x6b\x26\x5e')));if(_0x395546&&_0x395546[_0x10152e(0x2fc,'\x41\x4a\x41\x76')]===_0x59433b[_0x10152e(0xb0,'\x43\x71\x4f\x50')])return _0x59433b['\x41\x61\x57\x70\x52'];if(_0x395546&&_0x395546[_0x10152e(0x1a3,'\x30\x23\x48\x64')]===_0x59433b[_0x10152e(0x37c,'\x4d\x39\x33\x56')])return _0x59433b[_0x10152e(0x561,'\x51\x26\x49\x45')];return _0x59433b[_0x10152e(0xfd,'\x36\x6e\x6d\x37')];}}catch(_0x595d99){return _0x59433b['\x61\x47\x46\x51\x79'];}}function _0x3e1b81(_0xab06ab){const _0x120028=_0xf7d584,_0x3f283d={};_0x3f283d[_0x120028(0x560,'\x70\x52\x38\x39')]=_0x120028(0x124,'\x51\x26\x49\x45')+_0x120028(0x3bd,'\x70\x52\x38\x39')+_0x120028(0xe9,'\x36\x6e\x6d\x37')+_0x120028(0x30e,'\x70\x52\x38\x39'),_0x3f283d[_0x120028(0x184,'\x55\x21\x6e\x62')]=_0x120028(0x476,'\x5e\x66\x77\x46'),_0x3f283d[_0x120028(0x4c2,'\x30\x23\x48\x64')]=function(_0x11f347,_0x677373){return _0x11f347!==_0x677373;},_0x3f283d['\x67\x44\x48\x6a\x46']=_0x120028(0x176,'\x72\x30\x67\x76'),_0x3f283d[_0x120028(0x163,'\x70\x32\x73\x47')]=_0x120028(0x135,'\x24\x67\x53\x39');const _0x1e9f34=_0x3f283d;try{if(!Number[_0x120028(0x537,'\x6f\x48\x41\x45')](_0xab06ab))return![];const _0x299bc9=_0x269de0[_0x120028(0x3be,'\x6b\x40\x41\x7a')](_0x5f55e7(),_0x1e9f34[_0x120028(0x326,'\x4d\x39\x33\x56')]);if(!_0x48aa54[_0x120028(0x3ac,'\x7a\x56\x5b\x28')+'\x6e\x63'](_0x299bc9))return![];const _0x596fab=JSON[_0x120028(0x56a,'\x7a\x56\x5b\x28')](_0x48aa54['\x72\x65\x61\x64\x46\x69\x6c\x65'+'\x53\x79\x6e\x63'](_0x299bc9,_0x1e9f34['\x47\x7a\x7a\x71\x52'])),_0x40c282=_0x596fab&&_0x596fab[_0x120028(0x38e,'\x63\x56\x41\x66')+_0x120028(0x401,'\x32\x34\x54\x6d')];if(!_0x40c282||!_0x40c282[_0x120028(0x17d,'\x4d\x39\x33\x56')])return![];if(_0x1e9f34[_0x120028(0xc8,'\x7a\x56\x5b\x28')](_0x40c282[_0x120028(0x1f2,'\x7a\x56\x5b\x28')][_0x120028(0x2bb,'\x4d\x39\x33\x56')],_0x1e9f34['\x67\x44\x48\x6a\x46']))return![];if(_0x40c282[_0x120028(0x28d,'\x79\x76\x62\x5d')][_0x120028(0x256,'\x6f\x48\x41\x45')+_0x120028(0x321,'\x75\x74\x38\x6c')])return![];const _0x4c6004=Date[_0x120028(0x117,'\x4a\x6f\x48\x4d')](_0x40c282['\x61\x74']||-0x8b*0x1+0x30b*0x3+-0x896);return Number[_0x120028(0xfb,'\x38\x58\x35\x5a')](_0x4c6004)&&_0x4c6004>=_0xab06ab;}catch(_0x2bad36){return _0x1e9f34[_0x120028(0x285,'\x36\x6e\x6d\x37')](_0x1e9f34[_0x120028(0x24e,'\x32\x34\x54\x6d')],_0x120028(0x13d,'\x6f\x48\x41\x45'))?![]:null;}}function _0x4691bc(_0x13f44d,_0x511921,_0xf1da63){const _0x870a8=_0xf7d584,_0x20f85f={'\x7a\x56\x58\x61\x4a':function(_0x518184){return _0x518184();},'\x42\x48\x6a\x58\x75':function(_0x214095,_0x3bb10f){return _0x214095(_0x3bb10f);},'\x41\x6f\x53\x69\x6e':function(_0x48fce8,_0x174242){return _0x48fce8||_0x174242;}};try{const _0x24adb0=_0x20f85f[_0x870a8(0x2d1,'\x55\x64\x62\x35')](_0x5f55e7),_0x287039={};_0x287039[_0x870a8(0x44c,'\x69\x51\x48\x5d')+'\x65']=!![];if(!_0x48aa54[_0x870a8(0x4dd,'\x38\x58\x35\x5a')+'\x6e\x63'](_0x24adb0))_0x48aa54[_0x870a8(0x563,'\x31\x40\x65\x5b')+'\x63'](_0x24adb0,_0x287039);_0x48aa54[_0x870a8(0xac,'\x72\x30\x67\x76')+'\x6c\x65\x53\x79\x6e\x63'](_0x269de0[_0x870a8(0x426,'\x72\x30\x67\x76')](_0x24adb0,_0x870a8(0x4c3,'\x4e\x5b\x25\x31')+_0x870a8(0xd0,'\x5a\x46\x45\x52')+_0x870a8(0x340,'\x49\x32\x78\x6f')+'\x6c'),JSON[_0x870a8(0x20e,'\x35\x6f\x34\x28')+'\x79']({'\x61\x74':new Date()[_0x870a8(0x2b9,'\x79\x76\x62\x5d')+_0x870a8(0x558,'\x55\x21\x6e\x62')](),'\x63\x79\x63\x6c\x65':_0x13f44d,'\x74\x61\x67':_0x511921,'\x72\x65\x61\x73\x6f\x6e':_0x20f85f[_0x870a8(0x2a5,'\x47\x47\x32\x21')](String,_0x20f85f[_0x870a8(0x1f4,'\x4b\x54\x4c\x58')](_0xf1da63,''))[_0x870a8(0x336,'\x4d\x39\x33\x56')](0x935+0x817+-0x114c,-0x3d0*-0x1+0xa03*0x3+-0x1fe5)})+'\x0a',_0x870a8(0x3d4,'\x4a\x6f\x48\x4d'));}catch(_0x247ea2){}}const _0x1725d1={'\x63\x6c\x61\x75\x64\x65\x2d\x63\x6f\x64\x65':{'\x64\x65\x6c\x69\x76\x65\x72\x73\x54\x61\x73\x6b\x56\x69\x61':_0xf7d584(0xf1,'\x63\x56\x41\x66'),'\x62\x75\x69\x6c\x64\x41\x72\x67\x73'({sessionId:_0x3af7ab,statusFile:_0x1da765,cycleTag:_0x4153ee,settingsPath:_0x21f43c}){const _0x36fd06=_0xf7d584,_0xccb60={'\x70\x71\x79\x52\x57':_0x36fd06(0x21f,'\x52\x43\x65\x48'),'\x61\x55\x6c\x5a\x66':_0x36fd06(0x3d3,'\x38\x58\x35\x5a'),'\x48\x6f\x55\x7a\x70':_0x36fd06(0x50d,'\x4e\x5b\x25\x31'),'\x4c\x55\x44\x4d\x6d':_0x36fd06(0x328,'\x35\x6f\x34\x28'),'\x6f\x59\x5a\x55\x77':_0x36fd06(0x15a,'\x6d\x56\x65\x57')+_0x36fd06(0x316,'\x25\x51\x28\x64')+_0x36fd06(0x441,'\x71\x76\x77\x72')+_0x36fd06(0x4c9,'\x79\x76\x62\x5d'),'\x44\x63\x43\x6e\x5a':_0x36fd06(0x2ac,'\x6b\x40\x41\x7a')+_0x36fd06(0x2a1,'\x69\x51\x48\x5d')+'\x29','\x6f\x4b\x6f\x74\x77':'\x42\x61\x73\x68\x28\x67\x69\x74'+_0x36fd06(0x271,'\x6a\x52\x43\x45'),'\x63\x70\x75\x44\x52':'\x42\x61\x73\x68\x28\x67\x69\x74'+_0x36fd06(0x4aa,'\x4a\x6f\x48\x4d')+_0x36fd06(0xe7,'\x29\x59\x47\x50'),'\x61\x75\x56\x51\x6b':_0x36fd06(0x261,'\x41\x4a\x41\x76')+'\x20\x6c\x73\x2d\x66\x69\x6c\x65'+_0x36fd06(0x4ef,'\x29\x59\x47\x50'),'\x4b\x6d\x4e\x44\x71':_0x36fd06(0x338,'\x59\x54\x4a\x6c'),'\x52\x59\x66\x48\x43':_0x36fd06(0xeb,'\x31\x40\x65\x5b')+_0x36fd06(0x294,'\x79\x76\x62\x5d')+'\x65','\x77\x66\x77\x79\x49':_0x36fd06(0x102,'\x33\x65\x65\x5d')+'\x67\x73','\x46\x4f\x61\x51\x41':_0x36fd06(0x3c3,'\x71\x76\x77\x72')+_0x36fd06(0xe6,'\x6e\x25\x6a\x53'),'\x4f\x66\x52\x48\x76':_0x36fd06(0x138,'\x71\x76\x77\x72'),'\x4e\x5a\x54\x6a\x6f':'\x73\x6f\x6e\x6e\x65\x74','\x62\x77\x6b\x61\x61':_0x36fd06(0x446,'\x29\x6b\x52\x6e')+_0x36fd06(0x473,'\x6d\x24\x62\x47'),'\x45\x67\x53\x4c\x71':_0x36fd06(0xd6,'\x43\x71\x4f\x50')+'\x72','\x71\x6a\x4d\x57\x4a':function(_0xe8038){return _0xe8038();},'\x78\x7a\x62\x66\x79':_0x36fd06(0x297,'\x30\x23\x48\x64')+_0x36fd06(0xa5,'\x7a\x56\x5b\x28'),'\x69\x4a\x45\x69\x75':function(_0x34cf55,_0x49f832){return _0x34cf55(_0x49f832);},'\x48\x45\x7a\x43\x4b':function(_0x1bbb9d,_0x1bd2f9){return _0x1bbb9d===_0x1bd2f9;},'\x6e\x76\x45\x6a\x55':_0x36fd06(0x39f,'\x71\x76\x77\x72'),'\x43\x56\x4c\x78\x65':'\x63\x6c\x61\x75\x64\x65\x2d\x63'+_0x36fd06(0x4db,'\x4e\x5b\x25\x31')},_0x4db210=[_0xccb60[_0x36fd06(0x1e2,'\x62\x32\x31\x5a')],_0xccb60[_0x36fd06(0x1b6,'\x70\x32\x73\x47')],_0x36fd06(0x478,'\x5e\x66\x77\x46'),_0xccb60[_0x36fd06(0x38b,'\x4a\x6f\x48\x4d')],_0xccb60[_0x36fd06(0x15e,'\x38\x58\x35\x5a')],_0xccb60[_0x36fd06(0x1e3,'\x5e\x66\x77\x46')],_0xccb60[_0x36fd06(0x566,'\x63\x56\x41\x66')],_0xccb60[_0x36fd06(0x10a,'\x55\x64\x62\x35')],_0x36fd06(0x16c,'\x43\x71\x4f\x50')+_0x36fd06(0x1c2,'\x59\x54\x4a\x6c'),_0xccb60['\x63\x70\x75\x44\x52'],_0xccb60[_0x36fd06(0x1ee,'\x29\x59\x47\x50')]],_0xd2c5ba=['\x2d\x70','\x2d\x2d\x6f\x75\x74\x70\x75\x74'+_0x36fd06(0x20a,'\x55\x21\x6e\x62'),_0xccb60[_0x36fd06(0x2fe,'\x5e\x66\x77\x46')],_0xccb60[_0x36fd06(0x18d,'\x24\x67\x53\x39')],_0x36fd06(0x52d,'\x79\x76\x62\x5d')+_0x36fd06(0x293,'\x33\x65\x65\x5d'),_0xccb60[_0x36fd06(0x3e8,'\x30\x23\x48\x64')],_0x21f43c,_0xccb60[_0x36fd06(0x31b,'\x5e\x66\x77\x46')],..._0x4db210,_0xccb60[_0x36fd06(0xca,'\x79\x76\x62\x5d')],process.env.EVOLVE_HAND_MODEL||_0xccb60[_0x36fd06(0x11c,'\x6a\x68\x4b\x54')],_0xccb60[_0x36fd06(0x175,'\x57\x6f\x38\x29')],_0x3af7ab,_0xccb60[_0x36fd06(0x1fd,'\x7a\x56\x5b\x28')],_0xccb60[_0x36fd06(0x4e6,'\x48\x5d\x5d\x79')](_0x57848d),_0xccb60[_0x36fd06(0x308,'\x4b\x54\x4c\x58')],_0xccb60[_0x36fd06(0x55e,'\x79\x76\x62\x5d')](String,process.env.EVOLVE_HAND_MAX_TURNS||0x1*-0x2cd+0x1b*-0x86+0x112b),..._0xccb60[_0x36fd06(0x3a0,'\x38\x58\x35\x5a')](_0xccb60[_0x36fd06(0x20f,'\x67\x6e\x43\x63')](String,process.env.EVOLVE_HAND_DANGEROUS||''),_0xccb60[_0x36fd06(0xda,'\x6d\x24\x62\x47')])?['\x2d\x2d\x64\x61\x6e\x67\x65\x72'+_0x36fd06(0xe3,'\x29\x59\x47\x50')+'\x69\x70\x2d\x70\x65\x72\x6d\x69'+'\x73\x73\x69\x6f\x6e\x73']:[]];return{'\x62\x69\x6e':_0xccb60[_0x36fd06(0x276,'\x7a\x56\x5b\x28')](_0x3b370a,_0xccb60[_0x36fd06(0x2de,'\x6a\x68\x4b\x54')]),'\x61\x72\x67\x73':_0xd2c5ba,'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':_0xccb60[_0x36fd06(0x367,'\x32\x34\x54\x6d')](String,_0x4153ee),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x1da765}};}},'\x6f\x70\x65\x6e\x63\x6c\x61\x77':{'\x64\x65\x6c\x69\x76\x65\x72\x73\x54\x61\x73\x6b\x56\x69\x61':_0xf7d584(0x4e0,'\x29\x6b\x52\x6e'),'\x62\x75\x69\x6c\x64\x41\x72\x67\x73'({sessionId:_0x59699f,statusFile:_0x1d903d,cycleTag:_0x4fbdad,taskText:_0x8bcc08}){const _0x3f1922=_0xf7d584,_0x21b7db={'\x50\x78\x4f\x6e\x46':_0x3f1922(0x39b,'\x79\x76\x62\x5d'),'\x72\x66\x73\x55\x76':_0x3f1922(0x3b3,'\x33\x65\x65\x5d'),'\x46\x4a\x68\x5a\x61':_0x3f1922(0x4d3,'\x73\x35\x40\x78'),'\x62\x4a\x61\x7a\x6e':_0x3f1922(0x4f0,'\x41\x4a\x41\x76')+_0x3f1922(0x51c,'\x55\x64\x62\x35'),'\x58\x79\x4e\x54\x43':_0x3f1922(0xc0,'\x4d\x39\x33\x56')+'\x74','\x64\x46\x41\x79\x74':function(_0x49161a,_0x59946b){return _0x49161a(_0x59946b);}};return{'\x62\x69\x6e':_0x3b370a(_0x3f1922(0x9b,'\x4e\x5b\x25\x31')),'\x61\x72\x67\x73':[_0x21b7db[_0x3f1922(0x2ee,'\x70\x52\x38\x39')],_0x21b7db[_0x3f1922(0x27d,'\x72\x30\x67\x76')],_0x21b7db[_0x3f1922(0x123,'\x51\x26\x49\x45')],_0x21b7db[_0x3f1922(0x497,'\x32\x34\x54\x6d')],_0x59699f,'\x2d\x6d',_0x8bcc08,_0x21b7db['\x58\x79\x4e\x54\x43'],'\x36\x30\x30'],'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':_0x21b7db['\x64\x46\x41\x79\x74'](String,_0x4fbdad),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x1d903d}};}},'\x63\x6f\x64\x65\x78':{'\x64\x65\x6c\x69\x76\x65\x72\x73\x54\x61\x73\x6b\x56\x69\x61':_0xf7d584(0xec,'\x67\x6e\x43\x63'),'\x73\x6f\x6c\x69\x64\x69\x66\x79\x50\x72\x6f\x6f\x66':'\x73\x74\x61\x74\x65','\x62\x75\x69\x6c\x64\x41\x72\x67\x73'({statusFile:_0x2d2e07,cycleTag:_0x10b430}){const _0x3cc966=_0xf7d584,_0x36fb39={'\x57\x71\x52\x50\x72':function(_0xb3b4f,_0xc8bddb){return _0xb3b4f===_0xc8bddb;},'\x53\x7a\x55\x66\x7a':function(_0x562ea4,_0x4a596e){return _0x562ea4(_0x4a596e);},'\x44\x64\x44\x43\x66':_0x3cc966(0x253,'\x57\x39\x62\x51')+_0x3cc966(0x100,'\x51\x26\x49\x45')+'\x73\x73','\x4c\x64\x4f\x4c\x42':_0x3cc966(0x1d0,'\x48\x5d\x5d\x79'),'\x6d\x73\x52\x71\x6a':function(_0x875292){return _0x875292();},'\x55\x77\x55\x54\x51':_0x3cc966(0x322,'\x41\x4a\x41\x76')+_0x3cc966(0x305,'\x57\x39\x62\x51'),'\x52\x70\x73\x6b\x65':function(_0x332114,_0x1de5a7){return _0x332114(_0x1de5a7);},'\x4f\x57\x65\x63\x50':_0x3cc966(0x4c6,'\x6d\x24\x62\x47'),'\x54\x47\x42\x7a\x54':function(_0x4effd2,_0x395211){return _0x4effd2(_0x395211);}},_0x5f4d2e=_0x36fb39[_0x3cc966(0x279,'\x4d\x39\x33\x56')](_0x36fb39[_0x3cc966(0x43d,'\x79\x76\x62\x5d')](String,process.env.EVOLVE_HAND_DANGEROUS||''),_0x3cc966(0x2f5,'\x52\x43\x65\x48'))?_0x36fb39[_0x3cc966(0xba,'\x57\x39\x62\x51')]:_0x3cc966(0x23e,'\x4b\x54\x4c\x58')+'\x65\x2d\x77\x72\x69\x74\x65',_0x375766=[_0x36fb39[_0x3cc966(0x22c,'\x7a\x56\x5b\x28')],'\x2d\x73',_0x5f4d2e,'\x2d\x63',_0x3cc966(0x242,'\x25\x51\x28\x64')+_0x3cc966(0x423,'\x71\x76\x77\x72')+_0x3cc966(0x4c4,'\x5e\x66\x77\x46'),'\x2d\x43',_0x36fb39[_0x3cc966(0x557,'\x30\x23\x48\x64')](_0x57848d),_0x3cc966(0x1cf,'\x31\x40\x65\x5b')+'\x72',_0x36fb39[_0x3cc966(0x379,'\x72\x30\x67\x76')](_0x5f55e7),_0x3cc966(0x1aa,'\x55\x21\x6e\x62')+_0x3cc966(0x245,'\x57\x6f\x38\x29')+_0x3cc966(0x500,'\x57\x39\x62\x51'),_0x36fb39[_0x3cc966(0x320,'\x75\x74\x38\x6c')],...process.env.EVOLVE_HAND_MODEL?['\x2d\x6d',process.env.EVOLVE_HAND_MODEL]:[]];return{'\x62\x69\x6e':_0x36fb39[_0x3cc966(0xae,'\x73\x35\x40\x78')](_0x3b370a,_0x36fb39[_0x3cc966(0xf5,'\x55\x21\x6e\x62')]),'\x61\x72\x67\x73':_0x375766,'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':_0x36fb39[_0x3cc966(0x28b,'\x55\x64\x62\x35')](String,_0x10b430),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x2d2e07}};}},'\x6f\x70\x65\x6e\x63\x6f\x64\x65':{'\x64\x65\x6c\x69\x76\x65\x72\x73\x54\x61\x73\x6b\x56\x69\x61':_0xf7d584(0x4ad,'\x62\x32\x31\x5a'),'\x73\x6f\x6c\x69\x64\x69\x66\x79\x50\x72\x6f\x6f\x66':_0xf7d584(0x54c,'\x63\x56\x41\x66'),'\x62\x75\x69\x6c\x64\x41\x72\x67\x73'({statusFile:_0x230b0e,cycleTag:_0x5e40cb,taskText:_0x176931}){const _0x42c1dc=_0xf7d584,_0x597497={'\x6d\x54\x49\x71\x61':_0x42c1dc(0x156,'\x4d\x39\x33\x56'),'\x70\x4c\x51\x54\x41':'\x2d\x2d\x64\x61\x6e\x67\x65\x72'+_0x42c1dc(0x451,'\x70\x52\x38\x39')+_0x42c1dc(0x243,'\x32\x34\x54\x6d')+_0x42c1dc(0x1b3,'\x6f\x48\x41\x45'),'\x4b\x55\x6a\x6c\x53':'\x2d\x2d\x64\x69\x72','\x71\x6f\x4f\x6f\x6b':function(_0x353c6b,_0x1988a5){return _0x353c6b(_0x1988a5);},'\x7a\x6a\x70\x55\x64':_0x42c1dc(0x41e,'\x7a\x56\x5b\x28')},_0x3ee967=[_0x597497[_0x42c1dc(0x236,'\x6f\x48\x41\x45')],_0x597497[_0x42c1dc(0x2bf,'\x5a\x46\x45\x52')],_0x597497['\x4b\x55\x6a\x6c\x53'],_0x57848d(),...process.env.EVOLVE_HAND_MODEL?['\x2d\x6d',process.env.EVOLVE_HAND_MODEL]:[],'\x2d\x2d',_0x176931];return{'\x62\x69\x6e':_0x597497[_0x42c1dc(0x2da,'\x49\x32\x78\x6f')](_0x3b370a,_0x597497[_0x42c1dc(0x352,'\x5a\x46\x45\x52')]),'\x61\x72\x67\x73':_0x3ee967,'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':String(_0x5e40cb),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x230b0e}};}},'\x63\x6c\x61\x75\x64\x65\x2d\x64\x69\x73\x74\x69\x6c\x6c':{'\x64\x65\x6c\x69\x76\x65\x72\x73\x54\x61\x73\x6b\x56\x69\x61':_0xf7d584(0x4ed,'\x43\x71\x4f\x50'),'\x62\x75\x69\x6c\x64\x41\x72\x67\x73'({sessionId:_0xb81943}){const _0x40eb5d=_0xf7d584,_0x3f11a0={'\x6f\x62\x6c\x47\x7a':_0x40eb5d(0x120,'\x7a\x56\x5b\x28')+_0x40eb5d(0x3c8,'\x63\x56\x41\x66'),'\x4d\x53\x64\x76\x43':_0x40eb5d(0x239,'\x73\x35\x40\x78')+'\x73\x69\x6f\x6e\x2d\x6d\x6f\x64'+'\x65','\x46\x49\x43\x6f\x79':_0x40eb5d(0x134,'\x51\x26\x49\x45'),'\x7a\x6a\x72\x49\x48':_0x40eb5d(0x51f,'\x4b\x61\x5d\x48'),'\x4e\x53\x55\x77\x53':_0x40eb5d(0x139,'\x38\x58\x35\x5a')+_0x40eb5d(0x4a5,'\x72\x30\x67\x76'),'\x6a\x43\x78\x45\x59':_0x40eb5d(0xd9,'\x29\x59\x47\x50')+'\x72\x6e\x73','\x4c\x58\x5a\x6a\x51':function(_0x4059f3,_0x100bba){return _0x4059f3(_0x100bba);},'\x79\x4f\x55\x67\x79':function(_0x262846,_0x2afd3b,_0x35572c){return _0x262846(_0x2afd3b,_0x35572c);},'\x51\x41\x51\x53\x65':function(_0x532ff8,_0x1021df){return _0x532ff8(_0x1021df);},'\x72\x6e\x53\x65\x69':_0x40eb5d(0x559,'\x5e\x66\x77\x46')+_0x40eb5d(0xdc,'\x46\x6b\x26\x5e')},_0x29ffaa=['\x2d\x70',_0x3f11a0[_0x40eb5d(0x475,'\x6d\x24\x62\x47')],_0x40eb5d(0xdb,'\x70\x52\x38\x39'),_0x3f11a0[_0x40eb5d(0x255,'\x5a\x46\x45\x52')],_0x3f11a0[_0x40eb5d(0x152,'\x72\x30\x67\x76')],'\x2d\x2d\x6d\x6f\x64\x65\x6c',process.env.EVOLVE_DISTILL_MODEL||_0x3f11a0[_0x40eb5d(0x3e5,'\x33\x65\x65\x5d')],_0x3f11a0[_0x40eb5d(0x1eb,'\x70\x52\x38\x39')],_0xb81943,_0x3f11a0['\x6a\x43\x78\x45\x59'],_0x3f11a0[_0x40eb5d(0x317,'\x32\x34\x54\x6d')](String,_0x3f11a0[_0x40eb5d(0x3c6,'\x32\x34\x54\x6d')](parseInt,process.env.EVOLVE_DISTILL_MAX_TURNS||'\x33',0x131*-0xc+-0x13*0x9d+-0x19fd*-0x1)||0xab*-0x13+-0x82*0x3b+-0x1555*-0x2)];return{'\x62\x69\x6e':_0x3f11a0[_0x40eb5d(0x1cb,'\x36\x6e\x6d\x37')](_0x3b370a,_0x3f11a0[_0x40eb5d(0x162,'\x6d\x24\x62\x47')]),'\x61\x72\x67\x73':_0x29ffaa,'\x65\x6e\x76':{}};}}};async function _0x260bd4(_0xbead8f={}){const _0x510bd0=_0xf7d584,_0x3afdf3={'\x62\x76\x74\x7a\x63':_0x510bd0(0x2a6,'\x75\x74\x38\x6c'),'\x75\x71\x66\x74\x6b':_0x510bd0(0x121,'\x49\x32\x78\x6f'),'\x61\x77\x42\x64\x70':_0x510bd0(0x2c9,'\x70\x32\x73\x47'),'\x76\x46\x74\x44\x4b':_0x510bd0(0x347,'\x6e\x25\x6a\x53')+_0x510bd0(0x188,'\x36\x6e\x6d\x37')+_0x510bd0(0xfe,'\x67\x6e\x43\x63')+_0x510bd0(0x3ed,'\x55\x21\x6e\x62'),'\x47\x62\x4b\x74\x79':_0x510bd0(0x417,'\x63\x56\x41\x66')+'\x20\x61\x64\x64\x2a\x29','\x68\x6b\x58\x43\x68':_0x510bd0(0x3f4,'\x33\x65\x65\x5d')+_0x510bd0(0x418,'\x6a\x52\x43\x45')+_0x510bd0(0x2ef,'\x5e\x66\x77\x46'),'\x52\x43\x78\x43\x4a':_0x510bd0(0x160,'\x51\x26\x49\x45')+_0x510bd0(0x39a,'\x70\x32\x73\x47')+_0x510bd0(0x25b,'\x71\x76\x77\x72'),'\x6f\x6d\x55\x57\x68':_0x510bd0(0x15b,'\x59\x54\x4a\x6c')+'\x2d\x66\x6f\x72\x6d\x61\x74','\x44\x6a\x61\x4e\x4d':_0x510bd0(0xcf,'\x75\x74\x38\x6c'),'\x67\x55\x54\x75\x55':'\x2d\x2d\x70\x65\x72\x6d\x69\x73'+_0x510bd0(0x259,'\x72\x30\x67\x76')+'\x65','\x62\x4d\x6c\x71\x6b':_0x510bd0(0x2d9,'\x63\x56\x41\x66')+'\x67\x73','\x47\x4d\x4c\x4e\x6f':_0x510bd0(0xc3,'\x25\x51\x28\x64'),'\x44\x4c\x62\x77\x63':_0x510bd0(0x495,'\x30\x23\x48\x64'),'\x6c\x49\x57\x78\x67':_0x510bd0(0x516,'\x46\x6b\x26\x5e')+'\x72','\x6e\x41\x4d\x4d\x73':function(_0x32fd45){return _0x32fd45();},'\x49\x54\x68\x53\x74':_0x510bd0(0x31a,'\x62\x32\x31\x5a')+_0x510bd0(0x36e,'\x29\x59\x47\x50'),'\x67\x72\x71\x65\x62':function(_0x58ac65,_0xd5e14f){return _0x58ac65(_0xd5e14f);},'\x63\x6f\x64\x70\x66':function(_0x3d995c,_0x1465bf){return _0x3d995c===_0x1465bf;},'\x62\x6b\x49\x71\x6c':_0x510bd0(0x499,'\x33\x65\x65\x5d'),'\x4c\x4e\x6c\x76\x53':_0x510bd0(0x498,'\x48\x5d\x5d\x79')+_0x510bd0(0xf8,'\x29\x6b\x52\x6e'),'\x64\x66\x49\x5a\x7a':function(_0x3b36bc,_0x10294e){return _0x3b36bc(_0x10294e);},'\x46\x4d\x78\x77\x79':function(_0x15e67c,_0x4ea1e3){return _0x15e67c===_0x4ea1e3;},'\x4a\x4f\x53\x72\x4c':function(_0x17caa2,_0x1ce1c9){return _0x17caa2===_0x1ce1c9;},'\x72\x50\x68\x6a\x41':function(_0x3afc83,_0x375b38){return _0x3afc83===_0x375b38;},'\x4c\x72\x6d\x43\x68':function(_0x4bcd1d,_0x5855b3){return _0x4bcd1d+_0x5855b3;},'\x57\x68\x42\x4e\x46':_0x510bd0(0x4fa,'\x4d\x39\x33\x56'),'\x74\x4f\x62\x41\x67':function(_0x4f3036,_0x4e9b50){return _0x4f3036!==_0x4e9b50;},'\x67\x67\x41\x70\x7a':_0x510bd0(0x143,'\x6d\x56\x65\x57'),'\x72\x6d\x70\x67\x76':_0x510bd0(0x23c,'\x57\x6f\x38\x29'),'\x46\x74\x69\x66\x48':function(_0x3b2897,_0x2bf871){return _0x3b2897+_0x2bf871;},'\x43\x73\x75\x44\x71':_0x510bd0(0x21d,'\x33\x65\x65\x5d')+_0x510bd0(0x1a1,'\x73\x35\x40\x78')+_0x510bd0(0x3f7,'\x71\x76\x77\x72')+_0x510bd0(0x509,'\x6f\x48\x41\x45')+_0x510bd0(0x32d,'\x73\x35\x40\x78')+'\x45\x5f\x4f\x50\x45\x4e\x43\x4f'+'\x44\x45\x5f\x44\x41\x4e\x47\x45'+_0x510bd0(0x280,'\x6b\x40\x41\x7a')+_0x510bd0(0x324,'\x4d\x39\x33\x56')+_0x510bd0(0x527,'\x29\x59\x47\x50')+_0x510bd0(0x19f,'\x4a\x6f\x48\x4d'),'\x67\x42\x57\x65\x4c':_0x510bd0(0x177,'\x6b\x40\x41\x7a')+'\x69\x6e\x65\x64\x20\x70\x65\x72'+_0x510bd0(0x27e,'\x49\x32\x78\x6f')+_0x510bd0(0x2c2,'\x25\x51\x28\x64')+_0x510bd0(0x466,'\x49\x32\x78\x6f')+_0x510bd0(0x4ba,'\x5e\x66\x77\x46')+'\x2d\x2d\x64\x61\x6e\x67\x65\x72'+_0x510bd0(0x451,'\x70\x52\x38\x39')+_0x510bd0(0x296,'\x69\x51\x48\x5d')+_0x510bd0(0x161,'\x51\x26\x49\x45')+_0x510bd0(0xa9,'\x75\x74\x38\x6c'),'\x4e\x4c\x77\x4b\x73':_0x510bd0(0x105,'\x5e\x66\x77\x46')+'\x6c\x69\x6b\x65\x20\x63\x6f\x64'+_0x510bd0(0x359,'\x6a\x52\x43\x45')+_0x510bd0(0x41f,'\x38\x58\x35\x5a')+_0x510bd0(0x2c4,'\x5e\x66\x77\x46')+_0x510bd0(0x2d5,'\x4e\x5b\x25\x31')+_0x510bd0(0x3d6,'\x5e\x66\x77\x46')+_0x510bd0(0x357,'\x55\x21\x6e\x62')+_0x510bd0(0x370,'\x29\x6b\x52\x6e')+_0x510bd0(0x34a,'\x57\x39\x62\x51')+_0x510bd0(0x413,'\x36\x6e\x6d\x37')+'\x20','\x65\x7a\x71\x72\x41':_0x510bd0(0x4cb,'\x30\x23\x48\x64')+_0x510bd0(0x40d,'\x6a\x52\x43\x45')+'\x65\x20\x48\x61\x6e\x64\x20\x63'+_0x510bd0(0x3a2,'\x69\x51\x48\x5d')+_0x510bd0(0x3c0,'\x48\x5d\x5d\x79')+_0x510bd0(0x233,'\x48\x5d\x5d\x79')+'\x6c\x2c\x20\x6f\x72\x20\x75\x73'+_0x510bd0(0x43c,'\x33\x65\x65\x5d')+_0x510bd0(0x1bb,'\x52\x43\x65\x48')+_0x510bd0(0x477,'\x41\x4a\x41\x76'),'\x62\x6b\x61\x50\x79':function(_0x3e4bad,_0x2680c1){return _0x3e4bad(_0x2680c1);},'\x6f\x4f\x6c\x45\x59':function(_0x464e43,_0x2a932e){return _0x464e43(_0x2a932e);},'\x6a\x55\x79\x6c\x61':function(_0x27678c,_0xc484d1,_0x4850cf){return _0x27678c(_0xc484d1,_0x4850cf);},'\x43\x52\x6a\x56\x59':function(_0x16d174,_0xdb480e){return _0x16d174*_0xdb480e;},'\x6a\x46\x6e\x42\x6e':_0x510bd0(0xf6,'\x4b\x61\x5d\x48'),'\x76\x59\x43\x5a\x6d':function(_0x1de1ae,_0x19dfb9){return _0x1de1ae===_0x19dfb9;},'\x6d\x56\x4d\x52\x63':function(_0x4a546c,_0x1fe1fd){return _0x4a546c===_0x1fe1fd;},'\x67\x79\x63\x65\x4f':'\x70\x67\x56\x4f\x6d','\x49\x46\x43\x70\x50':'\x72\x6d\x69\x45\x46','\x79\x4e\x59\x41\x6a':function(_0xef22c2){return _0xef22c2();},'\x61\x58\x69\x77\x72':'\x72\x75\x6e','\x67\x59\x6e\x41\x4f':_0x510bd0(0x37f,'\x46\x6b\x26\x5e'),'\x71\x57\x68\x57\x79':'\x68\x65\x61\x64','\x56\x6c\x47\x76\x47':'\x62\x72\x61\x69\x6e\x5f\x74\x69'+_0x510bd0(0x174,'\x55\x21\x6e\x62'),'\x76\x50\x4e\x73\x4a':function(_0x3cda9c,_0x5ad6f3,_0x2d272f,_0xcd67af){return _0x3cda9c(_0x5ad6f3,_0x2d272f,_0xcd67af);},'\x69\x59\x55\x56\x4f':function(_0x569687){return _0x569687();},'\x48\x4e\x63\x42\x4c':function(_0x1d7d20,_0x433c69){return _0x1d7d20!==_0x433c69;},'\x4f\x4e\x58\x58\x69':_0x510bd0(0x37a,'\x51\x26\x49\x45')+_0x510bd0(0x2c7,'\x35\x6f\x34\x28'),'\x55\x44\x4d\x78\x62':function(_0x38d69c,_0x369391,_0x31dcce,_0x26ea30){return _0x38d69c(_0x369391,_0x31dcce,_0x26ea30);},'\x42\x43\x53\x43\x52':function(_0x33ab43,_0x238b22){return _0x33ab43(_0x238b22);},'\x74\x64\x63\x76\x50':function(_0x14c3f5,_0x55a573){return _0x14c3f5(_0x55a573);},'\x63\x70\x67\x78\x4a':'\x6e\x6f\x5f\x73\x70\x61\x77\x6e','\x76\x62\x6f\x58\x51':_0x510bd0(0x17a,'\x69\x51\x48\x5d')+_0x510bd0(0x512,'\x6e\x25\x6a\x53'),'\x75\x75\x6f\x48\x55':function(_0x55dc35,_0x551bd1){return _0x55dc35<=_0x551bd1;},'\x77\x41\x74\x54\x50':function(_0x4073e5,_0x2b25b7){return _0x4073e5===_0x2b25b7;},'\x75\x49\x51\x4b\x58':'\x42\x51\x53\x52\x56','\x52\x55\x52\x77\x6d':function(_0x1e2cf4,_0x2ecc0e){return _0x1e2cf4>_0x2ecc0e;},'\x68\x73\x55\x52\x79':function(_0x33fd72,_0x2c4e9a,_0x58d9e8,_0x1f5689){return _0x33fd72(_0x2c4e9a,_0x58d9e8,_0x1f5689);},'\x71\x6a\x4c\x61\x79':function(_0x38d752,_0x326d8a){return _0x38d752===_0x326d8a;},'\x4a\x76\x48\x53\x6c':function(_0x72a2d2,_0x5d8073,_0x2b7d28,_0x2b0fdd,_0xd0f6e6){return _0x72a2d2(_0x5d8073,_0x2b7d28,_0x2b0fdd,_0xd0f6e6);},'\x46\x75\x6b\x63\x76':function(_0x386035,_0x20c399){return _0x386035===_0x20c399;},'\x72\x64\x7a\x49\x7a':_0x510bd0(0x3f9,'\x6b\x40\x41\x7a'),'\x51\x4e\x47\x62\x56':_0x510bd0(0x2e6,'\x75\x74\x38\x6c'),'\x42\x48\x54\x4d\x63':_0x510bd0(0x36a,'\x63\x56\x41\x66'),'\x46\x50\x73\x66\x46':_0x510bd0(0x448,'\x55\x64\x62\x35'),'\x68\x50\x59\x61\x59':_0x510bd0(0x16b,'\x67\x6e\x43\x63'),'\x68\x4c\x68\x50\x68':function(_0x53d429,_0x23db84,_0x249c52,_0x5ae716){return _0x53d429(_0x23db84,_0x249c52,_0x5ae716);},'\x6a\x55\x78\x71\x4e':function(_0xf2cbc9,_0xffa190){return _0xf2cbc9<_0xffa190;},'\x42\x42\x75\x61\x59':function(_0x2178b5,_0x23a135){return _0x2178b5*_0x23a135;}},_0xe23521=_0xbead8f['\x68\x61\x72\x6e\x65\x73\x73']||_0x3afdf3['\x4c\x4e\x6c\x76\x53'],_0x2a864a=_0x1725d1[_0xe23521];if(!_0x2a864a)throw new Error(_0x510bd0(0xb9,'\x71\x76\x77\x72')+_0x510bd0(0x399,'\x6e\x25\x6a\x53')+_0x510bd0(0x2fd,'\x25\x51\x28\x64')+'\x72\x20\x68\x61\x72\x6e\x65\x73'+'\x73\x20\x27'+_0xe23521+'\x27');if(_0x3afdf3[_0x510bd0(0xf7,'\x48\x5d\x5d\x79')](_0xe23521,_0x3afdf3[_0x510bd0(0x4a7,'\x48\x5d\x5d\x79')])&&_0x3afdf3[_0x510bd0(0x1d3,'\x5a\x46\x45\x52')](_0x3afdf3[_0x510bd0(0x538,'\x70\x32\x73\x47')](String,process.env.EVOLVE_OPENCODE_DANGEROUS||'')[_0x510bd0(0x206,'\x69\x51\x48\x5d')+_0x510bd0(0x30a,'\x36\x6e\x6d\x37')](),_0x3afdf3['\x62\x6b\x49\x71\x6c'])){if(_0x3afdf3[_0x510bd0(0x1bd,'\x70\x32\x73\x47')]!==_0x3afdf3[_0x510bd0(0x40f,'\x4b\x61\x5d\x48')])throw new Error(_0x3afdf3[_0x510bd0(0x210,'\x55\x21\x6e\x62')](_0x3afdf3[_0x510bd0(0x4f1,'\x47\x47\x32\x21')](_0x3afdf3[_0x510bd0(0x358,'\x6a\x52\x43\x45')](_0x3afdf3[_0x510bd0(0x104,'\x49\x32\x78\x6f')],_0x3afdf3[_0x510bd0(0x54b,'\x6b\x40\x41\x7a')]),_0x3afdf3[_0x510bd0(0x372,'\x33\x65\x65\x5d')]),_0x3afdf3[_0x510bd0(0x3b2,'\x6d\x56\x65\x57')]));else{const _0x3b4334=[HzbFMS[_0x510bd0(0x1bf,'\x6a\x68\x4b\x54')],HzbFMS[_0x510bd0(0xa3,'\x6d\x24\x62\x47')],_0x510bd0(0x11f,'\x29\x59\x47\x50'),_0x510bd0(0x1f3,'\x4a\x6f\x48\x4d'),HzbFMS[_0x510bd0(0x10e,'\x4a\x6f\x48\x4d')],HzbFMS[_0x510bd0(0x246,'\x32\x34\x54\x6d')],'\x42\x61\x73\x68\x28\x67\x69\x74'+_0x510bd0(0x34e,'\x25\x51\x28\x64')+'\x29',_0x510bd0(0x46d,'\x69\x51\x48\x5d')+_0x510bd0(0x12a,'\x6b\x40\x41\x7a'),HzbFMS[_0x510bd0(0x526,'\x75\x74\x38\x6c')],HzbFMS[_0x510bd0(0x3d1,'\x79\x76\x62\x5d')],HzbFMS['\x52\x43\x78\x43\x4a']],_0x254d03=['\x2d\x70',HzbFMS[_0x510bd0(0x304,'\x6e\x25\x6a\x53')],HzbFMS[_0x510bd0(0x31d,'\x5e\x66\x77\x46')],HzbFMS[_0x510bd0(0x511,'\x30\x23\x48\x64')],_0x510bd0(0x3a5,'\x47\x47\x32\x21')+_0x510bd0(0x2a4,'\x24\x67\x53\x39'),HzbFMS[_0x510bd0(0x4be,'\x4b\x54\x4c\x58')],_0x23420d,'\x2d\x2d\x61\x6c\x6c\x6f\x77\x65'+_0x510bd0(0x353,'\x57\x39\x62\x51'),..._0x3b4334,HzbFMS['\x47\x4d\x4c\x4e\x6f'],_0xe6c9a1.env.EVOLVE_HAND_MODEL||HzbFMS[_0x510bd0(0x430,'\x6d\x24\x62\x47')],_0x510bd0(0x309,'\x5a\x46\x45\x52')+_0x510bd0(0xb5,'\x63\x56\x41\x66'),_0x1b1995,HzbFMS[_0x510bd0(0x315,'\x29\x59\x47\x50')],HzbFMS[_0x510bd0(0x37b,'\x79\x76\x62\x5d')](_0x56d38e),HzbFMS[_0x510bd0(0x547,'\x4d\x39\x33\x56')],HzbFMS[_0x510bd0(0x384,'\x71\x76\x77\x72')](_0x414f61,_0x592870.env.EVOLVE_HAND_MAX_TURNS||0xbb2+-0x32*0x36+-0xea),...HzbFMS['\x63\x6f\x64\x70\x66'](_0x4edc37(_0x83fe24.env.EVOLVE_HAND_DANGEROUS||''),HzbFMS['\x62\x6b\x49\x71\x6c'])?[_0x510bd0(0x137,'\x63\x56\x41\x66')+_0x510bd0(0x536,'\x31\x40\x65\x5b')+_0x510bd0(0x12c,'\x6b\x40\x41\x7a')+_0x510bd0(0x51b,'\x6d\x56\x65\x57')]:[]];return{'\x62\x69\x6e':_0x1c11a3(HzbFMS[_0x510bd0(0x468,'\x32\x34\x54\x6d')]),'\x61\x72\x67\x73':_0x254d03,'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':HzbFMS[_0x510bd0(0x33c,'\x57\x39\x62\x51')](_0x385675,_0x330d82),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x3fe292}};}}const _0x37cd31=_0xbead8f[_0x510bd0(0x3ae,'\x29\x6b\x52\x6e')]||_0x3afdf3[_0x510bd0(0x9c,'\x6f\x48\x41\x45')](require,_0x510bd0(0x3c2,'\x57\x6f\x38\x29')+_0x510bd0(0x12e,'\x7a\x56\x5b\x28'))[_0x510bd0(0x3a1,'\x6b\x40\x41\x7a')],_0x2643ca=_0xbead8f['\x6f\x6e\x63\x65']?0xc5*-0x1+0x5*0x3f5+-0x1*0x1303:_0x3afdf3['\x6f\x4f\x6c\x45\x59'](Number,_0xbead8f[_0x510bd0(0x552,'\x41\x4a\x41\x76')+'\x73'])||0x26a9+-0x566*0x2+-0x3fb*0x7,_0x4a6993=_0x57848d(),_0x48de3e=_0x3afdf3[_0x510bd0(0x3b4,'\x5a\x46\x45\x52')](parseInt,process.env.EVOLVE_HAND_MAX_RETRIES||'\x33',0x678+-0x1*-0x147a+-0x1ae8)||0x49*-0x28+-0x8ed*0x3+0x2632,_0x1a81ab=_0x3afdf3[_0x510bd0(0x4b8,'\x71\x76\x77\x72')](_0x3afdf3[_0x510bd0(0x318,'\x6d\x56\x65\x57')](parseInt,process.env.EVOLVE_HAND_RETRY_BACKOFF_SECONDS||'\x31\x35',0x2ed*0x2+0x1b81+-0x2151*0x1)||0x3a5+0x228c+-0x2622,0x13e6+0xb76+-0x1b74),_0x5985b7=_0xe23521===_0x3afdf3[_0x510bd0(0x307,'\x6d\x56\x65\x57')]?_0x3afdf3['\x6e\x41\x4d\x4d\x73'](_0xf2f1eb):null;let _0x4ce12b=0x1d53+0x2232+-0x3f85,_0x25da2b=_0x3afdf3[_0x510bd0(0x1e4,'\x4a\x6f\x48\x4d')];while(_0x3afdf3[_0x510bd0(0x1ba,'\x49\x32\x78\x6f')](_0x2643ca,0x24b0+-0x1*-0x19a9+-0x3e59)||_0x4ce12b<_0x2643ca){if(_0x3afdf3[_0x510bd0(0x439,'\x70\x32\x73\x47')](_0x3afdf3[_0x510bd0(0x142,'\x57\x39\x62\x51')],_0x3afdf3[_0x510bd0(0x25c,'\x7a\x56\x5b\x28')])){const _0x59e89d=_0x4e9eb5[_0x5ae5e5];if(_0x1aba2e){if(_0x46c567)_0x2e3b77=![];else{if(HzbFMS[_0x510bd0(0x1e7,'\x43\x71\x4f\x50')](_0x59e89d,'\x5c'))_0x12f0f1=!![];else{if(HzbFMS[_0x510bd0(0x26c,'\x5a\x46\x45\x52')](_0x59e89d,'\x22'))_0x4d4f15=![];}}}else{if(HzbFMS[_0x510bd0(0x181,'\x35\x6f\x34\x28')](_0x59e89d,'\x22'))_0x3d0eb0=!![];else{if(HzbFMS[_0x510bd0(0x456,'\x24\x67\x53\x39')](_0x59e89d,'\x7b'))_0x353fed++;else{if(HzbFMS[_0x510bd0(0x4df,'\x4a\x6f\x48\x4d')](_0x59e89d,'\x7d')){_0x5ef20e--;if(HzbFMS[_0x510bd0(0x13f,'\x7a\x56\x5b\x28')](_0x493631,0x1312+0x1371+-0x2683*0x1))return _0x1342c9[_0x510bd0(0x55d,'\x6f\x48\x41\x45')](_0x4d4f63,HzbFMS[_0x510bd0(0x185,'\x25\x51\x28\x64')](_0x47ea1d,0x196+-0x94+0x101*-0x1));}}}}}else{_0x4ce12b++;const _0x1fb0b2=Date[_0x510bd0(0x450,'\x30\x23\x48\x64')](),_0x24f70d=String(_0x4ce12b)[_0x510bd0(0x29a,'\x7a\x56\x5b\x28')](0x2182+0x136a+-0x34e8,'\x30'),_0x1d4f97=_0x269de0['\x6a\x6f\x69\x6e'](_0x3afdf3[_0x510bd0(0x3e3,'\x6f\x48\x41\x45')](_0x5f55e7),_0x510bd0(0x427,'\x62\x32\x31\x5a')+_0x24f70d),_0x31ce85={...process.env};_0x31ce85[_0x510bd0(0x29e,'\x57\x6f\x38\x29')+'\x52\x49\x44\x47\x45']=_0x510bd0(0x2f5,'\x52\x43\x65\x48');const _0x101de5=await _0x5c446f(_0x37cd31,_0x510bd0(0x405,'\x32\x34\x54\x6d'),[_0xc45aa,_0x3afdf3['\x61\x58\x69\x77\x72']],{'\x65\x6e\x76':_0x31ce85,'\x73\x74\x64\x69\x6e\x54\x65\x78\x74':null,'\x63\x77\x64':_0x4a6993,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x3afdf3[_0x510bd0(0x154,'\x6a\x68\x4b\x54')](_0x167341),'\x6c\x61\x62\x65\x6c':_0x3afdf3['\x67\x59\x6e\x41\x4f'],'\x62\x75\x66\x66\x65\x72\x4d\x6f\x64\x65':_0x3afdf3['\x71\x57\x68\x57\x79']});if(_0x101de5[_0x510bd0(0x106,'\x57\x6f\x38\x29')]){_0x25da2b=_0x3afdf3[_0x510bd0(0x109,'\x72\x30\x67\x76')],_0x3afdf3[_0x510bd0(0x41b,'\x33\x65\x65\x5d')](_0x4691bc,_0x24f70d,_0x510bd0(0x407,'\x4b\x61\x5d\x48')+'\x6d\x65\x6f\x75\x74',_0x101de5[_0x510bd0(0x52b,'\x29\x6b\x52\x6e')+'\x6f\x72']||'');if(_0xbead8f[_0x510bd0(0x394,'\x75\x74\x38\x6c')])break;await _0x1bce88(_0x3afdf3[_0x510bd0(0x45b,'\x24\x67\x53\x39')](_0x3039e9));continue;}if(_0x3afdf3[_0x510bd0(0x213,'\x31\x40\x65\x5b')](_0x101de5[_0x510bd0(0x48b,'\x72\x30\x67\x76')],0xb8*-0x2b+0x1cf1+0x1f7)){_0x25da2b=_0x3afdf3[_0x510bd0(0x1ef,'\x43\x71\x4f\x50')],_0x3afdf3[_0x510bd0(0x91,'\x6b\x40\x41\x7a')](_0x4691bc,_0x24f70d,_0x3afdf3[_0x510bd0(0x4ac,'\x7a\x56\x5b\x28')],_0x101de5[_0x510bd0(0x431,'\x71\x76\x77\x72')+'\x6f\x72']||_0x510bd0(0x29f,'\x55\x21\x6e\x62')+_0x101de5[_0x510bd0(0x4ae,'\x31\x40\x65\x5b')]);if(_0xbead8f[_0x510bd0(0x1c7,'\x6b\x40\x41\x7a')])break;await _0x3afdf3[_0x510bd0(0x2d0,'\x51\x26\x49\x45')](_0x1bce88,_0x3039e9());continue;}const _0x407bb2=_0x3afdf3['\x74\x64\x63\x76\x50'](_0x1df3d0,_0x101de5[_0x510bd0(0x448,'\x55\x64\x62\x35')]);if(!_0x407bb2||!_0x407bb2[_0x510bd0(0x388,'\x6d\x24\x62\x47')]){_0x25da2b=_0x3afdf3[_0x510bd0(0x4de,'\x33\x65\x65\x5d')];if(_0xbead8f[_0x510bd0(0x226,'\x31\x40\x65\x5b')])break;await _0x1bce88(_0x3afdf3[_0x510bd0(0x18b,'\x70\x32\x73\x47')](_0x3039e9));continue;}const _0x3de619=_0x407bb2[_0x510bd0(0x3d7,'\x4d\x39\x33\x56')];let _0x459310=![],_0x1914c1=_0x3afdf3['\x76\x62\x6f\x58\x51'];for(let _0x4948bf=0x71*0x34+0x1*-0x2023+0x930;_0x3afdf3['\x75\x75\x6f\x48\x55'](_0x4948bf,_0x48de3e)&&!_0x459310;_0x4948bf++){const _0xfa0b5d=Date[_0x510bd0(0x3aa,'\x73\x35\x40\x78')](),_0x8a1253=_0x1d4f97+'\x5f'+_0x4948bf+_0x510bd0(0x158,'\x57\x39\x62\x51');try{if(_0x3afdf3[_0x510bd0(0x96,'\x29\x59\x47\x50')](_0x3afdf3[_0x510bd0(0x12f,'\x30\x23\x48\x64')],_0x510bd0(0x3ee,'\x52\x43\x65\x48'))){if(_0x48aa54[_0x510bd0(0x1fa,'\x63\x56\x41\x66')+'\x6e\x63'](_0x8a1253))_0x48aa54[_0x510bd0(0x3df,'\x55\x64\x62\x35')+'\x6e\x63'](_0x8a1253);}else{try{if(_0x41361e[_0x510bd0(0x483,'\x4a\x6f\x48\x4d')])_0x1eb08e[_0x510bd0(0x228,'\x69\x51\x48\x5d')]['\x64\x65\x73\x74\x72\x6f\x79']();if(_0xcf90aa[_0x510bd0(0x3b7,'\x35\x6f\x34\x28')])_0x3eac62[_0x510bd0(0x4f2,'\x55\x21\x6e\x62')]['\x64\x65\x73\x74\x72\x6f\x79']();_0x1d01aa[_0x510bd0(0x3fe,'\x6a\x52\x43\x45')]();}catch(_0x37388d){}HzbFMS[_0x510bd0(0x31c,'\x46\x6b\x26\x5e')](_0x7bd0f3,null);}}catch(_0x1a8089){}const _0x7e9794=_0x3afdf3['\x52\x55\x52\x77\x6d'](_0x4948bf,-0x29*-0x1+-0x1*-0x2a6+-0x167*0x2)?_0x510bd0(0x40b,'\x36\x6e\x6d\x37')+_0x4948bf+'\x2f'+_0x48de3e+('\x3a\x20\x70\x72\x65\x76\x69\x6f'+'\x75\x73\x20\x61\x74\x74\x65\x6d'+_0x510bd0(0x92,'\x70\x32\x73\x47')+_0x510bd0(0x9a,'\x4e\x5b\x25\x31')+_0x510bd0(0x2db,'\x38\x58\x35\x5a')+_0x510bd0(0x406,'\x70\x32\x73\x47')+_0x510bd0(0x54e,'\x57\x6f\x38\x29')+_0x510bd0(0x3ab,'\x6d\x24\x62\x47')+_0x510bd0(0x2af,'\x29\x6b\x52\x6e')+_0x510bd0(0x254,'\x35\x6f\x34\x28')+_0x510bd0(0x492,'\x36\x6e\x6d\x37')+_0x510bd0(0x4ce,'\x48\x5d\x5d\x79')+_0x510bd0(0x3e9,'\x43\x71\x4f\x50')+_0x510bd0(0x193,'\x4b\x61\x5d\x48')+_0x510bd0(0x2f9,'\x55\x21\x6e\x62')+_0x510bd0(0x190,'\x24\x67\x53\x39')):'',_0x3c8577=_0x3afdf3[_0x510bd0(0x3a6,'\x52\x43\x65\x48')](_0x2a3bfc,_0x3de619+_0x7e9794,_0x8a1253,_0x24f70d);try{_0x48aa54[_0x510bd0(0x382,'\x6a\x52\x43\x45')+_0x510bd0(0x17b,'\x4b\x54\x4c\x58')](_0x1d4f97+'\x5f'+_0x4948bf+(_0x510bd0(0x248,'\x70\x52\x38\x39')+'\x74'),_0x3c8577);}catch(_0x5dad24){}const _0x3da355=_0x3afdf3[_0x510bd0(0x244,'\x67\x6e\x43\x63')](_0xe23521,_0x510bd0(0x22f,'\x62\x32\x31\x5a')+'\x6f\x64\x65')?_0x4d83f4[_0x510bd0(0x2e7,'\x29\x59\x47\x50')+'\x49\x44']():_0x510bd0(0x4a6,'\x57\x39\x62\x51')+_0x510bd0(0x530,'\x4b\x54\x4c\x58')+_0x24f70d+'\x5f'+Date[_0x510bd0(0x192,'\x5e\x66\x77\x46')]()+'\x5f'+_0x4948bf,_0x5b6f7d={};_0x5b6f7d[_0x510bd0(0x151,'\x52\x43\x65\x48')+'\x64']=_0x3da355,_0x5b6f7d[_0x510bd0(0x507,'\x4d\x39\x33\x56')+'\x6c\x65']=_0x8a1253,_0x5b6f7d[_0x510bd0(0x11a,'\x49\x32\x78\x6f')]=_0x24f70d,_0x5b6f7d[_0x510bd0(0x170,'\x32\x34\x54\x6d')+_0x510bd0(0x319,'\x35\x6f\x34\x28')]=_0x5985b7,_0x5b6f7d[_0x510bd0(0x4cf,'\x6a\x52\x43\x45')]=_0x3c8577;const _0x232963=_0x2a864a[_0x510bd0(0x488,'\x4b\x54\x4c\x58')+'\x73'](_0x5b6f7d),_0x4974fc=await _0x3afdf3[_0x510bd0(0x18f,'\x4a\x6f\x48\x4d')](_0x5c446f,_0x37cd31,_0x232963[_0x510bd0(0x21a,'\x29\x59\x47\x50')],_0x232963['\x61\x72\x67\x73'],{'\x65\x6e\x76':{...process.env,..._0x232963[_0x510bd0(0xa4,'\x55\x21\x6e\x62')]},'\x73\x74\x64\x69\x6e\x54\x65\x78\x74':_0x3afdf3[_0x510bd0(0xb8,'\x79\x76\x62\x5d')](_0x2a864a[_0x510bd0(0x437,'\x6a\x68\x4b\x54')+_0x510bd0(0x3dc,'\x4d\x39\x33\x56')],_0x3afdf3[_0x510bd0(0x230,'\x73\x35\x40\x78')])?_0x3c8577:null,'\x63\x77\x64':_0x4a6993,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x3afdf3[_0x510bd0(0xf2,'\x29\x6b\x52\x6e')](_0x5885da),'\x6c\x61\x62\x65\x6c':_0x3afdf3['\x51\x4e\x47\x62\x56'],'\x62\x75\x66\x66\x65\x72\x4d\x6f\x64\x65':_0x3afdf3[_0x510bd0(0x49c,'\x51\x26\x49\x45')]}),_0x4bd36e={};_0x4bd36e['\x72']=_0x4974fc,_0x4bd36e[_0x510bd0(0x2ec,'\x79\x76\x62\x5d')+'\x6c\x65']=_0x8a1253,_0x4bd36e[_0x510bd0(0xa1,'\x70\x32\x73\x47')+_0x510bd0(0x4fe,'\x57\x6f\x38\x29')]=_0x1fb0b2,_0x4bd36e[_0x510bd0(0x531,'\x62\x32\x31\x5a')+'\x74\x61\x72\x74\x4d\x73']=_0xfa0b5d,_0x4bd36e[_0x510bd0(0x2e0,'\x38\x58\x35\x5a')+_0x510bd0(0x32e,'\x29\x59\x47\x50')]=_0x2a864a[_0x510bd0(0x567,'\x70\x32\x73\x47')+_0x510bd0(0x461,'\x38\x58\x35\x5a')]||_0x3afdf3[_0x510bd0(0x10c,'\x4b\x61\x5d\x48')];const _0x4b7e54=_0x46a673(_0x4bd36e);if(_0x4b7e54['\x6f\x6b']){_0x459310=!![],_0x1914c1=_0x3afdf3[_0x510bd0(0x150,'\x4b\x54\x4c\x58')];break;}_0x3afdf3['\x68\x4c\x68\x50\x68'](_0x4691bc,_0x24f70d,'\x68\x61\x6e\x64\x5f\x61\x74\x74'+_0x510bd0(0x1ca,'\x6f\x48\x41\x45')+_0x4948bf+'\x5f'+_0x4b7e54[_0x510bd0(0x1c5,'\x47\x47\x32\x21')],_0x4b7e54[_0x510bd0(0x486,'\x6f\x48\x41\x45')]);if(_0x3afdf3[_0x510bd0(0x343,'\x57\x39\x62\x51')](_0x4948bf,_0x48de3e))await _0x3afdf3[_0x510bd0(0x333,'\x49\x32\x78\x6f')](_0x1bce88,_0x3afdf3[_0x510bd0(0xed,'\x43\x71\x4f\x50')](_0x1a81ab,_0x4948bf));}_0x25da2b=_0x1914c1;if(_0xbead8f[_0x510bd0(0x16f,'\x4a\x6f\x48\x4d')])break;}}const _0x4f8818={};return _0x4f8818[_0x510bd0(0x460,'\x6e\x25\x6a\x53')]=_0x4ce12b,_0x4f8818[_0x510bd0(0x20c,'\x36\x6e\x6d\x37')+_0x510bd0(0x3ea,'\x32\x34\x54\x6d')]=_0x25da2b,_0x4f8818;}const _0xc3bceb={};_0xc3bceb[_0xf7d584(0x93,'\x35\x6f\x34\x28')+_0xf7d584(0x200,'\x6d\x24\x62\x47')+'\x6d']=_0x19ccfd;const _0x2f2179={};_0x2f2179[_0xf7d584(0x20b,'\x62\x32\x31\x5a')+_0xf7d584(0x2d8,'\x69\x51\x48\x5d')]=_0x260bd4,_0x2f2179[_0xf7d584(0x2c0,'\x43\x71\x4f\x50')+'\x69\x6e']=_0x3b370a,_0x2f2179[_0xf7d584(0x355,'\x6d\x24\x62\x47')+_0xf7d584(0x469,'\x70\x52\x38\x39')+'\x74\x65']=_0x46a673,_0x2f2179[_0xf7d584(0x281,'\x63\x56\x41\x66')+'\x70\x65\x64\x53\x65\x74\x74\x69'+_0xf7d584(0x167,'\x62\x32\x31\x5a')]=_0xf2f1eb,_0x2f2179[_0xf7d584(0x103,'\x24\x67\x53\x39')+_0xf7d584(0x260,'\x46\x6b\x26\x5e')+'\x43\x6f\x6e\x74\x72\x61\x63\x74']=_0x2a3bfc,_0x2f2179[_0xf7d584(0x51a,'\x43\x71\x4f\x50')+_0xf7d584(0x392,'\x79\x76\x62\x5d')+_0xf7d584(0x339,'\x4b\x61\x5d\x48')]=_0x4d4992,_0x2f2179[_0xf7d584(0x447,'\x47\x47\x32\x21')]=_0x5c446f,_0x2f2179[_0xf7d584(0x2b5,'\x57\x39\x62\x51')]=_0x1725d1,_0x2f2179[_0xf7d584(0x1d6,'\x29\x6b\x52\x6e')]=_0xc3bceb,module[_0xf7d584(0x129,'\x71\x76\x77\x72')]=_0x2f2179;
|