@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
|
@@ -1,269 +1 @@
|
|
|
1
|
-
import { mkdtempSync, rmSync } from 'node:fs';
|
|
2
|
-
import { tmpdir } from 'node:os';
|
|
3
|
-
import { join } from 'node:path';
|
|
4
|
-
import { LocalJsonlProvider } from '../assetstore/localJsonl.js';
|
|
5
|
-
import { ReviewLedger } from '../assetstore/reviewLedger.js';
|
|
6
|
-
import { Ingestor } from '../events/ingest.js';
|
|
7
|
-
import { LineTooLargeError } from '../events/eventStore.js';
|
|
8
|
-
import { CycleEngine } from '../algo/cycleEngine.js';
|
|
9
|
-
import { runEvolutionCycle } from '../algo/orchestrator.js';
|
|
10
|
-
import { makeGeneSelectionPoint } from '../algo/geneSelection.js';
|
|
11
|
-
import { parseOverblockedAntiGenes, summarizeOverblockedAntiGenes } from './antiGeneImpact.js';
|
|
12
|
-
const ALL_ASSETS_LIMIT = Number.MAX_SAFE_INTEGER;
|
|
13
|
-
const ASSET_KINDS = ['Gene', 'Capsule', 'EvolutionEvent', 'AntiGene'];
|
|
14
|
-
function buildProblem(task, now) {
|
|
15
|
-
return {
|
|
16
|
-
id: task.id,
|
|
17
|
-
signature: `anti-gene-rollout:${task.id}`,
|
|
18
|
-
signatureV: 1,
|
|
19
|
-
firstSeenAt: new Date(now - 1000).toISOString(),
|
|
20
|
-
lastSeenAt: new Date(now).toISOString(),
|
|
21
|
-
occurrences: 3,
|
|
22
|
-
linkedSignals: task.signals,
|
|
23
|
-
resolvedBy: null,
|
|
24
|
-
status: 'open',
|
|
25
|
-
value: { severity: 1, reach: 1, strategicFit: 1, novelty: 0, costEst: 0 },
|
|
26
|
-
consecutiveFailures: 0,
|
|
27
|
-
cooldownUntil: null,
|
|
28
|
-
extensions: {},
|
|
29
|
-
};
|
|
30
|
-
}
|
|
31
|
-
async function copyAssets(source, dest, includeApprovedAntiGenes, sourceReview) {
|
|
32
|
-
for (const kind of ASSET_KINDS) {
|
|
33
|
-
for (const asset of await source.list(kind, ALL_ASSETS_LIMIT)) {
|
|
34
|
-
if (kind === 'AntiGene') {
|
|
35
|
-
if (!includeApprovedAntiGenes)
|
|
36
|
-
continue;
|
|
37
|
-
if (sourceReview.get(String(asset.asset_id))?.state !== 'approved')
|
|
38
|
-
continue;
|
|
39
|
-
}
|
|
40
|
-
await dest.put(asset);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
function copyReview(source, dest) {
|
|
45
|
-
for (const record of source.records()) {
|
|
46
|
-
dest.mark({
|
|
47
|
-
assetId: record.assetId,
|
|
48
|
-
state: record.state,
|
|
49
|
-
...(record.by ? { by: record.by } : {}),
|
|
50
|
-
...(record.reason ? { reason: record.reason } : {}),
|
|
51
|
-
at: record.at,
|
|
52
|
-
});
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
function defaultReviewForStore(store, now) {
|
|
56
|
-
const baseDir = store.baseDir;
|
|
57
|
-
return typeof baseDir === 'string' ? new ReviewLedger(baseDir, now) : null;
|
|
58
|
-
}
|
|
59
|
-
function observedWarningIds(decision) {
|
|
60
|
-
if (!decision || typeof decision !== 'object')
|
|
61
|
-
return [];
|
|
62
|
-
const warnings = decision.antiWarnings;
|
|
63
|
-
if (!Array.isArray(warnings))
|
|
64
|
-
return [];
|
|
65
|
-
return warnings
|
|
66
|
-
.map((warning) => {
|
|
67
|
-
if (!warning || typeof warning !== 'object' || Array.isArray(warning))
|
|
68
|
-
return '';
|
|
69
|
-
const row = warning;
|
|
70
|
-
return String(row.antiGeneId ?? row.assetId ?? '');
|
|
71
|
-
})
|
|
72
|
-
.filter(Boolean);
|
|
73
|
-
}
|
|
74
|
-
function missingExpected(expected, observed) {
|
|
75
|
-
const seen = new Set(observed);
|
|
76
|
-
return (expected ?? []).filter((id) => !seen.has(id));
|
|
77
|
-
}
|
|
78
|
-
function statusFromResult(result) {
|
|
79
|
-
return result.finalStage === 'solidified' ? 'success' : 'failed';
|
|
80
|
-
}
|
|
81
|
-
function scoreFromResult(result, status) {
|
|
82
|
-
const score = result.capsule?.outcome?.score;
|
|
83
|
-
return typeof score === 'number' && Number.isFinite(score) ? score : status === 'success' ? 0.9 : 0.2;
|
|
84
|
-
}
|
|
85
|
-
async function runOneArm(arm, task, source, sourceReview, makeExecute, rootDir, now, disableSemanticIdf) {
|
|
86
|
-
const armDir = join(rootDir, arm, task.id);
|
|
87
|
-
const store = new LocalJsonlProvider(join(armDir, 'assets'));
|
|
88
|
-
const review = new ReviewLedger(join(armDir, 'assets'), now);
|
|
89
|
-
await copyAssets(source, store, arm === 'antiGene', sourceReview);
|
|
90
|
-
copyReview(sourceReview, review);
|
|
91
|
-
const eventPath = join(armDir, 'events.jsonl');
|
|
92
|
-
const engine = new CycleEngine({
|
|
93
|
-
ingestor: new Ingestor({ path: eventPath, now }),
|
|
94
|
-
selection: makeGeneSelectionPoint(),
|
|
95
|
-
store,
|
|
96
|
-
now,
|
|
97
|
-
});
|
|
98
|
-
const opts = {
|
|
99
|
-
cycleId: `${arm}-${task.id}`,
|
|
100
|
-
problem: buildProblem(task, now()),
|
|
101
|
-
signals: task.signals,
|
|
102
|
-
category: task.category ?? 'repair',
|
|
103
|
-
target: task.target ?? 't.ts',
|
|
104
|
-
expectedEffect: task.expectedEffect ?? `anti-gene rollout ${task.id}`,
|
|
105
|
-
summary: task.summary ?? `anti-gene rollout ${task.id}`,
|
|
106
|
-
confidence: task.confidence ?? 0.9,
|
|
107
|
-
execute: makeExecute({ arm, task, store, review, armDir }),
|
|
108
|
-
review,
|
|
109
|
-
consumePendingSignals: false,
|
|
110
|
-
...(disableSemanticIdf ? { disableSemanticIdf: true } : {}),
|
|
111
|
-
};
|
|
112
|
-
const result = await runEvolutionCycle(engine, store, opts);
|
|
113
|
-
const status = statusFromResult(result);
|
|
114
|
-
const observed = observedWarningIds(result.decision);
|
|
115
|
-
return {
|
|
116
|
-
status,
|
|
117
|
-
score: scoreFromResult(result, status),
|
|
118
|
-
repeatedFailure: status === 'failed' && (task.expectedAntiWarnings?.length ?? 0) > 0,
|
|
119
|
-
overblocked: false,
|
|
120
|
-
observedAntiWarnings: observed,
|
|
121
|
-
missingExpectedWarnings: arm === 'antiGene' ? missingExpected(task.expectedAntiWarnings, observed) : [],
|
|
122
|
-
selectedGeneId: result.decision?.selectedGeneId ?? null,
|
|
123
|
-
};
|
|
124
|
-
}
|
|
125
|
-
function armMetrics(arm, results) {
|
|
126
|
-
const n = results.length;
|
|
127
|
-
const failures = results.filter((r) => r.status === 'failed').length;
|
|
128
|
-
return {
|
|
129
|
-
arm,
|
|
130
|
-
n,
|
|
131
|
-
failures,
|
|
132
|
-
failureRate: n > 0 ? failures / n : 0,
|
|
133
|
-
repeatedFailures: results.filter((r) => r.repeatedFailure).length,
|
|
134
|
-
overblocked: results.filter((r) => r.overblocked).length,
|
|
135
|
-
observedWarnings: results.reduce((sum, r) => sum + r.observedAntiWarnings.length, 0),
|
|
136
|
-
};
|
|
137
|
-
}
|
|
138
|
-
function verdict(report, minSamples, minFailureDelta) {
|
|
139
|
-
if (report.baseline.n < minSamples || report.antiGene.n < minSamples)
|
|
140
|
-
return 'insufficient_samples';
|
|
141
|
-
if (report.failureDelta >= minFailureDelta && report.antiGene.observedWarnings > 0 && report.missingExpectedWarnings === 0)
|
|
142
|
-
return 'anti_gene_better';
|
|
143
|
-
if (report.failureDelta < -minFailureDelta || (minFailureDelta === 0 && report.failureDelta < 0))
|
|
144
|
-
return 'anti_gene_worse';
|
|
145
|
-
return 'no_clear_improvement';
|
|
146
|
-
}
|
|
147
|
-
function normalizeTaskResults(taskResults) {
|
|
148
|
-
return taskResults.map((task) => {
|
|
149
|
-
const overblocked = task.baseline.status === 'success' && task.antiGene.status === 'failed';
|
|
150
|
-
return {
|
|
151
|
-
taskId: task.taskId,
|
|
152
|
-
baseline: { ...task.baseline, overblocked: false },
|
|
153
|
-
antiGene: { ...task.antiGene, overblocked, repeatedFailure: overblocked ? false : task.antiGene.repeatedFailure },
|
|
154
|
-
};
|
|
155
|
-
});
|
|
156
|
-
}
|
|
157
|
-
function buildReport(suite, rawTaskResults, minSamples, minFailureDelta) {
|
|
158
|
-
const taskResults = normalizeTaskResults(rawTaskResults);
|
|
159
|
-
const baseline = armMetrics('baseline', taskResults.map((r) => r.baseline));
|
|
160
|
-
const antiGene = armMetrics('antiGene', taskResults.map((r) => r.antiGene));
|
|
161
|
-
const partial = {
|
|
162
|
-
suite: suite.name,
|
|
163
|
-
tasks: suite.tasks.length,
|
|
164
|
-
baseline,
|
|
165
|
-
antiGene,
|
|
166
|
-
missingExpectedWarnings: taskResults.reduce((sum, r) => sum + r.antiGene.missingExpectedWarnings.length, 0),
|
|
167
|
-
overblocked: antiGene.overblocked,
|
|
168
|
-
overblockedAntiGenes: summarizeOverblockedAntiGenes(taskResults),
|
|
169
|
-
failureDelta: baseline.failureRate - antiGene.failureRate,
|
|
170
|
-
taskResults,
|
|
171
|
-
};
|
|
172
|
-
return { ...partial, verdict: verdict(partial, minSamples, minFailureDelta) };
|
|
173
|
-
}
|
|
174
|
-
export async function runAntiGeneRollout(suite, deps, options = {}) {
|
|
175
|
-
const now = options.now ?? Date.now;
|
|
176
|
-
const sourceReview = deps.review ?? defaultReviewForStore(deps.store, now);
|
|
177
|
-
if (!sourceReview)
|
|
178
|
-
throw new Error('AntiGene rollout requires a ReviewLedger or a LocalJsonlProvider-backed store so review state can be copied');
|
|
179
|
-
const minSamples = options.minSamples ?? 30;
|
|
180
|
-
const minFailureDelta = options.minFailureDelta ?? 0.05;
|
|
181
|
-
const rootDir = mkdtempSync(join(tmpdir(), 'anti-gene-rollout-'));
|
|
182
|
-
try {
|
|
183
|
-
const taskResults = [];
|
|
184
|
-
for (const task of suite.tasks) {
|
|
185
|
-
taskResults.push({
|
|
186
|
-
taskId: task.id,
|
|
187
|
-
baseline: await runOneArm('baseline', task, deps.store, sourceReview, deps.makeExecute, rootDir, now, options.disableSemanticIdf === true),
|
|
188
|
-
antiGene: await runOneArm('antiGene', task, deps.store, sourceReview, deps.makeExecute, rootDir, now, options.disableSemanticIdf === true),
|
|
189
|
-
});
|
|
190
|
-
}
|
|
191
|
-
const report = buildReport(suite, taskResults, minSamples, minFailureDelta);
|
|
192
|
-
if (options.eventsPath)
|
|
193
|
-
await writeAntiGeneRolloutResult(report, options.eventsPath, now);
|
|
194
|
-
return report;
|
|
195
|
-
}
|
|
196
|
-
finally {
|
|
197
|
-
rmSync(rootDir, { recursive: true, force: true });
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
export async function writeAntiGeneRolloutResult(report, eventsPath, now = Date.now) {
|
|
201
|
-
const ingestor = new Ingestor({ path: eventsPath, now });
|
|
202
|
-
try {
|
|
203
|
-
await ingestReportPayload(ingestor, report);
|
|
204
|
-
}
|
|
205
|
-
catch (error) {
|
|
206
|
-
if (!(error instanceof LineTooLargeError))
|
|
207
|
-
throw error;
|
|
208
|
-
await ingestReportPayload(ingestor, compactReportPayload(report, 5));
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
async function ingestReportPayload(ingestor, payload) {
|
|
212
|
-
await ingestor.ingest({
|
|
213
|
-
type: 'anti_gene.rollout_result',
|
|
214
|
-
human: { title: `anti-gene rollout ${payload.suite}` },
|
|
215
|
-
payload: payload,
|
|
216
|
-
actor: { kind: 'machine', id: 'anti-gene-rollout' },
|
|
217
|
-
});
|
|
218
|
-
}
|
|
219
|
-
function compactWarnings(items) {
|
|
220
|
-
return items.slice(0, 3);
|
|
221
|
-
}
|
|
222
|
-
function compactRunResult(result) {
|
|
223
|
-
return {
|
|
224
|
-
...result,
|
|
225
|
-
observedAntiWarnings: compactWarnings(result.observedAntiWarnings),
|
|
226
|
-
missingExpectedWarnings: compactWarnings(result.missingExpectedWarnings),
|
|
227
|
-
};
|
|
228
|
-
}
|
|
229
|
-
function compactReportPayload(report, maxTasks) {
|
|
230
|
-
return {
|
|
231
|
-
...report,
|
|
232
|
-
taskResults: report.taskResults.slice(0, maxTasks).map((task) => ({
|
|
233
|
-
taskId: task.taskId,
|
|
234
|
-
baseline: compactRunResult(task.baseline),
|
|
235
|
-
antiGene: compactRunResult(task.antiGene),
|
|
236
|
-
})),
|
|
237
|
-
taskResultsTruncated: Math.max(0, report.taskResults.length - maxTasks),
|
|
238
|
-
};
|
|
239
|
-
}
|
|
240
|
-
function isReportPayload(value) {
|
|
241
|
-
return !!value && typeof value === 'object'
|
|
242
|
-
&& typeof value.suite === 'string'
|
|
243
|
-
&& typeof value.tasks === 'number'
|
|
244
|
-
&& typeof value.verdict === 'string';
|
|
245
|
-
}
|
|
246
|
-
function normalizeReportPayload(value) {
|
|
247
|
-
const parsed = parseOverblockedAntiGenes(value.overblockedAntiGenes);
|
|
248
|
-
const taskResults = normalizeTaskResults(value.taskResults ?? []);
|
|
249
|
-
const truncated = typeof value.taskResultsTruncated === 'number' && value.taskResultsTruncated > 0;
|
|
250
|
-
return {
|
|
251
|
-
...value,
|
|
252
|
-
taskResults,
|
|
253
|
-
overblockedAntiGenes: parsed ?? (truncated ? [] : summarizeOverblockedAntiGenes(taskResults)),
|
|
254
|
-
};
|
|
255
|
-
}
|
|
256
|
-
export function antiGeneRolloutReportsFromEvents(events) {
|
|
257
|
-
const out = [];
|
|
258
|
-
for (const event of events) {
|
|
259
|
-
if (event.type !== 'anti_gene.rollout_result')
|
|
260
|
-
continue;
|
|
261
|
-
if (isReportPayload(event.payload))
|
|
262
|
-
out.push(normalizeReportPayload(event.payload));
|
|
263
|
-
}
|
|
264
|
-
return out;
|
|
265
|
-
}
|
|
266
|
-
export function latestAntiGeneRolloutReport(events) {
|
|
267
|
-
const reports = antiGeneRolloutReportsFromEvents(events);
|
|
268
|
-
return reports[reports.length - 1] ?? null;
|
|
269
|
-
}
|
|
1
|
+
const _0x10e1d2=_0x135c;(function(_0x168635,_0x520ee3){const _0x8c5820=_0x135c,_0x46adf7=_0x168635();while(!![]){try{const _0x51c831=-parseInt(_0x8c5820(0x153,'\x68\x48\x76\x5b'))/(0x2*0x1070+-0x1f8d*0x1+-0xd*0x1a)*(parseInt(_0x8c5820(0x116,'\x31\x43\x41\x36'))/(0x41*-0x6d+-0x86e+0x241d))+parseInt(_0x8c5820(0xfc,'\x6f\x5a\x48\x5b'))/(-0x3d*0x4+-0xe5*0x1b+-0x5*-0x506)+parseInt(_0x8c5820(0x15c,'\x66\x45\x37\x62'))/(-0x3*0xc4c+-0x1501*0x1+0xb95*0x5)*(parseInt(_0x8c5820(0x133,'\x28\x70\x6c\x45'))/(-0x26f7+-0xbd+0x27b9*0x1))+parseInt(_0x8c5820(0xf5,'\x58\x6a\x32\x61'))/(0x71*0x2f+0xb1b*-0x1+-0x99e)*(parseInt(_0x8c5820(0x11e,'\x4c\x6a\x5e\x28'))/(0x3*-0x2c5+-0xd7e+0x4*0x575))+parseInt(_0x8c5820(0x10c,'\x21\x21\x33\x41'))/(0xda6*-0x1+0x4fd*-0x4+-0xf6*-0x23)+-parseInt(_0x8c5820(0x186,'\x29\x25\x38\x30'))/(-0xcd6+0x1ce2+-0x1003)*(-parseInt(_0x8c5820(0x152,'\x63\x50\x44\x6d'))/(-0xda6+0x15dd+-0x82d))+-parseInt(_0x8c5820(0x187,'\x57\x76\x6f\x5d'))/(-0x1*-0x301+-0x939*0x4+-0xca*-0x2b);if(_0x51c831===_0x520ee3)break;else _0x46adf7['push'](_0x46adf7['shift']());}catch(_0x36f65d){_0x46adf7['push'](_0x46adf7['shift']());}}}(_0x3fa7,0x1*-0x13634+0x221*0x51c+0x1d3cf));import{mkdtempSync,rmSync}from'\x6e\x6f\x64\x65\x3a\x66\x73';import{tmpdir}from'\x6e\x6f\x64\x65\x3a\x6f\x73';import{join}from'\x6e\x6f\x64\x65\x3a\x70\x61\x74\x68';import{LocalJsonlProvider}from'\x2e\x2e\x2f\x61\x73\x73\x65\x74\x73\x74\x6f\x72\x65\x2f\x6c\x6f\x63\x61\x6c\x4a\x73\x6f\x6e\x6c\x2e\x6a\x73';import{ReviewLedger}from'\x2e\x2e\x2f\x61\x73\x73\x65\x74\x73\x74\x6f\x72\x65\x2f\x72\x65\x76\x69\x65\x77\x4c\x65\x64\x67\x65\x72\x2e\x6a\x73';import{Ingestor}from'\x2e\x2e\x2f\x65\x76\x65\x6e\x74\x73\x2f\x69\x6e\x67\x65\x73\x74\x2e\x6a\x73';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{CycleEngine}from'\x2e\x2e\x2f\x61\x6c\x67\x6f\x2f\x63\x79\x63\x6c\x65\x45\x6e\x67\x69\x6e\x65\x2e\x6a\x73';import{runEvolutionCycle}from'\x2e\x2e\x2f\x61\x6c\x67\x6f\x2f\x6f\x72\x63\x68\x65\x73\x74\x72\x61\x74\x6f\x72\x2e\x6a\x73';import{makeGeneSelectionPoint}from'\x2e\x2e\x2f\x61\x6c\x67\x6f\x2f\x67\x65\x6e\x65\x53\x65\x6c\x65\x63\x74\x69\x6f\x6e\x2e\x6a\x73';import{parseOverblockedAntiGenes,summarizeOverblockedAntiGenes}from'\x2e\x2f\x61\x6e\x74\x69\x47\x65\x6e\x65\x49\x6d\x70\x61\x63\x74\x2e\x6a\x73';const ALL_ASSETS_LIMIT=Number[_0x10e1d2(0x197,'\x53\x6f\x4b\x48')+_0x10e1d2(0xfd,'\x53\x6f\x4b\x48')],ASSET_KINDS=[_0x10e1d2(0x140,'\x21\x21\x33\x41'),_0x10e1d2(0x13b,'\x5e\x59\x5d\x59'),_0x10e1d2(0xb9,'\x4a\x4f\x42\x48')+_0x10e1d2(0xf7,'\x54\x30\x72\x43'),_0x10e1d2(0x199,'\x33\x75\x21\x57')];function buildProblem(_0x2e5cb5,_0x17a3dc){const _0xadd1dd=_0x10e1d2;return{'\x69\x64':_0x2e5cb5['\x69\x64'],'\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0xadd1dd(0xb1,'\x49\x62\x57\x44')+'\x65\x2d\x72\x6f\x6c\x6c\x6f\x75'+'\x74\x3a'+_0x2e5cb5['\x69\x64'],'\x73\x69\x67\x6e\x61\x74\x75\x72\x65\x56':0x1,'\x66\x69\x72\x73\x74\x53\x65\x65\x6e\x41\x74':new Date(_0x17a3dc-(-0x33f*-0x3+0x5*0x799+-0x2bd2))[_0xadd1dd(0x132,'\x6f\x37\x56\x25')+_0xadd1dd(0xf8,'\x5e\x59\x5d\x59')](),'\x6c\x61\x73\x74\x53\x65\x65\x6e\x41\x74':new Date(_0x17a3dc)[_0xadd1dd(0xca,'\x54\x30\x72\x43')+_0xadd1dd(0xa7,'\x44\x76\x23\x62')](),'\x6f\x63\x63\x75\x72\x72\x65\x6e\x63\x65\x73':0x3,'\x6c\x69\x6e\x6b\x65\x64\x53\x69\x67\x6e\x61\x6c\x73':_0x2e5cb5[_0xadd1dd(0xa5,'\x34\x71\x6b\x47')],'\x72\x65\x73\x6f\x6c\x76\x65\x64\x42\x79':null,'\x73\x74\x61\x74\x75\x73':_0xadd1dd(0xe0,'\x29\x25\x38\x30'),'\x76\x61\x6c\x75\x65':{'\x73\x65\x76\x65\x72\x69\x74\x79':0x1,'\x72\x65\x61\x63\x68':0x1,'\x73\x74\x72\x61\x74\x65\x67\x69\x63\x46\x69\x74':0x1,'\x6e\x6f\x76\x65\x6c\x74\x79':0x0,'\x63\x6f\x73\x74\x45\x73\x74':0x0},'\x63\x6f\x6e\x73\x65\x63\x75\x74\x69\x76\x65\x46\x61\x69\x6c\x75\x72\x65\x73':0x0,'\x63\x6f\x6f\x6c\x64\x6f\x77\x6e\x55\x6e\x74\x69\x6c':null,'\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x73':{}};}async function copyAssets(_0x437c27,_0x15ca32,_0x307687,_0x358605){const _0x2338a6=_0x10e1d2;for(const _0x153923 of ASSET_KINDS){for(const _0x4a2a77 of await _0x437c27['\x6c\x69\x73\x74'](_0x153923,ALL_ASSETS_LIMIT)){if('\x78\x65\x6d\x49\x70'===_0x2338a6(0x164,'\x46\x58\x70\x74')){const _0x529d1b=_0x188d09[_0x2338a6(0xe6,'\x4a\x4f\x42\x48')],_0x122cb2=_0xf2db7c['\x66\x69\x6c\x74\x65\x72'](_0x487876=>_0x487876['\x73\x74\x61\x74\x75\x73']==='\x66\x61\x69\x6c\x65\x64')[_0x2338a6(0x16f,'\x68\x46\x74\x62')];return{'\x61\x72\x6d':_0x58ed52,'\x6e':_0x529d1b,'\x66\x61\x69\x6c\x75\x72\x65\x73':_0x122cb2,'\x66\x61\x69\x6c\x75\x72\x65\x52\x61\x74\x65':_0x529d1b>0x1*0x19e+-0x1e77+-0x5*-0x5c5?_0x122cb2/_0x529d1b:0x2188+0x6d*-0x23+-0xfb*0x13,'\x72\x65\x70\x65\x61\x74\x65\x64\x46\x61\x69\x6c\x75\x72\x65\x73':_0x4ea932[_0x2338a6(0x136,'\x21\x48\x26\x29')](_0x5a8f85=>_0x5a8f85[_0x2338a6(0x17f,'\x34\x43\x73\x2a')+'\x46\x61\x69\x6c\x75\x72\x65'])[_0x2338a6(0x182,'\x34\x43\x73\x2a')],'\x6f\x76\x65\x72\x62\x6c\x6f\x63\x6b\x65\x64':_0x243fb8[_0x2338a6(0xb6,'\x44\x76\x23\x62')](_0x346dac=>_0x346dac['\x6f\x76\x65\x72\x62\x6c\x6f\x63'+_0x2338a6(0xb0,'\x21\x48\x26\x29')])[_0x2338a6(0x14a,'\x4c\x6a\x5e\x28')],'\x6f\x62\x73\x65\x72\x76\x65\x64\x57\x61\x72\x6e\x69\x6e\x67\x73':_0x1e2ee0['\x72\x65\x64\x75\x63\x65']((_0x95e774,_0x115886)=>_0x95e774+_0x115886['\x6f\x62\x73\x65\x72\x76\x65\x64'+_0x2338a6(0x12e,'\x44\x23\x73\x55')+_0x2338a6(0x142,'\x6c\x70\x5d\x29')][_0x2338a6(0xa9,'\x66\x45\x37\x62')],0x313*-0x1+0x1a7d+-0x176a)};}else{if(_0x153923===_0x2338a6(0xc4,'\x48\x33\x6c\x32')){if(_0x2338a6(0xef,'\x6f\x5a\x48\x5b')!==_0x2338a6(0xa3,'\x34\x43\x73\x2a')){const _0x12b3d6=_0xf0298e['\x63\x61\x70\x73\x75\x6c\x65']?.['\x6f\x75\x74\x63\x6f\x6d\x65']?.[_0x2338a6(0x148,'\x34\x43\x73\x2a')];return typeof _0x12b3d6===_0x2338a6(0x104,'\x39\x57\x37\x76')&&_0x463aae[_0x2338a6(0x106,'\x5e\x59\x5d\x59')](_0x12b3d6)?_0x12b3d6:_0xde4896===_0x2338a6(0xb2,'\x58\x77\x6f\x78')?-0x1*0x9c2+0x34a*0x2+-0x4a*-0xb+0.9:-0x1*0x1766+-0x1*-0x6f5+-0x45*-0x3d+0.2;}else{if(!_0x307687)continue;if(_0x358605[_0x2338a6(0xbf,'\x4a\x33\x44\x71')](String(_0x4a2a77[_0x2338a6(0xbe,'\x4a\x4f\x42\x48')]))?.[_0x2338a6(0xbc,'\x6e\x34\x28\x6e')]!==_0x2338a6(0xe8,'\x73\x75\x72\x5a'))continue;}}await _0x15ca32[_0x2338a6(0x17e,'\x52\x69\x49\x6d')](_0x4a2a77);}}}}function copyReview(_0x28da67,_0x598b86){const _0x532adf=_0x10e1d2;for(const _0x66fcca of _0x28da67[_0x532adf(0x9f,'\x68\x48\x76\x5b')]()){_0x598b86[_0x532adf(0x134,'\x64\x52\x44\x48')]({'\x61\x73\x73\x65\x74\x49\x64':_0x66fcca[_0x532adf(0xdd,'\x44\x23\x73\x55')],'\x73\x74\x61\x74\x65':_0x66fcca[_0x532adf(0xde,'\x57\x76\x6f\x5d')],..._0x66fcca['\x62\x79']?{'\x62\x79':_0x66fcca['\x62\x79']}:{},..._0x66fcca[_0x532adf(0xaa,'\x67\x4d\x51\x2a')]?{'\x72\x65\x61\x73\x6f\x6e':_0x66fcca[_0x532adf(0x145,'\x68\x46\x74\x62')]}:{},'\x61\x74':_0x66fcca['\x61\x74']});}}function defaultReviewForStore(_0x4402a1,_0xaeda01){const _0x515479=_0x10e1d2,_0x5c7527=_0x4402a1[_0x515479(0x193,'\x6c\x70\x5d\x29')];return typeof _0x5c7527===_0x515479(0x185,'\x28\x70\x6c\x45')?new ReviewLedger(_0x5c7527,_0xaeda01):null;}function observedWarningIds(_0x3c49fe){const _0xbb7754=_0x10e1d2;if(!_0x3c49fe||typeof _0x3c49fe!==_0xbb7754(0x139,'\x5b\x33\x41\x57'))return[];const _0x53b67c=_0x3c49fe[_0xbb7754(0x171,'\x43\x4e\x75\x58')+_0xbb7754(0xe4,'\x52\x69\x49\x6d')];if(!Array[_0xbb7754(0xda,'\x4c\x6a\x5e\x28')](_0x53b67c))return[];return _0x53b67c['\x6d\x61\x70'](_0x2de285=>{const _0x80b966=_0xbb7754;if(!_0x2de285||typeof _0x2de285!==_0x80b966(0x15b,'\x42\x44\x67\x73')||Array[_0x80b966(0x180,'\x34\x71\x6b\x47')](_0x2de285))return'';const _0x1f8b86=_0x2de285;return String(_0x1f8b86[_0x80b966(0xf6,'\x75\x44\x31\x42')+'\x49\x64']??_0x1f8b86[_0x80b966(0xab,'\x63\x50\x44\x6d')]??'');})[_0xbb7754(0xa1,'\x52\x69\x49\x6d')](Boolean);}function missingExpected(_0x59f686,_0x3f5c6d){const _0x5aa5ec=_0x10e1d2,_0x3eb477=new Set(_0x3f5c6d);return(_0x59f686??[])[_0x5aa5ec(0x17d,'\x31\x6e\x6c\x31')](_0x4878ad=>!_0x3eb477[_0x5aa5ec(0x141,'\x6f\x37\x56\x25')](_0x4878ad));}function statusFromResult(_0x11ceb8){const _0x43745c=_0x10e1d2;return _0x11ceb8[_0x43745c(0x144,'\x26\x6a\x37\x77')+'\x67\x65']===_0x43745c(0x12b,'\x44\x23\x73\x55')+'\x65\x64'?_0x43745c(0x183,'\x21\x48\x26\x29'):'\x66\x61\x69\x6c\x65\x64';}function scoreFromResult(_0x367ccb,_0x3b3c1e){const _0x4e968c=_0x10e1d2,_0x1aef31=_0x367ccb['\x63\x61\x70\x73\x75\x6c\x65']?.[_0x4e968c(0x167,'\x65\x75\x33\x5e')]?.[_0x4e968c(0x13a,'\x68\x46\x74\x62')];return typeof _0x1aef31===_0x4e968c(0xe1,'\x31\x6e\x6c\x31')&&Number[_0x4e968c(0x163,'\x21\x48\x26\x29')](_0x1aef31)?_0x1aef31:_0x3b3c1e===_0x4e968c(0x189,'\x29\x25\x38\x30')?-0x3c0+-0x164d+0x1a0d+0.9:-0x1*0x949+0x129+-0x2*-0x410+0.2;}async function runOneArm(_0x216c29,_0xf7abf2,_0x14d219,_0x376c48,_0x28a475,_0x438bd6,_0x26d3d9,_0x5e5f61){const _0x10fd70=_0x10e1d2,_0x3b3519=join(_0x438bd6,_0x216c29,_0xf7abf2['\x69\x64']),_0xf4b494=new LocalJsonlProvider(join(_0x3b3519,_0x10fd70(0x16d,'\x75\x44\x31\x42'))),_0x2d0d17=new ReviewLedger(join(_0x3b3519,_0x10fd70(0x9e,'\x54\x30\x72\x43')),_0x26d3d9);await copyAssets(_0x14d219,_0xf4b494,_0x216c29===_0x10fd70(0x135,'\x66\x45\x37\x62'),_0x376c48),copyReview(_0x376c48,_0x2d0d17);const _0x3faca1=join(_0x3b3519,_0x10fd70(0x158,'\x75\x44\x31\x42')+_0x10fd70(0x151,'\x33\x75\x21\x57')),_0x1cb596=new CycleEngine({'\x69\x6e\x67\x65\x73\x74\x6f\x72':new Ingestor({'\x70\x61\x74\x68':_0x3faca1,'\x6e\x6f\x77':_0x26d3d9}),'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e':makeGeneSelectionPoint(),'\x73\x74\x6f\x72\x65':_0xf4b494,'\x6e\x6f\x77':_0x26d3d9}),_0x3f1cc2={'\x63\x79\x63\x6c\x65\x49\x64':_0x216c29+'\x2d'+_0xf7abf2['\x69\x64'],'\x70\x72\x6f\x62\x6c\x65\x6d':buildProblem(_0xf7abf2,_0x26d3d9()),'\x73\x69\x67\x6e\x61\x6c\x73':_0xf7abf2[_0x10fd70(0x11c,'\x6a\x49\x40\x54')],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0xf7abf2[_0x10fd70(0x10f,'\x44\x23\x73\x55')]??_0x10fd70(0xba,'\x58\x77\x6f\x78'),'\x74\x61\x72\x67\x65\x74':_0xf7abf2[_0x10fd70(0x19c,'\x28\x70\x6c\x45')]??_0x10fd70(0x19d,'\x4a\x33\x44\x71'),'\x65\x78\x70\x65\x63\x74\x65\x64\x45\x66\x66\x65\x63\x74':_0xf7abf2[_0x10fd70(0x138,'\x39\x44\x24\x59')+_0x10fd70(0x165,'\x6f\x5a\x48\x5b')]??_0x10fd70(0xc8,'\x33\x75\x21\x57')+_0x10fd70(0x15e,'\x68\x48\x76\x5b')+'\x74\x20'+_0xf7abf2['\x69\x64'],'\x73\x75\x6d\x6d\x61\x72\x79':_0xf7abf2[_0x10fd70(0xb3,'\x44\x76\x23\x62')]??_0x10fd70(0xd7,'\x4b\x4d\x41\x33')+_0x10fd70(0x17a,'\x65\x75\x33\x5e')+'\x74\x20'+_0xf7abf2['\x69\x64'],'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0xf7abf2['\x63\x6f\x6e\x66\x69\x64\x65\x6e'+'\x63\x65']??0x249a+-0xa08+-0x26*0xb3+0.9,'\x65\x78\x65\x63\x75\x74\x65':_0x28a475({'\x61\x72\x6d':_0x216c29,'\x74\x61\x73\x6b':_0xf7abf2,'\x73\x74\x6f\x72\x65':_0xf4b494,'\x72\x65\x76\x69\x65\x77':_0x2d0d17,'\x61\x72\x6d\x44\x69\x72':_0x3b3519}),'\x72\x65\x76\x69\x65\x77':_0x2d0d17,'\x63\x6f\x6e\x73\x75\x6d\x65\x50\x65\x6e\x64\x69\x6e\x67\x53\x69\x67\x6e\x61\x6c\x73':![],..._0x5e5f61?{'\x64\x69\x73\x61\x62\x6c\x65\x53\x65\x6d\x61\x6e\x74\x69\x63\x49\x64\x66':!![]}:{}},_0x3121b2=await runEvolutionCycle(_0x1cb596,_0xf4b494,_0x3f1cc2),_0x19dd0=statusFromResult(_0x3121b2),_0x1e6996=observedWarningIds(_0x3121b2[_0x10fd70(0x195,'\x49\x62\x57\x44')]);return{'\x73\x74\x61\x74\x75\x73':_0x19dd0,'\x73\x63\x6f\x72\x65':scoreFromResult(_0x3121b2,_0x19dd0),'\x72\x65\x70\x65\x61\x74\x65\x64\x46\x61\x69\x6c\x75\x72\x65':_0x19dd0===_0x10fd70(0xb4,'\x5e\x59\x5d\x59')&&(_0xf7abf2[_0x10fd70(0xce,'\x39\x57\x37\x76')+_0x10fd70(0x19a,'\x31\x51\x35\x29')+_0x10fd70(0xe9,'\x44\x76\x23\x62')]?.['\x6c\x65\x6e\x67\x74\x68']??-0x1*0x10de+-0x1b52+-0x38*-0xca)>-0x2*0xa3e+0x11*0x61+0x2cf*0x5,'\x6f\x76\x65\x72\x62\x6c\x6f\x63\x6b\x65\x64':![],'\x6f\x62\x73\x65\x72\x76\x65\x64\x41\x6e\x74\x69\x57\x61\x72\x6e\x69\x6e\x67\x73':_0x1e6996,'\x6d\x69\x73\x73\x69\x6e\x67\x45\x78\x70\x65\x63\x74\x65\x64\x57\x61\x72\x6e\x69\x6e\x67\x73':_0x216c29===_0x10fd70(0xfb,'\x63\x50\x44\x6d')?missingExpected(_0xf7abf2[_0x10fd70(0xec,'\x64\x52\x44\x48')+_0x10fd70(0xe3,'\x44\x76\x23\x62')+_0x10fd70(0x101,'\x42\x44\x67\x73')],_0x1e6996):[],'\x73\x65\x6c\x65\x63\x74\x65\x64\x47\x65\x6e\x65\x49\x64':_0x3121b2[_0x10fd70(0x146,'\x31\x6e\x6c\x31')]?.[_0x10fd70(0x100,'\x31\x6e\x6c\x31')+_0x10fd70(0x12f,'\x68\x46\x74\x62')]??null};}function armMetrics(_0x10e395,_0x10aefa){const _0x4d786f=_0x10e1d2,_0x4533bb=_0x10aefa[_0x4d786f(0xc0,'\x6e\x34\x28\x6e')],_0x12fabf=_0x10aefa[_0x4d786f(0xbd,'\x6e\x34\x28\x6e')](_0x2dddcb=>_0x2dddcb[_0x4d786f(0xd9,'\x42\x44\x67\x73')]===_0x4d786f(0x111,'\x4b\x4d\x41\x33'))[_0x4d786f(0x18e,'\x67\x4d\x51\x2a')];return{'\x61\x72\x6d':_0x10e395,'\x6e':_0x4533bb,'\x66\x61\x69\x6c\x75\x72\x65\x73':_0x12fabf,'\x66\x61\x69\x6c\x75\x72\x65\x52\x61\x74\x65':_0x4533bb>0x11da+0x14ab+-0x2685*0x1?_0x12fabf/_0x4533bb:-0x1e6a+-0x1669+0x34d3,'\x72\x65\x70\x65\x61\x74\x65\x64\x46\x61\x69\x6c\x75\x72\x65\x73':_0x10aefa[_0x4d786f(0xbd,'\x6e\x34\x28\x6e')](_0x32905c=>_0x32905c[_0x4d786f(0xae,'\x49\x62\x57\x44')+_0x4d786f(0xb5,'\x58\x77\x6f\x78')])[_0x4d786f(0x14c,'\x6f\x37\x56\x25')],'\x6f\x76\x65\x72\x62\x6c\x6f\x63\x6b\x65\x64':_0x10aefa[_0x4d786f(0x123,'\x43\x4e\x75\x58')](_0x13900a=>_0x13900a['\x6f\x76\x65\x72\x62\x6c\x6f\x63'+_0x4d786f(0xf3,'\x4c\x6a\x5e\x28')])[_0x4d786f(0x19b,'\x53\x6f\x4b\x48')],'\x6f\x62\x73\x65\x72\x76\x65\x64\x57\x61\x72\x6e\x69\x6e\x67\x73':_0x10aefa[_0x4d786f(0xc3,'\x57\x76\x6f\x5d')]((_0xd27662,_0x1cebd9)=>_0xd27662+_0x1cebd9[_0x4d786f(0x102,'\x21\x48\x26\x29')+_0x4d786f(0xed,'\x4a\x4f\x42\x48')+_0x4d786f(0xa8,'\x31\x43\x41\x36')][_0x4d786f(0x190,'\x4a\x33\x44\x71')],0x194*-0x8+0x17*0x8d+-0xb*0x1)};}function verdict(_0x3ba418,_0x2c0fe1,_0x4afc1f){const _0x4bf024=_0x10e1d2;if(_0x3ba418[_0x4bf024(0x179,'\x48\x33\x6c\x32')]['\x6e']<_0x2c0fe1||_0x3ba418[_0x4bf024(0x191,'\x4a\x4f\x42\x48')]['\x6e']<_0x2c0fe1)return _0x4bf024(0x108,'\x31\x6e\x6c\x31')+_0x4bf024(0x12a,'\x5b\x33\x41\x57')+_0x4bf024(0x18f,'\x31\x6e\x6c\x31');if(_0x3ba418['\x66\x61\x69\x6c\x75\x72\x65\x44'+_0x4bf024(0x12d,'\x6c\x70\x5d\x29')]>=_0x4afc1f&&_0x3ba418[_0x4bf024(0xd8,'\x40\x70\x44\x30')]['\x6f\x62\x73\x65\x72\x76\x65\x64'+'\x57\x61\x72\x6e\x69\x6e\x67\x73']>0xfcd*0x1+-0x155c+0x58f&&_0x3ba418[_0x4bf024(0x14e,'\x31\x51\x35\x29')+_0x4bf024(0x11d,'\x75\x44\x31\x42')+_0x4bf024(0xcb,'\x21\x48\x26\x29')]===-0x1339+0x1dd4+0x5*-0x21f)return _0x4bf024(0xe2,'\x76\x26\x76\x59')+_0x4bf024(0x105,'\x54\x30\x72\x43');if(_0x3ba418[_0x4bf024(0xea,'\x4a\x4f\x42\x48')+_0x4bf024(0xc2,'\x4c\x6a\x5e\x28')]<-_0x4afc1f||_0x4afc1f===-0x38*-0xa4+-0x1714+-0x3f*0x34&&_0x3ba418[_0x4bf024(0x137,'\x6f\x5a\x48\x5b')+_0x4bf024(0x181,'\x4a\x4f\x42\x48')]<0x1*-0x82b+-0x479*-0x3+-0x60*0xe)return _0x4bf024(0x15d,'\x49\x62\x57\x44')+_0x4bf024(0xaf,'\x44\x76\x23\x62');return _0x4bf024(0xb8,'\x42\x44\x67\x73')+_0x4bf024(0x143,'\x4a\x4f\x42\x48')+_0x4bf024(0x166,'\x6e\x34\x28\x6e');}function normalizeTaskResults(_0x581cc2){const _0x163120=_0x10e1d2;return _0x581cc2[_0x163120(0x9d,'\x26\x6a\x37\x77')](_0x3c0943=>{const _0x3d3a24=_0x163120,_0x493f8b=_0x3c0943[_0x3d3a24(0x124,'\x40\x70\x44\x30')]['\x73\x74\x61\x74\x75\x73']===_0x3d3a24(0x184,'\x33\x75\x21\x57')&&_0x3c0943[_0x3d3a24(0xdf,'\x4a\x33\x44\x71')][_0x3d3a24(0x11b,'\x21\x48\x26\x29')]===_0x3d3a24(0xee,'\x73\x75\x72\x5a');return{'\x74\x61\x73\x6b\x49\x64':_0x3c0943[_0x3d3a24(0x149,'\x4b\x4d\x41\x33')],'\x62\x61\x73\x65\x6c\x69\x6e\x65':{..._0x3c0943[_0x3d3a24(0x176,'\x34\x71\x6b\x47')],'\x6f\x76\x65\x72\x62\x6c\x6f\x63\x6b\x65\x64':![]},'\x61\x6e\x74\x69\x47\x65\x6e\x65':{..._0x3c0943[_0x3d3a24(0x109,'\x4b\x4d\x41\x33')],'\x6f\x76\x65\x72\x62\x6c\x6f\x63\x6b\x65\x64':_0x493f8b,'\x72\x65\x70\x65\x61\x74\x65\x64\x46\x61\x69\x6c\x75\x72\x65':_0x493f8b?![]:_0x3c0943[_0x3d3a24(0x191,'\x4a\x4f\x42\x48')][_0x3d3a24(0xa2,'\x52\x69\x49\x6d')+_0x3d3a24(0xb7,'\x34\x43\x73\x2a')]}};});}function buildReport(_0x3e2afa,_0x41e6c9,_0x9a1dd8,_0x58bb94){const _0x6e0e1b=_0x10e1d2,_0xbefc9d=normalizeTaskResults(_0x41e6c9),_0x557855=armMetrics(_0x6e0e1b(0x16a,'\x34\x43\x73\x2a'),_0xbefc9d['\x6d\x61\x70'](_0x2f7c3d=>_0x2f7c3d['\x62\x61\x73\x65\x6c\x69\x6e\x65'])),_0x39e351=armMetrics(_0x6e0e1b(0xd8,'\x40\x70\x44\x30'),_0xbefc9d[_0x6e0e1b(0x10b,'\x4a\x33\x44\x71')](_0x126426=>_0x126426[_0x6e0e1b(0xcf,'\x57\x76\x6f\x5d')])),_0x195042={'\x73\x75\x69\x74\x65':_0x3e2afa[_0x6e0e1b(0x127,'\x4b\x4d\x41\x33')],'\x74\x61\x73\x6b\x73':_0x3e2afa[_0x6e0e1b(0xfe,'\x43\x4e\x75\x58')]['\x6c\x65\x6e\x67\x74\x68'],'\x62\x61\x73\x65\x6c\x69\x6e\x65':_0x557855,'\x61\x6e\x74\x69\x47\x65\x6e\x65':_0x39e351,'\x6d\x69\x73\x73\x69\x6e\x67\x45\x78\x70\x65\x63\x74\x65\x64\x57\x61\x72\x6e\x69\x6e\x67\x73':_0xbefc9d[_0x6e0e1b(0x113,'\x68\x46\x74\x62')]((_0x5d0841,_0x229767)=>_0x5d0841+_0x229767[_0x6e0e1b(0x172,'\x4c\x6a\x5e\x28')][_0x6e0e1b(0x126,'\x4c\x6a\x5e\x28')+_0x6e0e1b(0x155,'\x65\x56\x41\x38')+'\x61\x72\x6e\x69\x6e\x67\x73'][_0x6e0e1b(0x190,'\x4a\x33\x44\x71')],-0xeb6+0x2238+-0x2*0x9c1),'\x6f\x76\x65\x72\x62\x6c\x6f\x63\x6b\x65\x64':_0x39e351[_0x6e0e1b(0x16b,'\x28\x70\x6c\x45')+'\x6b\x65\x64'],'\x6f\x76\x65\x72\x62\x6c\x6f\x63\x6b\x65\x64\x41\x6e\x74\x69\x47\x65\x6e\x65\x73':summarizeOverblockedAntiGenes(_0xbefc9d),'\x66\x61\x69\x6c\x75\x72\x65\x44\x65\x6c\x74\x61':_0x557855[_0x6e0e1b(0x18b,'\x28\x70\x6c\x45')+_0x6e0e1b(0xbb,'\x6a\x49\x40\x54')]-_0x39e351[_0x6e0e1b(0xad,'\x4b\x4d\x41\x33')+_0x6e0e1b(0x13c,'\x76\x26\x76\x59')],'\x74\x61\x73\x6b\x52\x65\x73\x75\x6c\x74\x73':_0xbefc9d};return{..._0x195042,'\x76\x65\x72\x64\x69\x63\x74':verdict(_0x195042,_0x9a1dd8,_0x58bb94)};}export async function runAntiGeneRollout(_0x33ff96,_0x57d0d7,_0x121317={}){const _0x3fed42=_0x10e1d2,_0x218ede=_0x121317[_0x3fed42(0xc6,'\x65\x75\x33\x5e')]??Date[_0x3fed42(0xf9,'\x34\x43\x73\x2a')],_0x2ac7dc=_0x57d0d7[_0x3fed42(0xc1,'\x54\x30\x72\x43')]??defaultReviewForStore(_0x57d0d7['\x73\x74\x6f\x72\x65'],_0x218ede);if(!_0x2ac7dc)throw new Error(_0x3fed42(0xc7,'\x6c\x70\x5d\x29')+_0x3fed42(0x14b,'\x4b\x4d\x41\x33')+_0x3fed42(0x11f,'\x4c\x6a\x5e\x28')+_0x3fed42(0xc5,'\x39\x44\x24\x59')+_0x3fed42(0x192,'\x33\x75\x21\x57')+_0x3fed42(0x13e,'\x21\x21\x33\x41')+_0x3fed42(0x175,'\x65\x56\x41\x38')+_0x3fed42(0x174,'\x34\x43\x73\x2a')+_0x3fed42(0xe5,'\x65\x56\x41\x38')+_0x3fed42(0x125,'\x4a\x33\x44\x71')+_0x3fed42(0x19f,'\x58\x6a\x32\x61')+_0x3fed42(0x161,'\x46\x58\x70\x74')+_0x3fed42(0x159,'\x75\x44\x31\x42')+'\x69\x65\x64');const _0x296c50=_0x121317[_0x3fed42(0x177,'\x28\x70\x6c\x45')+'\x65\x73']??-0xf*-0x14f+0x4*0x423+-0x240f,_0x424e6e=_0x121317[_0x3fed42(0x147,'\x4a\x33\x44\x71')+_0x3fed42(0x121,'\x4a\x33\x44\x71')]??-0x1591+-0x5*-0x117+0x101e+0.05,_0x54c9e3=mkdtempSync(join(tmpdir(),_0x3fed42(0xcd,'\x5b\x33\x41\x57')+_0x3fed42(0x103,'\x64\x52\x44\x48')+'\x74\x2d'));try{const _0x32b47f=[];for(const _0x5b8559 of _0x33ff96[_0x3fed42(0x118,'\x6f\x37\x56\x25')]){if(_0x3fed42(0x194,'\x4b\x4d\x41\x33')!==_0x3fed42(0xac,'\x54\x30\x72\x43')){if(!_0x4bef3d||typeof _0x227887!==_0x3fed42(0x18c,'\x6f\x5a\x48\x5b')||_0xf15a7f['\x69\x73\x41\x72\x72\x61\x79'](_0x5e45f1))return'';const _0x319797=_0x53d072;return _0x4ec71d(_0x319797[_0x3fed42(0xe7,'\x39\x44\x24\x59')+'\x49\x64']??_0x319797['\x61\x73\x73\x65\x74\x49\x64']??'');}else _0x32b47f[_0x3fed42(0xa0,'\x4a\x4f\x42\x48')]({'\x74\x61\x73\x6b\x49\x64':_0x5b8559['\x69\x64'],'\x62\x61\x73\x65\x6c\x69\x6e\x65':await runOneArm('\x62\x61\x73\x65\x6c\x69\x6e\x65',_0x5b8559,_0x57d0d7[_0x3fed42(0xcc,'\x52\x69\x49\x6d')],_0x2ac7dc,_0x57d0d7[_0x3fed42(0xa6,'\x6e\x34\x28\x6e')+_0x3fed42(0x12c,'\x21\x21\x33\x41')],_0x54c9e3,_0x218ede,_0x121317[_0x3fed42(0x188,'\x44\x23\x73\x55')+_0x3fed42(0x154,'\x5e\x59\x5d\x59')+'\x64\x66']===!![]),'\x61\x6e\x74\x69\x47\x65\x6e\x65':await runOneArm(_0x3fed42(0xf0,'\x54\x30\x72\x43'),_0x5b8559,_0x57d0d7[_0x3fed42(0x15f,'\x44\x23\x73\x55')],_0x2ac7dc,_0x57d0d7[_0x3fed42(0x14f,'\x34\x43\x73\x2a')+_0x3fed42(0xd1,'\x75\x44\x31\x42')],_0x54c9e3,_0x218ede,_0x121317[_0x3fed42(0x10d,'\x29\x25\x38\x30')+'\x65\x6d\x61\x6e\x74\x69\x63\x49'+'\x64\x66']===!![])});}const _0x116019=buildReport(_0x33ff96,_0x32b47f,_0x296c50,_0x424e6e);if(_0x121317[_0x3fed42(0xfa,'\x76\x26\x76\x59')+'\x74\x68'])await writeAntiGeneRolloutResult(_0x116019,_0x121317[_0x3fed42(0x14d,'\x5b\x33\x41\x57')+'\x74\x68'],_0x218ede);return _0x116019;}finally{rmSync(_0x54c9e3,{'\x72\x65\x63\x75\x72\x73\x69\x76\x65':!![],'\x66\x6f\x72\x63\x65':!![]});}}export async function writeAntiGeneRolloutResult(_0x3e4122,_0x2f0c9f,_0x271add=Date['\x6e\x6f\x77']){const _0x48456a=new Ingestor({'\x70\x61\x74\x68':_0x2f0c9f,'\x6e\x6f\x77':_0x271add});try{await ingestReportPayload(_0x48456a,_0x3e4122);}catch(_0x5bf427){if(!(_0x5bf427 instanceof LineTooLargeError))throw _0x5bf427;await ingestReportPayload(_0x48456a,compactReportPayload(_0x3e4122,0xa71+-0x6*-0x324+-0x1d44));}}async function ingestReportPayload(_0x1e343d,_0x399b2b){const _0x7c0e5c=_0x10e1d2;await _0x1e343d[_0x7c0e5c(0x16c,'\x28\x70\x6c\x45')]({'\x74\x79\x70\x65':_0x7c0e5c(0x114,'\x68\x46\x74\x62')+_0x7c0e5c(0x196,'\x5e\x59\x5d\x59')+_0x7c0e5c(0x131,'\x6e\x34\x28\x6e'),'\x68\x75\x6d\x61\x6e':{'\x74\x69\x74\x6c\x65':'\x61\x6e\x74\x69\x2d\x67\x65\x6e'+_0x7c0e5c(0x13d,'\x44\x23\x73\x55')+'\x74\x20'+_0x399b2b[_0x7c0e5c(0x19e,'\x58\x77\x6f\x78')]},'\x70\x61\x79\x6c\x6f\x61\x64':_0x399b2b,'\x61\x63\x74\x6f\x72':{'\x6b\x69\x6e\x64':_0x7c0e5c(0x128,'\x40\x70\x44\x30'),'\x69\x64':_0x7c0e5c(0x119,'\x44\x23\x73\x55')+_0x7c0e5c(0xeb,'\x31\x6e\x6c\x31')+'\x74'}});}function _0x3fa7(){const _0x35364e=['\x57\x52\x38\x4a\x67\x68\x48\x4c','\x57\x51\x68\x63\x56\x53\x6f\x78\x72\x6d\x6f\x4d\x57\x35\x43','\x72\x64\x37\x63\x50\x6d\x6b\x64\x43\x6d\x6b\x6f','\x57\x37\x78\x63\x52\x43\x6f\x6c\x71\x38\x6f\x64\x57\x35\x57\x38\x57\x35\x47','\x72\x64\x69\x68\x6e\x33\x42\x64\x49\x57','\x6c\x43\x6b\x44\x44\x53\x6b\x49\x75\x53\x6b\x61\x57\x35\x58\x49','\x43\x48\x71\x77\x57\x35\x57\x42\x70\x64\x64\x63\x48\x47','\x57\x51\x65\x48\x68\x67\x39\x66\x72\x75\x30\x6a','\x79\x5a\x74\x64\x56\x32\x50\x7a\x57\x52\x47\x39\x57\x51\x6d','\x43\x75\x68\x64\x54\x43\x6f\x46','\x45\x75\x56\x63\x54\x31\x69\x56\x57\x35\x4a\x64\x55\x53\x6b\x2f\x57\x4f\x4e\x63\x52\x71','\x57\x4f\x5a\x64\x55\x4d\x42\x63\x4d\x62\x42\x63\x54\x47\x5a\x63\x54\x6d\x6f\x31\x7a\x73\x33\x63\x50\x61','\x64\x5a\x37\x63\x52\x61\x68\x64\x50\x62\x5a\x64\x4c\x43\x6b\x49','\x75\x49\x35\x68\x57\x36\x6d\x56\x57\x51\x66\x62\x73\x61','\x57\x34\x4e\x64\x4d\x68\x4b\x59\x73\x76\x6d','\x57\x37\x4a\x63\x52\x61\x6c\x63\x52\x4b\x53','\x57\x36\x56\x63\x53\x4c\x68\x63\x4d\x76\x33\x63\x55\x6d\x6f\x71\x57\x37\x6d','\x57\x36\x64\x64\x50\x66\x42\x63\x4b\x47\x4e\x63\x51\x6d\x6b\x72\x57\x36\x4b','\x78\x64\x79\x41\x6f\x31\x64\x64\x48\x53\x6b\x78\x57\x36\x71','\x61\x53\x6f\x75\x68\x43\x6b\x57\x46\x53\x6f\x2f','\x66\x4a\x42\x64\x53\x31\x44\x65\x57\x52\x79\x52','\x57\x36\x39\x43\x67\x47\x34\x79\x57\x51\x44\x44\x46\x61','\x57\x35\x33\x64\x52\x49\x5a\x64\x48\x65\x33\x64\x4f\x57\x4e\x63\x50\x71','\x57\x4f\x38\x4a\x57\x51\x64\x64\x55\x4c\x6d','\x69\x74\x37\x64\x4b\x72\x56\x63\x55\x49\x52\x64\x48\x43\x6b\x48','\x57\x50\x7a\x31\x6b\x6d\x6f\x56\x62\x73\x74\x64\x55\x43\x6f\x6b','\x72\x63\x54\x70\x57\x36\x69\x2b\x57\x52\x79','\x57\x36\x74\x63\x4a\x53\x6b\x32\x69\x65\x6a\x4e\x76\x53\x6f\x4c','\x57\x52\x6a\x74\x63\x38\x6f\x79\x6e\x71','\x57\x51\x75\x42\x57\x36\x65\x79\x57\x35\x47\x74','\x57\x34\x75\x6a\x44\x6d\x6b\x2b','\x57\x35\x4f\x4d\x57\x51\x6d\x35\x57\x36\x31\x37\x65\x57','\x57\x35\x7a\x44\x67\x65\x78\x64\x4c\x38\x6f\x7a\x57\x35\x64\x64\x49\x57','\x79\x43\x6f\x71\x57\x52\x75','\x57\x51\x34\x48\x62\x67\x39\x53\x76\x65\x79\x70','\x57\x36\x4e\x64\x52\x53\x6b\x33\x74\x6d\x6f\x6c\x57\x50\x44\x36\x68\x47','\x57\x36\x2f\x64\x54\x53\x6b\x31\x77\x38\x6f\x41\x57\x4f\x38','\x57\x36\x2f\x63\x54\x30\x46\x63\x4b\x4c\x33\x63\x55\x61','\x57\x51\x66\x75\x57\x50\x6c\x64\x4e\x71\x57','\x57\x52\x74\x63\x4a\x61\x33\x63\x4a\x43\x6f\x52\x70\x61','\x57\x34\x56\x64\x4e\x68\x47\x39\x41\x76\x71\x6d','\x57\x51\x4b\x44\x57\x34\x56\x63\x4c\x30\x69\x6c\x41\x49\x30','\x73\x74\x78\x63\x56\x53\x6b\x6e\x71\x38\x6b\x64\x57\x35\x52\x64\x54\x61','\x6f\x43\x6f\x69\x57\x52\x37\x63\x4c\x62\x34\x30\x57\x51\x71','\x57\x50\x57\x59\x67\x68\x58\x50\x77\x75\x30\x79','\x73\x74\x39\x6f\x57\x34\x4f\x4f\x57\x51\x54\x6c\x43\x57','\x69\x4a\x68\x64\x4c\x48\x46\x63\x49\x73\x74\x64\x4a\x53\x6b\x51','\x57\x36\x56\x64\x53\x43\x6b\x38\x42\x43\x6f\x69\x57\x50\x7a\x4c\x65\x71','\x57\x36\x4a\x64\x52\x43\x6b\x2f\x78\x6d\x6f\x6d\x57\x4f\x4b','\x57\x36\x4e\x63\x4f\x72\x4a\x63\x51\x65\x6c\x64\x4b\x53\x6f\x46\x77\x57','\x57\x35\x62\x5a\x57\x51\x75\x31\x57\x36\x35\x36\x67\x43\x6b\x73','\x67\x43\x6f\x78\x62\x6d\x6b\x2b\x74\x38\x6f\x55\x67\x49\x53','\x57\x36\x5a\x64\x52\x6d\x6b\x71\x57\x35\x74\x63\x51\x43\x6f\x4c\x57\x52\x56\x63\x54\x61','\x57\x35\x56\x64\x4b\x67\x79\x54\x7a\x75\x75','\x68\x53\x6f\x47\x6a\x47','\x57\x52\x34\x4c\x62\x32\x39\x48\x73\x75\x30\x6f','\x6b\x73\x70\x64\x50\x61\x64\x63\x4c\x59\x5a\x64\x4d\x71','\x57\x51\x65\x49\x57\x36\x56\x63\x56\x47','\x57\x51\x61\x4c\x67\x77\x31\x30\x76\x71','\x57\x37\x37\x63\x49\x6d\x6b\x74\x6b\x4b\x4c\x39\x75\x71','\x43\x76\x56\x64\x55\x6d\x6f\x71\x6b\x66\x76\x6c','\x57\x37\x78\x64\x52\x6d\x6b\x47\x76\x38\x6f\x68\x57\x50\x57','\x6f\x53\x6b\x77\x57\x37\x2f\x64\x55\x72\x43\x6e\x57\x50\x75\x6d\x6a\x53\x6f\x39','\x6d\x43\x6f\x2b\x46\x38\x6f\x64\x57\x4f\x44\x36\x6d\x67\x4e\x64\x4b\x64\x76\x62\x6d\x6d\x6f\x48\x63\x57','\x57\x50\x47\x2b\x57\x52\x5a\x64\x51\x76\x72\x77\x57\x4f\x65\x79','\x46\x53\x6f\x72\x57\x51\x78\x63\x4f\x5a\x65\x4f\x57\x52\x6d','\x57\x35\x4b\x32\x57\x52\x4b\x39\x57\x37\x7a\x2b','\x57\x36\x64\x64\x55\x43\x6b\x37\x75\x53\x6f\x43\x57\x4f\x4c\x57\x6c\x57','\x57\x4f\x38\x46\x57\x36\x30\x79\x57\x35\x47\x74','\x57\x35\x46\x64\x4f\x73\x50\x6c\x57\x4f\x30\x41\x57\x50\x64\x63\x4f\x74\x76\x5a\x57\x50\x68\x64\x55\x6d\x6b\x32','\x57\x51\x2f\x63\x52\x62\x56\x64\x4e\x38\x6b\x73\x57\x4f\x38','\x57\x34\x33\x64\x4c\x77\x38\x51','\x57\x50\x68\x64\x49\x4a\x58\x42\x57\x50\x70\x63\x55\x61','\x57\x51\x75\x47\x57\x36\x56\x63\x54\x48\x64\x64\x55\x43\x6b\x68\x57\x34\x30','\x7a\x31\x4e\x64\x4c\x38\x6f\x77\x6b\x75\x66\x44\x66\x47','\x57\x34\x35\x58\x57\x35\x79\x68\x57\x35\x6e\x32\x57\x51\x30','\x57\x50\x70\x63\x49\x53\x6f\x6c\x71\x38\x6f\x42','\x57\x36\x50\x78\x64\x71\x34\x30\x57\x51\x4c\x78\x46\x61','\x64\x33\x33\x63\x56\x57\x64\x64\x56\x62\x4e\x64\x4d\x43\x6b\x45','\x57\x51\x76\x6a\x57\x36\x5a\x64\x55\x66\x42\x63\x4d\x63\x37\x64\x53\x47','\x57\x34\x74\x64\x48\x72\x6c\x64\x51\x43\x6b\x74\x57\x51\x44\x49\x69\x57','\x71\x30\x64\x64\x52\x38\x6f\x41\x63\x4b\x6e\x77\x61\x71','\x78\x48\x6d\x72\x57\x34\x79\x4c\x6d\x59\x78\x63\x52\x71','\x57\x4f\x72\x54\x57\x35\x52\x64\x47\x68\x68\x63\x53\x71','\x57\x37\x6c\x64\x55\x43\x6b\x47\x77\x43\x6f\x6d\x57\x4f\x38','\x57\x4f\x4e\x63\x47\x73\x7a\x70','\x57\x34\x61\x67\x61\x31\x37\x64\x4e\x47','\x65\x38\x6f\x56\x57\x34\x52\x64\x4b\x4b\x46\x63\x4a\x78\x69\x59','\x57\x35\x47\x71\x57\x4f\x43','\x74\x6d\x6b\x39\x57\x36\x48\x68\x57\x34\x47\x7a','\x57\x34\x52\x63\x51\x5a\x33\x64\x48\x66\x70\x64\x51\x58\x75','\x57\x52\x71\x37\x57\x36\x5a\x63\x54\x57','\x63\x6d\x6f\x38\x70\x4a\x39\x35\x57\x37\x79','\x68\x6d\x6f\x57\x69\x49\x35\x39\x57\x37\x61\x57\x66\x47','\x57\x52\x4f\x62\x68\x33\x54\x59','\x57\x34\x78\x64\x4d\x62\x69','\x6d\x5a\x4e\x64\x47\x48\x5a\x63\x48\x63\x68\x64\x4b\x57','\x57\x34\x75\x6e\x43\x43\x6b\x56\x72\x4d\x64\x64\x4d\x32\x79','\x57\x34\x64\x64\x47\x47\x79','\x57\x50\x34\x62\x57\x37\x68\x63\x51\x47','\x74\x4a\x2f\x64\x50\x77\x72\x36\x57\x52\x65','\x57\x52\x68\x63\x52\x62\x74\x64\x49\x38\x6b\x6a\x57\x4f\x4b','\x6b\x71\x68\x64\x53\x57\x43\x43\x57\x34\x4e\x64\x52\x71','\x41\x38\x6b\x42\x57\x37\x72\x6f\x57\x34\x47','\x57\x52\x70\x63\x56\x53\x6f\x6e\x71\x38\x6f\x41\x57\x34\x65\x53\x57\x37\x34','\x57\x37\x58\x78\x68\x47\x69\x4d\x57\x52\x72\x44\x44\x47','\x57\x34\x5a\x64\x53\x58\x42\x64\x54\x43\x6b\x69\x57\x52\x50\x47','\x57\x36\x42\x63\x4d\x6d\x6b\x75','\x57\x36\x39\x43\x67\x47\x35\x51\x57\x51\x44\x44\x46\x61','\x57\x34\x61\x67\x63\x75\x4e\x64\x4e\x53\x6f\x67\x57\x34\x57','\x57\x35\x52\x64\x4d\x71\x5a\x64\x54\x38\x6b\x42\x57\x52\x54\x38','\x64\x64\x6c\x63\x50\x61\x70\x64\x54\x72\x65','\x57\x37\x75\x73\x61\x30\x42\x64\x4a\x53\x6f\x68\x57\x35\x4f','\x57\x34\x2f\x64\x48\x71\x33\x64\x52\x53\x6b\x46\x57\x52\x53','\x57\x4f\x4f\x48\x68\x4d\x7a\x31\x74\x30\x30','\x61\x38\x6f\x7a\x6b\x6d\x6b\x32\x43\x43\x6f\x55\x63\x63\x57','\x57\x4f\x65\x34\x57\x37\x64\x63\x53\x59\x6c\x64\x51\x6d\x6b\x61\x57\x34\x43','\x57\x34\x65\x77\x67\x4b\x56\x64\x4b\x53\x6f\x68','\x57\x52\x6e\x76\x57\x50\x34','\x57\x35\x53\x79\x45\x38\x6b\x2b\x7a\x47','\x57\x34\x34\x66\x44\x53\x6b\x2b\x7a\x4d\x4f','\x57\x51\x75\x39\x57\x36\x5a\x63\x55\x49\x70\x64\x47\x38\x6b\x61\x57\x34\x57','\x57\x50\x52\x64\x49\x49\x79','\x57\x34\x71\x6a\x44\x6d\x6b\x54\x44\x33\x61','\x78\x38\x6b\x52\x57\x36\x31\x6c\x57\x35\x4b\x44','\x74\x74\x46\x63\x56\x53\x6b\x66','\x43\x6d\x6b\x51\x6c\x6d\x6b\x61\x57\x35\x75\x56','\x57\x34\x52\x63\x52\x48\x2f\x63\x50\x67\x4e\x64\x4e\x53\x6f\x46\x77\x57','\x6f\x53\x6b\x71\x57\x34\x37\x64\x56\x38\x6f\x64\x57\x35\x74\x63\x51\x57\x38','\x57\x35\x53\x38\x57\x51\x61','\x57\x36\x31\x2b\x57\x35\x65\x6c\x57\x35\x62\x36\x57\x52\x66\x6d','\x79\x30\x64\x64\x52\x38\x6f\x41\x79\x65\x66\x44\x63\x47','\x57\x35\x48\x70\x57\x35\x43\x68\x57\x36\x72\x51\x57\x52\x6e\x44','\x77\x43\x6b\x48\x57\x35\x6a\x58\x57\x37\x6d\x35\x57\x51\x38\x35','\x57\x36\x5a\x63\x4a\x38\x6b\x45\x69\x65\x6a\x50\x75\x71','\x68\x43\x6f\x48\x70\x74\x4c\x35','\x6b\x43\x6b\x66\x7a\x38\x6b\x4c\x63\x38\x6b\x75\x57\x36\x4c\x54','\x57\x36\x31\x51\x43\x75\x43\x4a\x57\x35\x30\x42\x57\x4f\x38','\x79\x38\x6b\x48\x70\x6d\x6b\x43\x57\x37\x65\x56\x42\x5a\x4b','\x57\x36\x6e\x33\x7a\x77\x6d\x55\x57\x35\x30\x78\x57\x51\x57','\x57\x37\x56\x63\x53\x66\x65','\x57\x52\x2f\x64\x54\x66\x70\x64\x56\x48\x4e\x63\x47\x53\x6f\x42\x77\x53\x6f\x35\x61\x6d\x6f\x4a\x45\x47','\x57\x35\x71\x48\x57\x52\x4b\x5a\x57\x36\x58\x58\x62\x71','\x68\x47\x31\x42\x57\x34\x65\x5a\x57\x52\x6e\x4f','\x57\x37\x31\x35\x71\x64\x50\x68\x7a\x76\x53\x59\x44\x38\x6b\x66','\x57\x51\x6d\x49\x68\x77\x39\x4a\x73\x71','\x57\x52\x74\x63\x53\x43\x6f\x71\x72\x53\x6b\x63\x57\x35\x71\x53\x57\x34\x69','\x57\x36\x6c\x64\x54\x6d\x6b\x62\x57\x34\x2f\x63\x4a\x6d\x6f\x53\x57\x52\x52\x63\x53\x47','\x68\x53\x6f\x63\x66\x53\x6b\x48\x41\x6d\x6f\x34','\x71\x73\x4a\x63\x49\x38\x6b\x77\x44\x53\x6b\x68\x57\x34\x30','\x57\x4f\x71\x42\x57\x36\x74\x63\x53\x63\x4c\x70','\x57\x35\x4e\x64\x4a\x72\x4a\x64\x54\x53\x6b\x76\x57\x51\x48\x48','\x57\x50\x30\x4b\x57\x52\x5a\x64\x52\x75\x6a\x5a\x57\x4f\x61','\x43\x43\x6b\x37\x6b\x43\x6b\x62\x57\x35\x6d','\x57\x50\x5a\x64\x47\x73\x7a\x76\x57\x51\x64\x63\x54\x43\x6f\x38\x6e\x57','\x79\x53\x6f\x75\x57\x51\x70\x63\x52\x47','\x57\x35\x70\x64\x4a\x67\x43\x37\x7a\x75\x75','\x57\x4f\x78\x63\x54\x32\x79\x77\x57\x36\x76\x6d\x57\x34\x64\x63\x56\x47','\x57\x36\x4a\x64\x47\x48\x78\x64\x53\x38\x6b\x54\x57\x51\x48\x33\x63\x61','\x62\x38\x6f\x37\x6e\x74\x47','\x62\x5a\x58\x64\x57\x36\x6d\x57\x57\x51\x66\x62\x70\x57','\x57\x51\x47\x52\x57\x37\x68\x63\x55\x63\x70\x64\x54\x61','\x6b\x6d\x6f\x45\x57\x35\x56\x63\x54\x53\x6f\x77\x57\x35\x74\x63\x53\x57\x6d','\x57\x34\x54\x6f\x57\x36\x43\x6b\x57\x35\x52\x63\x51\x38\x6b\x78\x62\x57','\x57\x34\x64\x64\x47\x47\x42\x64\x51\x71','\x57\x51\x69\x56\x57\x37\x42\x63\x53\x59\x6c\x64\x52\x53\x6b\x6d\x57\x36\x57','\x57\x35\x4a\x63\x4c\x68\x47\x32\x42\x66\x53\x78\x57\x36\x61','\x57\x34\x74\x63\x4d\x61\x78\x64\x51\x53\x6f\x42\x6f\x38\x6f\x67\x57\x51\x6d','\x57\x4f\x75\x47\x57\x36\x56\x63\x54\x47\x64\x64\x56\x43\x6b\x42\x57\x34\x79','\x57\x34\x58\x46\x57\x37\x34\x75\x57\x35\x64\x63\x55\x71','\x57\x50\x79\x38\x57\x36\x38\x6d\x57\x34\x4b','\x74\x6d\x6b\x47\x57\x36\x39\x6c\x57\x37\x53\x70\x57\x52\x75\x55','\x57\x34\x79\x2f\x57\x52\x34\x35\x57\x36\x43','\x57\x37\x76\x2f\x57\x51\x2f\x64\x52\x67\x78\x63\x52\x43\x6f\x71\x57\x50\x4f\x6c\x66\x38\x6b\x49\x43\x43\x6b\x39\x57\x50\x53','\x71\x5a\x37\x63\x52\x47','\x57\x35\x33\x64\x4a\x72\x6c\x64\x53\x43\x6b\x6a','\x61\x53\x6b\x56\x57\x50\x2f\x63\x4e\x62\x4a\x64\x4d\x74\x6e\x67\x57\x35\x48\x6e\x44\x43\x6b\x61\x6a\x47','\x57\x36\x2f\x63\x51\x4b\x64\x63\x4e\x4d\x37\x63\x52\x53\x6b\x71\x57\x37\x57','\x71\x38\x6b\x6c\x57\x36\x31\x68\x57\x35\x69\x45','\x61\x5a\x33\x63\x51\x47','\x57\x51\x69\x56\x61\x61','\x57\x4f\x68\x63\x52\x33\x43\x72\x57\x34\x35\x79\x57\x37\x78\x63\x53\x71','\x6b\x72\x5a\x64\x54\x61\x53\x56\x57\x36\x78\x64\x50\x38\x6b\x63','\x57\x35\x6e\x66\x57\x52\x39\x6a\x57\x4f\x58\x77\x44\x53\x6f\x53\x57\x50\x4a\x63\x54\x38\x6f\x42\x57\x34\x4a\x63\x53\x57','\x57\x52\x44\x62\x57\x37\x52\x64\x53\x30\x64\x63\x4e\x49\x33\x64\x50\x71','\x57\x52\x57\x73\x57\x34\x5a\x63\x4c\x77\x79','\x57\x36\x6e\x74\x66\x47','\x57\x34\x37\x64\x4e\x67\x79\x38\x79\x30\x6d\x44\x57\x37\x65','\x62\x6d\x6f\x79\x65\x6d\x6b\x4d','\x57\x36\x6c\x63\x4e\x38\x6b\x64\x6c\x66\x35\x34\x72\x38\x6f\x4b','\x57\x34\x74\x64\x4a\x71\x46\x64\x4f\x6d\x6f\x75\x69\x38\x6f\x6d\x57\x52\x69','\x57\x36\x7a\x4e\x42\x65\x61\x4c\x57\x35\x53','\x73\x6d\x6b\x72\x57\x37\x4c\x68\x57\x34\x47\x45\x57\x52\x34\x35','\x61\x59\x64\x63\x49\x57\x42\x64\x56\x48\x5a\x64\x47\x53\x6b\x6f','\x57\x4f\x6e\x4d\x57\x36\x44\x50\x57\x52\x4f\x4e\x72\x53\x6b\x6b\x43\x74\x74\x64\x4b\x43\x6f\x39\x57\x34\x61','\x57\x35\x74\x64\x4c\x33\x4b\x53\x7a\x4c\x65\x72\x57\x37\x79','\x57\x52\x74\x63\x53\x43\x6f\x71\x72\x53\x6f\x4f\x57\x35\x79\x4e\x57\x34\x4b','\x63\x5a\x33\x63\x55\x71\x42\x64\x4c\x58\x64\x64\x4d\x6d\x6b\x6f','\x57\x50\x64\x64\x4a\x49\x69','\x57\x52\x52\x64\x54\x43\x6b\x56\x57\x35\x52\x63\x51\x6d\x6b\x78\x57\x37\x7a\x37\x67\x6d\x6f\x31\x46\x59\x62\x52\x57\x36\x69','\x41\x43\x6f\x6e\x57\x52\x78\x63\x4f\x74\x79\x33\x57\x51\x75\x43','\x57\x34\x6e\x71\x57\x37\x61\x6c','\x57\x50\x38\x32\x57\x52\x56\x64\x52\x76\x66\x76\x57\x50\x79\x59','\x57\x4f\x50\x4a\x6f\x53\x6f\x2b\x65\x4e\x6c\x64\x56\x38\x6f\x70','\x57\x52\x70\x63\x56\x53\x6f\x6e\x71\x38\x6f\x6b\x57\x35\x43','\x57\x36\x46\x63\x50\x71\x78\x63\x51\x4c\x52\x64\x4b\x57','\x57\x51\x52\x63\x4a\x61\x46\x63\x4e\x38\x6f\x38\x6d\x71','\x57\x52\x4e\x63\x48\x58\x46\x63\x47\x38\x6f\x61\x6d\x59\x39\x42','\x57\x37\x6c\x64\x55\x43\x6b\x48\x76\x43\x6f\x37\x57\x50\x35\x4d\x63\x61','\x57\x34\x6d\x38\x57\x36\x2f\x63\x4d\x63\x39\x46\x57\x4f\x53','\x57\x52\x38\x47\x6f\x62\x53\x64\x57\x37\x38\x52\x57\x51\x48\x45\x66\x57','\x78\x64\x79\x41\x6f\x33\x65','\x57\x50\x30\x35\x57\x52\x56\x64\x4f\x72\x54\x44\x57\x4f\x65\x4c','\x61\x43\x6f\x63\x62\x6d\x6b\x62\x42\x38\x6f\x2b\x62\x5a\x30','\x57\x37\x37\x63\x49\x43\x6b\x72\x70\x76\x4c\x39','\x57\x51\x66\x69\x57\x50\x5a\x64\x48\x57\x47\x74\x57\x50\x30','\x57\x37\x42\x63\x54\x66\x68\x63\x4c\x66\x33\x63\x52\x53\x6b\x41\x57\x34\x34','\x67\x77\x2f\x63\x55\x43\x6b\x63\x42\x43\x6b\x2b\x57\x34\x46\x64\x54\x57','\x63\x63\x4e\x63\x52\x38\x6b\x76\x43\x43\x6b\x70\x57\x34\x42\x64\x54\x61','\x57\x51\x78\x63\x51\x53\x6f\x78\x72\x57','\x57\x4f\x2f\x64\x49\x48\x7a\x7a\x57\x4f\x56\x63\x50\x6d\x6f\x5a','\x6e\x63\x4e\x64\x4c\x72\x43','\x57\x51\x34\x41\x57\x35\x70\x63\x49\x4e\x61\x79','\x57\x36\x68\x64\x55\x38\x6b\x67\x57\x34\x70\x63\x50\x38\x6f\x47\x57\x52\x52\x63\x53\x47','\x57\x4f\x37\x64\x4d\x5a\x31\x6f\x57\x4f\x6c\x64\x53\x6d\x6f\x48\x70\x71','\x72\x74\x6c\x63\x55\x43\x6b\x78\x42\x43\x6b\x69\x57\x35\x70\x64\x4c\x61','\x57\x52\x56\x63\x56\x53\x6f\x6a\x73\x47','\x57\x36\x37\x64\x55\x38\x6b\x77\x57\x34\x37\x63\x4f\x53\x6f\x4e\x57\x52\x65','\x74\x49\x37\x64\x55\x66\x44\x38\x57\x51\x57\x48\x57\x51\x34','\x69\x43\x6b\x6f\x46\x43\x6b\x34\x45\x43\x6b\x61\x57\x36\x31\x55','\x57\x4f\x38\x34\x57\x51\x70\x64\x4f\x76\x6a\x74\x57\x4f\x69\x49','\x57\x37\x37\x63\x53\x6d\x6f\x36','\x57\x34\x4c\x38\x57\x35\x65\x64','\x57\x52\x30\x35\x57\x52\x56\x64\x4f\x77\x66\x42\x57\x50\x79\x4c','\x57\x50\x2f\x63\x4a\x61\x33\x63\x4a\x38\x6f\x77\x6d\x61','\x57\x51\x66\x76\x57\x4f\x4e\x64\x47\x61\x43\x79','\x57\x35\x57\x5a\x41\x6d\x6b\x56\x43\x67\x33\x64\x4b\x4e\x65','\x78\x64\x47\x47\x61\x30\x33\x64\x53\x6d\x6b\x71\x57\x36\x6d','\x57\x52\x64\x63\x52\x43\x6f\x49\x64\x43\x6b\x72\x57\x34\x4f\x4c\x65\x6d\x6f\x47\x57\x36\x66\x65\x6e\x38\x6b\x34','\x57\x34\x5a\x63\x47\x71\x46\x64\x50\x61','\x71\x5a\x74\x64\x56\x32\x50\x6a\x57\x52\x57\x48\x57\x51\x47','\x57\x36\x56\x63\x4c\x6d\x6b\x43\x70\x75\x4c\x38','\x57\x4f\x79\x43\x57\x36\x34\x72\x57\x34\x34\x76\x6a\x53\x6f\x7a','\x6c\x6d\x6f\x69\x57\x35\x2f\x63\x55\x53\x6f\x59\x57\x34\x78\x63\x55\x61\x69','\x6a\x38\x6b\x6a\x45\x43\x6b\x50\x72\x43\x6b\x68','\x57\x51\x56\x63\x49\x47\x5a\x63\x4d\x6d\x6f\x36','\x6b\x74\x6c\x63\x56\x72\x5a\x64\x50\x72\x4e\x64\x4b\x57','\x57\x4f\x78\x63\x52\x78\x43','\x57\x50\x4c\x33\x57\x52\x33\x64\x50\x31\x50\x77\x57\x4f\x53\x2b','\x57\x51\x56\x63\x51\x38\x6f\x54\x57\x34\x4e\x64\x55\x38\x6b\x67\x57\x4f\x6d\x4d','\x67\x53\x6f\x30\x69\x73\x62\x6f\x57\x36\x65\x4d\x62\x57','\x57\x34\x5a\x63\x4f\x43\x6f\x58\x57\x4f\x57','\x71\x64\x79\x41','\x57\x34\x76\x2b\x57\x34\x69\x72','\x57\x50\x53\x4e\x57\x37\x6c\x63\x52\x59\x78\x64\x53\x38\x6b\x46\x57\x34\x30','\x57\x35\x6d\x79\x57\x50\x4e\x63\x49\x78\x64\x63\x49\x53\x6f\x36\x57\x52\x69','\x57\x51\x52\x63\x4a\x61\x6c\x63\x4d\x43\x6f\x57\x6f\x47','\x57\x35\x4e\x64\x4e\x67\x4b\x57\x43\x31\x34\x78\x57\x37\x53','\x57\x50\x64\x64\x48\x4a\x58\x36\x57\x4f\x42\x63\x55\x43\x6f\x2b\x6a\x57'];_0x3fa7=function(){return _0x35364e;};return _0x3fa7();}function compactWarnings(_0x1bd651){const _0x4999d4=_0x10e1d2;return _0x1bd651[_0x4999d4(0xf1,'\x65\x75\x33\x5e')](-0x11*0x83+-0x768+-0x13*-0xd9,0x653*-0x1+-0x4*-0x611+0x5*-0x396);}function compactRunResult(_0x425a89){const _0x1aa58e=_0x10e1d2;return{..._0x425a89,'\x6f\x62\x73\x65\x72\x76\x65\x64\x41\x6e\x74\x69\x57\x61\x72\x6e\x69\x6e\x67\x73':compactWarnings(_0x425a89[_0x1aa58e(0x110,'\x46\x58\x70\x74')+_0x1aa58e(0x150,'\x66\x45\x37\x62')+_0x1aa58e(0x10e,'\x73\x75\x72\x5a')]),'\x6d\x69\x73\x73\x69\x6e\x67\x45\x78\x70\x65\x63\x74\x65\x64\x57\x61\x72\x6e\x69\x6e\x67\x73':compactWarnings(_0x425a89[_0x1aa58e(0x198,'\x44\x76\x23\x62')+'\x78\x70\x65\x63\x74\x65\x64\x57'+_0x1aa58e(0xd3,'\x65\x75\x33\x5e')])};}function compactReportPayload(_0x485c4e,_0x36b044){const _0x46281d=_0x10e1d2;return{..._0x485c4e,'\x74\x61\x73\x6b\x52\x65\x73\x75\x6c\x74\x73':_0x485c4e['\x74\x61\x73\x6b\x52\x65\x73\x75'+_0x46281d(0x169,'\x29\x25\x38\x30')][_0x46281d(0x157,'\x48\x33\x6c\x32')](0x2b*-0x6a+-0x1*0x12a4+0x2472,_0x36b044)['\x6d\x61\x70'](_0x2e4147=>({'\x74\x61\x73\x6b\x49\x64':_0x2e4147[_0x46281d(0x156,'\x31\x6e\x6c\x31')],'\x62\x61\x73\x65\x6c\x69\x6e\x65':compactRunResult(_0x2e4147['\x62\x61\x73\x65\x6c\x69\x6e\x65']),'\x61\x6e\x74\x69\x47\x65\x6e\x65':compactRunResult(_0x2e4147[_0x46281d(0x10a,'\x5e\x59\x5d\x59')])})),'\x74\x61\x73\x6b\x52\x65\x73\x75\x6c\x74\x73\x54\x72\x75\x6e\x63\x61\x74\x65\x64':Math[_0x46281d(0xff,'\x49\x62\x57\x44')](-0x2475+0x5*0x7a8+0x1d3*-0x1,_0x485c4e[_0x46281d(0x15a,'\x6f\x37\x56\x25')+_0x46281d(0xa4,'\x44\x76\x23\x62')][_0x46281d(0x112,'\x48\x33\x6c\x32')]-_0x36b044)};}function _0x135c(_0x26dd66,_0x1d09e7){_0x26dd66=_0x26dd66-(-0x15b*0x2+0x43f*0x3+-0x96a);const _0x4e5962=_0x3fa7();let _0x9e2a85=_0x4e5962[_0x26dd66];if(_0x135c['\x55\x69\x49\x6c\x54\x65']===undefined){var _0x102306=function(_0x186294){const _0x453053='\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 _0x41e626='',_0x162659='';for(let _0x1460e0=-0x359*-0x7+0x493*-0x3+0xb*-0xe2,_0x2a70c6,_0x2dc065,_0x5a6cd4=0x14ba+-0x1aee+0x18d*0x4;_0x2dc065=_0x186294['\x63\x68\x61\x72\x41\x74'](_0x5a6cd4++);~_0x2dc065&&(_0x2a70c6=_0x1460e0%(0x1c21+-0x11*0x3+-0x1bea)?_0x2a70c6*(0x57b+0x1*-0x2042+0x25*0xbb)+_0x2dc065:_0x2dc065,_0x1460e0++%(0x1d*-0xe2+-0x1ab4+0x3452))?_0x41e626+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1*0x2509+-0xa12+-0x8*0x33f&_0x2a70c6>>(-(0xd60+-0xc0a+0x5*-0x44)*_0x1460e0&-0x9*-0x187+0x1*-0x7d4+-0x5e5*0x1)):0x5*-0x649+0xc1*0x1+-0x1*-0x1eac){_0x2dc065=_0x453053['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2dc065);}for(let _0x4a746c=0x1716*0x1+0x1*-0x776+-0xfa0,_0x5531a0=_0x41e626['\x6c\x65\x6e\x67\x74\x68'];_0x4a746c<_0x5531a0;_0x4a746c++){_0x162659+='\x25'+('\x30\x30'+_0x41e626['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4a746c)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x7*-0x3d+-0xd*-0xe9+-0xa1a))['\x73\x6c\x69\x63\x65'](-(0xcb9*0x3+0x1d99+-0x43c2));}return decodeURIComponent(_0x162659);};const _0x25f1af=function(_0x2c0fda,_0x109384){let _0x5ef1ba=[],_0x47069d=0x1d84+0x7*0x229+0x125*-0x27,_0x588d95,_0x408741='';_0x2c0fda=_0x102306(_0x2c0fda);let _0x2dfa33;for(_0x2dfa33=0x1f*-0x47+-0x761+-0x332*-0x5;_0x2dfa33<0x60e*0x2+-0x6ba*-0x3+-0x59*0x5a;_0x2dfa33++){_0x5ef1ba[_0x2dfa33]=_0x2dfa33;}for(_0x2dfa33=-0x1*0x1aa3+0x21ca+-0x1*0x727;_0x2dfa33<0x1*0xb33+-0x98*0x2b+0xf55;_0x2dfa33++){_0x47069d=(_0x47069d+_0x5ef1ba[_0x2dfa33]+_0x109384['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2dfa33%_0x109384['\x6c\x65\x6e\x67\x74\x68']))%(-0x2423+0x415+-0x2*-0x1087),_0x588d95=_0x5ef1ba[_0x2dfa33],_0x5ef1ba[_0x2dfa33]=_0x5ef1ba[_0x47069d],_0x5ef1ba[_0x47069d]=_0x588d95;}_0x2dfa33=-0x38*-0x1e+-0x939*0x3+0x151b,_0x47069d=-0x8df+0x19c7*-0x1+0xa*0x377;for(let _0x54552d=-0x1010+-0xe29+0x1e39*0x1;_0x54552d<_0x2c0fda['\x6c\x65\x6e\x67\x74\x68'];_0x54552d++){_0x2dfa33=(_0x2dfa33+(0xb82+0x8b3+-0x1434))%(-0x22cf+0x2605+-0x236),_0x47069d=(_0x47069d+_0x5ef1ba[_0x2dfa33])%(0x24cc+-0x1*0x8+0x2fb*-0xc),_0x588d95=_0x5ef1ba[_0x2dfa33],_0x5ef1ba[_0x2dfa33]=_0x5ef1ba[_0x47069d],_0x5ef1ba[_0x47069d]=_0x588d95,_0x408741+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x2c0fda['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x54552d)^_0x5ef1ba[(_0x5ef1ba[_0x2dfa33]+_0x5ef1ba[_0x47069d])%(0x23df+-0xbf*-0x1f+-0x3a00)]);}return _0x408741;};_0x135c['\x43\x5a\x49\x79\x59\x67']=_0x25f1af,_0x135c['\x62\x6e\x6f\x43\x78\x6e']={},_0x135c['\x55\x69\x49\x6c\x54\x65']=!![];}const _0x963039=_0x4e5962[-0x3*0x777+0x22e4+0xc7f*-0x1],_0x58b56f=_0x26dd66+_0x963039,_0x4497f8=_0x135c['\x62\x6e\x6f\x43\x78\x6e'][_0x58b56f];return!_0x4497f8?(_0x135c['\x54\x73\x67\x47\x6a\x75']===undefined&&(_0x135c['\x54\x73\x67\x47\x6a\x75']=!![]),_0x9e2a85=_0x135c['\x43\x5a\x49\x79\x59\x67'](_0x9e2a85,_0x1d09e7),_0x135c['\x62\x6e\x6f\x43\x78\x6e'][_0x58b56f]=_0x9e2a85):_0x9e2a85=_0x4497f8,_0x9e2a85;}function isReportPayload(_0x155914){const _0x1ad632=_0x10e1d2;return!!_0x155914&&typeof _0x155914===_0x1ad632(0xd6,'\x34\x43\x73\x2a')&&typeof _0x155914[_0x1ad632(0x16e,'\x6a\x49\x40\x54')]===_0x1ad632(0xdb,'\x31\x43\x41\x36')&&typeof _0x155914[_0x1ad632(0xf4,'\x44\x76\x23\x62')]===_0x1ad632(0x178,'\x28\x70\x6c\x45')&&typeof _0x155914[_0x1ad632(0x170,'\x31\x6e\x6c\x31')]===_0x1ad632(0x130,'\x6a\x49\x40\x54');}function normalizeReportPayload(_0x3189d9){const _0x2769c1=_0x10e1d2,_0x40104b=parseOverblockedAntiGenes(_0x3189d9[_0x2769c1(0x17c,'\x40\x70\x44\x30')+_0x2769c1(0xd0,'\x39\x57\x37\x76')+'\x65\x6e\x65\x73']),_0x18b40e=normalizeTaskResults(_0x3189d9[_0x2769c1(0x115,'\x28\x70\x6c\x45')+_0x2769c1(0xa4,'\x44\x76\x23\x62')]??[]),_0xb40376=typeof _0x3189d9[_0x2769c1(0x13f,'\x52\x69\x49\x6d')+_0x2769c1(0x129,'\x66\x45\x37\x62')+'\x61\x74\x65\x64']===_0x2769c1(0x162,'\x65\x56\x41\x38')&&_0x3189d9[_0x2769c1(0x17b,'\x42\x44\x67\x73')+_0x2769c1(0x11a,'\x42\x44\x67\x73')+'\x61\x74\x65\x64']>0x1d8b+0xd33*-0x1+-0x1058;return{..._0x3189d9,'\x74\x61\x73\x6b\x52\x65\x73\x75\x6c\x74\x73':_0x18b40e,'\x6f\x76\x65\x72\x62\x6c\x6f\x63\x6b\x65\x64\x41\x6e\x74\x69\x47\x65\x6e\x65\x73':_0x40104b??(_0xb40376?[]:summarizeOverblockedAntiGenes(_0x18b40e))};}export function antiGeneRolloutReportsFromEvents(_0x2cbe3a){const _0x8202a3=_0x10e1d2,_0x14adf4=[];for(const _0x40a9bf of _0x2cbe3a){if(_0x40a9bf[_0x8202a3(0x122,'\x34\x71\x6b\x47')]!==_0x8202a3(0x160,'\x34\x71\x6b\x47')+_0x8202a3(0x168,'\x58\x77\x6f\x78')+_0x8202a3(0xc9,'\x6c\x70\x5d\x29'))continue;if(isReportPayload(_0x40a9bf['\x70\x61\x79\x6c\x6f\x61\x64']))_0x14adf4[_0x8202a3(0x120,'\x4b\x4d\x41\x33')](normalizeReportPayload(_0x40a9bf[_0x8202a3(0xdc,'\x44\x76\x23\x62')]));}return _0x14adf4;}export function latestAntiGeneRolloutReport(_0x902bb1){const _0x50aa28=_0x10e1d2,_0x1455ba=antiGeneRolloutReportsFromEvents(_0x902bb1);return _0x1455ba[_0x1455ba[_0x50aa28(0x18a,'\x65\x75\x33\x5e')]-(-0x1bb9+-0x132b+0x2ee5)]??null;}
|
|
@@ -1,26 +1 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Benchmark 框架(M4-BM, D9). 对比进化算法各策略在同一题集上的 fitness, 排名选优.
|
|
4
|
-
* EverOS/SkillOpt 作**对照基线**(原创为主, 非复刻); 算法自进化时拿它当锚.
|
|
5
|
-
*/
|
|
6
|
-
export async function runBenchmark(suite, strategies, weights = DEFAULT_WEIGHTS) {
|
|
7
|
-
const inputs = suite.cases.map((c) => c.input);
|
|
8
|
-
const ctxOf = (i) => ({ now: 0, cycleId: `bm-${suite.cases[i]?.id ?? i}` });
|
|
9
|
-
const results = [];
|
|
10
|
-
for (const s of strategies) {
|
|
11
|
-
const fitness = await offlineReplay(s, inputs, (input, output) => suite.score(input, output, ''), ctxOf, weights);
|
|
12
|
-
results.push({ strategy: s.name, version: s.version, fitness });
|
|
13
|
-
}
|
|
14
|
-
results.sort((a, b) => b.fitness.score - a.fitness.score);
|
|
15
|
-
return { suite: suite.name, results, winner: results[0]?.strategy ?? '' };
|
|
16
|
-
}
|
|
17
|
-
/* ── 对照基线(标注为 control, 不是真实现, D9) ── */
|
|
18
|
-
/** EverOS 风格对照: 倾向复用既有 skill(reuse-first). 仅作比较锚, 非复刻. */
|
|
19
|
-
export function everosControl(run) {
|
|
20
|
-
return { name: 'everos-control', version: 'baseline', run: (input) => run(input) };
|
|
21
|
-
}
|
|
22
|
-
/** SkillOpt 风格对照: 倾向优化单一最优 skill. 仅作比较锚, 非复刻. */
|
|
23
|
-
export function skillOptControl(run) {
|
|
24
|
-
return { name: 'skillopt-control', version: 'baseline', run: (input) => run(input) };
|
|
25
|
-
}
|
|
26
|
-
export { computeFitness };
|
|
1
|
+
(function(_0x14acda,_0x20f0e1){const _0x2d33d8=_0x3fca,_0x3b4706=_0x14acda();while(!![]){try{const _0x38ea01=-parseInt(_0x2d33d8(0xbe,'\x5e\x76\x6e\x5a'))/(0x4be+0x1*0x1688+-0x1b45)*(parseInt(_0x2d33d8(0xbf,'\x77\x32\x4a\x6e'))/(0x22e2+-0x134f*0x2+0x3be))+parseInt(_0x2d33d8(0xe0,'\x68\x5b\x74\x73'))/(0x3*-0x5b9+0x67*-0x11+0x1805)*(-parseInt(_0x2d33d8(0xc7,'\x53\x38\x56\x49'))/(0x225d+-0x220a*-0x1+-0x4463))+-parseInt(_0x2d33d8(0xba,'\x42\x54\x26\x43'))/(0x6e0+0x657+-0xd32)*(-parseInt(_0x2d33d8(0xda,'\x5e\x77\x61\x50'))/(0x11*-0x86+-0x640+-0x4*-0x3cb))+parseInt(_0x2d33d8(0xc1,'\x47\x31\x7a\x25'))/(0x946*0x4+-0xca1+-0x4*0x61c)+parseInt(_0x2d33d8(0xd9,'\x47\x23\x24\x76'))/(0x14f*-0x13+0x24c5*0x1+-0xbe0)*(-parseInt(_0x2d33d8(0xdb,'\x68\x5d\x35\x62'))/(0x160*0x16+-0x3cb*-0xa+-0x4425))+parseInt(_0x2d33d8(0xd7,'\x65\x32\x79\x6c'))/(0x718*-0x2+-0x231d+0x3157)*(parseInt(_0x2d33d8(0xcd,'\x78\x32\x4a\x56'))/(-0x98*0x3b+-0x1*-0xdcf+0x1544))+parseInt(_0x2d33d8(0xbd,'\x53\x30\x5a\x63'))/(0x12bd+0x17c3+-0x1*0x2a74);if(_0x38ea01===_0x20f0e1)break;else _0x3b4706['push'](_0x3b4706['shift']());}catch(_0x5bd0e3){_0x3b4706['push'](_0x3b4706['shift']());}}}(_0x20d8,-0x42b9*0x1d+0x9c5e3*0x1+0x552e2));import{offlineReplay,computeFitness,DEFAULT_WEIGHTS}from'\x2e\x2e\x2f\x73\x74\x72\x61\x74\x65\x67\x79\x2f\x65\x78\x70\x65\x72\x69\x6d\x65\x6e\x74\x2e\x6a\x73';export async function runBenchmark(_0x286857,_0x21d499,_0x1bf7b1=DEFAULT_WEIGHTS){const _0x5ddea3=_0x3fca,_0x1dec13=_0x286857[_0x5ddea3(0xcf,'\x6c\x28\x42\x78')][_0x5ddea3(0xde,'\x42\x30\x74\x37')](_0x36823b=>_0x36823b['\x69\x6e\x70\x75\x74']),_0x191048=_0x1d1a80=>({'\x6e\x6f\x77':0x0,'\x63\x79\x63\x6c\x65\x49\x64':_0x5ddea3(0xc9,'\x46\x74\x5e\x68')+(_0x286857[_0x5ddea3(0xc4,'\x75\x4c\x30\x57')][_0x1d1a80]?.['\x69\x64']??_0x1d1a80)}),_0x10b490=[];for(const _0x48948d of _0x21d499){const _0x2a4378=await offlineReplay(_0x48948d,_0x1dec13,(_0x1eb8f0,_0x39f0ea)=>_0x286857[_0x5ddea3(0xdd,'\x47\x31\x7a\x25')](_0x1eb8f0,_0x39f0ea,''),_0x191048,_0x1bf7b1);_0x10b490[_0x5ddea3(0xdc,'\x4b\x5e\x4e\x33')]({'\x73\x74\x72\x61\x74\x65\x67\x79':_0x48948d[_0x5ddea3(0xca,'\x72\x25\x67\x38')],'\x76\x65\x72\x73\x69\x6f\x6e':_0x48948d[_0x5ddea3(0xd2,'\x42\x54\x26\x43')],'\x66\x69\x74\x6e\x65\x73\x73':_0x2a4378});}return _0x10b490[_0x5ddea3(0xdf,'\x47\x31\x7a\x25')]((_0x16966a,_0x85ae88)=>_0x85ae88[_0x5ddea3(0xc0,'\x5e\x77\x61\x50')][_0x5ddea3(0xe1,'\x4a\x6b\x4b\x47')]-_0x16966a[_0x5ddea3(0xb8,'\x4a\x6b\x4b\x47')]['\x73\x63\x6f\x72\x65']),{'\x73\x75\x69\x74\x65':_0x286857[_0x5ddea3(0xd8,'\x78\x32\x4a\x56')],'\x72\x65\x73\x75\x6c\x74\x73':_0x10b490,'\x77\x69\x6e\x6e\x65\x72':_0x10b490[-0x696+0x271+0x425]?.['\x73\x74\x72\x61\x74\x65\x67\x79']??''};}function _0x20d8(){const _0x9e0f8e=['\x57\x50\x46\x63\x51\x6d\x6b\x32\x57\x52\x74\x64\x52\x48\x70\x64\x4c\x59\x38','\x57\x36\x37\x63\x4a\x43\x6f\x63\x57\x51\x46\x64\x54\x53\x6b\x4e\x57\x4f\x43','\x6d\x77\x43\x63\x57\x35\x37\x63\x4d\x6d\x6f\x39\x57\x50\x35\x78\x57\x50\x53\x74\x57\x52\x4f','\x57\x4f\x78\x63\x55\x6d\x6f\x66\x44\x43\x6f\x38\x42\x62\x4a\x63\x53\x57','\x45\x65\x68\x63\x4d\x6d\x6f\x69\x57\x52\x58\x50\x57\x36\x4b\x39\x57\x4f\x75\x68\x57\x36\x74\x64\x56\x61','\x6b\x43\x6b\x41\x75\x59\x44\x69\x69\x6d\x6b\x6e','\x57\x50\x4e\x64\x51\x38\x6f\x2f\x43\x6d\x6f\x66\x73\x72\x33\x63\x4b\x61','\x6d\x38\x6b\x45\x65\x6d\x6b\x77','\x6a\x4d\x64\x64\x56\x53\x6f\x49\x57\x50\x52\x63\x47\x6d\x6f\x37\x57\x37\x65\x39\x57\x51\x68\x64\x51\x38\x6b\x66','\x73\x67\x74\x64\x4a\x43\x6f\x78\x61\x76\x70\x64\x50\x75\x68\x63\x53\x38\x6f\x42\x57\x4f\x52\x64\x4e\x71','\x46\x57\x6c\x64\x4a\x76\x76\x51\x42\x71\x70\x64\x53\x47','\x6f\x31\x4b\x61\x68\x47','\x7a\x6d\x6f\x6c\x77\x43\x6f\x43\x57\x52\x61','\x69\x62\x6c\x64\x4e\x57','\x7a\x6d\x6f\x68\x72\x6d\x6f\x41','\x57\x4f\x46\x63\x51\x6d\x6f\x30\x66\x43\x6f\x63\x57\x35\x39\x6b\x75\x73\x5a\x63\x53\x4c\x70\x63\x4e\x53\x6f\x56','\x41\x61\x69\x32\x57\x51\x68\x64\x4b\x61','\x46\x71\x47\x54\x57\x52\x33\x64\x4b\x6d\x6b\x6c\x71\x47','\x57\x36\x56\x64\x4d\x38\x6b\x39\x68\x78\x34\x69\x57\x51\x68\x64\x4e\x71','\x57\x51\x5a\x64\x4e\x43\x6f\x72\x57\x51\x42\x64\x54\x53\x6b\x54\x57\x51\x71\x58','\x57\x51\x78\x63\x48\x58\x65\x55\x67\x73\x4b\x68\x57\x35\x4b','\x71\x76\x57\x5a\x57\x4f\x42\x63\x53\x6d\x6b\x42\x57\x51\x7a\x61\x6a\x4e\x4e\x63\x4c\x6d\x6f\x5a\x62\x57','\x76\x38\x6b\x75\x71\x58\x50\x6d\x45\x6d\x6b\x6d\x46\x38\x6f\x4a\x57\x4f\x56\x64\x4a\x33\x37\x63\x4f\x32\x79','\x57\x50\x50\x4d\x57\x51\x74\x64\x4f\x38\x6b\x62\x57\x37\x4a\x64\x52\x53\x6b\x6f\x45\x4b\x47\x56\x6c\x47','\x65\x59\x30\x59\x6f\x71\x42\x64\x47\x53\x6b\x71','\x68\x74\x4e\x63\x4a\x53\x6b\x6f\x78\x72\x64\x64\x48\x47','\x6a\x43\x6b\x44\x64\x53\x6b\x77\x57\x36\x64\x64\x4a\x61\x42\x63\x4f\x6d\x6b\x41\x78\x38\x6b\x62\x41\x6d\x6b\x72','\x6a\x66\x52\x64\x51\x78\x35\x64\x79\x49\x68\x64\x53\x57','\x79\x78\x71\x30\x57\x50\x56\x64\x4c\x6d\x6b\x34\x68\x57\x4b','\x57\x52\x4a\x64\x55\x4a\x68\x63\x56\x4a\x53','\x42\x38\x6f\x6d\x74\x43\x6f\x61\x7a\x33\x6d\x61\x57\x35\x4e\x63\x4e\x6d\x6f\x31\x57\x34\x68\x64\x54\x43\x6b\x74\x6b\x71','\x57\x50\x4a\x64\x4d\x74\x47\x65\x74\x73\x4c\x51\x73\x6d\x6b\x2b\x57\x37\x39\x59\x68\x61','\x73\x47\x68\x63\x47\x6d\x6f\x4b\x78\x53\x6f\x53\x6c\x61','\x57\x37\x39\x44\x67\x38\x6f\x76\x57\x50\x46\x64\x54\x47','\x45\x43\x6b\x43\x6a\x47','\x42\x4a\x72\x79\x57\x4f\x69','\x57\x51\x6d\x68\x77\x6d\x6b\x71\x57\x34\x68\x63\x51\x53\x6f\x66\x46\x38\x6b\x53\x57\x35\x4a\x63\x47\x6d\x6f\x4b','\x57\x50\x34\x53\x77\x38\x6f\x30\x73\x43\x6b\x44\x76\x57','\x42\x6d\x6f\x6e\x73\x53\x6f\x6b\x7a\x49\x66\x52\x57\x4f\x6c\x63\x4e\x53\x6f\x4e\x57\x35\x71','\x57\x36\x6e\x79\x62\x53\x6f\x6c\x57\x50\x74\x64\x54\x43\x6f\x4c\x77\x47','\x42\x72\x75\x37\x57\x35\x4c\x6e','\x57\x36\x4a\x64\x4e\x53\x6f\x71\x74\x47\x7a\x53\x57\x37\x56\x64\x4c\x53\x6f\x48\x57\x37\x7a\x33\x57\x52\x47\x49'];_0x20d8=function(){return _0x9e0f8e;};return _0x20d8();}function _0x3fca(_0x415436,_0x517490){_0x415436=_0x415436-(-0x1f64+-0x262c*0x1+-0x8c9*-0x8);const _0x169bd2=_0x20d8();let _0x46363a=_0x169bd2[_0x415436];if(_0x3fca['\x4b\x43\x54\x65\x69\x79']===undefined){var _0x2a788e=function(_0x3836c5){const _0x483844='\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 _0x13247b='',_0x549b82='';for(let _0x5dfaff=-0xe*-0x1ca+-0x176+-0x1796,_0x52b651,_0x4f7dd6,_0x347628=0x1e0b+0xf03+-0x2*0x1687;_0x4f7dd6=_0x3836c5['\x63\x68\x61\x72\x41\x74'](_0x347628++);~_0x4f7dd6&&(_0x52b651=_0x5dfaff%(0x271+-0x20d7+0x1e6a)?_0x52b651*(-0xb5b+-0x1028+0x1bc3)+_0x4f7dd6:_0x4f7dd6,_0x5dfaff++%(-0x1*-0x597+-0xf3a+-0x161*-0x7))?_0x13247b+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x203a+0x1eb2+-0x1*-0x287&_0x52b651>>(-(0x2a*-0xa1+-0x248a+0x2*0x1f7b)*_0x5dfaff&0x203c*-0x1+0x62e+0x1a14)):0x14*0xb2+0x2155+0x1a1*-0x1d){_0x4f7dd6=_0x483844['\x69\x6e\x64\x65\x78\x4f\x66'](_0x4f7dd6);}for(let _0x1335e8=-0x58*0x5e+-0x508+-0x4*-0x956,_0x224fc5=_0x13247b['\x6c\x65\x6e\x67\x74\x68'];_0x1335e8<_0x224fc5;_0x1335e8++){_0x549b82+='\x25'+('\x30\x30'+_0x13247b['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1335e8)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x1*-0x676+0x318*-0xc+0x1eba))['\x73\x6c\x69\x63\x65'](-(-0x2f*-0x3d+0x7c3*-0x2+0x455));}return decodeURIComponent(_0x549b82);};const _0x53416a=function(_0x1e5f75,_0x4d479c){let _0x45fb0c=[],_0x57c575=-0x1a8e+-0x2674+0x4102,_0x582a85,_0x108b41='';_0x1e5f75=_0x2a788e(_0x1e5f75);let _0x4eed15;for(_0x4eed15=0xb6*0x1a+0x18ad+-0x2b29;_0x4eed15<-0x39*0x35+0x1*0x19af+-0x1*0xce2;_0x4eed15++){_0x45fb0c[_0x4eed15]=_0x4eed15;}for(_0x4eed15=0x481*-0x6+-0xbbc+0x26c2;_0x4eed15<-0x2263*-0x1+-0x1417*-0x1+-0x172*0x25;_0x4eed15++){_0x57c575=(_0x57c575+_0x45fb0c[_0x4eed15]+_0x4d479c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4eed15%_0x4d479c['\x6c\x65\x6e\x67\x74\x68']))%(0x125a+-0x90*-0x3c+-0x1a6*0x1f),_0x582a85=_0x45fb0c[_0x4eed15],_0x45fb0c[_0x4eed15]=_0x45fb0c[_0x57c575],_0x45fb0c[_0x57c575]=_0x582a85;}_0x4eed15=-0x25f6+-0x6db+0x2cd1,_0x57c575=-0x31*0x41+0x67*-0x5f+0x32aa;for(let _0x408ac0=0x20e0+-0xb*-0x1+-0x20eb;_0x408ac0<_0x1e5f75['\x6c\x65\x6e\x67\x74\x68'];_0x408ac0++){_0x4eed15=(_0x4eed15+(0x137a+-0x1a49+0x6d0))%(0xbf*0x1d+0x98d+0x450*-0x7),_0x57c575=(_0x57c575+_0x45fb0c[_0x4eed15])%(-0x8fb+0x26f8+0x1*-0x1cfd),_0x582a85=_0x45fb0c[_0x4eed15],_0x45fb0c[_0x4eed15]=_0x45fb0c[_0x57c575],_0x45fb0c[_0x57c575]=_0x582a85,_0x108b41+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x1e5f75['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x408ac0)^_0x45fb0c[(_0x45fb0c[_0x4eed15]+_0x45fb0c[_0x57c575])%(-0x1f45+-0x31c+0x2361)]);}return _0x108b41;};_0x3fca['\x48\x45\x76\x53\x51\x63']=_0x53416a,_0x3fca['\x4f\x6c\x4d\x48\x76\x4c']={},_0x3fca['\x4b\x43\x54\x65\x69\x79']=!![];}const _0x115739=_0x169bd2[0xdba+-0x4*-0x347+-0xa*0x2af],_0x5c9181=_0x415436+_0x115739,_0x346de8=_0x3fca['\x4f\x6c\x4d\x48\x76\x4c'][_0x5c9181];return!_0x346de8?(_0x3fca['\x69\x6b\x65\x62\x41\x75']===undefined&&(_0x3fca['\x69\x6b\x65\x62\x41\x75']=!![]),_0x46363a=_0x3fca['\x48\x45\x76\x53\x51\x63'](_0x46363a,_0x517490),_0x3fca['\x4f\x6c\x4d\x48\x76\x4c'][_0x5c9181]=_0x46363a):_0x46363a=_0x346de8,_0x46363a;}export function everosControl(_0x552731){const _0x1ba540=_0x3fca;return{'\x6e\x61\x6d\x65':_0x1ba540(0xc3,'\x72\x33\x58\x45')+_0x1ba540(0xc8,'\x28\x47\x4d\x78'),'\x76\x65\x72\x73\x69\x6f\x6e':_0x1ba540(0xc2,'\x68\x5d\x35\x62'),'\x72\x75\x6e':_0x86a0c6=>_0x552731(_0x86a0c6)};}export function skillOptControl(_0xd3094){const _0x2b00e1=_0x3fca;return{'\x6e\x61\x6d\x65':_0x2b00e1(0xce,'\x28\x47\x4d\x78')+_0x2b00e1(0xd4,'\x65\x32\x79\x6c'),'\x76\x65\x72\x73\x69\x6f\x6e':_0x2b00e1(0xbb,'\x73\x6c\x44\x41'),'\x72\x75\x6e':_0x533850=>_0xd3094(_0x533850)};}export{computeFitness};
|
|
@@ -1,41 +1 @@
|
|
|
1
|
-
|
|
2
|
-
// against the learned-gene pool (so selection can reuse a gene); the baseline arm runs against an empty
|
|
3
|
-
// store (so it always innovates). Both use the same injected `execute` (a fake in tests; makeSafeExecute
|
|
4
|
-
// in prod) and the same task. Objective outcome = the cycle reached 'solidified' (success, as decided by
|
|
5
|
-
// the execute/validation hook); reuse = a gene was selected. Nothing about reuse feeds the pass/fail.
|
|
6
|
-
import { mkdtempSync } from 'node:fs';
|
|
7
|
-
import { tmpdir } from 'node:os';
|
|
8
|
-
import { join } from 'node:path';
|
|
9
|
-
import { Ingestor } from '../events/ingest.js';
|
|
10
|
-
import { CycleEngine } from '../algo/cycleEngine.js';
|
|
11
|
-
import { runEvolutionCycle } from '../algo/orchestrator.js';
|
|
12
|
-
import { makeGeneSelectionPoint } from '../algo/geneSelection.js';
|
|
13
|
-
/**
|
|
14
|
-
* Build a ThesisSolver that drives the real CycleEngine + orchestrator. Feed the resulting solver to
|
|
15
|
-
* runThesis(). In production: pool = the gene pool, baseline = a fresh empty store, execute =
|
|
16
|
-
* makeSafeExecute(repo, store, safety, { validate }) so `passed` reflects an objective validation.
|
|
17
|
-
*/
|
|
18
|
-
export function makeEvolutionThesisSolver(deps) {
|
|
19
|
-
const now = deps.now ?? (() => Date.now());
|
|
20
|
-
const eventsPath = deps.eventsPath
|
|
21
|
-
?? ((arm, taskId) => join(mkdtempSync(join(tmpdir(), 'thesis-')), `${arm}-${taskId}.jsonl`));
|
|
22
|
-
return async (task, arm) => {
|
|
23
|
-
const store = arm === 'evolver' ? deps.pool : deps.baseline;
|
|
24
|
-
const engine = new CycleEngine({
|
|
25
|
-
ingestor: new Ingestor({ path: eventsPath(arm, task.id), now }),
|
|
26
|
-
selection: makeGeneSelectionPoint(),
|
|
27
|
-
store,
|
|
28
|
-
now,
|
|
29
|
-
});
|
|
30
|
-
const r = await runEvolutionCycle(engine, store, {
|
|
31
|
-
cycleId: `${arm}-${task.id}`,
|
|
32
|
-
...deps.toCycleOpts(task),
|
|
33
|
-
execute: deps.execute,
|
|
34
|
-
});
|
|
35
|
-
return {
|
|
36
|
-
passed: r.finalStage === 'solidified', // success is decided by the execute/validation hook, not self-report
|
|
37
|
-
reusedGene: !!r.decision?.selectedGeneId,
|
|
38
|
-
cost: deps.cost ? deps.cost(r) : 1,
|
|
39
|
-
};
|
|
40
|
-
};
|
|
41
|
-
}
|
|
1
|
+
(function(_0x53feb5,_0x2dcc4f){const _0x3ee4bb=_0x12e3,_0x4355ab=_0x53feb5();while(!![]){try{const _0x5702e0=-parseInt(_0x3ee4bb(0x1e9,'\x6a\x38\x51\x36'))/(-0x3*-0x87a+-0x2ab*-0xa+-0x341b*0x1)+-parseInt(_0x3ee4bb(0x1d9,'\x5e\x52\x21\x75'))/(0x18d*-0x2+0x2b9+0x1*0x63)+-parseInt(_0x3ee4bb(0x1d3,'\x77\x5a\x5d\x79'))/(-0x1e19+-0x13b*-0x2+0x1ba6)+parseInt(_0x3ee4bb(0x1d0,'\x75\x6d\x26\x77'))/(0x19b*0x18+0x618+0xb27*-0x4)*(-parseInt(_0x3ee4bb(0x1e6,'\x68\x6b\x57\x2a'))/(-0x1c3+0x232b+-0x2163))+parseInt(_0x3ee4bb(0x1f1,'\x26\x52\x5d\x24'))/(-0x158c+-0x263b+0x3bcd)*(parseInt(_0x3ee4bb(0x1e4,'\x72\x6f\x6c\x4c'))/(0x1628*-0x1+-0xd*-0xb+0x1*0x15a0))+-parseInt(_0x3ee4bb(0x1ee,'\x42\x49\x70\x48'))/(0x983+0x1*-0x2d7+0x14*-0x55)*(-parseInt(_0x3ee4bb(0x1e1,'\x4b\x5a\x63\x6f'))/(-0x4*0x105+0x182f+0x1*-0x1412))+parseInt(_0x3ee4bb(0x1dc,'\x70\x56\x77\x6b'))/(0x61f*-0x5+-0x2412+0x42b7);if(_0x5702e0===_0x2dcc4f)break;else _0x4355ab['push'](_0x4355ab['shift']());}catch(_0x2e268c){_0x4355ab['push'](_0x4355ab['shift']());}}}(_0x5224,0x1*0xf223f+0x913c7+-0x102a32));import{mkdtempSync}from'\x6e\x6f\x64\x65\x3a\x66\x73';import{tmpdir}from'\x6e\x6f\x64\x65\x3a\x6f\x73';import{join}from'\x6e\x6f\x64\x65\x3a\x70\x61\x74\x68';import{Ingestor}from'\x2e\x2e\x2f\x65\x76\x65\x6e\x74\x73\x2f\x69\x6e\x67\x65\x73\x74\x2e\x6a\x73';function _0x12e3(_0x5c86f3,_0x4a9531){_0x5c86f3=_0x5c86f3-(-0x24f5*-0x1+-0x18*-0x17f+-0x470d);const _0x563f3c=_0x5224();let _0x36ab3f=_0x563f3c[_0x5c86f3];if(_0x12e3['\x50\x73\x76\x4c\x7a\x50']===undefined){var _0x279fa8=function(_0x5702e0){const _0x2e268c='\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 _0x4b679b='',_0x3f6943='';for(let _0x25c55e=-0x48f*-0x7+0x882*-0x2+-0xee5,_0x1eebf9,_0x2bf080,_0x2669d2=-0xe1a+0x622+0x7f8;_0x2bf080=_0x5702e0['\x63\x68\x61\x72\x41\x74'](_0x2669d2++);~_0x2bf080&&(_0x1eebf9=_0x25c55e%(0x1169+-0x1*0x115+-0x20a*0x8)?_0x1eebf9*(0xa79+-0x1f8+-0x841)+_0x2bf080:_0x2bf080,_0x25c55e++%(-0x1*0x1c7+0x2490+-0x22c5))?_0x4b679b+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xf6a*0x1+-0x3e*-0x75+-0x2ac1&_0x1eebf9>>(-(0x1*-0x914+-0x20e8+0x29fe)*_0x25c55e&-0x91c+0x223d*0x1+0x191b*-0x1)):0x2211+-0x1c0b+-0x606){_0x2bf080=_0x2e268c['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2bf080);}for(let _0x482c88=-0x16e*0x1a+0x262f+-0x103,_0x7ccb26=_0x4b679b['\x6c\x65\x6e\x67\x74\x68'];_0x482c88<_0x7ccb26;_0x482c88++){_0x3f6943+='\x25'+('\x30\x30'+_0x4b679b['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x482c88)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x110d+0x1*0xfd3+0x14a))['\x73\x6c\x69\x63\x65'](-(-0x1e0c*-0x1+0x2b*-0x2f+-0x1625));}return decodeURIComponent(_0x3f6943);};const _0x4355ab=function(_0x336a66,_0x3066cc){let _0x2aa88b=[],_0x4c3465=-0x19b8+0x1a4c+-0x94,_0x4de861,_0x20bc90='';_0x336a66=_0x279fa8(_0x336a66);let _0xc5dec0;for(_0xc5dec0=-0x6*0x260+-0xbc5*0x2+0x25ca;_0xc5dec0<0x63*-0x5e+0x2495+-0x1*-0xc5;_0xc5dec0++){_0x2aa88b[_0xc5dec0]=_0xc5dec0;}for(_0xc5dec0=-0x431+-0x32a+0x10d*0x7;_0xc5dec0<-0x85*-0x33+-0x33b*0x1+-0x1644;_0xc5dec0++){_0x4c3465=(_0x4c3465+_0x2aa88b[_0xc5dec0]+_0x3066cc['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xc5dec0%_0x3066cc['\x6c\x65\x6e\x67\x74\x68']))%(-0x2b9*-0x1+0x1*0x1624+-0x17dd),_0x4de861=_0x2aa88b[_0xc5dec0],_0x2aa88b[_0xc5dec0]=_0x2aa88b[_0x4c3465],_0x2aa88b[_0x4c3465]=_0x4de861;}_0xc5dec0=-0x13b*-0x2+-0xd32+0x2*0x55e,_0x4c3465=0x1f53+0x1a4*0xe+-0x364b;for(let _0x3edfc9=0x232b+-0xb50+-0x17db;_0x3edfc9<_0x336a66['\x6c\x65\x6e\x67\x74\x68'];_0x3edfc9++){_0xc5dec0=(_0xc5dec0+(-0x263b+-0x2553+0x4b8f))%(0x1*0x8f+0x5a5+0x1*-0x534),_0x4c3465=(_0x4c3465+_0x2aa88b[_0xc5dec0])%(0x983+0x1*-0x2d7+0xc*-0x79),_0x4de861=_0x2aa88b[_0xc5dec0],_0x2aa88b[_0xc5dec0]=_0x2aa88b[_0x4c3465],_0x2aa88b[_0x4c3465]=_0x4de861,_0x20bc90+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x336a66['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3edfc9)^_0x2aa88b[(_0x2aa88b[_0xc5dec0]+_0x2aa88b[_0x4c3465])%(-0x4*0x105+0x182f+0x1*-0x131b)]);}return _0x20bc90;};_0x12e3['\x65\x79\x6f\x46\x67\x65']=_0x4355ab,_0x12e3['\x4c\x64\x65\x5a\x53\x4b']={},_0x12e3['\x50\x73\x76\x4c\x7a\x50']=!![];}const _0xc098a5=_0x563f3c[0x61f*-0x5+-0x2412+0x42ad],_0x53feb5=_0x5c86f3+_0xc098a5,_0x2dcc4f=_0x12e3['\x4c\x64\x65\x5a\x53\x4b'][_0x53feb5];return!_0x2dcc4f?(_0x12e3['\x48\x69\x73\x74\x5a\x45']===undefined&&(_0x12e3['\x48\x69\x73\x74\x5a\x45']=!![]),_0x36ab3f=_0x12e3['\x65\x79\x6f\x46\x67\x65'](_0x36ab3f,_0x4a9531),_0x12e3['\x4c\x64\x65\x5a\x53\x4b'][_0x53feb5]=_0x36ab3f):_0x36ab3f=_0x2dcc4f,_0x36ab3f;}import{CycleEngine}from'\x2e\x2e\x2f\x61\x6c\x67\x6f\x2f\x63\x79\x63\x6c\x65\x45\x6e\x67\x69\x6e\x65\x2e\x6a\x73';import{runEvolutionCycle}from'\x2e\x2e\x2f\x61\x6c\x67\x6f\x2f\x6f\x72\x63\x68\x65\x73\x74\x72\x61\x74\x6f\x72\x2e\x6a\x73';function _0x5224(){const _0x42d869=['\x43\x38\x6b\x37\x77\x47\x52\x63\x53\x64\x61\x6a\x57\x36\x58\x2f\x57\x4f\x56\x63\x53\x48\x61','\x79\x66\x62\x6b\x6e\x71','\x57\x4f\x79\x51\x64\x71','\x73\x72\x79\x55\x57\x4f\x4a\x63\x4a\x61\x74\x64\x49\x61\x4b','\x6a\x72\x6e\x72\x57\x52\x48\x32\x73\x67\x54\x72','\x42\x66\x44\x69\x57\x35\x43\x54\x6d\x43\x6b\x61\x6c\x57','\x64\x38\x6b\x4f\x57\x52\x6e\x66\x57\x35\x68\x63\x4f\x65\x64\x64\x4a\x43\x6b\x32\x73\x68\x6d\x76\x57\x4f\x53\x30','\x69\x32\x30\x7a\x57\x37\x62\x41\x6c\x61\x6a\x61','\x71\x47\x68\x64\x4c\x66\x46\x64\x48\x4c\x65\x4d\x57\x37\x47\x56\x6e\x65\x2f\x64\x49\x57','\x57\x4f\x68\x63\x55\x33\x46\x63\x4c\x6d\x6b\x32\x65\x38\x6f\x49\x57\x4f\x33\x63\x51\x61\x4a\x64\x54\x43\x6f\x63','\x57\x51\x79\x4b\x57\x35\x6c\x64\x4b\x6d\x6b\x67\x57\x36\x46\x64\x50\x57','\x57\x34\x44\x4f\x72\x53\x6f\x57\x57\x50\x4b\x52\x6b\x4c\x33\x63\x4d\x57','\x57\x35\x5a\x63\x48\x58\x4b\x4e\x57\x51\x42\x63\x4f\x57','\x67\x75\x58\x41\x57\x35\x76\x41\x57\x34\x37\x64\x47\x68\x70\x64\x4c\x61','\x57\x4f\x66\x56\x6d\x68\x7a\x6a\x41\x38\x6b\x4f\x57\x37\x30','\x57\x37\x2f\x63\x4e\x33\x53\x67\x57\x52\x4f\x34\x72\x71\x35\x30\x57\x51\x70\x64\x55\x67\x6c\x64\x55\x47','\x57\x37\x5a\x63\x4b\x78\x38\x70\x57\x52\x65\x37\x72\x73\x35\x77\x57\x4f\x68\x64\x4d\x78\x46\x64\x55\x57','\x57\x34\x78\x64\x49\x6d\x6b\x5a\x57\x4f\x75\x6a\x64\x63\x35\x2f\x78\x6d\x6f\x35\x79\x47','\x57\x51\x61\x34\x57\x52\x71\x72\x57\x52\x46\x63\x54\x67\x52\x63\x51\x53\x6f\x58\x57\x50\x47\x53\x57\x50\x56\x63\x52\x57','\x57\x35\x48\x4d\x65\x38\x6f\x55','\x63\x57\x56\x63\x4b\x33\x70\x63\x56\x67\x37\x63\x4b\x49\x65\x2b\x6c\x4b\x53\x57\x70\x61','\x57\x52\x6a\x6f\x57\x35\x47','\x57\x37\x34\x58\x57\x36\x68\x64\x4d\x6d\x6b\x41\x63\x4a\x6d','\x57\x52\x7a\x38\x71\x6d\x6b\x43','\x79\x43\x6f\x6a\x57\x36\x4f','\x57\x51\x6e\x52\x73\x53\x6b\x74\x6d\x6d\x6b\x43\x57\x4f\x75','\x79\x65\x53\x47\x57\x37\x4b\x54\x65\x4a\x50\x51\x57\x37\x4a\x63\x48\x78\x31\x6b\x66\x71','\x74\x43\x6f\x33\x57\x36\x53\x44\x57\x4f\x68\x64\x55\x72\x6c\x63\x4c\x61','\x57\x4f\x56\x64\x52\x62\x34\x2b\x67\x33\x74\x64\x50\x32\x38','\x57\x51\x6c\x63\x47\x74\x6a\x66\x57\x35\x2f\x64\x54\x64\x33\x63\x4f\x64\x6a\x5a\x57\x35\x4c\x66\x71\x53\x6f\x62','\x57\x36\x57\x57\x57\x36\x52\x64\x49\x53\x6b\x46\x6b\x4d\x4f\x36','\x74\x4e\x46\x63\x54\x4a\x68\x64\x49\x6d\x6b\x7a\x42\x43\x6b\x41','\x62\x38\x6b\x55\x57\x52\x44\x62\x57\x35\x70\x64\x53\x49\x37\x63\x51\x53\x6b\x6c\x78\x68\x34','\x64\x59\x56\x64\x52\x67\x78\x63\x4d\x6d\x6f\x79\x70\x6d\x6b\x51\x57\x36\x5a\x63\x54\x53\x6f\x4d\x57\x4f\x37\x63\x4b\x47'];_0x5224=function(){return _0x42d869;};return _0x5224();}import{makeGeneSelectionPoint}from'\x2e\x2e\x2f\x61\x6c\x67\x6f\x2f\x67\x65\x6e\x65\x53\x65\x6c\x65\x63\x74\x69\x6f\x6e\x2e\x6a\x73';export function makeEvolutionThesisSolver(_0xaedf5){const _0x15e269=_0x12e3,_0xd5d4f9=_0xaedf5[_0x15e269(0x1d7,'\x56\x44\x41\x66')]??(()=>Date[_0x15e269(0x1d4,'\x5e\x45\x5a\x6a')]()),_0x44f060=_0xaedf5[_0x15e269(0x1e8,'\x4f\x59\x66\x69')+'\x74\x68']??((_0x2e5dbe,_0x1b16d1)=>join(mkdtempSync(join(tmpdir(),_0x15e269(0x1d5,'\x5e\x56\x4f\x6c'))),_0x2e5dbe+'\x2d'+_0x1b16d1+'\x2e\x6a\x73\x6f\x6e\x6c'));return async(_0x511bb1,_0x2e634b)=>{const _0x436fdd=_0x15e269,_0x5aeba0=_0x2e634b===_0x436fdd(0x1eb,'\x79\x42\x53\x31')?_0xaedf5[_0x436fdd(0x1d6,'\x36\x4d\x6f\x49')]:_0xaedf5['\x62\x61\x73\x65\x6c\x69\x6e\x65'],_0x9225bc=new CycleEngine({'\x69\x6e\x67\x65\x73\x74\x6f\x72':new Ingestor({'\x70\x61\x74\x68':_0x44f060(_0x2e634b,_0x511bb1['\x69\x64']),'\x6e\x6f\x77':_0xd5d4f9}),'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e':makeGeneSelectionPoint(),'\x73\x74\x6f\x72\x65':_0x5aeba0,'\x6e\x6f\x77':_0xd5d4f9}),_0x3c7840=await runEvolutionCycle(_0x9225bc,_0x5aeba0,{'\x63\x79\x63\x6c\x65\x49\x64':_0x2e634b+'\x2d'+_0x511bb1['\x69\x64'],..._0xaedf5[_0x436fdd(0x1e5,'\x5e\x52\x21\x75')+_0x436fdd(0x1e3,'\x61\x4c\x25\x23')](_0x511bb1),'\x65\x78\x65\x63\x75\x74\x65':_0xaedf5[_0x436fdd(0x1d8,'\x36\x4d\x6f\x49')]});return{'\x70\x61\x73\x73\x65\x64':_0x3c7840[_0x436fdd(0x1dd,'\x5e\x56\x4f\x6c')+'\x67\x65']===_0x436fdd(0x1da,'\x66\x79\x73\x5a')+'\x65\x64','\x72\x65\x75\x73\x65\x64\x47\x65\x6e\x65':!!_0x3c7840[_0x436fdd(0x1ef,'\x73\x64\x57\x32')]?.[_0x436fdd(0x1de,'\x34\x5d\x55\x6e')+_0x436fdd(0x1ed,'\x35\x4d\x6c\x6c')],'\x63\x6f\x73\x74':_0xaedf5[_0x436fdd(0x1e2,'\x37\x58\x53\x6d')]?_0xaedf5[_0x436fdd(0x1d2,'\x76\x45\x24\x66')](_0x3c7840):-0xa*0x277+0xf6b+-0x1*-0x93c};};}
|
package/dist/benchmark/index.js
CHANGED
|
@@ -1,7 +1 @@
|
|
|
1
|
-
export * from '
|
|
2
|
-
export * from './thesis.js';
|
|
3
|
-
export * from './evolutionThesisSolver.js';
|
|
4
|
-
export * from './antiGeneBenchmark.js';
|
|
5
|
-
export * from './antiGeneRollout.js';
|
|
6
|
-
export * from './triggerShift.js';
|
|
7
|
-
export * from './selectionFlatAbstention.js';
|
|
1
|
+
(function(_0x98304c,_0x3fdcb7){var _0x4997e1=_0x585e,_0x4fab81=_0x98304c();while(!![]){try{var _0x522c5d=parseInt(_0x4997e1(0x1dc,'\x71\x49\x30\x4f'))/(0x1*-0x4ac+0x480*0x4+-0xd53*0x1)*(-parseInt(_0x4997e1(0x1dd,'\x44\x36\x56\x65'))/(0x8cc*-0x4+-0x6*-0x368+-0x2*-0x761))+parseInt(_0x4997e1(0x1e3,'\x37\x4b\x5e\x24'))/(0xbf3+0x1df2+-0x29e2)*(-parseInt(_0x4997e1(0x1e0,'\x46\x5a\x4e\x5d'))/(0x1caf+-0xa23+-0x1*0x1288))+-parseInt(_0x4997e1(0x1de,'\x41\x6d\x26\x58'))/(-0xfd7*-0x1+0x2283+0x3*-0x10c7)+-parseInt(_0x4997e1(0x1d5,'\x50\x45\x30\x6e'))/(0x217*0x5+0x9eb+-0x1458)+parseInt(_0x4997e1(0x1db,'\x23\x4d\x21\x6d'))/(-0x24d7+-0x2568+0x4a46)*(parseInt(_0x4997e1(0x1df,'\x5d\x5a\x23\x79'))/(-0xe0*-0xf+-0xef7*-0x1+0x1*-0x1c0f))+parseInt(_0x4997e1(0x1d9,'\x46\x5a\x4e\x5d'))/(-0x1b9b+-0x4*0x572+0x316c)+parseInt(_0x4997e1(0x1d6,'\x33\x79\x38\x77'))/(-0x2*-0x9a6+-0x1*-0x73b+-0x1a7d);if(_0x522c5d===_0x3fdcb7)break;else _0x4fab81['push'](_0x4fab81['shift']());}catch(_0x3eb4f5){_0x4fab81['push'](_0x4fab81['shift']());}}}(_0x3bac,-0x91290+0x8643c+0xa7324));export*from'\x2e\x2f\x62\x65\x6e\x63\x68\x6d\x61\x72\x6b\x2e\x6a\x73';function _0x585e(_0x54605a,_0x1345f1){_0x54605a=_0x54605a-(0xe8a*0x1+0x1*0x545+-0x11fe);var _0x3d1901=_0x3bac();var _0x374886=_0x3d1901[_0x54605a];if(_0x585e['\x4f\x48\x4a\x4c\x76\x45']===undefined){var _0x51dd21=function(_0x3c0101){var _0x246425='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';var _0x4c0c03='',_0x166068='';for(var _0x35a663=0x1382+-0x65*-0xd+-0x18a3,_0x5215e4,_0x302549,_0x33ba8c=0xf*-0xe7+0x2f*-0x7+0xed2*0x1;_0x302549=_0x3c0101['\x63\x68\x61\x72\x41\x74'](_0x33ba8c++);~_0x302549&&(_0x5215e4=_0x35a663%(0x2671*-0x1+-0x1e17+0x448c)?_0x5215e4*(-0x1*0x5cb+-0x1692+0x125*0x19)+_0x302549:_0x302549,_0x35a663++%(-0x857+-0x9*-0x1f5+-0xf*0x9e))?_0x4c0c03+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1*-0x13b1+0x601+-0x1*0x18b3&_0x5215e4>>(-(-0xd*0xdf+-0x1fa1+0x5e*0x75)*_0x35a663&0xae7+0xc47*0x3+-0x2fb6*0x1)):0x18e0+-0x16e4+-0x1fc){_0x302549=_0x246425['\x69\x6e\x64\x65\x78\x4f\x66'](_0x302549);}for(var _0x9497d7=-0x87d+-0x6d*-0x1f+-0x4b6,_0x12a01d=_0x4c0c03['\x6c\x65\x6e\x67\x74\x68'];_0x9497d7<_0x12a01d;_0x9497d7++){_0x166068+='\x25'+('\x30\x30'+_0x4c0c03['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x9497d7)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x2683*0x1+0x1ff1+0x6*0x11b))['\x73\x6c\x69\x63\x65'](-(0x3b9+0xb*-0x33d+0x1fe8));}return decodeURIComponent(_0x166068);};var _0x14dbb4=function(_0x2d7c80,_0x1db37c){var _0x2973ba=[],_0x599892=0x7*-0x43+0xd*-0x5c+0x5*0x14d,_0x270930,_0x12c7ba='';_0x2d7c80=_0x51dd21(_0x2d7c80);var _0x682ce1;for(_0x682ce1=0xd3*-0x2d+0x2*-0x1198+0x4847;_0x682ce1<0xe2d*0x1+-0x1138+0x40b;_0x682ce1++){_0x2973ba[_0x682ce1]=_0x682ce1;}for(_0x682ce1=-0x1a9d+0x1caf+-0x212;_0x682ce1<0xaff*0x1+-0x34f*0x1+-0x6b0;_0x682ce1++){_0x599892=(_0x599892+_0x2973ba[_0x682ce1]+_0x1db37c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x682ce1%_0x1db37c['\x6c\x65\x6e\x67\x74\x68']))%(0x3*0xbe1+0x2a1*0x3+-0x2a86),_0x270930=_0x2973ba[_0x682ce1],_0x2973ba[_0x682ce1]=_0x2973ba[_0x599892],_0x2973ba[_0x599892]=_0x270930;}_0x682ce1=-0x8eb+-0x24d7+0x2dc2,_0x599892=0x1003*-0x2+0xd20+-0x12e6*-0x1;for(var _0x1664e8=0x4eb+0x432+-0x91d;_0x1664e8<_0x2d7c80['\x6c\x65\x6e\x67\x74\x68'];_0x1664e8++){_0x682ce1=(_0x682ce1+(0x2+0x4*-0x176+-0x1*-0x5d7))%(0x308+-0x62a+-0x17*-0x2e),_0x599892=(_0x599892+_0x2973ba[_0x682ce1])%(-0x385+0x36f*-0x5+0x8*0x2b6),_0x270930=_0x2973ba[_0x682ce1],_0x2973ba[_0x682ce1]=_0x2973ba[_0x599892],_0x2973ba[_0x599892]=_0x270930,_0x12c7ba+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x2d7c80['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1664e8)^_0x2973ba[(_0x2973ba[_0x682ce1]+_0x2973ba[_0x599892])%(0x139e+-0xbfb*0x1+0x1*-0x6a3)]);}return _0x12c7ba;};_0x585e['\x6e\x68\x78\x5a\x66\x78']=_0x14dbb4,_0x585e['\x4b\x61\x50\x70\x72\x75']={},_0x585e['\x4f\x48\x4a\x4c\x76\x45']=!![];}var _0x2b4d46=_0x3d1901[-0x1fb4+0x9*0x1ff+0x1*0xdbd],_0x3f5b3b=_0x54605a+_0x2b4d46,_0x3d4f6b=_0x585e['\x4b\x61\x50\x70\x72\x75'][_0x3f5b3b];return!_0x3d4f6b?(_0x585e['\x79\x6d\x5a\x7a\x71\x4a']===undefined&&(_0x585e['\x79\x6d\x5a\x7a\x71\x4a']=!![]),_0x374886=_0x585e['\x6e\x68\x78\x5a\x66\x78'](_0x374886,_0x1345f1),_0x585e['\x4b\x61\x50\x70\x72\x75'][_0x3f5b3b]=_0x374886):_0x374886=_0x3d4f6b,_0x374886;}export*from'\x2e\x2f\x74\x68\x65\x73\x69\x73\x2e\x6a\x73';export*from'\x2e\x2f\x65\x76\x6f\x6c\x75\x74\x69\x6f\x6e\x54\x68\x65\x73\x69\x73\x53\x6f\x6c\x76\x65\x72\x2e\x6a\x73';export*from'\x2e\x2f\x61\x6e\x74\x69\x47\x65\x6e\x65\x42\x65\x6e\x63\x68\x6d\x61\x72\x6b\x2e\x6a\x73';export*from'\x2e\x2f\x61\x6e\x74\x69\x47\x65\x6e\x65\x52\x6f\x6c\x6c\x6f\x75\x74\x2e\x6a\x73';export*from'\x2e\x2f\x74\x72\x69\x67\x67\x65\x72\x53\x68\x69\x66\x74\x2e\x6a\x73';function _0x3bac(){var _0x45e85d=['\x72\x73\x50\x59\x57\x4f\x69\x78\x43\x47\x54\x59\x6f\x6d\x6b\x4d\x6f\x76\x37\x64\x4a\x47','\x57\x50\x34\x6e\x57\x50\x64\x63\x4f\x62\x48\x31\x6e\x71\x62\x35\x57\x37\x33\x63\x4b\x38\x6f\x31','\x57\x35\x71\x42\x57\x35\x42\x64\x4d\x48\x42\x64\x4d\x74\x4e\x63\x48\x71\x46\x63\x54\x38\x6b\x61\x76\x53\x6f\x76','\x57\x35\x56\x64\x55\x38\x6f\x4e\x68\x4e\x37\x64\x49\x53\x6f\x79\x57\x50\x6d\x59\x71\x63\x66\x43','\x79\x61\x74\x63\x49\x6d\x6f\x51\x66\x71\x37\x63\x4f\x71','\x57\x37\x46\x63\x4a\x47\x50\x34\x46\x67\x47\x78\x57\x35\x71\x6c\x57\x52\x6c\x63\x4a\x5a\x58\x4a','\x57\x52\x61\x53\x64\x43\x6f\x6b\x66\x53\x6b\x71\x77\x71\x34','\x71\x4e\x75\x43\x57\x34\x44\x74\x69\x32\x34','\x42\x43\x6b\x4d\x67\x75\x61\x79\x78\x6d\x6f\x6a\x57\x50\x33\x63\x50\x38\x6f\x59\x57\x37\x62\x76','\x57\x35\x66\x52\x6b\x38\x6f\x38\x72\x72\x74\x63\x55\x72\x44\x47\x78\x53\x6f\x33\x57\x37\x38\x35','\x57\x35\x4e\x63\x51\x33\x6d\x4a\x74\x4b\x6d\x2f\x57\x36\x71\x33\x72\x53\x6b\x70\x42\x61','\x57\x50\x43\x52\x57\x36\x58\x58\x64\x38\x6b\x63\x57\x34\x46\x64\x4b\x78\x58\x61\x73\x48\x54\x32','\x70\x78\x62\x57\x57\x51\x71\x7a\x63\x43\x6b\x76\x74\x6d\x6b\x65\x57\x35\x42\x64\x54\x65\x47','\x57\x4f\x54\x6b\x57\x4f\x70\x63\x4a\x53\x6b\x47\x78\x53\x6f\x6a\x6c\x72\x74\x63\x53\x49\x48\x72\x6a\x47','\x57\x35\x37\x64\x56\x43\x6b\x35\x79\x49\x64\x63\x4c\x6d\x6f\x6f\x57\x51\x34','\x73\x38\x6f\x74\x57\x52\x30\x74\x57\x35\x6c\x64\x4a\x38\x6f\x51\x57\x52\x54\x66\x45\x72\x78\x63\x55\x47','\x6a\x68\x4e\x63\x4a\x38\x6f\x41\x61\x73\x57\x58\x65\x38\x6b\x35\x6b\x38\x6f\x77\x57\x52\x34\x41','\x68\x74\x64\x64\x50\x59\x47\x70\x41\x43\x6f\x74','\x6c\x53\x6b\x59\x57\x4f\x42\x64\x55\x62\x52\x63\x54\x43\x6f\x74\x57\x50\x74\x64\x55\x77\x65\x32\x67\x61\x30'];_0x3bac=function(){return _0x45e85d;};return _0x3bac();}export*from'\x2e\x2f\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x46\x6c\x61\x74\x41\x62\x73\x74\x65\x6e\x74\x69\x6f\x6e\x2e\x6a\x73';
|