@evomap/evolver-core 2.0.0 → 2.0.1
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/dist/algo/antiDistill.js +1 -167
- package/dist/algo/bans.js +1 -33
- package/dist/algo/candidateAssembly.js +1 -273
- package/dist/algo/capabilityCandidates.js +1 -146
- package/dist/algo/confidence.js +1 -196
- package/dist/algo/conversationSniffer.js +1 -149
- package/dist/algo/cycleEngine.js +1 -625
- package/dist/algo/cycleFailureClassifier.js +1 -112
- package/dist/algo/epigenetics.js +1 -41
- package/dist/algo/evolutionEvent.js +1 -24
- package/dist/algo/exploration.js +1 -68
- package/dist/algo/geneHealth.js +1 -17
- package/dist/algo/geneIntake.js +1 -128
- package/dist/algo/genePromotion.js +1 -53
- package/dist/algo/geneSelection.js +1 -546
- package/dist/algo/index.js +1 -22
- package/dist/algo/memoryGraph.js +1 -86
- package/dist/algo/mutation.js +1 -22
- package/dist/algo/orchestrator.js +1 -87
- package/dist/algo/publishEligibility.js +1 -52
- package/dist/algo/solidify.js +1 -63
- package/dist/algo/strategyPresets.js +1 -61
- package/dist/algo/ucb1.js +1 -156
- package/dist/benchmark/antiGeneBenchmark.js +1 -252
- package/dist/benchmark/antiGeneImpact.js +1 -34
- package/dist/benchmark/antiGeneRollout.js +1 -269
- package/dist/benchmark/benchmark.js +1 -26
- package/dist/benchmark/evolutionThesisSolver.js +1 -41
- package/dist/benchmark/index.js +1 -7
- package/dist/benchmark/selectionFlatAbstention.js +1 -481
- package/dist/benchmark/thesis.js +1 -150
- package/dist/benchmark/triggerShift.js +1 -106
- package/dist/cycle/cycleTimeline.js +1 -74
- package/dist/cycle/index.js +1 -2
- package/dist/cycle/stateMachine.js +1 -25
- package/dist/hub/agentDirectory.js +1 -104
- package/dist/hub/assetCallLog.js +1 -195
- package/dist/hub/bindings.js +1 -121
- package/dist/hub/capability.js +1 -1
- package/dist/hub/conversationDistiller.js +1 -264
- package/dist/hub/fake.js +1 -70
- package/dist/hub/hubReview.js +1 -106
- package/dist/hub/index.js +1 -11
- package/dist/hub/ingest.js +1 -15
- package/dist/hub/questionGenerator.js +1 -408
- package/dist/hub/reuseDecision.js +1 -127
- package/dist/hub/sanitize.js +1 -322
- package/dist/material/boundary.js +1 -14
- package/dist/material/consumer.js +1 -55
- package/dist/material/emit.js +1 -52
- package/dist/material/factory.js +1 -25
- package/dist/material/index.js +1 -9
- package/dist/material/materialArchive.js +1 -466
- package/dist/material/materialStore.js +1 -69
- package/dist/material/sampling.js +1 -39
- package/dist/material/sources.js +1 -33
- package/dist/material/watermark.js +1 -76
- package/dist/personality/drift.js +1 -106
- package/dist/personality/events.js +1 -37
- package/dist/personality/evolveOps.js +1 -93
- package/dist/personality/index.js +1 -11
- package/dist/personality/mutate.js +1 -39
- package/dist/personality/pivot.js +1 -22
- package/dist/personality/prompt.js +1 -62
- package/dist/personality/riskGate.js +1 -80
- package/dist/personality/schema.js +1 -119
- package/dist/personality/select.js +1 -71
- package/dist/personality/stats.js +1 -82
- package/dist/personality/store.js +1 -92
- package/dist/schema/common.js +1 -17
- package/dist/schema/evolutionGraph.js +1 -187
- package/dist/schema/index.js +1 -6
- package/dist/schema/material.js +1 -50
- package/dist/schema/problem.js +1 -45
- package/dist/schema/proofOfWork.js +1 -9
- package/dist/schema/signal.js +1 -19
- package/dist/signals/curriculum.js +1 -202
- package/dist/signals/cycleHistoryFromEvents.js +1 -105
- package/dist/signals/expand.js +1 -293
- package/dist/signals/extractor.js +1 -82
- package/dist/signals/index.js +1 -8
- package/dist/signals/metaSignals.js +1 -200
- package/dist/signals/signalGate.js +1 -40
- package/dist/signals/taskDomain.js +1 -43
- package/dist/signals/traceSignals.js +1 -123
- package/dist/strategy/constraintAblation.js +1 -2820
- package/dist/strategy/constraintAblationPredicates.js +1 -339
- package/dist/strategy/experiment.js +1 -63
- package/dist/strategy/index.js +1 -3
- package/dist/strategy/strategyPoint.js +1 -23
- package/package.json +1 -1
package/dist/algo/cycleEngine.js
CHANGED
|
@@ -1,625 +1 @@
|
|
|
1
|
-
import { LineTooLargeError } from '../events/eventStore.js';
|
|
2
|
-
import { TERMINAL, canTransition, stageForEventType } from '../cycle/stateMachine.js';
|
|
3
|
-
import {} from './geneSelection.js';
|
|
4
|
-
import { detectPlateau } from './exploration.js';
|
|
5
|
-
import { epigeneticPenaltyForIds } from './epigenetics.js';
|
|
6
|
-
import { deriveConfidenceEdges, confidenceFor, signalFingerprint, inertBannedGeneIds, INERT_BAN_OBSERVATION_WINDOW, } from './confidence.js';
|
|
7
|
-
import { captureEnvFingerprint, envFingerprintKey } from '../bootstrap/envFingerprint.js';
|
|
8
|
-
import { buildMutation } from './mutation.js';
|
|
9
|
-
import { gatePersonalityRisk } from '../personality/riskGate.js';
|
|
10
|
-
import { emitPersonalityRiskGated, emitPersonalitySelected } from '../personality/events.js';
|
|
11
|
-
import { applySelectForRun, applyStatsUpdate, applyForcePivot } from '../personality/evolveOps.js';
|
|
12
|
-
import { solidify } from './solidify.js';
|
|
13
|
-
import { buildEvolutionEvent } from './evolutionEvent.js';
|
|
14
|
-
import { cycleRecordsFromEvents } from '../signals/cycleHistoryFromEvents.js';
|
|
15
|
-
import { withoutTaskDomainSignals } from '../signals/taskDomain.js';
|
|
16
|
-
import { computeMetaSignals, deriveCycleHistory } from '../signals/metaSignals.js';
|
|
17
|
-
import { capabilityGapsFromSignals, curriculumOutcomesFromEvents, generateCurriculumSignals, normalizeCapabilityGaps, } from '../signals/curriculum.js';
|
|
18
|
-
import { resolveStrategy } from './strategyPresets.js';
|
|
19
|
-
import { classifyCycleFailure, } from './cycleFailureClassifier.js';
|
|
20
|
-
import { isDistilledGeneId } from './geneIntake.js';
|
|
21
|
-
import { deriveUcb1History } from './ucb1.js';
|
|
22
|
-
function persistedTerminalAfterLatestSelection(ingestor, cycleId) {
|
|
23
|
-
const events = ingestor.readAll();
|
|
24
|
-
let selectedSeq = -1;
|
|
25
|
-
for (let index = events.length - 1; index >= 0; index -= 1) {
|
|
26
|
-
const event = events[index];
|
|
27
|
-
if (event.type === 'decision.gene_selected' && event.payload['cycleId'] === cycleId) {
|
|
28
|
-
selectedSeq = event.seq;
|
|
29
|
-
break;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
if (selectedSeq < 0)
|
|
33
|
-
return null;
|
|
34
|
-
for (let index = events.length - 1; index >= 0; index -= 1) {
|
|
35
|
-
const event = events[index];
|
|
36
|
-
if (event.seq <= selectedSeq)
|
|
37
|
-
break;
|
|
38
|
-
if (event.payload['cycleId'] !== cycleId)
|
|
39
|
-
continue;
|
|
40
|
-
const terminal = stageForEventType(event.type);
|
|
41
|
-
if (terminal && TERMINAL.has(terminal))
|
|
42
|
-
return terminal;
|
|
43
|
-
}
|
|
44
|
-
return null;
|
|
45
|
-
}
|
|
46
|
-
function selectionPolicyEventProjection(trace) {
|
|
47
|
-
return {
|
|
48
|
-
requested: trace.requested,
|
|
49
|
-
effective: trace.effective,
|
|
50
|
-
version: trace.selectionPolicyVersion,
|
|
51
|
-
rewardVersion: trace.rewardPolicyVersion,
|
|
52
|
-
...(trace.arm ? {
|
|
53
|
-
arm: {
|
|
54
|
-
id: trace.arm.armId,
|
|
55
|
-
pulls: trace.arm.pulls,
|
|
56
|
-
completed: trace.arm.completedPulls,
|
|
57
|
-
total: trace.arm.totalPulls,
|
|
58
|
-
mean: trace.arm.meanReward,
|
|
59
|
-
index: trace.arm.index,
|
|
60
|
-
},
|
|
61
|
-
} : {}),
|
|
62
|
-
...(trace.shadowDisagrees !== undefined ? { disagrees: trace.shadowDisagrees } : {}),
|
|
63
|
-
...(trace.fallbackReason ? { fallback: trace.fallbackReason } : {}),
|
|
64
|
-
};
|
|
65
|
-
}
|
|
66
|
-
function minimalSelectionPolicyEventProjection(trace) {
|
|
67
|
-
return {
|
|
68
|
-
requested: trace.requested,
|
|
69
|
-
effective: trace.effective,
|
|
70
|
-
version: trace.selectionPolicyVersion,
|
|
71
|
-
rewardVersion: trace.rewardPolicyVersion,
|
|
72
|
-
};
|
|
73
|
-
}
|
|
74
|
-
function selectionGuardEventProjection(trace) {
|
|
75
|
-
return {
|
|
76
|
-
mode: trace.mode,
|
|
77
|
-
version: trace.version,
|
|
78
|
-
status: trace.status,
|
|
79
|
-
...(trace.reason ? { reason: trace.reason } : {}),
|
|
80
|
-
...(trace.maxMatch !== undefined ? { maxMatch: trace.maxMatch } : {}),
|
|
81
|
-
...(trace.matchSpread !== undefined ? { spread: trace.matchSpread } : {}),
|
|
82
|
-
};
|
|
83
|
-
}
|
|
84
|
-
function minimalSelectionGuardEventProjection(trace) {
|
|
85
|
-
return {
|
|
86
|
-
mode: trace.mode,
|
|
87
|
-
version: trace.version,
|
|
88
|
-
status: trace.status,
|
|
89
|
-
...(trace.reason ? { reason: trace.reason } : {}),
|
|
90
|
-
};
|
|
91
|
-
}
|
|
92
|
-
function selectionCandidateEventProjection(candidate) {
|
|
93
|
-
const { matchScore: _matchScore, ...persisted } = candidate;
|
|
94
|
-
return persisted;
|
|
95
|
-
}
|
|
96
|
-
async function ingestGeneSelectedWithTraceBudget(ingestor, event, policyTrace, guardTrace) {
|
|
97
|
-
const guard = guardTrace ? selectionGuardEventProjection(guardTrace) : undefined;
|
|
98
|
-
const minimalGuard = guardTrace ? minimalSelectionGuardEventProjection(guardTrace) : undefined;
|
|
99
|
-
const projections = [];
|
|
100
|
-
if (policyTrace) {
|
|
101
|
-
projections.push({ selectionPolicy: selectionPolicyEventProjection(policyTrace), ...(guard ? { selectionGuard: guard } : {}) });
|
|
102
|
-
projections.push({ selectionPolicy: minimalSelectionPolicyEventProjection(policyTrace), ...(guard ? { selectionGuard: guard } : {}) });
|
|
103
|
-
if (minimalGuard) {
|
|
104
|
-
projections.push({ selectionPolicy: minimalSelectionPolicyEventProjection(policyTrace), selectionGuard: minimalGuard });
|
|
105
|
-
projections.push({ selectionGuard: minimalGuard });
|
|
106
|
-
}
|
|
107
|
-
projections.push({ selectionPolicy: minimalSelectionPolicyEventProjection(policyTrace) });
|
|
108
|
-
}
|
|
109
|
-
else if (guard) {
|
|
110
|
-
projections.push({ selectionGuard: guard });
|
|
111
|
-
if (minimalGuard)
|
|
112
|
-
projections.push({ selectionGuard: minimalGuard });
|
|
113
|
-
}
|
|
114
|
-
projections.push({});
|
|
115
|
-
for (let index = 0; index < projections.length; index += 1) {
|
|
116
|
-
const projection = projections[index];
|
|
117
|
-
try {
|
|
118
|
-
await ingestor.ingest({
|
|
119
|
-
type: event.type,
|
|
120
|
-
human: event.human,
|
|
121
|
-
payload: { ...event.payload, ...projection },
|
|
122
|
-
});
|
|
123
|
-
return;
|
|
124
|
-
}
|
|
125
|
-
catch (error) {
|
|
126
|
-
if (!(error instanceof LineTooLargeError) || index === projections.length - 1)
|
|
127
|
-
throw error;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
/** Read the trailing run of cycle outcomes (newest last) from the event log, for plateau detection. */
|
|
132
|
-
function recentCycleOutcomes(ingestor, window) {
|
|
133
|
-
let events;
|
|
134
|
-
try {
|
|
135
|
-
events = ingestor.tail(window);
|
|
136
|
-
}
|
|
137
|
-
catch {
|
|
138
|
-
return [];
|
|
139
|
-
}
|
|
140
|
-
const out = [];
|
|
141
|
-
for (const e of events) {
|
|
142
|
-
if (e.type === 'cycle.solidified')
|
|
143
|
-
out.push('success');
|
|
144
|
-
else if (e.type === 'cycle.failed')
|
|
145
|
-
out.push('failed');
|
|
146
|
-
}
|
|
147
|
-
return out;
|
|
148
|
-
}
|
|
149
|
-
/** Read recent per-(gene, env) cycle outcomes from the event log, for epigenetic per-environment suppression. */
|
|
150
|
-
function recentGeneOutcomes(ingestor, window) {
|
|
151
|
-
let events;
|
|
152
|
-
try {
|
|
153
|
-
events = ingestor.tail(window);
|
|
154
|
-
}
|
|
155
|
-
catch {
|
|
156
|
-
return [];
|
|
157
|
-
}
|
|
158
|
-
const out = [];
|
|
159
|
-
for (const e of events) {
|
|
160
|
-
if (e.type !== 'cycle.solidified' && e.type !== 'cycle.failed')
|
|
161
|
-
continue;
|
|
162
|
-
const p = e.payload;
|
|
163
|
-
const gene = typeof p?.gene === 'string' ? p.gene : undefined;
|
|
164
|
-
const env = typeof p?.env === 'string' ? p.env : undefined;
|
|
165
|
-
if (!gene || !env)
|
|
166
|
-
continue; // pre-epigenetic events lack the tags; skip
|
|
167
|
-
out.push({ geneId: gene, envKey: env, status: e.type === 'cycle.solidified' ? 'success' : 'failed' });
|
|
168
|
-
}
|
|
169
|
-
return out;
|
|
170
|
-
}
|
|
171
|
-
function historyMetaSignals(ingestor, window) {
|
|
172
|
-
try {
|
|
173
|
-
return computeMetaSignals(deriveCycleHistory(cycleRecordsFromEvents(ingestor.tail(window))));
|
|
174
|
-
}
|
|
175
|
-
catch {
|
|
176
|
-
return [];
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
function historyCycleCount(ingestor, window, currentCycleId) {
|
|
180
|
-
let events;
|
|
181
|
-
try {
|
|
182
|
-
events = ingestor.tail(window);
|
|
183
|
-
}
|
|
184
|
-
catch {
|
|
185
|
-
return 1;
|
|
186
|
-
}
|
|
187
|
-
const cycleIds = new Set();
|
|
188
|
-
for (const e of events) {
|
|
189
|
-
if (e.type !== 'cycle.started' && e.type !== 'cycle.solidified' && e.type !== 'cycle.failed' && e.type !== 'cycle.aborted')
|
|
190
|
-
continue;
|
|
191
|
-
const p = e.payload;
|
|
192
|
-
if (typeof p?.cycleId === 'string')
|
|
193
|
-
cycleIds.add(p.cycleId);
|
|
194
|
-
}
|
|
195
|
-
cycleIds.add(currentCycleId);
|
|
196
|
-
return cycleIds.size;
|
|
197
|
-
}
|
|
198
|
-
function mergeSignals(signals, metaSignals) {
|
|
199
|
-
return [...new Set([...signals, ...metaSignals])];
|
|
200
|
-
}
|
|
201
|
-
function candidateIds(c) {
|
|
202
|
-
return [...new Set([c.geneId, c.assetId].filter((id) => typeof id === 'string' && id.length > 0))];
|
|
203
|
-
}
|
|
204
|
-
function isCandidateInSet(c, ids) {
|
|
205
|
-
return candidateIds(c).some((id) => ids.has(id));
|
|
206
|
-
}
|
|
207
|
-
function categoryForStrategy(category, strategy) {
|
|
208
|
-
if (strategy.name === 'innovate')
|
|
209
|
-
return 'innovate';
|
|
210
|
-
if (strategy.name === 'steady-state')
|
|
211
|
-
return 'optimize';
|
|
212
|
-
return category;
|
|
213
|
-
}
|
|
214
|
-
/**
|
|
215
|
-
* Derive preferred-gene confidence observations from the event log (positive cross-cycle learning).
|
|
216
|
-
* Each terminal cycle (cycle.solidified / cycle.failed) carries the gene that ran and the outcome; the signals
|
|
217
|
-
* that drove it are carried by the cycle.signals_collected event of the SAME cycleId. We join the two on
|
|
218
|
-
* cycleId, fingerprint the signals, and emit one (signalFingerprint, geneId, status, at) observation per cycle.
|
|
219
|
-
* Reading from the same append-only log makes this fully replayable. ad-hoc (innovate) cycles have no gene to
|
|
220
|
-
* credit and are skipped.
|
|
221
|
-
*/
|
|
222
|
-
function recentConfidenceObservations(ingestor, window, opts = {}) {
|
|
223
|
-
let events;
|
|
224
|
-
try {
|
|
225
|
-
events = ingestor.tail(window);
|
|
226
|
-
}
|
|
227
|
-
catch {
|
|
228
|
-
return [];
|
|
229
|
-
}
|
|
230
|
-
// First pass: map cycleId → its collected signals.
|
|
231
|
-
const signalsByCycle = new Map();
|
|
232
|
-
for (const e of events) {
|
|
233
|
-
if (e.type !== 'cycle.signals_collected')
|
|
234
|
-
continue;
|
|
235
|
-
const p = e.payload;
|
|
236
|
-
const cycleId = typeof p?.cycleId === 'string' ? p.cycleId : undefined;
|
|
237
|
-
const signalSource = Array.isArray(p?.baseSignals) ? p.baseSignals : p?.signals;
|
|
238
|
-
const signals = Array.isArray(signalSource) ? signalSource.map(String) : undefined;
|
|
239
|
-
if (!cycleId || !signals)
|
|
240
|
-
continue;
|
|
241
|
-
signalsByCycle.set(cycleId, signals);
|
|
242
|
-
}
|
|
243
|
-
// Second pass: for each terminal cycle with a real gene, emit an observation under its signal fingerprint.
|
|
244
|
-
const out = [];
|
|
245
|
-
for (const e of events) {
|
|
246
|
-
if (e.type !== 'cycle.solidified' && e.type !== 'cycle.failed')
|
|
247
|
-
continue;
|
|
248
|
-
const p = e.payload;
|
|
249
|
-
const cycleId = typeof p?.cycleId === 'string' ? p.cycleId : undefined;
|
|
250
|
-
const gene = typeof p?.gene === 'string' ? p.gene : undefined;
|
|
251
|
-
if (!cycleId || !gene || gene === 'ad-hoc')
|
|
252
|
-
continue; // innovate cycles credit no existing gene
|
|
253
|
-
const signals = signalsByCycle.get(cycleId);
|
|
254
|
-
if (!signals)
|
|
255
|
-
continue; // cannot fingerprint without the cycle's signals
|
|
256
|
-
const at = Date.parse(e.ts);
|
|
257
|
-
// #195: a solidified cycle that produced no measurable value (producedValue === false) is INERT, not a
|
|
258
|
-
// success — it must build no confidence and instead feeds the inert-streak ban. Failures stay 'failed'.
|
|
259
|
-
// Older events predate the producedValue tag; when it is absent we treat the cycle as a real success, so we
|
|
260
|
-
// never retroactively reclassify history into a surprise ban.
|
|
261
|
-
const status = e.type === 'cycle.failed' ? 'failed' : p?.producedValue === false ? 'inert' : 'success';
|
|
262
|
-
const fingerprintSignals = opts.ignoreTaskDomain ? withoutTaskDomainSignals(signals) : signals;
|
|
263
|
-
out.push({
|
|
264
|
-
signalFingerprint: signalFingerprint(fingerprintSignals),
|
|
265
|
-
geneId: gene,
|
|
266
|
-
status,
|
|
267
|
-
at: Number.isFinite(at) ? at : 0,
|
|
268
|
-
});
|
|
269
|
-
}
|
|
270
|
-
return out;
|
|
271
|
-
}
|
|
272
|
-
/**
|
|
273
|
-
* cycle engine(M4A-1d): signals → trigger → 选 gene → mutation → 执行 → solidify → Capsule + EvolutionEvent.
|
|
274
|
-
* 每阶段 emit root_events 并校验状态机迁移; 写入序列守硬化 A4(capsule asset_id 先 → 填 capsule_id → event asset_id).
|
|
275
|
-
*/
|
|
276
|
-
export class CycleEngine {
|
|
277
|
-
deps;
|
|
278
|
-
constructor(deps) {
|
|
279
|
-
this.deps = deps;
|
|
280
|
-
}
|
|
281
|
-
/**
|
|
282
|
-
* Add V1-compatible curriculum targets from V2's replayable event history. Public so the orchestrator can run
|
|
283
|
-
* it before candidate assembly; runCycle calls it again for direct callers. Set merging makes that idempotent.
|
|
284
|
-
*/
|
|
285
|
-
prepareCurriculumSignals(signals) {
|
|
286
|
-
let externalCapabilityGaps = [];
|
|
287
|
-
try {
|
|
288
|
-
externalCapabilityGaps = normalizeCapabilityGaps(this.deps.capabilityGaps?.() ?? []);
|
|
289
|
-
}
|
|
290
|
-
catch {
|
|
291
|
-
// An optional lifecycle-state reader must never suppress local curriculum generation.
|
|
292
|
-
}
|
|
293
|
-
try {
|
|
294
|
-
const localCapabilityGaps = capabilityGapsFromSignals(signals);
|
|
295
|
-
const curriculumSignals = generateCurriculumSignals({
|
|
296
|
-
outcomes: curriculumOutcomesFromEvents(this.deps.ingestor.readAll()),
|
|
297
|
-
// Preserve existing explicit local-signal precedence; Hub gaps fill the otherwise-missing V1 source.
|
|
298
|
-
capabilityGaps: normalizeCapabilityGaps([...localCapabilityGaps, ...externalCapabilityGaps]),
|
|
299
|
-
});
|
|
300
|
-
return { signals: mergeSignals(signals, curriculumSignals), curriculumSignals };
|
|
301
|
-
}
|
|
302
|
-
catch {
|
|
303
|
-
return { signals: [...signals], curriculumSignals: [] };
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
async runCycle(input) {
|
|
307
|
-
const { ingestor, store } = this.deps;
|
|
308
|
-
const now = this.deps.now();
|
|
309
|
-
const envKey = envFingerprintKey((this.deps.envFingerprint ?? captureEnvFingerprint)());
|
|
310
|
-
const reasons = [];
|
|
311
|
-
const baseSignals = [...input.signals];
|
|
312
|
-
const preparedSignals = input.curriculumSignals === undefined
|
|
313
|
-
? this.prepareCurriculumSignals(input.signals)
|
|
314
|
-
: { signals: mergeSignals(input.signals, input.curriculumSignals), curriculumSignals: [...input.curriculumSignals] };
|
|
315
|
-
const selectionSignals = preparedSignals.signals;
|
|
316
|
-
const curriculumSignals = preparedSignals.curriculumSignals;
|
|
317
|
-
const metaSignals = historyMetaSignals(ingestor, 100);
|
|
318
|
-
const cycleSignals = mergeSignals(selectionSignals, metaSignals);
|
|
319
|
-
// PORT v1 #279 issue-reporter: classify cycle.failed payloads when the caller supplies host context. The
|
|
320
|
-
// post-solidify failed path adds V2-local context (current gene + blast radius) so hard-filtered local no-op
|
|
321
|
-
// genes are reachable without re-emitting the old ban_gene soft signal.
|
|
322
|
-
const failureClassPayload = (current, execSessionLog) => {
|
|
323
|
-
// The agent transcript (#279 production wiring) comes from the execution layer on a failed outcome; the
|
|
324
|
-
// explicit failureContext.sessionLog (tests / external callers) is the fallback. EITHER one lets the
|
|
325
|
-
// host_* buckets fire on the real path.
|
|
326
|
-
const sessionLog = execSessionLog ?? input.failureContext?.sessionLog;
|
|
327
|
-
// Locality must recognise V2's real gene prefix `gene_distilled_` (isDistilledGeneId), not just the
|
|
328
|
-
// V1-only `gene_auto_` / content-hash `sha256:` forms — otherwise this gate stays shut for every real V2
|
|
329
|
-
// gene and classifyCycleFailure never runs (mirror of isLocalGeneratedGene in cycleFailureClassifier.ts).
|
|
330
|
-
// NB the prefix is now a NAMESPACE marker, not a provenance tag (the authoritative source is generation_meta,
|
|
331
|
-
// V1 #302); this call site only has a gene id, so it falls back to the prefix.
|
|
332
|
-
const localCurrentGene = current?.geneId !== undefined && (isDistilledGeneId(current.geneId) || /^sha256:/.test(current.geneId) || /^gene_auto_/.test(current.geneId));
|
|
333
|
-
// Run classification when we have ANY host context (an exec transcript or an injected failureContext) OR a
|
|
334
|
-
// local-gene blast to judge; otherwise stay default-open (unclassified, no payload).
|
|
335
|
-
const hasHostContext = sessionLog !== undefined || input.failureContext !== undefined;
|
|
336
|
-
if (!hasHostContext && (current?.blastRadius === undefined || !localCurrentGene))
|
|
337
|
-
return {};
|
|
338
|
-
const r = classifyCycleFailure({
|
|
339
|
-
signals: cycleSignals,
|
|
340
|
-
...(sessionLog !== undefined ? { sessionLog } : {}),
|
|
341
|
-
...(input.failureContext?.recentFailedEvents !== undefined ? { recentEvents: input.failureContext.recentFailedEvents } : {}),
|
|
342
|
-
...(current?.geneId !== undefined ? { geneId: current.geneId } : {}),
|
|
343
|
-
...(current?.blastRadius !== undefined ? { blastRadius: current.blastRadius } : {}),
|
|
344
|
-
});
|
|
345
|
-
return r.reason ? { failure_class: r.failureClass, failure_class_reason: r.reason } : { failure_class: r.failureClass };
|
|
346
|
-
};
|
|
347
|
-
const executionMetadata = (exec) => ({
|
|
348
|
-
...(exec.failureKind !== undefined ? { failureKind: exec.failureKind } : {}),
|
|
349
|
-
...(exec.exitCode !== undefined ? { exitCode: exec.exitCode } : {}),
|
|
350
|
-
});
|
|
351
|
-
const strategy = resolveStrategy({ name: input.strategyName, signals: cycleSignals, cycleCount: historyCycleCount(ingestor, 1000, input.cycleId) });
|
|
352
|
-
const cycleCategory = categoryForStrategy(input.category, strategy);
|
|
353
|
-
let stage = 'none';
|
|
354
|
-
const advance = (to) => {
|
|
355
|
-
if (!canTransition(stage, to))
|
|
356
|
-
throw new Error(`非法 cycle 迁移 ${stage}→${to}`);
|
|
357
|
-
stage = to;
|
|
358
|
-
};
|
|
359
|
-
await ingestor.ingest({ type: 'cycle.started', human: { title: `cycle ${input.cycleId} 启动` }, payload: { cycleId: input.cycleId, problemId: input.problem.id } });
|
|
360
|
-
advance('started');
|
|
361
|
-
await ingestor.ingest({
|
|
362
|
-
type: 'cycle.signals_collected',
|
|
363
|
-
human: { title: `采集 ${cycleSignals.length} 信号` },
|
|
364
|
-
payload: {
|
|
365
|
-
cycleId: input.cycleId,
|
|
366
|
-
signals: cycleSignals,
|
|
367
|
-
baseSignals,
|
|
368
|
-
...(curriculumSignals.length > 0 ? { curriculumSignals } : {}),
|
|
369
|
-
...(metaSignals.length > 0 ? { metaSignals, strategy: strategy.name } : {}),
|
|
370
|
-
},
|
|
371
|
-
});
|
|
372
|
-
advance('signals_collected');
|
|
373
|
-
// 触发闸
|
|
374
|
-
const trig = this.deps.trigger ? await this.deps.trigger(input.problem, now) : { trigger: true, reasons: ['无 trigger 注入, 直接触发'], valueScore: 0 };
|
|
375
|
-
if (!trig.trigger) {
|
|
376
|
-
await ingestor.ingest({ type: 'cycle.aborted', human: { title: `cycle ${input.cycleId} 抑制` }, payload: { cycleId: input.cycleId, reasons: trig.reasons } });
|
|
377
|
-
advance('aborted');
|
|
378
|
-
return { cycleId: input.cycleId, triggered: false, finalStage: stage, producedValue: false, reasons: trig.reasons };
|
|
379
|
-
}
|
|
380
|
-
// 选 gene(可解释决策). Exploration: when recent cycles plateau, enable drift to escape local optima.
|
|
381
|
-
const recentOutcomes = recentCycleOutcomes(ingestor, 100);
|
|
382
|
-
const plateau = detectPlateau(recentOutcomes);
|
|
383
|
-
// 可进化人格(可选). 未注入 ⇒ personalityForRun 留 undefined, 整段跳过, 后续行为逐字不变.
|
|
384
|
-
// 顺序: ③平台期先强制转向(拉高 creativity/risk 进探索) → ①自然选择朝最佳桶靠拢 + 规则触发变异.
|
|
385
|
-
// 选出的状态落盘(applySelectForRun 内 save), exec bridge 之后读回注入 prompt(用途①); 也喂本轮风险闸.
|
|
386
|
-
let personalityForRun;
|
|
387
|
-
let personalityKnown = false;
|
|
388
|
-
if (this.deps.personality) {
|
|
389
|
-
const personalityDeps = { store: this.deps.personality, ingestor, cycleId: input.cycleId };
|
|
390
|
-
// ③ plateau pivot: 在 select 之前, 让 select 从 pivot 后的 current 起步(personality.pivoted).
|
|
391
|
-
if (plateau.active) {
|
|
392
|
-
await applyForcePivot(personalityDeps, { severity: plateau.severity, evalsSinceImprovement: plateau.count });
|
|
393
|
-
}
|
|
394
|
-
// ① 自然选择 + 触发变异(真变异才发 personality.mutated). driftEnabled 跟随 plateau;
|
|
395
|
-
// recentEvents 由事件日志的近期 outcome 派生, 让"失败连击触发变异"在环内真正生效.
|
|
396
|
-
const sel = await applySelectForRun(personalityDeps, {
|
|
397
|
-
driftEnabled: plateau.active,
|
|
398
|
-
signals: selectionSignals,
|
|
399
|
-
recentEvents: recentOutcomes.map((status) => ({ outcome: { status } })),
|
|
400
|
-
});
|
|
401
|
-
personalityForRun = sel.state;
|
|
402
|
-
personalityKnown = sel.known;
|
|
403
|
-
}
|
|
404
|
-
// 每轮结束把 outcome/score 回写到当轮所用人格桶(applyStatsUpdate: 只动 stats/history, 不挪 current).
|
|
405
|
-
// 在每个终止点调用, 使下一轮 applySelectForRun 的自然选择能朝这个桶靠拢. 未注入 ⇒ no-op.
|
|
406
|
-
const recordPersonalityOutcome = async (outcome, score) => {
|
|
407
|
-
if (!this.deps.personality || !personalityForRun)
|
|
408
|
-
return;
|
|
409
|
-
await applyStatsUpdate({ store: this.deps.personality, ingestor, cycleId: input.cycleId }, { personality: personalityForRun, outcome, score });
|
|
410
|
-
};
|
|
411
|
-
let ucb1History;
|
|
412
|
-
if (plateau.active && input.selectionPolicy && input.selectionPolicy !== 'engine-health') {
|
|
413
|
-
try {
|
|
414
|
-
ucb1History = deriveUcb1History(ingestor.readAllStrict());
|
|
415
|
-
}
|
|
416
|
-
catch {
|
|
417
|
-
// Active UCB1 fails safe to legacy drift; shadow records missing_history in its compact policy trace.
|
|
418
|
-
ucb1History = undefined;
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
const exploration = plateau.active
|
|
422
|
-
? {
|
|
423
|
-
plateau,
|
|
424
|
-
driftEnabled: true,
|
|
425
|
-
totalAttempts: input.candidates.reduce((s, c) => s + (c.view?.total ?? 0), 0),
|
|
426
|
-
...(input.selectionPolicy ? { policy: input.selectionPolicy } : {}),
|
|
427
|
-
...(ucb1History ? { ucb1History } : {}),
|
|
428
|
-
}
|
|
429
|
-
: undefined;
|
|
430
|
-
// Epigenetic: penalize candidates that fail in THIS environment class (derived from per-env outcome history).
|
|
431
|
-
const geneOutcomes = recentGeneOutcomes(ingestor, 200);
|
|
432
|
-
// Confidence (positive cross-cycle learning): reward candidates that keep succeeding under the CURRENT
|
|
433
|
-
// signal fingerprint. Derived from the same event log, applied as a soft fourth factor in selection.
|
|
434
|
-
const confidenceObs = recentConfidenceObservations(ingestor, 200);
|
|
435
|
-
const confidenceEdges = deriveConfidenceEdges(confidenceObs);
|
|
436
|
-
const currentConfidenceFingerprint = signalFingerprint(baseSignals);
|
|
437
|
-
// #195: drop genes stuck producing only inert (zero-work) cycles on THIS signal. A sole-matching do-nothing
|
|
438
|
-
// gene is otherwise re-selected every cycle (drift can't diversify a single candidate) and the failure-streak
|
|
439
|
-
// ban never fires because nothing "fails" — so it dominates --loop forever while producing no artifacts.
|
|
440
|
-
// Removing it makes selection fall through to mutation (selected:null → fresh gene), restoring diversity.
|
|
441
|
-
// The ban is derived from a SEPARATE, much wider window than confidence scoring above: a banned gene runs as
|
|
442
|
-
// ad-hoc and emits no observation for itself, so a 200-event (~28-cycle) window would let intervening innovate
|
|
443
|
-
// cycles evict its inert run (or the earlier real success that exempts it) and the ban would flap. Recomputing
|
|
444
|
-
// it over INERT_BAN_OBSERVATION_WINDOW events (mirroring v1's memory-graph read horizon) keeps the trailing run
|
|
445
|
-
// and the successCount exemption alive across intervening cycles. tail() reads the full log either way (no I/O cost).
|
|
446
|
-
const inertBanObs = recentConfidenceObservations(ingestor, INERT_BAN_OBSERVATION_WINDOW, { ignoreTaskDomain: true });
|
|
447
|
-
const inertBanFingerprint = signalFingerprint(withoutTaskDomainSignals(baseSignals));
|
|
448
|
-
const inertBanned = inertBannedGeneIds(deriveConfidenceEdges(inertBanObs), inertBanObs, inertBanFingerprint);
|
|
449
|
-
const candidates = input.candidates
|
|
450
|
-
.filter((c) => !isCandidateInSet(c, inertBanned))
|
|
451
|
-
.map((c) => {
|
|
452
|
-
const epi = epigeneticPenaltyForIds(candidateIds(c), envKey, geneOutcomes);
|
|
453
|
-
const conf = confidenceFor(confidenceEdges, currentConfidenceFingerprint, c.geneId, now);
|
|
454
|
-
const withEpi = epi > 0 ? { ...c, epigeneticPenalty: epi } : c;
|
|
455
|
-
return conf > 0 ? { ...withEpi, confidence: conf } : withEpi;
|
|
456
|
-
});
|
|
457
|
-
// #97 distilled-gene fallback pool: attach the env-scoped epigenetic penalty (so selection can hard-skip a
|
|
458
|
-
// suppressed fallback, v1 parity) and drop any inert-banned id (composes with #195). Selection uses these only
|
|
459
|
-
// when normal selection has no reusable positive choice.
|
|
460
|
-
const distilledFallback = (input.distilledFallback ?? [])
|
|
461
|
-
.filter((c) => !isCandidateInSet(c, inertBanned))
|
|
462
|
-
.map((c) => {
|
|
463
|
-
const epi = epigeneticPenaltyForIds(candidateIds(c), envKey, geneOutcomes);
|
|
464
|
-
return epi > 0 ? { ...c, epigeneticPenalty: epi } : c;
|
|
465
|
-
});
|
|
466
|
-
const semanticCorpus = input.semanticCorpus?.filter((c) => !isCandidateInSet(c, inertBanned));
|
|
467
|
-
const decision = (await this.deps.selection.run({ signals: selectionSignals, candidates, ...(semanticCorpus ? { semanticCorpus } : {}), ...(input.disableSemanticIdf ? { disableSemanticIdf: true } : {}), floor: input.selectionFloor, ...(input.selectionGuard ? { selectionGuard: input.selectionGuard } : {}), ...(input.forcedGeneId !== undefined ? { forcedGeneId: input.forcedGeneId } : {}), ...(exploration ? { exploration } : {}), ...(distilledFallback.length > 0 ? { distilledFallback } : {}), ...(input.antiWarnings && input.antiWarnings.length > 0 ? { antiWarnings: input.antiWarnings } : {}), ...(input.memoryEvidence && input.memoryEvidence.length > 0 ? { memoryEvidence: input.memoryEvidence } : {}) }, { now, cycleId: input.cycleId, ...(this.deps.rng ? { rng: this.deps.rng } : {}) }));
|
|
468
|
-
const geneId = decision.selectedGeneId ?? 'ad-hoc';
|
|
469
|
-
const runPostSelectionStep = async (phase, step) => {
|
|
470
|
-
try {
|
|
471
|
-
return await step();
|
|
472
|
-
}
|
|
473
|
-
catch (error) {
|
|
474
|
-
let persistedTerminal = null;
|
|
475
|
-
try {
|
|
476
|
-
persistedTerminal = persistedTerminalAfterLatestSelection(ingestor, input.cycleId);
|
|
477
|
-
}
|
|
478
|
-
catch {
|
|
479
|
-
// Readback is best-effort; compensation below remains the fallback when the log is unavailable.
|
|
480
|
-
}
|
|
481
|
-
if (persistedTerminal && !TERMINAL.has(stage) && canTransition(stage, persistedTerminal)) {
|
|
482
|
-
advance(persistedTerminal);
|
|
483
|
-
}
|
|
484
|
-
if (!persistedTerminal && !TERMINAL.has(stage)) {
|
|
485
|
-
try {
|
|
486
|
-
await ingestor.ingest({
|
|
487
|
-
type: 'cycle.failed',
|
|
488
|
-
human: { title: `cycle ${input.cycleId} selection 后异常` },
|
|
489
|
-
payload: { cycleId: input.cycleId, reason: 'post_selection_error', phase, gene: geneId, env: envKey },
|
|
490
|
-
});
|
|
491
|
-
advance('failed');
|
|
492
|
-
try {
|
|
493
|
-
await recordPersonalityOutcome('failed', null);
|
|
494
|
-
}
|
|
495
|
-
catch {
|
|
496
|
-
// Personality is soft state; never let its writeback replace the original failure.
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
catch {
|
|
500
|
-
// The event store itself may be unavailable. Preserve and rethrow the original step failure.
|
|
501
|
-
}
|
|
502
|
-
}
|
|
503
|
-
throw error;
|
|
504
|
-
}
|
|
505
|
-
};
|
|
506
|
-
await runPostSelectionStep('decision_event', () => ingestGeneSelectedWithTraceBudget(ingestor, {
|
|
507
|
-
type: 'decision.gene_selected',
|
|
508
|
-
human: { title: `选 gene ${decision.selectedGeneId ?? '(innovate)'}`, why: decision.candidates.map((c) => `${c.geneId}:${c.score.toFixed(3)}`).join(', ') || '无候选→innovate' },
|
|
509
|
-
payload: { cycleId: input.cycleId, selectedGeneId: decision.selectedGeneId, ...(decision.selectedAssetId ? { selectedAssetId: decision.selectedAssetId } : {}), ...(decision.selectedReason ? { selectedReason: decision.selectedReason } : {}), candidates: decision.candidates.map(selectionCandidateEventProjection), ...(decision.antiWarnings && decision.antiWarnings.length > 0 ? { antiWarnings: decision.antiWarnings } : {}), ...(decision.memoryEvidence && decision.memoryEvidence.length > 0 ? { memoryEvidence: decision.memoryEvidence } : {}), weightsVersion: decision.weightsVersion, ...(decision.semanticProfileVersion ? { semanticProfileVersion: decision.semanticProfileVersion } : {}), ...(decision.semanticDocumentCount !== undefined ? { semanticDocumentCount: decision.semanticDocumentCount } : {}), strategy: decision.strategyName, strategyPreset: strategy.name, ...(plateau.active ? { plateau } : {}), ...(inertBanned.size > 0 ? { inertBanned: [...inertBanned] } : {}) },
|
|
510
|
-
}, decision.selectionPolicy, decision.selectionGuard));
|
|
511
|
-
advance('gene_selected');
|
|
512
|
-
// 变异
|
|
513
|
-
const builtMutation = await runPostSelectionStep('mutation_build', () => buildMutation({ decision, category: cycleCategory, signals: cycleSignals, target: input.target, expectedEffect: input.expectedEffect }));
|
|
514
|
-
// 人格风险闸(用途②): 高危人格禁 innovate / 未达阈值的 high-risk 降级. 未注入人格 ⇒ 原样放行.
|
|
515
|
-
// 用本轮 applySelectForRun 选出的状态(personalityForRun), 而非再读一次 store.currentState() ——
|
|
516
|
-
// 保证"喂 prompt 的风格 / 过风险闸 / 回写统计"三者用的是同一个当轮人格.
|
|
517
|
-
let mutation = builtMutation;
|
|
518
|
-
if (this.deps.personality && personalityForRun) {
|
|
519
|
-
await runPostSelectionStep('personality_selected', () => emitPersonalitySelected(ingestor, { cycleId: input.cycleId, personality: personalityForRun, known: personalityKnown }));
|
|
520
|
-
const gate = await runPostSelectionStep('personality_risk_gate', () => gatePersonalityRisk(builtMutation, personalityForRun));
|
|
521
|
-
mutation = gate.mutation;
|
|
522
|
-
await runPostSelectionStep('personality_risk_gate', () => emitPersonalityRiskGated(ingestor, { cycleId: input.cycleId, personality: personalityForRun, gate }));
|
|
523
|
-
}
|
|
524
|
-
await runPostSelectionStep('mutation_event', () => ingestor.ingest({ type: 'mutation.built', human: { title: `变异 ${mutation.category} → ${mutation.target}` }, payload: { cycleId: input.cycleId, mutationId: mutation.id, risk: mutation.risk_level, category: mutation.category, strategyPreset: strategy.name } }));
|
|
525
|
-
advance('mutation_built');
|
|
526
|
-
// 执行(agent/runtime)
|
|
527
|
-
let exec;
|
|
528
|
-
try {
|
|
529
|
-
exec = await input.execute(mutation, decision);
|
|
530
|
-
}
|
|
531
|
-
catch (e) {
|
|
532
|
-
const msg = e instanceof Error ? e.message : String(e);
|
|
533
|
-
// execute threw before returning a transcript; the error text IS the host context (a provider error that
|
|
534
|
-
// surfaces as a thrown exception still classifies as host_provider_error). Pass it as the sessionLog.
|
|
535
|
-
await runPostSelectionStep('terminal_event', () => ingestor.ingest({ type: 'cycle.failed', human: { title: `cycle ${input.cycleId} 执行抛错` }, payload: { cycleId: input.cycleId, error: msg, gene: geneId, env: envKey, ...failureClassPayload({ geneId }, msg) } }));
|
|
536
|
-
advance('failed');
|
|
537
|
-
await recordPersonalityOutcome('failed', null);
|
|
538
|
-
return { cycleId: input.cycleId, triggered: true, finalStage: stage, producedValue: false, decision, mutation, reasons: [...reasons, `执行异常: ${msg}`] };
|
|
539
|
-
}
|
|
540
|
-
if (input.solidifyPermit) {
|
|
541
|
-
let permit;
|
|
542
|
-
try {
|
|
543
|
-
permit = await input.solidifyPermit({
|
|
544
|
-
cycleId: input.cycleId,
|
|
545
|
-
geneId,
|
|
546
|
-
signals: cycleSignals,
|
|
547
|
-
mutation,
|
|
548
|
-
decision,
|
|
549
|
-
outcome: exec.outcome,
|
|
550
|
-
...(exec.proofOfWork ? { proofOfWork: exec.proofOfWork } : {}),
|
|
551
|
-
...(exec.strongEvidence !== undefined ? { strongEvidence: exec.strongEvidence } : {}),
|
|
552
|
-
});
|
|
553
|
-
}
|
|
554
|
-
catch {
|
|
555
|
-
permit = { ok: false, reason: 'solidify_permit_error' };
|
|
556
|
-
}
|
|
557
|
-
if (!permit.ok) {
|
|
558
|
-
const reason = `solidify permit denied: ${permit.reason}`;
|
|
559
|
-
await runPostSelectionStep('terminal_event', () => ingestor.ingest({
|
|
560
|
-
type: 'cycle.failed',
|
|
561
|
-
human: { title: `cycle ${input.cycleId} permit denied` },
|
|
562
|
-
payload: {
|
|
563
|
-
cycleId: input.cycleId,
|
|
564
|
-
reason: permit.reason,
|
|
565
|
-
gene: geneId,
|
|
566
|
-
env: envKey,
|
|
567
|
-
...executionMetadata(exec),
|
|
568
|
-
...failureClassPayload({ geneId }),
|
|
569
|
-
},
|
|
570
|
-
}));
|
|
571
|
-
advance('failed');
|
|
572
|
-
await recordPersonalityOutcome('failed', null);
|
|
573
|
-
return { cycleId: input.cycleId, triggered: true, finalStage: stage, producedValue: false, decision, mutation, ...executionMetadata(exec), reasons: [...reasons, reason] };
|
|
574
|
-
}
|
|
575
|
-
}
|
|
576
|
-
// solidify → Capsule
|
|
577
|
-
const sol = await runPostSelectionStep('solidify', () => solidify({
|
|
578
|
-
geneId, trigger: cycleSignals, summary: input.summary, confidence: input.confidence,
|
|
579
|
-
outcome: exec.outcome, proofOfWork: exec.proofOfWork, strongEvidence: exec.strongEvidence,
|
|
580
|
-
}));
|
|
581
|
-
reasons.push(...sol.reasons);
|
|
582
|
-
await runPostSelectionStep('capsule_store', () => store.put(sol.capsule));
|
|
583
|
-
await runPostSelectionStep('capsule_event', () => ingestor.ingest({ type: 'capsule.produced', human: { title: `Capsule ${sol.resolutionStatus}` }, payload: { cycleId: input.cycleId, capsuleId: sol.capsule.asset_id, resolutionStatus: sol.resolutionStatus, producedValue: sol.producedValue, blastRadius: sol.capsule.blast_radius } }));
|
|
584
|
-
// EvolutionEvent(capsule_id 引 Capsule; outcome 真值在此)
|
|
585
|
-
const event = await runPostSelectionStep('evolution_event_build', () => buildEvolutionEvent({
|
|
586
|
-
intent: cycleCategory, signals: cycleSignals, genesUsed: decision.selectedGeneId ? [decision.selectedGeneId] : [],
|
|
587
|
-
mutationId: mutation.id, blastRadius: sol.capsule.blast_radius, outcome: exec.outcome,
|
|
588
|
-
capsuleId: sol.capsule.asset_id, sourceType: decision.selectedGeneId ? 'reused' : 'generated',
|
|
589
|
-
}));
|
|
590
|
-
await runPostSelectionStep('evolution_event_store', () => store.put(event));
|
|
591
|
-
await runPostSelectionStep('evolution_event_projection', () => ingestor.ingest({ type: 'evolution_event.projected', human: { title: `世代记录 ${exec.outcome.status}` }, payload: { cycleId: input.cycleId, eventId: event.asset_id, capsuleId: sol.capsule.asset_id, outcome: exec.outcome } }));
|
|
592
|
-
if (exec.outcome.status === 'failed') {
|
|
593
|
-
await runPostSelectionStep('terminal_event', () => ingestor.ingest({
|
|
594
|
-
type: 'cycle.failed',
|
|
595
|
-
human: { title: `cycle ${input.cycleId} 失败` },
|
|
596
|
-
payload: {
|
|
597
|
-
cycleId: input.cycleId,
|
|
598
|
-
resolutionStatus: sol.resolutionStatus,
|
|
599
|
-
outcome: exec.outcome,
|
|
600
|
-
gene: geneId,
|
|
601
|
-
env: envKey,
|
|
602
|
-
...executionMetadata(exec),
|
|
603
|
-
// Only forward blast radius as a no-op signal when it was measured from a git_diff proof. solidify.ts
|
|
604
|
-
// forces blast to {0,0} for non-git_diff proofs (artifact_hash/external_receipt/tool_call_trace),
|
|
605
|
-
// where {0,0} means "blast unknown", NOT "no change" — forwarding it would mis-classify a productive
|
|
606
|
-
// run as local_gene_no_blast. Undefined here falls through to default-open unclassified.
|
|
607
|
-
...failureClassPayload({
|
|
608
|
-
geneId,
|
|
609
|
-
...((exec.proofOfWork === undefined || exec.proofOfWork.kind === 'git_diff')
|
|
610
|
-
? { blastRadius: sol.capsule.blast_radius }
|
|
611
|
-
: {}),
|
|
612
|
-
}, exec.sessionLog),
|
|
613
|
-
},
|
|
614
|
-
}));
|
|
615
|
-
advance('failed');
|
|
616
|
-
}
|
|
617
|
-
else {
|
|
618
|
-
await runPostSelectionStep('terminal_event', () => ingestor.ingest({ type: 'cycle.solidified', human: { title: `cycle ${input.cycleId} 固化` }, payload: { cycleId: input.cycleId, capsuleId: sol.capsule.asset_id, outcome: exec.outcome, gene: geneId, env: envKey, producedValue: sol.producedValue } }));
|
|
619
|
-
advance('solidified');
|
|
620
|
-
}
|
|
621
|
-
// 人格统计回写(用途②): 用本轮真实 outcome/score 回写当轮人格桶, 供下一轮自然选择靠拢. 未注入 ⇒ no-op.
|
|
622
|
-
await recordPersonalityOutcome(exec.outcome.status, exec.outcome.score);
|
|
623
|
-
return { cycleId: input.cycleId, triggered: true, finalStage: stage, producedValue: sol.producedValue, decision, mutation, capsule: sol.capsule, event, resolutionStatus: sol.resolutionStatus, ...executionMetadata(exec), reasons };
|
|
624
|
-
}
|
|
625
|
-
}
|
|
1
|
+
const _0x2d3039=_0x33cc;(function(_0x3950bb,_0x2a9039){const _0x43143b=_0x33cc,_0x12e9f6=_0x3950bb();while(!![]){try{const _0x1dec65=parseInt(_0x43143b(0x3a5,'\x6f\x53\x7a\x50'))/(-0x1e25+0x46d*0x3+0x7*0x269)+parseInt(_0x43143b(0x283,'\x72\x43\x37\x23'))/(-0x76d+0x902*-0x1+0xb7*0x17)*(parseInt(_0x43143b(0x2e3,'\x4e\x61\x6e\x59'))/(-0x244e+0x4*0x36d+0x169d))+parseInt(_0x43143b(0x1e4,'\x34\x45\x6e\x52'))/(-0x1*0xc1b+0x338+0x8e7)*(-parseInt(_0x43143b(0x13c,'\x4f\x54\x50\x36'))/(0x1bd4+0x223*-0x8+0x1*-0xab7))+parseInt(_0x43143b(0x252,'\x65\x28\x51\x21'))/(0x2093*-0x1+0x7*0x254+0x27*0x6b)+-parseInt(_0x43143b(0x159,'\x46\x75\x59\x6d'))/(0x1d*0xa4+0x1*0x985+-0x1*0x1c12)*(-parseInt(_0x43143b(0x1f9,'\x72\x43\x37\x23'))/(0xfa4+-0xd02+0x29a*-0x1))+-parseInt(_0x43143b(0x2f5,'\x5d\x47\x78\x7a'))/(-0x2*0x1d0+-0x15d6+-0x3d*-0x6b)*(-parseInt(_0x43143b(0x22d,'\x6e\x4f\x21\x26'))/(-0x149a+0x2620+-0x2ea*0x6))+-parseInt(_0x43143b(0x1c3,'\x6f\x64\x33\x7a'))/(-0x6*-0x464+-0x1b48+0xfb);if(_0x1dec65===_0x2a9039)break;else _0x12e9f6['push'](_0x12e9f6['shift']());}catch(_0x12d219){_0x12e9f6['push'](_0x12e9f6['shift']());}}}(_0x5c61,0x1da27+0x1*0x121c1+0xfcaa));import{LineTooLargeError}from'\x2e\x2e\x2f\x65\x76\x65\x6e\x74\x73\x2f\x65\x76\x65\x6e\x74\x53\x74\x6f\x72\x65\x2e\x6a\x73';import{TERMINAL,canTransition,stageForEventType}from'\x2e\x2e\x2f\x63\x79\x63\x6c\x65\x2f\x73\x74\x61\x74\x65\x4d\x61\x63\x68\x69\x6e\x65\x2e\x6a\x73';import'\x2e\x2f\x67\x65\x6e\x65\x53\x65\x6c\x65\x63\x74\x69\x6f\x6e\x2e\x6a\x73';import{detectPlateau}from'\x2e\x2f\x65\x78\x70\x6c\x6f\x72\x61\x74\x69\x6f\x6e\x2e\x6a\x73';import{epigeneticPenaltyForIds}from'\x2e\x2f\x65\x70\x69\x67\x65\x6e\x65\x74\x69\x63\x73\x2e\x6a\x73';import{deriveConfidenceEdges,confidenceFor,signalFingerprint,inertBannedGeneIds,INERT_BAN_OBSERVATION_WINDOW}from'\x2e\x2f\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65\x2e\x6a\x73';import{captureEnvFingerprint,envFingerprintKey}from'\x2e\x2e\x2f\x62\x6f\x6f\x74\x73\x74\x72\x61\x70\x2f\x65\x6e\x76\x46\x69\x6e\x67\x65\x72\x70\x72\x69\x6e\x74\x2e\x6a\x73';import{buildMutation}from'\x2e\x2f\x6d\x75\x74\x61\x74\x69\x6f\x6e\x2e\x6a\x73';import{gatePersonalityRisk}from'\x2e\x2e\x2f\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x2f\x72\x69\x73\x6b\x47\x61\x74\x65\x2e\x6a\x73';import{emitPersonalityRiskGated,emitPersonalitySelected}from'\x2e\x2e\x2f\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x2f\x65\x76\x65\x6e\x74\x73\x2e\x6a\x73';import{applySelectForRun,applyStatsUpdate,applyForcePivot}from'\x2e\x2e\x2f\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x2f\x65\x76\x6f\x6c\x76\x65\x4f\x70\x73\x2e\x6a\x73';import{solidify}from'\x2e\x2f\x73\x6f\x6c\x69\x64\x69\x66\x79\x2e\x6a\x73';import{buildEvolutionEvent}from'\x2e\x2f\x65\x76\x6f\x6c\x75\x74\x69\x6f\x6e\x45\x76\x65\x6e\x74\x2e\x6a\x73';import{cycleRecordsFromEvents}from'\x2e\x2e\x2f\x73\x69\x67\x6e\x61\x6c\x73\x2f\x63\x79\x63\x6c\x65\x48\x69\x73\x74\x6f\x72\x79\x46\x72\x6f\x6d\x45\x76\x65\x6e\x74\x73\x2e\x6a\x73';import{withoutTaskDomainSignals}from'\x2e\x2e\x2f\x73\x69\x67\x6e\x61\x6c\x73\x2f\x74\x61\x73\x6b\x44\x6f\x6d\x61\x69\x6e\x2e\x6a\x73';import{computeMetaSignals,deriveCycleHistory}from'\x2e\x2e\x2f\x73\x69\x67\x6e\x61\x6c\x73\x2f\x6d\x65\x74\x61\x53\x69\x67\x6e\x61\x6c\x73\x2e\x6a\x73';import{capabilityGapsFromSignals,curriculumOutcomesFromEvents,generateCurriculumSignals,normalizeCapabilityGaps}from'\x2e\x2e\x2f\x73\x69\x67\x6e\x61\x6c\x73\x2f\x63\x75\x72\x72\x69\x63\x75\x6c\x75\x6d\x2e\x6a\x73';import{resolveStrategy}from'\x2e\x2f\x73\x74\x72\x61\x74\x65\x67\x79\x50\x72\x65\x73\x65\x74\x73\x2e\x6a\x73';function _0x5c61(){const _0x3a8abd=['\x79\x6d\x6f\x4c\x6b\x32\x69\x72\x77\x71','\x57\x50\x37\x63\x48\x58\x39\x2f\x57\x35\x38','\x71\x59\x4c\x43\x57\x37\x37\x63\x4a\x6d\x6b\x73\x57\x4f\x65','\x72\x74\x4b\x2f\x79\x73\x34\x49','\x57\x51\x2f\x63\x4a\x53\x6f\x52','\x57\x37\x56\x63\x53\x6d\x6f\x6c\x75\x78\x6e\x49','\x57\x4f\x4e\x63\x49\x6d\x6f\x4c\x57\x51\x6c\x64\x4b\x77\x5a\x63\x4f\x43\x6b\x74','\x57\x37\x4e\x63\x50\x43\x6b\x6e\x57\x4f\x7a\x7a\x67\x47','\x57\x52\x5a\x63\x49\x4a\x62\x2b\x57\x37\x34\x64','\x6a\x38\x6b\x63\x57\x35\x33\x64\x52\x74\x75\x45\x77\x59\x75','\x57\x52\x4b\x46\x57\x35\x4a\x64\x56\x53\x6f\x34\x57\x50\x48\x7a\x6f\x71','\x57\x36\x37\x63\x50\x43\x6b\x6c\x57\x4f\x72\x42\x61\x77\x33\x63\x54\x61','\x57\x36\x72\x70\x7a\x38\x6f\x54\x61\x38\x6f\x52\x7a\x4d\x71','\x57\x34\x56\x64\x4d\x53\x6f\x6b\x57\x4f\x4e\x64\x4c\x61\x52\x64\x52\x6d\x6f\x45','\x57\x35\x69\x4d\x57\x35\x30','\x57\x52\x56\x64\x51\x6d\x6b\x72\x57\x4f\x78\x63\x4e\x58\x71','\x44\x38\x6b\x33\x72\x76\x5a\x64\x4b\x6d\x6f\x4b\x57\x51\x39\x42','\x6b\x38\x6f\x77\x66\x43\x6f\x36\x70\x73\x30\x74\x57\x37\x38','\x6b\x43\x6b\x6f\x57\x34\x52\x64\x4f\x63\x72\x7a\x75\x49\x4f','\x74\x38\x6b\x35\x74\x43\x6f\x69\x73\x58\x4f','\x71\x43\x6f\x30\x72\x6d\x6f\x38\x57\x34\x48\x70','\x57\x34\x4e\x64\x55\x6d\x6b\x32\x57\x51\x50\x57\x57\x52\x4f\x54\x6c\x61','\x57\x34\x56\x64\x52\x53\x6b\x76\x57\x37\x78\x64\x4d\x43\x6f\x44\x6b\x61','\x57\x52\x33\x64\x50\x64\x6c\x64\x4f\x53\x6f\x66\x6c\x38\x6f\x42','\x57\x50\x37\x63\x4e\x73\x58\x30\x57\x34\x75','\x6c\x6d\x6f\x7a\x75\x4a\x4f','\x57\x34\x46\x64\x4f\x53\x6b\x63\x57\x37\x52\x64\x4b\x38\x6f\x35\x6b\x71','\x41\x4c\x78\x64\x55\x6d\x6f\x53\x57\x52\x37\x63\x50\x71','\x6f\x38\x6f\x73\x63\x43\x6f\x53\x6b\x5a\x75\x74\x57\x34\x71','\x57\x52\x5a\x63\x4c\x43\x6f\x6d\x57\x51\x5a\x64\x51\x43\x6b\x4c\x69\x61','\x57\x50\x4a\x63\x4e\x38\x6f\x36','\x41\x31\x4e\x64\x4f\x61','\x57\x37\x56\x63\x4f\x43\x6f\x6e','\x6c\x6d\x6f\x62\x65\x6d\x6f\x34\x6f\x74\x57\x65','\x61\x66\x70\x64\x50\x4d\x61\x73\x57\x36\x50\x4f\x57\x37\x43','\x6d\x55\x73\x38\x53\x6f\x77\x70\x4c\x61','\x57\x37\x2f\x63\x4f\x43\x6b\x69\x57\x4f\x62\x6f\x63\x4b\x2f\x63\x4f\x47','\x77\x59\x53\x74\x41\x47\x4f','\x57\x52\x42\x64\x4e\x53\x6f\x4a\x42\x64\x76\x44\x61\x61','\x57\x36\x68\x64\x4b\x53\x6f\x56\x57\x4f\x78\x64\x4e\x72\x61','\x57\x50\x44\x6c\x57\x50\x74\x63\x53\x47','\x74\x59\x31\x67\x6d\x74\x4b','\x57\x51\x56\x63\x47\x53\x6b\x33\x6f\x47','\x57\x4f\x4a\x63\x49\x4a\x6e\x36\x57\x35\x4b\x74\x57\x35\x54\x4b','\x57\x51\x56\x63\x4f\x73\x4b\x49\x57\x52\x76\x7a\x45\x47','\x74\x64\x68\x64\x4e\x62\x30\x2f\x65\x4b\x52\x63\x51\x61','\x57\x36\x5a\x64\x4d\x53\x6b\x4d\x57\x51\x43','\x57\x35\x38\x4e\x46\x61\x65','\x57\x50\x66\x6a\x57\x4f\x78\x63\x53\x31\x56\x64\x4f\x47','\x57\x35\x52\x64\x4b\x53\x6f\x50\x57\x50\x6d','\x78\x43\x6f\x52\x57\x34\x6d','\x77\x74\x78\x64\x4d\x62\x61\x4b\x66\x65\x42\x63\x49\x61','\x57\x36\x5a\x63\x4e\x6d\x6f\x43\x57\x50\x74\x64\x51\x6d\x6b\x46\x6b\x6d\x6f\x4e','\x75\x74\x75\x32\x41\x47\x79\x51\x57\x37\x4a\x63\x52\x61','\x57\x52\x78\x64\x47\x53\x6f\x33\x41\x47','\x6f\x53\x6f\x6e\x73\x64\x37\x64\x51\x4e\x46\x63\x56\x38\x6f\x67','\x44\x38\x6f\x65\x6b\x64\x47\x74\x78\x57','\x46\x65\x37\x64\x55\x38\x6f\x33\x57\x52\x33\x63\x4d\x6d\x6b\x4e\x44\x57','\x57\x4f\x6c\x64\x4f\x65\x79\x47\x57\x35\x50\x2f\x57\x35\x71','\x57\x36\x4c\x49\x57\x50\x44\x62','\x57\x37\x62\x70\x7a\x43\x6f\x54\x6b\x43\x6f\x37','\x57\x51\x2f\x64\x4f\x59\x37\x64\x4f\x38\x6f\x79\x6a\x43\x6f\x72\x57\x37\x4f','\x44\x38\x6f\x31\x6e\x4d\x38','\x57\x36\x35\x45\x57\x50\x31\x6a\x43\x43\x6f\x7a\x57\x51\x65','\x57\x36\x76\x54\x57\x4f\x7a\x61\x46\x61','\x57\x36\x72\x70\x7a\x38\x6f\x54\x61\x38\x6f\x52\x41\x4d\x38','\x78\x63\x33\x64\x4b\x48\x61\x30\x6c\x30\x43','\x57\x4f\x69\x6f\x57\x34\x64\x64\x4b\x53\x6f\x4c\x57\x50\x38','\x57\x51\x6d\x63\x57\x34\x42\x64\x4a\x38\x6f\x52\x57\x50\x31\x7a','\x57\x36\x76\x4d\x57\x4f\x43','\x6d\x43\x6f\x68\x61\x61','\x57\x52\x33\x63\x56\x68\x4c\x61','\x78\x59\x31\x62','\x57\x35\x6c\x63\x4f\x43\x6b\x6a\x57\x4f\x72\x73\x67\x47','\x57\x52\x64\x63\x51\x49\x38\x4a\x57\x4f\x44\x62','\x57\x36\x46\x63\x4e\x53\x6f\x79\x57\x50\x78\x64\x51\x61','\x6a\x6d\x6b\x4e\x57\x34\x42\x64\x4f\x63\x47\x75\x74\x71','\x57\x51\x64\x64\x51\x43\x6b\x76\x57\x50\x4a\x63\x4b\x58\x38','\x57\x50\x44\x64\x57\x50\x74\x63\x55\x65\x64\x64\x53\x57','\x65\x43\x6f\x71\x69\x74\x57\x66\x6c\x38\x6f\x75\x7a\x57','\x46\x38\x6f\x54\x57\x4f\x7a\x47\x57\x51\x43','\x57\x35\x46\x64\x52\x53\x6b\x63\x57\x37\x78\x64\x4b\x38\x6f\x64\x70\x47','\x57\x50\x46\x63\x4a\x6d\x6f\x36\x57\x52\x71','\x35\x79\x2b\x42\x35\x42\x2b\x52\x57\x35\x69','\x57\x36\x56\x63\x56\x43\x6f\x41\x76\x68\x47\x52\x66\x73\x69','\x57\x35\x46\x64\x47\x53\x6f\x51','\x77\x6d\x6f\x4c\x57\x35\x74\x64\x4b\x47','\x35\x4f\x4d\x6b\x36\x6b\x63\x75\x35\x42\x59\x54\x35\x42\x4d\x4c\x7a\x57\x47','\x57\x37\x35\x45\x43\x47','\x57\x36\x31\x52\x57\x50\x39\x6b\x41\x53\x6f\x64\x57\x50\x33\x64\x54\x47','\x57\x51\x61\x45\x57\x35\x6c\x64\x49\x71','\x73\x43\x6f\x4c\x67\x47','\x45\x66\x33\x64\x56\x43\x6f\x30','\x57\x37\x33\x63\x53\x43\x6b\x6d\x57\x4f\x4b','\x57\x51\x4a\x63\x54\x4e\x50\x61\x57\x36\x70\x64\x4e\x43\x6b\x6c','\x57\x35\x64\x64\x54\x6d\x6b\x76\x57\x37\x46\x64\x4d\x47','\x6b\x6d\x6f\x67\x63\x53\x6f\x33','\x79\x61\x31\x46\x6a\x64\x57','\x57\x37\x33\x63\x51\x43\x6f\x51\x75\x78\x50\x52\x62\x5a\x4f','\x6f\x43\x6b\x64\x57\x34\x42\x64\x56\x49\x71','\x78\x63\x68\x64\x47\x57\x34\x34\x62\x76\x42\x63\x50\x57','\x6b\x38\x6b\x65\x57\x35\x52\x64\x51\x74\x75\x4f\x78\x73\x38','\x75\x73\x47\x4a\x42\x71\x4b\x48','\x57\x37\x6e\x52\x57\x50\x35\x61\x45\x38\x6f\x6f\x57\x52\x33\x64\x50\x61','\x57\x37\x72\x48\x57\x52\x72\x6d\x79\x6d\x6f\x46\x57\x52\x57','\x57\x51\x33\x63\x4a\x73\x56\x63\x4e\x75\x46\x64\x53\x57','\x68\x59\x68\x63\x4a\x53\x6f\x4a\x75\x62\x48\x6c\x57\x36\x43','\x57\x37\x2f\x63\x56\x6d\x6f\x44\x57\x37\x33\x63\x54\x43\x6f\x30\x6e\x57','\x57\x34\x35\x4f\x57\x4f\x65\x57\x57\x34\x4f','\x75\x5a\x68\x64\x4e\x58\x53\x4c\x64\x47','\x57\x36\x74\x63\x4e\x38\x6f\x75\x57\x4f\x4b','\x43\x53\x6f\x76\x70\x57','\x57\x52\x37\x64\x55\x31\x61\x4c\x57\x35\x6e\x63','\x57\x36\x70\x64\x4c\x53\x6b\x4d\x57\x51\x50\x34\x73\x47','\x57\x4f\x4a\x64\x54\x75\x61\x4f','\x57\x51\x33\x63\x4a\x73\x4e\x63\x4a\x31\x64\x64\x53\x5a\x69\x52','\x71\x43\x6f\x44\x57\x50\x50\x38\x57\x51\x75\x36\x57\x37\x71\x4f','\x75\x64\x4b\x57\x44\x57\x47\x4f\x57\x37\x47','\x66\x38\x6f\x30\x57\x51\x42\x64\x4a\x64\x5a\x64\x48\x53\x6b\x71\x57\x37\x6d','\x57\x52\x58\x79\x62\x61','\x57\x51\x4e\x63\x4c\x53\x6f\x53\x57\x35\x5a\x63\x48\x53\x6b\x79\x6b\x6d\x6b\x57','\x57\x52\x68\x63\x4d\x53\x6b\x47\x6e\x38\x6f\x5a\x45\x47','\x57\x36\x44\x6c\x43\x53\x6f\x4b\x64\x38\x6f\x2b\x41\x57','\x44\x43\x6f\x55\x69\x47','\x71\x49\x31\x42\x70\x4a\x6a\x66\x45\x61','\x57\x50\x78\x63\x55\x38\x6f\x33\x57\x37\x57\x32\x57\x36\x4f\x74\x6b\x6d\x6f\x79\x70\x68\x47\x6b','\x57\x4f\x4e\x63\x4d\x6d\x6f\x37\x57\x52\x33\x64\x4a\x71','\x57\x34\x56\x64\x54\x43\x6b\x59\x57\x36\x6c\x64\x4c\x38\x6f\x65\x6f\x6d\x6b\x30','\x46\x53\x6b\x41\x76\x38\x6f\x63\x73\x48\x57','\x57\x34\x58\x30\x57\x4f\x43\x37\x57\x34\x52\x63\x52\x4a\x57','\x76\x38\x6f\x61\x57\x50\x6e\x36\x57\x52\x6d\x36\x57\x37\x47','\x41\x53\x6f\x48\x6e\x71','\x61\x66\x2f\x64\x52\x67\x34\x61\x57\x36\x53','\x46\x53\x6b\x34\x72\x31\x64\x64\x4c\x43\x6f\x35\x57\x51\x6e\x6a','\x71\x38\x6f\x52\x57\x51\x72\x62\x57\x50\x6d','\x70\x43\x6f\x61\x75\x47','\x73\x4a\x31\x62\x6f\x61','\x57\x37\x58\x52\x74\x6d\x6f\x47\x65\x47','\x57\x52\x62\x56\x41\x71','\x57\x37\x6e\x37\x57\x50\x66\x67\x46\x43\x6f\x6a\x57\x51\x53','\x43\x43\x6b\x2b\x74\x4b\x4e\x64\x4e\x38\x6f\x31\x57\x52\x6a\x69','\x45\x6d\x6f\x61\x6e\x49\x57\x73\x77\x33\x34','\x7a\x6d\x6b\x6d\x57\x50\x58\x46\x72\x74\x6d','\x78\x47\x33\x64\x4a\x31\x38\x6e\x57\x36\x48\x31\x57\x37\x61','\x62\x76\x74\x64\x50\x77\x57\x68\x57\x37\x43','\x72\x38\x6b\x45\x73\x6d\x6f\x6c\x71\x71\x57','\x42\x53\x6f\x4e\x6b\x32\x47\x51\x77\x6d\x6f\x6c\x57\x50\x34','\x45\x6d\x6f\x79\x6a\x74\x6d\x63\x66\x57','\x72\x74\x75\x4c\x77\x57\x6d\x56\x57\x36\x33\x63\x4c\x71','\x79\x53\x6f\x4a\x6d\x77\x34\x33\x75\x38\x6f\x61\x57\x50\x4f','\x57\x52\x42\x63\x51\x4a\x57\x4a\x57\x4f\x58\x62','\x57\x50\x38\x5a\x6a\x43\x6f\x54\x57\x35\x4f\x6b\x7a\x43\x6f\x5a','\x57\x52\x58\x47\x42\x78\x52\x64\x50\x6d\x6f\x76\x57\x4f\x44\x73','\x6e\x43\x6f\x47\x65\x6d\x6f\x34\x6d\x64\x47\x41\x57\x36\x47','\x71\x53\x6b\x67\x71\x53\x6f\x6c\x71\x75\x79\x76\x57\x37\x34','\x6f\x43\x6f\x62\x66\x6d\x6f\x77\x6f\x47','\x57\x37\x2f\x63\x4f\x43\x6b\x45\x57\x50\x6a\x74\x61\x67\x57','\x57\x52\x78\x63\x52\x73\x57\x56\x57\x50\x6a\x43\x43\x31\x4f','\x57\x36\x52\x63\x4f\x43\x6b\x72\x57\x4f\x71','\x45\x38\x6b\x39\x72\x4c\x30','\x43\x53\x6f\x6c\x72\x64\x5a\x64\x55\x4c\x52\x63\x51\x43\x6f\x47','\x57\x35\x74\x64\x56\x38\x6b\x54\x57\x51\x72\x49\x57\x50\x57\x4b\x66\x71','\x57\x37\x5a\x63\x4c\x43\x6f\x7a\x57\x50\x6c\x64\x56\x38\x6b\x4f','\x57\x37\x4a\x63\x53\x43\x6f\x6b\x75\x61','\x57\x36\x4a\x63\x51\x53\x6b\x79\x57\x4f\x48\x73\x63\x5a\x6c\x63\x50\x71','\x57\x52\x52\x63\x53\x78\x54\x6b\x57\x37\x4e\x64\x53\x38\x6b\x51\x64\x61','\x6c\x38\x6f\x79\x75\x5a\x56\x64\x53\x77\x69','\x65\x74\x70\x64\x4c\x62\x69\x30\x6f\x76\x64\x63\x52\x47','\x74\x6d\x6b\x41\x74\x6d\x6f\x69\x76\x48\x65\x32\x57\x36\x4b','\x57\x52\x4e\x63\x54\x32\x7a\x62\x57\x36\x6c\x64\x54\x38\x6b\x6b\x68\x47','\x57\x37\x6c\x64\x52\x6d\x6b\x55\x57\x52\x35\x48','\x46\x38\x6b\x4b\x76\x31\x4a\x64\x48\x38\x6f\x35\x57\x51\x4c\x64','\x57\x36\x74\x63\x4f\x43\x6f\x78\x78\x32\x4c\x54','\x57\x4f\x4a\x63\x4d\x5a\x39\x50\x57\x34\x6d\x63\x57\x35\x79','\x57\x50\x48\x67\x57\x50\x4a\x63\x55\x4c\x42\x64\x50\x6d\x6f\x5a\x57\x36\x61','\x57\x35\x61\x50\x57\x37\x35\x45\x70\x53\x6f\x4c\x74\x53\x6b\x52','\x7a\x53\x6b\x68\x57\x4f\x72\x38\x7a\x74\x4b\x52\x6a\x57','\x57\x52\x58\x51\x6e\x68\x56\x64\x4e\x6d\x6f\x78','\x46\x43\x6f\x77\x6c\x63\x43\x68\x70\x6d\x6f\x42\x7a\x57','\x57\x50\x31\x45\x57\x50\x6c\x63\x55\x4b\x42\x64\x4e\x38\x6f\x59','\x57\x52\x71\x63\x57\x35\x6c\x64\x47\x6d\x6f\x4f\x57\x50\x31\x70\x61\x71','\x57\x52\x37\x63\x4c\x53\x6f\x2f\x57\x35\x75','\x57\x35\x72\x66\x46\x53\x6f\x4d\x66\x61','\x7a\x76\x6c\x64\x53\x38\x6f\x39\x57\x51\x4a\x63\x4f\x57','\x6c\x38\x6b\x70\x57\x35\x4e\x64\x51\x73\x69\x64\x75\x73\x38','\x57\x35\x46\x64\x56\x53\x6b\x6e\x57\x37\x70\x64\x4c\x43\x6f\x65\x6a\x6d\x6b\x4f','\x57\x36\x6c\x63\x4d\x43\x6f\x7a\x57\x4f\x37\x64\x55\x53\x6b\x4b\x6c\x6d\x6f\x4e','\x73\x5a\x69\x32\x44\x57','\x75\x73\x47\x57\x43\x61\x69','\x57\x52\x54\x56\x44\x78\x2f\x64\x4b\x43\x6f\x76\x57\x50\x7a\x78','\x44\x38\x6f\x50\x57\x50\x76\x41\x57\x52\x61','\x57\x52\x35\x33\x45\x4e\x2f\x64\x4c\x53\x6f\x39\x57\x50\x65','\x6b\x53\x6f\x77\x64\x53\x6f\x2b\x6c\x64\x30\x4d\x57\x37\x71','\x57\x52\x43\x43\x57\x36\x78\x64\x4c\x43\x6f\x48','\x72\x53\x6f\x56\x57\x35\x5a\x64\x4b\x53\x6f\x53\x57\x52\x64\x63\x4a\x53\x6f\x30','\x57\x35\x56\x64\x48\x43\x6f\x51\x57\x4f\x4e\x64\x4e\x61\x4f','\x75\x47\x46\x64\x4d\x62\x53\x2f\x62\x30\x2f\x63\x55\x61','\x67\x4d\x50\x4d\x6d\x66\x6a\x30\x57\x34\x68\x63\x47\x53\x6b\x53\x57\x34\x44\x30\x57\x36\x38','\x57\x51\x37\x63\x49\x53\x6f\x2f\x57\x34\x6d','\x42\x30\x78\x64\x54\x38\x6f\x30\x57\x52\x37\x63\x4e\x53\x6b\x4c','\x57\x52\x4a\x63\x54\x49\x75','\x57\x36\x72\x52\x57\x4f\x6a\x77','\x57\x50\x6c\x64\x52\x75\x71\x34\x57\x34\x50\x66','\x57\x52\x7a\x77\x67\x53\x6f\x50\x57\x34\x70\x64\x48\x4d\x79\x42','\x61\x53\x6f\x34\x57\x51\x42\x64\x4e\x74\x52\x64\x47\x61','\x43\x38\x6f\x35\x6e\x77\x69','\x7a\x43\x6f\x34\x57\x36\x4e\x64\x48\x43\x6f\x4d','\x76\x4a\x76\x6e\x57\x36\x68\x63\x47\x6d\x6b\x30\x57\x4f\x53','\x57\x34\x4e\x64\x51\x6d\x6b\x58\x57\x52\x48\x4c\x57\x52\x71\x4e','\x57\x37\x30\x32\x57\x34\x76\x6c\x65\x57','\x43\x6d\x6f\x49\x62\x53\x6f\x59\x57\x34\x35\x61\x6c\x32\x6d','\x71\x43\x6f\x74\x65\x4c\x69\x62','\x57\x37\x33\x63\x4e\x38\x6f\x71\x57\x4f\x69','\x57\x35\x65\x66\x57\x34\x50\x79\x6f\x47','\x57\x50\x5a\x63\x49\x4a\x62\x2b\x57\x37\x34\x64','\x46\x43\x6f\x61\x6c\x5a\x6d\x73\x72\x78\x35\x4f','\x57\x51\x5a\x63\x48\x5a\x6c\x63\x48\x30\x42\x64\x56\x47\x71\x39','\x74\x5a\x78\x64\x49\x62\x61\x2b\x62\x30\x43','\x57\x52\x68\x63\x49\x38\x6b\x2b\x6f\x38\x6f\x2b\x41\x43\x6b\x5a\x57\x36\x79','\x6e\x53\x6f\x67\x69\x73\x75\x6e\x61\x38\x6f\x45','\x57\x35\x42\x64\x51\x6d\x6b\x48\x57\x51\x35\x51\x57\x51\x43\x65\x69\x57','\x57\x37\x5a\x63\x4c\x43\x6f\x43\x57\x50\x74\x64\x53\x38\x6b\x4a','\x57\x34\x46\x64\x54\x6d\x6b\x48\x57\x51\x44\x48\x57\x50\x4f\x4d','\x57\x34\x75\x55\x41\x61','\x57\x50\x78\x64\x4b\x53\x6f\x32\x42\x5a\x31\x66','\x57\x36\x37\x64\x47\x6d\x6b\x6a\x57\x52\x66\x56\x74\x59\x6d','\x69\x6d\x6b\x66\x79\x74\x52\x64\x47\x6d\x6f\x4e\x57\x34\x46\x64\x47\x5a\x53\x4b\x71\x71\x57','\x57\x50\x68\x64\x55\x66\x57\x47\x57\x35\x62\x78\x57\x35\x71','\x65\x6d\x6f\x4f\x57\x52\x52\x64\x4a\x61','\x57\x52\x35\x33\x45\x4e\x2f\x64\x4c\x53\x6b\x41\x57\x4f\x7a\x74','\x79\x53\x6f\x32\x6b\x4d\x53\x54\x73\x43\x6f\x32\x57\x50\x61','\x57\x36\x70\x64\x4d\x53\x6b\x37\x57\x52\x44\x30\x71\x4a\x79\x59','\x57\x52\x50\x66\x68\x53\x6f\x2f\x57\x35\x69','\x57\x35\x75\x59\x45\x47\x4b\x79\x57\x36\x57\x77\x57\x34\x79','\x57\x51\x56\x64\x4f\x43\x6b\x72\x57\x4f\x78\x63\x48\x63\x75\x54\x57\x4f\x71','\x57\x52\x56\x63\x4f\x31\x39\x76\x57\x36\x6d','\x57\x51\x66\x66\x61\x38\x6f\x35\x57\x34\x69','\x57\x4f\x56\x63\x49\x6d\x6f\x32\x57\x52\x78\x64\x56\x32\x37\x63\x52\x6d\x6b\x53','\x57\x51\x6d\x6f\x57\x34\x33\x64\x48\x6d\x6f\x50\x57\x4f\x76\x64\x70\x71','\x57\x35\x75\x51\x44\x57\x65\x75\x57\x51\x79\x65\x57\x35\x30','\x57\x4f\x56\x63\x49\x6d\x6f\x32\x57\x52\x78\x64\x56\x32\x37\x63\x52\x61','\x42\x38\x6f\x48\x6e\x47','\x62\x38\x6f\x4f\x57\x51\x4e\x64\x48\x74\x52\x64\x55\x38\x6b\x72','\x6a\x38\x6f\x57\x57\x52\x52\x64\x4d\x49\x52\x64\x4e\x53\x6b\x71\x57\x52\x43','\x57\x51\x37\x63\x48\x38\x6b\x32\x6e\x38\x6f\x37\x44\x6d\x6b\x5a\x57\x36\x79','\x72\x64\x6d\x4a\x7a\x57\x69\x49\x57\x34\x5a\x63\x4c\x47','\x57\x51\x37\x64\x51\x64\x4f','\x79\x5a\x39\x6e\x57\x36\x6c\x63\x4e\x6d\x6b\x4f','\x57\x52\x78\x64\x48\x43\x6f\x48\x43\x4a\x76\x64\x66\x53\x6b\x66','\x57\x35\x61\x31\x57\x34\x79','\x57\x34\x46\x64\x4f\x53\x6b\x63\x57\x37\x52\x64\x4b\x38\x6b\x45\x6b\x38\x6b\x4d','\x35\x50\x73\x44\x35\x79\x67\x67\x36\x79\x67\x6e\x34\x4f\x73\x6d\x57\x34\x43\x37\x45\x43\x6f\x39','\x41\x4c\x33\x64\x56\x43\x6f\x30\x57\x51\x37\x63\x50\x43\x6b\x4b\x79\x57','\x6d\x43\x6f\x44\x68\x53\x6f\x36\x6c\x73\x30','\x57\x52\x58\x51\x46\x71','\x57\x36\x6c\x4d\x49\x42\x2f\x4c\x49\x36\x71','\x6b\x38\x6b\x42\x57\x35\x4f','\x57\x4f\x34\x36\x6b\x6d\x6f\x37\x57\x34\x30\x48\x43\x53\x6f\x32','\x57\x52\x64\x63\x4f\x63\x30\x4f\x57\x50\x44\x71','\x6f\x43\x6b\x43\x57\x36\x33\x64\x4f\x59\x57\x77\x78\x73\x75','\x6d\x53\x6f\x64\x76\x47','\x71\x53\x6f\x6b\x57\x50\x4c\x39\x57\x52\x6d\x54\x57\x37\x47\x4a','\x57\x37\x35\x65\x42\x6d\x6f\x54\x65\x38\x6f\x52','\x76\x43\x6b\x30\x74\x76\x5a\x64\x55\x53\x6f\x30','\x57\x51\x61\x7a\x57\x34\x37\x64\x48\x43\x6f\x2f\x57\x50\x6a\x70\x6e\x47','\x57\x36\x4c\x39\x57\x52\x6e\x78\x41\x53\x6f\x42\x57\x51\x65','\x57\x51\x4e\x63\x4a\x53\x6f\x37\x57\x35\x78\x63\x48\x6d\x6f\x7a\x70\x6d\x6b\x4f','\x57\x51\x5a\x63\x4a\x53\x6f\x4d\x57\x35\x5a\x63\x48\x53\x6f\x73','\x57\x50\x62\x63\x57\x52\x4a\x63\x53\x47','\x57\x37\x4c\x31\x42\x53\x6f\x2b\x62\x43\x6f\x58\x45\x31\x71','\x76\x53\x6f\x52\x57\x34\x64\x64\x48\x6d\x6f\x36\x57\x51\x4a\x63\x4a\x47','\x63\x66\x2f\x64\x53\x4e\x4f','\x63\x53\x6f\x57\x57\x51\x46\x64\x4a\x61','\x57\x34\x46\x64\x52\x6d\x6b\x53\x57\x51\x39\x54\x57\x52\x43\x4a\x6e\x47','\x42\x38\x6f\x65\x57\x36\x4a\x64\x47\x53\x6f\x49','\x57\x51\x5a\x63\x50\x67\x76\x72\x57\x37\x38','\x75\x64\x39\x6d\x57\x36\x42\x63\x54\x53\x6b\x4f\x57\x4f\x62\x33','\x57\x50\x37\x63\x49\x6d\x6f\x35\x57\x52\x74\x64\x54\x32\x79','\x6b\x43\x6b\x77\x57\x35\x4e\x64\x56\x5a\x71\x42\x75\x71','\x57\x4f\x30\x51\x6e\x38\x6f\x32','\x57\x37\x35\x49\x57\x50\x4b\x2f\x57\x35\x64\x63\x4b\x5a\x66\x73','\x69\x43\x6f\x41\x6d\x63\x71\x62\x6a\x6d\x6f\x42\x46\x57','\x45\x6d\x6f\x75\x6e\x63\x30\x6f\x76\x67\x35\x68','\x57\x36\x52\x64\x48\x53\x6b\x38\x57\x51\x6a\x50\x72\x5a\x75\x35','\x57\x51\x64\x63\x4f\x77\x58\x6c\x57\x37\x74\x64\x53\x71','\x57\x51\x74\x64\x48\x6d\x6f\x33\x7a\x59\x62\x55\x67\x53\x6b\x49','\x57\x34\x46\x64\x55\x6d\x6b\x57\x57\x52\x4c\x54\x57\x52\x61\x33\x6c\x47','\x71\x53\x6b\x67\x71\x53\x6f\x6c\x71\x73\x65\x78','\x57\x50\x56\x64\x49\x6d\x6b\x65\x57\x50\x52\x63\x48\x61','\x6f\x53\x6b\x63\x57\x35\x52\x64\x50\x61','\x57\x52\x37\x64\x55\x31\x61\x4c\x57\x35\x6e\x73','\x79\x6d\x6b\x30\x71\x4b\x52\x64\x4e\x6d\x6f\x2b','\x57\x36\x68\x63\x51\x53\x6f\x44\x78\x77\x75','\x62\x38\x6f\x41\x69\x5a\x4f\x68\x6a\x61','\x46\x38\x6b\x30\x74\x4c\x42\x64\x47\x43\x6f\x50\x57\x4f\x6e\x42','\x46\x31\x4e\x64\x55\x43\x6f\x35\x57\x52\x78\x63\x4f\x38\x6b\x4f\x71\x57','\x57\x34\x46\x64\x4f\x53\x6b\x63\x57\x37\x52\x64\x4b\x38\x6b\x45\x70\x53\x6b\x4f','\x57\x34\x42\x64\x4f\x43\x6b\x4a\x57\x52\x48\x57\x57\x4f\x65\x4a\x6a\x47','\x79\x66\x4e\x64\x55\x53\x6f\x2f\x57\x51\x2f\x63\x56\x57','\x57\x51\x42\x64\x4f\x38\x6b\x65\x57\x50\x70\x63\x49\x61\x34','\x74\x59\x74\x63\x4d\x6d\x6f\x35','\x57\x51\x37\x63\x49\x38\x6b\x38\x6f\x43\x6f\x50\x44\x71','\x57\x4f\x4a\x64\x56\x75\x61\x49\x57\x35\x58\x74','\x76\x4a\x52\x64\x4c\x47\x38','\x57\x37\x56\x63\x51\x38\x6f\x76\x75\x78\x4c\x53\x61\x64\x38','\x57\x51\x68\x63\x4c\x38\x6b\x58\x6d\x53\x6f\x34\x6d\x38\x6b\x57\x57\x36\x6d','\x74\x49\x66\x6d\x6d\x74\x48\x48\x45\x71','\x57\x52\x33\x63\x48\x64\x2f\x63\x4e\x76\x42\x64\x48\x71\x6d\x47','\x44\x43\x6f\x76\x69\x33\x47','\x57\x36\x4a\x63\x4b\x43\x6f\x75\x57\x4f\x56\x64\x55\x43\x6b\x50','\x57\x51\x2f\x63\x50\x67\x62\x6a\x57\x36\x6c\x64\x50\x53\x6b\x6b\x6f\x71','\x57\x50\x4a\x63\x4c\x4a\x31\x33\x57\x35\x6a\x68','\x57\x34\x69\x59\x78\x47\x71\x6e\x57\x52\x65','\x57\x34\x30\x49\x57\x34\x58\x7a\x6d\x6d\x6f\x2f','\x57\x35\x4a\x63\x54\x53\x6f\x47\x73\x4e\x71','\x61\x6d\x6f\x34\x57\x52\x2f\x64\x4d\x47','\x6f\x53\x6b\x77\x57\x35\x64\x64\x4f\x63\x34\x77\x75\x61','\x57\x34\x46\x64\x52\x6d\x6b\x32\x57\x51\x35\x4a\x57\x52\x57\x57\x6f\x57','\x75\x38\x6f\x31\x62\x43\x6f\x58\x57\x34\x72\x79\x6c\x31\x65','\x68\x67\x30\x44\x42\x67\x57\x79\x72\x6d\x6f\x54\x57\x4f\x6c\x63\x4c\x71\x70\x64\x50\x71','\x64\x30\x70\x64\x4f\x77\x75\x72\x57\x51\x31\x2b\x57\x37\x4f','\x75\x43\x6f\x56\x57\x35\x70\x64\x4e\x53\x6f\x38\x57\x51\x33\x63\x48\x6d\x6f\x2b','\x57\x35\x6d\x5a\x43\x62\x65\x2b\x57\x51\x30\x62\x57\x34\x57','\x57\x37\x52\x64\x4a\x43\x6f\x77\x57\x51\x37\x64\x51\x57','\x66\x43\x6b\x73\x57\x35\x2f\x64\x51\x73\x38\x64','\x57\x36\x33\x63\x4b\x43\x6f\x6e\x57\x50\x74\x64\x51\x43\x6b\x48\x6c\x61','\x57\x35\x78\x64\x4c\x53\x6b\x50\x57\x52\x62\x59\x71\x61','\x57\x51\x2f\x63\x4e\x73\x4f','\x57\x34\x37\x64\x47\x53\x6f\x51\x57\x4f\x47','\x36\x79\x45\x77\x36\x7a\x4d\x32\x43\x57','\x79\x4c\x70\x64\x55\x53\x6f\x39','\x67\x66\x2f\x64\x53\x78\x30','\x57\x35\x46\x64\x50\x6d\x6b\x34\x57\x51\x34','\x7a\x53\x6b\x30\x75\x65\x30','\x57\x52\x64\x63\x53\x74\x53','\x57\x51\x31\x52\x41\x32\x64\x64\x4e\x6d\x6f\x41\x57\x50\x72\x71','\x41\x31\x4e\x64\x55\x53\x6f\x39\x57\x50\x6c\x63\x53\x57','\x57\x50\x50\x63\x57\x4f\x68\x63\x50\x71','\x57\x36\x56\x63\x50\x43\x6f\x6a\x73\x32\x48\x50\x61\x57\x4b','\x43\x53\x6f\x6a\x6d\x67\x46\x63\x4c\x6d\x6f\x33','\x6e\x43\x6f\x7a\x75\x47','\x57\x37\x35\x5a\x57\x4f\x79\x33\x57\x35\x64\x63\x47\x61','\x57\x34\x4a\x64\x51\x6d\x6b\x53\x57\x51\x58\x57\x57\x52\x53','\x71\x73\x75\x59\x41\x61\x69\x70\x57\x36\x38','\x57\x36\x35\x2b\x57\x50\x43\x59\x57\x35\x56\x64\x49\x73\x54\x79','\x57\x51\x33\x64\x4c\x53\x6f\x33','\x57\x34\x33\x64\x54\x38\x6b\x65\x57\x37\x6c\x64\x53\x38\x6f\x67\x6b\x6d\x6b\x50','\x57\x51\x37\x63\x4f\x67\x44\x61\x57\x35\x37\x64\x53\x61','\x57\x52\x70\x64\x56\x53\x6b\x6b\x74\x58\x58\x30\x71\x53\x6b\x57','\x79\x31\x6c\x64\x4f\x6d\x6f\x39\x57\x51\x70\x63\x4f\x57','\x74\x5a\x35\x6c\x57\x37\x46\x63\x4b\x43\x6b\x56','\x61\x66\x56\x64\x53\x78\x4f','\x74\x64\x76\x72\x57\x37\x78\x63\x4e\x43\x6b\x5a','\x69\x38\x6b\x7a\x57\x50\x44\x69\x79\x74\x34\x34\x79\x47','\x57\x51\x74\x63\x4a\x38\x6b\x37\x6d\x53\x6f\x34\x45\x71','\x57\x51\x7a\x63\x63\x43\x6f\x35\x57\x35\x70\x64\x4d\x78\x61','\x41\x6d\x6f\x6a\x6a\x5a\x53\x69\x71\x66\x39\x63','\x70\x38\x6f\x76\x71\x4a\x37\x64\x55\x49\x56\x63\x51\x43\x6f\x58','\x57\x50\x66\x78\x57\x4f\x78\x63\x56\x30\x37\x64\x56\x38\x6f\x53\x57\x34\x79','\x57\x37\x76\x67\x41\x53\x6f\x37\x66\x6d\x6f\x6e\x42\x4d\x38','\x57\x52\x53\x66\x57\x34\x37\x64\x4c\x53\x6f\x4b','\x6c\x53\x6b\x73\x57\x35\x4e\x64\x56\x57','\x6a\x38\x6b\x63\x43\x78\x74\x64\x50\x43\x6f\x73\x57\x52\x38','\x57\x51\x33\x63\x56\x74\x47\x4a','\x57\x50\x4a\x63\x4c\x4a\x31\x33\x57\x35\x69\x55\x57\x35\x79','\x57\x36\x64\x63\x54\x38\x6f\x69\x57\x4f\x42\x64\x52\x53\x6b\x50','\x57\x51\x37\x64\x51\x53\x6b\x62\x41\x47','\x57\x36\x56\x63\x50\x43\x6f\x6a\x77\x78\x39\x53\x63\x4a\x38','\x57\x51\x2f\x63\x4e\x73\x33\x63\x48\x47','\x6d\x53\x6f\x41\x6c\x63\x57\x48\x6c\x47','\x41\x4c\x70\x64\x50\x53\x6f\x37\x57\x52\x37\x63\x53\x38\x6b\x67\x72\x71','\x57\x4f\x52\x63\x49\x6d\x6f\x37\x57\x52\x74\x64\x4e\x78\x42\x63\x50\x43\x6b\x42','\x57\x52\x37\x63\x4a\x53\x6f\x4d\x57\x35\x57','\x57\x37\x6e\x54\x57\x50\x31\x78\x46\x71','\x57\x34\x38\x31\x57\x34\x6a\x61\x6f\x53\x6f\x59\x74\x38\x6b\x39','\x57\x36\x44\x46\x45\x6d\x6f\x47','\x57\x51\x52\x64\x54\x6d\x6b\x74\x57\x50\x52\x63\x4c\x76\x4f','\x57\x36\x2f\x63\x4b\x38\x6f\x6a\x57\x4f\x37\x64\x51\x53\x6b\x4f','\x57\x52\x5a\x63\x53\x49\x43\x51\x57\x4f\x66\x62\x46\x31\x65','\x6c\x53\x6f\x6a\x75\x4a\x33\x64\x53\x33\x64\x63\x52\x53\x6f\x53','\x57\x37\x33\x63\x54\x53\x6b\x71\x57\x4f\x54\x7a\x64\x77\x56\x63\x50\x61','\x73\x43\x6f\x2b\x64\x71','\x57\x52\x58\x65\x6c\x6d\x6f\x5a\x57\x35\x4a\x64\x47\x33\x44\x71','\x72\x6d\x6f\x67\x6a\x59\x53\x63','\x57\x36\x64\x64\x4c\x53\x6b\x4d\x57\x51\x7a\x75\x73\x47','\x6c\x53\x6f\x6a\x71\x63\x68\x64\x53\x67\x53','\x57\x50\x2f\x63\x49\x49\x35\x4f','\x6c\x6d\x6b\x77\x57\x34\x64\x64\x4f\x64\x71\x66\x75\x71\x61','\x41\x38\x6f\x74\x6b\x74\x61\x62\x45\x68\x31\x38','\x57\x4f\x5a\x63\x4c\x67\x50\x4d\x57\x36\x65','\x72\x73\x48\x77\x57\x36\x42\x63\x51\x53\x6b\x30\x57\x4f\x66\x2b','\x6a\x53\x6b\x63\x7a\x4a\x6c\x64\x48\x43\x6f\x4c\x57\x36\x46\x64\x53\x47\x6d\x73\x44\x47\x53','\x43\x38\x6b\x42\x57\x50\x44\x6b\x42\x73\x75\x50\x61\x71','\x74\x53\x6f\x70\x64\x6d\x6f\x49\x57\x34\x6a\x63\x70\x48\x53','\x57\x52\x42\x63\x4e\x6d\x6b\x37\x70\x43\x6f\x50','\x57\x52\x52\x64\x55\x53\x6b\x63\x43\x71','\x57\x37\x6a\x79\x45\x6d\x6f\x48\x64\x38\x6f\x58','\x57\x34\x71\x55\x41\x62\x61\x79\x57\x52\x65\x72\x57\x34\x57','\x57\x36\x2f\x63\x53\x38\x6f\x39\x74\x68\x79','\x57\x51\x42\x63\x56\x53\x6b\x4e\x6d\x53\x6f\x58\x42\x47','\x6a\x53\x6b\x77\x57\x35\x52\x64\x56\x57','\x57\x4f\x64\x64\x51\x30\x47','\x57\x52\x78\x63\x4f\x73\x79\x48\x57\x4f\x62\x44','\x57\x51\x46\x4c\x4d\x79\x4e\x4c\x4a\x35\x34','\x57\x34\x6d\x4d\x73\x47\x57\x41\x57\x51\x57\x65\x57\x34\x75','\x75\x71\x68\x63\x48\x6d\x6f\x39\x76\x62\x6a\x67','\x64\x30\x70\x64\x4f\x77\x75\x72\x57\x51\x31\x2b\x57\x37\x57','\x64\x45\x77\x4c\x51\x45\x49\x30\x49\x47','\x57\x50\x64\x63\x4d\x43\x6f\x55\x57\x4f\x37\x64\x4a\x77\x46\x63\x52\x6d\x6b\x41','\x57\x52\x66\x52\x44\x33\x74\x64\x48\x38\x6f\x43','\x57\x37\x54\x64\x41\x6d\x6f\x58\x6e\x53\x6f\x36\x46\x78\x47','\x71\x43\x6b\x79\x57\x50\x50\x42\x71\x61','\x57\x52\x46\x63\x4e\x74\x70\x63\x4a\x30\x57','\x72\x74\x69\x57\x41\x62\x71\x7a\x57\x36\x4a\x63\x4e\x61','\x57\x37\x70\x64\x4c\x53\x6b\x36\x57\x51\x35\x30\x71\x64\x53\x37','\x71\x53\x6b\x45\x75\x43\x6f\x75\x75\x71\x71\x77','\x75\x4a\x68\x64\x4e\x62\x6d\x4a\x68\x32\x42\x63\x56\x71','\x57\x51\x4a\x64\x56\x59\x33\x64\x54\x71','\x57\x36\x6c\x64\x4d\x38\x6b\x6a\x57\x51\x44\x31','\x57\x51\x4a\x4c\x4b\x36\x56\x4c\x49\x6a\x65','\x71\x38\x6f\x50\x63\x53\x6f\x34\x57\x34\x6a\x4c\x6c\x47','\x57\x52\x4e\x63\x47\x6d\x6f\x4a\x57\x35\x4e\x63\x48\x38\x6f\x46\x6b\x6d\x6b\x4f','\x57\x52\x7a\x6f\x63\x43\x6f\x32\x57\x35\x70\x64\x4f\x32\x43','\x57\x34\x33\x64\x4b\x53\x6f\x31\x57\x4f\x78\x64\x4b\x62\x64\x64\x50\x6d\x6f\x44','\x57\x50\x5a\x63\x4a\x6d\x6f\x5a','\x57\x51\x2f\x64\x53\x49\x2f\x64\x55\x43\x6f\x46\x6c\x71','\x57\x35\x75\x59\x45\x47\x4b\x79\x57\x4f\x53\x62','\x57\x4f\x33\x64\x53\x65\x65\x4c\x57\x35\x4c\x46\x57\x35\x78\x63\x52\x61','\x75\x5a\x4a\x63\x49\x6d\x6f\x4f\x41\x58\x72\x6e\x57\x52\x71','\x57\x52\x52\x64\x4f\x53\x6b\x44\x57\x50\x6d','\x57\x35\x64\x64\x54\x6d\x6b\x59\x57\x51\x34','\x57\x52\x78\x64\x53\x59\x34','\x57\x52\x64\x63\x51\x49\x38\x31','\x62\x38\x6f\x4f\x57\x51\x4e\x64\x48\x74\x52\x63\x4e\x6d\x6b\x74\x57\x37\x79','\x57\x36\x5a\x63\x51\x6d\x6b\x2f\x76\x61\x72\x52\x77\x43\x6b\x37','\x6e\x6d\x6f\x41\x67\x53\x6f\x4d\x63\x64\x57\x65\x57\x36\x47','\x57\x4f\x4a\x64\x54\x30\x69\x50\x57\x34\x58\x63','\x57\x52\x7a\x6f\x63\x43\x6f\x32\x57\x35\x70\x63\x48\x67\x76\x75','\x57\x4f\x37\x64\x52\x66\x65\x56\x57\x35\x62\x42\x57\x35\x75','\x57\x4f\x4a\x64\x56\x53\x6b\x45\x44\x58\x47','\x57\x34\x70\x63\x50\x43\x6b\x73\x57\x4f\x71','\x57\x52\x7a\x6f\x63\x43\x6f\x32\x57\x35\x70\x63\x48\x67\x6a\x78','\x57\x37\x4e\x4d\x49\x51\x70\x4f\x4f\x69\x74\x4d\x49\x35\x33\x50\x4c\x36\x30','\x57\x52\x2f\x63\x52\x67\x58\x73','\x76\x64\x72\x76\x57\x37\x4e\x63\x55\x57','\x71\x53\x6f\x44\x57\x4f\x72\x51\x57\x51\x4b\x47\x57\x37\x57\x52','\x57\x51\x74\x63\x51\x6d\x6f\x36\x57\x35\x68\x63\x4b\x43\x6f\x73','\x73\x64\x74\x63\x47\x53\x6f\x32\x76\x71\x76\x6d\x57\x50\x65','\x57\x52\x46\x64\x55\x38\x6b\x78\x42\x62\x35\x4c','\x57\x52\x42\x64\x4b\x53\x6f\x50\x79\x5a\x50\x66\x67\x53\x6b\x4c','\x72\x38\x6b\x51\x35\x52\x67\x79\x35\x79\x45\x73\x57\x51\x70\x64\x50\x6f\x45\x79\x4e\x2b\x41\x6d\x54\x71','\x57\x34\x56\x64\x54\x43\x6f\x62\x35\x7a\x6b\x79\x35\x42\x36\x30\x35\x42\x51\x69','\x69\x43\x6f\x67\x6d\x49\x57','\x57\x35\x6d\x35\x41\x47\x57\x73\x57\x51\x57','\x77\x4a\x5a\x63\x49\x53\x6f\x2f\x73\x72\x48\x43\x57\x4f\x34','\x44\x38\x6b\x45\x74\x43\x6f\x73\x71\x71','\x42\x53\x6f\x55\x69\x4d\x69\x52\x73\x71','\x57\x50\x42\x63\x47\x38\x6f\x4a\x57\x52\x74\x64\x48\x4e\x79','\x76\x4a\x2f\x63\x4a\x6d\x6f\x30\x74\x47\x75','\x75\x43\x6f\x62\x57\x50\x76\x31\x57\x51\x6e\x55','\x46\x38\x6f\x65\x6e\x49\x57','\x36\x7a\x32\x2b\x35\x52\x67\x66\x73\x43\x6f\x33\x57\x35\x35\x70\x6a\x4c\x61','\x57\x36\x4c\x49\x57\x50\x44\x62\x78\x43\x6f\x6d\x57\x52\x33\x64\x52\x47','\x75\x38\x6b\x41\x71\x53\x6f\x63\x73\x48\x57\x31\x57\x37\x34','\x57\x35\x64\x64\x52\x6d\x6b\x52\x57\x51\x43','\x57\x4f\x5a\x64\x55\x66\x75','\x71\x6d\x6f\x69\x57\x4f\x72\x57\x57\x51\x47\x36','\x70\x6d\x6f\x72\x6c\x63\x79\x45\x6b\x38\x6f\x6f\x44\x47','\x57\x52\x62\x56\x42\x78\x64\x64\x4d\x38\x6f\x4e\x57\x4f\x76\x6f','\x43\x53\x6f\x72\x69\x33\x4a\x63\x48\x6d\x6b\x37\x57\x37\x53','\x57\x37\x4e\x63\x50\x43\x6b\x6c\x57\x4f\x71','\x57\x34\x75\x2f\x41\x57\x71\x6a\x57\x51\x43\x63\x57\x35\x61','\x57\x51\x46\x63\x4d\x4d\x58\x74\x57\x37\x6c\x64\x55\x53\x6b\x42\x6a\x71','\x46\x31\x70\x64\x55\x6d\x6f\x58\x57\x52\x2f\x63\x56\x53\x6b\x4e\x77\x71','\x72\x43\x6f\x4d\x62\x53\x6f\x34\x57\x35\x6a\x79\x69\x31\x4f','\x57\x37\x39\x54\x57\x4f\x75\x6c\x57\x34\x4b','\x57\x35\x33\x64\x4a\x53\x6f\x36\x57\x4f\x5a\x64\x4c\x49\x33\x64\x51\x71','\x57\x34\x4a\x64\x52\x6d\x6b\x58\x57\x52\x47','\x65\x53\x6f\x41\x6c\x63\x57\x48\x6c\x47','\x71\x43\x6f\x6d\x57\x4f\x72\x32\x57\x51\x47\x50\x57\x35\x47\x58','\x57\x37\x5a\x63\x4d\x43\x6f\x74\x57\x52\x37\x64\x52\x47','\x7a\x53\x6b\x4a\x73\x4c\x37\x64\x4c\x6d\x6f\x31\x57\x52\x71','\x69\x38\x6b\x64\x57\x35\x64\x64\x4b\x5a\x6d\x45\x72\x59\x61','\x57\x36\x48\x50\x57\x4f\x69','\x57\x51\x4c\x33\x41\x78\x79','\x57\x50\x71\x5a\x69\x43\x6f\x36','\x57\x50\x71\x44\x57\x34\x74\x64\x53\x38\x6f\x7a','\x57\x36\x4e\x63\x54\x53\x6f\x75','\x7a\x43\x6f\x6a\x69\x32\x34','\x57\x52\x52\x64\x51\x6d\x6b\x43\x57\x50\x70\x63\x4b\x57\x34\x32\x57\x4f\x4f','\x6f\x38\x6f\x32\x57\x51\x56\x64\x4e\x74\x4f','\x57\x36\x74\x63\x51\x6d\x6b\x41\x57\x4f\x76\x35\x67\x68\x52\x63\x4f\x57','\x57\x52\x37\x63\x4d\x49\x52\x63\x49\x30\x79','\x75\x4a\x76\x45\x57\x36\x68\x63\x48\x53\x6b\x31\x57\x50\x79','\x6d\x55\x49\x38\x4b\x6f\x45\x4e\x4d\x62\x4b','\x75\x53\x6b\x6c\x75\x38\x6f\x69\x73\x47\x38\x32\x57\x36\x4b','\x57\x37\x74\x64\x4c\x53\x6b\x4b\x57\x51\x7a\x2b\x77\x4a\x6d\x34','\x57\x36\x79\x67\x75\x53\x6b\x53\x57\x4f\x46\x63\x4d\x5a\x72\x58\x57\x50\x75\x6f\x57\x4f\x58\x36\x72\x47','\x63\x75\x4a\x64\x53\x77\x61\x42\x57\x36\x30','\x57\x34\x6c\x64\x55\x53\x6b\x69\x57\x37\x52\x64\x4b\x38\x6f\x75','\x57\x34\x69\x59\x41\x71\x61','\x6d\x43\x6b\x59\x44\x64\x66\x52\x64\x43\x6f\x38\x57\x4f\x57\x53\x69\x75\x31\x49','\x71\x43\x6f\x52\x57\x35\x4e\x64\x4d\x57','\x75\x64\x4b\x47\x43\x71\x69\x31\x57\x37\x2f\x63\x4c\x47','\x78\x6d\x6f\x4b\x57\x35\x71','\x57\x51\x42\x64\x4a\x53\x6f\x4e\x42\x4a\x65\x72','\x57\x37\x62\x65\x41\x53\x6f\x4b\x65\x38\x6f\x61\x42\x67\x71','\x57\x50\x31\x69\x57\x4f\x74\x63\x55\x66\x43','\x57\x52\x6e\x45\x62\x53\x6f\x55\x57\x35\x70\x64\x4d\x61','\x57\x4f\x35\x73\x57\x4f\x6c\x63\x56\x47','\x57\x52\x5a\x64\x56\x38\x6b\x63\x57\x50\x2f\x63\x4b\x57\x38\x5a\x57\x50\x61','\x57\x36\x2f\x63\x4f\x43\x6f\x78\x78\x75\x6a\x32\x61\x5a\x4f','\x57\x36\x68\x63\x51\x53\x6f\x45\x78\x77\x35\x58','\x45\x38\x6f\x44\x6e\x59\x61\x65\x70\x47','\x57\x36\x35\x2b\x57\x50\x43\x59\x57\x35\x56\x64\x49\x74\x35\x71','\x76\x64\x66\x77\x57\x37\x34','\x57\x52\x64\x63\x51\x49\x38\x4a\x57\x4f\x44\x62\x45\x75\x57','\x75\x43\x6f\x62\x57\x50\x76\x31\x57\x51\x6e\x47\x57\x37\x57\x4c','\x57\x52\x64\x64\x4f\x5a\x70\x64\x54\x38\x6f\x66\x69\x47','\x57\x51\x56\x63\x4d\x38\x6b\x48','\x7a\x76\x64\x64\x53\x43\x6f\x38\x57\x50\x37\x63\x4f\x43\x6b\x4b\x74\x47','\x73\x5a\x4c\x67\x6d\x74\x48\x6d','\x71\x6d\x6f\x44\x57\x50\x76\x38\x57\x51\x47\x36\x57\x35\x53\x4d','\x57\x52\x48\x77\x67\x47','\x57\x34\x38\x49\x57\x35\x39\x7a\x6d\x6d\x6f\x2f\x77\x53\x6b\x30','\x57\x50\x79\x45\x61\x38\x6f\x32\x57\x35\x57','\x57\x35\x46\x64\x54\x6d\x6b\x6e\x57\x37\x2f\x64\x4b\x53\x6f\x7a\x6b\x38\x6b\x2b','\x57\x4f\x50\x45\x57\x4f\x68\x63\x53\x57','\x57\x4f\x54\x6b\x57\x51\x6c\x63\x56\x30\x74\x64\x55\x6d\x6f\x33\x57\x34\x38','\x72\x53\x6f\x44\x57\x4f\x72\x30\x57\x51\x38\x47\x57\x37\x57\x52','\x57\x36\x42\x63\x51\x43\x6f\x66\x6e\x4b\x47\x59\x41\x38\x6b\x50\x6c\x57\x56\x63\x4d\x38\x6f\x4a','\x64\x30\x70\x64\x4f\x77\x75\x72\x57\x34\x50\x50','\x57\x35\x57\x2b\x57\x34\x35\x67\x6f\x53\x6f\x79\x78\x57','\x57\x50\x62\x33\x57\x50\x37\x63\x55\x4b\x52\x64\x54\x43\x6f\x56','\x70\x43\x6f\x45\x74\x61','\x75\x4a\x76\x45\x57\x37\x42\x63\x51\x6d\x6b\x33\x57\x4f\x4c\x69','\x45\x64\x68\x64\x4e\x58\x4b\x79\x61\x47','\x35\x6c\x49\x76\x35\x6c\x49\x6b\x36\x6b\x32\x63\x35\x42\x32\x56\x6c\x61','\x6a\x53\x6f\x43\x6c\x74\x53\x6e','\x6c\x38\x6f\x6a\x74\x74\x46\x64\x56\x68\x68\x63\x53\x38\x6f\x51','\x64\x4c\x56\x64\x53\x77\x57\x4e\x57\x36\x50\x51\x57\x37\x30','\x57\x52\x43\x6f\x57\x34\x2f\x64\x48\x6d\x6f\x64\x57\x50\x75','\x57\x37\x37\x63\x4f\x43\x6f\x6c\x73\x33\x72\x51\x63\x61','\x46\x30\x4a\x64\x55\x38\x6f\x51\x57\x52\x34','\x57\x50\x38\x2b\x6e\x38\x6f\x37\x57\x37\x30\x38\x43\x6d\x6f\x38','\x57\x52\x33\x63\x4f\x74\x47\x31','\x7a\x38\x6b\x6d\x57\x4f\x6a\x6a','\x57\x51\x74\x64\x56\x30\x6d\x50\x57\x35\x58\x63','\x57\x35\x68\x64\x47\x53\x6f\x54\x57\x4f\x70\x64\x4e\x61\x4e\x64\x51\x61','\x57\x36\x4c\x51\x57\x50\x44\x6c\x45\x38\x6f\x46','\x57\x4f\x4b\x4d\x6e\x6d\x6f\x37','\x57\x52\x5a\x64\x48\x6d\x6f\x76\x57\x4f\x42\x64\x48\x53\x6b\x47\x6c\x53\x6f\x70','\x71\x74\x6d\x39\x41\x61\x69\x4c\x57\x37\x2f\x63\x4c\x47','\x75\x43\x6f\x62\x57\x50\x76\x31\x57\x51\x6d\x68\x57\x37\x4b','\x57\x36\x64\x63\x50\x43\x6b\x70','\x57\x50\x39\x76\x57\x50\x57','\x57\x36\x44\x52\x57\x50\x58\x61\x75\x43\x6f\x45','\x57\x52\x64\x63\x49\x38\x6b\x5a\x6c\x43\x6f\x59\x43\x57','\x57\x52\x2f\x64\x56\x5a\x37\x64\x56\x6d\x6f\x75\x61\x38\x6f\x42','\x43\x53\x6f\x6a\x6d\x67\x46\x63\x4c\x6d\x6f\x35\x57\x37\x4a\x64\x50\x61','\x57\x36\x5a\x63\x52\x43\x6f\x6d\x73\x57','\x57\x36\x5a\x63\x50\x38\x6b\x6c\x57\x4f\x48\x6b\x63\x57','\x77\x5a\x74\x63\x4d\x38\x6f\x49','\x57\x51\x52\x63\x50\x67\x44\x62\x57\x37\x37\x64\x53\x6d\x6b\x6f\x64\x47','\x57\x51\x52\x63\x53\x63\x30\x4e\x57\x50\x62\x6d\x6f\x30\x30','\x57\x4f\x31\x74\x57\x50\x64\x63\x4f\x4c\x42\x64\x50\x71','\x57\x36\x6e\x79\x57\x50\x65\x4f\x57\x35\x56\x63\x49\x73\x58\x55','\x57\x52\x70\x64\x56\x53\x6b\x67\x79\x72\x76\x74\x75\x43\x6b\x51','\x6d\x38\x6f\x45\x73\x47','\x57\x34\x79\x51\x79\x61\x4b\x73\x57\x51\x6d\x62','\x57\x51\x68\x64\x4b\x53\x6f\x30\x43\x71','\x57\x51\x64\x63\x51\x77\x58\x62','\x42\x38\x6b\x6d\x57\x50\x58\x44\x45\x64\x38','\x75\x74\x78\x64\x4e\x62\x4b','\x57\x52\x42\x63\x55\x53\x6f\x64\x57\x52\x74\x64\x4b\x61','\x57\x36\x74\x64\x49\x53\x6b\x52\x57\x51\x39\x34\x61\x64\x57\x32','\x57\x52\x37\x63\x48\x49\x52\x63\x48\x33\x78\x64\x54\x48\x61\x51','\x57\x50\x4a\x63\x4c\x4a\x31\x33\x57\x35\x6a\x6a\x57\x34\x66\x4f','\x45\x43\x6f\x67\x57\x50\x68\x63\x55\x4e\x62\x67\x61\x57\x38\x77\x57\x4f\x74\x63\x4a\x53\x6b\x63\x6e\x61','\x77\x64\x74\x63\x48\x43\x6f\x30\x74\x58\x62\x6c\x57\x51\x69','\x46\x30\x4a\x64\x50\x53\x6f\x35\x57\x51\x2f\x63\x53\x53\x6b\x4d\x77\x71','\x67\x66\x56\x64\x51\x32\x75','\x46\x5a\x31\x6f\x6c\x4a\x6a\x67','\x57\x4f\x4a\x64\x54\x30\x53\x4a\x57\x34\x4c\x78\x57\x34\x74\x63\x52\x71','\x70\x38\x6b\x66\x57\x35\x56\x64\x50\x73\x69\x63\x77\x64\x34','\x57\x37\x68\x64\x49\x38\x6b\x47\x57\x51\x62\x7a','\x57\x51\x78\x64\x56\x58\x56\x64\x4d\x43\x6f\x73','\x79\x43\x6f\x72\x6b\x4d\x46\x63\x4e\x53\x6b\x32\x57\x37\x4f','\x6b\x6d\x6f\x6a\x75\x49\x79','\x57\x36\x2f\x64\x4b\x53\x6b\x37','\x57\x50\x4b\x36\x6b\x53\x6f\x33\x57\x34\x53\x58\x6c\x43\x6b\x59','\x6c\x43\x6b\x73\x57\x34\x46\x64\x51\x71\x47\x74','\x57\x51\x37\x63\x47\x38\x6f\x79\x57\x4f\x56\x64\x55\x43\x6b\x55\x70\x43\x6f\x51','\x57\x36\x33\x63\x49\x43\x6f\x45\x57\x4f\x56\x64\x55\x43\x6b\x65\x6c\x71','\x57\x52\x4e\x63\x4d\x38\x6f\x55\x57\x34\x74\x63\x4c\x53\x6f\x66','\x57\x37\x62\x38\x57\x50\x31\x62\x42\x43\x6f\x7a\x57\x52\x33\x64\x50\x61','\x41\x6d\x6f\x31\x6d\x77\x71\x33\x75\x6d\x6f\x36','\x43\x38\x6b\x2f\x76\x31\x64\x64\x50\x6d\x6f\x58\x57\x52\x72\x64','\x57\x52\x68\x63\x4d\x38\x6b\x58\x70\x43\x6f\x34\x42\x53\x6b\x4c','\x57\x52\x6c\x63\x4d\x38\x6b\x48\x6e\x47','\x57\x52\x43\x38\x57\x34\x43\x43\x6c\x6d\x6b\x69\x57\x51\x68\x64\x54\x59\x5a\x63\x4d\x6d\x6f\x55\x69\x57','\x57\x36\x33\x63\x49\x43\x6f\x45\x57\x4f\x56\x64\x55\x43\x6f\x4a\x6f\x53\x6f\x53','\x77\x5a\x68\x64\x47\x71\x38','\x57\x52\x37\x64\x54\x53\x6b\x69\x64\x49\x34\x31\x62\x73\x75\x56\x57\x50\x37\x63\x4e\x4c\x75','\x57\x51\x78\x63\x4f\x67\x50\x72\x57\x37\x6c\x64\x53\x61','\x57\x50\x78\x64\x4f\x66\x75\x50','\x57\x51\x5a\x64\x51\x53\x6b\x43\x71\x71\x72\x4a\x74\x43\x6b\x39','\x74\x5a\x6d\x31\x79\x71','\x75\x53\x6f\x31\x67\x53\x6f\x37\x57\x34\x54\x7a\x70\x4c\x57','\x57\x34\x68\x64\x55\x38\x6b\x54\x57\x51\x44\x58\x57\x51\x43\x52\x6c\x71','\x57\x52\x64\x63\x48\x47\x33\x63\x4d\x4b\x70\x64\x4f\x58\x43\x33','\x57\x36\x5a\x63\x4f\x43\x6f\x41\x75\x77\x35\x53\x63\x74\x47','\x57\x4f\x46\x64\x55\x65\x57\x47\x57\x34\x50\x65\x57\x35\x78\x63\x49\x57','\x57\x4f\x6c\x64\x55\x65\x53\x4f\x57\x35\x7a\x73\x57\x35\x68\x63\x56\x61','\x57\x51\x52\x63\x52\x73\x38\x4f\x57\x50\x76\x7a\x7a\x71','\x57\x36\x66\x54\x57\x4f\x7a\x6d\x42\x53\x6f\x46','\x57\x52\x54\x56\x43\x68\x2f\x64\x48\x53\x6f\x67\x57\x50\x62\x2f','\x57\x36\x6a\x31\x57\x50\x38','\x57\x35\x46\x64\x56\x53\x6b\x73\x57\x36\x78\x64\x4e\x38\x6f\x46\x69\x38\x6b\x6c','\x57\x51\x33\x63\x4a\x74\x2f\x63\x4e\x75\x33\x64\x55\x71','\x57\x37\x33\x63\x4f\x43\x6b\x6e\x57\x50\x6a\x74\x61\x68\x37\x63\x4f\x71','\x57\x34\x52\x64\x49\x38\x6b\x6f\x57\x37\x52\x64\x4e\x38\x6f\x74\x6e\x6d\x6b\x72','\x57\x35\x4a\x64\x4c\x53\x6b\x2b\x57\x51\x7a\x5a\x77\x47','\x79\x43\x6b\x57\x72\x65\x56\x64\x4c\x53\x6f\x31\x57\x52\x75','\x57\x51\x2f\x63\x4d\x43\x6f\x51\x57\x35\x37\x63\x4c\x57','\x78\x6d\x6f\x4b\x57\x35\x46\x64\x4b\x53\x6f\x38\x57\x52\x61','\x57\x35\x5a\x64\x4d\x38\x6f\x34\x57\x50\x70\x64\x48\x5a\x42\x64\x52\x6d\x6f\x77','\x57\x51\x35\x37\x45\x4e\x64\x64\x4c\x53\x6f\x68\x57\x4f\x79','\x70\x38\x6f\x76\x71\x4a\x37\x64\x55\x4b\x5a\x63\x56\x47','\x57\x52\x56\x64\x53\x38\x6b\x6a\x64\x59\x47\x33\x66\x58\x30\x72\x57\x50\x6c\x63\x49\x68\x75','\x6b\x6d\x6f\x6e\x73\x64\x34','\x7a\x53\x6b\x41\x74\x38\x6f\x63\x42\x71\x57','\x71\x43\x6f\x72\x57\x4f\x58\x38','\x75\x6d\x6f\x34\x57\x34\x70\x64\x4e\x53\x6f\x47\x57\x51\x4f','\x57\x34\x33\x64\x4b\x53\x6f\x56\x57\x4f\x78\x64\x47\x71\x33\x64\x55\x43\x6f\x6c','\x57\x35\x46\x63\x4f\x43\x6f\x70\x78\x78\x6e\x58','\x57\x51\x5a\x63\x4a\x74\x6c\x63\x49\x30\x68\x64\x4f\x57\x53\x52','\x77\x74\x64\x63\x47\x53\x6f\x39\x77\x62\x75','\x57\x50\x52\x63\x4a\x6d\x6f\x4e\x57\x51\x6c\x64\x49\x32\x37\x63\x50\x71','\x43\x43\x6b\x4f\x71\x66\x78\x64\x4c\x53\x6f\x7a\x57\x51\x69','\x6e\x6d\x6b\x33\x44\x74\x62\x54\x64\x38\x6f\x55\x57\x52\x71\x73\x6c\x76\x54\x63','\x57\x50\x65\x32\x69\x6d\x6f\x33\x57\x34\x47\x38\x43\x53\x6f\x32','\x57\x37\x37\x63\x52\x43\x6b\x79\x57\x4f\x39\x44\x61\x4d\x57','\x57\x52\x38\x7a\x57\x34\x4f','\x57\x52\x52\x63\x4f\x67\x76\x61\x57\x37\x74\x64\x4f\x6d\x6b\x67\x66\x71','\x61\x6d\x6f\x30\x57\x52\x52\x64\x4d\x47','\x57\x36\x68\x63\x53\x6d\x6f\x61','\x46\x6d\x6f\x72\x6b\x30\x42\x63\x4b\x6d\x6b\x4a\x57\x37\x33\x64\x52\x71','\x57\x35\x61\x49\x44\x72\x65\x79\x57\x52\x61','\x57\x51\x4a\x64\x56\x53\x6b\x64\x57\x50\x70\x63\x48\x63\x75\x32\x57\x4f\x65','\x46\x65\x4e\x64\x50\x38\x6f\x57','\x57\x50\x70\x64\x53\x66\x79\x4e\x57\x36\x62\x41\x57\x35\x78\x63\x56\x47','\x70\x38\x6f\x77\x66\x38\x6f\x36','\x57\x36\x44\x70\x45\x43\x6f\x37\x64\x38\x6f\x58\x42\x4d\x43','\x41\x53\x6b\x71\x72\x53\x6f\x53\x44\x47','\x57\x51\x52\x64\x54\x6d\x6b\x74\x57\x50\x52\x63\x4c\x74\x6d\x37','\x41\x38\x6f\x32\x6d\x30\x69\x69','\x75\x74\x6d\x39\x42\x71\x6d\x56\x57\x36\x33\x63\x49\x47','\x76\x4a\x64\x64\x4c\x62\x69\x59\x61\x57','\x57\x36\x46\x63\x53\x43\x6f\x6e\x77\x33\x6a\x4f\x61\x57'];_0x5c61=function(){return _0x3a8abd;};return _0x5c61();}import{classifyCycleFailure}from'\x2e\x2f\x63\x79\x63\x6c\x65\x46\x61\x69\x6c\x75\x72\x65\x43\x6c\x61\x73\x73\x69\x66\x69\x65\x72\x2e\x6a\x73';import{isDistilledGeneId}from'\x2e\x2f\x67\x65\x6e\x65\x49\x6e\x74\x61\x6b\x65\x2e\x6a\x73';import{deriveUcb1History}from'\x2e\x2f\x75\x63\x62\x31\x2e\x6a\x73';function persistedTerminalAfterLatestSelection(_0x57bfda,_0x2364da){const _0x4c9ebf=_0x33cc,_0x8b08d9=_0x57bfda[_0x4c9ebf(0x292,'\x54\x70\x64\x5b')]();let _0x3357be=-(0x1dd2+-0x1097*0x2+-0x15*-0x29);for(let _0x2fc5d6=_0x8b08d9[_0x4c9ebf(0x1d8,'\x35\x33\x62\x50')]-(0x11dd+-0x2*0xddc+0x9dc);_0x2fc5d6>=0x19ff+0xb64+-0x2563*0x1;_0x2fc5d6-=0x2c3+-0x1*-0x15e9+-0x3*0x839){if(_0x4c9ebf(0x2ec,'\x4b\x59\x23\x4d')!==_0x4c9ebf(0x3a9,'\x30\x7a\x30\x58')){const _0x372ab4=_0x8b08d9[_0x2fc5d6];if(_0x372ab4[_0x4c9ebf(0x1f8,'\x4b\x4d\x33\x4e')]==='\x64\x65\x63\x69\x73\x69\x6f\x6e'+_0x4c9ebf(0x30d,'\x42\x4a\x61\x6f')+'\x6c\x65\x63\x74\x65\x64'&&_0x372ab4[_0x4c9ebf(0x33f,'\x42\x4a\x61\x6f')][_0x4c9ebf(0x344,'\x4e\x61\x6e\x59')]===_0x2364da){_0x3357be=_0x372ab4['\x73\x65\x71'];break;}}else return[];}if(_0x3357be<0x1c27*0x1+0x2605+-0x422c)return null;for(let _0x8a02cf=_0x8b08d9[_0x4c9ebf(0x16b,'\x4f\x24\x41\x45')]-(-0x702+-0xa3+-0x7a6*-0x1);_0x8a02cf>=-0xc5b*0x2+0x1*0x1c59+-0x3a3;_0x8a02cf-=0x376*0x3+0x1e10+-0x2871){const _0x3033f3=_0x8b08d9[_0x8a02cf];if(_0x3033f3[_0x4c9ebf(0x345,'\x71\x52\x54\x43')]<=_0x3357be)break;if(_0x3033f3[_0x4c9ebf(0x20b,'\x71\x52\x54\x43')][_0x4c9ebf(0x398,'\x6f\x53\x7a\x50')]!==_0x2364da)continue;const _0xdb17ea=stageForEventType(_0x3033f3[_0x4c9ebf(0x173,'\x35\x33\x62\x50')]);if(_0xdb17ea&&TERMINAL[_0x4c9ebf(0x357,'\x65\x28\x51\x21')](_0xdb17ea))return _0xdb17ea;}return null;}function selectionPolicyEventProjection(_0x17027f){const _0x4c6da2=_0x33cc;return{'\x72\x65\x71\x75\x65\x73\x74\x65\x64':_0x17027f[_0x4c6da2(0x15f,'\x71\x52\x54\x43')+'\x64'],'\x65\x66\x66\x65\x63\x74\x69\x76\x65':_0x17027f['\x65\x66\x66\x65\x63\x74\x69\x76'+'\x65'],'\x76\x65\x72\x73\x69\x6f\x6e':_0x17027f[_0x4c6da2(0x354,'\x59\x5a\x40\x72')+_0x4c6da2(0x23f,'\x26\x48\x31\x30')+_0x4c6da2(0x15e,'\x46\x33\x79\x4e')],'\x72\x65\x77\x61\x72\x64\x56\x65\x72\x73\x69\x6f\x6e':_0x17027f[_0x4c6da2(0x2d9,'\x57\x7a\x4c\x71')+_0x4c6da2(0x16c,'\x46\x33\x79\x4e')+'\x69\x6f\x6e'],..._0x17027f[_0x4c6da2(0x32e,'\x54\x70\x64\x5b')]?{'\x61\x72\x6d':{'\x69\x64':_0x17027f[_0x4c6da2(0x284,'\x71\x21\x45\x40')][_0x4c6da2(0x301,'\x74\x42\x6d\x4c')],'\x70\x75\x6c\x6c\x73':_0x17027f[_0x4c6da2(0x1fd,'\x4c\x63\x4f\x24')][_0x4c6da2(0x2e4,'\x71\x21\x45\x40')],'\x63\x6f\x6d\x70\x6c\x65\x74\x65\x64':_0x17027f[_0x4c6da2(0x1e8,'\x61\x29\x5a\x79')][_0x4c6da2(0x2f2,'\x4f\x54\x50\x36')+_0x4c6da2(0x161,'\x58\x74\x58\x44')],'\x74\x6f\x74\x61\x6c':_0x17027f['\x61\x72\x6d']['\x74\x6f\x74\x61\x6c\x50\x75\x6c'+'\x6c\x73'],'\x6d\x65\x61\x6e':_0x17027f[_0x4c6da2(0x163,'\x52\x53\x4b\x73')]['\x6d\x65\x61\x6e\x52\x65\x77\x61'+'\x72\x64'],'\x69\x6e\x64\x65\x78':_0x17027f[_0x4c6da2(0x1b9,'\x6e\x4f\x21\x26')][_0x4c6da2(0x38a,'\x6e\x4f\x21\x26')]}}:{},..._0x17027f[_0x4c6da2(0x136,'\x58\x42\x5d\x43')+_0x4c6da2(0x241,'\x4f\x54\x50\x36')]!==undefined?{'\x64\x69\x73\x61\x67\x72\x65\x65\x73':_0x17027f['\x73\x68\x61\x64\x6f\x77\x44\x69'+'\x73\x61\x67\x72\x65\x65\x73']}:{},..._0x17027f[_0x4c6da2(0x323,'\x4f\x24\x41\x45')+_0x4c6da2(0x3ac,'\x66\x4e\x6c\x6d')]?{'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x17027f['\x66\x61\x6c\x6c\x62\x61\x63\x6b'+_0x4c6da2(0x218,'\x6f\x53\x7a\x50')]}:{}};}function minimalSelectionPolicyEventProjection(_0x449636){const _0x22ed3b=_0x33cc;return{'\x72\x65\x71\x75\x65\x73\x74\x65\x64':_0x449636[_0x22ed3b(0x1c9,'\x6d\x6a\x55\x30')+'\x64'],'\x65\x66\x66\x65\x63\x74\x69\x76\x65':_0x449636['\x65\x66\x66\x65\x63\x74\x69\x76'+'\x65'],'\x76\x65\x72\x73\x69\x6f\x6e':_0x449636[_0x22ed3b(0x179,'\x30\x7a\x30\x58')+'\x6e\x50\x6f\x6c\x69\x63\x79\x56'+_0x22ed3b(0x1c4,'\x5d\x47\x78\x7a')],'\x72\x65\x77\x61\x72\x64\x56\x65\x72\x73\x69\x6f\x6e':_0x449636[_0x22ed3b(0x326,'\x74\x42\x6d\x4c')+_0x22ed3b(0x185,'\x74\x42\x6d\x4c')+_0x22ed3b(0x2dd,'\x6f\x64\x33\x7a')]};}function selectionGuardEventProjection(_0x554962){const _0x484a28=_0x33cc;return{'\x6d\x6f\x64\x65':_0x554962[_0x484a28(0x231,'\x6d\x6a\x55\x30')],'\x76\x65\x72\x73\x69\x6f\x6e':_0x554962[_0x484a28(0x1f0,'\x6e\x4f\x21\x26')],'\x73\x74\x61\x74\x75\x73':_0x554962['\x73\x74\x61\x74\x75\x73'],..._0x554962[_0x484a28(0x275,'\x73\x54\x6b\x4b')]?{'\x72\x65\x61\x73\x6f\x6e':_0x554962[_0x484a28(0x23d,'\x57\x7a\x4c\x71')]}:{},..._0x554962[_0x484a28(0x12e,'\x34\x45\x6e\x52')]!==undefined?{'\x6d\x61\x78\x4d\x61\x74\x63\x68':_0x554962[_0x484a28(0x259,'\x46\x75\x59\x6d')]}:{},..._0x554962[_0x484a28(0x1a6,'\x4f\x24\x41\x45')+_0x484a28(0x17a,'\x71\x21\x45\x40')]!==undefined?{'\x73\x70\x72\x65\x61\x64':_0x554962[_0x484a28(0x209,'\x34\x45\x6e\x52')+_0x484a28(0x26a,'\x76\x74\x74\x5d')]}:{}};}function minimalSelectionGuardEventProjection(_0x128158){const _0x5e8185=_0x33cc;return{'\x6d\x6f\x64\x65':_0x128158[_0x5e8185(0x2bc,'\x69\x69\x5d\x6d')],'\x76\x65\x72\x73\x69\x6f\x6e':_0x128158[_0x5e8185(0x335,'\x51\x72\x21\x51')],'\x73\x74\x61\x74\x75\x73':_0x128158[_0x5e8185(0x207,'\x4c\x63\x4f\x24')],..._0x128158['\x72\x65\x61\x73\x6f\x6e']?{'\x72\x65\x61\x73\x6f\x6e':_0x128158[_0x5e8185(0x23d,'\x57\x7a\x4c\x71')]}:{}};}function selectionCandidateEventProjection(_0x435592){const {matchScore:_0x8adf89,..._0x58d50a}=_0x435592;return _0x58d50a;}function _0x33cc(_0x36b36c,_0x4eddb1){_0x36b36c=_0x36b36c-(0x1*-0x400+-0x210f+0x2635);const _0x197fd2=_0x5c61();let _0x108297=_0x197fd2[_0x36b36c];if(_0x33cc['\x50\x64\x48\x71\x4f\x43']===undefined){var _0x336400=function(_0x9bab02){const _0x2b16d6='\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 _0xb96f61='',_0x37542a='';for(let _0x3e779f=0x263e+0xdc7*-0x1+-0x1877,_0x1b4831,_0x424ca9,_0x5a247f=-0x1eb2+-0x1*-0x1183+-0x1*-0xd2f;_0x424ca9=_0x9bab02['\x63\x68\x61\x72\x41\x74'](_0x5a247f++);~_0x424ca9&&(_0x1b4831=_0x3e779f%(-0x190e+-0x907*0x1+-0x4df*-0x7)?_0x1b4831*(-0xd38+-0xa2*0x25+0x24e2)+_0x424ca9:_0x424ca9,_0x3e779f++%(-0x178+0x3e5+-0x269*0x1))?_0xb96f61+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x42*0x57+-0x266f+0x1100&_0x1b4831>>(-(-0x5*-0x377+-0x4e9*0x7+0x110e)*_0x3e779f&0x56*-0x70+0x1*-0x1cb2+0x4258)):0x1ab6*-0x1+0x1bb*-0xd+0x3135){_0x424ca9=_0x2b16d6['\x69\x6e\x64\x65\x78\x4f\x66'](_0x424ca9);}for(let _0xd2097a=-0xc03+0x1ff6+-0x13f3,_0x59e83a=_0xb96f61['\x6c\x65\x6e\x67\x74\x68'];_0xd2097a<_0x59e83a;_0xd2097a++){_0x37542a+='\x25'+('\x30\x30'+_0xb96f61['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xd2097a)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x101*0x1a+-0x39a+-0x10*0x167))['\x73\x6c\x69\x63\x65'](-(0x406+-0x291+0x7*-0x35));}return decodeURIComponent(_0x37542a);};const _0x100611=function(_0x2b4430,_0x2b6426){let _0x18177c=[],_0x42dd2f=-0x17*-0x2f+-0x412*-0x6+-0x1ca5*0x1,_0x2343af,_0x35257f='';_0x2b4430=_0x336400(_0x2b4430);let _0x5b7834;for(_0x5b7834=0xa6a+0x8cf*0x2+-0x381*0x8;_0x5b7834<0x5*0xf6+-0x1825+0x1457;_0x5b7834++){_0x18177c[_0x5b7834]=_0x5b7834;}for(_0x5b7834=-0x59*0x35+0x7bb*-0x1+0xd8*0x1f;_0x5b7834<0x1235+-0x1fe8+0xeb3*0x1;_0x5b7834++){_0x42dd2f=(_0x42dd2f+_0x18177c[_0x5b7834]+_0x2b6426['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5b7834%_0x2b6426['\x6c\x65\x6e\x67\x74\x68']))%(-0x823+-0x2*0x127d+0x2e1d),_0x2343af=_0x18177c[_0x5b7834],_0x18177c[_0x5b7834]=_0x18177c[_0x42dd2f],_0x18177c[_0x42dd2f]=_0x2343af;}_0x5b7834=0xca0*-0x1+0x1*0x83+0x7*0x1bb,_0x42dd2f=0x8c2+0xf1*0xb+-0xe9*0x15;for(let _0x2da2dd=0x1445+-0x197*0x3+-0xf80;_0x2da2dd<_0x2b4430['\x6c\x65\x6e\x67\x74\x68'];_0x2da2dd++){_0x5b7834=(_0x5b7834+(0x180*-0x8+0x1*0x1768+0x15*-0x8b))%(-0x11d9+-0x7*0x25f+0x2372),_0x42dd2f=(_0x42dd2f+_0x18177c[_0x5b7834])%(0x1a16+-0x111e+-0x7f8),_0x2343af=_0x18177c[_0x5b7834],_0x18177c[_0x5b7834]=_0x18177c[_0x42dd2f],_0x18177c[_0x42dd2f]=_0x2343af,_0x35257f+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x2b4430['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2da2dd)^_0x18177c[(_0x18177c[_0x5b7834]+_0x18177c[_0x42dd2f])%(0x1d02+-0x1622+-0x5e0)]);}return _0x35257f;};_0x33cc['\x77\x41\x45\x57\x6e\x77']=_0x100611,_0x33cc['\x4c\x62\x4b\x59\x48\x58']={},_0x33cc['\x50\x64\x48\x71\x4f\x43']=!![];}const _0x472270=_0x197fd2[-0x959+0x127b+0x1*-0x922],_0x236383=_0x36b36c+_0x472270,_0x84d790=_0x33cc['\x4c\x62\x4b\x59\x48\x58'][_0x236383];return!_0x84d790?(_0x33cc['\x68\x56\x47\x44\x47\x70']===undefined&&(_0x33cc['\x68\x56\x47\x44\x47\x70']=!![]),_0x108297=_0x33cc['\x77\x41\x45\x57\x6e\x77'](_0x108297,_0x4eddb1),_0x33cc['\x4c\x62\x4b\x59\x48\x58'][_0x236383]=_0x108297):_0x108297=_0x84d790,_0x108297;}async function ingestGeneSelectedWithTraceBudget(_0x2b5857,_0x1d8027,_0x20eba2,_0x1cb2ee){const _0x2ee9b0=_0x33cc,_0x33b7f5=_0x1cb2ee?selectionGuardEventProjection(_0x1cb2ee):undefined,_0x2b0cdb=_0x1cb2ee?minimalSelectionGuardEventProjection(_0x1cb2ee):undefined,_0x42abee=[];if(_0x20eba2){_0x42abee[_0x2ee9b0(0x25c,'\x77\x47\x59\x43')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79':selectionPolicyEventProjection(_0x20eba2),..._0x33b7f5?{'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x33b7f5}:{}}),_0x42abee[_0x2ee9b0(0x140,'\x34\x45\x6e\x52')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79':minimalSelectionPolicyEventProjection(_0x20eba2),..._0x33b7f5?{'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x33b7f5}:{}});if(_0x2b0cdb){if(_0x2ee9b0(0x33b,'\x63\x37\x78\x58')===_0x2ee9b0(0x1b8,'\x59\x5a\x40\x72'))return _0x145ab2(_0x894728)[_0x2ee9b0(0x33a,'\x72\x43\x37\x23')](_0xc23881=>_0x41ebc8[_0x2ee9b0(0x21f,'\x66\x4e\x6c\x6d')](_0xc23881));else _0x42abee[_0x2ee9b0(0x25c,'\x77\x47\x59\x43')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79':minimalSelectionPolicyEventProjection(_0x20eba2),'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x2b0cdb}),_0x42abee['\x70\x75\x73\x68']({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x2b0cdb});}_0x42abee[_0x2ee9b0(0x2a4,'\x65\x28\x51\x21')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79':minimalSelectionPolicyEventProjection(_0x20eba2)});}else{if(_0x33b7f5){if(_0x2ee9b0(0x267,'\x5e\x40\x48\x62')===_0x2ee9b0(0x174,'\x66\x4e\x6c\x6d')){_0x42abee[_0x2ee9b0(0x29c,'\x51\x35\x33\x42')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x33b7f5});if(_0x2b0cdb)_0x42abee[_0x2ee9b0(0x27f,'\x61\x29\x5a\x79')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x2b0cdb});}else return[];}}_0x42abee[_0x2ee9b0(0x37d,'\x4b\x4d\x33\x4e')]({});for(let _0x551b17=0x1282+-0x1*0x9df+-0x1*0x8a3;_0x551b17<_0x42abee[_0x2ee9b0(0x20e,'\x32\x67\x6b\x42')];_0x551b17+=-0x26ea+-0x210d+0x47f8){if(_0x2ee9b0(0x157,'\x51\x77\x25\x37')===_0x2ee9b0(0x324,'\x4b\x59\x23\x4d')){const _0x8f1e05=_0x42abee[_0x551b17];try{await _0x2b5857['\x69\x6e\x67\x65\x73\x74']({'\x74\x79\x70\x65':_0x1d8027[_0x2ee9b0(0x22f,'\x52\x53\x4b\x73')],'\x68\x75\x6d\x61\x6e':_0x1d8027[_0x2ee9b0(0x16e,'\x57\x7a\x4c\x71')],'\x70\x61\x79\x6c\x6f\x61\x64':{..._0x1d8027[_0x2ee9b0(0x21d,'\x46\x75\x59\x6d')],..._0x8f1e05}});return;}catch(_0x536ab9){if(!(_0x536ab9 instanceof LineTooLargeError)||_0x551b17===_0x42abee[_0x2ee9b0(0x128,'\x4e\x61\x6e\x59')]-(-0x14af+-0x139+0x1*0x15e9))throw _0x536ab9;}}else _0x228057=_0x3dae1a(_0x598b6b,_0x92d1c2[_0x2ee9b0(0x176,'\x21\x43\x33\x42')]);}}function recentCycleOutcomes(_0x2c0421,_0x5dbf64){const _0x2a2587=_0x33cc;let _0x48f295;try{_0x48f295=_0x2c0421['\x74\x61\x69\x6c'](_0x5dbf64);}catch{if('\x4e\x68\x44\x4b\x43'==='\x4e\x68\x44\x4b\x43')return[];else{let _0x548065;try{_0x548065=_0x101abb[_0x2a2587(0x1d5,'\x51\x72\x21\x51')](_0x2447f8);}catch{return[];}const _0x1e21c1=[];for(const _0x4e8975 of _0x548065){if(_0x4e8975[_0x2a2587(0x180,'\x4e\x61\x6e\x59')]===_0x2a2587(0x34f,'\x71\x52\x54\x43')+_0x2a2587(0x2eb,'\x4f\x54\x50\x36'))_0x1e21c1[_0x2a2587(0x309,'\x6e\x4f\x21\x26')](_0x2a2587(0x245,'\x4f\x24\x41\x45'));else{if(_0x4e8975[_0x2a2587(0x1ba,'\x46\x75\x59\x6d')]===_0x2a2587(0x1d4,'\x68\x6d\x76\x56')+_0x2a2587(0x2d8,'\x52\x53\x4b\x73'))_0x1e21c1[_0x2a2587(0x149,'\x46\x33\x79\x4e')](_0x2a2587(0x1c5,'\x26\x48\x31\x30'));}}return _0x1e21c1;}}const _0x5b945d=[];for(const _0x202982 of _0x48f295){if('\x74\x64\x6a\x6b\x52'===_0x2a2587(0x18e,'\x51\x72\x21\x51')){if(_0x202982['\x74\x79\x70\x65']===_0x2a2587(0x22b,'\x72\x43\x37\x23')+_0x2a2587(0x35a,'\x58\x74\x58\x44'))_0x5b945d['\x70\x75\x73\x68'](_0x2a2587(0x228,'\x58\x74\x58\x44'));else{if(_0x202982['\x74\x79\x70\x65']===_0x2a2587(0x211,'\x66\x4e\x6c\x6d')+_0x2a2587(0x290,'\x58\x74\x58\x44'))_0x5b945d[_0x2a2587(0x2c6,'\x74\x42\x6d\x4c')](_0x2a2587(0x134,'\x58\x74\x58\x44'));}}else{const {matchScore:_0x9bedbb,..._0x589beb}=_0x34d757;return _0x589beb;}}return _0x5b945d;}function recentGeneOutcomes(_0x2baa78,_0x2fd430){const _0x1c2366=_0x33cc;let _0x163715;try{_0x163715=_0x2baa78['\x74\x61\x69\x6c'](_0x2fd430);}catch{return[];}const _0x3c16a0=[];for(const _0x4039b0 of _0x163715){if(_0x4039b0[_0x1c2366(0x1f8,'\x4b\x4d\x33\x4e')]!==_0x1c2366(0x34b,'\x4f\x24\x41\x45')+_0x1c2366(0x17d,'\x52\x53\x4b\x73')&&_0x4039b0['\x74\x79\x70\x65']!==_0x1c2366(0x183,'\x61\x33\x34\x24')+_0x1c2366(0x28e,'\x4c\x63\x4f\x24'))continue;const _0x3024ca=_0x4039b0[_0x1c2366(0x2e0,'\x46\x33\x79\x4e')],_0x37f55=typeof _0x3024ca?.[_0x1c2366(0x2ee,'\x6f\x53\x7a\x50')]==='\x73\x74\x72\x69\x6e\x67'?_0x3024ca[_0x1c2366(0x2ee,'\x6f\x53\x7a\x50')]:undefined,_0x3b6512=typeof _0x3024ca?.['\x65\x6e\x76']===_0x1c2366(0x127,'\x68\x6d\x76\x56')?_0x3024ca[_0x1c2366(0x1b5,'\x68\x6d\x76\x56')]:undefined;if(!_0x37f55||!_0x3b6512)continue;_0x3c16a0[_0x1c2366(0x25c,'\x77\x47\x59\x43')]({'\x67\x65\x6e\x65\x49\x64':_0x37f55,'\x65\x6e\x76\x4b\x65\x79':_0x3b6512,'\x73\x74\x61\x74\x75\x73':_0x4039b0[_0x1c2366(0x1c6,'\x71\x52\x54\x43')]===_0x1c2366(0x38e,'\x26\x48\x31\x30')+_0x1c2366(0x2eb,'\x4f\x54\x50\x36')?_0x1c2366(0x2f1,'\x29\x50\x4f\x62'):_0x1c2366(0x39b,'\x72\x43\x37\x23')});}return _0x3c16a0;}function historyMetaSignals(_0x30dfca,_0x374209){const _0x2433c7=_0x33cc;try{return'\x4c\x45\x78\x56\x77'===_0x2433c7(0x1b2,'\x72\x43\x37\x23')?{'\x73\x69\x67\x6e\x61\x6c\x73':[..._0x30b9b7],'\x63\x75\x72\x72\x69\x63\x75\x6c\x75\x6d\x53\x69\x67\x6e\x61\x6c\x73':[]}:computeMetaSignals(deriveCycleHistory(cycleRecordsFromEvents(_0x30dfca[_0x2433c7(0x146,'\x76\x74\x74\x5d')](_0x374209))));}catch{return[];}}function historyCycleCount(_0x3da414,_0x464e95,_0x215dd9){const _0x4305de=_0x33cc;let _0x3dabe6;try{_0x3dabe6=_0x3da414[_0x4305de(0x1a2,'\x4e\x61\x6e\x59')](_0x464e95);}catch{return-0x1f2a+-0x26bd*0x1+0x117a*0x4;}const _0xd59e25=new Set();for(const _0x3c7616 of _0x3dabe6){if(_0x3c7616[_0x4305de(0x34a,'\x61\x33\x34\x24')]!==_0x4305de(0x137,'\x61\x29\x5a\x79')+'\x61\x72\x74\x65\x64'&&_0x3c7616[_0x4305de(0x333,'\x65\x28\x51\x21')]!=='\x63\x79\x63\x6c\x65\x2e\x73\x6f'+_0x4305de(0x253,'\x4b\x4d\x33\x4e')&&_0x3c7616['\x74\x79\x70\x65']!==_0x4305de(0x278,'\x5d\x33\x49\x5b')+_0x4305de(0x1b7,'\x4b\x4d\x33\x4e')&&_0x3c7616[_0x4305de(0x31b,'\x76\x74\x74\x5d')]!==_0x4305de(0x1d7,'\x4b\x59\x23\x4d')+'\x6f\x72\x74\x65\x64')continue;const _0x1d6fb6=_0x3c7616[_0x4305de(0x3a2,'\x5d\x33\x49\x5b')];if(typeof _0x1d6fb6?.[_0x4305de(0x1e5,'\x5d\x47\x78\x7a')]===_0x4305de(0x30c,'\x61\x29\x5a\x79'))_0xd59e25['\x61\x64\x64'](_0x1d6fb6[_0x4305de(0x246,'\x61\x29\x5a\x79')]);}return _0xd59e25[_0x4305de(0x364,'\x4f\x24\x41\x45')](_0x215dd9),_0xd59e25[_0x4305de(0x3b2,'\x4e\x61\x6e\x59')];}function mergeSignals(_0x4024f2,_0x43870b){return[...new Set([..._0x4024f2,..._0x43870b])];}function candidateIds(_0x2b27b6){const _0x47e7d2=_0x33cc;return[...new Set([_0x2b27b6[_0x47e7d2(0x37b,'\x71\x21\x45\x40')],_0x2b27b6[_0x47e7d2(0x2c4,'\x51\x77\x25\x37')]][_0x47e7d2(0x281,'\x77\x47\x59\x43')](_0xec3ea4=>typeof _0xec3ea4===_0x47e7d2(0x2cc,'\x6d\x6a\x55\x30')&&_0xec3ea4['\x6c\x65\x6e\x67\x74\x68']>-0x68d+-0x11*-0x1a1+-0x21*0xa4))];}function isCandidateInSet(_0xde4c4f,_0x39574d){const _0x59e815=_0x33cc;return candidateIds(_0xde4c4f)[_0x59e815(0x17f,'\x73\x54\x6b\x4b')](_0x3c30a9=>_0x39574d[_0x59e815(0x12b,'\x51\x35\x33\x42')](_0x3c30a9));}function categoryForStrategy(_0x249763,_0xf191a6){const _0x2f7619=_0x33cc;if(_0xf191a6[_0x2f7619(0x20f,'\x42\x4a\x61\x6f')]===_0x2f7619(0x1a5,'\x54\x26\x21\x71'))return _0x2f7619(0x219,'\x52\x53\x4b\x73');if(_0xf191a6['\x6e\x61\x6d\x65']===_0x2f7619(0x206,'\x54\x70\x64\x5b')+_0x2f7619(0x1a8,'\x74\x4f\x33\x41'))return _0x2f7619(0x138,'\x4c\x63\x4f\x24');return _0x249763;}function recentConfidenceObservations(_0x38470a,_0x4c9851,_0x3bb256={}){const _0x503afe=_0x33cc;let _0x72d5ce;try{_0x72d5ce=_0x38470a[_0x503afe(0x248,'\x61\x29\x5a\x79')](_0x4c9851);}catch{return[];}const _0x343e10=new Map();for(const _0x9cfa85 of _0x72d5ce){if('\x6c\x76\x76\x45\x50'===_0x503afe(0x262,'\x65\x28\x51\x21')){if(_0x9cfa85[_0x503afe(0x1b6,'\x4f\x24\x41\x45')]!==_0x503afe(0x12a,'\x68\x6d\x76\x56')+_0x503afe(0x1cc,'\x46\x33\x79\x4e')+'\x6c\x6c\x65\x63\x74\x65\x64')continue;const _0x1c17c1=_0x9cfa85[_0x503afe(0x349,'\x52\x53\x4b\x73')],_0x42eabf=typeof _0x1c17c1?.[_0x503afe(0x2a0,'\x52\x53\x4b\x73')]===_0x503afe(0x17b,'\x35\x33\x62\x50')?_0x1c17c1[_0x503afe(0x385,'\x21\x23\x4a\x53')]:undefined,_0x112964=Array[_0x503afe(0x36f,'\x29\x50\x4f\x62')](_0x1c17c1?.[_0x503afe(0x1ee,'\x5d\x47\x78\x7a')+_0x503afe(0x2ed,'\x61\x29\x5a\x79')])?_0x1c17c1[_0x503afe(0x1f2,'\x4b\x4d\x33\x4e')+_0x503afe(0x366,'\x5d\x33\x49\x5b')]:_0x1c17c1?.[_0x503afe(0x28c,'\x51\x35\x33\x42')],_0x238bd8=Array[_0x503afe(0x347,'\x66\x4e\x6c\x6d')](_0x112964)?_0x112964[_0x503afe(0x2f0,'\x4f\x24\x41\x45')](String):undefined;if(!_0x42eabf||!_0x238bd8)continue;_0x343e10[_0x503afe(0x286,'\x6e\x4f\x21\x26')](_0x42eabf,_0x238bd8);}else _0x4ae321[_0x503afe(0x392,'\x31\x65\x32\x5b')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79':_0x110655(_0x344057),..._0x536ee8?{'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x5eb807}:{}}),_0x4ec5d5[_0x503afe(0x25c,'\x77\x47\x59\x43')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79':_0x45e986(_0x8bef25),..._0x1b9726?{'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x78adc3}:{}}),_0x312368&&(_0x54c77b[_0x503afe(0x140,'\x34\x45\x6e\x52')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79':_0x5f270c(_0x55a6eb),'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x35c3be}),_0x4a060b[_0x503afe(0x142,'\x57\x7a\x4c\x71')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x3d2443})),_0xa1384d[_0x503afe(0x387,'\x5d\x33\x49\x5b')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79':_0x20474c(_0x305017)});}const _0x658efe=[];for(const _0x4b2e2b of _0x72d5ce){if(_0x503afe(0x2b6,'\x4b\x59\x23\x4d')!==_0x503afe(0x2c7,'\x6f\x53\x7a\x50')){const _0x1e1edd=_0x268518??_0x21333d[_0x503afe(0x33d,'\x58\x42\x5d\x43')+_0x503afe(0x296,'\x4c\x63\x4f\x24')]?.[_0x503afe(0x23c,'\x26\x48\x31\x30')+'\x6f\x67'],_0x913ad2=_0x319161?.[_0x503afe(0x152,'\x66\x4e\x6c\x6d')]!==_0x4399f3&&(_0x2a680e(_0x4e4d26[_0x503afe(0x221,'\x5d\x33\x49\x5b')])||/^sha256:/[_0x503afe(0x21e,'\x61\x29\x5a\x79')](_0x595121[_0x503afe(0x3b6,'\x77\x47\x59\x43')])||/^gene_auto_/['\x74\x65\x73\x74'](_0x1c6202[_0x503afe(0x2a2,'\x46\x33\x79\x4e')])),_0x31295e=_0x1e1edd!==_0x2efe23||_0x2b9bf5[_0x503afe(0x299,'\x42\x4a\x61\x6f')+_0x503afe(0x130,'\x51\x72\x21\x51')]!==_0x552677;if(!_0x31295e&&(_0x4bde81?.[_0x503afe(0x139,'\x46\x33\x79\x4e')+_0x503afe(0x2bb,'\x30\x7a\x30\x58')]===_0x1f30a1||!_0x913ad2))return{};const _0x44ec86=_0x11905a({'\x73\x69\x67\x6e\x61\x6c\x73':_0xe1c452,..._0x1e1edd!==_0x407d61?{'\x73\x65\x73\x73\x69\x6f\x6e\x4c\x6f\x67':_0x1e1edd}:{},..._0xa3291[_0x503afe(0x314,'\x4c\x63\x4f\x24')+_0x503afe(0x391,'\x73\x54\x6b\x4b')]?.[_0x503afe(0x1dc,'\x4b\x59\x23\x4d')+_0x503afe(0x12c,'\x26\x48\x31\x30')+'\x74\x73']!==_0x1ab411?{'\x72\x65\x63\x65\x6e\x74\x45\x76\x65\x6e\x74\x73':_0x5e7cf2['\x66\x61\x69\x6c\x75\x72\x65\x43'+_0x503afe(0x2fc,'\x54\x70\x64\x5b')][_0x503afe(0x342,'\x4e\x61\x6e\x59')+_0x503afe(0x1da,'\x77\x47\x59\x43')+'\x74\x73']}:{},..._0x33a580?.[_0x503afe(0x33c,'\x5e\x40\x48\x62')]!==_0x41c855?{'\x67\x65\x6e\x65\x49\x64':_0x48a3da[_0x503afe(0x12d,'\x51\x77\x25\x37')]}:{},..._0x55598c?.[_0x503afe(0x38f,'\x4e\x61\x6e\x59')+_0x503afe(0x181,'\x35\x33\x62\x50')]!==_0x5b1bc2?{'\x62\x6c\x61\x73\x74\x52\x61\x64\x69\x75\x73':_0x563ab2[_0x503afe(0x29a,'\x72\x43\x37\x23')+_0x503afe(0x2c1,'\x21\x43\x33\x42')]}:{}});return _0x44ec86[_0x503afe(0x1ff,'\x58\x74\x58\x44')]?{'\x66\x61\x69\x6c\x75\x72\x65\x5f\x63\x6c\x61\x73\x73':_0x44ec86[_0x503afe(0x362,'\x77\x47\x59\x43')+_0x503afe(0x131,'\x5d\x47\x78\x7a')],'\x66\x61\x69\x6c\x75\x72\x65\x5f\x63\x6c\x61\x73\x73\x5f\x72\x65\x61\x73\x6f\x6e':_0x44ec86[_0x503afe(0x39f,'\x63\x37\x78\x58')]}:{'\x66\x61\x69\x6c\x75\x72\x65\x5f\x63\x6c\x61\x73\x73':_0x44ec86[_0x503afe(0x39c,'\x51\x77\x25\x37')+_0x503afe(0x162,'\x5d\x33\x49\x5b')]};}else{if(_0x4b2e2b[_0x503afe(0x13d,'\x54\x70\x64\x5b')]!=='\x63\x79\x63\x6c\x65\x2e\x73\x6f'+_0x503afe(0x303,'\x54\x70\x64\x5b')&&_0x4b2e2b[_0x503afe(0x196,'\x54\x26\x21\x71')]!==_0x503afe(0x201,'\x46\x75\x59\x6d')+_0x503afe(0x295,'\x71\x52\x54\x43'))continue;const _0x3f050b=_0x4b2e2b['\x70\x61\x79\x6c\x6f\x61\x64'],_0x1dff2b=typeof _0x3f050b?.[_0x503afe(0x261,'\x73\x54\x6b\x4b')]===_0x503afe(0x26b,'\x6e\x4f\x21\x26')?_0x3f050b[_0x503afe(0x17c,'\x71\x52\x54\x43')]:undefined,_0xbee17e=typeof _0x3f050b?.[_0x503afe(0x25e,'\x74\x42\x6d\x4c')]===_0x503afe(0x2df,'\x58\x74\x58\x44')?_0x3f050b[_0x503afe(0x304,'\x74\x4f\x33\x41')]:undefined;if(!_0x1dff2b||!_0xbee17e||_0xbee17e===_0x503afe(0x27a,'\x21\x43\x33\x42'))continue;const _0x77c7c0=_0x343e10[_0x503afe(0x285,'\x77\x47\x59\x43')](_0x1dff2b);if(!_0x77c7c0)continue;const _0x53944c=Date['\x70\x61\x72\x73\x65'](_0x4b2e2b['\x74\x73']),_0x38f5d0=_0x4b2e2b['\x74\x79\x70\x65']===_0x503afe(0x187,'\x6f\x64\x33\x7a')+_0x503afe(0x305,'\x4f\x54\x50\x36')?_0x503afe(0x1db,'\x6f\x53\x7a\x50'):_0x3f050b?.[_0x503afe(0x36b,'\x4b\x59\x23\x4d')+_0x503afe(0x310,'\x4e\x61\x6e\x59')]===![]?_0x503afe(0x2b1,'\x72\x43\x37\x23'):_0x503afe(0x2b7,'\x26\x48\x31\x30'),_0x38edb2=_0x3bb256[_0x503afe(0x2f8,'\x65\x28\x51\x21')+_0x503afe(0x369,'\x5d\x33\x49\x5b')]?withoutTaskDomainSignals(_0x77c7c0):_0x77c7c0;_0x658efe[_0x503afe(0x3ae,'\x30\x7a\x30\x58')]({'\x73\x69\x67\x6e\x61\x6c\x46\x69\x6e\x67\x65\x72\x70\x72\x69\x6e\x74':signalFingerprint(_0x38edb2),'\x67\x65\x6e\x65\x49\x64':_0xbee17e,'\x73\x74\x61\x74\x75\x73':_0x38f5d0,'\x61\x74':Number[_0x503afe(0x150,'\x6f\x64\x33\x7a')](_0x53944c)?_0x53944c:0xdc6+0x1*0x1229+0x221*-0xf});}}return _0x658efe;}export class CycleEngine{[_0x2d3039(0x1f3,'\x54\x70\x64\x5b')];constructor(_0x56d9b5){const _0x40cae6=_0x2d3039;this[_0x40cae6(0x32c,'\x76\x74\x74\x5d')]=_0x56d9b5;}[_0x2d3039(0x35e,'\x51\x35\x33\x42')+_0x2d3039(0x21a,'\x5d\x33\x49\x5b')+_0x2d3039(0x32a,'\x42\x4a\x61\x6f')](_0xd71aea){const _0xeed555=_0x2d3039;let _0x44ca51=[];try{_0x44ca51=normalizeCapabilityGaps(this[_0xeed555(0x19e,'\x58\x42\x5d\x43')][_0xeed555(0x141,'\x6e\x4f\x21\x26')+_0xeed555(0x39e,'\x71\x52\x54\x43')]?.()??[]);}catch{}try{if(_0xeed555(0x386,'\x73\x54\x6b\x4b')===_0xeed555(0x28b,'\x6d\x6a\x55\x30')){const _0x50a7dd=_0x340603(_0x7a9c06(_0x33cedb),_0x5f3f9d,_0x312f54),_0x1b4c8c=_0xc8c491(_0x5ded99,_0x1c5222,_0x1295d7[_0xeed555(0x2f4,'\x32\x67\x6b\x42')],_0x2c4012),_0x4ebc25=_0x50a7dd>-0xcbb*0x1+0x1b02+-0xe47?{..._0x24135f,'\x65\x70\x69\x67\x65\x6e\x65\x74\x69\x63\x50\x65\x6e\x61\x6c\x74\x79':_0x50a7dd}:_0x562a3c;return _0x1b4c8c>-0x11*-0xab+0xdcd+0x38*-0x73?{..._0x4ebc25,'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0x1b4c8c}:_0x4ebc25;}else{const _0x1c4a8e=capabilityGapsFromSignals(_0xd71aea),_0xae714e=generateCurriculumSignals({'\x6f\x75\x74\x63\x6f\x6d\x65\x73':curriculumOutcomesFromEvents(this[_0xeed555(0x204,'\x31\x65\x32\x5b')][_0xeed555(0x1d6,'\x54\x70\x64\x5b')]['\x72\x65\x61\x64\x41\x6c\x6c']()),'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':normalizeCapabilityGaps([..._0x1c4a8e,..._0x44ca51])});return{'\x73\x69\x67\x6e\x61\x6c\x73':mergeSignals(_0xd71aea,_0xae714e),'\x63\x75\x72\x72\x69\x63\x75\x6c\x75\x6d\x53\x69\x67\x6e\x61\x6c\x73':_0xae714e};}}catch{return{'\x73\x69\x67\x6e\x61\x6c\x73':[..._0xd71aea],'\x63\x75\x72\x72\x69\x63\x75\x6c\x75\x6d\x53\x69\x67\x6e\x61\x6c\x73':[]};}}async[_0x2d3039(0x230,'\x34\x45\x6e\x52')](_0x5573d6){const _0x184937=_0x2d3039,{ingestor:_0x3720d1,store:_0x1bf424}=this[_0x184937(0x154,'\x5e\x40\x48\x62')],_0x2cc645=this[_0x184937(0x15d,'\x34\x45\x6e\x52')][_0x184937(0x36a,'\x61\x29\x5a\x79')](),_0xad5905=envFingerprintKey((this[_0x184937(0x13b,'\x5d\x33\x49\x5b')][_0x184937(0x316,'\x32\x67\x6b\x42')+_0x184937(0x1a4,'\x4b\x59\x23\x4d')]??captureEnvFingerprint)()),_0x5e308a=[],_0x2fa107=[..._0x5573d6[_0x184937(0x2aa,'\x59\x5a\x40\x72')]],_0x39074c=_0x5573d6[_0x184937(0x384,'\x4e\x61\x6e\x59')+_0x184937(0x166,'\x71\x52\x54\x43')+'\x73']===undefined?this[_0x184937(0x15a,'\x32\x67\x6b\x42')+_0x184937(0x1d0,'\x73\x54\x6b\x4b')+_0x184937(0x2ff,'\x74\x42\x6d\x4c')](_0x5573d6['\x73\x69\x67\x6e\x61\x6c\x73']):{'\x73\x69\x67\x6e\x61\x6c\x73':mergeSignals(_0x5573d6[_0x184937(0x254,'\x74\x4f\x33\x41')],_0x5573d6[_0x184937(0x380,'\x58\x42\x5d\x43')+_0x184937(0x1e2,'\x4c\x63\x4f\x24')+'\x73']),'\x63\x75\x72\x72\x69\x63\x75\x6c\x75\x6d\x53\x69\x67\x6e\x61\x6c\x73':[..._0x5573d6[_0x184937(0x2ca,'\x42\x4a\x61\x6f')+_0x184937(0x2c8,'\x6e\x4f\x21\x26')+'\x73']]},_0x1598a6=_0x39074c[_0x184937(0x238,'\x54\x70\x64\x5b')],_0x57e772=_0x39074c['\x63\x75\x72\x72\x69\x63\x75\x6c'+_0x184937(0x273,'\x30\x7a\x30\x58')+'\x73'],_0x23ae4f=historyMetaSignals(_0x3720d1,-0xabc+-0x2*-0x25f+-0x1*-0x662),_0x12bf3a=mergeSignals(_0x1598a6,_0x23ae4f),_0x420c33=(_0x3e5ab3,_0x5e8afd)=>{const _0x3ad89e=_0x184937,_0x10a0dc=_0x5e8afd??_0x5573d6[_0x3ad89e(0x236,'\x52\x53\x4b\x73')+'\x6f\x6e\x74\x65\x78\x74']?.['\x73\x65\x73\x73\x69\x6f\x6e\x4c'+'\x6f\x67'],_0x5e98d9=_0x3e5ab3?.[_0x3ad89e(0x1fe,'\x29\x50\x4f\x62')]!==undefined&&(isDistilledGeneId(_0x3e5ab3[_0x3ad89e(0x143,'\x54\x26\x21\x71')])||/^sha256:/[_0x3ad89e(0x3b1,'\x5d\x47\x78\x7a')](_0x3e5ab3[_0x3ad89e(0x12d,'\x51\x77\x25\x37')])||/^gene_auto_/[_0x3ad89e(0x3b3,'\x4f\x54\x50\x36')](_0x3e5ab3[_0x3ad89e(0x37b,'\x71\x21\x45\x40')])),_0x453cf3=_0x10a0dc!==undefined||_0x5573d6[_0x3ad89e(0x29d,'\x61\x29\x5a\x79')+_0x3ad89e(0x12f,'\x77\x47\x59\x43')]!==undefined;if(!_0x453cf3&&(_0x3e5ab3?.['\x62\x6c\x61\x73\x74\x52\x61\x64'+_0x3ad89e(0x3b4,'\x54\x70\x64\x5b')]===undefined||!_0x5e98d9))return{};const _0x148ed1=classifyCycleFailure({'\x73\x69\x67\x6e\x61\x6c\x73':_0x12bf3a,..._0x10a0dc!==undefined?{'\x73\x65\x73\x73\x69\x6f\x6e\x4c\x6f\x67':_0x10a0dc}:{},..._0x5573d6['\x66\x61\x69\x6c\x75\x72\x65\x43'+'\x6f\x6e\x74\x65\x78\x74']?.['\x72\x65\x63\x65\x6e\x74\x46\x61'+_0x3ad89e(0x1bd,'\x74\x4f\x33\x41')+'\x74\x73']!==undefined?{'\x72\x65\x63\x65\x6e\x74\x45\x76\x65\x6e\x74\x73':_0x5573d6['\x66\x61\x69\x6c\x75\x72\x65\x43'+_0x3ad89e(0x19b,'\x71\x21\x45\x40')][_0x3ad89e(0x1a1,'\x21\x23\x4a\x53')+_0x3ad89e(0x1a0,'\x29\x50\x4f\x62')+'\x74\x73']}:{},..._0x3e5ab3?.[_0x3ad89e(0x269,'\x6d\x6a\x55\x30')]!==undefined?{'\x67\x65\x6e\x65\x49\x64':_0x3e5ab3[_0x3ad89e(0x1ef,'\x59\x5a\x40\x72')]}:{},..._0x3e5ab3?.[_0x3ad89e(0x244,'\x30\x7a\x30\x58')+_0x3ad89e(0x1d9,'\x58\x74\x58\x44')]!==undefined?{'\x62\x6c\x61\x73\x74\x52\x61\x64\x69\x75\x73':_0x3e5ab3[_0x3ad89e(0x399,'\x57\x7a\x4c\x71')+_0x3ad89e(0x126,'\x61\x29\x5a\x79')]}:{}});return _0x148ed1[_0x3ad89e(0x389,'\x4f\x54\x50\x36')]?{'\x66\x61\x69\x6c\x75\x72\x65\x5f\x63\x6c\x61\x73\x73':_0x148ed1['\x66\x61\x69\x6c\x75\x72\x65\x43'+_0x3ad89e(0x1af,'\x4e\x61\x6e\x59')],'\x66\x61\x69\x6c\x75\x72\x65\x5f\x63\x6c\x61\x73\x73\x5f\x72\x65\x61\x73\x6f\x6e':_0x148ed1[_0x3ad89e(0x23d,'\x57\x7a\x4c\x71')]}:{'\x66\x61\x69\x6c\x75\x72\x65\x5f\x63\x6c\x61\x73\x73':_0x148ed1[_0x3ad89e(0x23a,'\x4f\x24\x41\x45')+'\x6c\x61\x73\x73']};},_0x6c1582=_0x3f2589=>({..._0x3f2589[_0x184937(0x155,'\x5d\x33\x49\x5b')+_0x184937(0x14f,'\x21\x43\x33\x42')]!==undefined?{'\x66\x61\x69\x6c\x75\x72\x65\x4b\x69\x6e\x64':_0x3f2589['\x66\x61\x69\x6c\x75\x72\x65\x4b'+_0x184937(0x1ca,'\x69\x69\x5d\x6d')]}:{},..._0x3f2589[_0x184937(0x158,'\x51\x72\x21\x51')]!==undefined?{'\x65\x78\x69\x74\x43\x6f\x64\x65':_0x3f2589[_0x184937(0x3a8,'\x71\x52\x54\x43')]}:{}}),_0x282fd4=resolveStrategy({'\x6e\x61\x6d\x65':_0x5573d6[_0x184937(0x216,'\x77\x47\x59\x43')+'\x4e\x61\x6d\x65'],'\x73\x69\x67\x6e\x61\x6c\x73':_0x12bf3a,'\x63\x79\x63\x6c\x65\x43\x6f\x75\x6e\x74':historyCycleCount(_0x3720d1,-0x12bb+0x102b+0x678,_0x5573d6[_0x184937(0x319,'\x4c\x63\x4f\x24')])}),_0x2f0f03=categoryForStrategy(_0x5573d6[_0x184937(0x370,'\x76\x74\x74\x5d')],_0x282fd4);let _0x1e702b=_0x184937(0x3b0,'\x77\x47\x59\x43');const _0x33aa1a=_0xec34f9=>{const _0x3e187e=_0x184937;if(!canTransition(_0x1e702b,_0xec34f9))throw new Error(_0x3e187e(0x19f,'\x21\x43\x33\x42')+_0x3e187e(0x1c0,'\x4f\x54\x50\x36')+_0x1e702b+'\u2192'+_0xec34f9);_0x1e702b=_0xec34f9;};await _0x3720d1[_0x184937(0x186,'\x52\x53\x4b\x73')]({'\x74\x79\x70\x65':_0x184937(0x2ba,'\x6e\x4f\x21\x26')+_0x184937(0x1be,'\x57\x7a\x4c\x71'),'\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':_0x184937(0x14a,'\x73\x54\x6b\x4b')+_0x5573d6[_0x184937(0x200,'\x35\x33\x62\x50')]+_0x184937(0x175,'\x6e\x4f\x21\x26')},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x319,'\x4c\x63\x4f\x24')],'\x70\x72\x6f\x62\x6c\x65\x6d\x49\x64':_0x5573d6['\x70\x72\x6f\x62\x6c\x65\x6d']['\x69\x64']}}),_0x33aa1a(_0x184937(0x313,'\x5e\x40\x48\x62')),await _0x3720d1[_0x184937(0x1d2,'\x6e\x4f\x21\x26')]({'\x74\x79\x70\x65':_0x184937(0x3a6,'\x5d\x47\x78\x7a')+_0x184937(0x16f,'\x6d\x6a\x55\x30')+'\x6c\x6c\x65\x63\x74\x65\x64','\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':_0x184937(0x3af,'\x46\x75\x59\x6d')+_0x12bf3a[_0x184937(0x164,'\x54\x70\x64\x5b')]+_0x184937(0x289,'\x4f\x54\x50\x36')},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6['\x63\x79\x63\x6c\x65\x49\x64'],'\x73\x69\x67\x6e\x61\x6c\x73':_0x12bf3a,'\x62\x61\x73\x65\x53\x69\x67\x6e\x61\x6c\x73':_0x2fa107,..._0x57e772[_0x184937(0x312,'\x6e\x4f\x21\x26')]>0x2048+0x1d30+-0x3d78?{'\x63\x75\x72\x72\x69\x63\x75\x6c\x75\x6d\x53\x69\x67\x6e\x61\x6c\x73':_0x57e772}:{},..._0x23ae4f[_0x184937(0x393,'\x58\x74\x58\x44')]>0x2170+0x1*-0x21a+0xa72*-0x3?{'\x6d\x65\x74\x61\x53\x69\x67\x6e\x61\x6c\x73':_0x23ae4f,'\x73\x74\x72\x61\x74\x65\x67\x79':_0x282fd4[_0x184937(0x2b8,'\x71\x21\x45\x40')]}:{}}}),_0x33aa1a(_0x184937(0x29b,'\x6d\x6a\x55\x30')+_0x184937(0x1fa,'\x6d\x6a\x55\x30')+'\x64');const _0xa05562=this[_0x184937(0x22c,'\x42\x4a\x61\x6f')][_0x184937(0x1b3,'\x4f\x54\x50\x36')]?await this[_0x184937(0x39a,'\x46\x75\x59\x6d')]['\x74\x72\x69\x67\x67\x65\x72'](_0x5573d6['\x70\x72\x6f\x62\x6c\x65\x6d'],_0x2cc645):{'\x74\x72\x69\x67\x67\x65\x72':!![],'\x72\x65\x61\x73\x6f\x6e\x73':['\u65e0\x20\x74\x72\x69\x67\x67\x65'+_0x184937(0x194,'\x69\x69\x5d\x6d')+'\u89e6\u53d1'],'\x76\x61\x6c\x75\x65\x53\x63\x6f\x72\x65':0x0};if(!_0xa05562[_0x184937(0x287,'\x74\x42\x6d\x4c')])return await _0x3720d1[_0x184937(0x2b0,'\x54\x70\x64\x5b')]({'\x74\x79\x70\x65':_0x184937(0x18b,'\x6f\x64\x33\x7a')+_0x184937(0x34e,'\x6f\x64\x33\x7a'),'\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':_0x184937(0x1cb,'\x51\x35\x33\x42')+_0x5573d6[_0x184937(0x1e6,'\x63\x37\x78\x58')]+_0x184937(0x365,'\x58\x74\x58\x44')},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x129,'\x6d\x6a\x55\x30')],'\x72\x65\x61\x73\x6f\x6e\x73':_0xa05562[_0x184937(0x2db,'\x6d\x6a\x55\x30')]}}),_0x33aa1a(_0x184937(0x27d,'\x35\x33\x62\x50')),{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x280,'\x26\x48\x31\x30')],'\x74\x72\x69\x67\x67\x65\x72\x65\x64':![],'\x66\x69\x6e\x61\x6c\x53\x74\x61\x67\x65':_0x1e702b,'\x70\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65':![],'\x72\x65\x61\x73\x6f\x6e\x73':_0xa05562[_0x184937(0x1bf,'\x51\x72\x21\x51')]};const _0x14687b=recentCycleOutcomes(_0x3720d1,0x70d*0x4+-0xc1c+-0xfb4),_0xd7514d=detectPlateau(_0x14687b);let _0x2e6e47,_0x3c3944=![];if(this[_0x184937(0x20c,'\x51\x35\x33\x42')][_0x184937(0x26c,'\x71\x21\x45\x40')+_0x184937(0x2d5,'\x58\x42\x5d\x43')]){if('\x53\x52\x43\x53\x6c'===_0x184937(0x260,'\x21\x23\x4a\x53')){const _0x4cc874=_0x16ee5e(_0x144fa1),_0x37d036=_0x243228({'\x6f\x75\x74\x63\x6f\x6d\x65\x73':_0x57d4f2(this[_0x184937(0x257,'\x61\x33\x34\x24')][_0x184937(0x1d6,'\x54\x70\x64\x5b')][_0x184937(0x356,'\x71\x21\x45\x40')]()),'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':_0x4ac189([..._0x4cc874,..._0x1dbf2e])});return{'\x73\x69\x67\x6e\x61\x6c\x73':_0x455ec7(_0x2be918,_0x37d036),'\x63\x75\x72\x72\x69\x63\x75\x6c\x75\x6d\x53\x69\x67\x6e\x61\x6c\x73':_0x37d036};}else{const _0x451341={'\x73\x74\x6f\x72\x65':this[_0x184937(0x297,'\x30\x7a\x30\x58')][_0x184937(0x23e,'\x74\x4f\x33\x41')+_0x184937(0x2be,'\x46\x33\x79\x4e')],'\x69\x6e\x67\x65\x73\x74\x6f\x72':_0x3720d1,'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x358,'\x61\x33\x34\x24')]};_0xd7514d[_0x184937(0x239,'\x29\x50\x4f\x62')]&&await applyForcePivot(_0x451341,{'\x73\x65\x76\x65\x72\x69\x74\x79':_0xd7514d[_0x184937(0x24c,'\x30\x7a\x30\x58')],'\x65\x76\x61\x6c\x73\x53\x69\x6e\x63\x65\x49\x6d\x70\x72\x6f\x76\x65\x6d\x65\x6e\x74':_0xd7514d[_0x184937(0x1cd,'\x4c\x63\x4f\x24')]});const _0x2b3304=await applySelectForRun(_0x451341,{'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':_0xd7514d['\x61\x63\x74\x69\x76\x65'],'\x73\x69\x67\x6e\x61\x6c\x73':_0x1598a6,'\x72\x65\x63\x65\x6e\x74\x45\x76\x65\x6e\x74\x73':_0x14687b[_0x184937(0x2e9,'\x65\x28\x51\x21')](_0x5672c9=>({'\x6f\x75\x74\x63\x6f\x6d\x65':{'\x73\x74\x61\x74\x75\x73':_0x5672c9}}))});_0x2e6e47=_0x2b3304[_0x184937(0x322,'\x6d\x6a\x55\x30')],_0x3c3944=_0x2b3304[_0x184937(0x13a,'\x59\x5a\x40\x72')];}}const _0x2e01f8=async(_0x35f77d,_0x4ba919)=>{const _0x22ba69=_0x184937;if(_0x22ba69(0x210,'\x71\x21\x45\x40')!==_0x22ba69(0x21b,'\x66\x4e\x6c\x6d')){if(!this[_0x22ba69(0x1f4,'\x32\x67\x6b\x42')][_0x22ba69(0x18f,'\x4b\x59\x23\x4d')+'\x69\x74\x79']||!_0x2e6e47)return;await applyStatsUpdate({'\x73\x74\x6f\x72\x65':this['\x64\x65\x70\x73'][_0x22ba69(0x25f,'\x46\x33\x79\x4e')+_0x22ba69(0x2ac,'\x74\x42\x6d\x4c')],'\x69\x6e\x67\x65\x73\x74\x6f\x72':_0x3720d1,'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x22ba69(0x223,'\x72\x43\x37\x23')]},{'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0x2e6e47,'\x6f\x75\x74\x63\x6f\x6d\x65':_0x35f77d,'\x73\x63\x6f\x72\x65':_0x4ba919});}else _0x424ca9=_0x5a247f[_0x22ba69(0x1c8,'\x69\x69\x5d\x6d')](_0xd2097a);};let _0x263db6;if(_0xd7514d['\x61\x63\x74\x69\x76\x65']&&_0x5573d6[_0x184937(0x1ed,'\x61\x29\x5a\x79')+_0x184937(0x1e7,'\x4c\x63\x4f\x24')]&&_0x5573d6['\x73\x65\x6c\x65\x63\x74\x69\x6f'+_0x184937(0x2a5,'\x29\x50\x4f\x62')]!==_0x184937(0x30a,'\x74\x4f\x33\x41')+_0x184937(0x379,'\x51\x77\x25\x37'))try{_0x263db6=deriveUcb1History(_0x3720d1[_0x184937(0x1e9,'\x51\x72\x21\x51')+_0x184937(0x352,'\x6f\x64\x33\x7a')]());}catch{_0x263db6=undefined;}const _0x3f279e=_0xd7514d[_0x184937(0x203,'\x74\x4f\x33\x41')]?{'\x70\x6c\x61\x74\x65\x61\x75':_0xd7514d,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':!![],'\x74\x6f\x74\x61\x6c\x41\x74\x74\x65\x6d\x70\x74\x73':_0x5573d6[_0x184937(0x237,'\x52\x53\x4b\x73')+'\x65\x73'][_0x184937(0x308,'\x72\x43\x37\x23')]((_0x3fdff5,_0x4597dd)=>_0x3fdff5+(_0x4597dd[_0x184937(0x18d,'\x51\x77\x25\x37')]?.[_0x184937(0x2c5,'\x26\x48\x31\x30')]??-0x1bad+-0x11*0x13f+0x6a*0x76),-0x1b*0xdf+-0x101+0x1886),..._0x5573d6[_0x184937(0x1c2,'\x66\x4e\x6c\x6d')+_0x184937(0x167,'\x31\x65\x32\x5b')]?{'\x70\x6f\x6c\x69\x63\x79':_0x5573d6[_0x184937(0x256,'\x51\x77\x25\x37')+_0x184937(0x2b2,'\x5d\x33\x49\x5b')]}:{},..._0x263db6?{'\x75\x63\x62\x31\x48\x69\x73\x74\x6f\x72\x79':_0x263db6}:{}}:undefined,_0x8a6117=recentGeneOutcomes(_0x3720d1,0x2a7+0xb*-0x2f5+0x1b4*0x12),_0x4d8418=recentConfidenceObservations(_0x3720d1,-0x136*-0xe+0x3*0xa93+0x3*-0xff7),_0x2e087a=deriveConfidenceEdges(_0x4d8418),_0x548b24=signalFingerprint(_0x2fa107),_0x32ea17=recentConfidenceObservations(_0x3720d1,INERT_BAN_OBSERVATION_WINDOW,{'\x69\x67\x6e\x6f\x72\x65\x54\x61\x73\x6b\x44\x6f\x6d\x61\x69\x6e':!![]}),_0x45e5be=signalFingerprint(withoutTaskDomainSignals(_0x2fa107)),_0x5ebef1=inertBannedGeneIds(deriveConfidenceEdges(_0x32ea17),_0x32ea17,_0x45e5be),_0x3274e7=_0x5573d6[_0x184937(0x205,'\x51\x77\x25\x37')+'\x65\x73'][_0x184937(0x1ce,'\x6f\x64\x33\x7a')](_0x646006=>!isCandidateInSet(_0x646006,_0x5ebef1))[_0x184937(0x1a3,'\x52\x53\x4b\x73')](_0x140d7b=>{const _0x4c74eb=epigeneticPenaltyForIds(candidateIds(_0x140d7b),_0xad5905,_0x8a6117),_0x2d487f=confidenceFor(_0x2e087a,_0x548b24,_0x140d7b['\x67\x65\x6e\x65\x49\x64'],_0x2cc645),_0x4f9b3e=_0x4c74eb>0x1*0x22db+0x2*-0xdf7+0x3*-0x24f?{..._0x140d7b,'\x65\x70\x69\x67\x65\x6e\x65\x74\x69\x63\x50\x65\x6e\x61\x6c\x74\x79':_0x4c74eb}:_0x140d7b;return _0x2d487f>-0x17*-0xe5+0x12d*0x3+-0x181a?{..._0x4f9b3e,'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0x2d487f}:_0x4f9b3e;}),_0x89f3ef=(_0x5573d6[_0x184937(0x34d,'\x66\x4e\x6c\x6d')+'\x64\x46\x61\x6c\x6c\x62\x61\x63'+'\x6b']??[])[_0x184937(0x25a,'\x71\x52\x54\x43')](_0x27381b=>!isCandidateInSet(_0x27381b,_0x5ebef1))[_0x184937(0x274,'\x63\x37\x78\x58')](_0x2919fc=>{const _0x50fac7=_0x184937;if(_0x50fac7(0x337,'\x63\x37\x78\x58')!==_0x50fac7(0x16d,'\x32\x67\x6b\x42')){const _0x43dc01=_0x474a89(_0x40e26e(_0x270e87),_0x9efaaf,_0x44195e);return _0x43dc01>0x160c+0x35*0x99+0x329*-0x11?{..._0x10570a,'\x65\x70\x69\x67\x65\x6e\x65\x74\x69\x63\x50\x65\x6e\x61\x6c\x74\x79':_0x43dc01}:_0x4d4eeb;}else{const _0x3f4e93=epigeneticPenaltyForIds(candidateIds(_0x2919fc),_0xad5905,_0x8a6117);return _0x3f4e93>-0xc79*-0x2+0x1817+-0x1*0x3109?{..._0x2919fc,'\x65\x70\x69\x67\x65\x6e\x65\x74\x69\x63\x50\x65\x6e\x61\x6c\x74\x79':_0x3f4e93}:_0x2919fc;}}),_0x315b84=_0x5573d6[_0x184937(0x291,'\x5e\x40\x48\x62')+_0x184937(0x35d,'\x51\x72\x21\x51')]?.[_0x184937(0x332,'\x61\x33\x34\x24')](_0x572aab=>!isCandidateInSet(_0x572aab,_0x5ebef1)),_0x4b76be=await this[_0x184937(0x375,'\x5d\x47\x78\x7a')]['\x73\x65\x6c\x65\x63\x74\x69\x6f'+'\x6e'][_0x184937(0x2ae,'\x6f\x53\x7a\x50')]({'\x73\x69\x67\x6e\x61\x6c\x73':_0x1598a6,'\x63\x61\x6e\x64\x69\x64\x61\x74\x65\x73':_0x3274e7,..._0x315b84?{'\x73\x65\x6d\x61\x6e\x74\x69\x63\x43\x6f\x72\x70\x75\x73':_0x315b84}:{},..._0x5573d6[_0x184937(0x31a,'\x59\x5a\x40\x72')+_0x184937(0x198,'\x31\x65\x32\x5b')+'\x64\x66']?{'\x64\x69\x73\x61\x62\x6c\x65\x53\x65\x6d\x61\x6e\x74\x69\x63\x49\x64\x66':!![]}:{},'\x66\x6c\x6f\x6f\x72':_0x5573d6[_0x184937(0x2da,'\x4b\x59\x23\x4d')+_0x184937(0x279,'\x21\x23\x4a\x53')],..._0x5573d6[_0x184937(0x24e,'\x57\x7a\x4c\x71')+_0x184937(0x13f,'\x72\x43\x37\x23')]?{'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x5573d6[_0x184937(0x1bb,'\x73\x54\x6b\x4b')+_0x184937(0x190,'\x76\x74\x74\x5d')]}:{},..._0x5573d6[_0x184937(0x144,'\x77\x47\x59\x43')+_0x184937(0x372,'\x4c\x63\x4f\x24')]!==undefined?{'\x66\x6f\x72\x63\x65\x64\x47\x65\x6e\x65\x49\x64':_0x5573d6[_0x184937(0x35b,'\x6d\x6a\x55\x30')+'\x6e\x65\x49\x64']}:{},..._0x3f279e?{'\x65\x78\x70\x6c\x6f\x72\x61\x74\x69\x6f\x6e':_0x3f279e}:{},..._0x89f3ef[_0x184937(0x390,'\x77\x47\x59\x43')]>-0x18ab+-0xc39+0x24e4?{'\x64\x69\x73\x74\x69\x6c\x6c\x65\x64\x46\x61\x6c\x6c\x62\x61\x63\x6b':_0x89f3ef}:{},..._0x5573d6[_0x184937(0x2fe,'\x4f\x24\x41\x45')+'\x69\x6e\x67\x73']&&_0x5573d6['\x61\x6e\x74\x69\x57\x61\x72\x6e'+_0x184937(0x182,'\x54\x70\x64\x5b')][_0x184937(0x29e,'\x58\x42\x5d\x43')]>0x244c+-0xb0b+-0x1941?{'\x61\x6e\x74\x69\x57\x61\x72\x6e\x69\x6e\x67\x73':_0x5573d6[_0x184937(0x227,'\x4f\x54\x50\x36')+_0x184937(0x182,'\x54\x70\x64\x5b')]}:{},..._0x5573d6[_0x184937(0x30e,'\x21\x23\x4a\x53')+_0x184937(0x2b4,'\x4c\x63\x4f\x24')]&&_0x5573d6[_0x184937(0x2bf,'\x29\x50\x4f\x62')+_0x184937(0x1f7,'\x29\x50\x4f\x62')][_0x184937(0x2d3,'\x42\x4a\x61\x6f')]>-0xb23*0x1+0x204f+-0x152c?{'\x6d\x65\x6d\x6f\x72\x79\x45\x76\x69\x64\x65\x6e\x63\x65':_0x5573d6[_0x184937(0x38c,'\x4f\x54\x50\x36')+_0x184937(0x368,'\x54\x70\x64\x5b')]}:{}},{'\x6e\x6f\x77':_0x2cc645,'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x344,'\x4e\x61\x6e\x59')],...this[_0x184937(0x3b7,'\x4c\x63\x4f\x24')][_0x184937(0x2e1,'\x65\x28\x51\x21')]?{'\x72\x6e\x67':this[_0x184937(0x22c,'\x42\x4a\x61\x6f')][_0x184937(0x35c,'\x35\x33\x62\x50')]}:{}}),_0x2898f5=_0x4b76be[_0x184937(0x277,'\x74\x42\x6d\x4c')+_0x184937(0x26e,'\x5e\x40\x48\x62')]??_0x184937(0x317,'\x4f\x24\x41\x45'),_0x3d865b=async(_0x40b317,_0x39d637)=>{const _0x51fecc=_0x184937;if(_0x51fecc(0x351,'\x51\x77\x25\x37')===_0x51fecc(0x1ad,'\x68\x6d\x76\x56'))_0x4e0d38=_0x3f263a[_0x51fecc(0x217,'\x5d\x47\x78\x7a')](_0x51e638);else try{return _0x51fecc(0x1df,'\x4b\x4d\x33\x4e')!==_0x51fecc(0x2ef,'\x46\x33\x79\x4e')?{'\x72\x65\x71\x75\x65\x73\x74\x65\x64':_0x3b19f9['\x72\x65\x71\x75\x65\x73\x74\x65'+'\x64'],'\x65\x66\x66\x65\x63\x74\x69\x76\x65':_0x1dc3e0[_0x51fecc(0x276,'\x4f\x54\x50\x36')+'\x65'],'\x76\x65\x72\x73\x69\x6f\x6e':_0x55868e[_0x51fecc(0x31f,'\x26\x48\x31\x30')+'\x6e\x50\x6f\x6c\x69\x63\x79\x56'+_0x51fecc(0x329,'\x30\x7a\x30\x58')],'\x72\x65\x77\x61\x72\x64\x56\x65\x72\x73\x69\x6f\x6e':_0x11c2da[_0x51fecc(0x28a,'\x74\x4f\x33\x41')+_0x51fecc(0x17e,'\x31\x65\x32\x5b')+'\x69\x6f\x6e']}:await _0x39d637();}catch(_0x49d2fe){if('\x4f\x4a\x41\x70\x50'===_0x51fecc(0x339,'\x65\x28\x51\x21'))_0x14dd11[_0x51fecc(0x229,'\x58\x74\x58\x44')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79':_0x486d91(_0x29dd6b),'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x2f0774}),_0x5502b9[_0x51fecc(0x2c0,'\x59\x5a\x40\x72')]({'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x7b4aa5});else{let _0x4f6138=null;try{_0x4f6138=persistedTerminalAfterLatestSelection(_0x3720d1,_0x5573d6[_0x51fecc(0x32d,'\x77\x47\x59\x43')]);}catch{}if(_0x4f6138&&!TERMINAL[_0x51fecc(0x2ab,'\x68\x6d\x76\x56')](_0x1e702b)&&canTransition(_0x1e702b,_0x4f6138)){if(_0x51fecc(0x3a0,'\x6e\x4f\x21\x26')===_0x51fecc(0x334,'\x69\x69\x5d\x6d'))_0x33aa1a(_0x4f6138);else{if(!(_0x4f8746 instanceof _0x1acb60)||_0x212c9c===_0x29d283['\x6c\x65\x6e\x67\x74\x68']-(-0x227c+0xcd1+0x13*0x124))throw _0x282b9f;}}if(!_0x4f6138&&!TERMINAL[_0x51fecc(0x298,'\x69\x69\x5d\x6d')](_0x1e702b)){if(_0x51fecc(0x378,'\x69\x69\x5d\x6d')!==_0x51fecc(0x21c,'\x35\x33\x62\x50'))try{await _0x3720d1[_0x51fecc(0x2f6,'\x5d\x47\x78\x7a')]({'\x74\x79\x70\x65':'\x63\x79\x63\x6c\x65\x2e\x66\x61'+_0x51fecc(0x20d,'\x51\x77\x25\x37'),'\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':_0x51fecc(0x39d,'\x5e\x40\x48\x62')+_0x5573d6[_0x51fecc(0x178,'\x6f\x64\x33\x7a')]+(_0x51fecc(0x222,'\x72\x43\x37\x23')+_0x51fecc(0x195,'\x26\x48\x31\x30'))},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x51fecc(0x341,'\x54\x26\x21\x71')],'\x72\x65\x61\x73\x6f\x6e':_0x51fecc(0x37a,'\x51\x72\x21\x51')+_0x51fecc(0x2fb,'\x65\x28\x51\x21')+'\x72\x72\x6f\x72','\x70\x68\x61\x73\x65':_0x40b317,'\x67\x65\x6e\x65':_0x2898f5,'\x65\x6e\x76':_0xad5905}}),_0x33aa1a(_0x51fecc(0x39b,'\x72\x43\x37\x23'));try{await _0x2e01f8('\x66\x61\x69\x6c\x65\x64',null);}catch{}}catch{}else{if(_0x100611[_0x51fecc(0x1e1,'\x4c\x63\x4f\x24')]===_0x51fecc(0x213,'\x5e\x40\x48\x62')+_0x51fecc(0x288,'\x5d\x47\x78\x7a'))_0x9bab02['\x70\x75\x73\x68'](_0x51fecc(0x135,'\x6f\x64\x33\x7a'));else{if(_0x2b16d6[_0x51fecc(0x2ad,'\x51\x77\x25\x37')]===_0x51fecc(0x300,'\x21\x23\x4a\x53')+'\x69\x6c\x65\x64')_0xb96f61[_0x51fecc(0x1cf,'\x4c\x63\x4f\x24')](_0x51fecc(0x24f,'\x31\x65\x32\x5b'));}}}throw _0x49d2fe;}}};await _0x3d865b(_0x184937(0x3a7,'\x69\x69\x5d\x6d')+_0x184937(0x2af,'\x74\x4f\x33\x41'),()=>ingestGeneSelectedWithTraceBudget(_0x3720d1,{'\x74\x79\x70\x65':_0x184937(0x235,'\x6e\x4f\x21\x26')+_0x184937(0x306,'\x61\x29\x5a\x79')+_0x184937(0x22e,'\x51\x77\x25\x37'),'\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':'\u9009\x20\x67\x65\x6e\x65\x20'+(_0x4b76be[_0x184937(0x2cd,'\x29\x50\x4f\x62')+_0x184937(0x1b0,'\x54\x26\x21\x71')]??_0x184937(0x318,'\x54\x26\x21\x71')+'\x65\x29'),'\x77\x68\x79':_0x4b76be[_0x184937(0x377,'\x4e\x61\x6e\x59')+'\x65\x73'][_0x184937(0x1fc,'\x74\x4f\x33\x41')](_0xfe3de0=>_0xfe3de0[_0x184937(0x266,'\x65\x28\x51\x21')]+'\x3a'+_0xfe3de0[_0x184937(0x147,'\x29\x50\x4f\x62')][_0x184937(0x2ce,'\x29\x50\x4f\x62')](-0x3*-0x217+0x267c+-0x2cbe))[_0x184937(0x2d4,'\x72\x43\x37\x23')]('\x2c\x20')||_0x184937(0x361,'\x4b\x4d\x33\x4e')+'\x76\x61\x74\x65'},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6['\x63\x79\x63\x6c\x65\x49\x64'],'\x73\x65\x6c\x65\x63\x74\x65\x64\x47\x65\x6e\x65\x49\x64':_0x4b76be[_0x184937(0x3a4,'\x21\x43\x33\x42')+_0x184937(0x1ea,'\x42\x4a\x61\x6f')],..._0x4b76be[_0x184937(0x328,'\x69\x69\x5d\x6d')+_0x184937(0x2e7,'\x68\x6d\x76\x56')]?{'\x73\x65\x6c\x65\x63\x74\x65\x64\x41\x73\x73\x65\x74\x49\x64':_0x4b76be[_0x184937(0x367,'\x4b\x4d\x33\x4e')+'\x41\x73\x73\x65\x74\x49\x64']}:{},..._0x4b76be[_0x184937(0x2a7,'\x46\x33\x79\x4e')+_0x184937(0x2a9,'\x59\x5a\x40\x72')]?{'\x73\x65\x6c\x65\x63\x74\x65\x64\x52\x65\x61\x73\x6f\x6e':_0x4b76be[_0x184937(0x340,'\x58\x74\x58\x44')+_0x184937(0x38b,'\x54\x26\x21\x71')]}:{},'\x63\x61\x6e\x64\x69\x64\x61\x74\x65\x73':_0x4b76be[_0x184937(0x355,'\x71\x52\x54\x43')+'\x65\x73'][_0x184937(0x1dd,'\x6f\x64\x33\x7a')](selectionCandidateEventProjection),..._0x4b76be['\x61\x6e\x74\x69\x57\x61\x72\x6e'+_0x184937(0x321,'\x6d\x6a\x55\x30')]&&_0x4b76be['\x61\x6e\x74\x69\x57\x61\x72\x6e'+_0x184937(0x182,'\x54\x70\x64\x5b')][_0x184937(0x132,'\x51\x72\x21\x51')]>0x1f3*-0x12+-0x203a+0x4350?{'\x61\x6e\x74\x69\x57\x61\x72\x6e\x69\x6e\x67\x73':_0x4b76be[_0x184937(0x212,'\x57\x7a\x4c\x71')+_0x184937(0x395,'\x42\x4a\x61\x6f')]}:{},..._0x4b76be[_0x184937(0x172,'\x42\x4a\x61\x6f')+_0x184937(0x264,'\x42\x4a\x61\x6f')]&&_0x4b76be[_0x184937(0x172,'\x42\x4a\x61\x6f')+_0x184937(0x2b3,'\x73\x54\x6b\x4b')][_0x184937(0x2ea,'\x5d\x47\x78\x7a')]>-0x1f7*-0x10+0x13a*0x10+-0x3310?{'\x6d\x65\x6d\x6f\x72\x79\x45\x76\x69\x64\x65\x6e\x63\x65':_0x4b76be[_0x184937(0x30e,'\x21\x23\x4a\x53')+_0x184937(0x192,'\x34\x45\x6e\x52')]}:{},'\x77\x65\x69\x67\x68\x74\x73\x56\x65\x72\x73\x69\x6f\x6e':_0x4b76be[_0x184937(0x191,'\x31\x65\x32\x5b')+_0x184937(0x24b,'\x69\x69\x5d\x6d')],..._0x4b76be[_0x184937(0x38d,'\x77\x47\x59\x43')+'\x50\x72\x6f\x66\x69\x6c\x65\x56'+_0x184937(0x197,'\x71\x52\x54\x43')]?{'\x73\x65\x6d\x61\x6e\x74\x69\x63\x50\x72\x6f\x66\x69\x6c\x65\x56\x65\x72\x73\x69\x6f\x6e':_0x4b76be[_0x184937(0x37e,'\x68\x6d\x76\x56')+_0x184937(0x338,'\x21\x43\x33\x42')+'\x65\x72\x73\x69\x6f\x6e']}:{},..._0x4b76be[_0x184937(0x293,'\x42\x4a\x61\x6f')+'\x44\x6f\x63\x75\x6d\x65\x6e\x74'+_0x184937(0x2d2,'\x68\x6d\x76\x56')]!==undefined?{'\x73\x65\x6d\x61\x6e\x74\x69\x63\x44\x6f\x63\x75\x6d\x65\x6e\x74\x43\x6f\x75\x6e\x74':_0x4b76be[_0x184937(0x193,'\x51\x35\x33\x42')+_0x184937(0x2b5,'\x54\x26\x21\x71')+_0x184937(0x31c,'\x46\x33\x79\x4e')]}:{},'\x73\x74\x72\x61\x74\x65\x67\x79':_0x4b76be[_0x184937(0x1a9,'\x71\x52\x54\x43')+_0x184937(0x18a,'\x74\x4f\x33\x41')],'\x73\x74\x72\x61\x74\x65\x67\x79\x50\x72\x65\x73\x65\x74':_0x282fd4[_0x184937(0x376,'\x61\x33\x34\x24')],..._0xd7514d[_0x184937(0x14b,'\x72\x43\x37\x23')]?{'\x70\x6c\x61\x74\x65\x61\x75':_0xd7514d}:{},..._0x5ebef1[_0x184937(0x24a,'\x4b\x59\x23\x4d')]>-0xb9e+-0x1*0xa49+-0x59*-0x3f?{'\x69\x6e\x65\x72\x74\x42\x61\x6e\x6e\x65\x64':[..._0x5ebef1]}:{}}},_0x4b76be['\x73\x65\x6c\x65\x63\x74\x69\x6f'+'\x6e\x50\x6f\x6c\x69\x63\x79'],_0x4b76be[_0x184937(0x272,'\x46\x33\x79\x4e')+'\x6e\x47\x75\x61\x72\x64'])),_0x33aa1a(_0x184937(0x1d1,'\x6e\x4f\x21\x26')+_0x184937(0x2a6,'\x29\x50\x4f\x62'));const _0x1bf48a=await _0x3d865b(_0x184937(0x381,'\x66\x4e\x6c\x6d')+_0x184937(0x388,'\x52\x53\x4b\x73'),()=>buildMutation({'\x64\x65\x63\x69\x73\x69\x6f\x6e':_0x4b76be,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x2f0f03,'\x73\x69\x67\x6e\x61\x6c\x73':_0x12bf3a,'\x74\x61\x72\x67\x65\x74':_0x5573d6[_0x184937(0x26d,'\x74\x4f\x33\x41')],'\x65\x78\x70\x65\x63\x74\x65\x64\x45\x66\x66\x65\x63\x74':_0x5573d6[_0x184937(0x31e,'\x5d\x33\x49\x5b')+_0x184937(0x1f5,'\x52\x53\x4b\x73')]}));let _0x1fd4b9=_0x1bf48a;if(this[_0x184937(0x32f,'\x29\x50\x4f\x62')][_0x184937(0x3b5,'\x4f\x24\x41\x45')+_0x184937(0x258,'\x6e\x4f\x21\x26')]&&_0x2e6e47){await _0x3d865b(_0x184937(0x1de,'\x63\x37\x78\x58')+_0x184937(0x16a,'\x71\x21\x45\x40')+'\x63\x74\x65\x64',()=>emitPersonalitySelected(_0x3720d1,{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6['\x63\x79\x63\x6c\x65\x49\x64'],'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0x2e6e47,'\x6b\x6e\x6f\x77\x6e':_0x3c3944}));const _0x393434=await _0x3d865b(_0x184937(0x23e,'\x74\x4f\x33\x41')+_0x184937(0x1b4,'\x5d\x33\x49\x5b')+_0x184937(0x1bc,'\x61\x33\x34\x24'),()=>gatePersonalityRisk(_0x1bf48a,_0x2e6e47));_0x1fd4b9=_0x393434[_0x184937(0x27b,'\x4e\x61\x6e\x59')],await _0x3d865b(_0x184937(0x18f,'\x4b\x59\x23\x4d')+_0x184937(0x270,'\x59\x5a\x40\x72')+_0x184937(0x151,'\x58\x42\x5d\x43'),()=>emitPersonalityRiskGated(_0x3720d1,{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6['\x63\x79\x63\x6c\x65\x49\x64'],'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0x2e6e47,'\x67\x61\x74\x65':_0x393434}));}await _0x3d865b(_0x184937(0x26f,'\x5d\x33\x49\x5b')+_0x184937(0x24d,'\x6e\x4f\x21\x26'),()=>_0x3720d1[_0x184937(0x363,'\x74\x42\x6d\x4c')]({'\x74\x79\x70\x65':_0x184937(0x311,'\x4f\x54\x50\x36')+_0x184937(0x1d3,'\x54\x26\x21\x71'),'\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':_0x184937(0x2b9,'\x32\x67\x6b\x42')+_0x1fd4b9[_0x184937(0x3a3,'\x4e\x61\x6e\x59')]+'\x20\u2192\x20'+_0x1fd4b9['\x74\x61\x72\x67\x65\x74']},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x385,'\x21\x23\x4a\x53')],'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x49\x64':_0x1fd4b9['\x69\x64'],'\x72\x69\x73\x6b':_0x1fd4b9[_0x184937(0x25d,'\x52\x53\x4b\x73')+'\x65\x6c'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x1fd4b9[_0x184937(0x271,'\x74\x4f\x33\x41')],'\x73\x74\x72\x61\x74\x65\x67\x79\x50\x72\x65\x73\x65\x74':_0x282fd4['\x6e\x61\x6d\x65']}})),_0x33aa1a('\x6d\x75\x74\x61\x74\x69\x6f\x6e'+_0x184937(0x2d6,'\x52\x53\x4b\x73'));let _0x501c30;try{_0x501c30=await _0x5573d6[_0x184937(0x2e8,'\x4b\x59\x23\x4d')](_0x1fd4b9,_0x4b76be);}catch(_0x591285){const _0x3186d5=_0x591285 instanceof Error?_0x591285[_0x184937(0x336,'\x4e\x61\x6e\x59')]:String(_0x591285);return await _0x3d865b('\x74\x65\x72\x6d\x69\x6e\x61\x6c'+_0x184937(0x3aa,'\x5d\x33\x49\x5b'),()=>_0x3720d1[_0x184937(0x243,'\x69\x69\x5d\x6d')]({'\x74\x79\x70\x65':_0x184937(0x397,'\x58\x74\x58\x44')+_0x184937(0x20d,'\x51\x77\x25\x37'),'\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':_0x184937(0x2f9,'\x58\x42\x5d\x43')+_0x5573d6['\x63\x79\x63\x6c\x65\x49\x64']+_0x184937(0x18c,'\x54\x70\x64\x5b')},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x2a8,'\x42\x4a\x61\x6f')],'\x65\x72\x72\x6f\x72':_0x3186d5,'\x67\x65\x6e\x65':_0x2898f5,'\x65\x6e\x76':_0xad5905,..._0x420c33({'\x67\x65\x6e\x65\x49\x64':_0x2898f5},_0x3186d5)}})),_0x33aa1a(_0x184937(0x2f7,'\x21\x23\x4a\x53')),await _0x2e01f8(_0x184937(0x371,'\x76\x74\x74\x5d'),null),{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x223,'\x72\x43\x37\x23')],'\x74\x72\x69\x67\x67\x65\x72\x65\x64':!![],'\x66\x69\x6e\x61\x6c\x53\x74\x61\x67\x65':_0x1e702b,'\x70\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65':![],'\x64\x65\x63\x69\x73\x69\x6f\x6e':_0x4b76be,'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x1fd4b9,'\x72\x65\x61\x73\x6f\x6e\x73':[..._0x5e308a,_0x184937(0x2bd,'\x6f\x53\x7a\x50')+_0x3186d5]};}if(_0x5573d6[_0x184937(0x177,'\x76\x74\x74\x5d')+'\x50\x65\x72\x6d\x69\x74']){let _0x26458d;try{_0x26458d=await _0x5573d6[_0x184937(0x263,'\x6d\x6a\x55\x30')+_0x184937(0x346,'\x51\x35\x33\x42')]({'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x268,'\x51\x72\x21\x51')],'\x67\x65\x6e\x65\x49\x64':_0x2898f5,'\x73\x69\x67\x6e\x61\x6c\x73':_0x12bf3a,'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x1fd4b9,'\x64\x65\x63\x69\x73\x69\x6f\x6e':_0x4b76be,'\x6f\x75\x74\x63\x6f\x6d\x65':_0x501c30[_0x184937(0x188,'\x52\x53\x4b\x73')],..._0x501c30['\x70\x72\x6f\x6f\x66\x4f\x66\x57'+_0x184937(0x255,'\x59\x5a\x40\x72')]?{'\x70\x72\x6f\x6f\x66\x4f\x66\x57\x6f\x72\x6b':_0x501c30[_0x184937(0x156,'\x58\x42\x5d\x43')+_0x184937(0x20a,'\x61\x29\x5a\x79')]}:{},..._0x501c30[_0x184937(0x1c1,'\x21\x23\x4a\x53')+_0x184937(0x394,'\x52\x53\x4b\x73')]!==undefined?{'\x73\x74\x72\x6f\x6e\x67\x45\x76\x69\x64\x65\x6e\x63\x65':_0x501c30[_0x184937(0x1b1,'\x4b\x59\x23\x4d')+_0x184937(0x382,'\x51\x77\x25\x37')]}:{}});}catch{_0x26458d={'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x184937(0x33e,'\x57\x7a\x4c\x71')+'\x5f\x70\x65\x72\x6d\x69\x74\x5f'+_0x184937(0x27e,'\x5e\x40\x48\x62')};}if(!_0x26458d['\x6f\x6b']){const _0x5d34fc=_0x184937(0x1ab,'\x77\x47\x59\x43')+_0x184937(0x133,'\x32\x67\x6b\x42')+_0x184937(0x220,'\x4b\x4d\x33\x4e')+_0x26458d[_0x184937(0x343,'\x72\x43\x37\x23')];return await _0x3d865b(_0x184937(0x1e3,'\x4b\x59\x23\x4d')+_0x184937(0x28d,'\x30\x7a\x30\x58'),()=>_0x3720d1[_0x184937(0x31d,'\x77\x47\x59\x43')]({'\x74\x79\x70\x65':_0x184937(0x360,'\x26\x48\x31\x30')+_0x184937(0x20d,'\x51\x77\x25\x37'),'\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':_0x184937(0x19d,'\x4b\x59\x23\x4d')+_0x5573d6[_0x184937(0x13e,'\x5e\x40\x48\x62')]+(_0x184937(0x2d0,'\x31\x65\x32\x5b')+_0x184937(0x2d7,'\x66\x4e\x6c\x6d'))},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x1fb,'\x4b\x59\x23\x4d')],'\x72\x65\x61\x73\x6f\x6e':_0x26458d[_0x184937(0x153,'\x61\x29\x5a\x79')],'\x67\x65\x6e\x65':_0x2898f5,'\x65\x6e\x76':_0xad5905,..._0x6c1582(_0x501c30),..._0x420c33({'\x67\x65\x6e\x65\x49\x64':_0x2898f5})}})),_0x33aa1a('\x66\x61\x69\x6c\x65\x64'),await _0x2e01f8('\x66\x61\x69\x6c\x65\x64',null),{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x251,'\x4f\x54\x50\x36')],'\x74\x72\x69\x67\x67\x65\x72\x65\x64':!![],'\x66\x69\x6e\x61\x6c\x53\x74\x61\x67\x65':_0x1e702b,'\x70\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65':![],'\x64\x65\x63\x69\x73\x69\x6f\x6e':_0x4b76be,'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x1fd4b9,..._0x6c1582(_0x501c30),'\x72\x65\x61\x73\x6f\x6e\x73':[..._0x5e308a,_0x5d34fc]};}}const _0x939842=await _0x3d865b(_0x184937(0x1e0,'\x26\x48\x31\x30'),()=>solidify({'\x67\x65\x6e\x65\x49\x64':_0x2898f5,'\x74\x72\x69\x67\x67\x65\x72':_0x12bf3a,'\x73\x75\x6d\x6d\x61\x72\x79':_0x5573d6['\x73\x75\x6d\x6d\x61\x72\x79'],'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0x5573d6['\x63\x6f\x6e\x66\x69\x64\x65\x6e'+'\x63\x65'],'\x6f\x75\x74\x63\x6f\x6d\x65':_0x501c30[_0x184937(0x1f6,'\x30\x7a\x30\x58')],'\x70\x72\x6f\x6f\x66\x4f\x66\x57\x6f\x72\x6b':_0x501c30[_0x184937(0x29f,'\x77\x47\x59\x43')+_0x184937(0x35f,'\x63\x37\x78\x58')],'\x73\x74\x72\x6f\x6e\x67\x45\x76\x69\x64\x65\x6e\x63\x65':_0x501c30[_0x184937(0x30b,'\x51\x77\x25\x37')+'\x69\x64\x65\x6e\x63\x65']}));_0x5e308a[_0x184937(0x2c3,'\x74\x4f\x33\x41')](..._0x939842[_0x184937(0x302,'\x74\x4f\x33\x41')]),await _0x3d865b(_0x184937(0x282,'\x74\x42\x6d\x4c')+_0x184937(0x2c9,'\x5d\x33\x49\x5b'),()=>_0x1bf424[_0x184937(0x3ad,'\x57\x7a\x4c\x71')](_0x939842[_0x184937(0x171,'\x21\x23\x4a\x53')])),await _0x3d865b(_0x184937(0x3b8,'\x6e\x4f\x21\x26')+_0x184937(0x242,'\x76\x74\x74\x5d'),()=>_0x3720d1[_0x184937(0x19a,'\x65\x28\x51\x21')]({'\x74\x79\x70\x65':_0x184937(0x331,'\x6f\x64\x33\x7a')+'\x70\x72\x6f\x64\x75\x63\x65\x64','\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':_0x184937(0x359,'\x61\x33\x34\x24')+_0x939842[_0x184937(0x14d,'\x61\x29\x5a\x79')+_0x184937(0x234,'\x57\x7a\x4c\x71')]},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x176,'\x21\x43\x33\x42')],'\x63\x61\x70\x73\x75\x6c\x65\x49\x64':_0x939842[_0x184937(0x374,'\x69\x69\x5d\x6d')]['\x61\x73\x73\x65\x74\x5f\x69\x64'],'\x72\x65\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x53\x74\x61\x74\x75\x73':_0x939842[_0x184937(0x232,'\x21\x43\x33\x42')+_0x184937(0x315,'\x63\x37\x78\x58')],'\x70\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65':_0x939842[_0x184937(0x36e,'\x59\x5a\x40\x72')+_0x184937(0x189,'\x34\x45\x6e\x52')],'\x62\x6c\x61\x73\x74\x52\x61\x64\x69\x75\x73':_0x939842[_0x184937(0x1a7,'\x46\x75\x59\x6d')][_0x184937(0x2fd,'\x4b\x4d\x33\x4e')+_0x184937(0x202,'\x6e\x4f\x21\x26')]}}));const _0x31584b=await _0x3d865b(_0x184937(0x34c,'\x65\x28\x51\x21')+_0x184937(0x373,'\x46\x33\x79\x4e')+_0x184937(0x28f,'\x6f\x53\x7a\x50'),()=>buildEvolutionEvent({'\x69\x6e\x74\x65\x6e\x74':_0x2f0f03,'\x73\x69\x67\x6e\x61\x6c\x73':_0x12bf3a,'\x67\x65\x6e\x65\x73\x55\x73\x65\x64':_0x4b76be[_0x184937(0x2dc,'\x61\x33\x34\x24')+'\x47\x65\x6e\x65\x49\x64']?[_0x4b76be[_0x184937(0x145,'\x71\x21\x45\x40')+_0x184937(0x249,'\x21\x23\x4a\x53')]]:[],'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x49\x64':_0x1fd4b9['\x69\x64'],'\x62\x6c\x61\x73\x74\x52\x61\x64\x69\x75\x73':_0x939842[_0x184937(0x2f3,'\x58\x42\x5d\x43')][_0x184937(0x350,'\x73\x54\x6b\x4b')+'\x64\x69\x75\x73'],'\x6f\x75\x74\x63\x6f\x6d\x65':_0x501c30[_0x184937(0x226,'\x65\x28\x51\x21')],'\x63\x61\x70\x73\x75\x6c\x65\x49\x64':_0x939842['\x63\x61\x70\x73\x75\x6c\x65'][_0x184937(0x25b,'\x73\x54\x6b\x4b')],'\x73\x6f\x75\x72\x63\x65\x54\x79\x70\x65':_0x4b76be[_0x184937(0x367,'\x4b\x4d\x33\x4e')+_0x184937(0x36d,'\x4f\x54\x50\x36')]?_0x184937(0x2cf,'\x57\x7a\x4c\x71'):_0x184937(0x215,'\x31\x65\x32\x5b')+'\x64'}));return await _0x3d865b(_0x184937(0x1ac,'\x21\x43\x33\x42')+_0x184937(0x1aa,'\x51\x77\x25\x37')+_0x184937(0x1f1,'\x77\x47\x59\x43'),()=>_0x1bf424['\x70\x75\x74'](_0x31584b)),await _0x3d865b(_0x184937(0x14c,'\x54\x70\x64\x5b')+_0x184937(0x208,'\x68\x6d\x76\x56')+_0x184937(0x14e,'\x74\x4f\x33\x41')+'\x6f\x6e',()=>_0x3720d1['\x69\x6e\x67\x65\x73\x74']({'\x74\x79\x70\x65':_0x184937(0x233,'\x4e\x61\x6e\x59')+_0x184937(0x15b,'\x21\x43\x33\x42')+_0x184937(0x148,'\x63\x37\x78\x58')+'\x64','\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':_0x184937(0x1eb,'\x32\x67\x6b\x42')+_0x501c30['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x184937(0x224,'\x76\x74\x74\x5d')]},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6['\x63\x79\x63\x6c\x65\x49\x64'],'\x65\x76\x65\x6e\x74\x49\x64':_0x31584b[_0x184937(0x383,'\x51\x35\x33\x42')],'\x63\x61\x70\x73\x75\x6c\x65\x49\x64':_0x939842[_0x184937(0x37c,'\x5d\x33\x49\x5b')][_0x184937(0x2cb,'\x5d\x33\x49\x5b')],'\x6f\x75\x74\x63\x6f\x6d\x65':_0x501c30['\x6f\x75\x74\x63\x6f\x6d\x65']}})),_0x501c30[_0x184937(0x27c,'\x26\x48\x31\x30')]['\x73\x74\x61\x74\x75\x73']===_0x184937(0x2f7,'\x21\x23\x4a\x53')?'\x6a\x62\x4b\x6f\x50'!=='\x5a\x6f\x70\x57\x45'?(await _0x3d865b(_0x184937(0x170,'\x66\x4e\x6c\x6d')+_0x184937(0x240,'\x66\x4e\x6c\x6d'),()=>_0x3720d1[_0x184937(0x19c,'\x31\x65\x32\x5b')]({'\x74\x79\x70\x65':_0x184937(0x2de,'\x76\x74\x74\x5d')+_0x184937(0x2a1,'\x29\x50\x4f\x62'),'\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':_0x184937(0x3b9,'\x46\x75\x59\x6d')+_0x5573d6[_0x184937(0x325,'\x4f\x24\x41\x45')]+_0x184937(0x169,'\x6f\x53\x7a\x50')},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x200,'\x35\x33\x62\x50')],'\x72\x65\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x53\x74\x61\x74\x75\x73':_0x939842['\x72\x65\x73\x6f\x6c\x75\x74\x69'+_0x184937(0x2e5,'\x26\x48\x31\x30')],'\x6f\x75\x74\x63\x6f\x6d\x65':_0x501c30[_0x184937(0x2e2,'\x6f\x53\x7a\x50')],'\x67\x65\x6e\x65':_0x2898f5,'\x65\x6e\x76':_0xad5905,..._0x6c1582(_0x501c30),..._0x420c33({'\x67\x65\x6e\x65\x49\x64':_0x2898f5,..._0x501c30[_0x184937(0x156,'\x58\x42\x5d\x43')+_0x184937(0x35f,'\x63\x37\x78\x58')]===undefined||_0x501c30[_0x184937(0x307,'\x4e\x61\x6e\x59')+_0x184937(0x23b,'\x68\x6d\x76\x56')][_0x184937(0x294,'\x66\x4e\x6c\x6d')]===_0x184937(0x2fa,'\x6d\x6a\x55\x30')?{'\x62\x6c\x61\x73\x74\x52\x61\x64\x69\x75\x73':_0x939842[_0x184937(0x3ab,'\x72\x43\x37\x23')][_0x184937(0x350,'\x73\x54\x6b\x4b')+_0x184937(0x3a1,'\x61\x33\x34\x24')]}:{}},_0x501c30[_0x184937(0x2a3,'\x35\x33\x62\x50')+'\x6f\x67'])}})),_0x33aa1a(_0x184937(0x1c5,'\x26\x48\x31\x30'))):_0x4d974e=_0x41dc8d[_0x184937(0x2c2,'\x77\x47\x59\x43')](_0x333a1e):_0x184937(0x160,'\x6e\x4f\x21\x26')!==_0x184937(0x327,'\x59\x5a\x40\x72')?_0x307db6=_0x2eb6d3(_0x3cff78[_0x184937(0x353,'\x71\x21\x45\x40')+_0x184937(0x15c,'\x58\x74\x58\x44')]()):(await _0x3d865b(_0x184937(0x37f,'\x54\x26\x21\x71')+_0x184937(0x2e6,'\x21\x23\x4a\x53'),()=>_0x3720d1[_0x184937(0x36c,'\x46\x33\x79\x4e')]({'\x74\x79\x70\x65':_0x184937(0x168,'\x5d\x47\x78\x7a')+_0x184937(0x320,'\x72\x43\x37\x23'),'\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':'\x63\x79\x63\x6c\x65\x20'+_0x5573d6[_0x184937(0x246,'\x61\x29\x5a\x79')]+_0x184937(0x165,'\x66\x4e\x6c\x6d')},'\x70\x61\x79\x6c\x6f\x61\x64':{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6['\x63\x79\x63\x6c\x65\x49\x64'],'\x63\x61\x70\x73\x75\x6c\x65\x49\x64':_0x939842[_0x184937(0x250,'\x71\x21\x45\x40')][_0x184937(0x25b,'\x73\x54\x6b\x4b')],'\x6f\x75\x74\x63\x6f\x6d\x65':_0x501c30['\x6f\x75\x74\x63\x6f\x6d\x65'],'\x67\x65\x6e\x65':_0x2898f5,'\x65\x6e\x76':_0xad5905,'\x70\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65':_0x939842[_0x184937(0x30f,'\x51\x77\x25\x37')+_0x184937(0x199,'\x21\x23\x4a\x53')]}})),_0x33aa1a(_0x184937(0x396,'\x6e\x4f\x21\x26')+'\x65\x64')),await _0x2e01f8(_0x501c30[_0x184937(0x265,'\x6e\x4f\x21\x26')][_0x184937(0x330,'\x52\x53\x4b\x73')],_0x501c30['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x184937(0x1ec,'\x54\x26\x21\x71')]),{'\x63\x79\x63\x6c\x65\x49\x64':_0x5573d6[_0x184937(0x1ae,'\x30\x7a\x30\x58')],'\x74\x72\x69\x67\x67\x65\x72\x65\x64':!![],'\x66\x69\x6e\x61\x6c\x53\x74\x61\x67\x65':_0x1e702b,'\x70\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65':_0x939842[_0x184937(0x225,'\x29\x50\x4f\x62')+'\x56\x61\x6c\x75\x65'],'\x64\x65\x63\x69\x73\x69\x6f\x6e':_0x4b76be,'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x1fd4b9,'\x63\x61\x70\x73\x75\x6c\x65':_0x939842['\x63\x61\x70\x73\x75\x6c\x65'],'\x65\x76\x65\x6e\x74':_0x31584b,'\x72\x65\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x53\x74\x61\x74\x75\x73':_0x939842['\x72\x65\x73\x6f\x6c\x75\x74\x69'+_0x184937(0x234,'\x57\x7a\x4c\x71')],..._0x6c1582(_0x501c30),'\x72\x65\x61\x73\x6f\x6e\x73':_0x5e308a};}}
|