@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,273 +1 @@
|
|
|
1
|
-
import { aggregateLearningHistory } from '../assetstore/learningHistory.js';
|
|
2
|
-
import { reuseSentiment } from '../ops/reuseOutcomes.js';
|
|
3
|
-
import { expandSignals, geneTags, tagOverlapScore, } from '../signals/expand.js';
|
|
4
|
-
import { withoutTaskDomainSignals } from '../signals/taskDomain.js';
|
|
5
|
-
import { bannedGenesFromFailures } from './bans.js';
|
|
6
|
-
import { geneGenerationSource } from './geneIntake.js';
|
|
7
|
-
const SEMANTIC_CORPUS_LIMIT = 1_000;
|
|
8
|
-
function asStrings(v) {
|
|
9
|
-
return Array.isArray(v) ? v.filter((x) => typeof x === 'string') : [];
|
|
10
|
-
}
|
|
11
|
-
function stringField(v) {
|
|
12
|
-
return typeof v === 'string' && v.trim().length > 0 ? v.trim() : undefined;
|
|
13
|
-
}
|
|
14
|
-
function severityOf(v) {
|
|
15
|
-
return v === 'low' || v === 'medium' || v === 'high' ? v : undefined;
|
|
16
|
-
}
|
|
17
|
-
function candidateIds(geneId, assetId) {
|
|
18
|
-
return [...new Set([geneId, assetId].filter((id) => typeof id === 'string' && id.length > 0))];
|
|
19
|
-
}
|
|
20
|
-
function isBannedCandidate(banned, geneId, assetId) {
|
|
21
|
-
return candidateIds(geneId, assetId).some((id) => banned.has(id));
|
|
22
|
-
}
|
|
23
|
-
function passesInjectedCandidateGates(candidate, opts, provenance, review) {
|
|
24
|
-
const assetId = candidate.assetId;
|
|
25
|
-
if (opts.provenance && !opts.includeUntrusted) {
|
|
26
|
-
if (!assetId || provenance?.get(assetId)?.trusted !== true)
|
|
27
|
-
return false;
|
|
28
|
-
}
|
|
29
|
-
if (opts.review) {
|
|
30
|
-
const reviewRecord = assetId ? review?.get(assetId) : undefined;
|
|
31
|
-
if (!assetId || (reviewRecord !== undefined && reviewRecord.state !== 'approved'))
|
|
32
|
-
return false;
|
|
33
|
-
}
|
|
34
|
-
return true;
|
|
35
|
-
}
|
|
36
|
-
/** A zero learning view for a gene with no capsules yet (used for lightweight distilled-fallback candidates). */
|
|
37
|
-
function emptyLearningView(geneId) {
|
|
38
|
-
return { geneId, total: 0, success: 0, failed: 0, successRate: 0, avgScore: 0, recentCapsuleIds: [] };
|
|
39
|
-
}
|
|
40
|
-
/** Combined reuse sentiment across ALL of a candidate's ids (#268 Bugbot). Reuse events key by assetId — which
|
|
41
|
-
* may be the content asset_id OR the logical id — while candidates key by geneId, AND one gene's events can SPLIT
|
|
42
|
-
* across both forms. So we SUM the counts of every distinct id the candidate has, then compute sentiment once:
|
|
43
|
-
* averaging two per-id sentiments (or taking the first) would let negatives stored under one id be ignored. */
|
|
44
|
-
function combinedReuseSentiment(map, ...ids) {
|
|
45
|
-
if (!map)
|
|
46
|
-
return undefined;
|
|
47
|
-
let success = 0, negative = 0, found = false;
|
|
48
|
-
const seen = new Set();
|
|
49
|
-
for (const id of ids) {
|
|
50
|
-
if (id === undefined || seen.has(id))
|
|
51
|
-
continue;
|
|
52
|
-
seen.add(id);
|
|
53
|
-
const c = map.get(id);
|
|
54
|
-
if (c) {
|
|
55
|
-
success += c.success;
|
|
56
|
-
negative += c.negative;
|
|
57
|
-
found = true;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
return found ? reuseSentiment({ success, negative }) : undefined;
|
|
61
|
-
}
|
|
62
|
-
/** Genes banned by repeated signal-matched failures (>=2 failed capsules covering the signals). */
|
|
63
|
-
async function computeBans(store, signals, limit) {
|
|
64
|
-
if (signals.length === 0)
|
|
65
|
-
return new Set();
|
|
66
|
-
const caps = await store.search({ kind: 'Capsule', signalsAny: [...signals], limit });
|
|
67
|
-
const failures = caps
|
|
68
|
-
.filter((c) => c['outcome']?.status === 'failed')
|
|
69
|
-
.map((c) => ({
|
|
70
|
-
gene: typeof c['gene'] === 'string' ? String(c['gene']) : undefined,
|
|
71
|
-
trigger: asStrings(c['trigger']),
|
|
72
|
-
}));
|
|
73
|
-
return bannedGenesFromFailures(failures, signals);
|
|
74
|
-
}
|
|
75
|
-
const GENERIC_NAMESPACE_TAGS = new Set(['action', 'area', 'problem', 'risk', 'signal']);
|
|
76
|
-
// Generic namespace tags and inferred action/signal subtypes are too broad to admit a candidate by themselves.
|
|
77
|
-
function hasSelectionAdmissionEvidence(liveSignals, gene) {
|
|
78
|
-
const tags = new Set(geneTags(gene));
|
|
79
|
-
const triggerTags = new Set(expandSignals(gene.signalsMatch ?? []));
|
|
80
|
-
const categoryActionTag = gene.category ? `action:${gene.category.toLowerCase()}` : undefined;
|
|
81
|
-
if (liveSignals.some((signal) => ((triggerTags.has(signal) || signal === categoryActionTag)
|
|
82
|
-
&& !GENERIC_NAMESPACE_TAGS.has(signal)))) {
|
|
83
|
-
return true;
|
|
84
|
-
}
|
|
85
|
-
const liveTags = expandSignals(liveSignals);
|
|
86
|
-
if (liveTags.some((tag) => (tags.has(tag)
|
|
87
|
-
&& (tag.startsWith('problem:')
|
|
88
|
-
|| tag.startsWith('area:')
|
|
89
|
-
|| tag.startsWith('risk:')))))
|
|
90
|
-
return true;
|
|
91
|
-
return liveTags.some((tag) => tag.startsWith('signal:') && triggerTags.has(tag));
|
|
92
|
-
}
|
|
93
|
-
/**
|
|
94
|
-
* Assemble the full selection pool from the store for the given signals: the relevant scored candidates AND the
|
|
95
|
-
* distilled-gene fallback pool, in a single pass over the gene list (one store.list + one ban computation). A gene
|
|
96
|
-
* is a normal candidate if its signals_match literally intersects the signals OR semantically overlaps them (so a
|
|
97
|
-
* '429' signal can still reach a gene tagged for 'repair'); a trusted/approved/non-banned *distilled* gene that
|
|
98
|
-
* does NOT match goes to `distilledFallback` (v1 #97).
|
|
99
|
-
*/
|
|
100
|
-
export async function assembleSelectionPool(store, signals, opts = {}) {
|
|
101
|
-
const limit = opts.limit ?? 500;
|
|
102
|
-
const includeSemanticCorpus = opts.includeSemanticCorpus !== false;
|
|
103
|
-
const scanLimit = includeSemanticCorpus ? Math.max(limit, SEMANTIC_CORPUS_LIMIT) : limit;
|
|
104
|
-
const genes = await store.list('Gene', scanLimit);
|
|
105
|
-
const matchingSignals = withoutTaskDomainSignals(signals);
|
|
106
|
-
const banned = await computeBans(store, matchingSignals, limit);
|
|
107
|
-
const sigSet = new Set(matchingSignals);
|
|
108
|
-
const provenance = opts.provenance?.snapshot();
|
|
109
|
-
const review = opts.review?.snapshot();
|
|
110
|
-
const out = [];
|
|
111
|
-
const distilledFallback = [];
|
|
112
|
-
const semanticCorpus = [];
|
|
113
|
-
const semanticIdentities = new Set();
|
|
114
|
-
const addSemanticCandidate = (candidate) => {
|
|
115
|
-
if (!includeSemanticCorpus || semanticCorpus.length >= SEMANTIC_CORPUS_LIMIT)
|
|
116
|
-
return;
|
|
117
|
-
const identity = candidate.assetId ?? candidate.geneId;
|
|
118
|
-
if (semanticIdentities.has(identity))
|
|
119
|
-
return;
|
|
120
|
-
semanticIdentities.add(identity);
|
|
121
|
-
semanticCorpus.push(candidate);
|
|
122
|
-
};
|
|
123
|
-
const antiWarnings = [];
|
|
124
|
-
for (const [geneIndex, g] of genes.entries()) {
|
|
125
|
-
const provenanceRecord = provenance?.get(String(g.asset_id));
|
|
126
|
-
// Trust-first (#30): untrusted (e.g. hub-ingested) genes are excluded from the candidate pool by default;
|
|
127
|
-
// they enter only with includeUntrusted or after an explicit promotion. Provenance is keyed by asset_id.
|
|
128
|
-
if (opts.provenance && !opts.includeUntrusted && provenanceRecord?.trusted === false)
|
|
129
|
-
continue;
|
|
130
|
-
// Review-first (#89/#91): auto-distilled drafts land quarantined until a human approves; rejected drafts stay
|
|
131
|
-
// out too. No record → eligible (cycle/migrate genes). Symmetric to the provenance trust-first filter above.
|
|
132
|
-
// Probation (#306): includeProbation lets a quarantined draft be TRIED so it can earn evidence; a rejected
|
|
133
|
-
// draft is never tried. Off (default) keeps quarantined drafts out until approval.
|
|
134
|
-
const reviewRecord = review?.get(String(g.asset_id));
|
|
135
|
-
if (opts.review && reviewRecord !== undefined && reviewRecord.state !== 'approved'
|
|
136
|
-
&& (!opts.includeProbation || reviewRecord.state === 'rejected'))
|
|
137
|
-
continue;
|
|
138
|
-
const geneId = typeof g['id'] === 'string' ? String(g['id']) : String(g.asset_id);
|
|
139
|
-
const assetId = String(g.asset_id);
|
|
140
|
-
if (isBannedCandidate(banned, geneId, assetId))
|
|
141
|
-
continue; // repeated signal-matched failures → not a candidate (nor a fallback)
|
|
142
|
-
const signalsMatch = asStrings(g['signals_match']);
|
|
143
|
-
const matchingSignalsForGene = withoutTaskDomainSignals(signalsMatch);
|
|
144
|
-
const category = typeof g['category'] === 'string' ? String(g['category']) : undefined;
|
|
145
|
-
const summary = typeof g['summary'] === 'string' ? String(g['summary']) : undefined;
|
|
146
|
-
const literal = matchingSignalsForGene.some((m) => sigSet.has(m));
|
|
147
|
-
const tagInput = { signalsMatch: matchingSignalsForGene, geneId, category, summary };
|
|
148
|
-
// Experimental probation and explicitly untrusted records may be selectable by opt-in, but never shape global
|
|
149
|
-
// document frequency. Only trusted, approved/legacy-local records enter the pre-admission semantic corpus.
|
|
150
|
-
if (provenanceRecord?.trusted !== false && (reviewRecord === undefined || reviewRecord.state === 'approved')) {
|
|
151
|
-
addSemanticCandidate({
|
|
152
|
-
geneId,
|
|
153
|
-
assetId,
|
|
154
|
-
signalsMatch,
|
|
155
|
-
view: emptyLearningView(geneId),
|
|
156
|
-
...(category ? { category } : {}),
|
|
157
|
-
...(summary ? { summary } : {}),
|
|
158
|
-
});
|
|
159
|
-
}
|
|
160
|
-
if (geneIndex >= limit)
|
|
161
|
-
continue;
|
|
162
|
-
const relevant = literal || hasSelectionAdmissionEvidence(matchingSignals, tagInput);
|
|
163
|
-
if (!relevant) {
|
|
164
|
-
// #97: a trusted, approved, non-banned distilled (or evolved) gene that doesn't match the live signals is not
|
|
165
|
-
// a normal candidate, but it IS eligible as a last-resort fallback (selection uses it only when nothing clears
|
|
166
|
-
// the floor). Eligibility here is gated by trust/review/ban, not by skill provenance. Provenance is read from
|
|
167
|
-
// generation_meta (V1 #302); a legacy gene without it falls back to the `gene_distilled_` id namespace.
|
|
168
|
-
// Lightweight: no learning-history aggregation — it is picked first-match, not ranked by health.
|
|
169
|
-
const gsrc = geneGenerationSource(g, geneId);
|
|
170
|
-
if (gsrc === 'distilled' || gsrc === 'evolved') {
|
|
171
|
-
distilledFallback.push({
|
|
172
|
-
geneId,
|
|
173
|
-
assetId,
|
|
174
|
-
signalsMatch,
|
|
175
|
-
view: emptyLearningView(geneId),
|
|
176
|
-
reuseCount: 0,
|
|
177
|
-
generationSource: gsrc,
|
|
178
|
-
...(category ? { category } : {}),
|
|
179
|
-
...(summary ? { summary } : {}),
|
|
180
|
-
});
|
|
181
|
-
}
|
|
182
|
-
continue;
|
|
183
|
-
}
|
|
184
|
-
const view = await aggregateLearningHistory(store, geneId);
|
|
185
|
-
const explorationEligible = provenanceRecord?.trusted !== false
|
|
186
|
-
&& (reviewRecord === undefined || reviewRecord.state === 'approved');
|
|
187
|
-
// #268 Bugbot: reuse events key by assetId, which may be the content asset_id (sha256:…) OR the logical id —
|
|
188
|
-
// candidates key by the logical geneId. Look the sentiment up by BOTH so the soft re-order actually matches
|
|
189
|
-
// regardless of which form the reuse-result carried (recall's resolveGene accepts both for the same reason).
|
|
190
|
-
const reuseAdjustVal = combinedReuseSentiment(opts.reuseCounts, geneId, String(g.asset_id));
|
|
191
|
-
out.push({
|
|
192
|
-
geneId,
|
|
193
|
-
assetId: String(g.asset_id),
|
|
194
|
-
signalsMatch,
|
|
195
|
-
view,
|
|
196
|
-
// #195: inert (zero-work) cycles are not productive reuse — exclude them so a do-nothing gene can't earn
|
|
197
|
-
// the reuse bonus. success + failed === total when there are no inert cycles (back-compat).
|
|
198
|
-
reuseCount: view.success + view.failed,
|
|
199
|
-
...(category ? { category } : {}),
|
|
200
|
-
...(summary ? { summary } : {}),
|
|
201
|
-
...(reuseAdjustVal !== undefined ? { reuseAdjust: reuseAdjustVal } : {}),
|
|
202
|
-
explorationEligible,
|
|
203
|
-
});
|
|
204
|
-
}
|
|
205
|
-
// #110: merge hub reuse candidates into the same pool, trust-first — local (trusted) genes win on a
|
|
206
|
-
// geneId collision, and a hub candidate banned by repeated signal-matched failures stays out too.
|
|
207
|
-
if (opts.hubCandidates && opts.hubCandidates.length > 0) {
|
|
208
|
-
const localIds = new Set(out.map((c) => c.geneId));
|
|
209
|
-
const localAssetIds = new Set(out.map((c) => c.assetId).filter((id) => id !== undefined));
|
|
210
|
-
for (const h of opts.hubCandidates) {
|
|
211
|
-
if (!passesInjectedCandidateGates(h, opts, provenance, review))
|
|
212
|
-
continue;
|
|
213
|
-
if (localIds.has(h.geneId))
|
|
214
|
-
continue; // a trusted local gene already covers this id
|
|
215
|
-
if (h.assetId && localAssetIds.has(h.assetId))
|
|
216
|
-
continue; // the same content identity is already local/trusted
|
|
217
|
-
if (isBannedCandidate(banned, h.geneId, h.assetId))
|
|
218
|
-
continue;
|
|
219
|
-
// Stamp the reuse sentiment onto a hub candidate too (only when it didn't carry one), matched by its geneId
|
|
220
|
-
// OR its asset_id — symmetric with local genes, so a map keyed like reuse events (often sha256:…) still hits
|
|
221
|
-
// (#268 Bugbot). A hub candidate that exposes neither matching id is simply left unstamped.
|
|
222
|
-
const hubAdj = h.reuseAdjust === undefined ? combinedReuseSentiment(opts.reuseCounts, h.geneId, h.assetId) : undefined;
|
|
223
|
-
// A transient Hub candidate must never self-assert active-bandit cold-start eligibility. It still competes
|
|
224
|
-
// under the existing base score and legacy drift; UCB1 fails safe for a mixed window.
|
|
225
|
-
const guarded = { ...h, explorationEligible: false };
|
|
226
|
-
out.push(hubAdj !== undefined ? { ...guarded, reuseAdjust: hubAdj } : guarded);
|
|
227
|
-
localIds.add(h.geneId);
|
|
228
|
-
if (h.assetId)
|
|
229
|
-
localAssetIds.add(h.assetId);
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
for (const a of await store.list('AntiGene', limit)) {
|
|
233
|
-
// AntiGene is negative memory that changes an autonomous prompt. Unlike legacy/cycle-authored Genes, it must
|
|
234
|
-
// never inherit ReviewLedger's backward-compatible "no record = approved" default: no ledger, no record,
|
|
235
|
-
// quarantined, and rejected all fail closed. Only an explicit human approval can enable warning injection.
|
|
236
|
-
if (review?.get(String(a.asset_id))?.state !== 'approved')
|
|
237
|
-
continue;
|
|
238
|
-
const trigger = asStrings(a['trigger']);
|
|
239
|
-
const avoid = asStrings(a['avoid']);
|
|
240
|
-
if (trigger.length === 0 || avoid.length === 0)
|
|
241
|
-
continue;
|
|
242
|
-
const antiGeneId = stringField(a['id']) ?? String(a.asset_id);
|
|
243
|
-
const summary = stringField(a['summary']);
|
|
244
|
-
const matchingTrigger = withoutTaskDomainSignals(trigger);
|
|
245
|
-
// This is a safety inclusion gate: ubiquitous evidence must still emit warnings.
|
|
246
|
-
const relevant = matchingTrigger.some((m) => sigSet.has(m))
|
|
247
|
-
|| tagOverlapScore(matchingSignals, { signalsMatch: matchingTrigger, geneId: antiGeneId, summary }) > 0;
|
|
248
|
-
if (!relevant)
|
|
249
|
-
continue;
|
|
250
|
-
const severity = severityOf(a['severity']);
|
|
251
|
-
const rationale = stringField(a['rationale']);
|
|
252
|
-
antiWarnings.push({
|
|
253
|
-
antiGeneId,
|
|
254
|
-
assetId: String(a.asset_id),
|
|
255
|
-
trigger,
|
|
256
|
-
avoid,
|
|
257
|
-
...(summary ? { summary } : {}),
|
|
258
|
-
...(severity ? { severity } : {}),
|
|
259
|
-
...(rationale ? { rationale } : {}),
|
|
260
|
-
});
|
|
261
|
-
}
|
|
262
|
-
return { candidates: out, distilledFallback, semanticCorpus, antiWarnings };
|
|
263
|
-
}
|
|
264
|
-
/**
|
|
265
|
-
* Assemble selection candidates from the store for the given signals (the relevant scored set only).
|
|
266
|
-
* Thin wrapper over {@link assembleSelectionPool} kept for back-compat with callers that don't use the
|
|
267
|
-
* distilled-gene fallback pool.
|
|
268
|
-
*/
|
|
269
|
-
export async function assembleCandidates(store, signals, opts = {}) {
|
|
270
|
-
// This compatibility wrapper discards semanticCorpus, so preserve its legacy I/O bound instead of scanning
|
|
271
|
-
// 1,000 records for data the caller cannot consume.
|
|
272
|
-
return (await assembleSelectionPool(store, signals, { ...opts, includeSemanticCorpus: false })).candidates;
|
|
273
|
-
}
|
|
1
|
+
const _0x5db0aa=_0x55a2;(function(_0x2b309d,_0xb04821){const _0x448f35=_0x55a2,_0x40da34=_0x2b309d();while(!![]){try{const _0x89e2d7=-parseInt(_0x448f35(0x14b,'\x39\x35\x30\x51'))/(0xbb6+-0x173a+-0x1*-0xb85)+-parseInt(_0x448f35(0x10e,'\x2a\x5a\x72\x24'))/(0xe87+0x6d2+-0x9*0x25f)*(-parseInt(_0x448f35(0x104,'\x6c\x6b\x63\x21'))/(0x1ec+0x1a+-0x203))+parseInt(_0x448f35(0xdc,'\x35\x54\x26\x6a'))/(0x45*-0x9+-0x1da1+0x2012)*(-parseInt(_0x448f35(0x12b,'\x67\x34\x69\x43'))/(0xbbf+-0x18a6+0xcec*0x1))+parseInt(_0x448f35(0x114,'\x71\x35\x67\x62'))/(-0x7e5+-0x20e2+0x28cd)*(parseInt(_0x448f35(0x113,'\x31\x38\x42\x4a'))/(-0x1e2*0x1+-0x1d09+-0x2*-0xf79))+-parseInt(_0x448f35(0x109,'\x45\x72\x61\x33'))/(-0x148e+0x1d6e+-0x8*0x11b)*(-parseInt(_0x448f35(0xff,'\x24\x31\x29\x29'))/(-0x10b*0x19+0x1*-0x667+0x2083))+parseInt(_0x448f35(0xcd,'\x6b\x71\x51\x4a'))/(-0x1c7e+0x19*0x16a+0x123*-0x6)*(parseInt(_0x448f35(0xae,'\x4e\x6b\x6f\x72'))/(0x662+-0x1*-0x25ab+-0x1*0x2c02))+parseInt(_0x448f35(0x16e,'\x50\x61\x58\x58'))/(-0x11bf*-0x1+0x19a4+-0x631*0x7)*(-parseInt(_0x448f35(0x145,'\x38\x4c\x4e\x4c'))/(-0x3*0x2ef+0x2064+-0x178a));if(_0x89e2d7===_0xb04821)break;else _0x40da34['push'](_0x40da34['shift']());}catch(_0x40a766){_0x40da34['push'](_0x40da34['shift']());}}}(_0x46c0,-0x7cbfe+-0x98484+-0x19df85*-0x1));import{aggregateLearningHistory}from'\x2e\x2e\x2f\x61\x73\x73\x65\x74\x73\x74\x6f\x72\x65\x2f\x6c\x65\x61\x72\x6e\x69\x6e\x67\x48\x69\x73\x74\x6f\x72\x79\x2e\x6a\x73';import{reuseSentiment}from'\x2e\x2e\x2f\x6f\x70\x73\x2f\x72\x65\x75\x73\x65\x4f\x75\x74\x63\x6f\x6d\x65\x73\x2e\x6a\x73';import{expandSignals,geneTags,tagOverlapScore}from'\x2e\x2e\x2f\x73\x69\x67\x6e\x61\x6c\x73\x2f\x65\x78\x70\x61\x6e\x64\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{bannedGenesFromFailures}from'\x2e\x2f\x62\x61\x6e\x73\x2e\x6a\x73';import{geneGenerationSource}from'\x2e\x2f\x67\x65\x6e\x65\x49\x6e\x74\x61\x6b\x65\x2e\x6a\x73';function _0x55a2(_0x517f42,_0x2a4cd3){_0x517f42=_0x517f42-(0x218b*-0x1+0x1ac1+0x773);const _0x4d20ca=_0x46c0();let _0x2c9623=_0x4d20ca[_0x517f42];if(_0x55a2['\x64\x42\x54\x52\x71\x4d']===undefined){var _0x5df5e9=function(_0x1a83f0){const _0x43067d='\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 _0x5297f3='',_0x33ce0a='';for(let _0x12b912=0x1*0x16cb+0x44*0x6b+-0x3337,_0xd6b454,_0x2fcf5c,_0x54eae9=0x25c0+0x95*0x21+-0x7*0x823;_0x2fcf5c=_0x1a83f0['\x63\x68\x61\x72\x41\x74'](_0x54eae9++);~_0x2fcf5c&&(_0xd6b454=_0x12b912%(-0x1a70+-0x645+0x20b9)?_0xd6b454*(0x1d27+-0x1f44*0x1+-0xb*-0x37)+_0x2fcf5c:_0x2fcf5c,_0x12b912++%(-0x1*-0x1dd1+-0x225*-0xa+0x1115*-0x3))?_0x5297f3+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x17*-0x1ab+-0x1*0x26d2+0x4e2e*0x1&_0xd6b454>>(-(0x3*-0xa3c+0x259b+-0x6e5)*_0x12b912&0x9+-0x4*0x740+0x1cfd)):0x1ea1*0x1+0x153b+0xcf7*-0x4){_0x2fcf5c=_0x43067d['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2fcf5c);}for(let _0x378bbb=-0x30e+-0x21d2+0x24e*0x10,_0x147620=_0x5297f3['\x6c\x65\x6e\x67\x74\x68'];_0x378bbb<_0x147620;_0x378bbb++){_0x33ce0a+='\x25'+('\x30\x30'+_0x5297f3['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x378bbb)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x546+0x1b66+-0x2c2*0x8))['\x73\x6c\x69\x63\x65'](-(0x7d*-0x23+0xd*-0x7a+-0x59*-0x43));}return decodeURIComponent(_0x33ce0a);};const _0x3d14ba=function(_0x5c981d,_0x4e0361){let _0x4b5e7d=[],_0x2fdf67=-0x6a4+-0x5*-0x41b+-0xde3,_0x569a9a,_0x37d84d='';_0x5c981d=_0x5df5e9(_0x5c981d);let _0x55fe7e;for(_0x55fe7e=-0xe48+0x21ad+0x3e1*-0x5;_0x55fe7e<-0x2644+-0x2159+0x489d;_0x55fe7e++){_0x4b5e7d[_0x55fe7e]=_0x55fe7e;}for(_0x55fe7e=-0x1*0x2105+-0x269f+-0xa*-0x72a;_0x55fe7e<0xbf6+0x18c6+0x11de*-0x2;_0x55fe7e++){_0x2fdf67=(_0x2fdf67+_0x4b5e7d[_0x55fe7e]+_0x4e0361['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x55fe7e%_0x4e0361['\x6c\x65\x6e\x67\x74\x68']))%(-0x43b+-0x257*-0x6+0xb*-0xcd),_0x569a9a=_0x4b5e7d[_0x55fe7e],_0x4b5e7d[_0x55fe7e]=_0x4b5e7d[_0x2fdf67],_0x4b5e7d[_0x2fdf67]=_0x569a9a;}_0x55fe7e=0x1*0x219+-0x16c3+-0x1*-0x14aa,_0x2fdf67=0xf79+0x15e0+-0x3*0xc73;for(let _0xad2cf6=-0x1470+-0xc7a+-0x1*-0x20ea;_0xad2cf6<_0x5c981d['\x6c\x65\x6e\x67\x74\x68'];_0xad2cf6++){_0x55fe7e=(_0x55fe7e+(0x1*-0xb5a+0x907+0x254))%(-0x117a*0x2+0x20ae+0x346),_0x2fdf67=(_0x2fdf67+_0x4b5e7d[_0x55fe7e])%(0x1d7*0x2+0xbf+0x1*-0x36d),_0x569a9a=_0x4b5e7d[_0x55fe7e],_0x4b5e7d[_0x55fe7e]=_0x4b5e7d[_0x2fdf67],_0x4b5e7d[_0x2fdf67]=_0x569a9a,_0x37d84d+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x5c981d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xad2cf6)^_0x4b5e7d[(_0x4b5e7d[_0x55fe7e]+_0x4b5e7d[_0x2fdf67])%(0x4*0x5f2+-0x918+0x6*-0x248)]);}return _0x37d84d;};_0x55a2['\x6f\x69\x68\x53\x6f\x6b']=_0x3d14ba,_0x55a2['\x73\x6c\x6f\x5a\x4b\x45']={},_0x55a2['\x64\x42\x54\x52\x71\x4d']=!![];}const _0x59bd49=_0x4d20ca[0x155f+0x5f*-0xa+-0x11a9],_0x15020b=_0x517f42+_0x59bd49,_0x48a1b8=_0x55a2['\x73\x6c\x6f\x5a\x4b\x45'][_0x15020b];return!_0x48a1b8?(_0x55a2['\x4d\x4b\x4a\x4d\x74\x70']===undefined&&(_0x55a2['\x4d\x4b\x4a\x4d\x74\x70']=!![]),_0x2c9623=_0x55a2['\x6f\x69\x68\x53\x6f\x6b'](_0x2c9623,_0x2a4cd3),_0x55a2['\x73\x6c\x6f\x5a\x4b\x45'][_0x15020b]=_0x2c9623):_0x2c9623=_0x48a1b8,_0x2c9623;}const SEMANTIC_CORPUS_LIMIT=0x1cd5+-0x7*0x4bf+0x84c;function asStrings(_0x78daa9){const _0x1c4cf2=_0x55a2;return Array['\x69\x73\x41\x72\x72\x61\x79'](_0x78daa9)?_0x78daa9[_0x1c4cf2(0x10c,'\x58\x2a\x73\x67')](_0x469b65=>typeof _0x469b65===_0x1c4cf2(0x139,'\x6b\x71\x51\x4a')):[];}function stringField(_0x4d3601){const _0x4eb27d=_0x55a2;return typeof _0x4d3601===_0x4eb27d(0x112,'\x24\x48\x35\x29')&&_0x4d3601[_0x4eb27d(0x12e,'\x2a\x45\x5d\x40')]()[_0x4eb27d(0x13a,'\x56\x66\x66\x76')]>0x731*0x3+0xd0f+0x3e*-0x8f?_0x4d3601['\x74\x72\x69\x6d']():undefined;}function severityOf(_0x3ff3cb){const _0x5989a2=_0x55a2;return _0x3ff3cb===_0x5989a2(0xd7,'\x2a\x45\x5d\x40')||_0x3ff3cb==='\x6d\x65\x64\x69\x75\x6d'||_0x3ff3cb===_0x5989a2(0x11e,'\x37\x28\x78\x42')?_0x3ff3cb:undefined;}function candidateIds(_0x26b56f,_0x5ecf11){const _0x2166ad=_0x55a2;return[...new Set([_0x26b56f,_0x5ecf11][_0x2166ad(0x166,'\x35\x54\x26\x6a')](_0x38badb=>typeof _0x38badb===_0x2166ad(0xd0,'\x39\x59\x72\x32')&&_0x38badb['\x6c\x65\x6e\x67\x74\x68']>-0x413*0x1+-0x115+-0x3*-0x1b8))];}function isBannedCandidate(_0x54fd28,_0x4fbd00,_0x5416ea){const _0x4af3c0=_0x55a2;return candidateIds(_0x4fbd00,_0x5416ea)[_0x4af3c0(0x13d,'\x67\x34\x69\x43')](_0x1fb0b2=>_0x54fd28[_0x4af3c0(0xaa,'\x39\x59\x72\x32')](_0x1fb0b2));}function passesInjectedCandidateGates(_0xd5bef7,_0xa314e2,_0x541f95,_0x2775f3){const _0x317621=_0x55a2,_0x4a0977=_0xd5bef7[_0x317621(0xf7,'\x37\x37\x56\x79')];if(_0xa314e2[_0x317621(0x12c,'\x23\x33\x23\x6c')+'\x63\x65']&&!_0xa314e2[_0x317621(0x10f,'\x2a\x5a\x72\x24')+_0x317621(0xcf,'\x31\x38\x42\x4a')]){if(!_0x4a0977||_0x541f95?.[_0x317621(0x119,'\x55\x69\x4f\x55')](_0x4a0977)?.[_0x317621(0x15f,'\x6a\x25\x6f\x79')]!==!![])return![];}if(_0xa314e2[_0x317621(0x13e,'\x4e\x32\x63\x73')]){const _0x3403fc=_0x4a0977?_0x2775f3?.[_0x317621(0xce,'\x45\x72\x61\x33')](_0x4a0977):undefined;if(!_0x4a0977||_0x3403fc!==undefined&&_0x3403fc[_0x317621(0xf0,'\x24\x48\x35\x29')]!==_0x317621(0xbd,'\x4e\x32\x63\x73'))return![];}return!![];}function emptyLearningView(_0x1ba928){return{'\x67\x65\x6e\x65\x49\x64':_0x1ba928,'\x74\x6f\x74\x61\x6c':0x0,'\x73\x75\x63\x63\x65\x73\x73':0x0,'\x66\x61\x69\x6c\x65\x64':0x0,'\x73\x75\x63\x63\x65\x73\x73\x52\x61\x74\x65':0x0,'\x61\x76\x67\x53\x63\x6f\x72\x65':0x0,'\x72\x65\x63\x65\x6e\x74\x43\x61\x70\x73\x75\x6c\x65\x49\x64\x73':[]};}function combinedReuseSentiment(_0x3084d3,..._0x541fe3){const _0x294fff=_0x55a2;if(!_0x3084d3)return undefined;let _0x5c2f59=-0x1*-0x17a4+0xda2+0x2de*-0xd,_0x19dc69=-0x1d93+0x2572+-0x7df,_0x422448=![];const _0x4ce974=new Set();for(const _0x17df75 of _0x541fe3){if(_0x17df75===undefined||_0x4ce974[_0x294fff(0xd1,'\x24\x31\x29\x29')](_0x17df75))continue;_0x4ce974[_0x294fff(0x151,'\x4e\x6b\x6f\x72')](_0x17df75);const _0x365a81=_0x3084d3[_0x294fff(0xf6,'\x65\x56\x4f\x5d')](_0x17df75);if(_0x365a81){if(_0x294fff(0xde,'\x24\x48\x35\x29')===_0x294fff(0xe6,'\x37\x67\x75\x47')){const _0x3e0d4a=_0x5512c9[_0x294fff(0x152,'\x24\x41\x79\x54')];if(_0x4999dd[_0x294fff(0x12f,'\x24\x41\x79\x54')+'\x63\x65']&&!_0x449a2b[_0x294fff(0x15b,'\x41\x6f\x41\x62')+'\x6e\x74\x72\x75\x73\x74\x65\x64']){if(!_0x3e0d4a||_0x66965e?.[_0x294fff(0x101,'\x43\x4d\x68\x6d')](_0x3e0d4a)?.['\x74\x72\x75\x73\x74\x65\x64']!==!![])return![];}if(_0x1875d3[_0x294fff(0xe9,'\x39\x35\x30\x51')]){const _0x1a821a=_0x3e0d4a?_0x136b77?.[_0x294fff(0x146,'\x6e\x54\x46\x78')](_0x3e0d4a):_0x13be87;if(!_0x3e0d4a||_0x1a821a!==_0x509671&&_0x1a821a[_0x294fff(0xc1,'\x37\x37\x56\x79')]!==_0x294fff(0x130,'\x79\x38\x24\x67'))return![];}return!![];}else _0x5c2f59+=_0x365a81['\x73\x75\x63\x63\x65\x73\x73'],_0x19dc69+=_0x365a81[_0x294fff(0xd2,'\x45\x72\x61\x33')],_0x422448=!![];}}return _0x422448?reuseSentiment({'\x73\x75\x63\x63\x65\x73\x73':_0x5c2f59,'\x6e\x65\x67\x61\x74\x69\x76\x65':_0x19dc69}):undefined;}async function computeBans(_0x437d24,_0x37fa71,_0x298fe4){const _0x13fcf3=_0x55a2;if(_0x37fa71[_0x13fcf3(0xbe,'\x78\x31\x46\x76')]===0x1430+-0x1e3*0x9+-0x335)return new Set();const _0x541639=await _0x437d24[_0x13fcf3(0xc0,'\x24\x41\x79\x54')]({'\x6b\x69\x6e\x64':_0x13fcf3(0x160,'\x39\x35\x30\x51'),'\x73\x69\x67\x6e\x61\x6c\x73\x41\x6e\x79':[..._0x37fa71],'\x6c\x69\x6d\x69\x74':_0x298fe4}),_0x6c7d27=_0x541639[_0x13fcf3(0xc4,'\x70\x6f\x65\x21')](_0x4cd024=>_0x4cd024[_0x13fcf3(0xe5,'\x67\x34\x69\x43')]?.[_0x13fcf3(0x12d,'\x48\x49\x4f\x59')]===_0x13fcf3(0x15c,'\x6e\x2a\x5a\x6e'))['\x6d\x61\x70'](_0x26e285=>({'\x67\x65\x6e\x65':typeof _0x26e285[_0x13fcf3(0xd8,'\x31\x62\x62\x28')]===_0x13fcf3(0xb8,'\x56\x66\x66\x76')?String(_0x26e285[_0x13fcf3(0xe0,'\x79\x38\x24\x67')]):undefined,'\x74\x72\x69\x67\x67\x65\x72':asStrings(_0x26e285[_0x13fcf3(0xb7,'\x6e\x2a\x5a\x6e')])}));return bannedGenesFromFailures(_0x6c7d27,_0x37fa71);}const GENERIC_NAMESPACE_TAGS=new Set([_0x5db0aa(0x108,'\x72\x59\x5a\x37'),_0x5db0aa(0x154,'\x50\x61\x58\x58'),_0x5db0aa(0xac,'\x78\x31\x46\x76'),_0x5db0aa(0x15e,'\x24\x41\x79\x54'),_0x5db0aa(0x16d,'\x67\x34\x69\x43')]);function hasSelectionAdmissionEvidence(_0x2de145,_0x5a5ec0){const _0x4ed0ff=_0x5db0aa,_0x14f318=new Set(geneTags(_0x5a5ec0)),_0x5b8b64=new Set(expandSignals(_0x5a5ec0[_0x4ed0ff(0xc2,'\x72\x59\x5a\x37')+_0x4ed0ff(0x150,'\x68\x50\x67\x4b')]??[])),_0x3914ae=_0x5a5ec0[_0x4ed0ff(0x133,'\x56\x66\x66\x76')]?_0x4ed0ff(0x10d,'\x50\x61\x58\x58')+_0x5a5ec0[_0x4ed0ff(0x123,'\x54\x56\x31\x34')][_0x4ed0ff(0x115,'\x41\x6f\x41\x62')+_0x4ed0ff(0xef,'\x70\x6f\x65\x21')]():undefined;if(_0x2de145['\x73\x6f\x6d\x65'](_0x2b2b78=>(_0x5b8b64[_0x4ed0ff(0xe2,'\x6b\x71\x51\x4a')](_0x2b2b78)||_0x2b2b78===_0x3914ae)&&!GENERIC_NAMESPACE_TAGS[_0x4ed0ff(0xb2,'\x71\x35\x67\x62')](_0x2b2b78)))return _0x4ed0ff(0x111,'\x78\x31\x46\x76')!==_0x4ed0ff(0x107,'\x6e\x54\x46\x78')?!![]:!![];const _0x4c3e25=expandSignals(_0x2de145);if(_0x4c3e25[_0x4ed0ff(0x118,'\x50\x50\x55\x23')](_0x35df03=>_0x14f318[_0x4ed0ff(0xcc,'\x65\x56\x4f\x5d')](_0x35df03)&&(_0x35df03[_0x4ed0ff(0x167,'\x58\x2a\x73\x67')+'\x74\x68'](_0x4ed0ff(0x13f,'\x37\x67\x75\x47'))||_0x35df03[_0x4ed0ff(0x116,'\x71\x35\x67\x62')+'\x74\x68'](_0x4ed0ff(0xbf,'\x37\x28\x78\x42'))||_0x35df03[_0x4ed0ff(0x11a,'\x67\x34\x69\x43')+'\x74\x68'](_0x4ed0ff(0xeb,'\x79\x38\x24\x67')))))return!![];return _0x4c3e25[_0x4ed0ff(0xaf,'\x24\x48\x35\x29')](_0x207192=>_0x207192[_0x4ed0ff(0x12a,'\x70\x4b\x30\x67')+'\x74\x68']('\x73\x69\x67\x6e\x61\x6c\x3a')&&_0x5b8b64[_0x4ed0ff(0x127,'\x68\x50\x67\x4b')](_0x207192));}function _0x46c0(){const _0x41607a=['\x57\x35\x57\x53\x57\x50\x43','\x57\x36\x6d\x76\x57\x35\x74\x63\x49\x38\x6f\x51\x57\x4f\x57\x52\x62\x71','\x57\x34\x4a\x63\x4c\x43\x6f\x30\x6f\x71','\x57\x36\x5a\x63\x4e\x33\x4e\x63\x4d\x6d\x6f\x5a\x57\x51\x4b\x4a','\x57\x36\x79\x79\x45\x48\x61\x6f\x57\x4f\x65\x78\x76\x71','\x57\x51\x46\x63\x4c\x53\x6f\x47\x77\x53\x6f\x4e\x6e\x38\x6f\x58\x63\x57','\x57\x36\x69\x64\x57\x51\x53','\x57\x37\x79\x32\x6e\x6d\x6f\x31','\x57\x34\x44\x64\x44\x71','\x42\x38\x6f\x5a\x42\x6d\x6b\x53\x72\x53\x6b\x5a\x57\x34\x34','\x69\x73\x4e\x64\x48\x53\x6f\x66\x57\x50\x47','\x57\x51\x61\x33\x7a\x59\x4b\x55\x57\x51\x71\x5a','\x57\x37\x2f\x63\x49\x67\x6c\x63\x4a\x53\x6f\x6f\x57\x51\x47','\x7a\x53\x6f\x48\x57\x52\x56\x63\x4f\x6d\x6f\x79','\x57\x52\x5a\x63\x49\x53\x6f\x4c\x44\x38\x6f\x4e\x6e\x43\x6f\x4d\x70\x71','\x70\x68\x37\x63\x4c\x4e\x6d','\x57\x37\x6d\x47\x57\x52\x33\x64\x4b\x68\x46\x64\x4a\x38\x6b\x67','\x42\x38\x6b\x4f\x43\x71','\x41\x53\x6b\x34\x57\x35\x39\x38\x68\x47','\x57\x52\x66\x78\x57\x52\x75\x7a\x70\x53\x6b\x54\x6c\x53\x6b\x49\x76\x53\x6b\x57\x43\x30\x57','\x79\x43\x6b\x53\x57\x35\x39\x36\x61\x4e\x4c\x79','\x78\x30\x52\x64\x48\x43\x6b\x2b\x6e\x61','\x6a\x6d\x6b\x72\x57\x4f\x31\x6e\x57\x37\x33\x63\x4d\x53\x6b\x76\x43\x57','\x77\x38\x6b\x41\x69\x38\x6b\x59\x57\x52\x70\x63\x4a\x53\x6f\x39','\x74\x4e\x33\x64\x51\x43\x6b\x31\x57\x35\x52\x64\x56\x47','\x57\x36\x57\x32\x64\x31\x4e\x63\x56\x48\x54\x52\x57\x35\x4b','\x6b\x78\x6c\x63\x49\x33\x31\x73','\x57\x35\x7a\x6c\x57\x50\x76\x47','\x74\x6d\x6f\x59\x63\x38\x6f\x69\x57\x4f\x66\x6b\x57\x34\x42\x63\x56\x71','\x57\x34\x37\x63\x49\x43\x6f\x54','\x62\x6d\x6b\x6d\x57\x50\x57','\x44\x53\x6f\x38\x57\x52\x4e\x63\x50\x38\x6f\x6b','\x57\x51\x6d\x78\x57\x52\x57','\x6a\x5a\x46\x64\x4f\x6d\x6f\x33\x57\x35\x46\x63\x52\x6d\x6f\x42\x57\x37\x34','\x6e\x43\x6b\x38\x57\x50\x47\x41','\x42\x67\x4a\x63\x4a\x53\x6f\x33\x6a\x43\x6f\x7a\x42\x43\x6f\x42','\x75\x43\x6f\x65\x79\x57\x47\x2f\x57\x35\x58\x56\x72\x66\x6e\x38\x45\x4a\x34\x51','\x6c\x43\x6f\x75\x43\x47','\x57\x52\x74\x64\x4c\x6d\x6b\x65\x71\x53\x6b\x36\x6f\x53\x6b\x75','\x57\x36\x6d\x65\x57\x37\x43','\x57\x36\x56\x63\x4d\x77\x33\x63\x4e\x38\x6f\x49','\x57\x37\x44\x70\x57\x50\x6a\x50\x64\x66\x61','\x57\x36\x71\x69\x46\x61\x53','\x76\x38\x6f\x35\x68\x43\x6f\x78\x57\x50\x66\x56\x57\x34\x46\x63\x48\x57','\x45\x53\x6f\x59\x41\x53\x6b\x36\x72\x53\x6b\x46\x57\x34\x34','\x57\x35\x46\x63\x4e\x38\x6f\x33\x6f\x57\x70\x64\x4a\x71','\x57\x4f\x30\x52\x57\x4f\x4e\x63\x55\x65\x42\x63\x54\x68\x38','\x74\x53\x6f\x4c\x65\x43\x6f\x6e\x57\x4f\x66\x4c\x57\x34\x70\x63\x55\x71','\x57\x4f\x72\x4a\x57\x34\x65','\x57\x4f\x7a\x52\x57\x35\x72\x66\x7a\x6d\x6b\x66\x57\x36\x76\x4c','\x57\x51\x52\x63\x55\x43\x6b\x6d\x57\x36\x70\x63\x4e\x4c\x35\x44\x65\x47','\x6c\x38\x6b\x72\x76\x64\x64\x64\x4d\x74\x68\x63\x4a\x43\x6b\x32\x57\x51\x74\x63\x4a\x61','\x57\x37\x52\x64\x48\x78\x2f\x63\x53\x38\x6b\x62\x57\x34\x57','\x7a\x6d\x6f\x37\x57\x51\x56\x63\x54\x53\x6f\x42\x57\x51\x4c\x63','\x57\x37\x52\x63\x54\x6d\x6f\x73\x62\x63\x34','\x57\x51\x52\x63\x51\x43\x6b\x6c\x57\x36\x2f\x63\x48\x77\x38','\x57\x52\x35\x65\x57\x4f\x42\x64\x4b\x38\x6b\x51\x57\x35\x72\x52\x66\x65\x6c\x63\x4c\x38\x6b\x44\x57\x52\x4c\x4b','\x57\x37\x38\x4e\x6b\x71','\x57\x37\x75\x32\x57\x52\x4f','\x57\x52\x6c\x63\x4c\x53\x6f\x52\x71\x6d\x6f\x4a\x6b\x71','\x45\x47\x50\x4a\x57\x51\x5a\x64\x51\x43\x6b\x6b\x65\x47','\x57\x51\x5a\x63\x4b\x63\x74\x64\x52\x53\x6b\x61\x57\x34\x64\x63\x51\x38\x6b\x46\x57\x35\x6a\x55','\x57\x37\x74\x64\x4a\x4e\x6c\x63\x55\x53\x6b\x39\x57\x34\x5a\x63\x47\x43\x6b\x74','\x64\x6d\x6b\x72\x57\x50\x50\x69\x57\x34\x2f\x63\x4d\x38\x6b\x45\x72\x71','\x75\x38\x6f\x2f\x57\x51\x37\x64\x55\x65\x65','\x44\x53\x6f\x38\x57\x51\x52\x63\x55\x53\x6f\x62\x57\x4f\x43','\x57\x34\x37\x63\x53\x58\x4a\x63\x4e\x4c\x7a\x73\x79\x43\x6f\x39\x6a\x43\x6f\x53\x63\x6d\x6f\x41','\x57\x52\x31\x72\x57\x35\x62\x46\x42\x43\x6f\x77\x6e\x38\x6b\x33','\x64\x38\x6b\x42\x69\x38\x6f\x4a\x57\x37\x78\x63\x54\x31\x58\x68','\x57\x37\x43\x76\x57\x36\x6a\x7a\x43\x38\x6f\x56\x6c\x53\x6b\x39','\x57\x36\x47\x50\x57\x52\x33\x63\x4c\x53\x6b\x73','\x57\x35\x76\x69\x46\x66\x65','\x6c\x53\x6f\x36\x57\x52\x47','\x46\x43\x6b\x54\x57\x34\x50\x52\x67\x77\x44\x51\x57\x36\x47','\x6f\x4d\x4a\x63\x49\x33\x6d\x43\x57\x4f\x30\x70\x57\x50\x53','\x42\x38\x6f\x6e\x67\x32\x33\x64\x55\x63\x30','\x76\x48\x69\x6d','\x67\x30\x31\x56\x57\x51\x43','\x42\x38\x6f\x57\x42\x38\x6b\x37\x78\x43\x6b\x6d\x57\x34\x2f\x63\x53\x61','\x67\x30\x76\x37','\x6f\x6d\x6f\x71\x43\x53\x6b\x6b\x41\x53\x6f\x56\x74\x68\x34','\x57\x52\x34\x78\x57\x37\x38\x7a\x45\x71','\x74\x6d\x6b\x6a\x70\x53\x6b\x57\x57\x52\x70\x63\x48\x6d\x6f\x39\x57\x35\x79','\x57\x34\x44\x75\x79\x4c\x68\x63\x49\x6d\x6f\x51\x57\x34\x66\x63','\x72\x61\x6d\x66\x43\x43\x6f\x45\x78\x43\x6b\x76','\x66\x38\x6b\x71\x57\x50\x54\x66\x57\x34\x37\x63\x4c\x53\x6b\x75\x45\x61','\x57\x37\x4c\x70\x57\x4f\x47','\x57\x51\x37\x63\x50\x6d\x6b\x6c\x57\x37\x74\x63\x47\x32\x72\x68','\x57\x36\x56\x63\x4d\x67\x68\x63\x48\x53\x6f\x4d\x57\x52\x34\x2b','\x42\x38\x6b\x54\x57\x52\x4f\x74\x78\x38\x6b\x55\x57\x51\x6a\x31','\x70\x38\x6f\x48\x57\x50\x69\x54\x77\x63\x30\x69\x57\x37\x74\x63\x53\x38\x6f\x52\x57\x50\x33\x63\x4c\x68\x30','\x6e\x74\x52\x64\x4e\x43\x6f\x77\x57\x4f\x37\x63\x4a\x57\x56\x63\x47\x71','\x57\x52\x6d\x73\x6b\x58\x70\x63\x49\x48\x38','\x57\x37\x4f\x45\x57\x52\x78\x63\x47\x57','\x57\x52\x53\x65\x57\x51\x64\x63\x47\x43\x6b\x39\x78\x38\x6b\x39\x57\x34\x30','\x6f\x4d\x56\x63\x49\x67\x71\x68\x57\x51\x71\x64\x57\x50\x53','\x57\x35\x43\x53\x57\x4f\x52\x63\x52\x30\x78\x63\x48\x76\x53\x58','\x57\x51\x65\x77\x6f\x48\x78\x63\x4b\x62\x50\x51\x6a\x47','\x76\x62\x43\x43\x45\x43\x6f\x79\x71\x6d\x6b\x45\x76\x71','\x57\x51\x5a\x63\x52\x38\x6b\x72\x57\x36\x70\x63\x4f\x32\x75','\x57\x36\x65\x38\x57\x51\x70\x64\x4b\x61','\x57\x37\x66\x45\x43\x31\x70\x64\x49\x4c\x75\x36\x6e\x57\x33\x64\x51\x53\x6f\x73\x72\x64\x79','\x57\x37\x30\x63\x57\x52\x33\x63\x4e\x53\x6b\x58\x71\x78\x71\x77','\x46\x43\x6f\x30\x46\x53\x6b\x39\x76\x57','\x44\x6d\x6b\x39\x43\x65\x64\x64\x4e\x38\x6f\x62','\x77\x58\x6d\x67\x45\x38\x6f\x6c\x72\x57','\x64\x38\x6b\x4e\x73\x43\x6b\x69\x57\x35\x61\x37\x57\x35\x42\x63\x53\x5a\x78\x63\x50\x33\x71\x35','\x6e\x6d\x6b\x34\x57\x36\x56\x64\x51\x38\x6b\x45\x57\x35\x44\x4b\x68\x43\x6f\x4a\x6f\x57\x33\x63\x4b\x57','\x46\x43\x6b\x32\x57\x34\x7a\x38','\x68\x43\x6f\x69\x69\x4d\x47\x4f\x57\x52\x65','\x46\x4c\x5a\x64\x48\x43\x6b\x54\x6d\x6d\x6f\x32\x57\x37\x74\x63\x49\x71','\x65\x4c\x44\x37\x57\x51\x52\x64\x54\x58\x50\x43','\x57\x51\x61\x63\x57\x37\x4b\x74\x46\x30\x65','\x6b\x43\x6b\x62\x67\x53\x6f\x6e\x57\x34\x4b','\x69\x6d\x6f\x58\x57\x51\x39\x77\x71\x75\x4a\x64\x49\x64\x61','\x46\x53\x6b\x53\x57\x35\x48\x58','\x46\x4e\x42\x63\x53\x38\x6b\x64\x57\x36\x68\x63\x48\x6d\x6f\x69\x57\x36\x38\x7a\x6a\x57','\x57\x35\x5a\x63\x4e\x38\x6f\x54','\x57\x36\x4e\x64\x4b\x4d\x74\x63\x50\x43\x6b\x38\x57\x34\x33\x63\x47\x61','\x57\x52\x38\x65\x57\x51\x42\x63\x4d\x47','\x70\x62\x46\x63\x4b\x38\x6f\x37\x67\x6d\x6f\x34\x57\x36\x64\x64\x53\x43\x6b\x4a\x44\x71','\x43\x43\x6f\x6e\x61\x32\x70\x64\x51\x74\x69','\x64\x49\x5a\x63\x51\x43\x6f\x54\x57\x4f\x52\x63\x55\x75\x42\x63\x4f\x53\x6b\x55\x57\x50\x68\x63\x53\x38\x6b\x45','\x45\x48\x50\x4b\x57\x51\x64\x64\x53\x53\x6b\x37\x71\x43\x6b\x69','\x57\x36\x66\x63\x57\x52\x31\x6c\x6a\x62\x42\x64\x4a\x6d\x6f\x50\x57\x35\x71\x45\x64\x53\x6b\x57','\x57\x36\x4b\x61\x57\x37\x53','\x42\x67\x4a\x63\x4a\x53\x6f\x33\x6a\x43\x6f\x70\x79\x61','\x57\x37\x62\x41\x57\x50\x48\x54','\x61\x38\x6b\x6e\x57\x4f\x4f','\x57\x51\x4f\x66\x57\x52\x5a\x63\x4b\x53\x6b\x53\x45\x6d\x6b\x34','\x70\x53\x6b\x56\x42\x31\x52\x64\x4d\x38\x6f\x5a\x61\x61','\x45\x48\x54\x59\x57\x51\x71','\x57\x36\x6a\x63\x57\x52\x50\x6e\x72\x4d\x64\x64\x54\x6d\x6f\x37\x57\x35\x71\x35','\x72\x57\x6d\x42\x44\x61','\x62\x53\x6b\x45\x57\x4f\x31\x62\x57\x35\x33\x63\x4b\x6d\x6b\x6a\x42\x57','\x74\x32\x5a\x64\x52\x43\x6b\x31\x57\x35\x68\x64\x52\x47','\x6a\x6d\x6f\x59\x57\x36\x69\x36\x57\x4f\x6c\x63\x4d\x31\x44\x50','\x57\x35\x70\x64\x56\x38\x6b\x62\x71\x38\x6b\x73\x57\x37\x68\x64\x55\x33\x34','\x65\x53\x6b\x41\x64\x6d\x6f\x47\x57\x37\x46\x63\x54\x4b\x54\x72','\x57\x52\x75\x78\x57\x36\x69\x77\x44\x65\x69','\x57\x34\x4a\x63\x4a\x38\x6f\x36\x70\x58\x6c\x64\x4c\x4a\x4f','\x57\x52\x4b\x46\x57\x52\x5a\x63\x4e\x61','\x57\x36\x4f\x48\x64\x31\x4e\x63\x52\x5a\x31\x47','\x46\x33\x4e\x64\x52\x38\x6b\x56\x57\x34\x52\x64\x50\x77\x57','\x79\x53\x6f\x65\x57\x50\x42\x64\x49\x61','\x57\x37\x4e\x63\x4e\x78\x5a\x63\x4d\x43\x6f\x4f\x57\x52\x4f\x49\x73\x47','\x41\x78\x6c\x63\x4a\x53\x6f\x4d\x6f\x6d\x6f\x51\x41\x6d\x6f\x41','\x57\x37\x43\x4c\x57\x51\x68\x64\x4d\x78\x78\x64\x4f\x38\x6b\x67','\x62\x6d\x6b\x6d\x57\x4f\x50\x62\x57\x34\x37\x63\x4f\x6d\x6b\x73\x43\x47','\x57\x37\x69\x75\x79\x58\x43\x6f\x57\x52\x61','\x57\x51\x46\x63\x49\x38\x6f\x4d\x72\x53\x6f\x59\x6b\x6d\x6f\x76\x70\x71','\x6b\x53\x6b\x37\x57\x4f\x4f\x45\x43\x53\x6f\x47\x57\x4f\x66\x71','\x79\x66\x52\x64\x4d\x71','\x41\x43\x6f\x48\x57\x51\x56\x63\x50\x57','\x57\x51\x46\x63\x49\x53\x6f\x51\x77\x43\x6f\x4e\x6b\x43\x6f\x37','\x62\x38\x6f\x6d\x6a\x57','\x46\x43\x6b\x57\x57\x34\x58\x33\x64\x68\x47','\x6b\x4c\x4b\x47\x57\x37\x42\x63\x53\x53\x6f\x75\x78\x6d\x6b\x69\x67\x64\x4e\x63\x49\x38\x6f\x36','\x6b\x67\x2f\x63\x4d\x77\x69\x6e','\x6c\x43\x6f\x47\x57\x36\x69','\x57\x51\x61\x45\x57\x34\x34\x39\x69\x76\x57\x32\x79\x4e\x75\x43','\x79\x53\x6f\x64\x57\x4f\x52\x64\x47\x4e\x71\x52\x57\x37\x69','\x66\x43\x6b\x61\x68\x43\x6f\x35\x57\x37\x68\x63\x50\x4b\x54\x47','\x76\x38\x6f\x46\x57\x35\x4a\x64\x4a\x74\x44\x41\x57\x50\x5a\x64\x48\x4e\x31\x48\x57\x50\x42\x64\x51\x61','\x44\x53\x6f\x4e\x57\x52\x78\x63\x54\x47','\x71\x38\x6b\x6e\x6a\x6d\x6b\x59\x57\x51\x64\x63\x47\x57','\x70\x5a\x46\x64\x53\x43\x6f\x43','\x57\x36\x57\x61\x57\x37\x61','\x57\x37\x43\x76\x57\x36\x6a\x46\x79\x47','\x57\x37\x79\x59\x63\x71','\x79\x4b\x46\x64\x48\x38\x6b\x4d\x6b\x61','\x57\x52\x42\x64\x48\x53\x6b\x64\x71\x53\x6b\x50\x68\x6d\x6b\x63\x57\x50\x57','\x57\x51\x43\x65\x57\x36\x69\x44\x44\x4b\x70\x64\x53\x71','\x72\x61\x69\x41\x44\x43\x6f\x72\x73\x61','\x57\x52\x6c\x64\x47\x53\x6b\x64','\x71\x53\x6f\x65\x70\x6d\x6f\x34\x57\x36\x4a\x63\x4d\x67\x62\x4e','\x6b\x6d\x6f\x53\x57\x52\x39\x46\x71\x67\x78\x64\x49\x71','\x62\x6d\x6b\x6a\x57\x50\x7a\x6e\x57\x35\x34','\x64\x53\x6f\x44\x6a\x68\x6d\x49\x57\x52\x61\x63\x6e\x57','\x46\x53\x6f\x75\x57\x4f\x56\x64\x48\x32\x57\x4d','\x65\x4c\x7a\x54\x57\x51\x37\x63\x55\x71','\x57\x52\x47\x74\x57\x51\x37\x63\x48\x43\x6b\x37\x77\x71','\x57\x51\x42\x64\x4b\x38\x6b\x77\x75\x38\x6b\x52','\x57\x52\x4a\x63\x4f\x38\x6b\x79\x57\x36\x4a\x63\x49\x32\x31\x68\x6f\x57','\x57\x37\x79\x32\x6e\x6d\x6f\x31\x46\x66\x34','\x61\x38\x6b\x77\x57\x50\x76\x71\x57\x35\x2f\x63\x4a\x71','\x6b\x53\x6f\x5a\x57\x36\x65\x51\x57\x4f\x75','\x63\x77\x37\x63\x4a\x76\x43\x4a','\x79\x6d\x6f\x75\x57\x50\x70\x64\x49\x78\x30\x35','\x57\x4f\x61\x68\x57\x4f\x5a\x63\x47\x77\x4e\x63\x48\x33\x65','\x57\x36\x75\x73\x57\x37\x62\x6f\x43\x38\x6f\x76\x68\x71','\x6b\x38\x6f\x76\x79\x47','\x44\x43\x6f\x39\x57\x51\x56\x63\x55\x57','\x69\x53\x6f\x71\x44\x71','\x6e\x53\x6f\x57\x6d\x4c\x5a\x64\x56\x43\x6f\x43\x66\x59\x56\x64\x4b\x57','\x57\x36\x4f\x76\x57\x34\x43','\x57\x50\x68\x64\x54\x31\x4e\x64\x4b\x58\x71\x72\x72\x53\x6f\x70','\x6e\x53\x6f\x31\x57\x36\x6d\x32\x57\x50\x4a\x63\x4f\x57'];_0x46c0=function(){return _0x41607a;};return _0x46c0();}export async function assembleSelectionPool(_0x49fd83,_0xff27c4,_0x5bb4a4={}){const _0x5ea575=_0x5db0aa,_0x35eb55=_0x5bb4a4[_0x5ea575(0xb5,'\x37\x67\x75\x47')]??0x1*-0x1732+-0x1596+-0xbaf*-0x4,_0x4b6299=_0x5bb4a4[_0x5ea575(0x110,'\x70\x6f\x65\x21')+_0x5ea575(0x102,'\x43\x4d\x68\x6d')+_0x5ea575(0xc5,'\x39\x59\x72\x32')]!==![],_0x3ad3da=_0x4b6299?Math[_0x5ea575(0x14e,'\x71\x35\x67\x62')](_0x35eb55,SEMANTIC_CORPUS_LIMIT):_0x35eb55,_0x40f5e8=await _0x49fd83[_0x5ea575(0x16a,'\x24\x48\x35\x29')](_0x5ea575(0xec,'\x68\x50\x67\x4b'),_0x3ad3da),_0x257f93=withoutTaskDomainSignals(_0xff27c4),_0x3c7b48=await computeBans(_0x49fd83,_0x257f93,_0x35eb55),_0x52c71f=new Set(_0x257f93),_0xcf8df=_0x5bb4a4['\x70\x72\x6f\x76\x65\x6e\x61\x6e'+'\x63\x65']?.[_0x5ea575(0x137,'\x2a\x45\x5d\x40')](),_0x2a3668=_0x5bb4a4[_0x5ea575(0x11c,'\x6c\x6b\x63\x21')]?.[_0x5ea575(0x168,'\x58\x79\x37\x44')](),_0x147de0=[],_0x506cab=[],_0x4d19a8=[],_0xae64ac=new Set(),_0x1ad5d2=_0x4f1a6f=>{const _0x3dfb=_0x5ea575;if(!_0x4b6299||_0x4d19a8[_0x3dfb(0xb0,'\x54\x56\x31\x34')]>=SEMANTIC_CORPUS_LIMIT)return;const _0x59fee5=_0x4f1a6f[_0x3dfb(0x106,'\x24\x48\x35\x29')]??_0x4f1a6f[_0x3dfb(0x134,'\x72\x59\x5a\x37')];if(_0xae64ac[_0x3dfb(0x16c,'\x4e\x32\x63\x73')](_0x59fee5))return;_0xae64ac[_0x3dfb(0x11d,'\x56\x66\x66\x76')](_0x59fee5),_0x4d19a8[_0x3dfb(0x156,'\x56\x66\x66\x76')](_0x4f1a6f);},_0x357518=[];for(const [_0x5a877c,_0x116928]of _0x40f5e8[_0x5ea575(0x128,'\x72\x59\x5a\x37')]()){const _0x3bddd2=_0xcf8df?.[_0x5ea575(0xf8,'\x71\x35\x67\x62')](String(_0x116928['\x61\x73\x73\x65\x74\x5f\x69\x64']));if(_0x5bb4a4[_0x5ea575(0x100,'\x38\x6f\x26\x57')+'\x63\x65']&&!_0x5bb4a4[_0x5ea575(0x143,'\x55\x69\x4f\x55')+_0x5ea575(0xad,'\x41\x6f\x41\x62')]&&_0x3bddd2?.[_0x5ea575(0xd4,'\x39\x58\x50\x21')]===![])continue;const _0x571a8e=_0x2a3668?.[_0x5ea575(0x10b,'\x49\x78\x29\x5d')](String(_0x116928[_0x5ea575(0x165,'\x70\x6f\x65\x21')]));if(_0x5bb4a4[_0x5ea575(0xc7,'\x78\x31\x46\x76')]&&_0x571a8e!==undefined&&_0x571a8e[_0x5ea575(0xb3,'\x71\x35\x67\x62')]!==_0x5ea575(0x132,'\x48\x49\x4f\x59')&&(!_0x5bb4a4[_0x5ea575(0xfc,'\x38\x6f\x26\x57')+_0x5ea575(0x126,'\x70\x6f\x65\x21')]||_0x571a8e[_0x5ea575(0x138,'\x6d\x68\x58\x5b')]===_0x5ea575(0x15a,'\x7a\x45\x23\x55')))continue;const _0x577954=typeof _0x116928['\x69\x64']===_0x5ea575(0x158,'\x39\x35\x30\x51')?String(_0x116928['\x69\x64']):String(_0x116928[_0x5ea575(0x103,'\x72\x59\x5a\x37')]),_0x16bc8e=String(_0x116928[_0x5ea575(0x14c,'\x50\x61\x58\x58')]);if(isBannedCandidate(_0x3c7b48,_0x577954,_0x16bc8e))continue;const _0x4e4aca=asStrings(_0x116928[_0x5ea575(0xd6,'\x58\x2a\x73\x67')+_0x5ea575(0x122,'\x6e\x2a\x5a\x6e')]),_0x4c70ef=withoutTaskDomainSignals(_0x4e4aca),_0x23c90e=typeof _0x116928[_0x5ea575(0x157,'\x70\x6f\x65\x21')]===_0x5ea575(0x158,'\x39\x35\x30\x51')?String(_0x116928[_0x5ea575(0xb6,'\x37\x37\x56\x79')]):undefined,_0x2decfd=typeof _0x116928[_0x5ea575(0x16b,'\x58\x2a\x73\x67')]==='\x73\x74\x72\x69\x6e\x67'?String(_0x116928[_0x5ea575(0x125,'\x56\x66\x66\x76')]):undefined,_0x4ed88b=_0x4c70ef[_0x5ea575(0x135,'\x49\x78\x29\x5d')](_0x4a71a1=>_0x52c71f[_0x5ea575(0x120,'\x37\x28\x78\x42')](_0x4a71a1)),_0x553b37={'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x4c70ef,'\x67\x65\x6e\x65\x49\x64':_0x577954,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x23c90e,'\x73\x75\x6d\x6d\x61\x72\x79':_0x2decfd};_0x3bddd2?.[_0x5ea575(0x147,'\x2a\x5a\x72\x24')]!==![]&&(_0x571a8e===undefined||_0x571a8e[_0x5ea575(0xf9,'\x39\x58\x50\x21')]===_0x5ea575(0x11f,'\x6d\x68\x58\x5b'))&&_0x1ad5d2({'\x67\x65\x6e\x65\x49\x64':_0x577954,'\x61\x73\x73\x65\x74\x49\x64':_0x16bc8e,'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x4e4aca,'\x76\x69\x65\x77':emptyLearningView(_0x577954),..._0x23c90e?{'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x23c90e}:{},..._0x2decfd?{'\x73\x75\x6d\x6d\x61\x72\x79':_0x2decfd}:{}});if(_0x5a877c>=_0x35eb55)continue;const _0x41df03=_0x4ed88b||hasSelectionAdmissionEvidence(_0x257f93,_0x553b37);if(!_0x41df03){const _0x5616cc=geneGenerationSource(_0x116928,_0x577954);(_0x5616cc===_0x5ea575(0x163,'\x48\x38\x6c\x71')+'\x64'||_0x5616cc===_0x5ea575(0x164,'\x49\x78\x29\x5d'))&&_0x506cab[_0x5ea575(0xb1,'\x38\x4c\x4e\x4c')]({'\x67\x65\x6e\x65\x49\x64':_0x577954,'\x61\x73\x73\x65\x74\x49\x64':_0x16bc8e,'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x4e4aca,'\x76\x69\x65\x77':emptyLearningView(_0x577954),'\x72\x65\x75\x73\x65\x43\x6f\x75\x6e\x74':0x0,'\x67\x65\x6e\x65\x72\x61\x74\x69\x6f\x6e\x53\x6f\x75\x72\x63\x65':_0x5616cc,..._0x23c90e?{'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x23c90e}:{},..._0x2decfd?{'\x73\x75\x6d\x6d\x61\x72\x79':_0x2decfd}:{}});continue;}const _0x356370=await aggregateLearningHistory(_0x49fd83,_0x577954),_0x1b554c=_0x3bddd2?.[_0x5ea575(0xfd,'\x6d\x68\x58\x5b')]!==![]&&(_0x571a8e===undefined||_0x571a8e['\x73\x74\x61\x74\x65']==='\x61\x70\x70\x72\x6f\x76\x65\x64'),_0x4cc71c=combinedReuseSentiment(_0x5bb4a4[_0x5ea575(0xd5,'\x35\x54\x26\x6a')+_0x5ea575(0x10a,'\x31\x62\x62\x28')],_0x577954,String(_0x116928['\x61\x73\x73\x65\x74\x5f\x69\x64']));_0x147de0[_0x5ea575(0x161,'\x78\x31\x46\x76')]({'\x67\x65\x6e\x65\x49\x64':_0x577954,'\x61\x73\x73\x65\x74\x49\x64':String(_0x116928[_0x5ea575(0x11b,'\x79\x38\x24\x67')]),'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x4e4aca,'\x76\x69\x65\x77':_0x356370,'\x72\x65\x75\x73\x65\x43\x6f\x75\x6e\x74':_0x356370[_0x5ea575(0x15d,'\x6e\x54\x46\x78')]+_0x356370[_0x5ea575(0xfa,'\x68\x50\x67\x4b')],..._0x23c90e?{'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x23c90e}:{},..._0x2decfd?{'\x73\x75\x6d\x6d\x61\x72\x79':_0x2decfd}:{},..._0x4cc71c!==undefined?{'\x72\x65\x75\x73\x65\x41\x64\x6a\x75\x73\x74':_0x4cc71c}:{},'\x65\x78\x70\x6c\x6f\x72\x61\x74\x69\x6f\x6e\x45\x6c\x69\x67\x69\x62\x6c\x65':_0x1b554c});}if(_0x5bb4a4[_0x5ea575(0xdf,'\x58\x2a\x73\x67')+_0x5ea575(0xe3,'\x67\x34\x69\x43')]&&_0x5bb4a4[_0x5ea575(0xf2,'\x38\x4c\x4e\x4c')+_0x5ea575(0xdb,'\x23\x33\x23\x6c')][_0x5ea575(0x14a,'\x6c\x6b\x63\x21')]>0x236*-0x7+-0xd29+-0x1*-0x1ca3){if(_0x5ea575(0x117,'\x2a\x45\x5d\x40')!=='\x64\x4b\x47\x57\x6e'){const _0xf6b71e=new Set(_0x147de0['\x6d\x61\x70'](_0x4a47ae=>_0x4a47ae['\x67\x65\x6e\x65\x49\x64'])),_0x5af144=new Set(_0x147de0['\x6d\x61\x70'](_0x5c9495=>_0x5c9495[_0x5ea575(0xc9,'\x71\x35\x67\x62')])['\x66\x69\x6c\x74\x65\x72'](_0x6a203=>_0x6a203!==undefined));for(const _0xb0d81b of _0x5bb4a4['\x68\x75\x62\x43\x61\x6e\x64\x69'+'\x64\x61\x74\x65\x73']){if(!passesInjectedCandidateGates(_0xb0d81b,_0x5bb4a4,_0xcf8df,_0x2a3668))continue;if(_0xf6b71e[_0x5ea575(0xb4,'\x6a\x25\x6f\x79')](_0xb0d81b[_0x5ea575(0xdd,'\x39\x58\x50\x21')]))continue;if(_0xb0d81b['\x61\x73\x73\x65\x74\x49\x64']&&_0x5af144[_0x5ea575(0xf1,'\x24\x41\x79\x54')](_0xb0d81b[_0x5ea575(0xe1,'\x49\x78\x29\x5d')]))continue;if(isBannedCandidate(_0x3c7b48,_0xb0d81b['\x67\x65\x6e\x65\x49\x64'],_0xb0d81b[_0x5ea575(0x140,'\x37\x28\x78\x42')]))continue;const _0x289c03=_0xb0d81b[_0x5ea575(0xed,'\x38\x6f\x26\x57')+_0x5ea575(0xee,'\x6e\x54\x46\x78')]===undefined?combinedReuseSentiment(_0x5bb4a4[_0x5ea575(0xea,'\x6a\x25\x6f\x79')+_0x5ea575(0x169,'\x37\x67\x75\x47')],_0xb0d81b[_0x5ea575(0x105,'\x2a\x5a\x72\x24')],_0xb0d81b[_0x5ea575(0xda,'\x6d\x68\x58\x5b')]):undefined,_0x3b1d91={..._0xb0d81b,'\x65\x78\x70\x6c\x6f\x72\x61\x74\x69\x6f\x6e\x45\x6c\x69\x67\x69\x62\x6c\x65':![]};_0x147de0[_0x5ea575(0x144,'\x67\x34\x69\x43')](_0x289c03!==undefined?{..._0x3b1d91,'\x72\x65\x75\x73\x65\x41\x64\x6a\x75\x73\x74':_0x289c03}:_0x3b1d91),_0xf6b71e[_0x5ea575(0xca,'\x65\x56\x4f\x5d')](_0xb0d81b[_0x5ea575(0xc3,'\x31\x62\x62\x28')]);if(_0xb0d81b[_0x5ea575(0x14f,'\x48\x38\x6c\x71')])_0x5af144[_0x5ea575(0xd9,'\x50\x50\x55\x23')](_0xb0d81b[_0x5ea575(0xbb,'\x55\x69\x4f\x55')]);}}else _0xd6b454[_0x5ea575(0xcb,'\x24\x48\x35\x29')]({'\x67\x65\x6e\x65\x49\x64':_0x2fcf5c,'\x61\x73\x73\x65\x74\x49\x64':_0x54eae9,'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x378bbb,'\x76\x69\x65\x77':_0x147620(_0x5c981d),'\x72\x65\x75\x73\x65\x43\x6f\x75\x6e\x74':0x0,'\x67\x65\x6e\x65\x72\x61\x74\x69\x6f\x6e\x53\x6f\x75\x72\x63\x65':_0x4e0361,..._0x4b5e7d?{'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x2fdf67}:{},..._0x569a9a?{'\x73\x75\x6d\x6d\x61\x72\x79':_0x37d84d}:{}});}for(const _0x1af7a6 of await _0x49fd83[_0x5ea575(0xf3,'\x58\x79\x37\x44')](_0x5ea575(0xe7,'\x70\x6f\x65\x21'),_0x35eb55)){if(_0x5ea575(0x142,'\x41\x6f\x41\x62')!==_0x5ea575(0xc6,'\x79\x38\x24\x67'))return typeof _0x280998===_0x5ea575(0x141,'\x6e\x2a\x5a\x6e')&&_0x16ccc3['\x74\x72\x69\x6d']()[_0x5ea575(0xbe,'\x78\x31\x46\x76')]>0x8a9*0x1+-0x4e5*0x7+0x199a?_0x12f0d3[_0x5ea575(0x148,'\x24\x41\x79\x54')]():_0xf0c954;else{if(_0x2a3668?.[_0x5ea575(0xb9,'\x37\x37\x56\x79')](String(_0x1af7a6[_0x5ea575(0xf4,'\x48\x38\x6c\x71')]))?.[_0x5ea575(0xa9,'\x79\x38\x24\x67')]!==_0x5ea575(0x162,'\x39\x58\x50\x21'))continue;const _0x1468bb=asStrings(_0x1af7a6[_0x5ea575(0xe8,'\x54\x56\x31\x34')]),_0x56d1d4=asStrings(_0x1af7a6[_0x5ea575(0xbc,'\x70\x6f\x65\x21')]);if(_0x1468bb[_0x5ea575(0xfe,'\x6e\x54\x46\x78')]===-0x1788+-0x1885+0x300d||_0x56d1d4['\x6c\x65\x6e\x67\x74\x68']===0x75a+0x482*-0x7+0xc1a*0x2)continue;const _0x291aac=stringField(_0x1af7a6['\x69\x64'])??String(_0x1af7a6[_0x5ea575(0x124,'\x50\x50\x55\x23')]),_0x57e7d1=stringField(_0x1af7a6[_0x5ea575(0x129,'\x39\x58\x50\x21')]),_0x2aa1ac=withoutTaskDomainSignals(_0x1468bb),_0x352472=_0x2aa1ac[_0x5ea575(0xd3,'\x6e\x54\x46\x78')](_0x811a6=>_0x52c71f['\x68\x61\x73'](_0x811a6))||tagOverlapScore(_0x257f93,{'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x2aa1ac,'\x67\x65\x6e\x65\x49\x64':_0x291aac,'\x73\x75\x6d\x6d\x61\x72\x79':_0x57e7d1})>-0xc11+0xe73+0x5*-0x7a;if(!_0x352472)continue;const _0x27e612=severityOf(_0x1af7a6['\x73\x65\x76\x65\x72\x69\x74\x79']),_0x4d2b47=stringField(_0x1af7a6[_0x5ea575(0x121,'\x65\x56\x4f\x5d')+'\x65']);_0x357518[_0x5ea575(0xfb,'\x35\x54\x26\x6a')]({'\x61\x6e\x74\x69\x47\x65\x6e\x65\x49\x64':_0x291aac,'\x61\x73\x73\x65\x74\x49\x64':String(_0x1af7a6[_0x5ea575(0x159,'\x39\x59\x72\x32')]),'\x74\x72\x69\x67\x67\x65\x72':_0x1468bb,'\x61\x76\x6f\x69\x64':_0x56d1d4,..._0x57e7d1?{'\x73\x75\x6d\x6d\x61\x72\x79':_0x57e7d1}:{},..._0x27e612?{'\x73\x65\x76\x65\x72\x69\x74\x79':_0x27e612}:{},..._0x4d2b47?{'\x72\x61\x74\x69\x6f\x6e\x61\x6c\x65':_0x4d2b47}:{}});}}return{'\x63\x61\x6e\x64\x69\x64\x61\x74\x65\x73':_0x147de0,'\x64\x69\x73\x74\x69\x6c\x6c\x65\x64\x46\x61\x6c\x6c\x62\x61\x63\x6b':_0x506cab,'\x73\x65\x6d\x61\x6e\x74\x69\x63\x43\x6f\x72\x70\x75\x73':_0x4d19a8,'\x61\x6e\x74\x69\x57\x61\x72\x6e\x69\x6e\x67\x73':_0x357518};}export async function assembleCandidates(_0x21f1b8,_0x590db5,_0xf86229={}){const _0x2edd94=_0x5db0aa;return(await assembleSelectionPool(_0x21f1b8,_0x590db5,{..._0xf86229,'\x69\x6e\x63\x6c\x75\x64\x65\x53\x65\x6d\x61\x6e\x74\x69\x63\x43\x6f\x72\x70\x75\x73':![]}))[_0x2edd94(0x131,'\x24\x31\x29\x29')+'\x65\x73'];}
|