@evomap/evolver 1.89.12 → 1.89.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +19 -0
- package/README.md +537 -90
- package/assets/cover.png +0 -0
- package/package.json +18 -6
- package/scripts/a2a_export.js +63 -0
- package/scripts/a2a_ingest.js +79 -0
- package/scripts/a2a_promote.js +118 -0
- package/scripts/analyze_by_skill.js +121 -0
- package/scripts/build_binaries.js +479 -0
- package/scripts/check-changelog.js +166 -0
- package/scripts/extract_log.js +85 -0
- package/scripts/generate_history.js +75 -0
- package/scripts/gep_append_event.js +96 -0
- package/scripts/gep_personality_report.js +234 -0
- package/scripts/human_report.js +147 -0
- package/scripts/recall-verify-report.js +234 -0
- package/scripts/recover_loop.js +61 -0
- package/scripts/refresh_stars_badge.js +168 -0
- package/scripts/seed-merchants.js +91 -0
- package/scripts/suggest_version.js +89 -0
- package/scripts/validate-modules.js +38 -0
- package/scripts/validate-suite.js +78 -0
- package/skills/index.json +14 -0
- package/src/evolve/guards.js +1 -721
- package/src/evolve/pipeline/collect.js +1 -1283
- package/src/evolve/pipeline/dispatch.js +1 -421
- package/src/evolve/pipeline/enrich.js +1 -440
- package/src/evolve/pipeline/hub.js +1 -319
- package/src/evolve/pipeline/select.js +1 -274
- package/src/evolve/pipeline/signals.js +1 -206
- package/src/evolve/utils.js +1 -264
- package/src/evolve.js +1 -350
- package/src/gep/a2aProtocol.js +1 -4463
- package/src/gep/antiAbuseTelemetry.js +1 -233
- package/src/gep/autoDistillConv.js +1 -205
- package/src/gep/autoDistillLlm.js +1 -315
- package/src/gep/candidateEval.js +1 -92
- package/src/gep/candidates.js +1 -198
- package/src/gep/contentHash.js +1 -30
- package/src/gep/conversationDistiller.js +1 -270
- package/src/gep/conversationSniffer.js +1 -266
- package/src/gep/crypto.js +1 -89
- package/src/gep/curriculum.js +1 -163
- package/src/gep/deviceId.js +1 -218
- package/src/gep/envFingerprint.js +1 -118
- package/src/gep/epigenetics.js +1 -31
- package/src/gep/execBridge.js +1 -712
- package/src/gep/explore.js +1 -289
- package/src/gep/hash.js +1 -15
- package/src/gep/hubFetch.js +1 -608
- package/src/gep/hubReview.js +1 -207
- package/src/gep/hubSearch.js +1 -526
- package/src/gep/hubVerify.js +1 -306
- package/src/gep/learningSignals.js +1 -89
- package/src/gep/memoryGraph.js +1 -1449
- package/src/gep/memoryGraphAdapter.js +1 -203
- package/src/gep/mutation.js +1 -203
- package/src/gep/narrativeMemory.js +1 -108
- package/src/gep/openPRRegistry.js +1 -205
- package/src/gep/personality.js +1 -423
- package/src/gep/policyCheck.js +1 -599
- package/src/gep/prompt.js +1 -836
- package/src/gep/recallInject.js +1 -409
- package/src/gep/recallVerifier.js +1 -318
- package/src/gep/reflection.js +1 -177
- package/src/gep/savingsCore.js +1 -112
- package/src/gep/selector.js +1 -602
- package/src/gep/skillDistiller.js +1 -1294
- package/src/gep/solidify.js +1 -1699
- package/src/gep/strategy.js +1 -136
- package/src/gep/tokenSavings.js +1 -95
- package/src/gep/workspaceKeychain.js +1 -174
- package/src/proxy/extensions/traceControl.js +1 -109
- package/src/proxy/inject.js +1 -52
- package/src/proxy/trace/extractor.js +1 -1403
- package/src/proxy/trace/usage.js +1 -105
- package/.cursor/BUGBOT.md +0 -182
- package/.env.example +0 -68
- package/.git-commit-guard-token +0 -1
- package/.github/CODEOWNERS +0 -63
- package/.github/ISSUE_TEMPLATE/good_first_issue.md +0 -23
- package/.github/pull_request_template.md +0 -45
- package/.github/workflows/test.yml +0 -75
- package/CHANGELOG.md +0 -1367
- package/README.public.md +0 -578
- package/SECURITY.md +0 -108
- package/assets/gep/events.jsonl +0 -3
- package/examples/atp-consumer-quickstart.md +0 -100
- package/examples/hello-world.md +0 -38
- package/proxy-package.json +0 -39
- package/public.manifest.json +0 -145
- /package/assets/gep/{genes.json → genes.seed.json} +0 -0
- /package/{bundled-skills → skills}/_meta/SKILL.md +0 -0
package/src/gep/mutation.js
CHANGED
|
@@ -1,203 +1 @@
|
|
|
1
|
-
const { VALID_CATEGORIES, VALID_RISK_LEVELS } = require('./schemas/protocol');
|
|
2
|
-
|
|
3
|
-
function clamp01(x) {
|
|
4
|
-
const n = Number(x);
|
|
5
|
-
if (!Number.isFinite(n)) return 0;
|
|
6
|
-
return Math.max(0, Math.min(1, n));
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
function nowTsMs() {
|
|
10
|
-
return Date.now();
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
function uniqStrings(list) {
|
|
14
|
-
const out = [];
|
|
15
|
-
const seen = new Set();
|
|
16
|
-
for (const x of Array.isArray(list) ? list : []) {
|
|
17
|
-
const s = String(x || '').trim();
|
|
18
|
-
if (!s) continue;
|
|
19
|
-
if (seen.has(s)) continue;
|
|
20
|
-
seen.add(s);
|
|
21
|
-
out.push(s);
|
|
22
|
-
}
|
|
23
|
-
return out;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
function hasErrorishSignal(signals) {
|
|
27
|
-
const list = Array.isArray(signals) ? signals.map(s => String(s || '')) : [];
|
|
28
|
-
if (list.includes('issue_already_resolved') || list.includes('openclaw_self_healed')) return false;
|
|
29
|
-
const ERROR_INDICATORS = ['log_error', 'error', 'exception', 'failed', 'unstable'];
|
|
30
|
-
for (const sig of list) {
|
|
31
|
-
const s = sig.toLowerCase();
|
|
32
|
-
if (ERROR_INDICATORS.some(ind => s === ind)) return true;
|
|
33
|
-
if (s.startsWith('errsig:') || s.startsWith('errsig_norm:')) return true;
|
|
34
|
-
}
|
|
35
|
-
return false;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// Opportunity signals that indicate a chance to innovate (not just fix).
|
|
39
|
-
var OPPORTUNITY_SIGNALS = [
|
|
40
|
-
'user_feature_request',
|
|
41
|
-
'user_improvement_suggestion',
|
|
42
|
-
'perf_bottleneck',
|
|
43
|
-
'capability_gap',
|
|
44
|
-
'stable_success_plateau',
|
|
45
|
-
'external_opportunity',
|
|
46
|
-
'recurring_error',
|
|
47
|
-
'unsupported_input_type',
|
|
48
|
-
'evolution_stagnation_detected',
|
|
49
|
-
'repair_loop_detected',
|
|
50
|
-
'force_innovation_after_repair_loop',
|
|
51
|
-
'tool_bypass',
|
|
52
|
-
'curriculum_target',
|
|
53
|
-
'issue_already_resolved',
|
|
54
|
-
'openclaw_self_healed',
|
|
55
|
-
'empty_cycle_loop_detected',
|
|
56
|
-
];
|
|
57
|
-
|
|
58
|
-
function hasOpportunitySignal(signals) {
|
|
59
|
-
var list = Array.isArray(signals) ? signals.map(function (s) { return String(s || ''); }) : [];
|
|
60
|
-
for (var i = 0; i < OPPORTUNITY_SIGNALS.length; i++) {
|
|
61
|
-
var name = OPPORTUNITY_SIGNALS[i];
|
|
62
|
-
if (list.includes(name)) return true;
|
|
63
|
-
if (list.some(function (s) { return s.startsWith(name + ':'); })) return true;
|
|
64
|
-
}
|
|
65
|
-
return false;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
function mutationCategoryFromContext({ signals, driftEnabled }) {
|
|
69
|
-
if (hasErrorishSignal(signals)) return 'repair';
|
|
70
|
-
if (driftEnabled) return 'innovate';
|
|
71
|
-
// Auto-innovate: opportunity signals present and no errors
|
|
72
|
-
if (hasOpportunitySignal(signals)) return 'innovate';
|
|
73
|
-
// Explore: saturated + explicit explore signal present
|
|
74
|
-
var sigList = Array.isArray(signals) ? signals : [];
|
|
75
|
-
if (sigList.includes('explore_opportunity')) return 'explore';
|
|
76
|
-
// Consult strategy preset: if the configured strategy favors innovation,
|
|
77
|
-
// default to innovate instead of optimize when there is nothing specific to do.
|
|
78
|
-
try {
|
|
79
|
-
var strategy = require('./strategy').resolveStrategy();
|
|
80
|
-
if (strategy && typeof strategy.innovate === 'number' && strategy.innovate >= 0.5) return 'innovate';
|
|
81
|
-
} catch (_) {}
|
|
82
|
-
return 'optimize';
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
function expectedEffectFromCategory(category) {
|
|
86
|
-
const c = String(category || '');
|
|
87
|
-
if (c === 'repair') return 'reduce runtime errors, increase stability, and lower failure rate';
|
|
88
|
-
if (c === 'optimize') return 'improve success rate and reduce repeated operational cost';
|
|
89
|
-
if (c === 'innovate') return 'explore new strategy combinations to escape local optimum';
|
|
90
|
-
if (c === 'explore') return 'proactively scan internal codebase and external knowledge sources to discover new evolution opportunities';
|
|
91
|
-
return 'improve robustness and success probability';
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
function targetFromGene(selectedGene) {
|
|
95
|
-
if (selectedGene && selectedGene.id) return `gene:${String(selectedGene.id)}`;
|
|
96
|
-
return 'behavior:protocol';
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
function isHighRiskPersonality(p) {
|
|
100
|
-
// Conservative definition: low rigor or high risk_tolerance is treated as high-risk personality.
|
|
101
|
-
const rigor = p && Number.isFinite(Number(p.rigor)) ? Number(p.rigor) : null;
|
|
102
|
-
const riskTol = p && Number.isFinite(Number(p.risk_tolerance)) ? Number(p.risk_tolerance) : null;
|
|
103
|
-
if (rigor != null && rigor < 0.5) return true;
|
|
104
|
-
if (riskTol != null && riskTol > 0.6) return true;
|
|
105
|
-
return false;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
function isHighRiskMutationAllowed(personalityState) {
|
|
109
|
-
const rigor = personalityState && Number.isFinite(Number(personalityState.rigor)) ? Number(personalityState.rigor) : 0;
|
|
110
|
-
const riskTol =
|
|
111
|
-
personalityState && Number.isFinite(Number(personalityState.risk_tolerance))
|
|
112
|
-
? Number(personalityState.risk_tolerance)
|
|
113
|
-
: 1;
|
|
114
|
-
return rigor >= 0.6 && riskTol <= 0.5;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
function buildMutation({
|
|
118
|
-
signals,
|
|
119
|
-
selectedGene,
|
|
120
|
-
driftEnabled,
|
|
121
|
-
personalityState,
|
|
122
|
-
allowHighRisk = false,
|
|
123
|
-
target,
|
|
124
|
-
expected_effect,
|
|
125
|
-
} = {}) {
|
|
126
|
-
const ts = nowTsMs();
|
|
127
|
-
const category = mutationCategoryFromContext({ signals, driftEnabled: !!driftEnabled });
|
|
128
|
-
const triggerSignals = uniqStrings(signals);
|
|
129
|
-
|
|
130
|
-
const base = {
|
|
131
|
-
type: 'Mutation',
|
|
132
|
-
id: `mut_${ts}`,
|
|
133
|
-
category,
|
|
134
|
-
trigger_signals: triggerSignals,
|
|
135
|
-
target: String(target || targetFromGene(selectedGene)),
|
|
136
|
-
expected_effect: String(expected_effect || expectedEffectFromCategory(category)),
|
|
137
|
-
risk_level: 'low',
|
|
138
|
-
};
|
|
139
|
-
|
|
140
|
-
// Default risk assignment: innovate is medium; others low.
|
|
141
|
-
if (category === 'innovate') base.risk_level = 'medium';
|
|
142
|
-
|
|
143
|
-
// Optional high-risk escalation (rare, and guarded by strict safety constraints).
|
|
144
|
-
if (allowHighRisk && category === 'innovate') {
|
|
145
|
-
base.risk_level = 'high';
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
// Safety constraints (hard):
|
|
149
|
-
// - forbid innovate + high-risk personality (downgrade innovation to optimize)
|
|
150
|
-
// - forbid high-risk mutation unless personality satisfies constraints
|
|
151
|
-
const highRiskPersonality = isHighRiskPersonality(personalityState || null);
|
|
152
|
-
if (base.category === 'innovate' && highRiskPersonality) {
|
|
153
|
-
base.category = 'optimize';
|
|
154
|
-
base.expected_effect = 'safety downgrade: optimize under high-risk personality (avoid innovate+high-risk combo)';
|
|
155
|
-
base.risk_level = 'low';
|
|
156
|
-
base.trigger_signals = uniqStrings([...(base.trigger_signals || []), 'safety:avoid_innovate_with_high_risk_personality']);
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
if (base.risk_level === 'high' && !isHighRiskMutationAllowed(personalityState || null)) {
|
|
160
|
-
// Downgrade rather than emit illegal high-risk mutation.
|
|
161
|
-
base.risk_level = 'medium';
|
|
162
|
-
base.trigger_signals = uniqStrings([...(base.trigger_signals || []), 'safety:downgrade_high_risk']);
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
return base;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
function isValidMutation(obj) {
|
|
169
|
-
if (!obj || typeof obj !== 'object') return false;
|
|
170
|
-
if (obj.type !== 'Mutation') return false;
|
|
171
|
-
if (!obj.id || typeof obj.id !== 'string') return false;
|
|
172
|
-
if (!obj.category || !VALID_CATEGORIES.includes(String(obj.category))) return false;
|
|
173
|
-
if (!Array.isArray(obj.trigger_signals)) return false;
|
|
174
|
-
if (!obj.target || typeof obj.target !== 'string') return false;
|
|
175
|
-
if (!obj.expected_effect || typeof obj.expected_effect !== 'string') return false;
|
|
176
|
-
if (!obj.risk_level || !VALID_RISK_LEVELS.includes(String(obj.risk_level))) return false;
|
|
177
|
-
return true;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
function normalizeMutation(obj) {
|
|
181
|
-
const m = obj && typeof obj === 'object' ? obj : {};
|
|
182
|
-
const out = {
|
|
183
|
-
type: 'Mutation',
|
|
184
|
-
id: typeof m.id === 'string' ? m.id : `mut_${nowTsMs()}`,
|
|
185
|
-
category: VALID_CATEGORIES.includes(String(m.category)) ? String(m.category) : 'optimize',
|
|
186
|
-
trigger_signals: uniqStrings(m.trigger_signals),
|
|
187
|
-
target: typeof m.target === 'string' ? m.target : 'behavior:protocol',
|
|
188
|
-
expected_effect: typeof m.expected_effect === 'string' ? m.expected_effect : expectedEffectFromCategory(m.category),
|
|
189
|
-
risk_level: VALID_RISK_LEVELS.includes(String(m.risk_level)) ? String(m.risk_level) : 'low',
|
|
190
|
-
};
|
|
191
|
-
return out;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
module.exports = {
|
|
195
|
-
clamp01,
|
|
196
|
-
buildMutation,
|
|
197
|
-
isValidMutation,
|
|
198
|
-
normalizeMutation,
|
|
199
|
-
isHighRiskMutationAllowed,
|
|
200
|
-
isHighRiskPersonality,
|
|
201
|
-
hasOpportunitySignal,
|
|
202
|
-
};
|
|
203
|
-
|
|
1
|
+
const _0x4f3d8d=_0x13ac;(function(_0x2306fc,_0x1650a9){const _0x1a583b=_0x13ac,_0x5d363b=_0x2306fc();while(!![]){try{const _0x30ce25=-parseInt(_0x1a583b(0x2f1,'\x23\x2a\x5a\x47'))/(0x2451+-0x24ff+0xaf)+-parseInt(_0x1a583b(0x1de,'\x53\x50\x45\x66'))/(-0x3*-0x243+0x59e+-0xc65*0x1)+-parseInt(_0x1a583b(0x18b,'\x66\x54\x50\x5a'))/(-0xe34+-0x5*-0x7cd+-0x18ca)*(-parseInt(_0x1a583b(0x1e7,'\x78\x36\x28\x59'))/(-0x7a5+-0x2556+0x2cff))+-parseInt(_0x1a583b(0x193,'\x4a\x4d\x2a\x63'))/(0x1e7+-0x283*-0x1+-0x9*0x7d)*(-parseInt(_0x1a583b(0x197,'\x6f\x4a\x76\x61'))/(-0x2086+0x5*-0x1bb+-0x35*-0xc7))+-parseInt(_0x1a583b(0x1d7,'\x65\x70\x21\x53'))/(-0x723*-0x1+-0x779*-0x4+-0x2500)+parseInt(_0x1a583b(0x28c,'\x73\x4d\x69\x56'))/(-0xd35+-0x1de2*-0x1+-0x10a5)+-parseInt(_0x1a583b(0x2c7,'\x46\x47\x61\x53'))/(0x1bb*-0x2+-0xbf*0x2b+0x2394)*(-parseInt(_0x1a583b(0x1c6,'\x68\x33\x78\x79'))/(-0x21b2+0x3*-0xcc5+0x480b));if(_0x30ce25===_0x1650a9)break;else _0x5d363b['push'](_0x5d363b['shift']());}catch(_0x427837){_0x5d363b['push'](_0x5d363b['shift']());}}}(_0x217e,0x2db19*0x3+-0x12fe5*0x7+-0x1*-0x5e359));const _0x1d0b0b=(function(){const _0x2d52db=_0x13ac,_0x2aae6b={'\x52\x6d\x49\x56\x64':_0x2d52db(0x2b7,'\x25\x6e\x69\x4b')+'\x36\x7c\x31\x7c\x30','\x58\x43\x53\x44\x59':_0x2d52db(0x200,'\x53\x74\x4d\x4b'),'\x63\x6a\x7a\x67\x4e':function(_0x1e3095,_0x49bf89){return _0x1e3095(_0x49bf89);},'\x42\x63\x6e\x44\x70':_0x2d52db(0x2e2,'\x6d\x59\x77\x41')+'\x67\x79','\x4e\x51\x78\x7a\x44':'\x6e\x75\x6d\x62\x65\x72','\x55\x43\x65\x54\x62':_0x2d52db(0x1f6,'\x57\x36\x5b\x5b'),'\x6e\x4a\x73\x67\x43':_0x2d52db(0x303,'\x70\x56\x5e\x40'),'\x57\x7a\x51\x4a\x47':_0x2d52db(0x2af,'\x5b\x76\x47\x46')+_0x2d52db(0x1fb,'\x78\x49\x64\x6c')+_0x2d52db(0x304,'\x4e\x77\x4f\x79'),'\x55\x64\x65\x71\x45':_0x2d52db(0x311,'\x6d\x59\x77\x41'),'\x67\x6e\x57\x41\x44':function(_0x37dc11,_0x384bca){return _0x37dc11!==_0x384bca;},'\x44\x66\x5a\x74\x6e':_0x2d52db(0x219,'\x78\x36\x28\x59')};let _0x149d99=!![];return function(_0x3e28fc,_0x57fcf6){const _0x288592=_0x2d52db,_0x56b4e7={'\x55\x43\x78\x54\x52':_0x2aae6b[_0x288592(0x30a,'\x79\x5e\x4e\x26')],'\x45\x6c\x56\x52\x4d':_0x2aae6b[_0x288592(0x256,'\x25\x75\x70\x43')],'\x4c\x50\x4a\x7a\x54':function(_0x2e5de7,_0x1fa510){const _0x9bb042=_0x288592;return _0x2aae6b[_0x9bb042(0x1e8,'\x68\x33\x78\x79')](_0x2e5de7,_0x1fa510);},'\x4e\x72\x6a\x6f\x72':_0x2aae6b[_0x288592(0x1d3,'\x53\x78\x77\x26')],'\x6a\x64\x6d\x5a\x52':_0x2aae6b[_0x288592(0x2d4,'\x34\x70\x4b\x53')],'\x70\x4c\x50\x46\x6b':_0x2aae6b[_0x288592(0x2e0,'\x2a\x6e\x30\x4a')],'\x6d\x51\x79\x75\x4c':_0x2aae6b[_0x288592(0x1b6,'\x34\x70\x4b\x53')],'\x6b\x6e\x70\x48\x4b':function(_0x4cdee7,_0x1cb99a){return _0x4cdee7(_0x1cb99a);},'\x6f\x5a\x63\x55\x47':_0x2aae6b[_0x288592(0x2b3,'\x5b\x76\x47\x46')],'\x63\x49\x76\x73\x54':_0x2aae6b[_0x288592(0x1ae,'\x6d\x59\x77\x41')]};if(_0x2aae6b['\x67\x6e\x57\x41\x44'](_0x2aae6b[_0x288592(0x2a2,'\x79\x5e\x4e\x26')],_0x288592(0x219,'\x78\x36\x28\x59'))){const _0x5dd905=_0x56b4e7[_0x288592(0x2a5,'\x51\x40\x5b\x69')][_0x288592(0x2d3,'\x5e\x5a\x47\x77')]('\x7c');let _0x3bbc9a=-0x134a+-0x1927+0x2c71;while(!![]){switch(_0x5dd905[_0x3bbc9a++]){case'\x30':return _0x56b4e7[_0x288592(0x19d,'\x4d\x28\x51\x70')];case'\x31':try{var _0x15ed25=_0x56b4e7[_0x288592(0x28e,'\x5e\x4d\x30\x55')](_0x4676a8,_0x56b4e7['\x4e\x72\x6a\x6f\x72'])[_0x288592(0x235,'\x79\x5e\x4e\x26')+'\x74\x72\x61\x74\x65\x67\x79']();if(_0x15ed25&&typeof _0x15ed25[_0x288592(0x30b,'\x31\x67\x40\x6d')]===_0x56b4e7[_0x288592(0x1df,'\x53\x6d\x21\x65')]&&_0x15ed25[_0x288592(0x1ea,'\x4e\x77\x4f\x79')]>=0x137*0x20+0xc31+-0x3311+0.5)return _0x56b4e7[_0x288592(0x298,'\x25\x75\x70\x43')];}catch(_0x4b110b){}continue;case'\x32':if(_0x4d077a)return _0x56b4e7[_0x288592(0x213,'\x4d\x28\x51\x70')];continue;case'\x33':if(_0x56b4e7[_0x288592(0x2dc,'\x68\x33\x78\x79')](_0x162c44,_0x2e9106))return _0x56b4e7[_0x288592(0x2e9,'\x40\x5d\x30\x69')];continue;case'\x34':if(_0x56b4e7[_0x288592(0x212,'\x4a\x4d\x2a\x63')](_0x227946,_0x28906d))return _0x56b4e7[_0x288592(0x295,'\x59\x52\x5e\x4e')];continue;case'\x35':var _0x2d539f=_0x2b7e86[_0x288592(0x317,'\x4d\x70\x70\x21')](_0x221b81)?_0x126e84:[];continue;case'\x36':if(_0x2d539f[_0x288592(0x1ba,'\x4e\x4f\x62\x76')](_0x56b4e7[_0x288592(0x20a,'\x2a\x6e\x30\x4a')]))return _0x56b4e7[_0x288592(0x1fe,'\x71\x45\x33\x6c')];continue;}break;}}else{const _0x221035=_0x149d99?function(){const _0x4a1334=_0x288592;if(_0x57fcf6){const _0x584139=_0x57fcf6[_0x4a1334(0x23f,'\x68\x6f\x75\x7a')](_0x3e28fc,arguments);return _0x57fcf6=null,_0x584139;}}:function(){};return _0x149d99=![],_0x221035;}};}()),_0x20606e=_0x1d0b0b(this,function(){const _0xc85d4b=_0x13ac,_0x1e5dc4={};_0x1e5dc4[_0xc85d4b(0x1e0,'\x4b\x43\x70\x59')]=_0xc85d4b(0x2a0,'\x53\x50\x45\x66')+'\x2b\x29\x2b\x24';const _0x40fa75=_0x1e5dc4;return _0x20606e[_0xc85d4b(0x276,'\x50\x5e\x6c\x58')]()[_0xc85d4b(0x1ee,'\x73\x5e\x38\x5e')](_0x40fa75[_0xc85d4b(0x30d,'\x4d\x70\x70\x21')])['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0xc85d4b(0x1ac,'\x68\x33\x78\x79')+_0xc85d4b(0x262,'\x50\x5e\x6c\x58')](_0x20606e)[_0xc85d4b(0x2bf,'\x4d\x70\x70\x21')](_0xc85d4b(0x1dd,'\x25\x6e\x69\x4b')+_0xc85d4b(0x1b1,'\x5b\x76\x47\x46'));});_0x20606e();const {VALID_CATEGORIES:_0x549664,VALID_RISK_LEVELS:_0x34c55e}=require(_0x4f3d8d(0x2bd,'\x70\x7a\x52\x40')+_0x4f3d8d(0x258,'\x30\x4c\x51\x51')+'\x6f\x6c');function _0x3334af(_0xe6f397){const _0x238da9=_0x4f3d8d,_0x4f8366=Number(_0xe6f397);if(!Number[_0x238da9(0x1db,'\x4b\x43\x70\x59')](_0x4f8366))return-0x11a*-0x4+0x1*-0x859+-0x1*-0x3f1;return Math['\x6d\x61\x78'](0x1e22+-0x32f*-0x9+0x65*-0x95,Math[_0x238da9(0x2d5,'\x71\x45\x33\x6c')](-0x26e8+0xc7d*0x2+-0x57*-0x29,_0x4f8366));}function _0x13ac(_0x135327,_0x26fc05){_0x135327=_0x135327-(-0x1d*-0xb2+-0x14*0x127+0x46a);const _0x286e75=_0x217e();let _0x4539be=_0x286e75[_0x135327];if(_0x13ac['\x54\x69\x75\x73\x45\x77']===undefined){var _0x1f95ad=function(_0x2cd36c){const _0x3d0184='\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 _0x44c1fa='',_0x31bc7a='',_0x5c54e=_0x44c1fa+_0x1f95ad,_0x4512fe=(''+function(){return-0x1*-0x11a5+-0x104d+-0x158;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0xefa+0x1ef2+0x1*-0x2deb);for(let _0x1a05d2=0xd*0x274+-0x25*0x6f+-0xfd9,_0x17922f,_0x47013e,_0x38c215=-0x2*0x10fd+-0x11bb+-0x1*-0x33b5;_0x47013e=_0x2cd36c['\x63\x68\x61\x72\x41\x74'](_0x38c215++);~_0x47013e&&(_0x17922f=_0x1a05d2%(0x4b1*-0x5+0x1c91+-0x4*0x146)?_0x17922f*(-0x1ec8+-0x104a+-0x12*-0x2a1)+_0x47013e:_0x47013e,_0x1a05d2++%(-0x1*0x199f+-0x1e2e*-0x1+-0x48b*0x1))?_0x44c1fa+=_0x4512fe||_0x5c54e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x38c215+(-0x1*0xf89+0x13f3+-0x460))-(0x485+0x2581*-0x1+-0x3*-0xb02)!==-0x2678+0x414*0x4+-0x8*-0x2c5?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x17*0x16d+-0xab7*-0x1+0x1*-0x2a83&_0x17922f>>(-(-0x235*0x5+0xf*0x84+0x34f)*_0x1a05d2&-0x1837+0x31*-0x50+0x278d)):_0x1a05d2:-0x1e64+-0x20c6+-0x150e*-0x3){_0x47013e=_0x3d0184['\x69\x6e\x64\x65\x78\x4f\x66'](_0x47013e);}for(let _0x3a1a87=-0x24ff+-0x24d8+0x3*0x189d,_0xcd90d=_0x44c1fa['\x6c\x65\x6e\x67\x74\x68'];_0x3a1a87<_0xcd90d;_0x3a1a87++){_0x31bc7a+='\x25'+('\x30\x30'+_0x44c1fa['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3a1a87)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0xdd3+-0x1*0xd99+0x1b7c))['\x73\x6c\x69\x63\x65'](-(0xc53+-0x3*-0xc4c+0xd*-0x3c9));}return decodeURIComponent(_0x31bc7a);};const _0x4900d5=function(_0xbac040,_0x33286d){let _0x37f0bb=[],_0x2bf893=-0x1b9e+-0x29*0x57+0xb*0x3c7,_0x31a5c9,_0x1e55bd='';_0xbac040=_0x1f95ad(_0xbac040);let _0x20ad4b;for(_0x20ad4b=-0x1b2f*-0x1+-0x12c9+-0x56*0x19;_0x20ad4b<0x178b*0x1+0xdc8+0x1*-0x2453;_0x20ad4b++){_0x37f0bb[_0x20ad4b]=_0x20ad4b;}for(_0x20ad4b=0x1eb7+-0x1*0x1c53+-0x264;_0x20ad4b<0x21da+-0x98+-0x2042;_0x20ad4b++){_0x2bf893=(_0x2bf893+_0x37f0bb[_0x20ad4b]+_0x33286d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x20ad4b%_0x33286d['\x6c\x65\x6e\x67\x74\x68']))%(0x2599+-0x110a+-0x3*0x685),_0x31a5c9=_0x37f0bb[_0x20ad4b],_0x37f0bb[_0x20ad4b]=_0x37f0bb[_0x2bf893],_0x37f0bb[_0x2bf893]=_0x31a5c9;}_0x20ad4b=0xbf6+-0x7aa+0x2*-0x226,_0x2bf893=0x1981+-0x544+-0x143d;for(let _0x5574ca=-0x6f*-0x3+0x1e73+-0x7f0*0x4;_0x5574ca<_0xbac040['\x6c\x65\x6e\x67\x74\x68'];_0x5574ca++){_0x20ad4b=(_0x20ad4b+(0xe59*0x1+0xa5+-0xefd))%(0x366+-0x1c10+-0x522*-0x5),_0x2bf893=(_0x2bf893+_0x37f0bb[_0x20ad4b])%(-0x2475+0x1657+0xf1e),_0x31a5c9=_0x37f0bb[_0x20ad4b],_0x37f0bb[_0x20ad4b]=_0x37f0bb[_0x2bf893],_0x37f0bb[_0x2bf893]=_0x31a5c9,_0x1e55bd+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0xbac040['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5574ca)^_0x37f0bb[(_0x37f0bb[_0x20ad4b]+_0x37f0bb[_0x2bf893])%(0x101+-0x13c5+-0x4f1*-0x4)]);}return _0x1e55bd;};_0x13ac['\x53\x77\x53\x79\x4a\x6a']=_0x4900d5,_0x13ac['\x65\x41\x42\x45\x77\x72']={},_0x13ac['\x54\x69\x75\x73\x45\x77']=!![];}const _0x1e7ca2=_0x286e75[-0xd99+0x1679+-0x8*0x11c],_0x4b5f1b=_0x135327+_0x1e7ca2,_0x3e2371=_0x13ac['\x65\x41\x42\x45\x77\x72'][_0x4b5f1b];if(!_0x3e2371){if(_0x13ac['\x46\x7a\x42\x42\x4f\x65']===undefined){const _0x182e4c=function(_0x2a121b){this['\x76\x42\x75\x69\x55\x48']=_0x2a121b,this['\x7a\x53\x7a\x74\x4f\x6a']=[0x202d+0x20b3+-0x1*0x40df,0x1ef+-0x2*-0x10e3+-0x23b5,0x2118+0x13d*-0x3+-0x1d61],this['\x59\x4f\x5a\x52\x71\x6c']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x69\x6a\x70\x6b\x69\x4c']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x4d\x51\x68\x66\x78\x53']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x182e4c['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4a\x49\x77\x4d\x6a\x48']=function(){const _0x549bc1=new RegExp(this['\x69\x6a\x70\x6b\x69\x4c']+this['\x4d\x51\x68\x66\x78\x53']),_0x326df1=_0x549bc1['\x74\x65\x73\x74'](this['\x59\x4f\x5a\x52\x71\x6c']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x7a\x53\x7a\x74\x4f\x6a'][-0x1633+0x24d*0x7+0x619]:--this['\x7a\x53\x7a\x74\x4f\x6a'][-0x17*-0xdf+-0xb5b+-0x1*0x8ae];return this['\x50\x6c\x50\x71\x65\x62'](_0x326df1);},_0x182e4c['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x50\x6c\x50\x71\x65\x62']=function(_0x4eaaf6){if(!Boolean(~_0x4eaaf6))return _0x4eaaf6;return this['\x73\x62\x47\x65\x79\x71'](this['\x76\x42\x75\x69\x55\x48']);},_0x182e4c['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x73\x62\x47\x65\x79\x71']=function(_0x4de611){for(let _0x1e1eae=-0x129c+0x18*-0x41+0x18b4,_0x21a929=this['\x7a\x53\x7a\x74\x4f\x6a']['\x6c\x65\x6e\x67\x74\x68'];_0x1e1eae<_0x21a929;_0x1e1eae++){this['\x7a\x53\x7a\x74\x4f\x6a']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x21a929=this['\x7a\x53\x7a\x74\x4f\x6a']['\x6c\x65\x6e\x67\x74\x68'];}return _0x4de611(this['\x7a\x53\x7a\x74\x4f\x6a'][-0x227d+-0x131a+0x33*0x10d]);},(''+function(){return 0xc1*0x22+-0x9*-0x5e+-0x1cf0;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x6e6+-0x30e*-0x7+-0x3*0x96d)&&new _0x182e4c(_0x13ac)['\x4a\x49\x77\x4d\x6a\x48'](),_0x13ac['\x46\x7a\x42\x42\x4f\x65']=!![];}_0x4539be=_0x13ac['\x53\x77\x53\x79\x4a\x6a'](_0x4539be,_0x26fc05),_0x13ac['\x65\x41\x42\x45\x77\x72'][_0x4b5f1b]=_0x4539be;}else _0x4539be=_0x3e2371;return _0x4539be;}function _0x4d70c7(){return Date['\x6e\x6f\x77']();}function _0x2e2ca3(_0x317301){const _0x1ff425=_0x4f3d8d,_0x14b720={};_0x14b720[_0x1ff425(0x201,'\x4d\x28\x51\x70')]=function(_0x31fc34,_0x268ead){return _0x31fc34||_0x268ead;};const _0x3c4f0e=_0x14b720,_0x57928d=[],_0x5d7d7f=new Set();for(const _0x220316 of Array[_0x1ff425(0x2d8,'\x6d\x59\x77\x41')](_0x317301)?_0x317301:[]){const _0x9dfc21=String(_0x3c4f0e[_0x1ff425(0x20d,'\x53\x7a\x7a\x71')](_0x220316,''))[_0x1ff425(0x2f7,'\x68\x40\x67\x6c')]();if(!_0x9dfc21)continue;if(_0x5d7d7f[_0x1ff425(0x224,'\x53\x50\x45\x66')](_0x9dfc21))continue;_0x5d7d7f[_0x1ff425(0x280,'\x2a\x6e\x30\x4a')](_0x9dfc21),_0x57928d[_0x1ff425(0x1a8,'\x4e\x77\x4f\x79')](_0x9dfc21);}return _0x57928d;}function _0xe30215(_0x394ce1){const _0x4a6538=_0x4f3d8d,_0xdb5452={};_0xdb5452['\x41\x75\x42\x78\x47']=_0x4a6538(0x1f2,'\x79\x5e\x4e\x26')+_0x4a6538(0x192,'\x6d\x59\x77\x41')+_0x4a6538(0x2d9,'\x2a\x6e\x30\x4a'),_0xdb5452[_0x4a6538(0x230,'\x6f\x4a\x76\x61')]=_0x4a6538(0x314,'\x59\x52\x5e\x4e')+_0x4a6538(0x2db,'\x25\x75\x70\x43')+'\x61\x6c\x65\x64',_0xdb5452['\x41\x7a\x52\x72\x68']=_0x4a6538(0x26e,'\x25\x75\x70\x43')+'\x72',_0xdb5452[_0x4a6538(0x1a7,'\x53\x7a\x7a\x71')]='\x65\x78\x63\x65\x70\x74\x69\x6f'+'\x6e',_0xdb5452[_0x4a6538(0x300,'\x53\x50\x45\x66')]='\x66\x61\x69\x6c\x65\x64',_0xdb5452[_0x4a6538(0x1cf,'\x65\x70\x21\x53')]=_0x4a6538(0x19c,'\x53\x7a\x7a\x71');const _0x42446b=_0xdb5452,_0x219608=Array[_0x4a6538(0x317,'\x4d\x70\x70\x21')](_0x394ce1)?_0x394ce1[_0x4a6538(0x1ef,'\x53\x74\x4d\x4b')](_0x3cb403=>String(_0x3cb403||'')):[];if(_0x219608[_0x4a6538(0x1a0,'\x71\x2a\x26\x54')](_0x42446b[_0x4a6538(0x2e1,'\x70\x7a\x52\x40')])||_0x219608[_0x4a6538(0x2f0,'\x68\x6f\x75\x7a')](_0x42446b[_0x4a6538(0x2a7,'\x75\x24\x4c\x68')]))return![];const _0x30de1b=[_0x42446b[_0x4a6538(0x205,'\x4a\x4d\x2a\x63')],_0x4a6538(0x291,'\x50\x5e\x6c\x58'),_0x42446b[_0x4a6538(0x1e9,'\x57\x36\x5b\x5b')],_0x42446b[_0x4a6538(0x270,'\x78\x36\x28\x59')],_0x4a6538(0x2ef,'\x70\x7a\x52\x40')];for(const _0x2532fc of _0x219608){const _0x75f65a=_0x2532fc[_0x4a6538(0x195,'\x4b\x43\x70\x59')+_0x4a6538(0x26f,'\x26\x42\x26\x23')]();if(_0x30de1b['\x73\x6f\x6d\x65'](_0x1d3a1e=>_0x75f65a===_0x1d3a1e))return!![];if(_0x75f65a[_0x4a6538(0x31c,'\x25\x6e\x69\x4b')+'\x74\x68'](_0x42446b[_0x4a6538(0x2ba,'\x75\x24\x4c\x68')])||_0x75f65a[_0x4a6538(0x188,'\x57\x36\x5b\x5b')+'\x74\x68'](_0x4a6538(0x209,'\x59\x52\x5e\x4e')+'\x6f\x72\x6d\x3a'))return!![];}return![];}var _0x58c2cb=[_0x4f3d8d(0x243,'\x5e\x4d\x30\x55')+_0x4f3d8d(0x29a,'\x53\x6d\x21\x65')+_0x4f3d8d(0x245,'\x68\x40\x67\x6c'),_0x4f3d8d(0x26b,'\x6f\x4a\x76\x61')+_0x4f3d8d(0x294,'\x26\x42\x26\x23')+_0x4f3d8d(0x28b,'\x30\x4c\x51\x51')+_0x4f3d8d(0x196,'\x5e\x5a\x47\x77'),_0x4f3d8d(0x28d,'\x46\x47\x61\x53')+_0x4f3d8d(0x267,'\x26\x42\x26\x23'),'\x63\x61\x70\x61\x62\x69\x6c\x69'+_0x4f3d8d(0x226,'\x68\x40\x67\x6c'),_0x4f3d8d(0x274,'\x78\x49\x64\x6c')+_0x4f3d8d(0x27e,'\x25\x6e\x69\x4b')+_0x4f3d8d(0x31a,'\x5e\x5a\x47\x77'),_0x4f3d8d(0x272,'\x5a\x33\x26\x65')+_0x4f3d8d(0x25f,'\x57\x36\x5b\x5b')+'\x6e\x69\x74\x79',_0x4f3d8d(0x2c1,'\x59\x52\x5e\x4e')+_0x4f3d8d(0x218,'\x50\x5e\x6c\x58'),_0x4f3d8d(0x211,'\x46\x47\x61\x53')+_0x4f3d8d(0x1c1,'\x53\x6d\x21\x65')+_0x4f3d8d(0x206,'\x4e\x4f\x62\x76'),_0x4f3d8d(0x22d,'\x40\x5d\x30\x69')+_0x4f3d8d(0x1c0,'\x53\x50\x45\x66')+_0x4f3d8d(0x1fc,'\x78\x36\x28\x59')+_0x4f3d8d(0x217,'\x71\x45\x33\x6c'),_0x4f3d8d(0x1c3,'\x51\x40\x5b\x69')+_0x4f3d8d(0x18e,'\x71\x2a\x26\x54')+_0x4f3d8d(0x1ff,'\x53\x74\x4d\x4b'),_0x4f3d8d(0x189,'\x4d\x28\x51\x70')+_0x4f3d8d(0x319,'\x71\x2a\x26\x54')+_0x4f3d8d(0x263,'\x68\x6f\x75\x7a')+'\x65\x70\x61\x69\x72\x5f\x6c\x6f'+'\x6f\x70',_0x4f3d8d(0x283,'\x26\x42\x26\x23')+_0x4f3d8d(0x2b1,'\x25\x6e\x69\x4b'),_0x4f3d8d(0x1d5,'\x5b\x76\x47\x46')+_0x4f3d8d(0x2ff,'\x51\x40\x5b\x69')+'\x74',_0x4f3d8d(0x260,'\x30\x4c\x51\x51')+_0x4f3d8d(0x30c,'\x7a\x51\x28\x78')+_0x4f3d8d(0x18f,'\x53\x6d\x21\x65'),_0x4f3d8d(0x1b9,'\x79\x5e\x4e\x26')+_0x4f3d8d(0x1ab,'\x7a\x51\x28\x78')+_0x4f3d8d(0x2c3,'\x68\x6f\x75\x7a'),_0x4f3d8d(0x1a2,'\x4e\x77\x4f\x79')+_0x4f3d8d(0x250,'\x5e\x4d\x30\x55')+_0x4f3d8d(0x1b3,'\x71\x45\x33\x6c')+'\x64'];function _0x552f1d(_0x298d84){const _0x4db332=_0x4f3d8d,_0x4c9f53={'\x78\x45\x58\x6b\x6a':function(_0x343854,_0x10f523){return _0x343854(_0x10f523);},'\x46\x56\x70\x77\x62':function(_0x43cb0f,_0x346f48){return _0x43cb0f||_0x346f48;},'\x41\x41\x76\x72\x48':function(_0x3e186b,_0x5829b3){return _0x3e186b+_0x5829b3;},'\x7a\x6c\x7a\x47\x6a':function(_0x4676f1,_0x524edf){return _0x4676f1<_0x524edf;},'\x61\x6a\x4f\x67\x64':function(_0x53a7c5,_0x18e832){return _0x53a7c5+_0x18e832;},'\x6e\x55\x46\x49\x70':_0x4db332(0x1fd,'\x2a\x6e\x30\x4a'),'\x62\x47\x4d\x46\x77':function(_0x14c177,_0x2284fd){return _0x14c177!==_0x2284fd;},'\x4e\x44\x46\x67\x75':_0x4db332(0x1fa,'\x6f\x5d\x64\x33')};var _0x2d6980=Array[_0x4db332(0x1ca,'\x73\x4d\x69\x56')](_0x298d84)?_0x298d84[_0x4db332(0x1a6,'\x71\x45\x33\x6c')](function(_0x4e557b){return String(_0x4e557b||'');}):[];for(var _0x27a24e=0x1*-0xca3+-0x468+-0x1*-0x110b;_0x4c9f53[_0x4db332(0x1f8,'\x59\x52\x5e\x4e')](_0x27a24e,_0x58c2cb[_0x4db332(0x2fb,'\x25\x75\x70\x43')]);_0x27a24e++){if(_0x4c9f53[_0x4db332(0x1bf,'\x4d\x28\x51\x70')](_0x4c9f53['\x4e\x44\x46\x67\x75'],_0x4c9f53[_0x4db332(0x249,'\x40\x5d\x30\x69')])){var _0x49d08f=_0x276fe7[_0x4db332(0x29e,'\x5a\x33\x26\x65')](_0x151937)?_0x23dc09[_0x4db332(0x1f5,'\x75\x24\x4c\x68')](function(_0x55adf7){const _0x30c635=_0x4db332;return _0x4c9f53['\x78\x45\x58\x6b\x6a'](_0x5ab604,_0x4c9f53[_0x30c635(0x214,'\x5e\x5a\x47\x77')](_0x55adf7,''));}):[];for(var _0x392b44=-0x18d1+-0x1db3+0x3684;_0x4c9f53[_0x4db332(0x22c,'\x5a\x33\x26\x65')](_0x392b44,_0x1e99d5[_0x4db332(0x278,'\x53\x74\x4d\x4b')]);_0x392b44++){var _0x45517e=_0x50f6c6[_0x392b44];if(_0x49d08f[_0x4db332(0x231,'\x42\x70\x52\x44')](_0x45517e))return!![];if(_0x49d08f[_0x4db332(0x232,'\x31\x67\x40\x6d')](function(_0x320723){const _0x4f87ed=_0x4db332;return _0x320723[_0x4f87ed(0x1b7,'\x4d\x28\x51\x70')+'\x74\x68'](_0x4c9f53['\x41\x41\x76\x72\x48'](_0x45517e,'\x3a'));}))return!![];}return![];}else{var _0x1b34f5=_0x58c2cb[_0x27a24e];if(_0x2d6980[_0x4db332(0x1c7,'\x5a\x33\x26\x65')](_0x1b34f5))return!![];if(_0x2d6980[_0x4db332(0x2fa,'\x5e\x5a\x47\x77')](function(_0x38bf24){const _0x44bd63=_0x4db332,_0xe4c8a9={'\x4d\x41\x4e\x61\x51':function(_0x1b4a2f,_0x5712ee){const _0x49d5c1=_0x13ac;return _0x4c9f53[_0x49d5c1(0x2c9,'\x5e\x4d\x30\x55')](_0x1b4a2f,_0x5712ee);}};if(_0x44bd63(0x302,'\x46\x47\x61\x53')!==_0x4c9f53['\x6e\x55\x46\x49\x70'])return _0x38bf24[_0x44bd63(0x308,'\x75\x24\x4c\x68')+'\x74\x68'](_0x4c9f53[_0x44bd63(0x216,'\x68\x6f\x75\x7a')](_0x1b34f5,'\x3a'));else{var _0x165bd9=_0x462313[_0x32c5e5];if(_0x37dca6[_0x44bd63(0x199,'\x5b\x76\x47\x46')](_0x165bd9))return!![];if(_0x36f8d4[_0x44bd63(0x1d6,'\x51\x40\x5b\x69')](function(_0x4ba65f){const _0x15ff1d=_0x44bd63;return _0x4ba65f[_0x15ff1d(0x1ce,'\x53\x74\x4d\x4b')+'\x74\x68'](_0xe4c8a9[_0x15ff1d(0x27c,'\x53\x50\x45\x66')](_0x165bd9,'\x3a'));}))return!![];}}))return!![];}}return![];}function _0x217e(){const _0x19cb52=['\x6c\x57\x35\x49\x44\x4d\x79','\x65\x53\x6b\x5a\x57\x52\x48\x6d\x57\x35\x78\x63\x4b\x38\x6f\x52\x57\x37\x43','\x62\x63\x6c\x64\x4f\x6d\x6b\x30\x57\x35\x6d','\x57\x37\x48\x2f\x57\x35\x46\x63\x4a\x68\x44\x42\x72\x67\x4b','\x57\x52\x50\x2b\x57\x52\x78\x63\x56\x63\x56\x63\x4b\x38\x6b\x46\x57\x52\x43','\x71\x38\x6f\x48\x57\x35\x70\x63\x4f\x6d\x6b\x39\x63\x61','\x6a\x63\x44\x73','\x57\x34\x68\x63\x4e\x62\x74\x63\x47\x67\x6a\x72\x72\x47\x57','\x74\x38\x6b\x39\x71\x53\x6f\x6a\x57\x4f\x6d','\x57\x52\x52\x63\x55\x32\x68\x64\x52\x58\x6a\x34\x57\x35\x4c\x72','\x57\x35\x53\x4d\x57\x35\x44\x66\x57\x35\x46\x63\x4f\x4a\x4b','\x42\x43\x6b\x69\x6e\x43\x6b\x51\x7a\x58\x35\x4b\x46\x61','\x57\x36\x52\x63\x4f\x4a\x78\x63\x4b\x72\x57\x6c','\x57\x4f\x48\x37\x57\x4f\x33\x64\x47\x61','\x57\x52\x33\x63\x4b\x43\x6b\x34\x57\x50\x52\x63\x4d\x47','\x6d\x32\x43\x4c\x57\x51\x4b\x4a\x57\x36\x69\x44','\x69\x53\x6b\x69\x57\x37\x33\x63\x49\x6d\x6f\x76\x65\x38\x6f\x6e\x57\x51\x4f','\x75\x38\x6f\x62\x68\x63\x2f\x64\x51\x65\x70\x63\x4c\x53\x6f\x6c','\x57\x4f\x65\x44\x6c\x75\x65\x6d\x64\x38\x6f\x49\x71\x6d\x6f\x42\x6f\x38\x6f\x79\x57\x52\x46\x64\x55\x47','\x57\x4f\x43\x67\x57\x52\x4a\x64\x51\x71\x2f\x63\x56\x30\x4e\x64\x52\x57','\x57\x34\x6c\x64\x4d\x53\x6b\x42\x42\x77\x75','\x57\x50\x39\x71\x57\x4f\x6c\x63\x56\x6d\x6f\x72','\x79\x38\x6f\x63\x68\x73\x68\x64\x4f\x4b\x2f\x63\x4e\x38\x6f\x41','\x57\x37\x72\x4a\x57\x34\x56\x63\x4a\x68\x6d','\x45\x62\x78\x63\x56\x74\x70\x63\x49\x57','\x57\x50\x34\x47\x57\x51\x42\x64\x47\x47\x4f','\x57\x52\x5a\x63\x55\x33\x4a\x64\x50\x49\x62\x2f\x57\x34\x35\x76','\x57\x4f\x2f\x63\x50\x6d\x6b\x2b\x57\x52\x4e\x63\x50\x61','\x57\x4f\x74\x64\x54\x48\x46\x64\x4c\x73\x71\x5a\x6d\x47','\x57\x36\x66\x73\x57\x34\x61\x39\x6c\x57','\x57\x35\x54\x41\x57\x36\x65\x59\x66\x57','\x57\x50\x79\x78\x57\x51\x70\x64\x4f\x64\x34','\x67\x68\x43\x58\x57\x51\x4f\x7a\x57\x37\x6d\x6d\x57\x34\x69','\x57\x34\x4a\x64\x4c\x4c\x42\x63\x4f\x6d\x6b\x65','\x57\x34\x74\x64\x50\x59\x6c\x64\x52\x59\x61\x30\x65\x57','\x57\x37\x33\x64\x4f\x43\x6b\x43\x79\x4b\x78\x63\x56\x49\x37\x64\x4b\x47','\x57\x37\x34\x72\x57\x35\x68\x63\x53\x78\x52\x63\x49\x43\x6b\x68','\x57\x36\x71\x6c\x57\x37\x46\x63\x52\x77\x4e\x63\x48\x6d\x6b\x6e','\x79\x75\x56\x63\x48\x53\x6f\x37\x57\x51\x4b\x54\x78\x4e\x65','\x57\x34\x74\x64\x50\x33\x42\x63\x54\x38\x6b\x66\x62\x71','\x57\x50\x31\x33\x57\x50\x2f\x63\x55\x6d\x6f\x74','\x57\x50\x69\x4d\x72\x6d\x6f\x5a\x78\x71\x72\x4a','\x76\x38\x6b\x38\x57\x51\x34\x62\x57\x34\x74\x63\x4e\x38\x6b\x4a','\x77\x62\x5a\x63\x47\x49\x33\x63\x55\x47','\x57\x34\x6a\x4c\x57\x37\x43\x44\x65\x4a\x31\x70\x44\x47','\x42\x38\x6b\x77\x44\x6d\x6f\x73\x57\x4f\x57','\x66\x59\x69\x55\x57\x50\x64\x64\x4a\x53\x6f\x39\x57\x35\x4c\x65','\x57\x4f\x50\x4e\x57\x4f\x33\x64\x47\x53\x6b\x55\x68\x57','\x57\x34\x6c\x63\x4e\x65\x74\x63\x55\x43\x6b\x5a\x57\x4f\x52\x64\x50\x38\x6f\x6b','\x57\x50\x79\x68\x71\x43\x6b\x56\x57\x35\x79\x59\x42\x63\x79','\x57\x51\x2f\x64\x47\x4a\x58\x56\x41\x47','\x75\x68\x5a\x63\x55\x32\x6c\x64\x47\x61','\x57\x36\x74\x64\x50\x48\x57\x4b\x57\x4f\x30','\x57\x50\x5a\x63\x47\x38\x6f\x31\x63\x38\x6b\x2f\x57\x35\x6d\x54\x57\x36\x57','\x68\x4d\x53\x57\x57\x51\x71\x7a\x57\x37\x75\x67\x57\x35\x38','\x57\x51\x35\x55\x57\x51\x75','\x62\x48\x6a\x67\x66\x71\x79','\x57\x51\x37\x63\x47\x43\x6f\x75\x6c\x43\x6b\x78','\x57\x52\x56\x64\x4b\x61\x42\x64\x51\x61\x43','\x57\x36\x56\x64\x53\x53\x6b\x48\x45\x31\x37\x63\x52\x74\x38','\x74\x38\x6f\x2b\x57\x34\x6c\x63\x56\x6d\x6b\x58\x67\x58\x4e\x63\x47\x71','\x57\x37\x58\x48\x57\x36\x74\x63\x50\x77\x5a\x63\x4e\x6d\x6f\x31\x57\x52\x53','\x57\x50\x6d\x2f\x78\x43\x6f\x2b\x79\x61','\x57\x50\x68\x64\x55\x4a\x31\x53\x7a\x61','\x44\x53\x6b\x2f\x72\x38\x6f\x31\x57\x51\x38','\x76\x43\x6f\x36\x57\x35\x78\x63\x4f\x6d\x6b\x2f\x61\x71\x38','\x69\x66\x47\x32\x57\x4f\x5a\x63\x4c\x74\x75\x6e\x67\x47','\x77\x4d\x57\x50\x57\x50\x42\x64\x47\x43\x6f\x33\x57\x34\x7a\x43','\x57\x37\x71\x64\x57\x36\x74\x63\x50\x4d\x2f\x63\x48\x38\x6b\x6d\x57\x4f\x6d','\x57\x50\x58\x57\x57\x4f\x33\x64\x4e\x53\x6b\x55\x65\x47','\x57\x51\x58\x36\x57\x52\x6a\x30\x57\x36\x76\x51\x57\x36\x52\x64\x52\x71','\x57\x4f\x33\x63\x4a\x43\x6b\x6e\x57\x4f\x52\x63\x56\x77\x56\x63\x4e\x38\x6f\x65','\x76\x77\x2f\x64\x47\x75\x68\x64\x50\x53\x6b\x34\x57\x51\x4e\x64\x54\x71','\x66\x53\x6b\x5a\x57\x51\x71\x69','\x6e\x49\x50\x72\x46\x66\x6a\x52\x57\x4f\x61','\x44\x43\x6b\x35\x57\x34\x62\x55\x57\x34\x4c\x4b\x69\x6d\x6f\x4b','\x57\x50\x31\x71\x57\x51\x68\x63\x4f\x6d\x6f\x4e','\x57\x34\x76\x75\x57\x37\x4e\x63\x55\x32\x74\x64\x51\x72\x78\x64\x4a\x76\x69\x51\x57\x52\x42\x64\x55\x43\x6f\x66','\x6f\x72\x68\x64\x47\x43\x6b\x30\x57\x36\x66\x57\x68\x63\x34','\x57\x36\x2f\x64\x4f\x6d\x6b\x45\x43\x66\x75','\x67\x71\x57\x52\x57\x52\x5a\x64\x4e\x57','\x57\x34\x78\x63\x4c\x78\x33\x63\x54\x6d\x6b\x55\x57\x50\x74\x63\x54\x43\x6f\x58','\x62\x77\x57\x47\x57\x51\x6d\x5a\x57\x36\x75\x6d\x57\x34\x61','\x6d\x6d\x6b\x2b\x57\x35\x64\x63\x4b\x6d\x6f\x48','\x57\x37\x6d\x64\x57\x37\x4e\x63\x4f\x4c\x4f','\x57\x52\x4f\x77\x57\x52\x37\x64\x52\x49\x74\x63\x54\x65\x4e\x64\x54\x71','\x57\x50\x58\x38\x57\x4f\x56\x64\x47\x53\x6b\x53\x66\x4d\x79','\x57\x50\x42\x63\x4d\x38\x6b\x56\x57\x4f\x33\x63\x56\x78\x4a\x63\x4a\x57','\x72\x38\x6f\x61\x57\x37\x33\x63\x55\x43\x6b\x4e','\x72\x59\x4a\x63\x4b\x6d\x6f\x55\x57\x37\x69','\x57\x52\x47\x39\x57\x50\x72\x5a\x64\x61','\x57\x50\x4f\x33\x77\x47','\x43\x4b\x6d\x47\x57\x4f\x70\x63\x56\x5a\x4f\x6e\x74\x61','\x57\x52\x66\x56\x57\x52\x39\x56\x57\x36\x76\x47\x57\x50\x33\x63\x52\x61','\x42\x59\x38\x75\x71\x43\x6b\x4d\x76\x43\x6f\x77','\x6e\x49\x58\x41\x7a\x66\x7a\x4a','\x57\x35\x78\x63\x4c\x47\x2f\x63\x48\x66\x53','\x57\x37\x72\x4c\x57\x35\x71\x79\x67\x47\x54\x74\x44\x47','\x6b\x49\x52\x63\x47\x49\x64\x64\x54\x61','\x7a\x73\x54\x46\x44\x76\x53\x51\x57\x4f\x68\x64\x4d\x71','\x6e\x49\x47\x77\x79\x4c\x7a\x31\x57\x4f\x64\x64\x4e\x57','\x57\x37\x56\x64\x50\x6d\x6b\x4c\x46\x4c\x5a\x63\x55\x4e\x52\x64\x4e\x47','\x65\x61\x62\x74\x72\x4c\x65','\x6e\x74\x79\x79\x57\x4f\x33\x64\x52\x47','\x6b\x68\x6d\x4d\x72\x38\x6b\x4d\x76\x43\x6f\x42\x57\x35\x4f','\x57\x35\x54\x35\x77\x48\x6a\x33','\x57\x51\x31\x70\x57\x4f\x68\x63\x4c\x48\x38','\x41\x6d\x6f\x74\x61\x63\x4e\x64\x4e\x71','\x57\x34\x46\x63\x4a\x66\x46\x63\x48\x68\x39\x67\x72\x47\x38','\x57\x37\x52\x64\x55\x6d\x6b\x34\x43\x66\x42\x63\x55\x49\x4a\x64\x50\x61','\x44\x53\x6f\x42\x57\x51\x64\x64\x4d\x53\x6b\x41\x73\x6d\x6f\x55\x57\x50\x64\x64\x52\x75\x6a\x4a\x72\x71','\x57\x34\x5a\x64\x48\x67\x37\x63\x52\x6d\x6b\x51','\x42\x38\x6f\x74\x68\x73\x33\x64\x51\x65\x4e\x63\x4c\x38\x6f\x67','\x41\x38\x6b\x74\x6c\x38\x6b\x4d\x78\x58\x44\x5a\x76\x71','\x57\x36\x76\x2b\x57\x51\x66\x50\x57\x36\x76\x32\x57\x35\x37\x64\x51\x57','\x64\x57\x4e\x63\x4a\x4a\x70\x64\x4a\x53\x6b\x58\x57\x35\x56\x64\x51\x61','\x46\x6d\x6b\x35\x57\x34\x62\x36\x57\x34\x4c\x4b\x7a\x43\x6f\x5a','\x61\x73\x30\x50\x57\x4f\x68\x64\x49\x6d\x6f\x57\x57\x34\x44\x79','\x68\x53\x6b\x58\x57\x51\x69\x61\x57\x35\x70\x63\x4c\x6d\x6f\x56\x57\x36\x4f','\x6d\x38\x6f\x55\x57\x35\x43\x34\x57\x50\x75\x57\x7a\x53\x6f\x31\x6b\x38\x6f\x4a\x57\x50\x70\x64\x4b\x61','\x6f\x32\x5a\x64\x47\x30\x68\x64\x4d\x73\x5a\x63\x52\x43\x6b\x44\x57\x4f\x4a\x64\x51\x5a\x2f\x63\x48\x43\x6b\x4d','\x57\x50\x34\x6e\x57\x50\x39\x67\x6f\x6d\x6f\x32\x63\x6d\x6b\x46','\x57\x51\x31\x48\x57\x4f\x46\x64\x4c\x53\x6b\x76','\x57\x52\x39\x4f\x57\x51\x56\x63\x4c\x53\x6f\x37','\x57\x50\x47\x76\x57\x51\x56\x64\x55\x5a\x78\x63\x47\x4c\x68\x64\x53\x47','\x57\x35\x5a\x64\x54\x43\x6b\x78\x43\x61','\x57\x52\x6c\x64\x4c\x48\x52\x64\x53\x47\x34','\x44\x53\x6b\x42\x77\x6d\x6f\x73\x57\x50\x38\x34\x57\x37\x4a\x63\x4a\x47','\x72\x5a\x46\x63\x4b\x43\x6f\x49','\x57\x34\x44\x5a\x57\x35\x38\x74\x63\x64\x57','\x57\x51\x47\x67\x57\x51\x5a\x64\x51\x74\x78\x63\x56\x4c\x69','\x66\x58\x44\x6b\x70\x47\x37\x64\x48\x4d\x31\x6f','\x57\x4f\x31\x51\x57\x51\x6a\x61\x57\x35\x4e\x64\x51\x77\x75\x71','\x45\x64\x6c\x63\x50\x71\x33\x63\x49\x77\x37\x64\x56\x53\x6b\x5a','\x68\x64\x46\x64\x4f\x53\x6b\x41\x57\x34\x4b','\x73\x43\x6b\x68\x78\x38\x6f\x79\x57\x52\x71\x39\x57\x37\x6c\x63\x4c\x47','\x57\x4f\x30\x78\x57\x51\x37\x64\x54\x58\x34','\x76\x6d\x6f\x32\x57\x34\x6c\x63\x52\x38\x6b\x33\x68\x57','\x57\x34\x79\x47\x57\x34\x38','\x57\x52\x50\x72\x57\x51\x4a\x64\x47\x38\x6b\x47','\x57\x50\x47\x31\x57\x4f\x4e\x64\x4d\x53\x6b\x49\x66\x4d\x62\x4b','\x57\x52\x46\x64\x52\x43\x6b\x61\x78\x53\x6b\x77','\x73\x6d\x6b\x41\x74\x43\x6f\x62\x57\x50\x38\x49\x57\x34\x64\x63\x49\x71','\x57\x4f\x6d\x72\x57\x51\x70\x64\x51\x64\x46\x63\x55\x66\x74\x64\x48\x61','\x57\x4f\x54\x38\x57\x4f\x5a\x63\x4d\x53\x6f\x7a','\x43\x53\x6f\x65\x57\x35\x68\x64\x50\x38\x6f\x32\x57\x51\x56\x63\x54\x38\x6b\x53','\x76\x38\x6b\x6e\x57\x50\x72\x6d\x57\x50\x56\x64\x4b\x63\x2f\x64\x50\x71','\x57\x51\x31\x41\x57\x50\x33\x64\x50\x6d\x6b\x30','\x57\x37\x5a\x64\x4f\x38\x6b\x49\x46\x67\x37\x63\x51\x5a\x78\x64\x4c\x57','\x57\x37\x39\x2b\x57\x34\x56\x63\x4a\x4d\x62\x77\x77\x78\x79','\x72\x76\x78\x64\x54\x67\x33\x64\x47\x47','\x79\x59\x71\x4c\x78\x38\x6b\x37\x72\x53\x6f\x6b','\x79\x64\x52\x63\x4e\x48\x64\x63\x4e\x78\x65','\x57\x50\x4f\x52\x71\x6d\x6f\x61','\x57\x50\x64\x63\x4d\x6d\x6b\x6c\x57\x50\x68\x63\x52\x68\x78\x63\x4c\x38\x6f\x44','\x6b\x6d\x6b\x36\x57\x51\x43\x6b\x57\x34\x70\x63\x4b\x38\x6f\x2b','\x75\x4d\x78\x64\x4f\x30\x70\x64\x53\x43\x6b\x2f','\x57\x4f\x7a\x4d\x57\x51\x33\x64\x4e\x53\x6b\x2f\x67\x32\x57','\x57\x4f\x70\x64\x4a\x76\x78\x63\x4a\x43\x6b\x39\x57\x50\x4e\x63\x4e\x38\x6f\x69','\x57\x50\x4e\x64\x53\x61\x42\x64\x4d\x4a\x65\x32\x6c\x4d\x61','\x77\x64\x4e\x63\x49\x6d\x6f\x49\x57\x36\x46\x63\x4e\x71','\x57\x52\x5a\x63\x56\x78\x33\x64\x51\x62\x6a\x55\x57\x34\x39\x6e','\x57\x52\x58\x50\x57\x52\x46\x63\x51\x59\x5a\x63\x4b\x38\x6b\x78\x57\x51\x34','\x57\x37\x46\x63\x4f\x5a\x4e\x63\x47\x71\x30\x6b\x65\x48\x71','\x57\x35\x6c\x63\x4b\x61\x78\x63\x48\x4e\x72\x39\x64\x58\x69','\x57\x4f\x39\x6b\x57\x52\x39\x5a\x57\x35\x38','\x79\x75\x4b\x78\x57\x52\x70\x63\x52\x5a\x69\x36','\x57\x35\x30\x58\x57\x34\x7a\x75\x57\x35\x70\x63\x53\x73\x78\x63\x53\x47','\x44\x38\x6f\x46\x57\x34\x33\x64\x52\x43\x6b\x47\x57\x52\x4a\x63\x4f\x53\x6b\x39','\x57\x50\x4a\x64\x53\x61\x64\x64\x50\x63\x65\x36\x6e\x77\x53','\x68\x32\x30\x56\x57\x52\x4b\x4a\x57\x36\x75','\x57\x37\x65\x6f\x57\x4f\x7a\x78\x57\x36\x34','\x57\x4f\x69\x4c\x7a\x43\x6b\x69\x57\x36\x34','\x44\x64\x4b\x30\x76\x38\x6b\x54\x41\x38\x6f\x44\x57\x35\x4f','\x66\x49\x6c\x63\x55\x33\x4e\x64\x51\x4e\x44\x53\x57\x4f\x71','\x57\x52\x4e\x64\x52\x74\x39\x39\x74\x48\x57','\x57\x51\x6c\x64\x4b\x43\x6b\x64\x72\x53\x6b\x79\x57\x4f\x58\x7a\x61\x57','\x78\x74\x46\x63\x4b\x47','\x43\x68\x66\x64\x57\x50\x47\x4d\x73\x6d\x6b\x75\x57\x36\x4a\x64\x51\x53\x6b\x32\x7a\x65\x57','\x57\x4f\x72\x64\x57\x52\x37\x64\x4f\x68\x64\x63\x55\x66\x78\x64\x55\x61','\x57\x50\x64\x63\x4c\x43\x6f\x4d\x63\x38\x6b\x4c\x57\x34\x75\x54\x57\x34\x61','\x57\x50\x4b\x31\x57\x51\x6e\x42\x57\x35\x2f\x64\x50\x33\x69\x41','\x66\x72\x70\x63\x52\x5a\x74\x64\x47\x43\x6b\x30\x57\x35\x57','\x6a\x43\x6b\x46\x57\x36\x46\x63\x4d\x53\x6f\x6b\x68\x43\x6b\x79','\x57\x37\x68\x63\x4b\x59\x68\x63\x54\x31\x57','\x57\x51\x75\x42\x57\x52\x64\x64\x56\x59\x79','\x57\x50\x61\x72\x57\x52\x2f\x64\x51\x73\x75','\x57\x50\x37\x64\x53\x72\x70\x64\x4c\x5a\x61\x37\x6a\x68\x30','\x74\x53\x6b\x67\x57\x50\x50\x46\x57\x4f\x37\x64\x51\x4a\x4e\x64\x50\x57','\x57\x34\x4f\x35\x57\x34\x7a\x66\x57\x34\x56\x63\x4d\x49\x70\x63\x52\x57','\x46\x59\x56\x63\x4a\x58\x46\x63\x47\x77\x4a\x64\x53\x6d\x6b\x5a','\x76\x43\x6f\x59\x57\x35\x74\x63\x51\x38\x6b\x51\x66\x65\x42\x64\x47\x61','\x57\x35\x4b\x70\x57\x36\x6c\x63\x55\x31\x47','\x57\x50\x4f\x2f\x72\x61','\x62\x38\x6b\x38\x57\x34\x46\x63\x52\x6d\x6f\x75','\x57\x35\x38\x48\x57\x34\x76\x7a','\x71\x47\x4f\x6a\x6a\x31\x33\x64\x4c\x73\x39\x6c','\x57\x34\x66\x69\x61\x53\x6f\x33\x57\x4f\x31\x30\x6f\x49\x2f\x64\x53\x43\x6b\x4e\x63\x4c\x35\x44','\x45\x53\x6b\x42\x57\x50\x62\x65\x57\x4f\x74\x64\x4b\x64\x78\x64\x50\x71','\x62\x72\x78\x63\x50\x49\x4e\x64\x4c\x6d\x6b\x51\x57\x35\x52\x64\x52\x47','\x57\x36\x46\x64\x4d\x61\x34\x50\x57\x52\x42\x64\x53\x53\x6b\x41\x57\x36\x71','\x75\x5a\x47\x57\x71\x53\x6b\x72','\x63\x33\x71\x6d\x57\x51\x75\x6e','\x57\x51\x46\x63\x51\x63\x62\x53\x75\x57\x43\x57\x57\x4f\x4f','\x57\x35\x6c\x64\x4b\x53\x6b\x55\x71\x57','\x57\x4f\x37\x64\x47\x73\x76\x76\x42\x61','\x57\x51\x47\x36\x75\x43\x6f\x52\x76\x58\x76\x59\x6d\x71','\x57\x34\x42\x63\x4b\x58\x2f\x63\x54\x4e\x57','\x6e\x57\x30\x57\x57\x36\x44\x58','\x57\x50\x47\x4d\x57\x50\x39\x55\x63\x57','\x57\x34\x46\x63\x49\x58\x42\x63\x4c\x32\x76\x72\x6d\x72\x75','\x57\x36\x43\x72\x57\x37\x35\x39\x57\x36\x75','\x57\x52\x7a\x48\x57\x51\x64\x63\x4f\x53\x6f\x45\x66\x43\x6b\x32\x61\x71','\x43\x6d\x6b\x75\x70\x38\x6b\x48\x44\x72\x39\x5a\x75\x61','\x57\x35\x37\x63\x4a\x76\x42\x63\x54\x43\x6b\x51\x57\x50\x52\x63\x50\x38\x6f\x6c','\x57\x37\x78\x63\x4a\x48\x37\x63\x49\x4c\x75','\x57\x50\x61\x67\x57\x51\x74\x64\x51\x4d\x4f','\x57\x50\x69\x42\x57\x52\x52\x64\x51\x4a\x70\x63\x51\x75\x70\x64\x56\x57','\x57\x35\x42\x63\x55\x64\x52\x63\x4f\x32\x79','\x6a\x5a\x5a\x64\x4e\x43\x6b\x48\x57\x36\x6e\x4a\x67\x5a\x4b','\x67\x67\x43\x4e\x57\x50\x61\x56\x57\x36\x38\x7a\x57\x34\x79','\x6f\x4b\x70\x64\x4d\x53\x6b\x36\x57\x51\x6a\x47\x68\x63\x53','\x46\x5a\x52\x63\x49\x48\x4a\x63\x47\x77\x37\x64\x48\x53\x6b\x36','\x57\x34\x69\x5a\x57\x52\x35\x44\x57\x34\x2f\x63\x51\x68\x47\x42','\x57\x51\x52\x63\x53\x43\x6b\x47\x57\x4f\x37\x63\x4e\x61','\x76\x65\x52\x63\x56\x57\x56\x64\x4d\x53\x6b\x59\x57\x36\x33\x64\x51\x57','\x57\x37\x34\x6d\x57\x37\x70\x63\x52\x33\x33\x63\x4a\x6d\x6b\x42\x57\x4f\x4b','\x57\x52\x43\x78\x73\x43\x6b\x33\x57\x34\x4f','\x57\x37\x33\x64\x56\x53\x6b\x4a\x46\x4c\x2f\x63\x55\x61','\x57\x35\x35\x44\x76\x71\x54\x70\x78\x53\x6b\x56','\x42\x49\x52\x63\x4a\x53\x6f\x33\x57\x34\x75','\x6a\x30\x75\x4b\x57\x50\x70\x63\x4f\x5a\x79\x67','\x57\x36\x75\x6c\x57\x36\x70\x63\x51\x66\x46\x63\x4d\x6d\x6b\x42\x57\x4f\x47','\x62\x57\x6a\x46\x6b\x72\x33\x64\x4d\x4b\x48\x45','\x57\x52\x34\x55\x77\x53\x6b\x66\x57\x37\x30','\x79\x38\x6f\x45\x57\x35\x52\x64\x55\x53\x6f\x55\x57\x51\x56\x63\x52\x38\x6f\x50','\x67\x38\x6b\x62\x78\x6d\x6f\x77\x57\x50\x4b\x57\x57\x36\x70\x63\x49\x71','\x71\x43\x6b\x36\x45\x53\x6f\x2f\x57\x51\x30','\x57\x36\x65\x4d\x57\x52\x39\x57\x57\x35\x53','\x57\x34\x39\x4c\x57\x52\x6a\x42\x57\x34\x2f\x64\x52\x78\x6d\x75','\x57\x50\x52\x63\x4a\x53\x6f\x33\x66\x43\x6b\x35\x57\x34\x69\x39\x57\x35\x38','\x46\x4a\x64\x63\x4c\x58\x57','\x57\x34\x76\x6a\x62\x6d\x6f\x57\x57\x4f\x62\x59\x72\x74\x68\x64\x52\x38\x6b\x65\x69\x77\x53','\x57\x50\x64\x63\x4c\x43\x6f\x52\x63\x6d\x6b\x4d\x57\x34\x61\x38\x57\x35\x79','\x57\x34\x64\x64\x4f\x43\x6b\x33\x43\x30\x69','\x44\x43\x6b\x5a\x57\x4f\x35\x55\x57\x34\x54\x50\x44\x6d\x6f\x34','\x57\x52\x2f\x64\x4a\x43\x6b\x6a\x71\x6d\x6b\x62\x57\x4f\x62\x46\x6a\x71','\x57\x50\x69\x42\x57\x52\x52\x64\x4f\x5a\x2f\x63\x52\x30\x70\x63\x55\x57','\x57\x36\x43\x31\x57\x37\x37\x64\x54\x33\x70\x64\x49\x43\x6f\x52\x57\x36\x34','\x45\x66\x42\x63\x4e\x53\x6f\x54\x57\x52\x75\x5a\x71\x73\x47\x59\x57\x35\x4f\x55\x57\x37\x68\x63\x4c\x47','\x62\x4d\x79\x55\x57\x50\x75\x75','\x57\x50\x74\x64\x53\x43\x6b\x2b\x79\x43\x6b\x77','\x57\x36\x64\x64\x4a\x4a\x39\x47\x57\x51\x56\x64\x52\x38\x6b\x43\x57\x36\x61','\x43\x53\x6b\x58\x6d\x47','\x57\x52\x2f\x64\x4b\x6d\x6b\x53\x72\x43\x6b\x41\x57\x4f\x31\x6f\x6d\x57','\x6b\x43\x6b\x64\x57\x37\x42\x63\x48\x43\x6f\x77\x68\x53\x6f\x68\x57\x51\x53','\x57\x52\x7a\x39\x57\x50\x54\x56\x57\x37\x7a\x58\x57\x36\x2f\x64\x52\x71','\x79\x49\x4a\x63\x4c\x62\x37\x63\x4d\x4e\x33\x64\x56\x43\x6b\x5a','\x57\x37\x4e\x63\x56\x78\x4f\x51\x66\x31\x4f\x36\x57\x52\x4e\x64\x4c\x38\x6b\x36\x68\x38\x6f\x64','\x62\x72\x64\x63\x53\x4a\x33\x64\x52\x47','\x57\x34\x70\x63\x48\x47\x52\x63\x54\x47\x34','\x57\x34\x79\x36\x57\x35\x48\x45\x57\x34\x74\x63\x50\x64\x74\x63\x53\x57','\x57\x52\x74\x63\x4b\x6d\x6b\x35\x57\x52\x46\x63\x48\x61','\x57\x52\x4e\x64\x51\x74\x54\x35\x62\x57\x38\x5a\x57\x50\x53','\x42\x5a\x69\x37\x78\x6d\x6b\x49\x76\x43\x6f\x42\x57\x35\x4f','\x57\x34\x6c\x63\x4d\x65\x70\x63\x52\x53\x6b\x4b\x57\x50\x53','\x67\x72\x44\x6f','\x57\x35\x35\x61\x44\x58\x76\x69\x77\x38\x6b\x5a\x45\x61','\x57\x36\x78\x64\x4e\x53\x6b\x44\x74\x4e\x38','\x57\x52\x62\x49\x57\x52\x42\x63\x55\x43\x6f\x79\x6a\x53\x6b\x32\x67\x47','\x57\x52\x5a\x63\x56\x78\x33\x64\x51\x62\x6a\x32\x57\x34\x76\x78','\x57\x50\x54\x57\x57\x4f\x56\x64\x4c\x43\x6f\x54\x67\x78\x50\x39','\x76\x53\x6b\x70\x78\x61','\x57\x36\x33\x63\x55\x74\x42\x63\x4e\x61\x38\x79\x6d\x72\x47','\x57\x51\x42\x64\x52\x43\x6b\x6b\x75\x6d\x6b\x54','\x57\x4f\x78\x63\x48\x6d\x6b\x75\x57\x52\x4a\x63\x50\x71','\x6f\x57\x5a\x64\x4a\x6d\x6b\x30\x57\x36\x62\x54\x67\x74\x65','\x42\x33\x37\x64\x56\x4c\x74\x64\x4c\x71','\x43\x43\x6b\x55\x6e\x71\x5a\x64\x55\x31\x53\x46\x62\x61','\x57\x52\x2f\x64\x4f\x73\x62\x59\x45\x61\x4f\x34\x57\x4f\x53','\x61\x72\x50\x53\x46\x33\x43','\x57\x50\x71\x78\x71\x53\x6f\x53\x7a\x47','\x66\x57\x6a\x42\x70\x57','\x67\x57\x7a\x6b\x6d\x47\x74\x64\x47\x67\x76\x73','\x57\x36\x37\x63\x4c\x71\x46\x63\x52\x68\x38','\x57\x35\x4e\x63\x4c\x65\x78\x63\x54\x61','\x57\x50\x47\x64\x57\x50\x50\x4f\x70\x6d\x6f\x4a\x74\x6d\x6b\x66','\x57\x35\x74\x63\x4a\x65\x5a\x63\x4d\x53\x6b\x53','\x7a\x67\x33\x63\x52\x4c\x52\x64\x53\x47','\x42\x43\x6b\x4c\x6b\x6d\x6b\x30\x43\x62\x34','\x57\x52\x4e\x64\x4f\x73\x48\x5a\x76\x71','\x57\x34\x65\x53\x57\x52\x39\x76\x57\x35\x2f\x64\x4f\x78\x34\x42','\x57\x50\x52\x63\x4d\x53\x6b\x43\x57\x4f\x5a\x63\x50\x4e\x37\x63\x51\x43\x6f\x65','\x6b\x48\x4c\x76\x72\x33\x71','\x57\x51\x37\x63\x51\x64\x58\x5a\x75\x48\x57\x2b\x57\x50\x4f','\x57\x37\x35\x5a\x57\x35\x70\x63\x48\x4d\x6a\x6f','\x67\x53\x6b\x68\x57\x36\x78\x63\x4f\x6d\x6f\x6e','\x57\x36\x78\x64\x4a\x62\x47\x52\x57\x4f\x38','\x57\x35\x30\x4a\x57\x35\x4a\x63\x4d\x43\x6f\x35\x73\x4b\x7a\x76\x6a\x6d\x6f\x6f\x57\x36\x54\x74','\x73\x67\x6c\x63\x49\x68\x43','\x57\x4f\x69\x6e\x57\x52\x4e\x64\x55\x49\x64\x63\x52\x75\x4e\x64\x51\x71','\x74\x4e\x4e\x63\x4a\x67\x64\x64\x4b\x71','\x57\x34\x74\x63\x53\x59\x46\x63\x4f\x33\x4f','\x43\x47\x37\x63\x4a\x6d\x6f\x57\x57\x36\x71','\x57\x35\x6c\x64\x54\x68\x68\x63\x56\x6d\x6b\x73\x67\x74\x33\x63\x52\x57','\x66\x53\x6b\x31\x57\x4f\x34\x6c\x57\x34\x69','\x57\x50\x69\x39\x71\x6d\x6f\x36\x76\x47','\x57\x37\x7a\x6f\x57\x35\x5a\x63\x4b\x78\x6e\x76\x71\x47','\x57\x50\x4a\x64\x47\x63\x31\x30\x44\x47','\x57\x52\x5a\x63\x55\x32\x5a\x64\x54\x4a\x35\x55\x57\x34\x35\x65','\x42\x6d\x6b\x37\x6e\x47\x5a\x64\x50\x76\x4b\x70\x6f\x71','\x6a\x4b\x71\x52\x57\x4f\x37\x63\x56\x49\x61\x37\x62\x71','\x7a\x64\x6c\x63\x49\x47\x56\x63\x48\x32\x52\x64\x56\x6d\x6f\x32','\x62\x48\x39\x7a\x6e\x62\x53','\x57\x52\x5a\x63\x50\x4d\x68\x64\x53\x74\x34\x32\x57\x4f\x62\x69','\x57\x52\x62\x57\x57\x4f\x52\x64\x49\x53\x6b\x4f\x67\x77\x65','\x6f\x59\x30\x53\x57\x51\x6c\x64\x4d\x57','\x43\x6d\x6b\x6a\x68\x43\x6b\x2f\x43\x48\x50\x56','\x57\x35\x33\x63\x4a\x64\x2f\x63\x4a\x68\x7a\x6b\x6e\x62\x75','\x69\x71\x6c\x64\x4e\x71','\x57\x52\x33\x64\x4f\x58\x4c\x4f\x71\x61','\x57\x35\x5a\x64\x56\x53\x6b\x48\x45\x53\x6f\x37\x72\x57','\x74\x53\x6f\x45\x61\x72\x2f\x64\x54\x71','\x62\x62\x42\x63\x52\x74\x34','\x6a\x47\x47\x6e\x57\x50\x42\x64\x52\x61','\x57\x50\x68\x63\x53\x77\x4a\x64\x50\x73\x48\x35\x57\x35\x71','\x57\x51\x6d\x4f\x57\x51\x48\x4d\x6a\x71','\x57\x36\x30\x6f\x57\x36\x52\x63\x48\x67\x69','\x57\x34\x74\x64\x4f\x33\x4a\x63\x54\x43\x6b\x74\x66\x68\x74\x63\x50\x61','\x57\x50\x57\x69\x76\x6d\x6b\x58\x57\x50\x4b\x4d\x41\x62\x61','\x57\x50\x52\x63\x50\x43\x6b\x42\x57\x4f\x56\x63\x52\x4d\x33\x63\x4e\x38\x6f\x66','\x66\x4a\x38\x56\x57\x34\x58\x31','\x57\x52\x7a\x47\x57\x52\x62\x51\x57\x36\x72\x39\x57\x35\x4a\x64\x54\x57','\x41\x6d\x6f\x66\x57\x35\x6c\x64\x52\x71','\x57\x34\x7a\x52\x62\x6d\x6b\x4e\x62\x75\x65\x59\x6a\x6d\x6f\x6e\x57\x35\x37\x64\x56\x64\x4e\x63\x4d\x71','\x45\x43\x6f\x46\x57\x35\x42\x64\x50\x6d\x6f\x4b\x57\x4f\x46\x63\x54\x53\x6b\x39','\x57\x51\x54\x30\x57\x52\x42\x63\x4f\x38\x6f\x72\x64\x38\x6b\x59\x6a\x71','\x74\x6d\x6b\x70\x57\x50\x30\x66\x57\x50\x64\x64\x50\x49\x37\x64\x51\x57','\x57\x4f\x52\x63\x4a\x38\x6f\x4b\x62\x43\x6b\x35\x57\x34\x30\x48\x57\x34\x43','\x57\x4f\x37\x64\x51\x38\x6b\x6f\x43\x6d\x6b\x43','\x76\x78\x68\x64\x53\x4b\x46\x64\x53\x43\x6b\x34\x57\x52\x78\x63\x55\x57','\x71\x33\x5a\x64\x4f\x75\x56\x64\x50\x53\x6b\x2f\x57\x52\x75','\x41\x43\x6f\x64\x57\x34\x5a\x64\x4f\x38\x6f\x46\x57\x51\x42\x63\x50\x53\x6b\x2f','\x45\x43\x6f\x70\x57\x35\x46\x64\x51\x43\x6f\x32\x57\x51\x70\x63\x52\x6d\x6b\x37','\x57\x52\x62\x48\x57\x50\x46\x63\x47\x53\x6f\x52','\x57\x34\x37\x64\x55\x31\x42\x63\x54\x43\x6b\x6b\x64\x32\x52\x63\x52\x47','\x66\x53\x6b\x56\x57\x52\x65\x61\x57\x35\x38','\x57\x4f\x33\x63\x4d\x53\x6f\x33\x61\x6d\x6b\x31\x57\x35\x75','\x57\x34\x76\x4b\x7a\x63\x31\x4e','\x57\x4f\x31\x58\x57\x52\x37\x63\x4a\x49\x69','\x57\x37\x56\x64\x55\x43\x6b\x30\x7a\x77\x37\x63\x55\x74\x2f\x64\x4d\x47','\x72\x53\x6b\x6a\x57\x4f\x66\x6e\x57\x4f\x78\x64\x4f\x63\x2f\x64\x55\x71','\x57\x35\x33\x64\x4f\x53\x6b\x6e\x41\x71','\x6d\x74\x66\x46\x44\x76\x72\x49\x57\x4f\x68\x64\x52\x57','\x78\x78\x35\x32\x57\x52\x6e\x31\x57\x37\x31\x72\x57\x34\x38','\x45\x6d\x6f\x61\x61\x63\x2f\x64\x51\x65\x70\x63\x4c\x38\x6f\x47','\x57\x36\x2f\x64\x4b\x76\x68\x63\x56\x53\x6b\x74','\x67\x6d\x6b\x39\x57\x51\x53\x6a\x57\x34\x78\x63\x48\x61','\x57\x51\x7a\x50\x57\x51\x38','\x6d\x53\x6b\x65\x57\x36\x42\x63\x47\x53\x6f\x38\x66\x53\x6f\x68\x57\x51\x34','\x57\x52\x31\x30\x57\x52\x68\x63\x54\x49\x4f','\x65\x47\x4a\x63\x4f\x74\x33\x64\x48\x38\x6b\x39\x57\x35\x33\x64\x4b\x47','\x57\x4f\x75\x33\x72\x38\x6f\x30\x42\x72\x50\x4a\x69\x47','\x57\x36\x33\x64\x50\x53\x6b\x30\x73\x66\x33\x63\x53\x64\x78\x64\x49\x57','\x64\x4e\x4a\x63\x4b\x38\x6f\x33\x57\x37\x6c\x63\x47\x43\x6f\x78\x43\x71','\x57\x37\x50\x69\x57\x36\x37\x63\x53\x76\x79','\x57\x52\x76\x2b\x57\x52\x69','\x57\x35\x68\x64\x47\x59\x65\x4e\x57\x52\x64\x64\x48\x6d\x6b\x43\x57\x36\x47','\x44\x64\x75\x59\x78\x6d\x6b\x4d','\x57\x37\x6e\x76\x57\x36\x69\x57\x6a\x71','\x57\x50\x57\x52\x71\x38\x6f\x52\x72\x47','\x46\x38\x6b\x44\x67\x74\x52\x64\x4f\x66\x6c\x63\x49\x53\x6f\x43','\x57\x36\x75\x4f\x57\x36\x64\x63\x4c\x31\x69','\x72\x6d\x6f\x51\x57\x4f\x79\x39\x57\x35\x42\x63\x4c\x43\x6f\x55\x57\x37\x79','\x44\x43\x6f\x46\x57\x51\x6c\x64\x4e\x53\x6b\x72\x73\x53\x6f\x65\x57\x51\x5a\x64\x51\x77\x44\x49\x72\x47','\x57\x4f\x6d\x41\x57\x52\x52\x64\x51\x47','\x57\x34\x4a\x64\x50\x4c\x68\x63\x53\x6d\x6b\x69\x63\x77\x4e\x63\x52\x47','\x45\x53\x6b\x77\x70\x43\x6b\x47\x43\x65\x53\x4e','\x57\x35\x56\x63\x55\x63\x4a\x63\x47\x58\x79\x6c\x6d\x71\x47','\x7a\x43\x6f\x62\x67\x4a\x33\x64\x51\x4e\x4e\x63\x48\x6d\x6f\x74','\x66\x53\x6b\x5a\x57\x51\x47\x79\x57\x35\x38','\x57\x36\x76\x2b\x57\x34\x53','\x6b\x6d\x6b\x2b\x57\x51\x43\x79\x57\x34\x70\x63\x47\x53\x6f\x76\x57\x36\x53','\x57\x4f\x7a\x37\x57\x4f\x2f\x64\x47\x6d\x6b\x34\x68\x4e\x62\x4a','\x57\x34\x50\x4d\x57\x35\x72\x75\x65\x64\x54\x79\x43\x47','\x57\x35\x39\x33\x57\x34\x6d\x74\x67\x73\x61','\x57\x52\x52\x63\x55\x67\x56\x64\x52\x73\x48\x35\x57\x34\x53','\x57\x36\x68\x64\x4d\x5a\x47\x56\x57\x51\x52\x64\x52\x38\x6b\x42\x57\x36\x38','\x75\x63\x52\x63\x4c\x43\x6f\x48\x57\x37\x6c\x63\x52\x43\x6f\x75\x45\x71','\x57\x50\x69\x6e\x57\x4f\x76\x4f\x67\x47','\x6e\x5a\x71\x73\x57\x35\x39\x6e\x65\x43\x6b\x51\x57\x35\x30','\x62\x4d\x33\x64\x56\x31\x64\x64\x53\x43\x6b\x35\x57\x51\x4a\x64\x55\x47','\x57\x36\x68\x64\x55\x53\x6b\x4c\x46\x4c\x5a\x63\x54\x49\x64\x64\x4e\x47','\x57\x34\x44\x35\x57\x35\x79\x52\x67\x73\x7a\x6a\x46\x61','\x57\x51\x2f\x63\x50\x32\x53','\x57\x50\x37\x64\x4e\x61\x6e\x74\x42\x61','\x6d\x76\x34\x5a\x57\x4f\x6c\x63\x55\x68\x4b\x67\x63\x71','\x57\x37\x69\x41\x57\x36\x74\x63\x50\x4e\x52\x63\x48\x53\x6b\x46\x57\x50\x79','\x57\x52\x62\x2b\x57\x51\x56\x64\x52\x6d\x6f\x73\x63\x43\x6b\x4e\x67\x71','\x42\x43\x6b\x51\x6a\x61\x68\x64\x50\x75\x4f\x31\x67\x71','\x57\x50\x31\x36\x57\x52\x48\x38\x57\x34\x4b','\x57\x36\x76\x2b\x57\x36\x52\x63\x4c\x33\x6e\x74\x78\x4d\x53','\x6a\x43\x6b\x76\x57\x36\x78\x63\x4a\x6d\x6f\x61\x64\x53\x6f\x68\x57\x52\x57','\x67\x62\x6e\x71\x70\x62\x33\x64\x47\x71','\x57\x50\x6c\x63\x52\x38\x6f\x6a\x70\x53\x6b\x45'];_0x217e=function(){return _0x19cb52;};return _0x217e();}function _0x52ccfb({signals:_0xcb95b9,driftEnabled:_0x435e64}){const _0x1e1173=_0x4f3d8d,_0x3ea795={'\x71\x70\x46\x52\x6e':function(_0x125e29,_0x3e8a46){return _0x125e29+_0x3e8a46;},'\x42\x6c\x68\x57\x7a':function(_0x2f1fec,_0x5abfa0){return _0x2f1fec(_0x5abfa0);},'\x72\x4a\x70\x54\x5a':_0x1e1173(0x1f6,'\x57\x36\x5b\x5b'),'\x4f\x6e\x76\x57\x72':_0x1e1173(0x2a3,'\x71\x45\x33\x6c'),'\x6b\x54\x4c\x59\x4e':function(_0xc60c68,_0x528637){return _0xc60c68===_0x528637;},'\x67\x72\x75\x66\x75':_0x1e1173(0x2cd,'\x53\x7a\x7a\x71'),'\x4a\x44\x71\x49\x53':function(_0x24db2b,_0x27143d){return _0x24db2b(_0x27143d);},'\x6b\x59\x57\x52\x57':_0x1e1173(0x2fe,'\x53\x78\x77\x26')+'\x67\x79','\x46\x41\x47\x70\x6c':function(_0x5d1979,_0x176f02){return _0x5d1979>=_0x176f02;},'\x52\x78\x7a\x70\x76':_0x1e1173(0x290,'\x30\x4c\x51\x51')};if(_0x3ea795[_0x1e1173(0x227,'\x30\x4c\x51\x51')](_0xe30215,_0xcb95b9))return _0x1e1173(0x194,'\x78\x36\x28\x59');if(_0x435e64)return _0x3ea795[_0x1e1173(0x259,'\x5a\x33\x26\x65')];if(_0x3ea795[_0x1e1173(0x242,'\x25\x6e\x69\x4b')](_0x552f1d,_0xcb95b9))return _0x1e1173(0x1ed,'\x6d\x59\x77\x41');var _0x550c07=Array[_0x1e1173(0x2d1,'\x59\x52\x5e\x4e')](_0xcb95b9)?_0xcb95b9:[];if(_0x550c07[_0x1e1173(0x1e3,'\x4b\x43\x70\x59')](_0x1e1173(0x2ab,'\x65\x70\x21\x53')+_0x1e1173(0x268,'\x4e\x26\x4e\x40')+_0x1e1173(0x24b,'\x25\x6e\x69\x4b')))return _0x3ea795[_0x1e1173(0x221,'\x70\x7a\x52\x40')];try{if(_0x3ea795[_0x1e1173(0x1f1,'\x5e\x4d\x30\x55')](_0x3ea795[_0x1e1173(0x19f,'\x46\x47\x61\x53')],_0x1e1173(0x1f7,'\x4b\x43\x70\x59'))){var _0x174489=_0x3ea795[_0x1e1173(0x297,'\x25\x75\x70\x43')](require,_0x3ea795[_0x1e1173(0x252,'\x50\x5e\x6c\x58')])[_0x1e1173(0x21b,'\x78\x49\x64\x6c')+_0x1e1173(0x284,'\x4e\x77\x4f\x79')]();if(_0x174489&&_0x3ea795[_0x1e1173(0x279,'\x5b\x76\x47\x46')](typeof _0x174489[_0x1e1173(0x27d,'\x50\x5e\x6c\x58')],_0x1e1173(0x286,'\x57\x36\x5b\x5b'))&&_0x3ea795[_0x1e1173(0x28f,'\x79\x5e\x4e\x26')](_0x174489[_0x1e1173(0x1ea,'\x4e\x77\x4f\x79')],-0x1ae1+-0x99b*-0x2+0x7ab+0.5))return _0x3ea795[_0x1e1173(0x241,'\x73\x4d\x69\x56')];}else return _0x4e7a62[_0x1e1173(0x2c0,'\x42\x70\x52\x44')+'\x74\x68'](VAfKjc['\x71\x70\x46\x52\x6e'](_0x3d6a86,'\x3a'));}catch(_0x433d01){}return _0x3ea795[_0x1e1173(0x19e,'\x46\x47\x61\x53')];}function _0x2a52ee(_0x409800){const _0x474f1a=_0x4f3d8d,_0x492fc6={'\x44\x41\x64\x6c\x5a':function(_0x3ab07b,_0x6ca723){return _0x3ab07b(_0x6ca723);},'\x69\x43\x6c\x4d\x5a':function(_0x53210e,_0x37a864){return _0x53210e===_0x37a864;},'\x67\x76\x4f\x6a\x4b':'\x72\x65\x70\x61\x69\x72','\x62\x52\x57\x4f\x47':'\x72\x65\x64\x75\x63\x65\x20\x72'+_0x474f1a(0x2df,'\x5e\x4d\x30\x55')+_0x474f1a(0x21f,'\x26\x42\x26\x23')+'\x6e\x63\x72\x65\x61\x73\x65\x20'+_0x474f1a(0x237,'\x5b\x76\x47\x46')+'\x79\x2c\x20\x61\x6e\x64\x20\x6c'+_0x474f1a(0x22e,'\x65\x70\x21\x53')+_0x474f1a(0x18d,'\x31\x67\x40\x6d')+'\x65','\x64\x4a\x73\x73\x4d':_0x474f1a(0x1bb,'\x73\x5e\x38\x5e'),'\x6d\x4f\x71\x49\x76':function(_0x1755d9,_0xbc27c9){return _0x1755d9===_0xbc27c9;},'\x4b\x78\x57\x48\x4b':_0x474f1a(0x1d8,'\x5b\x76\x47\x46'),'\x66\x79\x6e\x5a\x46':function(_0x2f2176,_0x2ee3dc){return _0x2f2176===_0x2ee3dc;},'\x41\x71\x69\x6f\x44':_0x474f1a(0x2c8,'\x53\x50\x45\x66')+_0x474f1a(0x27b,'\x68\x6f\x75\x7a')+_0x474f1a(0x26c,'\x6f\x5d\x64\x33')+_0x474f1a(0x1d4,'\x53\x78\x77\x26')+_0x474f1a(0x2c5,'\x23\x2a\x5a\x47')+_0x474f1a(0x1d0,'\x31\x67\x40\x6d')+_0x474f1a(0x1a1,'\x7a\x51\x28\x78')+_0x474f1a(0x20b,'\x78\x36\x28\x59')+_0x474f1a(0x1c2,'\x53\x50\x45\x66')+_0x474f1a(0x271,'\x66\x54\x50\x5a')+_0x474f1a(0x306,'\x4d\x70\x70\x21')+_0x474f1a(0x273,'\x79\x5e\x4e\x26')+_0x474f1a(0x1a3,'\x51\x40\x5b\x69')+'\x73','\x48\x45\x48\x4c\x57':_0x474f1a(0x21d,'\x51\x40\x5b\x69')+_0x474f1a(0x21a,'\x26\x42\x26\x23')+_0x474f1a(0x2e6,'\x4d\x28\x51\x70')+_0x474f1a(0x281,'\x4d\x28\x51\x70')+_0x474f1a(0x1f9,'\x53\x50\x45\x66')+'\x74\x79'},_0x2ebcfe=_0x492fc6[_0x474f1a(0x2c6,'\x79\x5e\x4e\x26')](String,_0x409800||'');if(_0x492fc6[_0x474f1a(0x293,'\x46\x47\x61\x53')](_0x2ebcfe,_0x492fc6[_0x474f1a(0x1af,'\x53\x6d\x21\x65')]))return _0x492fc6[_0x474f1a(0x2e4,'\x25\x6e\x69\x4b')];if(_0x2ebcfe===_0x492fc6[_0x474f1a(0x2ac,'\x78\x36\x28\x59')])return _0x474f1a(0x2b6,'\x70\x56\x5e\x40')+_0x474f1a(0x239,'\x6f\x5d\x64\x33')+_0x474f1a(0x1ec,'\x78\x36\x28\x59')+_0x474f1a(0x2d6,'\x66\x54\x50\x5a')+_0x474f1a(0x18c,'\x4e\x77\x4f\x79')+_0x474f1a(0x1d1,'\x75\x24\x4c\x68')+'\x6f\x6e\x61\x6c\x20\x63\x6f\x73'+'\x74';if(_0x492fc6[_0x474f1a(0x2ca,'\x70\x7a\x52\x40')](_0x2ebcfe,_0x492fc6[_0x474f1a(0x1eb,'\x59\x52\x5e\x4e')]))return _0x474f1a(0x1dc,'\x46\x47\x61\x53')+_0x474f1a(0x1e1,'\x4e\x26\x4e\x40')+_0x474f1a(0x1f4,'\x4d\x70\x70\x21')+_0x474f1a(0x208,'\x53\x78\x77\x26')+_0x474f1a(0x198,'\x46\x47\x61\x53')+_0x474f1a(0x265,'\x25\x75\x70\x43')+_0x474f1a(0x1b0,'\x78\x36\x28\x59')+'\x6d';if(_0x492fc6[_0x474f1a(0x2f5,'\x79\x5e\x4e\x26')](_0x2ebcfe,_0x474f1a(0x2b5,'\x5e\x4d\x30\x55')))return _0x492fc6[_0x474f1a(0x1bc,'\x4d\x28\x51\x70')];return _0x492fc6[_0x474f1a(0x1b8,'\x4e\x77\x4f\x79')];}function _0x582378(_0x592a85){const _0x3c5527=_0x4f3d8d;if(_0x592a85&&_0x592a85['\x69\x64'])return _0x3c5527(0x1bd,'\x46\x47\x61\x53')+String(_0x592a85['\x69\x64']);return _0x3c5527(0x28a,'\x53\x7a\x7a\x71')+_0x3c5527(0x2ec,'\x42\x70\x52\x44')+'\x6c';}function _0xa20461(_0x2a77d9){const _0x516749=_0x4f3d8d,_0x4226fe={'\x52\x4b\x57\x63\x45':function(_0x4a35e8,_0x3f0f44){return _0x4a35e8(_0x3f0f44);},'\x72\x64\x78\x4e\x6f':function(_0x5418ef,_0x1427cf){return _0x5418ef<_0x1427cf;},'\x6b\x67\x50\x6b\x57':function(_0x6b63c7,_0x33b340){return _0x6b63c7!=_0x33b340;},'\x6b\x75\x77\x74\x74':function(_0x416311,_0xbdf0f8){return _0x416311>_0xbdf0f8;}},_0xcb0c6d=_0x2a77d9&&Number[_0x516749(0x1ad,'\x4e\x26\x4e\x40')](_0x4226fe['\x52\x4b\x57\x63\x45'](Number,_0x2a77d9[_0x516749(0x207,'\x78\x36\x28\x59')]))?_0x4226fe[_0x516749(0x229,'\x70\x7a\x52\x40')](Number,_0x2a77d9[_0x516749(0x24d,'\x25\x6e\x69\x4b')]):null,_0xe69c68=_0x2a77d9&&Number[_0x516749(0x2ed,'\x68\x33\x78\x79')](Number(_0x2a77d9[_0x516749(0x30e,'\x5e\x4d\x30\x55')+_0x516749(0x2a1,'\x40\x5d\x30\x69')]))?_0x4226fe[_0x516749(0x190,'\x53\x78\x77\x26')](Number,_0x2a77d9[_0x516749(0x31b,'\x26\x42\x26\x23')+_0x516749(0x2a9,'\x4d\x70\x70\x21')]):null;if(_0xcb0c6d!=null&&_0x4226fe[_0x516749(0x2b2,'\x53\x74\x4d\x4b')](_0xcb0c6d,0x1*-0x3fb+0x1*0x179f+-0x13a4+0.5))return!![];if(_0x4226fe[_0x516749(0x20e,'\x4e\x26\x4e\x40')](_0xe69c68,null)&&_0x4226fe[_0x516749(0x257,'\x71\x45\x33\x6c')](_0xe69c68,0x12e*0x7+0x704+-0xf46+0.6))return!![];return![];}function _0x4f8934(_0x618415){const _0xa7b6f7=_0x4f3d8d,_0x46c490={'\x75\x4a\x47\x4a\x63':function(_0x11ea75,_0x41acbb){return _0x11ea75(_0x41acbb);},'\x7a\x54\x56\x4c\x46':function(_0x31618c,_0x3e842f){return _0x31618c(_0x3e842f);},'\x75\x6b\x47\x4a\x5a':function(_0x3eb0f1,_0x5d01b2){return _0x3eb0f1>=_0x5d01b2;}},_0x503d13=_0x618415&&Number[_0xa7b6f7(0x2a6,'\x25\x75\x70\x43')](_0x46c490[_0xa7b6f7(0x292,'\x51\x40\x5b\x69')](Number,_0x618415[_0xa7b6f7(0x21e,'\x53\x74\x4d\x4b')]))?_0x46c490[_0xa7b6f7(0x1b5,'\x6f\x4a\x76\x61')](Number,_0x618415[_0xa7b6f7(0x255,'\x6d\x59\x77\x41')]):0x3f6+-0x269b*-0x1+-0x281*0x11,_0x5eb3ae=_0x618415&&Number[_0xa7b6f7(0x25d,'\x40\x5d\x30\x69')](_0x46c490[_0xa7b6f7(0x1d2,'\x75\x24\x4c\x68')](Number,_0x618415[_0xa7b6f7(0x2b0,'\x53\x6d\x21\x65')+'\x65\x72\x61\x6e\x63\x65']))?Number(_0x618415['\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+_0xa7b6f7(0x27f,'\x70\x56\x5e\x40')]):0x1017+0xc20+-0x1c36;return _0x46c490[_0xa7b6f7(0x2ad,'\x4a\x4d\x2a\x63')](_0x503d13,-0xb*-0xf9+0xb76+0x1629*-0x1+0.6)&&_0x5eb3ae<=-0xd*0x1fa+-0x2*-0x749+0xb20+0.5;}function _0x3888e3({signals:_0x4606d1,selectedGene:_0x53ee47,driftEnabled:_0x553b1c,personalityState:_0x45e21b,allowHighRisk:allowHighRisk=![],target:_0x228d6f,expected_effect:_0x392fd4}={}){const _0x4fdd81=_0x4f3d8d,_0x5af26e={'\x64\x61\x69\x61\x52':function(_0x1e855b,_0x2c9d46){return _0x1e855b(_0x2c9d46);},'\x4e\x6b\x66\x64\x73':'\x4d\x75\x74\x61\x74\x69\x6f\x6e','\x72\x6c\x68\x53\x6d':function(_0x4a1bc4,_0x410ef8){return _0x4a1bc4(_0x410ef8);},'\x55\x59\x4e\x71\x53':function(_0x3c9050,_0xdb78a3){return _0x3c9050(_0xdb78a3);},'\x5a\x72\x72\x70\x43':_0x4fdd81(0x253,'\x79\x5e\x4e\x26'),'\x61\x69\x78\x61\x4a':function(_0x37070e,_0x1103fd){return _0x37070e===_0x1103fd;},'\x65\x71\x6e\x46\x6b':'\x69\x6e\x6e\x6f\x76\x61\x74\x65','\x55\x44\x44\x6f\x6d':function(_0x1d7a42,_0x3a9681){return _0x1d7a42===_0x3a9681;},'\x41\x57\x51\x59\x6e':'\x68\x69\x67\x68','\x57\x54\x58\x64\x70':function(_0xf602b1,_0x294e76){return _0xf602b1||_0x294e76;},'\x58\x55\x41\x59\x73':'\x6f\x70\x74\x69\x6d\x69\x7a\x65','\x71\x67\x50\x74\x4a':function(_0x7b814a,_0x31ba56){return _0x7b814a(_0x31ba56);},'\x6c\x57\x4e\x6b\x4a':_0x4fdd81(0x1a4,'\x70\x56\x5e\x40')+'\x76\x6f\x69\x64\x5f\x69\x6e\x6e'+_0x4fdd81(0x2f6,'\x46\x47\x61\x53')+_0x4fdd81(0x2cb,'\x73\x5e\x38\x5e')+_0x4fdd81(0x1cd,'\x5a\x33\x26\x65')+_0x4fdd81(0x1da,'\x23\x2a\x5a\x47'),'\x4e\x6d\x72\x78\x50':function(_0x2025db,_0x7cd03d){return _0x2025db===_0x7cd03d;},'\x50\x44\x6c\x75\x4e':function(_0x225995,_0x3faf86){return _0x225995(_0x3faf86);},'\x4c\x4f\x76\x53\x42':_0x4fdd81(0x2aa,'\x73\x5e\x38\x5e')+'\x6f\x77\x6e\x67\x72\x61\x64\x65'+_0x4fdd81(0x254,'\x4e\x26\x4e\x40')+'\x73\x6b'},_0x202ad5=_0x4d70c7(),_0x1e220f={};_0x1e220f[_0x4fdd81(0x2c4,'\x2a\x6e\x30\x4a')]=_0x4606d1,_0x1e220f[_0x4fdd81(0x269,'\x5e\x5a\x47\x77')+_0x4fdd81(0x228,'\x68\x33\x78\x79')]=!!_0x553b1c;const _0x12879e=_0x52ccfb(_0x1e220f),_0x319008=_0x5af26e[_0x4fdd81(0x2e5,'\x30\x4c\x51\x51')](_0x2e2ca3,_0x4606d1),_0x2c17ae={'\x74\x79\x70\x65':_0x5af26e[_0x4fdd81(0x1d9,'\x5e\x4d\x30\x55')],'\x69\x64':_0x4fdd81(0x210,'\x4a\x4d\x2a\x63')+_0x202ad5,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x12879e,'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x319008,'\x74\x61\x72\x67\x65\x74':_0x5af26e[_0x4fdd81(0x2ce,'\x5a\x33\x26\x65')](String,_0x228d6f||_0x5af26e[_0x4fdd81(0x1b4,'\x4d\x28\x51\x70')](_0x582378,_0x53ee47)),'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':String(_0x392fd4||_0x5af26e[_0x4fdd81(0x1c5,'\x59\x52\x5e\x4e')](_0x2a52ee,_0x12879e)),'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x5af26e[_0x4fdd81(0x1cb,'\x5e\x5a\x47\x77')]};if(_0x5af26e[_0x4fdd81(0x2da,'\x4d\x28\x51\x70')](_0x12879e,_0x5af26e['\x65\x71\x6e\x46\x6b']))_0x2c17ae[_0x4fdd81(0x1f3,'\x26\x42\x26\x23')+'\x65\x6c']='\x6d\x65\x64\x69\x75\x6d';allowHighRisk&&_0x5af26e[_0x4fdd81(0x305,'\x4d\x70\x70\x21')](_0x12879e,_0x5af26e[_0x4fdd81(0x204,'\x73\x5e\x38\x5e')])&&(_0x2c17ae[_0x4fdd81(0x1f3,'\x26\x42\x26\x23')+'\x65\x6c']=_0x5af26e['\x41\x57\x51\x59\x6e']);const _0x195d1d=_0x5af26e[_0x4fdd81(0x2b8,'\x71\x45\x33\x6c')](_0xa20461,_0x5af26e['\x57\x54\x58\x64\x70'](_0x45e21b,null));return _0x5af26e[_0x4fdd81(0x22b,'\x34\x70\x4b\x53')](_0x2c17ae[_0x4fdd81(0x244,'\x7a\x51\x28\x78')],'\x69\x6e\x6e\x6f\x76\x61\x74\x65')&&_0x195d1d&&(_0x2c17ae[_0x4fdd81(0x2ea,'\x30\x4c\x51\x51')]=_0x5af26e[_0x4fdd81(0x238,'\x4b\x43\x70\x59')],_0x2c17ae['\x65\x78\x70\x65\x63\x74\x65\x64'+_0x4fdd81(0x22a,'\x26\x42\x26\x23')]=_0x4fdd81(0x215,'\x40\x5d\x30\x69')+_0x4fdd81(0x1e6,'\x51\x40\x5b\x69')+_0x4fdd81(0x251,'\x5e\x5a\x47\x77')+_0x4fdd81(0x2ee,'\x23\x2a\x5a\x47')+_0x4fdd81(0x2dd,'\x2a\x6e\x30\x4a')+_0x4fdd81(0x2de,'\x2a\x6e\x30\x4a')+_0x4fdd81(0x2d7,'\x42\x70\x52\x44')+_0x4fdd81(0x1c4,'\x53\x78\x77\x26')+_0x4fdd81(0x203,'\x34\x70\x4b\x53')+_0x4fdd81(0x236,'\x7a\x51\x28\x78')+_0x4fdd81(0x2a4,'\x68\x6f\x75\x7a'),_0x2c17ae[_0x4fdd81(0x2bc,'\x66\x54\x50\x5a')+'\x65\x6c']=_0x5af26e[_0x4fdd81(0x2b9,'\x78\x36\x28\x59')],_0x2c17ae[_0x4fdd81(0x2e7,'\x5e\x4d\x30\x55')+_0x4fdd81(0x19b,'\x68\x33\x78\x79')]=_0x5af26e['\x71\x67\x50\x74\x4a'](_0x2e2ca3,[..._0x2c17ae[_0x4fdd81(0x246,'\x2a\x6e\x30\x4a')+_0x4fdd81(0x29f,'\x5a\x33\x26\x65')]||[],_0x5af26e[_0x4fdd81(0x2e3,'\x73\x4d\x69\x56')]])),_0x5af26e[_0x4fdd81(0x1a5,'\x5a\x33\x26\x65')](_0x2c17ae[_0x4fdd81(0x23b,'\x31\x67\x40\x6d')+'\x65\x6c'],_0x4fdd81(0x202,'\x73\x5e\x38\x5e'))&&!_0x5af26e[_0x4fdd81(0x26a,'\x34\x70\x4b\x53')](_0x4f8934,_0x5af26e['\x57\x54\x58\x64\x70'](_0x45e21b,null))&&(_0x2c17ae[_0x4fdd81(0x301,'\x75\x24\x4c\x68')+'\x65\x6c']=_0x4fdd81(0x312,'\x51\x40\x5b\x69'),_0x2c17ae[_0x4fdd81(0x24e,'\x68\x33\x78\x79')+_0x4fdd81(0x296,'\x71\x2a\x26\x54')]=_0x5af26e[_0x4fdd81(0x18a,'\x42\x70\x52\x44')](_0x2e2ca3,[..._0x2c17ae[_0x4fdd81(0x248,'\x30\x4c\x51\x51')+_0x4fdd81(0x2bb,'\x70\x56\x5e\x40')]||[],_0x5af26e[_0x4fdd81(0x2b4,'\x71\x2a\x26\x54')]])),_0x2c17ae;}function _0x5a2c3b(_0x3f16fd){const _0x159337=_0x4f3d8d,_0x759a91={'\x56\x44\x61\x68\x61':_0x159337(0x247,'\x53\x6d\x21\x65')+_0x159337(0x1a9,'\x53\x74\x4d\x4b')+'\x32','\x45\x49\x6a\x49\x4b':function(_0x2f7ee4,_0xb35392){return _0x2f7ee4(_0xb35392);},'\x44\x68\x78\x74\x73':function(_0x580b49,_0x3840fc){return _0x580b49!==_0x3840fc;},'\x69\x70\x52\x4e\x56':_0x159337(0x24a,'\x68\x6f\x75\x7a'),'\x42\x74\x6b\x7a\x58':function(_0x5edd32,_0x807894){return _0x5edd32!==_0x807894;},'\x4a\x48\x6b\x77\x4c':'\x73\x74\x72\x69\x6e\x67','\x76\x6b\x56\x74\x67':function(_0x4a5765,_0x28f462){return _0x4a5765!==_0x28f462;}},_0x34e046=_0x759a91['\x56\x44\x61\x68\x61']['\x73\x70\x6c\x69\x74']('\x7c');let _0x263d75=0x1e35+-0x2491+0x4*0x197;while(!![]){switch(_0x34e046[_0x263d75++]){case'\x30':if(!_0x3f16fd[_0x159337(0x24c,'\x53\x7a\x7a\x71')+'\x65\x6c']||!_0x34c55e[_0x159337(0x264,'\x4d\x70\x70\x21')](_0x759a91[_0x159337(0x1b2,'\x78\x36\x28\x59')](String,_0x3f16fd['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c'])))return![];continue;case'\x31':if(!_0x3f16fd||_0x759a91[_0x159337(0x1c8,'\x65\x70\x21\x53')](typeof _0x3f16fd,_0x759a91[_0x159337(0x23d,'\x79\x5e\x4e\x26')]))return![];continue;case'\x32':return!![];case'\x33':if(!_0x3f16fd['\x69\x64']||_0x759a91[_0x159337(0x2f4,'\x4d\x70\x70\x21')](typeof _0x3f16fd['\x69\x64'],_0x759a91['\x4a\x48\x6b\x77\x4c']))return![];continue;case'\x34':if(!_0x3f16fd['\x65\x78\x70\x65\x63\x74\x65\x64'+_0x159337(0x2fc,'\x46\x47\x61\x53')]||typeof _0x3f16fd[_0x159337(0x277,'\x53\x7a\x7a\x71')+_0x159337(0x220,'\x4d\x70\x70\x21')]!==_0x759a91['\x4a\x48\x6b\x77\x4c'])return![];continue;case'\x35':if(_0x759a91[_0x159337(0x275,'\x42\x70\x52\x44')](_0x3f16fd[_0x159337(0x25c,'\x46\x47\x61\x53')],_0x159337(0x2cf,'\x46\x47\x61\x53')))return![];continue;case'\x36':if(!Array[_0x159337(0x222,'\x4e\x4f\x62\x76')](_0x3f16fd[_0x159337(0x285,'\x4e\x4f\x62\x76')+_0x159337(0x2d0,'\x4d\x70\x70\x21')]))return![];continue;case'\x37':if(!_0x3f16fd[_0x159337(0x266,'\x25\x75\x70\x43')]||_0x759a91[_0x159337(0x225,'\x78\x36\x28\x59')](typeof _0x3f16fd[_0x159337(0x316,'\x6f\x5d\x64\x33')],_0x759a91['\x4a\x48\x6b\x77\x4c']))return![];continue;case'\x38':if(!_0x3f16fd[_0x159337(0x2fd,'\x53\x74\x4d\x4b')]||!_0x549664[_0x159337(0x1e4,'\x53\x7a\x7a\x71')](_0x759a91[_0x159337(0x2f8,'\x71\x2a\x26\x54')](String,_0x3f16fd[_0x159337(0x2a8,'\x70\x7a\x52\x40')])))return![];continue;}break;}}function _0x250a4d(_0x44531c){const _0x36ad72=_0x4f3d8d,_0x1bfd94={'\x6a\x4d\x54\x64\x55':function(_0x1bec8d,_0x2b69c4){return _0x1bec8d===_0x2b69c4;},'\x69\x43\x41\x79\x62':_0x36ad72(0x20c,'\x50\x5e\x6c\x58'),'\x74\x53\x6e\x7a\x68':_0x36ad72(0x2f9,'\x75\x24\x4c\x68'),'\x61\x53\x4f\x77\x79':_0x36ad72(0x1c9,'\x5e\x4d\x30\x55'),'\x71\x5a\x54\x4b\x57':_0x36ad72(0x26d,'\x5e\x4d\x30\x55'),'\x63\x51\x65\x49\x56':function(_0x39dcee,_0x4c50ab){return _0x39dcee(_0x4c50ab);},'\x42\x79\x56\x65\x55':function(_0x23a6c4,_0x1bf567){return _0x23a6c4(_0x1bf567);}},_0x188755=_0x44531c&&_0x1bfd94[_0x36ad72(0x2ae,'\x4e\x26\x4e\x40')](typeof _0x44531c,_0x1bfd94[_0x36ad72(0x29b,'\x40\x5d\x30\x69')])?_0x44531c:{},_0x38c99f={'\x74\x79\x70\x65':_0x1bfd94[_0x36ad72(0x282,'\x75\x24\x4c\x68')],'\x69\x64':typeof _0x188755['\x69\x64']===_0x1bfd94[_0x36ad72(0x307,'\x4b\x43\x70\x59')]?_0x188755['\x69\x64']:_0x36ad72(0x313,'\x71\x45\x33\x6c')+_0x4d70c7(),'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x549664[_0x36ad72(0x2cc,'\x53\x6d\x21\x65')](String(_0x188755['\x63\x61\x74\x65\x67\x6f\x72\x79']))?String(_0x188755[_0x36ad72(0x2be,'\x5a\x33\x26\x65')]):_0x1bfd94[_0x36ad72(0x191,'\x65\x70\x21\x53')],'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x1bfd94[_0x36ad72(0x310,'\x6f\x5d\x64\x33')](_0x2e2ca3,_0x188755[_0x36ad72(0x309,'\x46\x47\x61\x53')+_0x36ad72(0x29f,'\x5a\x33\x26\x65')]),'\x74\x61\x72\x67\x65\x74':typeof _0x188755['\x74\x61\x72\x67\x65\x74']===_0x1bfd94['\x61\x53\x4f\x77\x79']?_0x188755[_0x36ad72(0x240,'\x5b\x76\x47\x46')]:_0x36ad72(0x23c,'\x31\x67\x40\x6d')+_0x36ad72(0x19a,'\x53\x78\x77\x26')+'\x6c','\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x1bfd94[_0x36ad72(0x27a,'\x2a\x6e\x30\x4a')](typeof _0x188755['\x65\x78\x70\x65\x63\x74\x65\x64'+_0x36ad72(0x315,'\x68\x6f\x75\x7a')],_0x1bfd94[_0x36ad72(0x2d2,'\x70\x56\x5e\x40')])?_0x188755[_0x36ad72(0x1be,'\x46\x47\x61\x53')+_0x36ad72(0x289,'\x53\x6d\x21\x65')]:_0x2a52ee(_0x188755['\x63\x61\x74\x65\x67\x6f\x72\x79']),'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x34c55e[_0x36ad72(0x1f0,'\x73\x4d\x69\x56')](_0x1bfd94['\x63\x51\x65\x49\x56'](String,_0x188755[_0x36ad72(0x2eb,'\x4e\x4f\x62\x76')+'\x65\x6c']))?_0x1bfd94[_0x36ad72(0x288,'\x59\x52\x5e\x4e')](String,_0x188755[_0x36ad72(0x24f,'\x71\x45\x33\x6c')+'\x65\x6c']):_0x36ad72(0x1e2,'\x78\x49\x64\x6c')};return _0x38c99f;}const _0x2a35b2={};_0x2a35b2[_0x4f3d8d(0x25e,'\x4e\x4f\x62\x76')]=_0x3334af,_0x2a35b2[_0x4f3d8d(0x234,'\x31\x67\x40\x6d')+_0x4f3d8d(0x299,'\x46\x47\x61\x53')]=_0x3888e3,_0x2a35b2['\x69\x73\x56\x61\x6c\x69\x64\x4d'+_0x4f3d8d(0x1cc,'\x66\x54\x50\x5a')]=_0x5a2c3b,_0x2a35b2[_0x4f3d8d(0x30f,'\x50\x5e\x6c\x58')+_0x4f3d8d(0x22f,'\x59\x52\x5e\x4e')+'\x6e']=_0x250a4d,_0x2a35b2[_0x4f3d8d(0x223,'\x4d\x28\x51\x70')+_0x4f3d8d(0x29d,'\x5e\x4d\x30\x55')+_0x4f3d8d(0x23e,'\x40\x5d\x30\x69')+'\x64']=_0x4f8934,_0x2a35b2[_0x4f3d8d(0x1e5,'\x42\x70\x52\x44')+_0x4f3d8d(0x2c2,'\x6f\x5d\x64\x33')+_0x4f3d8d(0x261,'\x68\x6f\x75\x7a')]=_0xa20461,_0x2a35b2[_0x4f3d8d(0x2f3,'\x34\x70\x4b\x53')+_0x4f3d8d(0x21c,'\x66\x54\x50\x5a')+_0x4f3d8d(0x287,'\x4d\x70\x70\x21')]=_0x552f1d,module[_0x4f3d8d(0x23a,'\x6f\x5d\x64\x33')]=_0x2a35b2;
|
|
@@ -1,108 +1 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
const fs = require('fs');
|
|
4
|
-
const path = require('path');
|
|
5
|
-
const { getNarrativePath, getEvolutionDir } = require('./paths');
|
|
6
|
-
|
|
7
|
-
const MAX_NARRATIVE_ENTRIES = 30;
|
|
8
|
-
const MAX_NARRATIVE_SIZE = 12000;
|
|
9
|
-
|
|
10
|
-
function ensureDir(dir) {
|
|
11
|
-
try { if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true }); } catch (_) {}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
function recordNarrative({ gene, signals, mutation, outcome, blast, capsule }) {
|
|
15
|
-
const narrativePath = getNarrativePath();
|
|
16
|
-
ensureDir(path.dirname(narrativePath));
|
|
17
|
-
|
|
18
|
-
const ts = new Date().toISOString().replace('T', ' ').slice(0, 19);
|
|
19
|
-
const geneId = gene && gene.id ? gene.id : '(auto)';
|
|
20
|
-
const category = (mutation && mutation.category) || (gene && gene.category) || 'unknown';
|
|
21
|
-
const status = outcome && outcome.status ? outcome.status : 'unknown';
|
|
22
|
-
const score = outcome && typeof outcome.score === 'number' ? outcome.score.toFixed(2) : '?';
|
|
23
|
-
const signalsSummary = Array.isArray(signals) ? signals.slice(0, 4).join(', ') : '(none)';
|
|
24
|
-
const filesChanged = blast ? blast.files : 0;
|
|
25
|
-
const linesChanged = blast ? blast.lines : 0;
|
|
26
|
-
const rationale = mutation && mutation.rationale
|
|
27
|
-
? String(mutation.rationale).slice(0, 200) : '';
|
|
28
|
-
const strategy = gene && Array.isArray(gene.strategy)
|
|
29
|
-
? gene.strategy.slice(0, 3).map((s, i) => ` ${i + 1}. ${s}`).join('\n') : '';
|
|
30
|
-
const capsuleSummary = capsule && capsule.summary ? String(capsule.summary).slice(0, 200) : '';
|
|
31
|
-
|
|
32
|
-
const entry = [
|
|
33
|
-
`### [${ts}] ${category.toUpperCase()} - ${status}`,
|
|
34
|
-
`- Gene: ${geneId} | Score: ${score} | Scope: ${filesChanged} files, ${linesChanged} lines`,
|
|
35
|
-
`- Signals: [${signalsSummary}]`,
|
|
36
|
-
rationale ? `- Why: ${rationale}` : null,
|
|
37
|
-
strategy ? `- Strategy:\n${strategy}` : null,
|
|
38
|
-
capsuleSummary ? `- Result: ${capsuleSummary}` : null,
|
|
39
|
-
'',
|
|
40
|
-
].filter(line => line !== null).join('\n');
|
|
41
|
-
|
|
42
|
-
let existing = '';
|
|
43
|
-
try {
|
|
44
|
-
if (fs.existsSync(narrativePath)) {
|
|
45
|
-
existing = fs.readFileSync(narrativePath, 'utf8');
|
|
46
|
-
}
|
|
47
|
-
} catch (_) {}
|
|
48
|
-
|
|
49
|
-
if (!existing.trim()) {
|
|
50
|
-
existing = '# Evolution Narrative\n\nA chronological record of evolution decisions and outcomes.\n\n';
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
const combined = existing + entry;
|
|
54
|
-
const trimmed = trimNarrative(combined);
|
|
55
|
-
|
|
56
|
-
const tmp = narrativePath + '.tmp';
|
|
57
|
-
fs.writeFileSync(tmp, trimmed, 'utf8');
|
|
58
|
-
fs.renameSync(tmp, narrativePath);
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
function trimNarrative(content) {
|
|
62
|
-
if (content.length <= MAX_NARRATIVE_SIZE) return content;
|
|
63
|
-
|
|
64
|
-
const headerEnd = content.indexOf('###');
|
|
65
|
-
if (headerEnd < 0) return content.slice(-MAX_NARRATIVE_SIZE);
|
|
66
|
-
|
|
67
|
-
const header = content.slice(0, headerEnd);
|
|
68
|
-
const entries = content.slice(headerEnd).split(/(?=^### \[)/m);
|
|
69
|
-
|
|
70
|
-
while (entries.length > MAX_NARRATIVE_ENTRIES) {
|
|
71
|
-
entries.shift();
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
let result = header + entries.join('');
|
|
75
|
-
if (result.length > MAX_NARRATIVE_SIZE) {
|
|
76
|
-
const keep = Math.max(1, entries.length - 5);
|
|
77
|
-
result = header + entries.slice(-keep).join('');
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
return result;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
function loadNarrativeSummary(maxChars) {
|
|
84
|
-
const limit = Number.isFinite(maxChars) ? maxChars : 4000;
|
|
85
|
-
const narrativePath = getNarrativePath();
|
|
86
|
-
try {
|
|
87
|
-
if (!fs.existsSync(narrativePath)) return '';
|
|
88
|
-
const content = fs.readFileSync(narrativePath, 'utf8');
|
|
89
|
-
if (!content.trim()) return '';
|
|
90
|
-
|
|
91
|
-
const headerEnd = content.indexOf('###');
|
|
92
|
-
if (headerEnd < 0) return '';
|
|
93
|
-
|
|
94
|
-
const entries = content.slice(headerEnd).split(/(?=^### \[)/m);
|
|
95
|
-
const recent = entries.slice(-8);
|
|
96
|
-
let summary = recent.join('');
|
|
97
|
-
if (summary.length > limit) {
|
|
98
|
-
summary = summary.slice(-limit);
|
|
99
|
-
const firstEntry = summary.indexOf('### [');
|
|
100
|
-
if (firstEntry > 0) summary = summary.slice(firstEntry);
|
|
101
|
-
}
|
|
102
|
-
return summary.trim();
|
|
103
|
-
} catch (_) {
|
|
104
|
-
return '';
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
module.exports = { recordNarrative, loadNarrativeSummary, trimNarrative };
|
|
1
|
+
const _0x3c381f=_0x1119;(function(_0x134ab3,_0x3ad513){const _0x2eb8fb=_0x1119,_0x4197da=_0x134ab3();while(!![]){try{const _0x4ed6e8=parseInt(_0x2eb8fb(0x268,'\x62\x61\x23\x73'))/(-0x14*0x14b+0x26d*-0x3+0x6*0x586)+parseInt(_0x2eb8fb(0x2a3,'\x52\x21\x54\x57'))/(0x94f+0x3*0xc8+-0xba5)*(parseInt(_0x2eb8fb(0x22d,'\x58\x21\x38\x75'))/(-0x325*-0xa+-0x571*0x7+0x6a8))+-parseInt(_0x2eb8fb(0x2af,'\x59\x74\x4f\x41'))/(-0x1*-0x4e5+-0x113c+0x1*0xc5b)*(-parseInt(_0x2eb8fb(0x2bf,'\x52\x21\x54\x57'))/(0x1a19+0x1de6+-0x37fa))+parseInt(_0x2eb8fb(0x201,'\x36\x61\x36\x66'))/(-0x1453+-0x996+0x1def*0x1)+parseInt(_0x2eb8fb(0x1e8,'\x59\x74\x4f\x41'))/(0x10ab+-0x17d7*-0x1+0xf1*-0x2b)*(parseInt(_0x2eb8fb(0x2d1,'\x59\x74\x4f\x41'))/(0x629*-0x3+0x1*-0x2603+0x1c43*0x2))+parseInt(_0x2eb8fb(0x238,'\x2a\x34\x75\x26'))/(-0x1eb*-0x13+0x5*0x4e8+-0xc8*0x4e)*(-parseInt(_0x2eb8fb(0x253,'\x71\x7a\x4a\x51'))/(-0x371+-0x1c5b+0x1fd6))+-parseInt(_0x2eb8fb(0x26c,'\x2a\x6f\x37\x72'))/(0xd43+-0x3*-0x4bb+0x3*-0x923);if(_0x4ed6e8===_0x3ad513)break;else _0x4197da['push'](_0x4197da['shift']());}catch(_0xe4fb29){_0x4197da['push'](_0x4197da['shift']());}}}(_0x194a,-0x15f5*-0x43+-0x3ff*0x17f+0x3411c));function _0x194a(){const _0x2535b0=['\x57\x4f\x2f\x63\x53\x43\x6f\x57\x63\x53\x6f\x52','\x57\x36\x4a\x64\x54\x32\x31\x6e\x57\x37\x4b','\x57\x52\x5a\x64\x56\x6d\x6f\x4f\x43\x6d\x6f\x67\x57\x4f\x33\x63\x48\x4a\x68\x64\x47\x63\x4b\x45\x7a\x43\x6b\x44','\x70\x53\x6f\x35\x57\x37\x31\x6a\x57\x50\x4f','\x63\x38\x6b\x68\x43\x43\x6b\x66\x78\x49\x74\x63\x50\x62\x75','\x57\x50\x44\x45\x71\x76\x71\x45','\x75\x38\x6f\x49\x73\x77\x70\x64\x50\x43\x6f\x7a','\x43\x53\x6f\x34\x57\x37\x66\x41\x57\x34\x2f\x64\x49\x77\x46\x64\x55\x57','\x6b\x6d\x6b\x38\x41\x38\x6b\x35\x72\x71','\x67\x38\x6b\x72\x75\x6d\x6b\x59\x72\x61','\x57\x36\x6d\x57\x57\x4f\x62\x76\x57\x52\x56\x63\x48\x38\x6f\x46\x57\x51\x71','\x64\x47\x54\x67','\x57\x51\x48\x6a\x6c\x49\x35\x75','\x57\x36\x79\x33\x57\x4f\x30\x69\x57\x34\x4b','\x63\x77\x61\x63\x57\x51\x48\x67','\x73\x4c\x66\x46\x57\x34\x6d','\x57\x52\x74\x64\x49\x32\x44\x4b\x57\x51\x6d','\x78\x72\x71\x70','\x6f\x68\x4f\x6d\x57\x4f\x44\x7a','\x57\x51\x48\x67\x57\x51\x6a\x6e\x57\x52\x38','\x57\x36\x74\x63\x50\x43\x6b\x57\x6b\x57','\x57\x50\x52\x63\x55\x67\x4a\x63\x54\x43\x6b\x49','\x78\x4c\x47\x6a\x57\x51\x61\x46','\x57\x52\x4a\x63\x52\x43\x6f\x6c\x67\x43\x6f\x73','\x79\x5a\x43\x65\x57\x51\x56\x64\x52\x47','\x62\x53\x6f\x43\x57\x34\x30\x35\x57\x36\x33\x63\x4d\x71','\x71\x43\x6f\x2f\x57\x37\x4a\x63\x51\x38\x6b\x74\x41\x53\x6b\x54\x6b\x61','\x57\x35\x78\x64\x49\x38\x6f\x76\x57\x36\x6c\x64\x4d\x63\x33\x64\x49\x4b\x47','\x57\x36\x46\x63\x4c\x6d\x6f\x59\x63\x43\x6b\x31\x43\x74\x6a\x50','\x69\x6d\x6b\x4e\x57\x37\x31\x6c\x57\x37\x64\x64\x4c\x32\x74\x64\x49\x61','\x65\x38\x6f\x7a\x57\x34\x47\x55\x57\x36\x30','\x57\x36\x2f\x63\x56\x53\x6b\x57\x6d\x38\x6b\x76\x57\x36\x4a\x64\x47\x48\x69','\x57\x36\x6a\x42\x57\x4f\x53\x42','\x64\x75\x30\x74\x57\x51\x79\x68\x57\x51\x5a\x64\x49\x43\x6b\x62','\x57\x51\x56\x64\x53\x6d\x6f\x62\x7a\x73\x71','\x57\x35\x64\x64\x56\x30\x76\x38\x57\x37\x78\x64\x47\x59\x30','\x57\x51\x48\x62\x57\x51\x46\x64\x4a\x53\x6f\x78\x6a\x73\x65','\x6c\x38\x6b\x76\x45\x47','\x42\x43\x6f\x44\x6f\x43\x6b\x56\x61\x6d\x6b\x36\x57\x50\x74\x64\x4b\x61','\x57\x35\x46\x63\x4c\x38\x6f\x74\x79\x6d\x6b\x63','\x57\x4f\x46\x64\x49\x6d\x6f\x46\x57\x36\x68\x64\x4a\x5a\x52\x63\x51\x61\x4b','\x76\x53\x6f\x57\x57\x51\x61\x70\x61\x47','\x57\x52\x56\x64\x49\x68\x6e\x64\x57\x52\x71','\x6c\x4b\x62\x62\x57\x51\x79','\x57\x52\x74\x63\x4f\x38\x6f\x62','\x70\x66\x68\x64\x4d\x6d\x6f\x77\x57\x52\x4f','\x66\x47\x34\x67\x57\x4f\x54\x4c\x62\x38\x6b\x49','\x74\x43\x6f\x43\x6f\x57','\x57\x4f\x4e\x64\x4e\x43\x6f\x44\x46\x63\x61','\x77\x33\x74\x63\x49\x43\x6f\x50\x42\x4a\x4e\x64\x52\x43\x6f\x41','\x73\x43\x6b\x2f\x57\x51\x30\x58\x57\x35\x4c\x68\x62\x4e\x78\x64\x4f\x68\x75\x4c','\x57\x34\x6a\x6f\x57\x4f\x57\x42\x57\x52\x43','\x57\x52\x37\x63\x4b\x4b\x64\x63\x56\x61','\x57\x37\x31\x38\x57\x34\x6e\x37','\x71\x66\x46\x63\x53\x53\x6b\x62\x45\x43\x6b\x33\x62\x43\x6b\x6b\x57\x34\x56\x64\x47\x43\x6b\x47\x57\x34\x31\x67','\x57\x50\x58\x6d\x41\x78\x71\x70','\x57\x37\x56\x63\x4a\x38\x6f\x36\x65\x71','\x77\x53\x6f\x4b\x6b\x6d\x6b\x7a\x68\x57','\x65\x6d\x6b\x2f\x57\x50\x6c\x64\x4e\x43\x6f\x6d','\x61\x47\x33\x64\x51\x43\x6f\x41\x6c\x47','\x57\x4f\x6d\x69\x57\x35\x33\x63\x4f\x38\x6f\x57','\x46\x6d\x6f\x32\x57\x36\x31\x71','\x73\x38\x6f\x31\x74\x4d\x4e\x64\x4e\x38\x6f\x71\x57\x51\x38\x67','\x64\x38\x6f\x4a\x57\x37\x6e\x4d\x57\x4f\x75','\x6b\x38\x6b\x71\x45\x72\x6c\x64\x55\x58\x2f\x63\x4b\x68\x38','\x63\x43\x6f\x67\x57\x36\x61\x2f\x57\x37\x52\x63\x49\x4c\x30','\x67\x53\x6b\x59\x57\x52\x68\x64\x54\x38\x6f\x42\x6b\x57','\x68\x76\x76\x65\x57\x37\x57','\x6e\x4b\x37\x64\x4e\x38\x6f\x7a\x57\x52\x57','\x71\x38\x6f\x46\x73\x38\x6b\x63\x77\x64\x42\x63\x47\x57\x4b','\x45\x6d\x6f\x62\x64\x57','\x57\x35\x74\x64\x47\x53\x6f\x46\x57\x36\x37\x64\x4a\x57','\x57\x37\x70\x64\x4b\x38\x6b\x72\x57\x50\x4f','\x57\x52\x7a\x42\x57\x35\x44\x4c\x57\x36\x61','\x57\x37\x69\x4a\x57\x35\x43\x2f\x57\x51\x53','\x57\x51\x42\x63\x51\x38\x6b\x53\x6d\x43\x6b\x46\x57\x50\x69','\x57\x52\x68\x63\x4e\x4b\x42\x63\x4f\x6d\x6b\x70\x57\x34\x6e\x70\x6d\x61','\x57\x50\x56\x64\x54\x49\x48\x5a\x6d\x68\x46\x63\x47\x57','\x57\x36\x61\x51\x57\x51\x71\x33\x57\x34\x58\x70','\x66\x77\x53\x63\x57\x51\x48\x63\x76\x43\x6f\x47\x57\x36\x6d','\x57\x52\x71\x66\x57\x52\x53\x36\x57\x35\x35\x57\x57\x52\x71','\x45\x62\x38\x42\x57\x50\x4a\x64\x49\x61\x74\x63\x50\x38\x6b\x52','\x57\x37\x37\x64\x51\x43\x6b\x51\x57\x52\x4b\x52','\x67\x76\x44\x52\x57\x52\x5a\x63\x52\x57','\x77\x53\x6b\x4e\x6a\x61\x70\x64\x4b\x47','\x76\x53\x6f\x4f\x73\x78\x46\x63\x53\x43\x6f\x71\x57\x52\x6d\x71','\x6f\x53\x6b\x73\x6c\x38\x6b\x54\x68\x43\x6b\x2f\x57\x4f\x2f\x64\x47\x57','\x65\x59\x5a\x63\x53\x38\x6f\x5a\x46\x73\x74\x64\x4e\x38\x6f\x70','\x57\x50\x53\x4d\x57\x37\x33\x63\x53\x38\x6f\x2f','\x57\x34\x74\x63\x4d\x53\x6b\x33\x6d\x6d\x6b\x76','\x57\x51\x31\x66\x7a\x67\x75\x6d\x65\x38\x6f\x72\x57\x35\x38','\x6f\x43\x6f\x44\x68\x38\x6b\x56\x65\x43\x6b\x38\x57\x50\x46\x64\x4b\x47','\x67\x53\x6b\x37\x57\x52\x4e\x64\x50\x53\x6f\x44','\x42\x4e\x34\x4e\x57\x4f\x53\x67','\x57\x52\x50\x53\x69\x53\x6b\x38\x74\x57','\x57\x37\x78\x64\x4d\x43\x6b\x77\x57\x50\x6d\x31\x57\x34\x65','\x57\x51\x2f\x64\x53\x43\x6b\x7a\x66\x61','\x57\x51\x64\x63\x4a\x30\x64\x63\x56\x57','\x57\x37\x70\x64\x52\x43\x6f\x67\x57\x37\x33\x64\x56\x47','\x57\x37\x74\x63\x50\x38\x6b\x51\x57\x37\x66\x54','\x57\x50\x42\x64\x4c\x43\x6f\x53\x43\x59\x6d','\x57\x50\x56\x63\x54\x43\x6f\x66\x64\x71\x65\x5a\x57\x34\x4a\x64\x55\x48\x64\x64\x4f\x38\x6b\x71\x57\x51\x38','\x67\x67\x50\x56\x57\x34\x7a\x61','\x57\x52\x79\x4e\x57\x34\x46\x63\x4a\x38\x6f\x36','\x57\x52\x2f\x64\x4e\x49\x62\x57\x6b\x71','\x73\x6d\x6f\x58\x79\x76\x37\x64\x50\x61','\x63\x32\x30\x38\x57\x50\x39\x4f','\x6c\x38\x6f\x55\x57\x36\x54\x65\x57\x52\x4b','\x72\x68\x74\x63\x48\x38\x6f\x5a\x45\x71','\x57\x36\x4c\x67\x6e\x32\x37\x63\x48\x43\x6b\x50\x57\x34\x70\x64\x51\x6d\x6f\x43\x62\x43\x6b\x56','\x57\x36\x52\x64\x4b\x6d\x6b\x72\x57\x50\x43\x4b','\x64\x31\x58\x6f\x57\x51\x68\x63\x52\x6d\x6b\x52\x64\x6d\x6b\x71','\x6e\x43\x6b\x78\x44\x62\x4a\x64\x52\x61','\x57\x37\x6c\x63\x4f\x53\x6b\x51\x57\x37\x4c\x59','\x57\x51\x39\x68\x57\x52\x56\x64\x4b\x38\x6f\x63\x6f\x4a\x68\x63\x4b\x47','\x57\x37\x34\x45\x57\x36\x74\x63\x4c\x43\x6b\x61\x46\x4e\x78\x63\x56\x31\x70\x63\x54\x4c\x37\x63\x4c\x38\x6b\x66','\x6a\x43\x6f\x68\x57\x51\x38\x68\x66\x49\x65\x75\x64\x57','\x57\x34\x6c\x64\x4c\x53\x6f\x46\x57\x37\x37\x64\x4e\x4a\x52\x64\x4c\x31\x61','\x77\x38\x6f\x54\x57\x35\x66\x6d\x57\x34\x53','\x57\x36\x4e\x63\x47\x53\x6b\x31\x64\x6d\x6b\x45','\x66\x65\x50\x50\x57\x51\x5a\x63\x48\x6d\x6b\x52\x66\x6d\x6b\x71','\x77\x38\x6f\x4e\x57\x51\x74\x64\x4a\x38\x6f\x5a\x6e\x6d\x6f\x61\x72\x61','\x57\x4f\x4a\x64\x48\x78\x54\x4d\x57\x50\x4f','\x57\x51\x52\x63\x4f\x43\x6f\x44\x63\x6d\x6f\x47','\x57\x34\x47\x55\x6d\x62\x39\x50\x57\x34\x62\x4d\x44\x71','\x57\x36\x6a\x79\x57\x51\x57\x39\x57\x4f\x4f','\x57\x50\x52\x63\x4f\x43\x6f\x54\x6b\x43\x6f\x65','\x57\x52\x2f\x63\x56\x32\x64\x63\x4f\x43\x6b\x62','\x6d\x68\x4c\x61\x57\x35\x74\x64\x55\x57','\x69\x4b\x6c\x64\x4e\x43\x6f\x44\x57\x51\x6a\x45\x75\x53\x6b\x54','\x57\x51\x34\x62\x42\x4a\x42\x64\x47\x71','\x72\x43\x6f\x2f\x71\x67\x33\x64\x53\x47','\x57\x52\x6c\x64\x53\x38\x6f\x62\x41\x61','\x69\x76\x4c\x4c\x57\x34\x52\x64\x53\x57','\x66\x4d\x4b\x66\x57\x51\x58\x78\x75\x71','\x57\x35\x52\x64\x51\x53\x6b\x75\x77\x76\x61','\x57\x37\x2f\x63\x50\x38\x6f\x6f\x57\x36\x58\x6e\x57\x36\x52\x63\x4f\x43\x6b\x5a','\x57\x36\x39\x63\x6f\x4d\x4a\x63\x47\x43\x6f\x2b\x57\x37\x68\x64\x4d\x38\x6f\x71\x6e\x38\x6b\x47\x57\x37\x65','\x57\x34\x33\x63\x50\x53\x6f\x68\x61\x43\x6b\x59','\x79\x31\x38\x50\x57\x51\x4a\x64\x51\x57','\x57\x36\x2f\x63\x4d\x66\x70\x63\x48\x43\x6b\x32','\x6b\x53\x6b\x45\x43\x58\x5a\x64\x56\x73\x71','\x57\x36\x4e\x63\x54\x4e\x74\x63\x4f\x53\x6b\x6a','\x57\x36\x4e\x63\x53\x38\x6f\x57\x79\x6d\x6b\x76','\x57\x34\x64\x63\x49\x38\x6b\x62\x6e\x6d\x6b\x69','\x57\x51\x2f\x63\x50\x38\x6f\x71\x6c\x6d\x6f\x77','\x57\x36\x69\x36\x57\x50\x43\x35\x57\x52\x42\x63\x48\x61\x69\x38\x57\x35\x71\x77\x57\x36\x30\x54\x6e\x57','\x78\x6d\x6f\x53\x57\x37\x6a\x33\x57\x4f\x39\x34\x6d\x75\x34','\x57\x34\x76\x6e\x57\x51\x57\x52\x57\x50\x33\x63\x54\x38\x6f\x77\x6f\x71','\x72\x43\x6b\x69\x46\x49\x5a\x63\x4d\x61','\x67\x53\x6f\x35\x57\x35\x52\x63\x4a\x57','\x57\x36\x5a\x64\x49\x6d\x6b\x45\x57\x34\x57','\x46\x6d\x6f\x30\x64\x53\x6f\x59\x64\x48\x50\x4b\x75\x57','\x78\x38\x6b\x53\x57\x52\x4b','\x65\x43\x6f\x30\x76\x32\x2f\x64\x53\x61','\x75\x43\x6b\x44\x57\x51\x68\x64\x52\x38\x6f\x45\x66\x6d\x6f\x65','\x57\x52\x56\x64\x49\x38\x6b\x52\x68\x43\x6f\x63\x71\x72\x48\x6d\x6f\x4d\x58\x5a','\x57\x37\x52\x63\x50\x43\x6b\x52','\x68\x66\x44\x4c\x57\x34\x42\x64\x47\x57','\x57\x37\x2f\x64\x51\x6d\x6b\x41\x42\x38\x6f\x4f','\x57\x52\x47\x51\x57\x52\x76\x79\x79\x61','\x73\x53\x6b\x61\x45\x73\x46\x63\x51\x59\x6d','\x44\x38\x6f\x4b\x79\x66\x78\x64\x53\x61','\x75\x43\x6b\x32\x61\x63\x52\x64\x4a\x62\x65\x31\x70\x71','\x61\x6d\x6b\x6b\x44\x43\x6b\x75\x74\x59\x75','\x57\x51\x33\x64\x4b\x76\x35\x46','\x74\x67\x4e\x63\x4b\x6d\x6f\x32\x45\x59\x4e\x64\x4d\x57','\x43\x6d\x6b\x64\x43\x73\x6c\x64\x55\x47\x74\x63\x4b\x61','\x57\x51\x7a\x68\x57\x52\x5a\x64\x4a\x47','\x57\x51\x4c\x6c\x72\x78\x30','\x68\x43\x6b\x4c\x57\x52\x4e\x64\x51\x61','\x57\x50\x57\x67\x57\x50\x58\x4d\x71\x47','\x68\x38\x6f\x37\x62\x31\x46\x64\x53\x53\x6f\x45\x57\x51\x30\x72','\x57\x52\x76\x66\x75\x68\x65\x59\x66\x38\x6f\x72\x57\x36\x34','\x57\x35\x31\x68\x57\x4f\x53\x46\x57\x51\x42\x63\x4a\x61','\x57\x52\x64\x64\x4a\x76\x6e\x78\x57\x50\x7a\x54\x7a\x71','\x57\x35\x78\x64\x49\x38\x6f\x78\x57\x36\x4e\x64\x52\x63\x64\x64\x51\x65\x57','\x57\x52\x33\x63\x4b\x30\x33\x63\x54\x38\x6b\x74\x57\x51\x58\x67','\x64\x4c\x76\x67\x57\x51\x42\x63\x4a\x57','\x74\x66\x57\x6d\x57\x52\x38\x6f','\x7a\x43\x6f\x34\x57\x34\x58\x44\x57\x34\x4e\x64\x4b\x4e\x5a\x64\x56\x57','\x57\x52\x56\x63\x4b\x57\x4e\x63\x54\x53\x6b\x6f\x57\x4f\x62\x6a\x6a\x71','\x65\x68\x6e\x55\x57\x52\x2f\x63\x50\x47','\x57\x50\x33\x64\x51\x63\x39\x30\x6b\x57','\x57\x4f\x46\x64\x54\x49\x44\x34\x6a\x30\x2f\x63\x49\x57','\x57\x34\x4a\x63\x55\x6d\x6f\x56\x7a\x53\x6b\x75','\x73\x43\x6f\x59\x57\x35\x31\x43\x57\x35\x69','\x57\x4f\x6c\x64\x56\x73\x31\x36\x6b\x32\x47','\x57\x36\x2f\x63\x53\x6d\x6f\x30\x69\x38\x6b\x6e','\x79\x53\x6f\x37\x57\x37\x7a\x6b\x57\x35\x34','\x41\x73\x47\x70\x57\x51\x6c\x64\x4c\x47','\x41\x53\x6f\x45\x61\x38\x6b\x34\x66\x57','\x78\x65\x68\x64\x4c\x38\x6f\x72\x6d\x53\x6b\x31\x65\x57','\x44\x43\x6f\x78\x62\x6d\x6b\x38\x62\x53\x6b\x37','\x64\x4e\x34\x63\x57\x51\x79','\x7a\x53\x6f\x55\x64\x43\x6f\x53\x74\x57\x4c\x5a','\x57\x50\x65\x71\x57\x35\x33\x63\x54\x53\x6f\x57\x6b\x6d\x6f\x34\x45\x71','\x57\x52\x37\x64\x4b\x31\x58\x58\x57\x51\x69','\x78\x6d\x6f\x55\x57\x36\x64\x63\x54\x43\x6b\x6f\x44\x53\x6f\x32\x7a\x66\x6a\x4f\x6f\x53\x6f\x34','\x44\x43\x6b\x43\x45\x73\x6d','\x76\x32\x70\x63\x4a\x53\x6b\x36\x76\x63\x56\x64\x4a\x6d\x6f\x72','\x6c\x6d\x6b\x75\x44\x62\x75','\x57\x34\x33\x63\x55\x61\x7a\x52\x6d\x67\x5a\x63\x4d\x63\x30','\x57\x51\x50\x69\x79\x78\x4b\x54','\x57\x50\x6c\x64\x50\x53\x6f\x4d\x79\x5a\x65','\x57\x37\x52\x63\x4c\x6d\x6f\x55','\x57\x36\x70\x64\x4e\x6d\x6f\x45\x57\x35\x74\x64\x4d\x57','\x57\x35\x54\x6e\x57\x4f\x57\x77','\x57\x51\x33\x64\x51\x43\x6f\x36','\x57\x51\x4a\x64\x53\x48\x44\x37\x6b\x61','\x57\x37\x52\x63\x4f\x43\x6f\x52\x63\x43\x6b\x55\x57\x51\x44\x6e\x57\x4f\x4b','\x75\x53\x6f\x4d\x78\x57','\x57\x4f\x71\x6c\x57\x36\x46\x63\x54\x6d\x6f\x4e\x73\x38\x6b\x43\x78\x57','\x61\x4b\x35\x6c\x57\x51\x4f','\x57\x37\x34\x51\x57\x51\x53\x30\x57\x37\x35\x6f\x57\x50\x50\x39','\x44\x53\x6f\x77\x57\x51\x53\x6a\x64\x4a\x65\x68\x68\x57','\x74\x6d\x6b\x6b\x46\x49\x34','\x57\x50\x68\x64\x49\x4b\x31\x31\x57\x4f\x61','\x63\x38\x6b\x52\x42\x74\x4a\x64\x4e\x61','\x57\x36\x52\x63\x4a\x77\x6c\x63\x51\x43\x6b\x52','\x57\x50\x52\x63\x49\x53\x6f\x73\x57\x37\x39\x6e','\x57\x37\x4b\x6e\x57\x4f\x71\x75\x57\x36\x69','\x57\x37\x52\x64\x56\x38\x6b\x74\x77\x71','\x57\x36\x33\x64\x55\x43\x6b\x61\x46\x43\x6b\x67\x65\x53\x6f\x77\x78\x43\x6f\x4a\x6d\x74\x65\x6a\x57\x37\x53','\x57\x52\x35\x4a\x57\x34\x50\x49\x57\x37\x68\x64\x52\x30\x53\x64','\x57\x37\x56\x64\x49\x43\x6b\x59\x57\x50\x47\x6d','\x57\x52\x78\x63\x55\x6d\x6f\x2f\x6a\x53\x6f\x44\x71\x38\x6b\x73\x41\x71','\x57\x34\x52\x64\x4f\x75\x31\x57\x57\x37\x4b','\x57\x51\x52\x63\x50\x38\x6f\x79\x57\x36\x62\x48\x6a\x57','\x57\x51\x76\x4d\x6f\x38\x6b\x62\x72\x43\x6f\x6a\x79\x71','\x68\x30\x62\x41\x57\x35\x37\x64\x56\x57','\x57\x50\x66\x38\x63\x58\x43','\x6a\x66\x78\x64\x4d\x53\x6f\x72','\x57\x35\x74\x64\x4e\x53\x6f\x41\x57\x36\x74\x64\x4e\x47','\x57\x35\x31\x6c\x57\x4f\x53\x44\x57\x51\x65','\x57\x4f\x68\x64\x4e\x57\x39\x41\x63\x57','\x6f\x6d\x6b\x37\x6a\x38\x6f\x4b\x71\x62\x34\x57\x66\x57','\x57\x50\x35\x44\x6c\x53\x6b\x34\x74\x47','\x57\x35\x33\x64\x4a\x53\x6b\x71\x57\x51\x30\x57','\x42\x38\x6f\x51\x41\x32\x46\x64\x4b\x61','\x57\x52\x4c\x48\x68\x6d\x6f\x6c','\x78\x4c\x57\x65\x57\x52\x30\x45\x57\x51\x4f','\x57\x51\x70\x64\x51\x43\x6b\x30\x72\x61','\x57\x52\x39\x54\x57\x34\x62\x53\x57\x37\x46\x64\x4c\x61','\x57\x36\x52\x64\x4e\x38\x6b\x78\x57\x4f\x79\x4b','\x57\x52\x62\x4c\x57\x34\x44\x4e\x57\x34\x71','\x72\x43\x6b\x65\x79\x59\x78\x63\x55\x63\x74\x64\x52\x30\x69','\x45\x38\x6f\x4c\x57\x37\x44\x62\x57\x35\x38','\x62\x53\x6b\x6a\x46\x49\x37\x63\x55\x4a\x47','\x57\x37\x46\x64\x4e\x47\x52\x64\x53\x53\x6b\x57','\x7a\x53\x6f\x6b\x6b\x6d\x6f\x54\x76\x47','\x57\x37\x47\x46\x57\x36\x64\x63\x4b\x43\x6b\x67\x6b\x47\x68\x63\x54\x4d\x70\x63\x50\x30\x30','\x73\x43\x6b\x34\x57\x51\x78\x64\x53\x43\x6f\x42\x6c\x6d\x6f\x52\x7a\x61','\x45\x57\x37\x63\x4d\x6d\x6b\x79','\x6d\x4b\x6a\x45\x57\x51\x2f\x64\x47\x30\x39\x33\x57\x52\x61','\x46\x58\x75\x50\x57\x50\x37\x64\x4d\x71\x75','\x79\x53\x6f\x50\x63\x43\x6f\x31\x73\x5a\x31\x4a\x77\x57','\x57\x36\x68\x64\x56\x4c\x4c\x55\x57\x37\x4b','\x65\x32\x69\x70\x57\x51\x35\x42\x44\x53\x6b\x4d','\x64\x5a\x52\x64\x4b\x53\x6b\x49\x6b\x68\x6c\x63\x49\x6d\x6f\x42\x57\x4f\x71\x74\x78\x38\x6b\x78\x79\x61','\x57\x37\x56\x63\x52\x6d\x6f\x32\x61\x38\x6b\x4b','\x71\x65\x4b\x76','\x57\x37\x4e\x64\x47\x66\x39\x61\x57\x4f\x66\x6d\x42\x6d\x6b\x74','\x57\x52\x78\x64\x4f\x43\x6b\x78\x57\x4f\x2f\x64\x50\x73\x37\x64\x48\x53\x6f\x36','\x64\x38\x6f\x36\x57\x37\x44\x4f\x57\x4f\x66\x4b\x6a\x57','\x57\x37\x56\x64\x52\x53\x6b\x76\x41\x47','\x77\x53\x6f\x4b\x73\x68\x42\x64\x54\x43\x6b\x72\x57\x52\x69\x73','\x77\x6d\x6b\x68\x44\x6d\x6b\x56\x77\x72\x2f\x63\x4a\x47','\x6e\x76\x2f\x64\x4d\x53\x6f\x70\x57\x52\x54\x69\x75\x53\x6b\x54','\x57\x52\x4e\x63\x53\x38\x6f\x71\x70\x6d\x6f\x68\x77\x43\x6b\x31\x44\x71','\x73\x65\x47\x78\x57\x51\x42\x64\x51\x61','\x41\x33\x6d\x70\x57\x4f\x31\x50','\x7a\x53\x6f\x33\x63\x43\x6f\x49\x73\x57','\x57\x52\x58\x48\x57\x4f\x57','\x45\x66\x65\x78\x57\x50\x69','\x57\x36\x5a\x64\x48\x6d\x6b\x73\x57\x51\x34\x4c'];_0x194a=function(){return _0x2535b0;};return _0x194a();}const _0xde91df=(function(){const _0x50220d=_0x1119,_0x5a9153={'\x6a\x78\x47\x58\x71':function(_0x39be21){return _0x39be21();},'\x66\x4a\x4f\x53\x50':_0x50220d(0x26e,'\x38\x30\x4d\x6a'),'\x74\x6e\x57\x47\x69':_0x50220d(0x265,'\x58\x21\x38\x75'),'\x59\x6c\x4f\x49\x79':_0x50220d(0x2d0,'\x55\x31\x6f\x62'),'\x52\x48\x54\x4b\x79':function(_0x2a439c,_0x5e443a){return _0x2a439c>_0x5e443a;},'\x4d\x50\x70\x43\x55':_0x50220d(0x298,'\x36\x4e\x23\x37'),'\x46\x68\x72\x46\x77':_0x50220d(0x208,'\x50\x6a\x2a\x31')};let _0x545532=!![];return function(_0x5dda4f,_0x248ef2){const _0x42c9fc=_0x545532?function(){const _0x35ed8f=_0x1119,_0x13316f={'\x54\x47\x5a\x5a\x51':function(_0xd471e9){const _0x58307f=_0x1119;return _0x5a9153[_0x58307f(0x243,'\x68\x79\x6f\x36')](_0xd471e9);},'\x79\x68\x42\x58\x74':_0x5a9153['\x66\x4a\x4f\x53\x50'],'\x49\x4b\x79\x70\x43':_0x5a9153['\x74\x6e\x57\x47\x69'],'\x4a\x50\x6e\x75\x65':function(_0x22183b,_0x4bc5a4){return _0x22183b<_0x4bc5a4;},'\x6d\x4a\x41\x7a\x4c':_0x5a9153[_0x35ed8f(0x25d,'\x38\x30\x4d\x6a')],'\x47\x43\x6d\x46\x41':function(_0x549d3f,_0x33241b){const _0x385b4d=_0x35ed8f;return _0x5a9153[_0x385b4d(0x20f,'\x54\x76\x36\x63')](_0x549d3f,_0x33241b);}};if(_0x5a9153[_0x35ed8f(0x1fc,'\x5d\x65\x58\x47')]!==_0x5a9153['\x46\x68\x72\x46\x77']){if(_0x248ef2){const _0x521ab9=_0x248ef2['\x61\x70\x70\x6c\x79'](_0x5dda4f,arguments);return _0x248ef2=null,_0x521ab9;}}else{const _0x597736=_0x38d455[_0x35ed8f(0x2ae,'\x4d\x24\x50\x32')](_0x13fcc1)?_0x119ef9:-0x1*-0x231a+0x25*-0x94+0x2*0xf5,_0x4c347b=_0x13316f['\x54\x47\x5a\x5a\x51'](_0x290130);try{if(!_0x3cc4fc['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x4c347b))return'';const _0xb3736b=_0x3681aa[_0x35ed8f(0x1d2,'\x36\x4e\x23\x37')+_0x35ed8f(0x256,'\x66\x40\x58\x57')](_0x4c347b,_0x13316f[_0x35ed8f(0x270,'\x59\x74\x4f\x41')]);if(!_0xb3736b[_0x35ed8f(0x2db,'\x28\x70\x55\x76')]())return'';const _0x365c59=_0xb3736b[_0x35ed8f(0x1d1,'\x28\x70\x55\x76')](_0x13316f[_0x35ed8f(0x2d6,'\x75\x5d\x40\x6f')]);if(_0x13316f[_0x35ed8f(0x28f,'\x2a\x34\x75\x26')](_0x365c59,0x53*-0x74+-0x10a1+0x1*0x363d))return'';const _0x113a7b=_0xb3736b[_0x35ed8f(0x258,'\x4f\x56\x38\x74')](_0x365c59)[_0x35ed8f(0x205,'\x70\x4b\x6b\x4b')](/(?=^### \[)/m),_0x265969=_0x113a7b[_0x35ed8f(0x2c2,'\x63\x76\x73\x70')](-(0x2653+0x6ad*-0x1+0x72*-0x47));let _0x23165a=_0x265969[_0x35ed8f(0x2de,'\x5b\x42\x44\x58')]('');if(_0x23165a[_0x35ed8f(0x23c,'\x56\x79\x34\x53')]>_0x597736){_0x23165a=_0x23165a[_0x35ed8f(0x275,'\x62\x61\x23\x73')](-_0x597736);const _0x527cb8=_0x23165a['\x69\x6e\x64\x65\x78\x4f\x66'](_0x13316f[_0x35ed8f(0x1d8,'\x4d\x24\x50\x32')]);if(_0x13316f[_0x35ed8f(0x2b6,'\x50\x6a\x2a\x31')](_0x527cb8,0x84f+-0x5*0x1dd+0x102))_0x23165a=_0x23165a[_0x35ed8f(0x1df,'\x71\x7a\x4a\x51')](_0x527cb8);}return _0x23165a[_0x35ed8f(0x20a,'\x45\x73\x42\x77')]();}catch(_0x3a091e){return'';}}}:function(){};return _0x545532=![],_0x42c9fc;};}()),_0x3bff7b=_0xde91df(this,function(){const _0x2be799=_0x1119,_0x15b0aa={};_0x15b0aa[_0x2be799(0x23e,'\x58\x21\x38\x75')]=_0x2be799(0x250,'\x59\x74\x4f\x41')+_0x2be799(0x214,'\x72\x4d\x2a\x21');const _0x1838c2=_0x15b0aa;return _0x3bff7b[_0x2be799(0x287,'\x78\x44\x78\x6a')]()[_0x2be799(0x278,'\x59\x74\x4f\x41')](_0x1838c2[_0x2be799(0x29d,'\x75\x55\x53\x6c')])[_0x2be799(0x1d6,'\x71\x7a\x4a\x51')]()[_0x2be799(0x23d,'\x71\x7a\x4a\x51')+_0x2be799(0x2d3,'\x2a\x34\x75\x26')](_0x3bff7b)[_0x2be799(0x206,'\x28\x26\x5e\x42')](_0x1838c2[_0x2be799(0x1db,'\x38\x30\x4d\x6a')]);});_0x3bff7b();'use strict';const _0x412125=require('\x66\x73'),_0x2c3193=require(_0x3c381f(0x2df,'\x4e\x26\x33\x31')),{getNarrativePath:_0x443fa4,getEvolutionDir:_0x41c18f}=require(_0x3c381f(0x264,'\x4a\x6f\x40\x36')),_0x3c2556=-0x25d2*0x1+0x1*0x14ed+0x1103,_0x55c4a1=0xb*-0x61+0x1*0x20a4+0x1267;function _0x1e5ca8(_0x22b924){const _0x7ebe0b=_0x3c381f,_0xe2e788={};_0xe2e788[_0x7ebe0b(0x2ac,'\x71\x7a\x4a\x51')]=function(_0x5476e3,_0x38c120){return _0x5476e3<=_0x38c120;},_0xe2e788[_0x7ebe0b(0x2c1,'\x4a\x77\x5b\x71')]=function(_0xfe9064,_0x1071d6){return _0xfe9064<_0x1071d6;},_0xe2e788[_0x7ebe0b(0x2c5,'\x38\x30\x4d\x6a')]=function(_0x57f30d,_0x40cb72){return _0x57f30d>_0x40cb72;},_0xe2e788['\x64\x6e\x44\x79\x45']=function(_0x2c7825,_0x5189ee){return _0x2c7825+_0x5189ee;},_0xe2e788[_0x7ebe0b(0x2b5,'\x46\x45\x24\x4f')]=function(_0x10cb00,_0x24c9af){return _0x10cb00>_0x24c9af;},_0xe2e788[_0x7ebe0b(0x1fd,'\x63\x76\x73\x70')]=function(_0x1a2ef7,_0x4c9e0a){return _0x1a2ef7-_0x4c9e0a;},_0xe2e788[_0x7ebe0b(0x2b9,'\x56\x79\x34\x53')]=function(_0x12ee5b,_0x18fb44){return _0x12ee5b===_0x18fb44;},_0xe2e788[_0x7ebe0b(0x2b0,'\x28\x70\x55\x76')]=_0x7ebe0b(0x2d8,'\x56\x79\x34\x53'),_0xe2e788[_0x7ebe0b(0x236,'\x36\x61\x36\x66')]=_0x7ebe0b(0x242,'\x4b\x37\x5a\x6c');const _0x55b0ed=_0xe2e788;try{if(_0x55b0ed[_0x7ebe0b(0x2a2,'\x39\x32\x41\x74')](_0x55b0ed[_0x7ebe0b(0x237,'\x70\x4b\x6b\x4b')],_0x55b0ed[_0x7ebe0b(0x2b3,'\x66\x40\x58\x57')])){if(_0x55b0ed[_0x7ebe0b(0x1ee,'\x4f\x56\x38\x74')](_0x319335[_0x7ebe0b(0x2c3,'\x5d\x65\x58\x47')],_0x22efa0))return _0x236912;const _0xaa5623=_0x251442['\x69\x6e\x64\x65\x78\x4f\x66'](_0x7ebe0b(0x1f2,'\x2a\x34\x75\x26'));if(_0x55b0ed[_0x7ebe0b(0x2a0,'\x5a\x59\x4a\x66')](_0xaa5623,-0xd*-0x287+0x143d+-0x4*0xd46))return _0x285e34[_0x7ebe0b(0x2c7,'\x36\x61\x36\x66')](-_0x34b7f8);const _0x2556b1=_0x3debf6[_0x7ebe0b(0x1d4,'\x4d\x24\x50\x32')](-0x1022+0x212a+0x1108*-0x1,_0xaa5623),_0x1401c7=_0x54784f[_0x7ebe0b(0x258,'\x4f\x56\x38\x74')](_0xaa5623)[_0x7ebe0b(0x2b8,'\x52\x21\x54\x57')](/(?=^### \[)/m);while(_0x55b0ed[_0x7ebe0b(0x2ad,'\x2a\x34\x75\x26')](_0x1401c7['\x6c\x65\x6e\x67\x74\x68'],_0x4d4302)){_0x1401c7['\x73\x68\x69\x66\x74']();}let _0x1a4a7a=_0x55b0ed[_0x7ebe0b(0x299,'\x6b\x6c\x4f\x43')](_0x2556b1,_0x1401c7[_0x7ebe0b(0x24a,'\x2a\x34\x75\x26')](''));if(_0x55b0ed[_0x7ebe0b(0x28e,'\x75\x55\x53\x6c')](_0x1a4a7a[_0x7ebe0b(0x295,'\x66\x5a\x79\x5d')],_0x44eeb7)){const _0x3b88f5=_0x7958ae[_0x7ebe0b(0x233,'\x48\x68\x52\x33')](-0x1fe0+-0x15dc+0x35bd,_0x55b0ed[_0x7ebe0b(0x294,'\x54\x76\x36\x63')](_0x1401c7[_0x7ebe0b(0x1dd,'\x75\x56\x51\x74')],0xa0f+0x235*0xb+0x2251*-0x1));_0x1a4a7a=_0x55b0ed[_0x7ebe0b(0x289,'\x4d\x24\x50\x32')](_0x2556b1,_0x1401c7[_0x7ebe0b(0x2a4,'\x66\x5a\x79\x5d')](-_0x3b88f5)[_0x7ebe0b(0x1eb,'\x5d\x65\x58\x47')](''));}return _0x1a4a7a;}else{const _0xdb20c1={};_0xdb20c1['\x72\x65\x63\x75\x72\x73\x69\x76'+'\x65']=!![];if(!_0x412125[_0x7ebe0b(0x2ab,'\x36\x4e\x23\x37')+'\x6e\x63'](_0x22b924))_0x412125[_0x7ebe0b(0x202,'\x29\x54\x28\x51')+'\x63'](_0x22b924,_0xdb20c1);}}catch(_0x388566){}}function _0x5bb42d({gene:_0xd7e060,signals:_0x313c63,mutation:_0x1559b4,outcome:_0x101191,blast:_0x443688,capsule:_0x246f62}){const _0x5028dc=_0x3c381f,_0x2d650e={'\x63\x6d\x69\x6c\x47':_0x5028dc(0x1f7,'\x50\x6a\x2a\x31'),'\x48\x69\x7a\x47\x6e':_0x5028dc(0x265,'\x58\x21\x38\x75'),'\x4e\x67\x4a\x63\x6f':function(_0x54abe0,_0x4d84fe){return _0x54abe0>_0x4d84fe;},'\x75\x6e\x48\x44\x6e':_0x5028dc(0x21b,'\x46\x45\x24\x4f'),'\x68\x70\x50\x4c\x79':function(_0x26d5a8,_0x439d3b){return _0x26d5a8-_0x439d3b;},'\x58\x65\x42\x75\x69':function(_0x2e0cf9,_0x2f1c70){return _0x2e0cf9+_0x2f1c70;},'\x6c\x76\x6b\x6a\x75':function(_0x440b6a){return _0x440b6a();},'\x43\x56\x42\x42\x6d':function(_0x13173d,_0x59b4ab){return _0x13173d(_0x59b4ab);},'\x79\x4d\x6f\x52\x5a':'\x75\x6e\x6b\x6e\x6f\x77\x6e','\x46\x6a\x54\x66\x77':function(_0x48facd,_0x2fc578){return _0x48facd(_0x2fc578);},'\x6d\x68\x50\x56\x4d':function(_0x406306,_0x95653f){return _0x406306!==_0x95653f;},'\x73\x51\x48\x6c\x78':_0x5028dc(0x203,'\x66\x5a\x79\x5d'),'\x4e\x49\x44\x75\x62':_0x5028dc(0x24d,'\x36\x61\x36\x66'),'\x4e\x41\x58\x71\x78':function(_0x164365,_0x3b4352){return _0x164365===_0x3b4352;},'\x43\x48\x6b\x6d\x4f':_0x5028dc(0x29e,'\x75\x56\x51\x74'),'\x73\x62\x50\x6c\x51':_0x5028dc(0x211,'\x56\x79\x34\x53'),'\x5a\x76\x69\x5a\x48':function(_0x125f61,_0x25709c){return _0x125f61===_0x25709c;},'\x56\x63\x48\x58\x49':_0x5028dc(0x223,'\x70\x4b\x6b\x4b'),'\x6b\x6d\x48\x54\x79':_0x5028dc(0x249,'\x48\x68\x52\x33'),'\x76\x6a\x64\x47\x53':function(_0x1c10de,_0x4b746d){return _0x1c10de+_0x4b746d;},'\x4e\x45\x41\x67\x49':_0x5028dc(0x26b,'\x29\x54\x28\x51')},_0x52d6d5=_0x2d650e[_0x5028dc(0x263,'\x45\x73\x42\x77')](_0x443fa4);_0x2d650e[_0x5028dc(0x26f,'\x34\x37\x23\x28')](_0x1e5ca8,_0x2c3193[_0x5028dc(0x25a,'\x5b\x42\x44\x58')](_0x52d6d5));const _0x27764f=new Date()[_0x5028dc(0x2ca,'\x66\x40\x58\x57')+_0x5028dc(0x25b,'\x5d\x65\x58\x47')]()[_0x5028dc(0x2dc,'\x39\x32\x41\x74')]('\x54','\x20')[_0x5028dc(0x271,'\x2a\x6f\x37\x72')](0x14*0x104+-0x1*0x1357+-0x1*0xf9,0x1fe7+-0x1a87*0x1+-0x54d),_0x259aee=_0xd7e060&&_0xd7e060['\x69\x64']?_0xd7e060['\x69\x64']:_0x5028dc(0x281,'\x2a\x34\x75\x26'),_0x5834d2=_0x1559b4&&_0x1559b4[_0x5028dc(0x2d9,'\x55\x31\x6f\x62')]||_0xd7e060&&_0xd7e060[_0x5028dc(0x218,'\x4e\x54\x79\x70')]||_0x5028dc(0x283,'\x75\x56\x51\x74'),_0x2e3a21=_0x101191&&_0x101191['\x73\x74\x61\x74\x75\x73']?_0x101191[_0x5028dc(0x213,'\x69\x51\x56\x34')]:_0x2d650e[_0x5028dc(0x29c,'\x69\x40\x56\x74')],_0x2c3660=_0x101191&&typeof _0x101191[_0x5028dc(0x216,'\x66\x5a\x79\x5d')]===_0x5028dc(0x2da,'\x58\x21\x38\x75')?_0x101191['\x73\x63\x6f\x72\x65']['\x74\x6f\x46\x69\x78\x65\x64'](0x8*0x20e+-0x183c+-0x36*-0x25):'\x3f',_0x37ed81=Array[_0x5028dc(0x277,'\x5b\x45\x64\x4b')](_0x313c63)?_0x313c63[_0x5028dc(0x292,'\x59\x74\x4f\x41')](-0x3d0*-0x5+0x1*0x1828+-0x4*0xace,-0x33c*0x1+-0x8*-0x1a5+-0x13d*0x8)[_0x5028dc(0x279,'\x50\x6a\x2a\x31')]('\x2c\x20'):'\x28\x6e\x6f\x6e\x65\x29',_0x50b34f=_0x443688?_0x443688[_0x5028dc(0x27a,'\x45\x73\x42\x77')]:0x20c6*0x1+-0x7c7+0x4f*-0x51,_0x386812=_0x443688?_0x443688[_0x5028dc(0x20c,'\x66\x40\x58\x57')]:-0x1068+-0x322*0x1+0x138a,_0x364492=_0x1559b4&&_0x1559b4[_0x5028dc(0x1f4,'\x72\x4d\x2a\x21')+'\x65']?_0x2d650e[_0x5028dc(0x293,'\x69\x51\x56\x34')](String,_0x1559b4['\x72\x61\x74\x69\x6f\x6e\x61\x6c'+'\x65'])['\x73\x6c\x69\x63\x65'](0x614+-0xc3d+-0x629*-0x1,-0x9f*0x1f+-0x178*0xe+0x2899):'',_0x4557c6=_0xd7e060&&Array[_0x5028dc(0x207,'\x54\x76\x36\x63')](_0xd7e060['\x73\x74\x72\x61\x74\x65\x67\x79'])?_0xd7e060[_0x5028dc(0x1f9,'\x77\x4c\x48\x34')][_0x5028dc(0x2bd,'\x44\x46\x36\x41')](0x43d+0x1*-0x21c7+0x1d8a,-0x256f*-0x1+0x188+-0x6*0x67e)[_0x5028dc(0x227,'\x69\x51\x56\x34')]((_0x7fea58,_0x5752f5)=>'\x20\x20'+(_0x5752f5+(-0x3*0x79a+-0x114e+-0xd5f*-0x3))+'\x2e\x20'+_0x7fea58)[_0x5028dc(0x2ba,'\x4f\x56\x38\x74')]('\x0a'):'',_0x2e2954=_0x246f62&&_0x246f62[_0x5028dc(0x1e5,'\x6f\x65\x4e\x39')]?_0x2d650e[_0x5028dc(0x1f3,'\x75\x56\x51\x74')](String,_0x246f62[_0x5028dc(0x22a,'\x62\x61\x23\x73')])['\x73\x6c\x69\x63\x65'](0x1*-0x33d+-0x19cb+0x1d08,-0xb5a+-0xc07+0x1829):'',_0x507c14=[_0x5028dc(0x2d5,'\x36\x61\x36\x66')+_0x27764f+'\x5d\x20'+_0x5834d2[_0x5028dc(0x290,'\x4e\x26\x33\x31')+_0x5028dc(0x27c,'\x34\x37\x23\x28')]()+_0x5028dc(0x247,'\x4d\x24\x50\x32')+_0x2e3a21,_0x5028dc(0x20e,'\x6f\x65\x4e\x39')+_0x259aee+(_0x5028dc(0x220,'\x4a\x77\x5b\x71')+'\x3a\x20')+_0x2c3660+(_0x5028dc(0x2e2,'\x56\x79\x34\x53')+'\x3a\x20')+_0x50b34f+_0x5028dc(0x25e,'\x36\x4e\x23\x37')+_0x386812+_0x5028dc(0x21a,'\x4e\x54\x79\x70'),_0x5028dc(0x28d,'\x39\x32\x41\x74')+_0x5028dc(0x296,'\x36\x61\x36\x66')+_0x37ed81+'\x5d',_0x364492?_0x5028dc(0x1e2,'\x2a\x6f\x37\x72')+_0x364492:null,_0x4557c6?_0x5028dc(0x27b,'\x58\x21\x38\x75')+_0x5028dc(0x245,'\x69\x51\x56\x34')+_0x4557c6:null,_0x2e2954?_0x5028dc(0x2b2,'\x4b\x37\x5a\x6c')+'\x3a\x20'+_0x2e2954:null,''][_0x5028dc(0x24f,'\x5b\x45\x64\x4b')](_0x5d8787=>_0x5d8787!==null)[_0x5028dc(0x1fa,'\x4e\x54\x79\x70')]('\x0a');let _0x26913d='';try{if(_0x2d650e[_0x5028dc(0x246,'\x28\x70\x55\x76')](_0x2d650e[_0x5028dc(0x21c,'\x6f\x65\x4e\x39')],_0x2d650e[_0x5028dc(0x29a,'\x4f\x56\x38\x74')])){if(_0x412125[_0x5028dc(0x267,'\x39\x32\x41\x74')+'\x6e\x63'](_0x52d6d5)){if(_0x2d650e[_0x5028dc(0x2c6,'\x2a\x34\x75\x26')](_0x2d650e[_0x5028dc(0x1fe,'\x28\x26\x5e\x42')],_0x2d650e[_0x5028dc(0x1ed,'\x4e\x26\x33\x31')])){if(!_0x5bee79[_0x5028dc(0x22e,'\x45\x73\x42\x77')+'\x6e\x63'](_0x3d4acf))return'';const _0x3ea0d9=_0x32c837[_0x5028dc(0x1f8,'\x68\x79\x6f\x36')+_0x5028dc(0x261,'\x4d\x24\x50\x32')](_0x546f0e,_0x2d650e[_0x5028dc(0x2cb,'\x4e\x54\x79\x70')]);if(!_0x3ea0d9[_0x5028dc(0x2e0,'\x59\x74\x4f\x41')]())return'';const _0x1dccab=_0x3ea0d9[_0x5028dc(0x259,'\x70\x4b\x6b\x4b')](_0x2d650e[_0x5028dc(0x1fb,'\x28\x70\x55\x76')]);if(_0x1dccab<-0x26f2+-0x17*-0x3f+-0x1*-0x2149)return'';const _0x51379c=_0x3ea0d9[_0x5028dc(0x244,'\x5a\x59\x4a\x66')](_0x1dccab)[_0x5028dc(0x24c,'\x69\x51\x56\x34')](/(?=^### \[)/m),_0x133764=_0x51379c[_0x5028dc(0x2a4,'\x66\x5a\x79\x5d')](-(-0x2420+0x231d+-0x3*-0x59));let _0x5222d4=_0x133764[_0x5028dc(0x234,'\x4a\x77\x5b\x71')]('');if(_0x2d650e['\x4e\x67\x4a\x63\x6f'](_0x5222d4[_0x5028dc(0x1d0,'\x66\x40\x58\x57')],_0x2c7e41)){_0x5222d4=_0x5222d4[_0x5028dc(0x2a6,'\x5d\x65\x58\x47')](-_0x47863c);const _0x3e4157=_0x5222d4[_0x5028dc(0x224,'\x5a\x59\x4a\x66')](_0x2d650e[_0x5028dc(0x23f,'\x58\x21\x38\x75')]);if(_0x2d650e['\x4e\x67\x4a\x63\x6f'](_0x3e4157,-0xa13+0x1f39+-0x1526))_0x5222d4=_0x5222d4[_0x5028dc(0x269,'\x66\x40\x58\x57')](_0x3e4157);}return _0x5222d4['\x74\x72\x69\x6d']();}else _0x26913d=_0x412125[_0x5028dc(0x1d2,'\x36\x4e\x23\x37')+_0x5028dc(0x200,'\x44\x46\x36\x41')](_0x52d6d5,_0x5028dc(0x212,'\x54\x76\x36\x63'));}}else _0x2dfa7e['\x73\x68\x69\x66\x74']();}catch(_0x4ee3f4){}if(!_0x26913d[_0x5028dc(0x1e4,'\x5a\x59\x4a\x66')]()){if(_0x2d650e[_0x5028dc(0x230,'\x4a\x77\x5b\x71')](_0x2d650e[_0x5028dc(0x2bb,'\x50\x6a\x2a\x31')],_0x2d650e[_0x5028dc(0x2d4,'\x50\x6a\x2a\x31')])){const _0x5049b9=_0x599a47[_0x5028dc(0x262,'\x28\x26\x5e\x42')](-0x3b*0x47+0xa42+-0x4*-0x187,_0x2d650e[_0x5028dc(0x28a,'\x55\x31\x6f\x62')](_0x5e8ab1[_0x5028dc(0x1d0,'\x66\x40\x58\x57')],0x3d7+-0x6d+-0x4f*0xb));_0x24e484=_0x2d650e[_0x5028dc(0x1dc,'\x71\x7a\x4a\x51')](_0x3e1866,_0x5c5c74[_0x5028dc(0x1e1,'\x34\x37\x23\x28')](-_0x5049b9)[_0x5028dc(0x1f1,'\x66\x40\x58\x57')](''));}else _0x26913d=_0x5028dc(0x28c,'\x34\x37\x23\x28')+_0x5028dc(0x252,'\x38\x30\x4d\x6a')+'\x61\x74\x69\x76\x65\x0a\x0a\x41'+_0x5028dc(0x228,'\x28\x70\x55\x76')+'\x6f\x67\x69\x63\x61\x6c\x20\x72'+_0x5028dc(0x22c,'\x56\x79\x34\x53')+_0x5028dc(0x2aa,'\x77\x4c\x48\x34')+_0x5028dc(0x2be,'\x6b\x6c\x4f\x43')+_0x5028dc(0x28b,'\x56\x79\x34\x53')+_0x5028dc(0x21e,'\x59\x74\x4f\x41')+_0x5028dc(0x2cc,'\x59\x74\x4f\x41');}const _0x46665f=_0x2d650e['\x58\x65\x42\x75\x69'](_0x26913d,_0x507c14),_0x6e4f80=_0x2d650e[_0x5028dc(0x2b4,'\x36\x61\x36\x66')](_0x14a6c6,_0x46665f),_0xa90c59=_0x2d650e[_0x5028dc(0x2b1,'\x36\x61\x36\x66')](_0x52d6d5,_0x2d650e[_0x5028dc(0x24b,'\x46\x45\x24\x4f')]);_0x412125[_0x5028dc(0x222,'\x6f\x65\x4e\x39')+_0x5028dc(0x27f,'\x29\x54\x28\x51')](_0xa90c59,_0x6e4f80,_0x2d650e[_0x5028dc(0x217,'\x29\x54\x28\x51')]),_0x412125[_0x5028dc(0x2b7,'\x45\x73\x42\x77')+'\x6e\x63'](_0xa90c59,_0x52d6d5);}function _0x14a6c6(_0x20bfa3){const _0x5830df=_0x3c381f,_0x423b1c={};_0x423b1c[_0x5830df(0x2c4,'\x63\x76\x73\x70')]=function(_0x2cf363,_0x45657b){return _0x2cf363<=_0x45657b;},_0x423b1c[_0x5830df(0x231,'\x4a\x6f\x40\x36')]=_0x5830df(0x2cf,'\x62\x61\x23\x73'),_0x423b1c[_0x5830df(0x1f0,'\x36\x4e\x23\x37')]=function(_0x14ed9c,_0x5ab256){return _0x14ed9c>_0x5ab256;},_0x423b1c[_0x5830df(0x1e0,'\x78\x44\x78\x6a')]=function(_0x5e596e,_0x545a79){return _0x5e596e+_0x545a79;},_0x423b1c[_0x5830df(0x20d,'\x75\x56\x51\x74')]=_0x5830df(0x26d,'\x4e\x26\x33\x31'),_0x423b1c[_0x5830df(0x239,'\x62\x61\x23\x73')]=function(_0x12f83d,_0x5f3690){return _0x12f83d+_0x5f3690;};const _0xee64e6=_0x423b1c;if(_0xee64e6[_0x5830df(0x1ff,'\x68\x79\x6f\x36')](_0x20bfa3[_0x5830df(0x284,'\x68\x79\x6f\x36')],_0x55c4a1))return _0x20bfa3;const _0x482fb2=_0x20bfa3[_0x5830df(0x1da,'\x75\x56\x51\x74')](_0xee64e6[_0x5830df(0x25f,'\x77\x4c\x48\x34')]);if(_0x482fb2<0x2507+-0xc85+-0x1882)return _0x20bfa3[_0x5830df(0x254,'\x5b\x45\x64\x4b')](-_0x55c4a1);const _0x5b454d=_0x20bfa3[_0x5830df(0x27d,'\x36\x4e\x23\x37')](-0x10*0xfb+0x1fe+0xdb2*0x1,_0x482fb2),_0x16e632=_0x20bfa3[_0x5830df(0x2a6,'\x5d\x65\x58\x47')](_0x482fb2)[_0x5830df(0x20b,'\x36\x4e\x23\x37')](/(?=^### \[)/m);while(_0xee64e6[_0x5830df(0x210,'\x66\x5a\x79\x5d')](_0x16e632[_0x5830df(0x2d7,'\x4e\x54\x79\x70')],_0x3c2556)){_0x16e632['\x73\x68\x69\x66\x74']();}let _0x16421a=_0xee64e6['\x65\x58\x47\x4e\x6c'](_0x5b454d,_0x16e632[_0x5830df(0x26a,'\x46\x45\x24\x4f')](''));if(_0x16421a[_0x5830df(0x215,'\x29\x54\x28\x51')]>_0x55c4a1){if(_0xee64e6[_0x5830df(0x24e,'\x78\x44\x78\x6a')]===_0x5830df(0x2c0,'\x72\x4d\x2a\x21')){const _0x3101a1=Math[_0x5830df(0x1f5,'\x56\x79\x34\x53')](0x14eb+-0xe4b*-0x1+-0x2335,_0x16e632[_0x5830df(0x1e3,'\x34\x37\x23\x28')]-(-0xbc2+0x1b1d+-0x7ab*0x2));_0x16421a=_0xee64e6[_0x5830df(0x248,'\x5a\x59\x4a\x66')](_0x5b454d,_0x16e632[_0x5830df(0x232,'\x6f\x65\x4e\x39')](-_0x3101a1)['\x6a\x6f\x69\x6e'](''));}else try{const _0x56d2e8={};_0x56d2e8['\x72\x65\x63\x75\x72\x73\x69\x76'+'\x65']=!![];if(!_0x24ae98[_0x5830df(0x23a,'\x58\x21\x38\x75')+'\x6e\x63'](_0x4fa6b4))_0xa0883c[_0x5830df(0x276,'\x5d\x65\x58\x47')+'\x63'](_0xc8d56,_0x56d2e8);}catch(_0x4a6eef){}}return _0x16421a;}function _0x1119(_0x15a96c,_0x53aa91){_0x15a96c=_0x15a96c-(0x1b*0x12d+0x2108+-0x3ef7);const _0x29ed84=_0x194a();let _0x1f3530=_0x29ed84[_0x15a96c];if(_0x1119['\x52\x65\x72\x65\x57\x61']===undefined){var _0x427bd4=function(_0x4c7060){const _0x192807='\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 _0x4e7cb3='',_0x16d779='',_0x1a16c2=_0x4e7cb3+_0x427bd4,_0x538e24=(''+function(){return-0x1910+-0xa92*0x2+0x2e34;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0xed9+0x2*-0x1d3+-0xb32);for(let _0x3af52f=0x17b*0xb+-0x6a0+-0x9a9,_0x5f4605,_0x5ed972,_0x4d181f=0x13e0+-0x905+-0xadb;_0x5ed972=_0x4c7060['\x63\x68\x61\x72\x41\x74'](_0x4d181f++);~_0x5ed972&&(_0x5f4605=_0x3af52f%(-0xef9+0xb*-0x41+0x11c8)?_0x5f4605*(-0x1eb2+-0xd*0x34+0x2196)+_0x5ed972:_0x5ed972,_0x3af52f++%(0x24f*0x6+-0x2*0x27b+0x10*-0x8e))?_0x4e7cb3+=_0x538e24||_0x1a16c2['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4d181f+(0xfc9*0x2+-0x98+-0x1ef0))-(0x3b*-0x5f+-0x141b+-0x1*-0x2a0a)!==0x1a60+0x7b*-0x48+0x838?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x17*0x95+-0xbb1+0x1a13&_0x5f4605>>(-(0x5ff*-0x1+0x5*0xd3+0x1e2)*_0x3af52f&0x20dc*-0x1+-0x1cac+0x2*0x1ec7)):_0x3af52f:0x1*-0x167+0x178e+-0x1627){_0x5ed972=_0x192807['\x69\x6e\x64\x65\x78\x4f\x66'](_0x5ed972);}for(let _0xf92a43=0x2257+0x2663*0x1+0x3a*-0x141,_0x4e312a=_0x4e7cb3['\x6c\x65\x6e\x67\x74\x68'];_0xf92a43<_0x4e312a;_0xf92a43++){_0x16d779+='\x25'+('\x30\x30'+_0x4e7cb3['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xf92a43)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x1d8d+-0xdfc+0x1*0x2b99))['\x73\x6c\x69\x63\x65'](-(-0x260c+-0x18a3+0xb*0x5b3));}return decodeURIComponent(_0x16d779);};const _0xcc3d9a=function(_0x3927cd,_0x31b122){let _0x3d5a02=[],_0x2c5553=0x596+0xa35+-0x137*0xd,_0xe0cb77,_0x326ae6='';_0x3927cd=_0x427bd4(_0x3927cd);let _0x5b0055;for(_0x5b0055=-0x8*-0x1a7+-0x1791*0x1+0xa59;_0x5b0055<0x682*0x2+0x1*-0x10f5+-0x1*-0x4f1;_0x5b0055++){_0x3d5a02[_0x5b0055]=_0x5b0055;}for(_0x5b0055=0x2628+0x1387+0x39af*-0x1;_0x5b0055<-0x18a9*-0x1+-0x1*-0x4+-0x17ad;_0x5b0055++){_0x2c5553=(_0x2c5553+_0x3d5a02[_0x5b0055]+_0x31b122['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5b0055%_0x31b122['\x6c\x65\x6e\x67\x74\x68']))%(-0x20c6+-0x53*-0x76+-0x47c),_0xe0cb77=_0x3d5a02[_0x5b0055],_0x3d5a02[_0x5b0055]=_0x3d5a02[_0x2c5553],_0x3d5a02[_0x2c5553]=_0xe0cb77;}_0x5b0055=-0x3d4*0x3+-0x1*0x1bb0+0x272c,_0x2c5553=0x1d0f+0x402+-0x69d*0x5;for(let _0x234a4b=0x1*-0xe+0x14*-0x44+0xe5*0x6;_0x234a4b<_0x3927cd['\x6c\x65\x6e\x67\x74\x68'];_0x234a4b++){_0x5b0055=(_0x5b0055+(-0x98*0x17+-0x47*-0x1+0x476*0x3))%(0x12*-0x223+0x6f*0x2d+0x13f3),_0x2c5553=(_0x2c5553+_0x3d5a02[_0x5b0055])%(0x1*0x166+-0x1c61+0xd*0x227),_0xe0cb77=_0x3d5a02[_0x5b0055],_0x3d5a02[_0x5b0055]=_0x3d5a02[_0x2c5553],_0x3d5a02[_0x2c5553]=_0xe0cb77,_0x326ae6+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x3927cd['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x234a4b)^_0x3d5a02[(_0x3d5a02[_0x5b0055]+_0x3d5a02[_0x2c5553])%(-0x23bd+-0xb5*0x1c+-0x3889*-0x1)]);}return _0x326ae6;};_0x1119['\x4c\x65\x68\x64\x6d\x79']=_0xcc3d9a,_0x1119['\x48\x56\x6c\x49\x74\x6a']={},_0x1119['\x52\x65\x72\x65\x57\x61']=!![];}const _0x544332=_0x29ed84[-0x1*-0xbf+-0xa39+0x97a],_0x3709d7=_0x15a96c+_0x544332,_0x41c5d6=_0x1119['\x48\x56\x6c\x49\x74\x6a'][_0x3709d7];if(!_0x41c5d6){if(_0x1119['\x4e\x73\x54\x6b\x55\x4d']===undefined){const _0x501705=function(_0x17cc87){this['\x62\x4d\x4b\x65\x70\x44']=_0x17cc87,this['\x4d\x41\x54\x69\x56\x7a']=[-0x7e7+-0xdb2*-0x1+-0x5ca,-0xd23+-0x70*-0x49+0x1*-0x12cd,-0xee4+0x233f+-0x145b],this['\x78\x6d\x74\x6a\x68\x78']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x70\x61\x63\x4b\x63\x6d']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x44\x6e\x44\x4f\x69\x54']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x501705['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x41\x49\x58\x41\x46\x66']=function(){const _0x48b216=new RegExp(this['\x70\x61\x63\x4b\x63\x6d']+this['\x44\x6e\x44\x4f\x69\x54']),_0x6b20a=_0x48b216['\x74\x65\x73\x74'](this['\x78\x6d\x74\x6a\x68\x78']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x4d\x41\x54\x69\x56\x7a'][0x4d6*-0x2+0x24*-0x12+-0x1*-0xc35]:--this['\x4d\x41\x54\x69\x56\x7a'][0x17*-0x17e+-0x39f*0x6+-0x380c*-0x1];return this['\x76\x70\x62\x58\x43\x78'](_0x6b20a);},_0x501705['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x76\x70\x62\x58\x43\x78']=function(_0x391e6a){if(!Boolean(~_0x391e6a))return _0x391e6a;return this['\x56\x51\x57\x71\x62\x41'](this['\x62\x4d\x4b\x65\x70\x44']);},_0x501705['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x56\x51\x57\x71\x62\x41']=function(_0x3f51eb){for(let _0x429444=-0xb28+-0xe40+0x1968,_0x2d5591=this['\x4d\x41\x54\x69\x56\x7a']['\x6c\x65\x6e\x67\x74\x68'];_0x429444<_0x2d5591;_0x429444++){this['\x4d\x41\x54\x69\x56\x7a']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x2d5591=this['\x4d\x41\x54\x69\x56\x7a']['\x6c\x65\x6e\x67\x74\x68'];}return _0x3f51eb(this['\x4d\x41\x54\x69\x56\x7a'][0x173+0x1b29+0x1c9c*-0x1]);},(''+function(){return 0x2*-0x289+-0x10af*0x2+0x2670;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x1782+0xd*0x19d+0x1*-0x2c7a)&&new _0x501705(_0x1119)['\x41\x49\x58\x41\x46\x66'](),_0x1119['\x4e\x73\x54\x6b\x55\x4d']=!![];}_0x1f3530=_0x1119['\x4c\x65\x68\x64\x6d\x79'](_0x1f3530,_0x53aa91),_0x1119['\x48\x56\x6c\x49\x74\x6a'][_0x3709d7]=_0x1f3530;}else _0x1f3530=_0x41c5d6;return _0x1f3530;}function _0x33b952(_0xc8729e){const _0x53524a=_0x3c381f,_0x45dc77={'\x44\x64\x6f\x4f\x41':_0x53524a(0x229,'\x29\x41\x77\x6b')+_0x53524a(0x21f,'\x45\x73\x42\x77'),'\x66\x6a\x6b\x45\x51':function(_0x5d8980){return _0x5d8980();},'\x67\x55\x52\x4d\x6a':_0x53524a(0x2cd,'\x66\x5a\x79\x5d'),'\x51\x41\x75\x7a\x61':_0x53524a(0x241,'\x69\x51\x56\x34'),'\x77\x76\x46\x5a\x75':function(_0x3bf756,_0xee1e4d){return _0x3bf756<_0xee1e4d;},'\x4e\x74\x70\x41\x62':function(_0x516129,_0x1aa3bd){return _0x516129>_0x1aa3bd;},'\x62\x6b\x44\x71\x5a':_0x53524a(0x2a1,'\x62\x61\x23\x73'),'\x6a\x72\x68\x68\x64':_0x53524a(0x280,'\x48\x68\x52\x33'),'\x75\x78\x6a\x5a\x64':function(_0x2f4e95,_0x82898b){return _0x2f4e95===_0x82898b;},'\x67\x70\x6b\x43\x4c':_0x53524a(0x2e1,'\x75\x5d\x40\x6f')},_0x1f670e=Number[_0x53524a(0x204,'\x36\x61\x36\x66')](_0xc8729e)?_0xc8729e:-0x100d*0x1+0xe59+-0x1154*-0x1,_0x4157d6=_0x45dc77['\x66\x6a\x6b\x45\x51'](_0x443fa4);try{if(!_0x412125[_0x53524a(0x22f,'\x36\x61\x36\x66')+'\x6e\x63'](_0x4157d6))return'';const _0x162478=_0x412125[_0x53524a(0x2a5,'\x4d\x24\x50\x32')+_0x53524a(0x1e9,'\x4e\x54\x79\x70')](_0x4157d6,_0x45dc77[_0x53524a(0x288,'\x66\x5a\x79\x5d')]);if(!_0x162478[_0x53524a(0x209,'\x4b\x37\x5a\x6c')]())return'';const _0x4edb9a=_0x162478[_0x53524a(0x1d3,'\x46\x45\x24\x4f')](_0x45dc77[_0x53524a(0x266,'\x4f\x56\x38\x74')]);if(_0x45dc77[_0x53524a(0x29f,'\x56\x79\x34\x53')](_0x4edb9a,0xdd5*0x1+-0x48*0x25+-0x36d*0x1))return'';const _0x28be69=_0x162478[_0x53524a(0x2c2,'\x63\x76\x73\x70')](_0x4edb9a)[_0x53524a(0x1d9,'\x75\x56\x51\x74')](/(?=^### \[)/m),_0x22dd94=_0x28be69[_0x53524a(0x272,'\x75\x55\x53\x6c')](-(0x5b9*0x2+-0x7*-0x442+0x527*-0x8));let _0x2d9c5d=_0x22dd94[_0x53524a(0x27e,'\x66\x5a\x79\x5d')]('');if(_0x45dc77[_0x53524a(0x23b,'\x4e\x26\x33\x31')](_0x2d9c5d[_0x53524a(0x2bc,'\x5a\x59\x4a\x66')],_0x1f670e)){if(_0x45dc77[_0x53524a(0x260,'\x28\x70\x55\x76')]!==_0x45dc77[_0x53524a(0x2a7,'\x6b\x6c\x4f\x43')])return _0x3bfe76[_0x53524a(0x25c,'\x34\x37\x23\x28')]()[_0x53524a(0x221,'\x78\x44\x78\x6a')](vkxfgO['\x44\x64\x6f\x4f\x41'])[_0x53524a(0x1f6,'\x75\x55\x53\x6c')]()[_0x53524a(0x2a8,'\x5b\x42\x44\x58')+_0x53524a(0x1ef,'\x38\x30\x4d\x6a')](_0x3f15b3)['\x73\x65\x61\x72\x63\x68']('\x28\x28\x28\x2e\x2b\x29\x2b\x29'+'\x2b\x29\x2b\x24');else{_0x2d9c5d=_0x2d9c5d[_0x53524a(0x226,'\x72\x4d\x2a\x21')](-_0x1f670e);const _0x39ee2e=_0x2d9c5d['\x69\x6e\x64\x65\x78\x4f\x66'](_0x45dc77[_0x53524a(0x219,'\x71\x7a\x4a\x51')]);if(_0x39ee2e>-0x1427+0x1c71+-0x425*0x2)_0x2d9c5d=_0x2d9c5d[_0x53524a(0x2a6,'\x5d\x65\x58\x47')](_0x39ee2e);}}return _0x2d9c5d[_0x53524a(0x297,'\x46\x45\x24\x4f')]();}catch(_0x5de954){if(_0x45dc77[_0x53524a(0x235,'\x66\x5a\x79\x5d')](_0x45dc77[_0x53524a(0x1e7,'\x28\x70\x55\x76')],_0x45dc77[_0x53524a(0x1de,'\x72\x4d\x2a\x21')]))return'';else _0x4470ca=_0x53524a(0x1ec,'\x75\x56\x51\x74')+_0x53524a(0x1ea,'\x39\x32\x41\x74')+_0x53524a(0x1e6,'\x75\x55\x53\x6c')+_0x53524a(0x2c9,'\x62\x61\x23\x73')+_0x53524a(0x285,'\x5a\x59\x4a\x66')+_0x53524a(0x282,'\x46\x45\x24\x4f')+_0x53524a(0x257,'\x69\x51\x56\x34')+_0x53524a(0x1d7,'\x46\x45\x24\x4f')+_0x53524a(0x2ce,'\x6f\x65\x4e\x39')+_0x53524a(0x291,'\x34\x37\x23\x28')+_0x53524a(0x22b,'\x72\x4d\x2a\x21');}}const _0xac8419={};_0xac8419[_0x3c381f(0x251,'\x36\x4e\x23\x37')+'\x72\x72\x61\x74\x69\x76\x65']=_0x5bb42d,_0xac8419[_0x3c381f(0x2e3,'\x4e\x26\x33\x31')+_0x3c381f(0x255,'\x2a\x34\x75\x26')+_0x3c381f(0x273,'\x71\x7a\x4a\x51')]=_0x33b952,_0xac8419[_0x3c381f(0x274,'\x56\x79\x34\x53')+_0x3c381f(0x1d5,'\x69\x51\x56\x34')]=_0x14a6c6,module['\x65\x78\x70\x6f\x72\x74\x73']=_0xac8419;
|