@evomap/evolver 1.89.4 → 1.89.6
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 +536 -86
- package/assets/cover.png +0 -0
- package/index.js +87 -7
- package/package.json +17 -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/adapters/scripts/_runtimePaths.js +1 -0
- package/src/adapters/scripts/evolver-session-end.js +1 -0
- package/src/adapters/scripts/evolver-session-start.js +1 -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 -4455
- 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/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 -711
- package/src/gep/explore.js +1 -289
- package/src/gep/hash.js +1 -15
- package/src/gep/hubFetch.js +1 -359
- package/src/gep/hubReview.js +1 -207
- package/src/gep/hubSearch.js +1 -526
- package/src/gep/hubVerify.js +1 -306
- package/src/gep/idleScheduler.js +6 -1
- package/src/gep/learningSignals.js +1 -89
- package/src/gep/memoryGraph.js +1 -1374
- 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 -0
- 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 -88
- package/src/gep/workspaceKeychain.js +1 -174
- package/src/ops/lifecycle.js +17 -4
- package/src/proxy/envelope.js +59 -0
- package/src/proxy/extensions/traceControl.js +1 -99
- package/src/proxy/index.js +221 -3
- package/src/proxy/inject.js +1 -52
- package/src/proxy/lifecycle/manager.js +14 -7
- package/src/proxy/mailbox/store.js +29 -6
- package/src/proxy/router/messages_route.js +4 -1
- package/src/proxy/router/responses_route.js +159 -0
- package/src/proxy/server/http.js +13 -4
- package/src/proxy/server/routes.js +11 -1
- package/src/proxy/sync/engine.js +7 -1
- package/src/proxy/sync/outbound.js +32 -4
- package/src/proxy/trace/extractor.js +1 -646
- 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 -1237
- package/README.public.md +0 -569
- 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 -143
- /package/assets/gep/{genes.json → genes.seed.json} +0 -0
- /package/{bundled-skills → skills}/_meta/SKILL.md +0 -0
package/src/gep/strategy.js
CHANGED
|
@@ -1,136 +1 @@
|
|
|
1
|
-
// Evolution Strategy Presets (v1.1)
|
|
2
|
-
// Controls the balance between repair, optimize, and innovate intents.
|
|
3
|
-
//
|
|
4
|
-
// Usage: set EVOLVE_STRATEGY env var to one of: balanced, innovate, harden, repair-only,
|
|
5
|
-
// early-stabilize, steady-state, or "auto" for adaptive selection.
|
|
6
|
-
// Default: balanced (or auto-detected based on cycle count / saturation signals)
|
|
7
|
-
//
|
|
8
|
-
// Each strategy defines:
|
|
9
|
-
// repair/optimize/innovate - target allocation ratios (inform the LLM prompt)
|
|
10
|
-
// repairLoopThreshold - repair ratio in last 8 cycles that triggers forced innovation
|
|
11
|
-
// label - human-readable name injected into the GEP prompt
|
|
12
|
-
|
|
13
|
-
var fs = require('fs');
|
|
14
|
-
var path = require('path');
|
|
15
|
-
|
|
16
|
-
var STRATEGIES = {
|
|
17
|
-
'balanced': {
|
|
18
|
-
repair: 0.20,
|
|
19
|
-
optimize: 0.20,
|
|
20
|
-
innovate: 0.50,
|
|
21
|
-
explore: 0.10,
|
|
22
|
-
repairLoopThreshold: 0.50,
|
|
23
|
-
label: 'Balanced',
|
|
24
|
-
description: 'Normal operation. Steady growth with stability.',
|
|
25
|
-
},
|
|
26
|
-
'innovate': {
|
|
27
|
-
repair: 0.05,
|
|
28
|
-
optimize: 0.10,
|
|
29
|
-
innovate: 0.80,
|
|
30
|
-
explore: 0.05,
|
|
31
|
-
repairLoopThreshold: 0.30,
|
|
32
|
-
label: 'Innovation Focus',
|
|
33
|
-
description: 'System is stable. Maximize new features and capabilities.',
|
|
34
|
-
},
|
|
35
|
-
'harden': {
|
|
36
|
-
repair: 0.40,
|
|
37
|
-
optimize: 0.35,
|
|
38
|
-
innovate: 0.20,
|
|
39
|
-
explore: 0.05,
|
|
40
|
-
repairLoopThreshold: 0.70,
|
|
41
|
-
label: 'Hardening',
|
|
42
|
-
description: 'After a big change. Focus on stability and robustness.',
|
|
43
|
-
},
|
|
44
|
-
'repair-only': {
|
|
45
|
-
repair: 0.80,
|
|
46
|
-
optimize: 0.18,
|
|
47
|
-
innovate: 0.00,
|
|
48
|
-
explore: 0.02,
|
|
49
|
-
repairLoopThreshold: 1.00,
|
|
50
|
-
label: 'Repair Only',
|
|
51
|
-
description: 'Emergency. Fix everything before doing anything else.',
|
|
52
|
-
},
|
|
53
|
-
'early-stabilize': {
|
|
54
|
-
repair: 0.60,
|
|
55
|
-
optimize: 0.22,
|
|
56
|
-
innovate: 0.15,
|
|
57
|
-
explore: 0.03,
|
|
58
|
-
repairLoopThreshold: 0.80,
|
|
59
|
-
label: 'Early Stabilization',
|
|
60
|
-
description: 'First cycles. Prioritize fixing existing issues before innovating.',
|
|
61
|
-
},
|
|
62
|
-
'steady-state': {
|
|
63
|
-
repair: 0.55,
|
|
64
|
-
optimize: 0.25,
|
|
65
|
-
innovate: 0.05,
|
|
66
|
-
explore: 0.15,
|
|
67
|
-
repairLoopThreshold: 0.90,
|
|
68
|
-
label: 'Steady State',
|
|
69
|
-
description: 'Evolution saturated. Maintain existing capabilities. Explore for new directions.',
|
|
70
|
-
},
|
|
71
|
-
};
|
|
72
|
-
|
|
73
|
-
// Read evolution_state.json to get the current cycle count for auto-detection.
|
|
74
|
-
function _readCycleCount() {
|
|
75
|
-
try {
|
|
76
|
-
// evolver/memory/evolution_state.json (local to the skill)
|
|
77
|
-
var localPath = path.resolve(__dirname, '..', '..', 'memory', 'evolution_state.json');
|
|
78
|
-
// workspace/memory/evolution/evolution_state.json (canonical path used by evolve.js)
|
|
79
|
-
var workspacePath = path.resolve(__dirname, '..', '..', '..', '..', 'memory', 'evolution', 'evolution_state.json');
|
|
80
|
-
var candidates = [localPath, workspacePath];
|
|
81
|
-
for (var i = 0; i < candidates.length; i++) {
|
|
82
|
-
if (fs.existsSync(candidates[i])) {
|
|
83
|
-
var data = JSON.parse(fs.readFileSync(candidates[i], 'utf8'));
|
|
84
|
-
return data && Number.isFinite(data.cycleCount) ? data.cycleCount : 0;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
} catch (e) {}
|
|
88
|
-
return 0;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
function resolveStrategy(opts) {
|
|
92
|
-
var signals = (opts && Array.isArray(opts.signals)) ? opts.signals : [];
|
|
93
|
-
var name = String(process.env.EVOLVE_STRATEGY || 'balanced').toLowerCase().trim();
|
|
94
|
-
|
|
95
|
-
// Backward compatibility: FORCE_INNOVATION=true maps to 'innovate'
|
|
96
|
-
var forceInnovation = false;
|
|
97
|
-
if (!process.env.EVOLVE_STRATEGY) {
|
|
98
|
-
var fi = String(process.env.FORCE_INNOVATION || process.env.EVOLVE_FORCE_INNOVATION || '').toLowerCase();
|
|
99
|
-
if (fi === 'true') {
|
|
100
|
-
name = 'innovate';
|
|
101
|
-
forceInnovation = true;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
// Auto-detection: when no explicit strategy is set (defaults to 'balanced'),
|
|
106
|
-
// apply heuristics inspired by Echo-MingXuan's "fix first, innovate later" pattern.
|
|
107
|
-
// Skip if user explicitly set FORCE_INNOVATION=true
|
|
108
|
-
var isDefault = !process.env.EVOLVE_STRATEGY || name === 'balanced' || name === 'auto';
|
|
109
|
-
|
|
110
|
-
if (isDefault && !forceInnovation) {
|
|
111
|
-
// Early-stabilize: first 5 cycles should focus on fixing existing issues.
|
|
112
|
-
var cycleCount = _readCycleCount();
|
|
113
|
-
if (cycleCount > 0 && cycleCount <= 5) {
|
|
114
|
-
name = 'early-stabilize';
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
// Saturation detection: if saturation signals are present, switch to steady-state.
|
|
118
|
-
if (signals.indexOf('force_steady_state') !== -1) {
|
|
119
|
-
name = 'steady-state';
|
|
120
|
-
} else if (signals.indexOf('evolution_saturation') !== -1) {
|
|
121
|
-
name = 'steady-state';
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
// Explicit "auto" maps to whatever was auto-detected above (or balanced if no heuristic fired).
|
|
126
|
-
if (name === 'auto') name = 'balanced';
|
|
127
|
-
|
|
128
|
-
var strategy = STRATEGIES[name] || STRATEGIES['balanced'];
|
|
129
|
-
return Object.assign({}, strategy, { name: name });
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
function getStrategyNames() {
|
|
133
|
-
return Object.keys(STRATEGIES);
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
module.exports = { resolveStrategy, getStrategyNames, STRATEGIES };
|
|
1
|
+
var _0xe776dd=_0x1131;(function(_0x1bb61b,_0xe33e7e){var _0x3008c6=_0x1131,_0x227611=_0x1bb61b();while(!![]){try{var _0x4d96bb=-parseInt(_0x3008c6(0x23a,'\x36\x63\x57\x6d'))/(0x875*0x3+-0x1aba+0x3*0x74)+-parseInt(_0x3008c6(0x1b7,'\x58\x72\x6a\x30'))/(0x10*0x9+0x1ce6+-0x1a*0x122)*(parseInt(_0x3008c6(0x23e,'\x43\x2a\x35\x59'))/(-0x10*0xcf+-0xbe6*0x1+0x18d9))+-parseInt(_0x3008c6(0x205,'\x79\x77\x77\x26'))/(-0x1*-0x190c+0x3b*0x4f+0x2b3d*-0x1)*(-parseInt(_0x3008c6(0x23b,'\x40\x21\x5e\x5a'))/(0x3f+0x39*0x9f+-0x23a1))+parseInt(_0x3008c6(0x18f,'\x26\x6f\x40\x47'))/(0x10da*0x1+0x1665+0x2739*-0x1)+-parseInt(_0x3008c6(0x183,'\x50\x43\x6e\x5a'))/(0x1334*-0x1+0x1290+-0x3*-0x39)+-parseInt(_0x3008c6(0x1b8,'\x5b\x50\x72\x57'))/(-0xb*0x175+0x23f9+-0x1*0x13ea)*(-parseInt(_0x3008c6(0x1f4,'\x7a\x44\x68\x25'))/(0x5f1+0x1171+-0x1759))+-parseInt(_0x3008c6(0x211,'\x5a\x49\x56\x28'))/(-0x1615+0x10b*0xd+0x890)*(-parseInt(_0x3008c6(0x19a,'\x35\x24\x4b\x21'))/(-0x20d4+-0x3*-0x657+0x49e*0x3));if(_0x4d96bb===_0xe33e7e)break;else _0x227611['push'](_0x227611['shift']());}catch(_0x40c9da){_0x227611['push'](_0x227611['shift']());}}}(_0x4c84,0xf862+0x2bbd4+-0x5*-0xcc76));var _0x5c8710=(function(){var _0x481a47=_0x1131,_0x13f17e={'\x5a\x6b\x4b\x59\x67':_0x481a47(0x18c,'\x4f\x68\x61\x35'),'\x52\x44\x76\x50\x68':_0x481a47(0x1dd,'\x4a\x42\x4a\x33'),'\x6a\x66\x63\x68\x4b':function(_0x184bbf){return _0x184bbf();},'\x68\x50\x4a\x4d\x46':function(_0x1c1f75,_0x4b4e04){return _0x1c1f75>_0x4b4e04;},'\x6f\x47\x6e\x43\x66':_0x481a47(0x14c,'\x35\x24\x4b\x21')+_0x481a47(0x18d,'\x24\x30\x59\x5d'),'\x6d\x48\x6a\x61\x66':function(_0x2dd108,_0x34f6b4){return _0x2dd108!==_0x34f6b4;},'\x70\x6f\x70\x64\x67':_0x481a47(0x24d,'\x5b\x50\x72\x57')+_0x481a47(0x178,'\x40\x21\x5e\x5a')+'\x74\x65','\x4a\x66\x48\x79\x46':_0x481a47(0x172,'\x4e\x64\x52\x57')+_0x481a47(0x1f1,'\x63\x31\x4d\x43'),'\x41\x42\x71\x6e\x52':_0x481a47(0x21b,'\x23\x38\x4e\x34')+_0x481a47(0x1d9,'\x35\x31\x59\x78')+'\x74\x69\x6f\x6e','\x47\x68\x4b\x41\x54':function(_0x253111,_0x4e913c){return _0x253111!==_0x4e913c;},'\x73\x66\x59\x54\x48':'\x4e\x4a\x71\x4d\x4e'},_0x53d9ec=!![];return function(_0x78f0b1,_0x520d4b){var _0x5d878b=_0x481a47,_0x231d29={'\x6e\x77\x43\x44\x73':_0x13f17e['\x52\x44\x76\x50\x68'],'\x6a\x75\x73\x6e\x6f':function(_0x243387){var _0x20441a=_0x1131;return _0x13f17e[_0x20441a(0x16a,'\x4f\x68\x61\x35')](_0x243387);},'\x78\x6b\x64\x70\x4d':function(_0x290545,_0x1c6e08){var _0x6419b4=_0x1131;return _0x13f17e[_0x6419b4(0x1b4,'\x43\x2a\x35\x59')](_0x290545,_0x1c6e08);},'\x72\x4a\x58\x71\x47':function(_0x321fad,_0x178e0d){return _0x321fad<=_0x178e0d;},'\x58\x55\x76\x51\x67':_0x13f17e[_0x5d878b(0x141,'\x71\x32\x41\x57')],'\x4e\x52\x72\x49\x77':function(_0xef3362,_0x36d6eb){var _0x54a66a=_0x5d878b;return _0x13f17e[_0x54a66a(0x1c1,'\x35\x31\x59\x78')](_0xef3362,_0x36d6eb);},'\x4d\x50\x75\x56\x4f':_0x13f17e[_0x5d878b(0x192,'\x55\x64\x7a\x34')],'\x42\x65\x6a\x48\x6d':_0x13f17e[_0x5d878b(0x19e,'\x50\x43\x6e\x5a')],'\x47\x77\x6b\x6b\x64':_0x13f17e[_0x5d878b(0x1fe,'\x58\x65\x79\x5a')]};if(_0x13f17e[_0x5d878b(0x163,'\x63\x31\x4d\x43')](_0x13f17e[_0x5d878b(0x159,'\x4c\x33\x43\x50')],_0x13f17e['\x73\x66\x59\x54\x48']))_0xdddf8d=_0x231d29[_0x5d878b(0x156,'\x26\x6f\x40\x47')],_0x2bbb81=!![];else{var _0x11688d=_0x53d9ec?function(){var _0x588cf0=_0x5d878b;if(_0x520d4b){if(_0x588cf0(0x1bb,'\x35\x24\x4b\x21')!==_0x13f17e[_0x588cf0(0x222,'\x4a\x42\x4a\x33')]){var _0x2505e7=_0x231d29[_0x588cf0(0x171,'\x4a\x42\x4a\x33')](_0x3e569b);_0x231d29[_0x588cf0(0x149,'\x4c\x42\x34\x39')](_0x2505e7,-0x1*-0x853+-0x1*0x141d+0x6*0x1f7)&&_0x231d29[_0x588cf0(0x22d,'\x6f\x58\x4f\x6c')](_0x2505e7,0x18cb+-0x94d*0x3+-0x9*-0x59)&&(_0x5c0a64=_0x231d29[_0x588cf0(0x168,'\x41\x5d\x77\x30')]);if(_0x231d29[_0x588cf0(0x247,'\x50\x74\x61\x64')](_0x4847c8[_0x588cf0(0x1aa,'\x24\x4a\x6f\x45')](_0x231d29['\x4d\x50\x75\x56\x4f']),-(0x1f9d+-0x16bd*0x1+-0x8df)))_0x11d4c9=_0x231d29[_0x588cf0(0x1e7,'\x35\x31\x59\x78')];else _0x420477[_0x588cf0(0x220,'\x4c\x73\x7a\x48')](_0x231d29['\x47\x77\x6b\x6b\x64'])!==-(0xfc9+-0x651+-0x977*0x1)&&(_0x112dd5=_0x588cf0(0x1c3,'\x4f\x68\x61\x35')+_0x588cf0(0x245,'\x77\x37\x56\x73'));}else{var _0x1d5644=_0x520d4b[_0x588cf0(0x1a0,'\x7a\x24\x6b\x44')](_0x78f0b1,arguments);return _0x520d4b=null,_0x1d5644;}}}:function(){};return _0x53d9ec=![],_0x11688d;}};}()),_0x192c00=_0x5c8710(this,function(){var _0x6e4b2f=_0x1131,_0x3e4e7b={};_0x3e4e7b[_0x6e4b2f(0x1ac,'\x6e\x21\x53\x41')]=_0x6e4b2f(0x146,'\x50\x74\x61\x64')+_0x6e4b2f(0x198,'\x24\x30\x59\x5d');var _0xf9d659=_0x3e4e7b;return _0x192c00[_0x6e4b2f(0x1d4,'\x6e\x21\x53\x41')]()[_0x6e4b2f(0x19c,'\x28\x42\x28\x61')](_0xf9d659[_0x6e4b2f(0x1e9,'\x4a\x42\x4a\x33')])[_0x6e4b2f(0x1a2,'\x6f\x58\x4f\x6c')]()[_0x6e4b2f(0x251,'\x25\x62\x50\x23')+_0x6e4b2f(0x1ef,'\x40\x21\x5e\x5a')](_0x192c00)[_0x6e4b2f(0x143,'\x35\x31\x59\x78')]('\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x6e4b2f(0x17d,'\x38\x4b\x42\x47'));});_0x192c00();var _0x57e198=require('\x66\x73'),_0x1bd3e3=require(_0xe776dd(0x1f5,'\x5b\x50\x72\x57')),_0x5e2fd7={};function _0x1131(_0x54bf2b,_0x280a01){_0x54bf2b=_0x54bf2b-(0xbf9*-0x1+0x112a+-0x3f0*0x1);var _0x4e2baf=_0x4c84();var _0xc6f9a5=_0x4e2baf[_0x54bf2b];if(_0x1131['\x43\x4e\x46\x62\x4a\x4d']===undefined){var _0x3d91e6=function(_0x3eb230){var _0x29c14f='\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';var _0x351cb5='',_0x25570f='',_0x398438=_0x351cb5+_0x3d91e6,_0x475ebd=(''+function(){return 0x2*0x16c+0x231+-0x1*0x509;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x716+0x1c42+-0x2357);for(var _0x4c050c=-0x1adf*-0x1+-0x260c+0x1*0xb2d,_0x24dd10,_0x567f12,_0x4a185b=0x1e6a+-0x25b1*0x1+0x747;_0x567f12=_0x3eb230['\x63\x68\x61\x72\x41\x74'](_0x4a185b++);~_0x567f12&&(_0x24dd10=_0x4c050c%(0x4*0x148+-0x335*0x6+0xe22)?_0x24dd10*(-0x1ab8+0x109e*0x1+0xa5a)+_0x567f12:_0x567f12,_0x4c050c++%(-0x2a9*0x1+0x1ea3+-0x3*0x952))?_0x351cb5+=_0x475ebd||_0x398438['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4a185b+(-0x203*0xb+0x1a20+-0x3f5))-(0x66a+0xb*0x21d+0x1*-0x1d9f)!==-0x1d60+-0x7b*0x4+0x1f4c?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x227*-0x3+0xe94+-0x720&_0x24dd10>>(-(-0x298+0x82*-0x3d+0x1c*0x133)*_0x4c050c&0xe8f+-0xc25+0x1*-0x264)):_0x4c050c:0x1d86+-0x22d5+0x54f){_0x567f12=_0x29c14f['\x69\x6e\x64\x65\x78\x4f\x66'](_0x567f12);}for(var _0x15331d=0x622*0x4+0xee7+-0x276f,_0x12ffc2=_0x351cb5['\x6c\x65\x6e\x67\x74\x68'];_0x15331d<_0x12ffc2;_0x15331d++){_0x25570f+='\x25'+('\x30\x30'+_0x351cb5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x15331d)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0xc01*0x1+0x62*0x65+-0xa1f*0x5))['\x73\x6c\x69\x63\x65'](-(-0x18ff+-0x122+0x1a23));}return decodeURIComponent(_0x25570f);};var _0x1fc212=function(_0x38ecdd,_0x318fd5){var _0x7d8c27=[],_0x11ec06=-0xafa+-0x29f*-0x4+0x7e,_0x3d77a2,_0x160a48='';_0x38ecdd=_0x3d91e6(_0x38ecdd);var _0x5125dd;for(_0x5125dd=-0x347*0x2+0x2*-0xa7e+0x1b8a;_0x5125dd<0x7*-0x1de+-0x26b4+0x34c6;_0x5125dd++){_0x7d8c27[_0x5125dd]=_0x5125dd;}for(_0x5125dd=0x14b*0x5+-0x3*0x60d+0x44*0x2c;_0x5125dd<0x4a9*-0x7+-0x1*0x1a14+0x3bb3;_0x5125dd++){_0x11ec06=(_0x11ec06+_0x7d8c27[_0x5125dd]+_0x318fd5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5125dd%_0x318fd5['\x6c\x65\x6e\x67\x74\x68']))%(-0x1686+0x269d+-0xf17),_0x3d77a2=_0x7d8c27[_0x5125dd],_0x7d8c27[_0x5125dd]=_0x7d8c27[_0x11ec06],_0x7d8c27[_0x11ec06]=_0x3d77a2;}_0x5125dd=0x26ce*0x1+0x1f2c+-0x45fa,_0x11ec06=-0x22*-0x71+0x832+-0xa5*0x24;for(var _0x3c44f2=-0xc1a+0x5b0+0x66a;_0x3c44f2<_0x38ecdd['\x6c\x65\x6e\x67\x74\x68'];_0x3c44f2++){_0x5125dd=(_0x5125dd+(0xe82*-0x1+-0x12*-0xb+0xdbd))%(-0x1*0x1ff3+0x26bc+0x5c9*-0x1),_0x11ec06=(_0x11ec06+_0x7d8c27[_0x5125dd])%(0x1*-0x2386+-0x52+0x24d8),_0x3d77a2=_0x7d8c27[_0x5125dd],_0x7d8c27[_0x5125dd]=_0x7d8c27[_0x11ec06],_0x7d8c27[_0x11ec06]=_0x3d77a2,_0x160a48+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x38ecdd['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3c44f2)^_0x7d8c27[(_0x7d8c27[_0x5125dd]+_0x7d8c27[_0x11ec06])%(0x63d+-0x7*0x13f+0x37c)]);}return _0x160a48;};_0x1131['\x42\x67\x77\x4e\x43\x68']=_0x1fc212,_0x1131['\x59\x53\x75\x74\x69\x78']={},_0x1131['\x43\x4e\x46\x62\x4a\x4d']=!![];}var _0xe6d80e=_0x4e2baf[-0x92*-0x8+0x692+-0x1db*0x6],_0x47e4fe=_0x54bf2b+_0xe6d80e,_0x4f1b6e=_0x1131['\x59\x53\x75\x74\x69\x78'][_0x47e4fe];if(!_0x4f1b6e){if(_0x1131['\x48\x74\x6f\x59\x53\x69']===undefined){var _0x175b8d=function(_0xf24e9){this['\x6d\x43\x65\x79\x74\x46']=_0xf24e9,this['\x71\x4d\x41\x68\x74\x4a']=[0x12e0+-0xeab+-0x434,0x588+0x5bf+-0x1*0xb47,0x14ae+0x2*-0x931+-0x24c],this['\x62\x69\x70\x43\x47\x63']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x48\x42\x4a\x66\x78\x45']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x70\x44\x42\x69\x4f\x6a']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x175b8d['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x47\x75\x56\x75\x6e\x68']=function(){var _0x3c348c=new RegExp(this['\x48\x42\x4a\x66\x78\x45']+this['\x70\x44\x42\x69\x4f\x6a']),_0x28c84b=_0x3c348c['\x74\x65\x73\x74'](this['\x62\x69\x70\x43\x47\x63']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x71\x4d\x41\x68\x74\x4a'][-0x3*0x8cc+-0x12a8+0x2d0d]:--this['\x71\x4d\x41\x68\x74\x4a'][0xfd1+0x1121+-0x20f2];return this['\x51\x71\x69\x50\x4a\x42'](_0x28c84b);},_0x175b8d['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x51\x71\x69\x50\x4a\x42']=function(_0x12fc15){if(!Boolean(~_0x12fc15))return _0x12fc15;return this['\x4d\x54\x62\x78\x47\x50'](this['\x6d\x43\x65\x79\x74\x46']);},_0x175b8d['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4d\x54\x62\x78\x47\x50']=function(_0x12cbd4){for(var _0x6b6c61=-0xafb+-0x124c+0x1d47,_0x5f0ec4=this['\x71\x4d\x41\x68\x74\x4a']['\x6c\x65\x6e\x67\x74\x68'];_0x6b6c61<_0x5f0ec4;_0x6b6c61++){this['\x71\x4d\x41\x68\x74\x4a']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x5f0ec4=this['\x71\x4d\x41\x68\x74\x4a']['\x6c\x65\x6e\x67\x74\x68'];}return _0x12cbd4(this['\x71\x4d\x41\x68\x74\x4a'][-0x126f+-0x357+0x15c6]);},(''+function(){return-0x1e0*-0xa+-0x197b+0x6bb*0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0xd89+0xa7e+0x104*0x3)&&new _0x175b8d(_0x1131)['\x47\x75\x56\x75\x6e\x68'](),_0x1131['\x48\x74\x6f\x59\x53\x69']=!![];}_0xc6f9a5=_0x1131['\x42\x67\x77\x4e\x43\x68'](_0xc6f9a5,_0x280a01),_0x1131['\x59\x53\x75\x74\x69\x78'][_0x47e4fe]=_0xc6f9a5;}else _0xc6f9a5=_0x4f1b6e;return _0xc6f9a5;}_0x5e2fd7[_0xe776dd(0x24a,'\x26\x6f\x40\x47')]=0.2,_0x5e2fd7['\x6f\x70\x74\x69\x6d\x69\x7a\x65']=0.2,_0x5e2fd7[_0xe776dd(0x17f,'\x7a\x44\x68\x25')]=0.5,_0x5e2fd7['\x65\x78\x70\x6c\x6f\x72\x65']=0.1,_0x5e2fd7[_0xe776dd(0x242,'\x5a\x49\x56\x28')+'\x6f\x70\x54\x68\x72\x65\x73\x68'+_0xe776dd(0x22a,'\x6f\x58\x4f\x6c')]=0.5,_0x5e2fd7[_0xe776dd(0x21a,'\x26\x6f\x40\x47')]=_0xe776dd(0x1e8,'\x58\x65\x79\x5a'),_0x5e2fd7[_0xe776dd(0x193,'\x4c\x42\x34\x39')+_0xe776dd(0x142,'\x35\x31\x59\x78')]='\x4e\x6f\x72\x6d\x61\x6c\x20\x6f'+_0xe776dd(0x1ee,'\x21\x7a\x50\x4e')+_0xe776dd(0x16c,'\x21\x70\x6b\x54')+_0xe776dd(0x1c4,'\x6e\x21\x53\x41')+_0xe776dd(0x184,'\x24\x4a\x6f\x45')+_0xe776dd(0x179,'\x21\x7a\x50\x4e');function _0x4c84(){var _0x5cad9b=['\x43\x67\x72\x4f\x57\x37\x5a\x64\x53\x4a\x38','\x67\x63\x6a\x70\x57\x4f\x54\x6b\x57\x52\x53\x6b\x57\x36\x75','\x57\x50\x6c\x64\x4d\x53\x6f\x4d\x45\x33\x65','\x57\x36\x30\x2f\x61\x53\x6b\x65\x57\x37\x31\x35\x57\x4f\x79\x30','\x65\x4e\x6d\x31','\x42\x53\x6b\x79\x43\x72\x34','\x41\x53\x6b\x70\x70\x47\x6c\x64\x50\x4c\x4a\x64\x56\x72\x6d','\x64\x33\x6d\x78\x57\x34\x69\x75\x6f\x78\x2f\x63\x50\x61','\x57\x37\x6c\x63\x53\x68\x74\x64\x50\x61','\x57\x35\x46\x64\x55\x43\x6b\x71\x57\x36\x75','\x57\x4f\x66\x43\x44\x38\x6b\x4a\x45\x6d\x6b\x51\x70\x53\x6b\x72','\x45\x4a\x79\x45\x64\x71','\x57\x36\x5a\x63\x54\x43\x6f\x62\x74\x6d\x6f\x78\x41\x6d\x6b\x38','\x57\x4f\x39\x69\x57\x50\x53\x39\x57\x52\x35\x35\x57\x35\x56\x64\x52\x53\x6f\x36\x57\x34\x50\x47\x42\x53\x6f\x70','\x57\x51\x68\x64\x4d\x43\x6b\x33\x62\x53\x6b\x42\x57\x37\x43','\x57\x50\x69\x48\x57\x4f\x33\x63\x52\x53\x6f\x47\x71\x77\x70\x63\x56\x57','\x6b\x78\x37\x64\x56\x57','\x57\x35\x43\x37\x6b\x67\x2f\x63\x54\x53\x6f\x75\x79\x32\x33\x63\x4f\x43\x6b\x6f\x42\x4c\x57','\x57\x36\x52\x64\x52\x4a\x6c\x64\x4f\x48\x4b\x4c\x79\x4c\x30','\x57\x36\x33\x64\x52\x53\x6b\x71\x57\x36\x4c\x7a\x57\x52\x66\x59\x44\x71','\x57\x50\x38\x59\x6f\x53\x6f\x67\x57\x50\x56\x64\x56\x43\x6b\x4d\x6f\x57','\x57\x35\x52\x63\x48\x5a\x46\x64\x50\x43\x6f\x54\x57\x4f\x4b\x77','\x44\x53\x6b\x6f\x42\x48\x68\x64\x4f\x65\x4a\x64\x48\x61\x38','\x57\x34\x50\x30\x67\x77\x34\x41\x57\x36\x65\x35\x57\x51\x79','\x57\x52\x64\x64\x4e\x6d\x6f\x6c','\x64\x65\x50\x4d\x61\x4b\x7a\x71\x57\x36\x5a\x63\x4d\x61','\x6e\x6d\x6f\x6a\x61\x38\x6f\x56\x73\x65\x6a\x50\x57\x51\x34','\x69\x62\x76\x79\x57\x52\x6a\x52','\x57\x51\x52\x64\x53\x4a\x69\x72\x57\x52\x34','\x57\x52\x34\x42\x57\x50\x74\x63\x48\x38\x6f\x35','\x6d\x6d\x6f\x62\x68\x43\x6f\x39\x75\x47\x66\x56\x57\x52\x6d','\x57\x37\x78\x64\x53\x53\x6b\x35\x57\x34\x62\x61','\x57\x34\x38\x2f\x57\x37\x35\x72\x57\x35\x75','\x57\x50\x6e\x4c\x45\x43\x6b\x54\x57\x35\x78\x63\x56\x6d\x6b\x42\x73\x47','\x57\x50\x48\x47\x70\x6d\x6f\x78','\x6c\x31\x6d\x54\x57\x50\x5a\x64\x56\x43\x6b\x4b\x69\x65\x4b','\x57\x50\x33\x64\x48\x6d\x6f\x41\x57\x4f\x35\x54\x57\x4f\x42\x64\x4a\x53\x6b\x6a','\x57\x37\x47\x73\x57\x37\x4b','\x57\x51\x52\x64\x4b\x4a\x65\x54\x57\x50\x71\x2f\x57\x50\x71\x4b','\x68\x68\x7a\x36\x57\x37\x30','\x46\x72\x6c\x64\x51\x59\x46\x64\x52\x53\x6f\x41\x46\x74\x43','\x57\x36\x46\x64\x4f\x5a\x64\x64\x50\x58\x6a\x67\x41\x66\x61','\x6a\x53\x6f\x31\x41\x68\x70\x64\x4d\x38\x6b\x48\x57\x37\x43\x38','\x57\x51\x37\x63\x47\x62\x56\x64\x4b\x47','\x65\x4e\x69\x31\x57\x34\x69\x76\x70\x78\x4e\x63\x47\x47','\x57\x34\x37\x63\x52\x30\x2f\x64\x52\x53\x6f\x38','\x63\x65\x57\x4c\x57\x35\x64\x64\x51\x38\x6b\x34\x6b\x65\x47','\x79\x38\x6b\x39\x57\x36\x62\x33','\x57\x51\x37\x64\x47\x38\x6b\x61\x74\x4a\x42\x64\x48\x6d\x6b\x31\x57\x37\x6d','\x57\x50\x6d\x55\x57\x51\x4e\x63\x4d\x38\x6f\x6d','\x57\x50\x68\x64\x4b\x53\x6f\x78\x72\x76\x39\x6b\x45\x53\x6f\x4a','\x6f\x59\x35\x55\x57\x50\x35\x4a','\x6d\x38\x6f\x49\x61\x6d\x6f\x59\x42\x47','\x57\x50\x54\x79\x68\x53\x6f\x63\x57\x50\x30','\x41\x33\x6a\x45\x57\x37\x74\x64\x54\x73\x74\x63\x4f\x30\x75','\x57\x34\x57\x42\x57\x34\x4c\x53\x57\x34\x65\x47\x57\x4f\x6c\x64\x51\x61','\x57\x35\x61\x73\x57\x35\x65','\x61\x72\x4c\x6b\x79\x38\x6b\x4f\x57\x37\x35\x4a\x57\x52\x6d','\x57\x50\x76\x64\x57\x4f\x78\x64\x54\x72\x71','\x57\x4f\x44\x53\x57\x34\x54\x55\x42\x43\x6f\x47\x57\x50\x71','\x79\x74\x4c\x6b\x6c\x53\x6f\x54\x62\x43\x6f\x44\x57\x4f\x53','\x6b\x43\x6f\x43\x57\x36\x46\x64\x4b\x31\x68\x63\x4f\x38\x6b\x6d\x57\x50\x43','\x41\x4d\x62\x51\x57\x37\x4e\x64\x56\x49\x6d','\x79\x73\x43\x2b\x61\x6d\x6f\x57\x61\x38\x6f\x42\x57\x50\x61','\x43\x6d\x6f\x74\x75\x75\x79','\x57\x4f\x56\x63\x48\x53\x6b\x73\x57\x50\x6c\x63\x4d\x4e\x4f','\x57\x37\x61\x70\x57\x37\x31\x71\x57\x34\x47','\x57\x4f\x69\x59\x6f\x53\x6f\x74\x57\x4f\x37\x64\x51\x53\x6b\x34\x70\x57','\x57\x52\x30\x52\x65\x43\x6b\x4d\x77\x61','\x61\x38\x6f\x54\x57\x50\x4c\x75\x57\x34\x2f\x64\x50\x43\x6f\x48','\x44\x53\x6f\x4e\x45\x68\x4a\x64\x53\x43\x6b\x2b\x57\x37\x38\x38','\x71\x6d\x6b\x34\x57\x51\x44\x79\x57\x36\x37\x64\x47\x6d\x6f\x2b\x77\x47','\x57\x52\x64\x63\x4a\x72\x79','\x57\x35\x4a\x63\x4d\x4d\x4e\x63\x51\x53\x6f\x7a\x57\x50\x69\x67\x72\x57','\x6c\x30\x46\x64\x4f\x61\x46\x64\x47\x38\x6f\x68\x79\x49\x65','\x79\x6d\x6f\x78\x6b\x43\x6b\x32\x57\x4f\x30\x67\x70\x6d\x6b\x6c','\x6c\x73\x62\x55\x57\x4f\x35\x4a\x57\x50\x2f\x63\x47\x75\x79','\x57\x52\x64\x64\x47\x6d\x6f\x72\x73\x66\x72\x64\x6d\x38\x6f\x55','\x57\x35\x61\x68\x57\x35\x58\x47\x57\x36\x34\x4e\x57\x4f\x4e\x63\x52\x71','\x69\x49\x62\x55\x57\x4f\x72\x59\x57\x51\x4e\x63\x49\x66\x43','\x57\x36\x52\x63\x49\x53\x6f\x6b\x62\x78\x65','\x57\x51\x64\x64\x4c\x61\x4f\x50\x57\x50\x6d\x55\x57\x4f\x34\x4a','\x57\x50\x74\x63\x4a\x38\x6b\x69\x57\x51\x4c\x57\x57\x50\x46\x63\x47\x43\x6b\x63','\x46\x53\x6b\x33\x42\x4e\x74\x64\x55\x53\x6b\x34\x57\x37\x43\x38','\x57\x51\x70\x64\x4b\x6d\x6b\x2b','\x43\x6d\x6b\x6b\x41\x48\x75','\x65\x53\x6f\x78\x57\x37\x70\x64\x4c\x30\x64\x63\x4e\x53\x6f\x6b','\x41\x53\x6b\x30\x42\x71\x74\x64\x51\x65\x37\x64\x52\x75\x34','\x57\x35\x37\x64\x51\x38\x6b\x31\x57\x35\x39\x69','\x57\x51\x33\x64\x4e\x43\x6f\x61\x75\x4b\x4b\x6b','\x57\x50\x62\x6c\x74\x43\x6b\x4b\x46\x53\x6b\x57\x61\x38\x6b\x70','\x64\x43\x6f\x61\x64\x6d\x6b\x33\x57\x35\x4e\x64\x51\x4a\x65\x72','\x57\x50\x6d\x6e\x57\x52\x2f\x64\x55\x77\x37\x63\x54\x43\x6f\x31\x57\x37\x57','\x79\x77\x58\x56\x57\x35\x6c\x64\x55\x47','\x61\x6d\x6f\x78\x61\x6d\x6b\x54\x57\x35\x33\x64\x4e\x74\x43\x6b','\x57\x37\x6e\x34\x6b\x4c\x75\x34','\x6a\x75\x5a\x64\x56\x71','\x57\x52\x46\x63\x4b\x49\x4e\x64\x4b\x33\x47\x2b\x57\x51\x64\x64\x54\x61','\x70\x4c\x6d\x6f\x57\x34\x4a\x64\x49\x57','\x6f\x67\x52\x64\x47\x74\x4a\x64\x50\x71','\x57\x36\x75\x73\x57\x36\x75','\x46\x53\x6b\x33\x74\x4e\x78\x64\x50\x43\x6b\x30\x57\x37\x34\x58','\x46\x6d\x6b\x61\x72\x71\x71\x41\x6a\x38\x6f\x46\x46\x61','\x6d\x38\x6b\x45\x76\x62\x50\x78\x6b\x53\x6f\x6d\x41\x57','\x57\x50\x2f\x63\x49\x57\x4e\x64\x52\x78\x6d','\x57\x51\x4a\x64\x4d\x43\x6b\x50\x63\x53\x6b\x42\x57\x36\x46\x64\x56\x5a\x30','\x65\x68\x4b\x49\x57\x35\x34','\x57\x4f\x4c\x4b\x6a\x53\x6f\x45\x57\x4f\x2f\x64\x51\x38\x6b\x4a\x6d\x71','\x57\x51\x43\x45\x6b\x47','\x57\x35\x31\x57\x64\x78\x79\x53\x57\x36\x62\x47\x57\x51\x47','\x57\x50\x6a\x48\x45\x6d\x6b\x49\x57\x35\x37\x64\x55\x6d\x6b\x79\x73\x47','\x57\x34\x4f\x4a\x75\x4a\x33\x64\x54\x38\x6b\x65\x7a\x77\x69','\x57\x34\x69\x35\x6f\x43\x6f\x2b\x57\x50\x2f\x64\x52\x6d\x6b\x44\x7a\x6d\x6f\x79\x6e\x6d\x6f\x2f\x57\x52\x69','\x57\x52\x31\x6c\x57\x52\x47\x6b\x57\x36\x52\x64\x48\x67\x38\x65\x44\x53\x6f\x79\x57\x37\x64\x64\x49\x43\x6b\x37','\x68\x76\x7a\x31\x64\x30\x50\x48\x57\x34\x2f\x63\x47\x47','\x67\x43\x6f\x59\x70\x6d\x6b\x41\x57\x37\x4f','\x6e\x38\x6f\x74\x6b\x75\x70\x63\x53\x61\x70\x64\x4f\x57\x42\x64\x4d\x6d\x6b\x6d\x71\x38\x6f\x31','\x57\x36\x4b\x6c\x57\x36\x72\x74\x57\x51\x42\x63\x47\x64\x6d\x69','\x57\x34\x31\x4a\x63\x66\x43\x7a','\x57\x50\x50\x4a\x43\x38\x6b\x64\x75\x47','\x61\x38\x6f\x54\x57\x50\x50\x41\x57\x34\x52\x64\x4f\x43\x6f\x69\x75\x47','\x69\x76\x53\x4f\x57\x35\x4e\x64\x53\x47','\x57\x4f\x6a\x30\x42\x6d\x6f\x32','\x70\x67\x5a\x64\x52\x4d\x53','\x57\x34\x68\x64\x54\x5a\x42\x64\x55\x72\x62\x47\x41\x75\x79','\x57\x4f\x61\x4a\x6e\x53\x6b\x49\x45\x61','\x57\x52\x42\x64\x4c\x47\x61\x4b\x57\x4f\x69\x4a\x57\x34\x4f\x2f','\x57\x35\x5a\x63\x48\x49\x74\x64\x50\x53\x6f\x36\x57\x52\x34\x6b\x72\x57','\x57\x37\x74\x63\x4a\x53\x6f\x79\x61\x78\x74\x63\x4e\x57','\x57\x34\x78\x64\x51\x53\x6b\x79\x57\x35\x66\x6b','\x57\x4f\x39\x62\x57\x52\x71','\x57\x52\x4a\x63\x4a\x48\x33\x64\x4d\x78\x6d\x69\x57\x51\x46\x64\x50\x71','\x66\x49\x44\x70\x57\x4f\x30','\x6d\x4b\x52\x64\x53\x75\x74\x63\x51\x47','\x42\x59\x71\x70','\x67\x68\x6d\x31\x57\x35\x34\x78\x6c\x4e\x4a\x63\x48\x61','\x57\x52\x42\x64\x54\x6d\x6f\x6c\x79\x4c\x57','\x57\x50\x75\x72\x57\x50\x61','\x57\x4f\x38\x42\x57\x50\x2f\x63\x56\x43\x6f\x33\x78\x61','\x57\x50\x58\x43\x73\x47','\x57\x34\x58\x49\x57\x36\x43\x5a\x57\x35\x43\x78\x57\x51\x4e\x64\x55\x61','\x57\x36\x7a\x7a\x42\x6d\x6f\x66\x6a\x65\x44\x6a\x57\x37\x53','\x57\x52\x42\x64\x47\x38\x6f\x58\x73\x75\x48\x62\x79\x6d\x6f\x4c','\x66\x38\x6f\x79\x57\x37\x78\x64\x4c\x31\x71','\x45\x4d\x50\x38\x57\x36\x33\x64\x4c\x47','\x57\x52\x72\x4e\x6a\x38\x6f\x37\x57\x51\x69','\x57\x4f\x6e\x49\x68\x43\x6f\x41\x57\x4f\x4a\x64\x55\x53\x6b\x35\x6e\x47','\x57\x51\x38\x41\x6a\x38\x6b\x41\x7a\x53\x6f\x56\x66\x53\x6f\x68','\x66\x6d\x6f\x76\x57\x37\x6d','\x57\x35\x31\x50\x67\x77\x6d\x43\x57\x36\x66\x58','\x57\x36\x34\x79\x57\x36\x31\x71\x57\x51\x68\x63\x4b\x78\x4f\x6f','\x43\x38\x6b\x48\x73\x71\x64\x64\x52\x47','\x57\x34\x61\x57\x6d\x53\x6f\x36\x57\x50\x70\x64\x52\x43\x6b\x45\x43\x6d\x6f\x66\x6e\x38\x6f\x6d\x57\x4f\x30','\x57\x4f\x2f\x64\x49\x6d\x6f\x65\x57\x4f\x7a\x54\x57\x4f\x42\x64\x48\x6d\x6b\x75','\x79\x32\x39\x38\x57\x52\x33\x64\x55\x63\x5a\x63\x50\x30\x65','\x70\x67\x4a\x64\x56\x49\x64\x64\x4e\x63\x6a\x57\x57\x51\x38','\x57\x34\x71\x42\x57\x4f\x48\x4d\x57\x36\x69\x2b\x57\x34\x37\x64\x51\x57','\x57\x36\x4a\x63\x4e\x6d\x6f\x52\x6a\x67\x34','\x7a\x74\x42\x64\x55\x30\x6d\x72','\x57\x36\x2f\x64\x56\x59\x52\x64\x55\x61','\x57\x37\x46\x64\x56\x61\x52\x64\x4e\x5a\x38','\x65\x5a\x44\x69\x57\x4f\x66\x76\x57\x52\x53\x61\x57\x37\x71','\x63\x38\x6f\x70\x61\x6d\x6b\x33\x57\x34\x4e\x64\x4e\x74\x43\x6c','\x67\x6d\x6f\x54\x57\x50\x4b\x76\x57\x4f\x70\x64\x4c\x53\x6f\x38\x74\x71','\x57\x37\x42\x64\x56\x59\x70\x64\x51\x48\x35\x33\x73\x30\x4f','\x57\x51\x53\x71\x6e\x53\x6b\x68\x44\x4b\x6d\x72\x57\x51\x79','\x45\x43\x6b\x56\x57\x37\x31\x51\x57\x50\x65','\x57\x37\x38\x41\x57\x34\x66\x35\x57\x4f\x53','\x65\x53\x6f\x78\x57\x37\x4e\x64\x4e\x75\x37\x63\x53\x6d\x6f\x79\x57\x52\x30','\x65\x6d\x6f\x37\x57\x50\x4c\x73\x57\x34\x74\x64\x56\x71','\x6c\x33\x39\x66\x57\x35\x4c\x68','\x57\x34\x54\x4c\x64\x67\x34\x78\x57\x36\x4f\x35\x57\x52\x4f','\x57\x52\x52\x64\x4d\x43\x6b\x4f\x65\x6d\x6b\x44\x57\x36\x42\x64\x50\x49\x43','\x57\x37\x37\x63\x49\x62\x5a\x64\x49\x77\x6d\x59\x57\x51\x46\x63\x53\x71','\x7a\x5a\x4b\x65\x62\x38\x6f\x30\x62\x38\x6f\x43\x57\x50\x30','\x6e\x53\x6f\x53\x67\x43\x6b\x6b\x57\x35\x53','\x57\x36\x4b\x35\x57\x34\x54\x79\x57\x34\x53','\x6a\x31\x57\x50\x57\x35\x74\x64\x4c\x71','\x57\x35\x2f\x63\x4c\x43\x6b\x71\x57\x35\x43\x4f\x57\x35\x46\x63\x4d\x6d\x6b\x56\x57\x34\x46\x64\x56\x71\x70\x64\x4b\x58\x71','\x57\x50\x79\x58\x6f\x4e\x53\x77\x57\x37\x6a\x57\x57\x52\x61','\x7a\x38\x6b\x56\x57\x36\x6a\x38','\x65\x62\x44\x2b\x76\x43\x6b\x73','\x57\x34\x56\x63\x50\x6d\x6b\x61\x57\x35\x79','\x57\x34\x33\x63\x4d\x49\x42\x64\x52\x53\x6f\x7a\x57\x50\x71\x6a\x76\x57','\x57\x36\x37\x64\x54\x43\x6b\x6e\x57\x36\x48\x61','\x57\x50\x6e\x7a\x57\x52\x78\x64\x54\x49\x52\x63\x56\x38\x6b\x53\x57\x36\x34','\x57\x52\x30\x57\x62\x53\x6b\x33\x77\x71','\x57\x52\x47\x2f\x6c\x38\x6b\x76\x44\x71','\x57\x50\x64\x63\x4a\x43\x6b\x6d\x57\x50\x5a\x63\x48\x77\x4e\x64\x47\x49\x38','\x57\x50\x6a\x72\x7a\x53\x6b\x45\x74\x61','\x68\x53\x6f\x4b\x57\x4f\x34','\x57\x36\x4b\x43\x57\x36\x39\x67\x57\x4f\x5a\x63\x48\x59\x34\x67','\x57\x4f\x2f\x64\x49\x6d\x6f\x65\x57\x4f\x7a\x54\x57\x50\x42\x63\x4a\x57','\x57\x51\x52\x63\x56\x38\x6f\x6b\x42\x6d\x6f\x33\x44\x6d\x6b\x71\x57\x35\x34','\x6b\x43\x6b\x43\x71\x73\x54\x71','\x57\x50\x44\x4d\x46\x49\x37\x64\x52\x6d\x6b\x66','\x57\x51\x72\x2f\x72\x43\x6f\x6a','\x41\x38\x6b\x37\x73\x73\x74\x64\x4b\x71','\x45\x6d\x6b\x50\x44\x68\x6c\x64\x4f\x43\x6b\x57\x57\x37\x4b\x38','\x57\x36\x64\x64\x50\x43\x6b\x6e\x57\x36\x76\x44\x57\x52\x4c\x32\x7a\x61','\x57\x52\x6c\x64\x4b\x53\x6b\x71\x76\x49\x56\x64\x4e\x6d\x6b\x4d\x57\x52\x35\x6a\x71\x68\x42\x63\x56\x58\x69','\x57\x50\x4a\x64\x4b\x38\x6f\x6a\x57\x52\x44\x5a','\x57\x35\x47\x52\x43\x43\x6b\x65\x57\x34\x5a\x63\x52\x53\x6f\x59\x6f\x53\x6f\x76\x57\x34\x39\x72\x45\x30\x65','\x6e\x38\x6f\x41\x6d\x53\x6b\x33\x57\x34\x6d\x73\x41\x6d\x6b\x6c','\x6f\x76\x75\x67\x57\x35\x70\x64\x51\x43\x6b\x50\x6d\x32\x71','\x57\x51\x31\x54\x43\x74\x70\x64\x55\x43\x6b\x6d\x46\x67\x69','\x44\x53\x6b\x6f\x42\x48\x68\x64\x4f\x65\x47','\x57\x34\x58\x47\x57\x36\x43\x56\x57\x34\x4f\x43\x57\x51\x4e\x64\x54\x47','\x57\x50\x7a\x4d\x42\x5a\x33\x64\x50\x53\x6b\x46\x72\x67\x71','\x57\x50\x4a\x63\x4c\x53\x6b\x77\x57\x50\x57','\x71\x66\x66\x47\x57\x35\x52\x64\x56\x61','\x63\x76\x53\x34\x57\x35\x33\x64\x4b\x47','\x57\x50\x4a\x63\x47\x43\x6b\x6c\x57\x50\x2f\x63\x4d\x4e\x6c\x64\x4b\x57','\x66\x57\x66\x6c\x45\x38\x6b\x30\x57\x52\x6d\x71\x57\x51\x34','\x57\x52\x6c\x64\x4d\x38\x6b\x45\x75\x59\x37\x64\x4e\x38\x6b\x55\x57\x51\x6a\x6b\x76\x4b\x74\x63\x4f\x57\x38','\x57\x50\x39\x37\x6c\x53\x6f\x43\x57\x50\x56\x64\x53\x38\x6b\x35','\x6a\x67\x5a\x64\x55\x67\x56\x63\x4b\x61','\x45\x72\x52\x64\x47\x68\x61\x33','\x7a\x4d\x72\x52\x57\x37\x37\x64\x51\x73\x74\x63\x50\x31\x71','\x57\x52\x44\x33\x45\x4a\x33\x64\x51\x38\x6b\x75\x6b\x66\x47','\x57\x51\x42\x64\x4d\x57\x79\x50\x57\x4f\x6d\x7a\x57\x4f\x47\x35','\x57\x50\x78\x63\x49\x63\x5a\x64\x4f\x66\x30','\x68\x6d\x6f\x49\x57\x51\x39\x6f\x57\x34\x57','\x57\x35\x6c\x64\x49\x53\x6f\x6a\x57\x35\x43','\x79\x43\x6b\x74\x44\x57\x70\x64\x56\x76\x70\x64\x50\x47\x43','\x57\x37\x48\x70\x42\x43\x6f\x6f\x6c\x53\x6f\x36\x78\x6d\x6f\x37\x57\x37\x61\x71\x61\x6d\x6f\x42\x57\x37\x61','\x57\x36\x46\x63\x49\x43\x6f\x62\x64\x68\x74\x63\x4c\x38\x6f\x37','\x45\x53\x6b\x52\x57\x36\x35\x52\x57\x50\x44\x4d','\x57\x52\x4a\x64\x4b\x38\x6b\x4f','\x57\x51\x7a\x30\x61\x43\x6f\x6c\x57\x52\x57','\x63\x4b\x7a\x35\x64\x71','\x68\x31\x39\x4d\x64\x31\x79','\x57\x36\x4a\x64\x47\x38\x6b\x31\x57\x35\x66\x55','\x70\x4b\x2f\x64\x49\x4a\x33\x64\x4b\x6d\x6f\x64\x41\x74\x75','\x63\x78\x4b\x52\x57\x34\x57\x6b\x6c\x4b\x68\x63\x49\x61','\x57\x50\x38\x74\x57\x4f\x4e\x63\x47\x6d\x6f\x31','\x57\x36\x2f\x63\x53\x75\x46\x64\x51\x6d\x6f\x47\x57\x50\x6a\x56\x57\x36\x79','\x57\x4f\x47\x6d\x57\x50\x46\x63\x4f\x47','\x57\x4f\x31\x49\x6b\x6d\x6f\x71\x57\x50\x70\x64\x53\x38\x6b\x4a\x6b\x47','\x57\x50\x61\x46\x57\x50\x5a\x63\x51\x53\x6f\x34','\x65\x6d\x6f\x62\x68\x43\x6f\x39\x75\x47\x66\x56\x57\x52\x6d','\x6b\x43\x6f\x44\x69\x53\x6b\x36\x57\x50\x53\x55\x45\x47','\x57\x35\x57\x79\x57\x50\x46\x63\x54\x38\x6f\x39\x77\x4e\x42\x64\x56\x47','\x57\x4f\x72\x62\x79\x38\x6b\x72\x7a\x71','\x6e\x5a\x47\x52\x57\x51\x33\x63\x4f\x33\x74\x63\x4f\x78\x52\x63\x53\x59\x4e\x63\x4a\x53\x6b\x39','\x57\x35\x5a\x63\x51\x43\x6b\x72\x57\x34\x61\x6c\x43\x65\x4b\x4a','\x66\x67\x57\x56\x57\x34\x71\x6f\x6e\x78\x46\x63\x47\x47','\x57\x37\x68\x64\x4d\x4a\x71\x75\x57\x51\x34\x6f\x57\x4f\x71','\x44\x6d\x6b\x2f\x41\x4e\x68\x64\x55\x6d\x6b\x4a\x57\x36\x47','\x57\x52\x78\x64\x47\x58\x43\x32\x57\x4f\x6d','\x6b\x43\x6f\x44\x6b\x6d\x6b\x57\x57\x50\x75\x61\x41\x6d\x6b\x70','\x42\x6d\x6b\x37\x76\x64\x33\x64\x4a\x57','\x46\x72\x52\x64\x56\x68\x53\x4e\x57\x51\x31\x38\x42\x71','\x57\x4f\x6a\x6d\x57\x52\x5a\x64\x54\x49\x64\x63\x50\x43\x6f\x4b\x57\x37\x4b','\x57\x37\x37\x64\x4d\x43\x6b\x63\x70\x43\x6b\x37\x57\x37\x56\x64\x4a\x71','\x57\x36\x4e\x64\x4b\x76\x46\x63\x4a\x49\x6a\x56\x57\x51\x68\x64\x4e\x5a\x6a\x63\x57\x35\x38\x38','\x57\x52\x56\x63\x4d\x72\x2f\x64\x4c\x4e\x4b\x4c\x57\x52\x65','\x41\x6d\x6f\x6e\x43\x47\x54\x6c','\x57\x4f\x34\x41\x6a\x38\x6b\x78\x75\x57','\x57\x4f\x46\x63\x4d\x71\x4e\x64\x52\x4e\x43','\x57\x4f\x4e\x63\x49\x4a\x37\x64\x47\x68\x47','\x57\x52\x68\x63\x4a\x71\x53','\x57\x37\x6c\x63\x53\x67\x64\x64\x54\x43\x6f\x52\x57\x50\x58\x49','\x57\x52\x4a\x64\x47\x6d\x6f\x61','\x57\x50\x65\x32\x57\x50\x74\x63\x52\x53\x6f\x59','\x68\x4d\x71\x59\x57\x35\x34\x78\x6c\x31\x37\x63\x4e\x47','\x70\x4b\x34\x56\x57\x35\x33\x64\x55\x53\x6b\x31\x42\x66\x71','\x57\x35\x76\x75\x76\x53\x6b\x34\x46\x43\x6b\x33\x6f\x6d\x6f\x77','\x57\x50\x4c\x46\x45\x43\x6b\x36\x57\x34\x42\x63\x4f\x43\x6b\x6f\x65\x61','\x57\x51\x7a\x4e\x44\x53\x6b\x77\x78\x53\x6b\x67\x66\x38\x6b\x2f','\x57\x4f\x44\x36\x46\x64\x64\x64\x51\x53\x6b\x55\x7a\x33\x34','\x64\x73\x66\x62\x57\x52\x6a\x52','\x57\x36\x39\x6c\x57\x35\x69\x33\x57\x35\x71'];_0x4c84=function(){return _0x5cad9b;};return _0x4c84();}var _0x56bbe9={};_0x56bbe9['\x72\x65\x70\x61\x69\x72']=0.05,_0x56bbe9[_0xe776dd(0x21d,'\x7a\x44\x68\x25')]=0.1,_0x56bbe9[_0xe776dd(0x167,'\x76\x45\x37\x43')]=0.8,_0x56bbe9[_0xe776dd(0x1b9,'\x5b\x50\x72\x57')]=0.05,_0x56bbe9[_0xe776dd(0x189,'\x48\x49\x73\x6c')+_0xe776dd(0x22f,'\x7a\x44\x68\x25')+_0xe776dd(0x21e,'\x58\x72\x6a\x30')]=0.3,_0x56bbe9[_0xe776dd(0x1a8,'\x35\x31\x59\x78')]=_0xe776dd(0x186,'\x48\x49\x73\x6c')+_0xe776dd(0x206,'\x76\x45\x37\x43'),_0x56bbe9[_0xe776dd(0x1eb,'\x36\x63\x57\x6d')+_0xe776dd(0x144,'\x6e\x21\x53\x41')]=_0xe776dd(0x18e,'\x62\x34\x5e\x6e')+_0xe776dd(0x1de,'\x50\x43\x6e\x5a')+_0xe776dd(0x239,'\x48\x49\x73\x6c')+_0xe776dd(0x155,'\x58\x4c\x67\x55')+_0xe776dd(0x188,'\x5d\x28\x4e\x7a')+_0xe776dd(0x153,'\x4c\x42\x34\x39')+_0xe776dd(0x152,'\x21\x7a\x50\x4e')+'\x2e';var _0x16ee4a={};_0x16ee4a[_0xe776dd(0x24a,'\x26\x6f\x40\x47')]=0.4,_0x16ee4a[_0xe776dd(0x1cb,'\x6a\x45\x70\x51')]=0.35,_0x16ee4a[_0xe776dd(0x1b3,'\x24\x4a\x6f\x45')]=0.2,_0x16ee4a['\x65\x78\x70\x6c\x6f\x72\x65']=0.05,_0x16ee4a[_0xe776dd(0x15d,'\x4c\x33\x43\x50')+_0xe776dd(0x1f0,'\x23\x38\x4e\x34')+_0xe776dd(0x24c,'\x4e\x64\x52\x57')]=0.7,_0x16ee4a[_0xe776dd(0x148,'\x4c\x73\x7a\x48')]=_0xe776dd(0x1fc,'\x71\x32\x41\x57')+'\x67',_0x16ee4a[_0xe776dd(0x15a,'\x6a\x45\x70\x51')+_0xe776dd(0x22e,'\x40\x21\x5e\x5a')]='\x41\x66\x74\x65\x72\x20\x61\x20'+_0xe776dd(0x1ed,'\x4f\x68\x61\x35')+_0xe776dd(0x213,'\x4b\x39\x43\x32')+_0xe776dd(0x226,'\x4e\x64\x52\x57')+_0xe776dd(0x1cd,'\x38\x4b\x42\x47')+_0xe776dd(0x1d0,'\x43\x2a\x35\x59')+_0xe776dd(0x223,'\x71\x32\x41\x57');var _0x1dd6a0={};_0x1dd6a0[_0xe776dd(0x20b,'\x24\x30\x59\x5d')]=0.8,_0x1dd6a0['\x6f\x70\x74\x69\x6d\x69\x7a\x65']=0.18,_0x1dd6a0[_0xe776dd(0x161,'\x4c\x73\x7a\x48')]=0x0,_0x1dd6a0[_0xe776dd(0x14e,'\x21\x70\x6b\x54')]=0.02,_0x1dd6a0[_0xe776dd(0x1e3,'\x7a\x24\x6b\x44')+_0xe776dd(0x209,'\x76\x45\x37\x43')+_0xe776dd(0x1be,'\x5b\x50\x72\x57')]=0x1,_0x1dd6a0['\x6c\x61\x62\x65\x6c']=_0xe776dd(0x207,'\x4c\x73\x7a\x48')+_0xe776dd(0x202,'\x58\x4c\x67\x55'),_0x1dd6a0[_0xe776dd(0x180,'\x4a\x42\x4a\x33')+_0xe776dd(0x236,'\x50\x74\x61\x64')]=_0xe776dd(0x246,'\x4c\x33\x43\x50')+_0xe776dd(0x21c,'\x21\x7a\x50\x4e')+_0xe776dd(0x165,'\x58\x72\x6a\x30')+_0xe776dd(0x210,'\x7a\x44\x68\x25')+_0xe776dd(0x215,'\x24\x4a\x6f\x45')+_0xe776dd(0x218,'\x58\x4c\x67\x55')+'\x65\x6c\x73\x65\x2e';var _0x34ca98={};_0x34ca98[_0xe776dd(0x187,'\x43\x2a\x35\x59')]=0.6,_0x34ca98[_0xe776dd(0x231,'\x78\x75\x63\x7a')]=0.22,_0x34ca98[_0xe776dd(0x1f6,'\x25\x62\x50\x23')]=0.15,_0x34ca98['\x65\x78\x70\x6c\x6f\x72\x65']=0.03,_0x34ca98[_0xe776dd(0x1a3,'\x25\x62\x50\x23')+_0xe776dd(0x147,'\x71\x32\x41\x57')+_0xe776dd(0x14d,'\x4c\x73\x7a\x48')]=0.8,_0x34ca98[_0xe776dd(0x191,'\x77\x37\x56\x73')]=_0xe776dd(0x203,'\x62\x34\x5e\x6e')+'\x61\x62\x69\x6c\x69\x7a\x61\x74'+_0xe776dd(0x22e,'\x40\x21\x5e\x5a'),_0x34ca98['\x64\x65\x73\x63\x72\x69\x70\x74'+_0xe776dd(0x1e2,'\x71\x32\x41\x57')]=_0xe776dd(0x1e4,'\x58\x65\x79\x5a')+_0xe776dd(0x1ae,'\x5d\x74\x42\x4f')+_0xe776dd(0x219,'\x77\x29\x72\x67')+_0xe776dd(0x1ab,'\x35\x31\x59\x78')+_0xe776dd(0x199,'\x43\x2a\x35\x59')+_0xe776dd(0x166,'\x5b\x50\x72\x57')+_0xe776dd(0x14f,'\x40\x21\x5e\x5a')+_0xe776dd(0x228,'\x41\x5d\x77\x30')+'\x67\x2e';var _0x14fc20={};_0x14fc20[_0xe776dd(0x1ca,'\x4c\x42\x34\x39')]=0.55,_0x14fc20[_0xe776dd(0x1af,'\x25\x62\x50\x23')]=0.25,_0x14fc20[_0xe776dd(0x1f6,'\x25\x62\x50\x23')]=0.05,_0x14fc20[_0xe776dd(0x1b1,'\x7a\x44\x68\x25')]=0.15,_0x14fc20[_0xe776dd(0x1e0,'\x43\x2a\x35\x59')+_0xe776dd(0x14b,'\x50\x43\x6e\x5a')+_0xe776dd(0x177,'\x5a\x49\x56\x28')]=0.9,_0x14fc20[_0xe776dd(0x243,'\x4f\x68\x61\x35')]=_0xe776dd(0x194,'\x48\x49\x73\x6c')+_0xe776dd(0x1d5,'\x76\x45\x37\x43'),_0x14fc20[_0xe776dd(0x233,'\x58\x72\x6a\x30')+_0xe776dd(0x1ce,'\x25\x62\x50\x23')]=_0xe776dd(0x1f8,'\x4f\x68\x61\x35')+_0xe776dd(0x20d,'\x50\x43\x6e\x5a')+_0xe776dd(0x154,'\x77\x37\x56\x73')+_0xe776dd(0x1dc,'\x4c\x33\x43\x50')+_0xe776dd(0x217,'\x71\x32\x41\x57')+_0xe776dd(0x1a7,'\x50\x43\x6e\x5a')+_0xe776dd(0x15c,'\x5a\x49\x56\x28')+'\x6c\x6f\x72\x65\x20\x66\x6f\x72'+_0xe776dd(0x230,'\x78\x75\x63\x7a')+_0xe776dd(0x145,'\x5d\x28\x4e\x7a');var _0x24b304={};_0x24b304[_0xe776dd(0x1b6,'\x4e\x64\x52\x57')]=_0x5e2fd7,_0x24b304['\x69\x6e\x6e\x6f\x76\x61\x74\x65']=_0x56bbe9,_0x24b304[_0xe776dd(0x208,'\x4c\x42\x34\x39')]=_0x16ee4a,_0x24b304[_0xe776dd(0x1e1,'\x21\x70\x6b\x54')+_0xe776dd(0x212,'\x5b\x50\x72\x57')]=_0x1dd6a0,_0x24b304[_0xe776dd(0x15e,'\x50\x74\x61\x64')+_0xe776dd(0x19b,'\x26\x6f\x40\x47')]=_0x34ca98,_0x24b304[_0xe776dd(0x164,'\x21\x70\x6b\x54')+'\x74\x61\x74\x65']=_0x14fc20;var _0x5c9ee0=_0x24b304;function _0x3e7fe9(){var _0x495234=_0xe776dd,_0x3d200b={};_0x3d200b[_0x495234(0x17b,'\x78\x75\x63\x7a')]=_0x495234(0x1d8,'\x58\x72\x6a\x30'),_0x3d200b[_0x495234(0x1ff,'\x50\x43\x6e\x5a')]=_0x495234(0x235,'\x50\x43\x6e\x5a')+_0x495234(0x221,'\x43\x2a\x35\x59')+_0x495234(0x1cf,'\x43\x2a\x35\x59'),_0x3d200b[_0x495234(0x23d,'\x41\x5d\x77\x30')]=_0x495234(0x244,'\x36\x63\x57\x6d');var _0x19bbe7=_0x3d200b;try{var _0x5d9ac0=_0x1bd3e3[_0x495234(0x20f,'\x5a\x49\x56\x28')](__dirname,'\x2e\x2e','\x2e\x2e',_0x19bbe7[_0x495234(0x182,'\x21\x7a\x50\x4e')],_0x19bbe7[_0x495234(0x150,'\x43\x2a\x35\x59')]),_0x51a313=_0x1bd3e3[_0x495234(0x20f,'\x5a\x49\x56\x28')](__dirname,'\x2e\x2e','\x2e\x2e','\x2e\x2e','\x2e\x2e',_0x19bbe7[_0x495234(0x240,'\x21\x70\x6b\x54')],_0x495234(0x21b,'\x23\x38\x4e\x34')+'\x6e',_0x495234(0x15b,'\x41\x5d\x77\x30')+_0x495234(0x1c5,'\x36\x63\x57\x6d')+_0x495234(0x1f9,'\x28\x42\x28\x61')),_0x38e7e1=[_0x5d9ac0,_0x51a313];for(var _0x15535c=-0xc51+0x1*0xa21+0x2*0x118;_0x15535c<_0x38e7e1['\x6c\x65\x6e\x67\x74\x68'];_0x15535c++){if(_0x57e198[_0x495234(0x1c2,'\x25\x62\x50\x23')+'\x6e\x63'](_0x38e7e1[_0x15535c])){var _0x11b517=JSON[_0x495234(0x15f,'\x28\x42\x28\x61')](_0x57e198[_0x495234(0x201,'\x58\x4c\x67\x55')+_0x495234(0x1d3,'\x4a\x42\x4a\x33')](_0x38e7e1[_0x15535c],_0x19bbe7[_0x495234(0x173,'\x35\x24\x4b\x21')]));return _0x11b517&&Number[_0x495234(0x200,'\x4c\x42\x34\x39')](_0x11b517[_0x495234(0x1f3,'\x4c\x33\x43\x50')+'\x6e\x74'])?_0x11b517[_0x495234(0x225,'\x41\x5d\x77\x30')+'\x6e\x74']:0x23ab+-0x14f6+-0xeb5;}}}catch(_0x400d27){}return-0x38*0x3+0x2209+0x1*-0x2161;}function _0x6025a7(_0x8eecfc){var _0x43099a=_0xe776dd,_0x51197e={'\x57\x6b\x51\x7a\x6e':'\x75\x74\x66\x38','\x54\x6f\x46\x5a\x43':function(_0x1eeb47,_0x209a1d){return _0x1eeb47(_0x209a1d);},'\x73\x69\x44\x74\x55':function(_0x3caa0d,_0x1e1d71){return _0x3caa0d===_0x1e1d71;},'\x6c\x43\x4b\x57\x41':_0x43099a(0x175,'\x24\x30\x59\x5d'),'\x57\x47\x63\x50\x4c':_0x43099a(0x1fa,'\x26\x6f\x40\x47')+'\x2b\x29\x2b\x24','\x59\x5a\x50\x53\x67':function(_0x3a72d3,_0x422065){return _0x3a72d3(_0x422065);},'\x6f\x50\x57\x54\x58':_0x43099a(0x1a9,'\x58\x65\x79\x5a'),'\x63\x6d\x77\x4f\x61':function(_0x149fbb,_0x3638f8){return _0x149fbb===_0x3638f8;},'\x46\x4a\x41\x6d\x6c':_0x43099a(0x1ea,'\x58\x4c\x67\x55'),'\x4e\x71\x55\x58\x4f':_0x43099a(0x1ec,'\x50\x43\x6e\x5a'),'\x4b\x69\x43\x5a\x4b':function(_0x584499,_0x3d98e2){return _0x584499!==_0x3d98e2;},'\x59\x48\x67\x63\x6e':function(_0x5c380a,_0x2341a1){return _0x5c380a&&_0x2341a1;},'\x7a\x47\x6b\x4a\x56':function(_0x4dc8f2,_0x5cbcf6){return _0x4dc8f2===_0x5cbcf6;},'\x6f\x7a\x4b\x67\x6b':_0x43099a(0x24b,'\x4a\x42\x4a\x33'),'\x75\x6e\x55\x62\x5a':function(_0x50769d,_0x2111b8){return _0x50769d>_0x2111b8;},'\x66\x75\x6e\x63\x69':function(_0x4a3d93,_0x34aa35){return _0x4a3d93<=_0x34aa35;},'\x7a\x73\x7a\x50\x4c':_0x43099a(0x14a,'\x50\x43\x6e\x5a'),'\x48\x6d\x4e\x6f\x72':_0x43099a(0x238,'\x36\x63\x57\x6d')+_0x43099a(0x18d,'\x24\x30\x59\x5d'),'\x42\x50\x78\x47\x67':_0x43099a(0x216,'\x77\x29\x72\x67')+_0x43099a(0x237,'\x21\x70\x6b\x54')+'\x74\x65','\x67\x62\x42\x49\x46':_0x43099a(0x197,'\x5a\x49\x56\x28'),'\x67\x68\x4f\x45\x76':'\x73\x74\x65\x61\x64\x79\x2d\x73'+_0x43099a(0x21f,'\x43\x2a\x35\x59'),'\x4c\x77\x47\x77\x75':_0x43099a(0x23f,'\x40\x21\x5e\x5a')+'\x6e\x5f\x73\x61\x74\x75\x72\x61'+_0x43099a(0x19f,'\x7a\x24\x6b\x44'),'\x59\x78\x66\x54\x61':_0x43099a(0x18a,'\x24\x30\x59\x5d')},_0x20891e=_0x8eecfc&&Array['\x69\x73\x41\x72\x72\x61\x79'](_0x8eecfc[_0x43099a(0x190,'\x50\x43\x6e\x5a')])?_0x8eecfc['\x73\x69\x67\x6e\x61\x6c\x73']:[],_0x1d143f=_0x51197e['\x59\x5a\x50\x53\x67'](String,process.env.EVOLVE_STRATEGY||_0x51197e[_0x43099a(0x1fb,'\x35\x31\x59\x78')])[_0x43099a(0x1d1,'\x25\x62\x50\x23')+_0x43099a(0x250,'\x76\x45\x37\x43')]()[_0x43099a(0x1a6,'\x35\x31\x59\x78')](),_0x31c54e=![];if(!process.env.EVOLVE_STRATEGY){if(_0x51197e[_0x43099a(0x227,'\x4c\x42\x34\x39')](_0x43099a(0x174,'\x35\x24\x4b\x21'),_0x51197e[_0x43099a(0x1c9,'\x5d\x28\x4e\x7a')])){var _0x48f381=_0x417b27[_0x43099a(0x1b2,'\x23\x38\x4e\x34')](_0x4811d1[_0x43099a(0x170,'\x4b\x39\x43\x32')+'\x53\x79\x6e\x63'](_0x581e8f[_0x1787bc],eeiFQY[_0x43099a(0x1bd,'\x5b\x50\x72\x57')]));return _0x48f381&&_0x1f75d7[_0x43099a(0x1a5,'\x25\x4d\x6a\x69')](_0x48f381[_0x43099a(0x23c,'\x7a\x24\x6b\x44')+'\x6e\x74'])?_0x48f381[_0x43099a(0x249,'\x4b\x39\x43\x32')+'\x6e\x74']:-0xcf+-0xa*-0x15f+0x1*-0xce7;}else{var _0x1ba20a=String(process.env.FORCE_INNOVATION||process.env.EVOLVE_FORCE_INNOVATION||'')[_0x43099a(0x185,'\x4f\x68\x61\x35')+_0x43099a(0x1da,'\x77\x37\x56\x73')]();if(_0x1ba20a===_0x51197e[_0x43099a(0x20c,'\x58\x4c\x67\x55')]){if(_0x51197e[_0x43099a(0x229,'\x21\x70\x6b\x54')](_0x43099a(0x20e,'\x50\x74\x61\x64'),_0x43099a(0x160,'\x40\x21\x5e\x5a')))_0x1d143f=_0x51197e[_0x43099a(0x157,'\x55\x64\x7a\x34')],_0x31c54e=!![];else return _0x2b4686[_0x43099a(0x234,'\x25\x62\x50\x23')](_0x27afbc);}}}var _0x31ce36=!process.env.EVOLVE_STRATEGY||_0x1d143f===_0x51197e[_0x43099a(0x1e6,'\x23\x38\x4e\x34')]||_0x51197e[_0x43099a(0x1a4,'\x35\x31\x59\x78')](_0x1d143f,_0x43099a(0x24e,'\x6a\x45\x70\x51'));if(_0x51197e['\x59\x48\x67\x63\x6e'](_0x31ce36,!_0x31c54e)){if(_0x51197e[_0x43099a(0x24f,'\x77\x37\x56\x73')](_0x51197e['\x6f\x7a\x4b\x67\x6b'],_0x43099a(0x232,'\x5b\x50\x72\x57'))){var _0x2c79da=_0x3e7fe9();if(_0x51197e[_0x43099a(0x204,'\x4e\x64\x52\x57')](_0x2c79da,0x892+-0x1*0x155+-0x73d)&&_0x51197e['\x66\x75\x6e\x63\x69'](_0x2c79da,-0x4ce+0xe43+0x12e*-0x8)){if(_0x51197e[_0x43099a(0x1cc,'\x71\x32\x41\x57')](_0x51197e['\x7a\x73\x7a\x50\x4c'],_0x51197e[_0x43099a(0x1c8,'\x6a\x45\x70\x51')])){if(_0x4f936d[_0x43099a(0x224,'\x6e\x21\x53\x41')+'\x6e\x63'](_0x3c3111[_0xfd9446])){var _0x28b536=_0x445203[_0x43099a(0x1fd,'\x77\x29\x72\x67')](_0x43dcce['\x72\x65\x61\x64\x46\x69\x6c\x65'+'\x53\x79\x6e\x63'](_0x5792a3[_0x3e803a],_0x43099a(0x20a,'\x6d\x7a\x39\x78')));return _0x28b536&&_0xbd63a0[_0x43099a(0x22b,'\x5b\x50\x72\x57')](_0x28b536[_0x43099a(0x1c7,'\x48\x49\x73\x6c')+'\x6e\x74'])?_0x28b536[_0x43099a(0x195,'\x23\x38\x4e\x34')+'\x6e\x74']:0x20d5+-0x1c1a+-0x4bb*0x1;}}else _0x1d143f=_0x51197e[_0x43099a(0x1f7,'\x25\x4d\x6a\x69')];}if(_0x51197e[_0x43099a(0x196,'\x5b\x50\x72\x57')](_0x20891e['\x69\x6e\x64\x65\x78\x4f\x66'](_0x51197e[_0x43099a(0x18b,'\x4c\x42\x34\x39')]),-(0x935+-0x1*0x1eaf+0x157b))){if(_0x43099a(0x1ba,'\x6d\x7a\x39\x78')===_0x51197e[_0x43099a(0x176,'\x6e\x21\x53\x41')])_0x1d143f=_0x51197e['\x67\x68\x4f\x45\x76'];else{var _0x5b35c2=_0x51197e[_0x43099a(0x16e,'\x62\x34\x5e\x6e')](_0x45661e,_0x4174f0.env.FORCE_INNOVATION||_0x20ddb6.env.EVOLVE_FORCE_INNOVATION||'')[_0x43099a(0x1b5,'\x55\x64\x7a\x34')+_0x43099a(0x1c0,'\x71\x32\x41\x57')]();_0x51197e[_0x43099a(0x22c,'\x4f\x68\x61\x35')](_0x5b35c2,_0x43099a(0x1d2,'\x25\x4d\x6a\x69'))&&(_0x3bb6de=_0x51197e[_0x43099a(0x1a1,'\x4a\x42\x4a\x33')],_0x32367a=!![]);}}else _0x20891e['\x69\x6e\x64\x65\x78\x4f\x66'](_0x51197e['\x4c\x77\x47\x77\x75'])!==-(0x594+0x1769+0x173*-0x14)&&(_0x1d143f=_0x43099a(0x248,'\x23\x38\x4e\x34')+_0x43099a(0x16f,'\x5d\x74\x42\x4f'));}else return _0x522e0e['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x43099a(0x143,'\x35\x31\x59\x78')](eeiFQY[_0x43099a(0x169,'\x58\x4c\x67\x55')])[_0x43099a(0x17a,'\x47\x5e\x28\x4c')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x43099a(0x19d,'\x58\x72\x6a\x30')](_0x232c21)[_0x43099a(0x17c,'\x48\x49\x73\x6c')](eeiFQY[_0x43099a(0x1e5,'\x6a\x45\x70\x51')]);}if(_0x1d143f===_0x51197e[_0x43099a(0x1bc,'\x5b\x50\x72\x57')])_0x1d143f=_0x51197e[_0x43099a(0x241,'\x6e\x21\x53\x41')];var _0x2c6b19=_0x5c9ee0[_0x1d143f]||_0x5c9ee0[_0x51197e[_0x43099a(0x17e,'\x43\x2a\x35\x59')]],_0xbfc715={};return _0xbfc715[_0x43099a(0x16d,'\x28\x42\x28\x61')]=_0x1d143f,Object[_0x43099a(0x162,'\x5a\x49\x56\x28')]({},_0x2c6b19,_0xbfc715);}function _0x5661bf(){var _0x40b675=_0xe776dd;return Object[_0x40b675(0x158,'\x4c\x33\x43\x50')](_0x5c9ee0);}var _0x313215={};_0x313215['\x72\x65\x73\x6f\x6c\x76\x65\x53'+_0xe776dd(0x1bf,'\x25\x4d\x6a\x69')]=_0x6025a7,_0x313215['\x67\x65\x74\x53\x74\x72\x61\x74'+_0xe776dd(0x214,'\x6f\x58\x4f\x6c')]=_0x5661bf,_0x313215[_0xe776dd(0x1c6,'\x6e\x21\x53\x41')+'\x45\x53']=_0x5c9ee0,module[_0xe776dd(0x1df,'\x4b\x39\x43\x32')]=_0x313215;
|
package/src/gep/tokenSavings.js
CHANGED
|
@@ -1,88 +1 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
// Grounded FALLBACK estimate for "tokens saved by reusing an asset".
|
|
4
|
-
//
|
|
5
|
-
// The real number is the measured cost of the avoided derive loop, captured
|
|
6
|
-
// from the proxy trace meter (see src/proxy/trace/usage.js) and carried on the
|
|
7
|
-
// reused asset as `derivation_tokens`. This estimator is only used when that
|
|
8
|
-
// measured cost is unavailable -- the asset was derived with the proxy off, or
|
|
9
|
-
// predates token telemetry. Reusing a verified capsule avoids re-running a
|
|
10
|
-
// derive loop; we approximate that loop's size from the asset's own
|
|
11
|
-
// blast_radius (a real, per-asset signal), so the estimate scales with how big
|
|
12
|
-
// the change actually was instead of being a flat constant.
|
|
13
|
-
//
|
|
14
|
-
// Calibration: a median patch (~75 changed lines) reproduces the ~180k tokens
|
|
15
|
-
// the desktop savings model historically assumed:
|
|
16
|
-
// DERIVE_BASE_TOKENS + TYPICAL_CHANGED_LINES * TOKENS_PER_CHANGED_LINE
|
|
17
|
-
// = 120_000 + 75 * 800 = 180_000.
|
|
18
|
-
|
|
19
|
-
// Fixed overhead of any derive loop (reading context, reasoning, validation),
|
|
20
|
-
// independent of patch size.
|
|
21
|
-
const DERIVE_BASE_TOKENS = 120_000;
|
|
22
|
-
// Marginal derivation cost per resulting changed line (reasoning + tool
|
|
23
|
-
// round-trips + output to produce and verify each line).
|
|
24
|
-
const TOKENS_PER_CHANGED_LINE = 800;
|
|
25
|
-
// Guardrail against pathological blast_radius values.
|
|
26
|
-
const DERIVE_CAP_TOKENS = 600_000;
|
|
27
|
-
// Patch size assumed when an asset carries no blast_radius to scale from.
|
|
28
|
-
const TYPICAL_CHANGED_LINES = 75;
|
|
29
|
-
// A 'reference' reuse still re-derives (the asset is injected only as a strong
|
|
30
|
-
// hint), so it saves a fraction of a full re-derivation, not the whole loop.
|
|
31
|
-
const REFERENCE_SAVING_FRACTION = 0.4;
|
|
32
|
-
|
|
33
|
-
function _blastLines(asset) {
|
|
34
|
-
const br = asset && (asset.blast_radius || (asset.payload && asset.payload.blast_radius));
|
|
35
|
-
if (br && typeof br === 'object') {
|
|
36
|
-
const lines = Number(br.lines);
|
|
37
|
-
if (Number.isFinite(lines) && lines > 0) return lines;
|
|
38
|
-
}
|
|
39
|
-
return null;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* Apply the reuse-mode saving fraction to a token count and round.
|
|
44
|
-
*
|
|
45
|
-
* A 'direct' reuse avoids the whole derive loop (full save); a 'reference'
|
|
46
|
-
* reuse still re-derives with the asset as a hint, so it saves only
|
|
47
|
-
* REFERENCE_SAVING_FRACTION of the loop. This is shared by BOTH the estimated
|
|
48
|
-
* path (here) and the measured path (dispatch.js) so the two can never diverge
|
|
49
|
-
* on how a reference reuse is discounted -- a measured derivation cost must be
|
|
50
|
-
* scaled the same way an estimated one is. (Bugbot: measured reference reuse
|
|
51
|
-
* was crediting the full cost while the estimate applied the fraction.)
|
|
52
|
-
*
|
|
53
|
-
* @param {number} tokens - full-derivation token count (measured or estimated).
|
|
54
|
-
* @param {string} [mode] - 'direct' (full) | 'reference' (fractional).
|
|
55
|
-
* @returns {number} rounded tokens saved for the given mode.
|
|
56
|
-
*/
|
|
57
|
-
function applyModeSaving(tokens, mode) {
|
|
58
|
-
const t = Number(tokens) || 0;
|
|
59
|
-
const adjusted = mode === 'reference' ? t * REFERENCE_SAVING_FRACTION : t;
|
|
60
|
-
return Math.round(adjusted);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* Estimate the tokens a reuse saved, from the asset's blast_radius.
|
|
65
|
-
*
|
|
66
|
-
* @param {object} asset - the reused asset (capsule); may be a bare stub.
|
|
67
|
-
* @param {string} [mode] - 'direct' (full save) | 'reference' (fractional).
|
|
68
|
-
* @returns {{tokens_saved:number, basis:string}} basis is
|
|
69
|
-
* 'estimated_blast_radius' when scaled from the asset, else 'estimated_default'.
|
|
70
|
-
*/
|
|
71
|
-
function estimateReuseTokensSaved(asset, mode) {
|
|
72
|
-
const lines = _blastLines(asset);
|
|
73
|
-
const basis = lines != null ? 'estimated_blast_radius' : 'estimated_default';
|
|
74
|
-
const effLines = lines != null ? lines : TYPICAL_CHANGED_LINES;
|
|
75
|
-
let tokens = DERIVE_BASE_TOKENS + effLines * TOKENS_PER_CHANGED_LINE;
|
|
76
|
-
if (tokens > DERIVE_CAP_TOKENS) tokens = DERIVE_CAP_TOKENS;
|
|
77
|
-
return { tokens_saved: applyModeSaving(tokens, mode), basis };
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
module.exports = {
|
|
81
|
-
estimateReuseTokensSaved,
|
|
82
|
-
applyModeSaving,
|
|
83
|
-
DERIVE_BASE_TOKENS,
|
|
84
|
-
TOKENS_PER_CHANGED_LINE,
|
|
85
|
-
DERIVE_CAP_TOKENS,
|
|
86
|
-
TYPICAL_CHANGED_LINES,
|
|
87
|
-
REFERENCE_SAVING_FRACTION,
|
|
88
|
-
};
|
|
1
|
+
const _0x1231bc=_0x1b4e;function _0x1b4e(_0x8c772b,_0x20df63){_0x8c772b=_0x8c772b-(0xb*0xd9+0xca4*0x3+-0x2ea4);const _0x40acc9=_0x5461();let _0x43613a=_0x40acc9[_0x8c772b];if(_0x1b4e['\x73\x46\x69\x4e\x59\x66']===undefined){var _0x2aa0c4=function(_0x4acb9a){const _0xff6e26='\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 _0x8d81cd='',_0x47d5d4='',_0x48fbbd=_0x8d81cd+_0x2aa0c4,_0x3ff69c=(''+function(){return 0x1bc8+-0xa3*-0x3a+-0x1592*0x3;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x106a*-0x2+0x1c95*0x1+0x18*-0x28f);for(let _0x41877d=-0x2ae*-0x2+-0x1*0xaa9+0x54d,_0x327616,_0x2b9f84,_0x3f5ddb=0x3d*0x6+0x1029*-0x2+-0x1*-0x1ee4;_0x2b9f84=_0x4acb9a['\x63\x68\x61\x72\x41\x74'](_0x3f5ddb++);~_0x2b9f84&&(_0x327616=_0x41877d%(0x270b*0x1+0x136*0x14+0x909*-0x7)?_0x327616*(0x18e+-0x151*0x8+0x93a)+_0x2b9f84:_0x2b9f84,_0x41877d++%(-0x123b*0x1+-0xb55*-0x3+-0x10*0xfc))?_0x8d81cd+=_0x3ff69c||_0x48fbbd['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3f5ddb+(-0x23bc+-0xcf9+0x30bf))-(-0x1025+-0x1d9e+0x2dcd)!==-0x5fd+0x17ed+0xe*-0x148?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x8*-0x2ea+-0xe65+-0x7ec&_0x327616>>(-(-0x20*-0x84+0x207b+-0x30f9)*_0x41877d&0x2*-0x493+0x26a+0x6c2)):_0x41877d:-0x1b8e+0x995*-0x3+0x384d){_0x2b9f84=_0xff6e26['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2b9f84);}for(let _0xf61875=0x191e+0x1a7f+-0x1*0x339d,_0xdb657c=_0x8d81cd['\x6c\x65\x6e\x67\x74\x68'];_0xf61875<_0xdb657c;_0xf61875++){_0x47d5d4+='\x25'+('\x30\x30'+_0x8d81cd['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xf61875)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x2126+-0x2*0x2a2+-0xde9*0x2))['\x73\x6c\x69\x63\x65'](-(-0x23df+0xcb9+0x26*0x9c));}return decodeURIComponent(_0x47d5d4);};const _0x451f3f=function(_0x23e5f4,_0x5f3232){let _0x581742=[],_0xb94643=-0x2089+0x1*0x1859+-0x8*-0x106,_0x1dab46,_0x428741='';_0x23e5f4=_0x2aa0c4(_0x23e5f4);let _0x2f47ad;for(_0x2f47ad=0x1e5+0x187e+-0x3c5*0x7;_0x2f47ad<-0x1b39+-0xbd3*0x2+0x33df;_0x2f47ad++){_0x581742[_0x2f47ad]=_0x2f47ad;}for(_0x2f47ad=0x9*0x377+0x11*-0x18f+-0x4b0;_0x2f47ad<0x704+0x1*-0x649+0x45;_0x2f47ad++){_0xb94643=(_0xb94643+_0x581742[_0x2f47ad]+_0x5f3232['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2f47ad%_0x5f3232['\x6c\x65\x6e\x67\x74\x68']))%(-0xf*0x30+-0x2*-0x99a+-0xf64),_0x1dab46=_0x581742[_0x2f47ad],_0x581742[_0x2f47ad]=_0x581742[_0xb94643],_0x581742[_0xb94643]=_0x1dab46;}_0x2f47ad=0x1*-0x305+0x1d35*0x1+-0x8*0x346,_0xb94643=-0x2b*0x5+-0x2164+0x17*0x17d;for(let _0x1c41bf=-0x1*-0x25+-0x144+-0x11f*-0x1;_0x1c41bf<_0x23e5f4['\x6c\x65\x6e\x67\x74\x68'];_0x1c41bf++){_0x2f47ad=(_0x2f47ad+(0x233b+0x2*-0x1085+-0x230))%(0x13f1+-0x1f92+0xca1),_0xb94643=(_0xb94643+_0x581742[_0x2f47ad])%(0x1*0x155f+-0x1a06+0x5a7),_0x1dab46=_0x581742[_0x2f47ad],_0x581742[_0x2f47ad]=_0x581742[_0xb94643],_0x581742[_0xb94643]=_0x1dab46,_0x428741+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x23e5f4['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1c41bf)^_0x581742[(_0x581742[_0x2f47ad]+_0x581742[_0xb94643])%(0x16+0xe5+0x5)]);}return _0x428741;};_0x1b4e['\x41\x45\x77\x43\x53\x4a']=_0x451f3f,_0x1b4e['\x44\x54\x54\x42\x4a\x78']={},_0x1b4e['\x73\x46\x69\x4e\x59\x66']=!![];}const _0x207ee0=_0x40acc9[0xe3c+0x1*0x138f+-0x21cb],_0x2c68e5=_0x8c772b+_0x207ee0,_0x5aeb19=_0x1b4e['\x44\x54\x54\x42\x4a\x78'][_0x2c68e5];if(!_0x5aeb19){if(_0x1b4e['\x4c\x79\x63\x66\x47\x57']===undefined){const _0x5bf4cb=function(_0x44197a){this['\x71\x44\x64\x5a\x52\x76']=_0x44197a,this['\x6e\x53\x59\x68\x4f\x67']=[-0x1*-0x18eb+0x835+-0x1*0x211f,0xb*-0x5f+0xb*0x37b+-0x111a*0x2,0x1e9*0x5+0x2154+-0x2ae1],this['\x43\x52\x46\x62\x78\x6d']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x71\x46\x6b\x75\x67\x73']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x5a\x73\x75\x43\x4e\x69']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x5bf4cb['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x74\x5a\x71\x4d\x44\x54']=function(){const _0x1c6f4f=new RegExp(this['\x71\x46\x6b\x75\x67\x73']+this['\x5a\x73\x75\x43\x4e\x69']),_0x2bcae2=_0x1c6f4f['\x74\x65\x73\x74'](this['\x43\x52\x46\x62\x78\x6d']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x6e\x53\x59\x68\x4f\x67'][-0x115c+0x2fc*0x2+0xb65]:--this['\x6e\x53\x59\x68\x4f\x67'][-0x5ec+0x22c4+-0x1cd8];return this['\x67\x4d\x63\x53\x4c\x4c'](_0x2bcae2);},_0x5bf4cb['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x67\x4d\x63\x53\x4c\x4c']=function(_0x13806f){if(!Boolean(~_0x13806f))return _0x13806f;return this['\x62\x51\x4a\x50\x72\x53'](this['\x71\x44\x64\x5a\x52\x76']);},_0x5bf4cb['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x62\x51\x4a\x50\x72\x53']=function(_0x31950f){for(let _0x1657f8=0x19dd+0x1a0a+-0x3*0x114d,_0xa2b78e=this['\x6e\x53\x59\x68\x4f\x67']['\x6c\x65\x6e\x67\x74\x68'];_0x1657f8<_0xa2b78e;_0x1657f8++){this['\x6e\x53\x59\x68\x4f\x67']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0xa2b78e=this['\x6e\x53\x59\x68\x4f\x67']['\x6c\x65\x6e\x67\x74\x68'];}return _0x31950f(this['\x6e\x53\x59\x68\x4f\x67'][-0x1*-0x1b13+-0x127d+-0x896]);},(''+function(){return 0xe1+0x1b83+-0x4f*0x5c;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x31b*0xa+0xae7+-0x6*0x6fe)&&new _0x5bf4cb(_0x1b4e)['\x74\x5a\x71\x4d\x44\x54'](),_0x1b4e['\x4c\x79\x63\x66\x47\x57']=!![];}_0x43613a=_0x1b4e['\x41\x45\x77\x43\x53\x4a'](_0x43613a,_0x20df63),_0x1b4e['\x44\x54\x54\x42\x4a\x78'][_0x2c68e5]=_0x43613a;}else _0x43613a=_0x5aeb19;return _0x43613a;}(function(_0x14f6e1,_0x16c197){const _0x3475fe=_0x1b4e,_0xe58ca=_0x14f6e1();while(!![]){try{const _0x3babe3=-parseInt(_0x3475fe(0xf6,'\x61\x6a\x30\x6c'))/(-0x11f+-0x981*-0x1+-0x861)*(parseInt(_0x3475fe(0xb7,'\x67\x6d\x56\x56'))/(-0x107f*0x2+-0xbe1+0x2ce1))+-parseInt(_0x3475fe(0xbd,'\x44\x61\x61\x53'))/(-0x2e*-0xb2+0x25eb+-0x45e4)*(-parseInt(_0x3475fe(0xbc,'\x71\x51\x66\x5a'))/(0x151d+0x28c*-0xb+0x6eb))+parseInt(_0x3475fe(0xae,'\x61\x75\x45\x21'))/(-0x2*0x7ba+0x1*-0x15c1+0xa*0x3b9)+parseInt(_0x3475fe(0xfc,'\x4b\x55\x64\x65'))/(-0x2361+-0x9ce+-0xa3*-0x47)+parseInt(_0x3475fe(0xdc,'\x30\x5b\x51\x5a'))/(-0x10*0x232+0x1*0xf3f+0x13e8)*(-parseInt(_0x3475fe(0xdb,'\x28\x59\x4d\x76'))/(-0x168b*-0x1+0xf05+-0x2588))+parseInt(_0x3475fe(0xf7,'\x5d\x58\x5e\x40'))/(0x1*0x254f+0x1*-0x689+0xb7*-0x2b)+parseInt(_0x3475fe(0xbf,'\x4b\x55\x64\x65'))/(0xcfd+-0x9c8+0x1*-0x32b)*(parseInt(_0x3475fe(0xde,'\x6d\x43\x72\x66'))/(0x56b*0x1+-0x1a7+-0x3b9));if(_0x3babe3===_0x16c197)break;else _0xe58ca['push'](_0xe58ca['shift']());}catch(_0x5a3608){_0xe58ca['push'](_0xe58ca['shift']());}}}(_0x5461,0x324d5+-0x43f4+0x58b53));const _0x542393=(function(){let _0x4f8177=!![];return function(_0x34fcc1,_0x12df39){const _0x4fd7b6=_0x4f8177?function(){const _0x3936e6=_0x1b4e;if(_0x12df39){const _0x4963f2=_0x12df39[_0x3936e6(0xc8,'\x56\x54\x79\x32')](_0x34fcc1,arguments);return _0x12df39=null,_0x4963f2;}}:function(){};return _0x4f8177=![],_0x4fd7b6;};}()),_0x1465cd=_0x542393(this,function(){const _0xd8e06a=_0x1b4e,_0x372f1b={};_0x372f1b[_0xd8e06a(0xc9,'\x4b\x55\x64\x65')]=_0xd8e06a(0xda,'\x48\x36\x34\x55')+_0xd8e06a(0xec,'\x44\x58\x56\x4d');const _0xf7d8b4=_0x372f1b;return _0x1465cd[_0xd8e06a(0xd8,'\x66\x26\x58\x6d')]()[_0xd8e06a(0xc3,'\x65\x40\x50\x32')](_0xf7d8b4['\x6a\x68\x6b\x63\x58'])[_0xd8e06a(0xa1,'\x53\x64\x42\x5a')]()[_0xd8e06a(0x9f,'\x71\x51\x66\x5a')+'\x74\x6f\x72'](_0x1465cd)['\x73\x65\x61\x72\x63\x68'](_0xf7d8b4[_0xd8e06a(0xab,'\x4a\x40\x37\x6c')]);});_0x1465cd();'use strict';const {CONSTANTS:_0xfb3234}=require(_0x1231bc(0xe0,'\x5a\x75\x4d\x44')+_0x1231bc(0xbe,'\x54\x37\x5b\x26')),_0x5755a3=_0xfb3234[_0x1231bc(0xa4,'\x69\x26\x44\x30')+_0x1231bc(0x9e,'\x4d\x4e\x75\x6a')][_0x1231bc(0xf8,'\x32\x77\x62\x26')+_0x1231bc(0xf1,'\x24\x74\x6e\x57')+'\x6e\x73'],_0x1e9fb0=_0xfb3234[_0x1231bc(0x101,'\x71\x51\x66\x5a')+_0x1231bc(0xb1,'\x51\x44\x5b\x76')][_0x1231bc(0xa7,'\x44\x61\x61\x53')+'\x65\x72\x5f\x63\x68\x61\x6e\x67'+_0x1231bc(0xfe,'\x54\x37\x5b\x26')],_0x1943b5=_0xfb3234[_0x1231bc(0xdf,'\x33\x24\x4f\x51')+'\x74\x69\x6d\x61\x74\x6f\x72'][_0x1231bc(0xe9,'\x32\x77\x62\x26')+_0x1231bc(0xca,'\x24\x74\x6e\x57')+'\x73'],_0x6e92fe=_0xfb3234[_0x1231bc(0xd0,'\x53\x64\x42\x5a')+_0x1231bc(0xf9,'\x35\x79\x54\x53')][_0x1231bc(0xf0,'\x44\x39\x6c\x47')+_0x1231bc(0xa0,'\x5a\x75\x4d\x44')+'\x6c\x69\x6e\x65\x73'],_0x3e7bcf=_0xfb3234[_0x1231bc(0xf2,'\x64\x55\x23\x47')+_0x1231bc(0xea,'\x44\x61\x61\x53')][_0x1231bc(0xc7,'\x61\x5e\x28\x43')+_0x1231bc(0xc2,'\x37\x6a\x34\x77')+_0x1231bc(0xcb,'\x32\x77\x62\x26')+'\x6e'];function _0x4d8261(_0x337f6d){const _0x22b074=_0x1231bc,_0x332beb={'\x79\x4d\x58\x72\x4d':function(_0x48c7fc,_0x1ec38d){return _0x48c7fc(_0x1ec38d);},'\x54\x48\x45\x52\x52':function(_0x1c910a,_0x273642){return _0x1c910a===_0x273642;},'\x7a\x64\x41\x6c\x64':'\x72\x65\x66\x65\x72\x65\x6e\x63'+'\x65','\x46\x4a\x7a\x4e\x65':'\x6f\x62\x6a\x65\x63\x74','\x4d\x74\x78\x41\x41':_0x22b074(0xcf,'\x61\x42\x5e\x79'),'\x41\x71\x51\x46\x4c':function(_0x295d0e,_0x399413){return _0x295d0e>_0x399413;}},_0x48143f=_0x337f6d&&(_0x337f6d[_0x22b074(0xe3,'\x28\x59\x4d\x76')+_0x22b074(0xdd,'\x6d\x43\x72\x66')]||_0x337f6d[_0x22b074(0xc4,'\x66\x39\x53\x4a')]&&_0x337f6d[_0x22b074(0xe5,'\x24\x74\x6e\x57')][_0x22b074(0xd2,'\x66\x39\x24\x72')+_0x22b074(0xf4,'\x38\x77\x35\x23')]);if(_0x48143f&&typeof _0x48143f===_0x332beb[_0x22b074(0xff,'\x61\x75\x45\x21')]){if(_0x332beb[_0x22b074(0xac,'\x61\x5e\x28\x43')](_0x22b074(0xa3,'\x64\x53\x6a\x37'),_0x332beb[_0x22b074(0xc6,'\x37\x6a\x34\x77')])){const _0x2d5231=_0x332beb[_0x22b074(0xc5,'\x56\x21\x4b\x79')](Number,_0x48143f[_0x22b074(0xd6,'\x48\x56\x39\x51')]);if(Number[_0x22b074(0xb6,'\x7a\x75\x49\x4e')](_0x2d5231)&&_0x332beb['\x41\x71\x51\x46\x4c'](_0x2d5231,-0x1b98+-0x1*-0xb2+0x1ae6))return _0x2d5231;}else{const _0x1e8a3c=_0x332beb[_0x22b074(0xb0,'\x5d\x58\x5e\x40')](_0x31958b,_0x22d59e)||0x79*-0x4d+0xc07+-0x185e*-0x1,_0x54c567=_0x332beb[_0x22b074(0xfb,'\x69\x26\x44\x30')](_0x15c383,_0x332beb[_0x22b074(0xad,'\x51\x44\x5b\x76')])?_0x1e8a3c*_0x43c57d:_0x1e8a3c;return _0x177847[_0x22b074(0xef,'\x59\x44\x35\x44')](_0x54c567);}}return null;}function _0x5461(){const _0x5551=['\x70\x59\x6c\x64\x48\x67\x75\x55\x57\x52\x75\x45','\x43\x43\x6f\x55\x6f\x59\x43\x47\x7a\x48\x6a\x70','\x66\x61\x35\x48\x57\x4f\x65\x49\x57\x4f\x6d\x68\x66\x6d\x6f\x4c','\x57\x35\x64\x63\x56\x30\x37\x63\x4d\x66\x37\x63\x4d\x43\x6b\x52\x57\x51\x30','\x57\x35\x4a\x63\x4e\x68\x65\x6b\x57\x51\x31\x63\x66\x62\x38','\x57\x50\x69\x73\x57\x37\x6c\x63\x51\x38\x6b\x31\x6e\x48\x66\x51\x57\x4f\x71\x45\x57\x4f\x43','\x57\x35\x4a\x64\x54\x58\x4e\x63\x4a\x67\x35\x6a\x57\x4f\x43\x63','\x57\x37\x4b\x4e\x57\x36\x6d\x4b\x7a\x6d\x6b\x32\x77\x6d\x6f\x4e','\x75\x43\x6b\x66\x57\x4f\x79\x47\x57\x37\x57\x49\x46\x77\x70\x64\x4e\x49\x6d\x64\x57\x36\x69','\x57\x36\x42\x63\x52\x4e\x37\x63\x51\x78\x6d','\x62\x53\x6f\x6a\x57\x35\x64\x64\x4c\x62\x47\x66\x57\x52\x56\x63\x4a\x43\x6f\x34\x57\x37\x6e\x6c\x68\x53\x6b\x53','\x41\x72\x70\x63\x4c\x33\x71\x56\x57\x52\x46\x64\x4a\x38\x6b\x47\x57\x51\x2f\x63\x48\x38\x6f\x53\x57\x51\x38','\x57\x4f\x42\x63\x54\x38\x6f\x4e\x57\x50\x5a\x64\x4e\x43\x6f\x2b\x6e\x6d\x6f\x63','\x57\x50\x70\x63\x56\x4b\x46\x63\x52\x4a\x42\x64\x52\x62\x33\x64\x52\x57','\x67\x6d\x6b\x75\x57\x51\x39\x32\x61\x6d\x6b\x54','\x70\x47\x79\x33\x57\x37\x30\x36\x57\x50\x4e\x63\x4c\x71','\x6d\x6d\x6b\x7a\x70\x38\x6b\x6b\x57\x37\x65','\x57\x52\x56\x63\x4c\x75\x5a\x63\x4a\x47\x65','\x57\x37\x37\x63\x4f\x65\x43\x4d\x57\x50\x58\x4d\x6e\x49\x6d','\x57\x36\x57\x50\x6f\x38\x6f\x59\x57\x36\x79','\x78\x43\x6b\x79\x57\x4f\x52\x63\x48\x33\x69','\x57\x37\x6e\x6d\x57\x34\x33\x64\x4b\x6d\x6b\x6e\x57\x36\x48\x72\x78\x61','\x74\x53\x6b\x53\x41\x53\x6f\x6c\x76\x43\x6b\x42\x67\x5a\x75','\x57\x34\x33\x64\x4b\x38\x6b\x49\x61\x67\x34','\x57\x4f\x42\x63\x54\x67\x56\x63\x53\x43\x6b\x72','\x78\x67\x70\x64\x53\x4a\x72\x44','\x6b\x4b\x2f\x64\x49\x5a\x7a\x44','\x45\x4e\x70\x64\x47\x64\x6a\x44\x62\x61\x47\x65','\x57\x50\x70\x63\x4d\x68\x64\x63\x4f\x62\x75','\x65\x74\x71\x5a\x66\x76\x74\x64\x48\x6d\x6f\x50\x45\x71','\x76\x73\x30\x79\x57\x36\x6d\x49\x6f\x38\x6b\x32','\x68\x48\x2f\x64\x50\x4b\x6d\x6b\x57\x4f\x71\x59\x57\x35\x4b','\x44\x6d\x6b\x35\x42\x6d\x6f\x64\x77\x38\x6b\x6f\x62\x4a\x38','\x72\x53\x6b\x64\x45\x43\x6b\x52\x77\x61','\x57\x52\x50\x57\x78\x43\x6f\x47\x64\x47\x37\x63\x52\x43\x6b\x79','\x46\x53\x6b\x54\x77\x43\x6b\x70\x57\x51\x66\x74\x57\x36\x2f\x63\x52\x71','\x57\x36\x62\x7a\x57\x37\x74\x64\x47\x43\x6b\x71\x57\x36\x7a\x41\x75\x71','\x57\x4f\x38\x69\x57\x36\x37\x63\x54\x38\x6b\x54\x75\x76\x38\x31','\x79\x49\x33\x64\x55\x32\x43\x72\x57\x4f\x69\x4d','\x57\x35\x37\x63\x54\x66\x5a\x63\x4a\x38\x6f\x4f\x6b\x76\x42\x64\x52\x4c\x74\x63\x4c\x66\x4b','\x78\x38\x6f\x78\x57\x36\x70\x64\x52\x47','\x63\x53\x6b\x70\x57\x36\x68\x64\x51\x6d\x6b\x34\x70\x6d\x6b\x72\x61\x57','\x57\x50\x75\x55\x57\x36\x4c\x77\x57\x37\x64\x63\x4c\x43\x6f\x41\x57\x52\x34','\x57\x52\x53\x68\x63\x53\x6b\x30\x6e\x38\x6b\x5a\x73\x38\x6b\x54','\x57\x50\x35\x69\x57\x51\x2f\x63\x54\x6d\x6f\x36','\x57\x34\x44\x54\x57\x36\x4a\x64\x4c\x6d\x6b\x6e','\x6f\x64\x42\x64\x4c\x78\x4b\x4f\x57\x50\x34\x46\x57\x37\x4f','\x78\x6d\x6b\x49\x63\x43\x6f\x49\x6f\x61','\x57\x36\x6a\x44\x57\x36\x56\x64\x49\x6d\x6b\x6e\x57\x36\x6a\x71','\x57\x36\x54\x71\x57\x52\x37\x64\x53\x53\x6f\x65','\x57\x37\x71\x2f\x6c\x6d\x6f\x72\x57\x52\x44\x6c\x63\x6d\x6b\x2b','\x73\x43\x6f\x46\x57\x37\x6c\x64\x54\x6d\x6b\x43\x68\x57','\x44\x43\x6b\x56\x41\x53\x6f\x64\x71\x6d\x6b\x6b\x6c\x74\x4b','\x66\x38\x6f\x46\x57\x35\x31\x31\x57\x52\x35\x39\x77\x61','\x57\x35\x4e\x63\x54\x76\x37\x63\x49\x43\x6f\x54\x76\x32\x74\x64\x4d\x4d\x2f\x63\x47\x75\x43\x64','\x6a\x78\x35\x49\x68\x57','\x6f\x43\x6f\x6e\x78\x6d\x6b\x4b\x69\x43\x6f\x2b\x43\x43\x6f\x49\x57\x35\x46\x64\x56\x61','\x44\x43\x6b\x76\x46\x6d\x6f\x70\x75\x6d\x6b\x6f\x62\x5a\x79','\x72\x6d\x6b\x78\x79\x68\x6e\x4c','\x44\x74\x35\x30\x79\x62\x52\x63\x4c\x4d\x4a\x64\x53\x57','\x57\x37\x6e\x70\x57\x37\x46\x64\x55\x38\x6b\x77\x57\x36\x58\x46\x76\x57','\x57\x36\x4a\x64\x4b\x43\x6b\x4d\x6f\x68\x66\x79\x57\x34\x33\x63\x55\x61','\x64\x48\x39\x73\x57\x50\x44\x6a\x57\x35\x4e\x63\x53\x53\x6f\x43','\x6d\x43\x6f\x77\x77\x4d\x30','\x63\x6d\x6f\x36\x57\x50\x62\x65\x46\x61','\x57\x37\x66\x4e\x57\x4f\x4f\x50\x57\x52\x61\x70\x42\x53\x6f\x67\x57\x36\x4b\x39','\x41\x38\x6b\x74\x66\x6d\x6f\x4f\x57\x51\x4e\x63\x4f\x73\x53\x45\x57\x34\x4c\x62\x63\x68\x38','\x44\x43\x6b\x56\x41\x53\x6f\x64\x71\x6d\x6b\x6b\x6c\x74\x47','\x57\x4f\x39\x6b\x44\x43\x6f\x45\x6c\x49\x37\x63\x4c\x61','\x44\x5a\x48\x63\x57\x51\x35\x6c\x57\x35\x68\x63\x56\x61','\x57\x51\x37\x64\x51\x6d\x6b\x43\x57\x35\x34\x6d','\x62\x43\x6f\x63\x57\x35\x46\x64\x4c\x62\x34\x63\x57\x52\x2f\x63\x53\x43\x6f\x51\x57\x37\x4c\x49\x64\x43\x6b\x49','\x77\x6d\x6b\x68\x74\x6d\x6b\x2b\x57\x4f\x66\x2f\x57\x34\x2f\x63\x49\x71','\x57\x37\x64\x63\x49\x75\x37\x63\x54\x33\x2f\x63\x54\x53\x6b\x61','\x63\x71\x76\x33\x57\x4f\x31\x4a','\x77\x6d\x6b\x51\x72\x33\x44\x5a','\x57\x52\x4c\x59\x57\x36\x69\x48\x7a\x38\x6b\x68\x76\x53\x6f\x45','\x57\x37\x62\x67\x63\x53\x6b\x67\x69\x6d\x6b\x53\x71\x6d\x6b\x55','\x57\x37\x54\x36\x6b\x38\x6b\x2f\x6d\x57','\x42\x77\x78\x64\x47\x73\x48\x76\x6f\x48\x4b\x73','\x57\x52\x6a\x4c\x57\x34\x5a\x63\x4f\x38\x6f\x6b\x57\x4f\x43\x6b','\x57\x51\x48\x34\x57\x37\x4b\x48\x44\x53\x6b\x51\x72\x53\x6f\x6f','\x57\x37\x7a\x61\x67\x6d\x6b\x37\x6a\x53\x6b\x2f\x71\x43\x6b\x76','\x46\x68\x4e\x64\x50\x4a\x76\x6b\x6d\x47\x6d\x71','\x57\x51\x61\x69\x57\x51\x70\x63\x4c\x43\x6f\x74\x57\x52\x6e\x38\x77\x4d\x64\x64\x4c\x43\x6f\x7a\x6c\x61','\x57\x52\x4a\x63\x4e\x4d\x30\x57\x57\x36\x38','\x57\x4f\x4a\x64\x48\x43\x6b\x53\x57\x37\x38\x37\x44\x38\x6b\x42\x68\x57','\x67\x6d\x6f\x41\x79\x38\x6b\x34\x74\x43\x6f\x2b\x57\x50\x70\x63\x52\x71','\x57\x35\x47\x69\x6d\x43\x6f\x55\x57\x37\x61','\x66\x38\x6f\x7a\x57\x35\x54\x58\x57\x51\x72\x48\x44\x76\x65','\x57\x52\x72\x4e\x66\x38\x6f\x68\x57\x52\x75','\x70\x59\x4e\x64\x47\x67\x6d\x58\x57\x51\x61\x7a\x57\x37\x34','\x73\x31\x37\x64\x54\x61\x39\x2f\x68\x49\x4b\x4f','\x77\x48\x79\x73\x57\x37\x79\x74','\x57\x35\x4a\x63\x4a\x77\x71\x72\x57\x52\x57','\x57\x52\x34\x74\x64\x53\x6b\x30\x57\x4f\x38','\x46\x78\x53\x38\x57\x37\x69\x33\x57\x51\x6c\x63\x56\x38\x6f\x36\x57\x50\x6a\x6c\x64\x47\x4b','\x57\x50\x65\x52\x57\x37\x76\x54\x57\x50\x71','\x69\x38\x6f\x56\x46\x38\x6b\x53\x57\x35\x71','\x57\x52\x61\x45\x69\x53\x6b\x35\x57\x50\x2f\x64\x4e\x53\x6b\x31','\x7a\x38\x6b\x6e\x67\x73\x35\x33\x70\x6d\x6f\x31\x57\x50\x71\x65\x57\x35\x56\x63\x4c\x48\x4a\x63\x55\x71','\x76\x43\x6b\x70\x73\x53\x6f\x4a\x79\x6d\x6b\x51\x6c\x72\x4b','\x57\x50\x79\x73\x6f\x53\x6b\x52\x57\x4f\x37\x64\x50\x43\x6b\x4f\x72\x61'];_0x5461=function(){return _0x5551;};return _0x5461();}function _0x149168(_0x53b0d4,_0x15a5bd){const _0x310f43=_0x1231bc,_0xf1c387={};_0xf1c387[_0x310f43(0xe2,'\x24\x74\x6e\x57')]=function(_0x51102c,_0x1e121a){return _0x51102c===_0x1e121a;},_0xf1c387[_0x310f43(0xe1,'\x43\x5b\x37\x6f')]=_0x310f43(0xd9,'\x24\x74\x6e\x57')+'\x65',_0xf1c387[_0x310f43(0x100,'\x59\x44\x35\x44')]=function(_0x4a391d,_0x4b2cc3){return _0x4a391d*_0x4b2cc3;};const _0x349268=_0xf1c387,_0x6976aa=Number(_0x53b0d4)||0xe4b*-0x1+0x1*0x2e0+-0x4f*-0x25,_0x2ed470=_0x349268[_0x310f43(0xa6,'\x56\x54\x79\x32')](_0x15a5bd,_0x349268[_0x310f43(0xe4,'\x52\x23\x32\x2a')])?_0x349268[_0x310f43(0x9c,'\x5a\x75\x4d\x44')](_0x6976aa,_0x3e7bcf):_0x6976aa;return Math[_0x310f43(0xcd,'\x4a\x66\x42\x65')](_0x2ed470);}function _0x153877(_0x2e0219,_0x1527c9){const _0x7035ca=_0x1231bc,_0x191d4c={'\x65\x79\x44\x6f\x55':function(_0x3995fb,_0x50b365){return _0x3995fb(_0x50b365);},'\x54\x75\x47\x75\x65':function(_0x353608,_0x2ed722){return _0x353608!=_0x2ed722;},'\x78\x72\x79\x58\x63':_0x7035ca(0xd5,'\x32\x77\x62\x26')+_0x7035ca(0xbb,'\x7a\x5b\x46\x7a')+_0x7035ca(0xe8,'\x6d\x43\x72\x66'),'\x42\x78\x49\x69\x68':function(_0x51d429,_0x43d4cc){return _0x51d429+_0x43d4cc;},'\x57\x67\x71\x4b\x7a':function(_0x40d787,_0x35039d){return _0x40d787*_0x35039d;},'\x4c\x70\x78\x6b\x42':function(_0x24bf1e,_0x57ae6d){return _0x24bf1e>_0x57ae6d;},'\x71\x69\x4c\x63\x53':function(_0xba13c5,_0x8b6f8a,_0x3794fc){return _0xba13c5(_0x8b6f8a,_0x3794fc);}},_0x330dbe=_0x191d4c[_0x7035ca(0xd1,'\x37\x6a\x34\x77')](_0x4d8261,_0x2e0219),_0x4adcdc=_0x191d4c[_0x7035ca(0xce,'\x53\x64\x42\x5a')](_0x330dbe,null)?_0x191d4c['\x78\x72\x79\x58\x63']:_0x7035ca(0xa9,'\x28\x59\x4d\x76')+_0x7035ca(0xee,'\x32\x77\x62\x26')+'\x74',_0x52a476=_0x191d4c[_0x7035ca(0xaf,'\x61\x6a\x30\x6c')](_0x330dbe,null)?_0x330dbe:_0x6e92fe;let _0x31a1be=_0x191d4c[_0x7035ca(0xf5,'\x4a\x52\x71\x5a')](_0x5755a3,_0x191d4c[_0x7035ca(0xcc,'\x64\x55\x23\x47')](_0x52a476,_0x1e9fb0));if(_0x191d4c[_0x7035ca(0xe6,'\x48\x36\x34\x55')](_0x31a1be,_0x1943b5))_0x31a1be=_0x1943b5;return{'\x74\x6f\x6b\x65\x6e\x73\x5f\x73\x61\x76\x65\x64':_0x191d4c[_0x7035ca(0xa8,'\x52\x4c\x41\x63')](_0x149168,_0x31a1be,_0x1527c9),'\x62\x61\x73\x69\x73':_0x4adcdc};}const _0x38cd9a={};_0x38cd9a[_0x1231bc(0x9d,'\x53\x64\x42\x5a')+_0x1231bc(0xb4,'\x51\x44\x5b\x76')+_0x1231bc(0x9b,'\x5a\x75\x4d\x44')]=_0x153877,_0x38cd9a['\x61\x70\x70\x6c\x79\x4d\x6f\x64'+_0x1231bc(0xd3,'\x4a\x40\x37\x6c')]=_0x149168,_0x38cd9a[_0x1231bc(0xd4,'\x28\x59\x4d\x76')+_0x1231bc(0xd7,'\x35\x79\x54\x53')+'\x4e\x53']=_0x5755a3,_0x38cd9a['\x54\x4f\x4b\x45\x4e\x53\x5f\x50'+_0x1231bc(0xb8,'\x54\x37\x5b\x26')+'\x45\x44\x5f\x4c\x49\x4e\x45']=_0x1e9fb0,_0x38cd9a[_0x1231bc(0xb3,'\x32\x77\x62\x26')+_0x1231bc(0xf3,'\x61\x75\x45\x21')+'\x53']=_0x1943b5,_0x38cd9a[_0x1231bc(0xb9,'\x61\x5e\x28\x43')+_0x1231bc(0xaa,'\x53\x64\x42\x5a')+'\x4c\x49\x4e\x45\x53']=_0x6e92fe,_0x38cd9a[_0x1231bc(0xfd,'\x66\x26\x58\x6d')+'\x45\x5f\x53\x41\x56\x49\x4e\x47'+_0x1231bc(0xc1,'\x7a\x55\x4d\x58')+'\x4e']=_0x3e7bcf,module[_0x1231bc(0xb5,'\x28\x59\x4d\x76')]=_0x38cd9a;
|
|
@@ -1,174 +1 @@
|
|
|
1
|
-
// Keychain-backed workspace-id resolver (issue #111 Phase 1).
|
|
2
|
-
//
|
|
3
|
-
// Layered with paths.js#getWorkspaceId(). The current FS-only secret
|
|
4
|
-
// (`<workspace>/.evolver/workspace-id`, mode 0600) closes the *forgery*
|
|
5
|
-
// gap from PR #109 but leaves a *readability* gap: any process running
|
|
6
|
-
// under the same uid can still read the file and impersonate a workspace
|
|
7
|
-
// it does not own. This module gates that secret behind the OS keychain
|
|
8
|
-
// (macOS Keychain Services / libsecret on Linux / Windows Credential
|
|
9
|
-
// Manager) via the optional `@napi-rs/keyring` native addon.
|
|
10
|
-
//
|
|
11
|
-
// PLATFORM NOTES:
|
|
12
|
-
//
|
|
13
|
-
// macOS — backed by Keychain Services (Security.framework). Entries
|
|
14
|
-
// are encrypted by the OS and scoped to the user login session.
|
|
15
|
-
//
|
|
16
|
-
// Linux — backed by libsecret / GNOME Keyring (or the secret-service
|
|
17
|
-
// D-Bus protocol). Unavailable on headless servers without a
|
|
18
|
-
// D-Bus session; the addon load will succeed but getPassword()
|
|
19
|
-
// throws, causing `available: false` and transparent FS fallback.
|
|
20
|
-
//
|
|
21
|
-
// Windows — backed by Windows Credential Manager (CredRead/CredWrite via
|
|
22
|
-
// DPAPI-encrypted blobs). No extra installation needed when the
|
|
23
|
-
// @napi-rs/keyring addon is present. If the addon is absent (bun
|
|
24
|
-
// binary, stripped package, etc.) the resolver falls back to
|
|
25
|
-
// plaintext FS storage — see WINDOWS SECURITY NOTE below.
|
|
26
|
-
//
|
|
27
|
-
// WINDOWS SECURITY NOTE (fallback path):
|
|
28
|
-
// When @napi-rs/keyring is unavailable on Windows (addon load fails),
|
|
29
|
-
// getWorkspaceId() falls back to a plaintext file at
|
|
30
|
-
// <workspace>/.evolver/workspace-id. On Windows, mode 0o600 passed to
|
|
31
|
-
// fs.writeFileSync / fs.openSync is silently ignored, so the file is NOT
|
|
32
|
-
// restricted to the current user at the filesystem ACL level. The only
|
|
33
|
-
// isolation boundary is the Windows user-profile directory
|
|
34
|
-
// (%USERPROFILE%\.evolver or the workspace path), which is ACL-protected
|
|
35
|
-
// by default but grants access to the SYSTEM account and local Admins.
|
|
36
|
-
// This is weaker than the Unix 0o600 guarantee. Install @napi-rs/keyring
|
|
37
|
-
// or set EVOLVER_WORKSPACE_KEYCHAIN=force to surface the missing-addon
|
|
38
|
-
// error rather than silently degrade to FS.
|
|
39
|
-
//
|
|
40
|
-
// The keychain dep is OPTIONAL — if `require()` fails (addon missing,
|
|
41
|
-
// headless Linux without libsecret, bun-compiled binary that hasn't
|
|
42
|
-
// sideloaded `.node` yet), the resolver returns null and paths.js
|
|
43
|
-
// transparently falls back to the existing FS implementation. Behavior
|
|
44
|
-
// for *every* deployment that doesn't actively opt in stays identical
|
|
45
|
-
// to v1.85.x.
|
|
46
|
-
//
|
|
47
|
-
// Mode is controlled by `EVOLVER_WORKSPACE_KEYCHAIN`:
|
|
48
|
-
// - `auto` (default) — try keychain, fall back to FS on any failure.
|
|
49
|
-
// - `force` — keychain only; throw if unavailable. Use in
|
|
50
|
-
// CI to assert the addon is loaded.
|
|
51
|
-
// - `off` — skip keychain entirely; use FS path.
|
|
52
|
-
//
|
|
53
|
-
// Service / account naming:
|
|
54
|
-
// service = "evomap.evolver.workspace-id"
|
|
55
|
-
// account = absolute path to the workspace root
|
|
56
|
-
// The account is the workspace-root path because that's the natural
|
|
57
|
-
// identity boundary — multiple evolver installs sharing the same
|
|
58
|
-
// workspace root must resolve to the SAME secret (writer/reader parity,
|
|
59
|
-
// PR #109 round-1 MEDIUM).
|
|
60
|
-
|
|
61
|
-
const KEYCHAIN_SERVICE = 'evomap.evolver.workspace-id';
|
|
62
|
-
|
|
63
|
-
// 32 hex chars (16 random bytes) — same shape as the FS impl, kept
|
|
64
|
-
// strict so a legacy migration from FS into keychain validates cleanly.
|
|
65
|
-
const ID_RE = /^[a-f0-9]{32,}$/i;
|
|
66
|
-
|
|
67
|
-
let _cachedAddon = undefined; // undefined = not tried, null = failed, fn = ok
|
|
68
|
-
|
|
69
|
-
function loadAddon() {
|
|
70
|
-
if (_cachedAddon !== undefined) return _cachedAddon;
|
|
71
|
-
try {
|
|
72
|
-
// eslint-disable-next-line global-require
|
|
73
|
-
const mod = require('@napi-rs/keyring');
|
|
74
|
-
if (mod && typeof mod.Entry === 'function') {
|
|
75
|
-
// On Windows this uses the Credential Manager (DPAPI-backed) backend
|
|
76
|
-
// from keyring-rs — no extra setup required when the addon is present.
|
|
77
|
-
_cachedAddon = mod;
|
|
78
|
-
return _cachedAddon;
|
|
79
|
-
}
|
|
80
|
-
// Addon present but does not expose the expected Entry constructor —
|
|
81
|
-
// treat as unavailable; callers fall back to FS storage.
|
|
82
|
-
_cachedAddon = null;
|
|
83
|
-
return null;
|
|
84
|
-
} catch {
|
|
85
|
-
// Addon absent or failed to load (bun binary, stripped package, Windows
|
|
86
|
-
// without the prebuilt .node, etc.). On Windows this means Credential
|
|
87
|
-
// Manager is NOT used and the secret falls back to a plaintext file —
|
|
88
|
-
// see WINDOWS SECURITY NOTE at the top of this file.
|
|
89
|
-
_cachedAddon = null;
|
|
90
|
-
return null;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
function getMode() {
|
|
95
|
-
const raw = String(process.env.EVOLVER_WORKSPACE_KEYCHAIN || 'auto').toLowerCase().trim();
|
|
96
|
-
if (raw === 'force' || raw === 'off' || raw === 'auto') return raw;
|
|
97
|
-
return 'auto';
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
// Patterns indicating a clean "entry not present" miss across the
|
|
101
|
-
// platform backends keyring-rs talks to:
|
|
102
|
-
// - Linux libsecret → "No matching entry found in secure storage"
|
|
103
|
-
// - macOS Keychain → "The specified item could not be found in the keychain"
|
|
104
|
-
// - Windows Cred Mgr → "Element not found"
|
|
105
|
-
// Anything else thrown by getPassword (locked keyring, no D-Bus, version
|
|
106
|
-
// mismatch, ambiguous entry, …) means the keychain itself isn't usable
|
|
107
|
-
// and MUST surface as `available: false` so callers — particularly
|
|
108
|
-
// `force` mode — can refuse to fall back to FS instead of silently
|
|
109
|
-
// papering over the failure (Bugbot PR #121 round-3 MEDIUM: dead code
|
|
110
|
-
// in force-mode unavailable path).
|
|
111
|
-
const NO_ENTRY_PATTERNS = [
|
|
112
|
-
/no\s+matching\s+entry/i, // libsecret
|
|
113
|
-
/could\s+not\s+be\s+found/i, // macOS
|
|
114
|
-
/element\s+not\s+found/i, // Windows
|
|
115
|
-
/\bnoentry\b/i, // keyring-rs NoEntry (CamelCase)
|
|
116
|
-
/\bno\s*entry\b/i, // generic spaced "no entry"
|
|
117
|
-
/not\s+found\s+in\s+(?:secure|keychain)/i,
|
|
118
|
-
];
|
|
119
|
-
|
|
120
|
-
function _isNoEntryError(err) {
|
|
121
|
-
const msg = (err && err.message) || '';
|
|
122
|
-
return NO_ENTRY_PATTERNS.some((re) => re.test(msg));
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
// Read the secret for `account` from the OS keychain.
|
|
126
|
-
// Returns:
|
|
127
|
-
// { available: true, id: "<32-hex>" } on hit
|
|
128
|
-
// { available: true, id: null } on clean miss (NoEntry-class throw)
|
|
129
|
-
// { available: false, id: null } when the addon isn't loaded OR
|
|
130
|
-
// the keychain throws any non-
|
|
131
|
-
// NoEntry error (locked, no
|
|
132
|
-
// backend, version mismatch, …)
|
|
133
|
-
function readFromKeychain(account) {
|
|
134
|
-
const addon = loadAddon();
|
|
135
|
-
if (!addon) return { available: false, id: null };
|
|
136
|
-
try {
|
|
137
|
-
const entry = new addon.Entry(KEYCHAIN_SERVICE, account);
|
|
138
|
-
const raw = entry.getPassword();
|
|
139
|
-
if (typeof raw === 'string' && ID_RE.test(raw.trim())) {
|
|
140
|
-
return { available: true, id: raw.trim() };
|
|
141
|
-
}
|
|
142
|
-
// getPassword resolved with empty / non-hex — treat as miss; the
|
|
143
|
-
// keychain itself is responding so we stay "available".
|
|
144
|
-
return { available: true, id: null };
|
|
145
|
-
} catch (err) {
|
|
146
|
-
if (_isNoEntryError(err)) return { available: true, id: null };
|
|
147
|
-
return { available: false, id: null };
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
// Persist `id` for `account` in the OS keychain. Returns true on
|
|
152
|
-
// success, false on any failure (callers fall back to FS).
|
|
153
|
-
function writeToKeychain(account, id) {
|
|
154
|
-
const addon = loadAddon();
|
|
155
|
-
if (!addon) return false;
|
|
156
|
-
try {
|
|
157
|
-
const entry = new addon.Entry(KEYCHAIN_SERVICE, account);
|
|
158
|
-
entry.setPassword(id);
|
|
159
|
-
return true;
|
|
160
|
-
} catch {
|
|
161
|
-
return false;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
module.exports = {
|
|
166
|
-
KEYCHAIN_SERVICE,
|
|
167
|
-
getMode,
|
|
168
|
-
loadAddon,
|
|
169
|
-
readFromKeychain,
|
|
170
|
-
writeToKeychain,
|
|
171
|
-
// Exported for test coverage of the NoEntry-vs-PlatformFailure
|
|
172
|
-
// discrimination (Bugbot PR #121 round-3 MEDIUM).
|
|
173
|
-
_isNoEntryError,
|
|
174
|
-
};
|
|
1
|
+
const _0xb976b4=_0xb5c5;(function(_0x1a5494,_0x221d14){const _0x4aa108=_0xb5c5,_0x12b91c=_0x1a5494();while(!![]){try{const _0x1feb0a=-parseInt(_0x4aa108(0x176,'\x74\x72\x5e\x6a'))/(0x16a+-0x45*-0x49+0x1516*-0x1)*(-parseInt(_0x4aa108(0x19b,'\x76\x75\x73\x5e'))/(0x5*0x6b0+0x4*0x98f+-0x47aa))+-parseInt(_0x4aa108(0x1ae,'\x78\x67\x56\x47'))/(0x359+0x25ca*0x1+-0x2920)*(parseInt(_0x4aa108(0x171,'\x6e\x6d\x42\x78'))/(0x1*0x10c9+-0x17c3+0x6fe))+-parseInt(_0x4aa108(0x1b6,'\x5a\x5b\x63\x6a'))/(-0x18f0*-0x1+0xe97+-0x13c1*0x2)+-parseInt(_0x4aa108(0x185,'\x79\x44\x29\x46'))/(0x1*0x2119+-0x15ed+-0xb26)*(-parseInt(_0x4aa108(0x187,'\x48\x4d\x73\x64'))/(-0xcd9+0x95*0x7+-0x8cd*-0x1))+parseInt(_0x4aa108(0x1a7,'\x26\x6e\x6e\x45'))/(0x1*0x10d3+0x47b*-0x7+0xe92)+parseInt(_0x4aa108(0x19e,'\x6f\x53\x50\x45'))/(-0x1806+-0x2*0xa+0xa7*0x25)+-parseInt(_0x4aa108(0x1a1,'\x4c\x2a\x23\x4e'))/(-0x1f22+0x1cd5+0x257*0x1);if(_0x1feb0a===_0x221d14)break;else _0x12b91c['push'](_0x12b91c['shift']());}catch(_0x2cba24){_0x12b91c['push'](_0x12b91c['shift']());}}}(_0x1532,0xcf61*0x1+0x3fb25+0x2dda7));function _0x1532(){const _0x3b3eba=['\x45\x63\x4f\x4f\x66\x62\x65','\x57\x34\x65\x53\x57\x35\x54\x32\x73\x47','\x57\x35\x35\x39\x61\x49\x46\x63\x4c\x53\x6b\x66\x6a\x47\x33\x63\x4d\x67\x33\x63\x4d\x71','\x71\x53\x6f\x34\x77\x71','\x57\x35\x31\x44\x7a\x48\x6d\x68\x76\x61','\x6e\x77\x5a\x64\x56\x38\x6f\x77\x57\x34\x4b','\x6f\x76\x53\x78\x69\x6d\x6f\x36\x57\x35\x4e\x63\x51\x61','\x57\x50\x4f\x54\x57\x36\x47\x70\x57\x35\x34','\x57\x35\x33\x64\x55\x68\x54\x4c\x7a\x38\x6f\x69\x69\x59\x65','\x57\x35\x54\x45\x57\x35\x47\x4d','\x57\x51\x30\x7a\x61\x43\x6b\x44\x57\x36\x54\x35\x6d\x4b\x30','\x57\x37\x52\x64\x4b\x4b\x6e\x63\x42\x53\x6f\x54\x64\x47\x61','\x57\x36\x33\x64\x4b\x43\x6b\x58\x57\x36\x56\x63\x4e\x33\x33\x64\x4d\x62\x43','\x73\x71\x47\x70','\x43\x61\x6e\x32','\x57\x37\x64\x63\x54\x77\x54\x65','\x57\x36\x78\x63\x50\x4e\x4c\x7a\x57\x52\x74\x64\x4e\x4d\x75\x62','\x57\x34\x62\x44\x57\x50\x33\x64\x51\x53\x6f\x47\x57\x4f\x33\x64\x55\x53\x6f\x31','\x57\x36\x2f\x63\x56\x4e\x64\x63\x4f\x6d\x6b\x44','\x43\x43\x6b\x6f\x57\x52\x74\x63\x4b\x43\x6f\x64\x57\x51\x56\x63\x51\x68\x34\x38\x57\x36\x6e\x4d\x57\x52\x57','\x69\x64\x37\x63\x49\x43\x6b\x78\x46\x6d\x6b\x49\x41\x43\x6f\x79','\x57\x51\x43\x63\x57\x4f\x78\x64\x54\x43\x6f\x39','\x57\x4f\x33\x63\x49\x4c\x33\x63\x4c\x68\x33\x63\x4c\x71','\x57\x37\x39\x35\x57\x36\x75\x75\x57\x50\x47','\x57\x4f\x52\x63\x4e\x76\x78\x63\x49\x57','\x41\x77\x64\x64\x47\x6d\x6f\x71\x6f\x38\x6f\x51\x69\x6d\x6b\x44','\x57\x35\x62\x4f\x57\x36\x79\x4f\x57\x4f\x61','\x70\x43\x6f\x36\x63\x47','\x57\x37\x4e\x64\x4b\x6d\x6f\x4b\x57\x35\x70\x63\x52\x38\x6b\x51\x57\x36\x37\x63\x49\x57','\x57\x34\x6a\x2b\x57\x37\x69\x50\x57\x51\x4f','\x6a\x53\x6f\x54\x57\x35\x68\x64\x4e\x72\x47','\x57\x37\x5a\x64\x53\x38\x6f\x71\x57\x37\x6c\x63\x52\x57','\x42\x38\x6f\x50\x6b\x33\x70\x64\x50\x53\x6f\x74\x57\x50\x5a\x63\x4f\x47','\x45\x6d\x6f\x50\x63\x77\x2f\x64\x50\x43\x6f\x65\x57\x50\x56\x63\x47\x47','\x57\x35\x30\x63\x57\x4f\x52\x64\x4f\x38\x6f\x79\x57\x4f\x5a\x64\x4d\x6d\x6f\x61','\x73\x6d\x6f\x48\x45\x64\x64\x64\x50\x47\x76\x53\x57\x37\x35\x4d\x44\x4d\x44\x2b\x57\x4f\x4b','\x57\x37\x56\x64\x49\x38\x6b\x56\x57\x36\x57\x62','\x45\x33\x70\x64\x4c\x43\x6f\x50\x6e\x53\x6f\x34\x6d\x43\x6b\x67','\x79\x38\x6b\x64\x57\x37\x2f\x64\x47\x72\x4b','\x57\x50\x30\x61\x79\x71\x34\x52\x74\x53\x6b\x55\x44\x47','\x71\x72\x71\x6c\x57\x34\x39\x4f\x57\x37\x50\x46\x78\x47','\x57\x37\x44\x78\x6a\x53\x6b\x64\x57\x36\x71','\x43\x38\x6b\x44\x57\x51\x7a\x33\x57\x34\x6d\x4f\x6f\x43\x6f\x4a\x73\x63\x30\x70\x71\x58\x34','\x6f\x6d\x6b\x67\x57\x50\x61\x65','\x6f\x6d\x6f\x68\x57\x36\x78\x64\x47\x57','\x44\x74\x78\x63\x50\x38\x6b\x76\x57\x51\x30\x68\x57\x36\x68\x64\x4f\x38\x6b\x30\x57\x52\x64\x64\x48\x6d\x6b\x4d','\x67\x38\x6f\x50\x57\x34\x64\x64\x53\x43\x6b\x4a\x57\x35\x70\x63\x47\x4b\x6d','\x57\x36\x76\x62\x57\x36\x69\x6e\x57\x51\x61','\x57\x4f\x79\x71\x6c\x30\x39\x70\x66\x43\x6f\x61\x68\x71','\x57\x36\x70\x63\x50\x53\x6f\x41\x65\x6d\x6b\x59\x67\x43\x6b\x49\x75\x71','\x7a\x61\x5a\x64\x50\x53\x6f\x67\x45\x57','\x46\x33\x34\x43\x57\x34\x53\x33\x57\x36\x31\x63\x61\x49\x69\x35\x6a\x43\x6f\x70\x57\x52\x30','\x78\x53\x6b\x79\x6c\x6d\x6f\x65','\x74\x6d\x6b\x66\x6e\x38\x6f\x6b\x46\x61','\x62\x53\x6b\x66\x57\x36\x71\x4e\x70\x71','\x57\x35\x4c\x32\x64\x49\x70\x63\x4c\x43\x6f\x66\x6d\x61\x42\x63\x4c\x76\x74\x63\x56\x5a\x57','\x57\x52\x68\x64\x52\x53\x6f\x6d\x65\x38\x6b\x65','\x46\x53\x6b\x77\x57\x37\x52\x64\x53\x74\x66\x63\x57\x35\x57\x53','\x57\x51\x74\x63\x50\x43\x6b\x61\x57\x34\x79\x64\x6f\x62\x46\x63\x48\x71','\x57\x35\x48\x78\x41\x58\x43\x62\x74\x53\x6f\x66\x71\x57','\x57\x36\x74\x64\x4e\x43\x6b\x66\x57\x36\x5a\x63\x54\x47','\x69\x33\x46\x64\x53\x38\x6f\x69\x57\x37\x76\x77\x57\x34\x33\x64\x55\x57','\x43\x72\x42\x64\x51\x43\x6f\x37\x7a\x71','\x67\x67\x46\x63\x4e\x6d\x6b\x42\x69\x53\x6f\x43\x6d\x31\x33\x63\x49\x6d\x6f\x76\x41\x61','\x63\x53\x6b\x72\x68\x6d\x6f\x53\x63\x43\x6b\x44\x57\x51\x61','\x65\x31\x7a\x72\x57\x50\x79\x39\x57\x52\x4f\x2f\x74\x58\x6e\x6e\x57\x4f\x4c\x42','\x57\x51\x53\x43\x72\x38\x6f\x79\x57\x50\x47\x47\x74\x4e\x65\x4a\x45\x53\x6f\x55\x57\x36\x5a\x63\x49\x71','\x57\x50\x4e\x63\x4c\x78\x37\x63\x4a\x76\x75','\x63\x6d\x6b\x2f\x61\x67\x52\x63\x51\x66\x65\x55\x57\x35\x6d','\x6b\x65\x57\x30\x6f\x38\x6f\x36\x57\x34\x74\x63\x54\x43\x6b\x56','\x6d\x33\x2f\x63\x55\x43\x6b\x32','\x57\x37\x56\x64\x4c\x43\x6b\x35\x57\x37\x42\x63\x4c\x4b\x4a\x64\x4c\x74\x61','\x77\x78\x31\x4b\x74\x6d\x6b\x72','\x7a\x38\x6b\x50\x57\x37\x37\x64\x52\x4a\x47','\x6c\x6d\x6b\x59\x75\x63\x4a\x63\x4f\x53\x6b\x70\x57\x35\x5a\x63\x4b\x78\x30\x64\x57\x34\x4f\x4d\x57\x34\x30','\x6c\x31\x6c\x64\x52\x61','\x57\x37\x39\x58\x42\x63\x30\x67','\x65\x4d\x34\x6d\x61\x6d\x6f\x59','\x57\x35\x64\x64\x49\x73\x46\x63\x52\x38\x6f\x56','\x57\x35\x4e\x64\x4b\x31\x72\x5a\x73\x57','\x64\x38\x6f\x6c\x6f\x6d\x6f\x53\x57\x50\x6d','\x63\x6d\x6f\x42\x57\x35\x68\x64\x4a\x33\x43\x4a\x61\x38\x6f\x72','\x57\x50\x57\x34\x57\x34\x79\x49\x57\x36\x38\x51\x63\x6d\x6b\x55','\x41\x77\x70\x64\x4c\x43\x6f\x77','\x57\x36\x6c\x63\x48\x32\x54\x77\x57\x52\x69','\x6c\x4a\x39\x66\x57\x50\x58\x57\x57\x52\x30\x46\x68\x61','\x57\x50\x75\x6d\x57\x50\x56\x64\x49\x53\x6f\x6c\x57\x50\x42\x64\x48\x43\x6f\x71','\x7a\x73\x33\x64\x4c\x6d\x6f\x42\x78\x57','\x71\x72\x56\x64\x4f\x38\x6f\x66\x71\x57','\x61\x30\x4f\x75\x61\x43\x6f\x4e\x57\x36\x4a\x63\x54\x43\x6b\x38','\x57\x35\x5a\x64\x48\x38\x6f\x4d\x57\x34\x56\x63\x50\x38\x6f\x55\x57\x37\x69','\x57\x34\x6d\x74\x57\x34\x65\x48\x57\x51\x6d','\x75\x33\x31\x4d\x41\x38\x6b\x6d','\x57\x4f\x64\x64\x53\x53\x6f\x57\x79\x67\x47','\x57\x51\x4f\x7a\x71\x53\x6f\x46\x57\x50\x43\x47\x66\x32\x43\x58\x77\x6d\x6f\x33\x57\x34\x4b','\x57\x52\x52\x64\x53\x6d\x6f\x45','\x64\x38\x6b\x4b\x70\x4d\x5a\x63\x53\x76\x6d','\x57\x34\x33\x64\x56\x30\x65\x49\x57\x36\x72\x31\x57\x35\x2f\x64\x55\x71','\x57\x51\x46\x63\x4a\x53\x6f\x37\x57\x51\x79','\x6d\x6d\x6b\x56\x74\x64\x47','\x68\x32\x5a\x63\x4b\x6d\x6b\x46\x69\x43\x6b\x43\x6a\x76\x42\x63\x48\x43\x6f\x53\x74\x47\x30','\x45\x6d\x6b\x72\x57\x51\x37\x63\x48\x78\x57\x7a\x57\x51\x38\x2b\x67\x33\x56\x64\x47\x43\x6f\x74\x62\x71','\x67\x6d\x6b\x76\x57\x52\x6c\x63\x55\x64\x61'];_0x1532=function(){return _0x3b3eba;};return _0x1532();}const _0x4ab18b=(function(){const _0xb28208=_0xb5c5,_0x30b20f={};_0x30b20f[_0xb28208(0x19d,'\x5a\x5b\x63\x6a')]=function(_0x312f9a,_0x186bdb){return _0x312f9a!==_0x186bdb;},_0x30b20f[_0xb28208(0x1c0,'\x76\x75\x73\x5e')]=_0xb28208(0x18b,'\x7a\x30\x24\x31'),_0x30b20f[_0xb28208(0x1bc,'\x39\x6e\x75\x73')]=_0xb28208(0x164,'\x6e\x6d\x42\x78');const _0x4efae8=_0x30b20f;let _0xdbc2b8=!![];return function(_0x13c4f9,_0x209ed2){const _0x450f29=_0xb28208,_0xcda9c9={'\x78\x59\x53\x6b\x79':function(_0x3f9cfe,_0x1023b4){const _0x281eef=_0xb5c5;return _0x4efae8[_0x281eef(0x1b0,'\x71\x35\x29\x5a')](_0x3f9cfe,_0x1023b4);},'\x67\x7a\x42\x6b\x4b':_0x4efae8['\x51\x49\x6b\x4c\x62'],'\x4a\x75\x78\x57\x4a':_0x4efae8[_0x450f29(0x15c,'\x68\x55\x4c\x40')]},_0xebc66b=_0xdbc2b8?function(){const _0x3282ce=_0x450f29;if(_0xcda9c9[_0x3282ce(0x18e,'\x7a\x30\x24\x31')](_0xcda9c9[_0x3282ce(0x1b7,'\x66\x66\x76\x6b')],_0xcda9c9['\x4a\x75\x78\x57\x4a'])){if(_0x209ed2){const _0x479e95=_0x209ed2[_0x3282ce(0x1ac,'\x36\x74\x5d\x69')](_0x13c4f9,arguments);return _0x209ed2=null,_0x479e95;}}else{const _0x2ccd47={};_0x2ccd47[_0x3282ce(0x180,'\x71\x35\x29\x5a')+'\x65']=!![],_0x2ccd47['\x69\x64']=null;if(_0x426c6e(_0x50f2e1))return _0x2ccd47;const _0x41e101={};return _0x41e101[_0x3282ce(0x18d,'\x5d\x6a\x4f\x6c')+'\x65']=![],_0x41e101['\x69\x64']=null,_0x41e101;}}:function(){};return _0xdbc2b8=![],_0xebc66b;};}()),_0x8419bd=_0x4ab18b(this,function(){const _0x2fd055=_0xb5c5,_0x58cfce={};_0x58cfce['\x6d\x5a\x43\x6c\x78']=_0x2fd055(0x1a4,'\x76\x75\x73\x5e')+_0x2fd055(0x170,'\x45\x59\x59\x71');const _0x4c878a=_0x58cfce;return _0x8419bd[_0x2fd055(0x1b9,'\x31\x66\x4f\x72')]()[_0x2fd055(0x18a,'\x66\x66\x76\x6b')](_0x2fd055(0x188,'\x5d\x6a\x4f\x6c')+_0x2fd055(0x16f,'\x71\x35\x29\x5a'))['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x2fd055(0x195,'\x45\x59\x59\x71')+_0x2fd055(0x181,'\x4c\x66\x52\x35')](_0x8419bd)[_0x2fd055(0x178,'\x76\x75\x73\x5e')](_0x4c878a[_0x2fd055(0x198,'\x78\x67\x56\x47')]);});_0x8419bd();const _0x5b4e96=_0xb976b4(0x19c,'\x57\x4b\x55\x40')+_0xb976b4(0x1af,'\x76\x75\x73\x5e')+_0xb976b4(0x15e,'\x63\x4b\x47\x72')+'\x2d\x69\x64',_0x2300b7=/^[a-f0-9]{32,}$/i;let _0x49d893=undefined;function _0x2aff4f(){const _0xf192c2=_0xb976b4,_0x4050f3={'\x47\x49\x55\x53\x4d':function(_0x36de02,_0x4da8b3){return _0x36de02(_0x4da8b3);},'\x6a\x4a\x6c\x53\x54':_0xf192c2(0x190,'\x75\x4c\x30\x68')+_0xf192c2(0x196,'\x79\x44\x29\x46'),'\x56\x68\x4a\x41\x48':function(_0x25a776,_0x50fc10){return _0x25a776===_0x50fc10;}};if(_0x49d893!==undefined)return _0x49d893;try{const _0x583de8=_0x4050f3[_0xf192c2(0x173,'\x62\x39\x41\x38')](require,_0x4050f3[_0xf192c2(0x175,'\x5e\x75\x61\x54')]);if(_0x583de8&&_0x4050f3[_0xf192c2(0x1c2,'\x26\x42\x70\x69')](typeof _0x583de8[_0xf192c2(0x168,'\x2a\x29\x4d\x25')],_0xf192c2(0x162,'\x26\x6e\x6e\x45')))return _0x49d893=_0x583de8,_0x49d893;return _0x49d893=null,null;}catch{return _0x49d893=null,null;}}function _0xb5c5(_0x29ecc,_0x3f6e79){_0x29ecc=_0x29ecc-(-0x2f*0x54+-0x53*-0x37+-0x10d);const _0x540667=_0x1532();let _0x4c1103=_0x540667[_0x29ecc];if(_0xb5c5['\x4f\x7a\x4c\x44\x75\x48']===undefined){var _0x121f98=function(_0x3ba951){const _0x3f1a0f='\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 _0x561ee8='',_0x50f18b='',_0x45d404=_0x561ee8+_0x121f98,_0x244a5e=(''+function(){return 0x6*0x21e+-0x4*0x685+0x6b*0x20;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x122c*0x1+0xa*-0x47+0x14f3);for(let _0x9db395=0xeca+0x2*-0x9fc+0x52e,_0x11c67a,_0x412915,_0x15a3f1=-0x8c6+0x17d7+-0xf11;_0x412915=_0x3ba951['\x63\x68\x61\x72\x41\x74'](_0x15a3f1++);~_0x412915&&(_0x11c67a=_0x9db395%(-0x6df*-0x3+0x4ea*0x7+-0x1255*0x3)?_0x11c67a*(-0x125c+0x133*0x19+0x29*-0x47)+_0x412915:_0x412915,_0x9db395++%(0x45e+-0x3e0+-0x7a))?_0x561ee8+=_0x244a5e||_0x45d404['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x15a3f1+(-0xb3e+-0x509+-0x1051*-0x1))-(0x47*-0x89+0x924+0x1ce5*0x1)!==-0x8ed*0x2+0x27*-0xd+-0x13d5*-0x1?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x2564+-0xe*0x4c+0x1*0x2a8b&_0x11c67a>>(-(0x7*-0x1d+0x1896+-0x17c9)*_0x9db395&-0x1c*0xbc+-0x1991+0x93b*0x5)):_0x9db395:0x8fb+0xeb+-0x9e6){_0x412915=_0x3f1a0f['\x69\x6e\x64\x65\x78\x4f\x66'](_0x412915);}for(let _0x50ff54=0x2*0xd+0x1051+0x1*-0x106b,_0x52f0ae=_0x561ee8['\x6c\x65\x6e\x67\x74\x68'];_0x50ff54<_0x52f0ae;_0x50ff54++){_0x50f18b+='\x25'+('\x30\x30'+_0x561ee8['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x50ff54)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x2630*0x1+-0x189*-0xa+0x16e6))['\x73\x6c\x69\x63\x65'](-(0xdb7*0x1+-0x539+-0x2*0x43e));}return decodeURIComponent(_0x50f18b);};const _0x494a3a=function(_0x1d86b0,_0x1673d5){let _0x3d8e2e=[],_0x570263=0x94e*0x3+-0x3*0x4d5+-0x2af*0x5,_0xda3478,_0x41c9bc='';_0x1d86b0=_0x121f98(_0x1d86b0);let _0x30551d;for(_0x30551d=0x11c*-0x6+0xb79+-0x89*0x9;_0x30551d<0x293*-0x1+-0x2172*-0x1+-0x1*0x1ddf;_0x30551d++){_0x3d8e2e[_0x30551d]=_0x30551d;}for(_0x30551d=0x9*-0x1d4+-0x2*0x4d1+0x1dd*0xe;_0x30551d<0x10f7+0x1*0x171+-0x2*0x8b4;_0x30551d++){_0x570263=(_0x570263+_0x3d8e2e[_0x30551d]+_0x1673d5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x30551d%_0x1673d5['\x6c\x65\x6e\x67\x74\x68']))%(0x266*-0x2+0x1d54+-0x1788),_0xda3478=_0x3d8e2e[_0x30551d],_0x3d8e2e[_0x30551d]=_0x3d8e2e[_0x570263],_0x3d8e2e[_0x570263]=_0xda3478;}_0x30551d=0x9e*-0x1b+0x84a*0x4+-0x107e,_0x570263=-0x1*0x1ed3+-0xe2c+0x2cff;for(let _0x3d7a8a=-0x1c48+0x99*0x41+-0xa91;_0x3d7a8a<_0x1d86b0['\x6c\x65\x6e\x67\x74\x68'];_0x3d7a8a++){_0x30551d=(_0x30551d+(0x1a*-0x52+-0x11*0x3+0x888))%(0x2b1*0x1+-0x1b7*0x2+-0x1*-0x1bd),_0x570263=(_0x570263+_0x3d8e2e[_0x30551d])%(0x250f+0x1c8b+-0x409a),_0xda3478=_0x3d8e2e[_0x30551d],_0x3d8e2e[_0x30551d]=_0x3d8e2e[_0x570263],_0x3d8e2e[_0x570263]=_0xda3478,_0x41c9bc+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x1d86b0['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3d7a8a)^_0x3d8e2e[(_0x3d8e2e[_0x30551d]+_0x3d8e2e[_0x570263])%(0x1619+-0xad*0x2b+-0x7f6*-0x1)]);}return _0x41c9bc;};_0xb5c5['\x68\x42\x5a\x6a\x4f\x5a']=_0x494a3a,_0xb5c5['\x41\x55\x75\x6b\x56\x6d']={},_0xb5c5['\x4f\x7a\x4c\x44\x75\x48']=!![];}const _0xa87744=_0x540667[-0xcbf+0xda9+0x9*-0x1a],_0x4abcf8=_0x29ecc+_0xa87744,_0xad248e=_0xb5c5['\x41\x55\x75\x6b\x56\x6d'][_0x4abcf8];if(!_0xad248e){if(_0xb5c5['\x65\x45\x71\x78\x79\x68']===undefined){const _0x573833=function(_0x1cb1a5){this['\x4d\x6f\x79\x6d\x52\x73']=_0x1cb1a5,this['\x49\x4b\x59\x76\x54\x42']=[0xc54+0x17ed+-0x8*0x488,0x21e*0x1+-0x2*0x2f5+0x3cc,0x595+-0x7*0x409+-0x3c7*-0x6],this['\x44\x52\x42\x79\x54\x61']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x6e\x50\x6c\x6d\x46\x62']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x72\x55\x62\x73\x58\x6f']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x573833['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x75\x61\x59\x4b\x59\x6b']=function(){const _0x5d96bb=new RegExp(this['\x6e\x50\x6c\x6d\x46\x62']+this['\x72\x55\x62\x73\x58\x6f']),_0x205bbf=_0x5d96bb['\x74\x65\x73\x74'](this['\x44\x52\x42\x79\x54\x61']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x49\x4b\x59\x76\x54\x42'][-0x82*-0x2c+-0x1959*-0x1+-0x2fb0]:--this['\x49\x4b\x59\x76\x54\x42'][-0x1264+0x1535+-0x2d1*0x1];return this['\x44\x75\x64\x54\x69\x69'](_0x205bbf);},_0x573833['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x44\x75\x64\x54\x69\x69']=function(_0x15f933){if(!Boolean(~_0x15f933))return _0x15f933;return this['\x68\x77\x71\x62\x6d\x4f'](this['\x4d\x6f\x79\x6d\x52\x73']);},_0x573833['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x68\x77\x71\x62\x6d\x4f']=function(_0xbf06f7){for(let _0x5184de=-0x2022+-0x5*-0x5ca+0x1*0x330,_0x43b411=this['\x49\x4b\x59\x76\x54\x42']['\x6c\x65\x6e\x67\x74\x68'];_0x5184de<_0x43b411;_0x5184de++){this['\x49\x4b\x59\x76\x54\x42']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x43b411=this['\x49\x4b\x59\x76\x54\x42']['\x6c\x65\x6e\x67\x74\x68'];}return _0xbf06f7(this['\x49\x4b\x59\x76\x54\x42'][0x6*-0x149+-0xc59*0x3+0x2cc1]);},(''+function(){return-0x1107+-0x241*-0x11+0x2*-0xaa5;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x2d*-0x7f+-0x33f+0x1993)&&new _0x573833(_0xb5c5)['\x75\x61\x59\x4b\x59\x6b'](),_0xb5c5['\x65\x45\x71\x78\x79\x68']=!![];}_0x4c1103=_0xb5c5['\x68\x42\x5a\x6a\x4f\x5a'](_0x4c1103,_0x3f6e79),_0xb5c5['\x41\x55\x75\x6b\x56\x6d'][_0x4abcf8]=_0x4c1103;}else _0x4c1103=_0xad248e;return _0x4c1103;}function _0x32041f(){const _0x507552=_0xb976b4,_0x4f8514={'\x55\x4b\x73\x77\x43':function(_0x81cd30,_0x30e485){return _0x81cd30(_0x30e485);},'\x6a\x4f\x47\x6a\x53':_0x507552(0x19f,'\x46\x35\x64\x4f'),'\x73\x47\x6c\x58\x71':_0x507552(0x1aa,'\x43\x5b\x37\x5d'),'\x5a\x42\x4d\x54\x75':_0x507552(0x182,'\x33\x45\x52\x70'),'\x53\x42\x57\x54\x62':function(_0x2d04e7,_0x18d54d){return _0x2d04e7===_0x18d54d;}},_0x4cc7d4=_0x4f8514[_0x507552(0x186,'\x51\x5b\x73\x57')](String,process.env.EVOLVER_WORKSPACE_KEYCHAIN||_0x4f8514[_0x507552(0x192,'\x45\x54\x62\x5e')])[_0x507552(0x194,'\x45\x59\x59\x71')+_0x507552(0x18f,'\x42\x57\x63\x50')]()[_0x507552(0x1a8,'\x6a\x5d\x37\x44')]();if(_0x4cc7d4===_0x4f8514[_0x507552(0x1bd,'\x49\x34\x2a\x63')]||_0x4cc7d4===_0x4f8514[_0x507552(0x1b2,'\x6e\x6d\x42\x78')]||_0x4f8514[_0x507552(0x15d,'\x42\x57\x63\x50')](_0x4cc7d4,_0x4f8514[_0x507552(0x191,'\x7a\x30\x24\x31')]))return _0x4cc7d4;return _0x4f8514[_0x507552(0x165,'\x6e\x6d\x42\x78')];}const _0x5942dd=[/no\s+matching\s+entry/i,/could\s+not\s+be\s+found/i,/element\s+not\s+found/i,/\bnoentry\b/i,/\bno\s*entry\b/i,/not\s+found\s+in\s+(?:secure|keychain)/i];function _0x14d8df(_0x5a7a7){const _0xb10d07=_0xb976b4,_0x11cdf5=_0x5a7a7&&_0x5a7a7['\x6d\x65\x73\x73\x61\x67\x65']||'';return _0x5942dd[_0xb10d07(0x17d,'\x7a\x30\x24\x31')](_0x5bc9ba=>_0x5bc9ba[_0xb10d07(0x183,'\x41\x7a\x56\x7a')](_0x11cdf5));}function _0xc0fb06(_0xa795d3){const _0xc8f27e=_0xb976b4,_0x508691={'\x77\x6d\x6d\x77\x50':function(_0x558575,_0xeb5d42){return _0x558575(_0xeb5d42);},'\x45\x4d\x55\x51\x69':_0xc8f27e(0x160,'\x5d\x6a\x4f\x6c'),'\x4d\x70\x57\x4e\x59':function(_0x48ed5a,_0x539799){return _0x48ed5a===_0x539799;},'\x55\x70\x4a\x64\x73':_0xc8f27e(0x1a9,'\x6a\x5d\x37\x44'),'\x4f\x58\x42\x69\x6b':function(_0x513a45){return _0x513a45();},'\x4e\x4d\x6b\x4f\x7a':_0xc8f27e(0x189,'\x79\x44\x29\x46'),'\x64\x56\x70\x64\x4c':_0xc8f27e(0x16d,'\x49\x76\x42\x65')},_0x2f32ca=_0x508691[_0xc8f27e(0x1a6,'\x6e\x6d\x42\x78')](_0x2aff4f),_0x26b16a={};_0x26b16a[_0xc8f27e(0x1b1,'\x4c\x2a\x23\x4e')+'\x65']=![],_0x26b16a['\x69\x64']=null;if(!_0x2f32ca)return _0x26b16a;try{if(_0x508691['\x4e\x4d\x6b\x4f\x7a']===_0x508691[_0xc8f27e(0x1c1,'\x31\x66\x4f\x72')]){const _0x3076c9=new _0x2f32ca['\x45\x6e\x74\x72\x79'](_0x5b4e96,_0xa795d3),_0x3067cd=_0x3076c9[_0xc8f27e(0x163,'\x79\x44\x29\x46')+'\x6f\x72\x64']();if(typeof _0x3067cd===_0x508691['\x64\x56\x70\x64\x4c']&&_0x2300b7[_0xc8f27e(0x1a0,'\x45\x54\x62\x5e')](_0x3067cd[_0xc8f27e(0x18c,'\x66\x66\x76\x6b')]()))return{'\x61\x76\x61\x69\x6c\x61\x62\x6c\x65':!![],'\x69\x64':_0x3067cd[_0xc8f27e(0x1a8,'\x6a\x5d\x37\x44')]()};const _0x378844={};return _0x378844[_0xc8f27e(0x180,'\x71\x35\x29\x5a')+'\x65']=!![],_0x378844['\x69\x64']=null,_0x378844;}else{const _0x2bf143=ByzSxX[_0xc8f27e(0x19a,'\x49\x34\x2a\x63')](_0x267881,_0x372c40.env.EVOLVER_WORKSPACE_KEYCHAIN||ByzSxX[_0xc8f27e(0x193,'\x75\x4c\x30\x68')])[_0xc8f27e(0x1b8,'\x49\x76\x42\x65')+_0xc8f27e(0x177,'\x72\x72\x71\x61')]()[_0xc8f27e(0x18c,'\x66\x66\x76\x6b')]();if(ByzSxX[_0xc8f27e(0x17b,'\x74\x79\x65\x46')](_0x2bf143,ByzSxX[_0xc8f27e(0x16a,'\x5d\x32\x72\x36')])||_0x2bf143===_0xc8f27e(0x1bf,'\x6c\x49\x77\x48')||ByzSxX[_0xc8f27e(0x1a3,'\x7a\x30\x24\x31')](_0x2bf143,ByzSxX[_0xc8f27e(0x174,'\x4c\x66\x52\x35')]))return _0x2bf143;return _0xc8f27e(0x1ba,'\x43\x59\x78\x74');}}catch(_0x15da5f){const _0x18aa6f={};_0x18aa6f[_0xc8f27e(0x184,'\x41\x7a\x56\x7a')+'\x65']=!![],_0x18aa6f['\x69\x64']=null;if(_0x508691[_0xc8f27e(0x179,'\x4c\x2a\x23\x4e')](_0x14d8df,_0x15da5f))return _0x18aa6f;const _0x2f7fef={};return _0x2f7fef[_0xc8f27e(0x16e,'\x30\x5e\x72\x66')+'\x65']=![],_0x2f7fef['\x69\x64']=null,_0x2f7fef;}}function _0x177e45(_0x14b5cd,_0x2da974){const _0x4ebaef=_0xb976b4,_0x54ff8b={'\x66\x57\x73\x66\x6a':function(_0x340162){return _0x340162();}},_0x59971c=_0x54ff8b[_0x4ebaef(0x161,'\x41\x7a\x56\x7a')](_0x2aff4f);if(!_0x59971c)return![];try{const _0x1f359d=new _0x59971c[(_0x4ebaef(0x169,'\x39\x6e\x75\x73'))](_0x5b4e96,_0x14b5cd);return _0x1f359d[_0x4ebaef(0x199,'\x5d\x6a\x4f\x6c')+_0x4ebaef(0x16c,'\x5d\x32\x72\x36')](_0x2da974),!![];}catch{return![];}}const _0x120881={};_0x120881[_0xb976b4(0x17c,'\x68\x55\x4c\x40')+_0xb976b4(0x1a2,'\x48\x4d\x73\x64')]=_0x5b4e96,_0x120881['\x67\x65\x74\x4d\x6f\x64\x65']=_0x32041f,_0x120881[_0xb976b4(0x17f,'\x68\x55\x4c\x40')+'\x6e']=_0x2aff4f,_0x120881['\x72\x65\x61\x64\x46\x72\x6f\x6d'+_0xb976b4(0x15f,'\x74\x79\x65\x46')]=_0xc0fb06,_0x120881[_0xb976b4(0x1bb,'\x71\x35\x29\x5a')+_0xb976b4(0x167,'\x75\x4c\x30\x68')]=_0x177e45,_0x120881[_0xb976b4(0x166,'\x31\x66\x4f\x72')+_0xb976b4(0x1b4,'\x35\x4a\x37\x6e')]=_0x14d8df,module[_0xb976b4(0x17a,'\x31\x66\x4f\x72')]=_0x120881;
|