@evomap/evolver-core 2.0.0 → 2.0.2
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,339 +1 @@
|
|
|
1
|
-
const FACTUAL_TAIL_PREFIX_TERMS = new Set([
|
|
2
|
-
'after', 'although', 'as', 'because', 'before', 'however', 'since', 'than', 'though',
|
|
3
|
-
'whereas', 'yet',
|
|
4
|
-
]);
|
|
5
|
-
const RELATIVE_TERMS = new Set(['that', 'which', 'who']);
|
|
6
|
-
const SUBORDINATOR_TERMS = new Set(['after', 'as', 'before']);
|
|
7
|
-
const NOMINAL_MODIFIER_TERMS = new Set([
|
|
8
|
-
'access', 'audit', 'backup', 'cold', 'data', 'offline', 'ongoing',
|
|
9
|
-
'policy', 'remote', 'secure', 'security', 'token',
|
|
10
|
-
]);
|
|
11
|
-
const NOMINAL_HEAD_TERMS = new Set([
|
|
12
|
-
'access', 'approval', 'archive', 'audit', 'auditor', 'credentials', 'data', 'details',
|
|
13
|
-
'leak', 'leaks', 'metadata', 'policy', 'receipt', 'records', 'request', 'review', 'server',
|
|
14
|
-
'storage', 'system', 'transit',
|
|
15
|
-
]);
|
|
16
|
-
const MATRIX_NOMINAL_COLLOCATIONS = new Set(['access:policy']);
|
|
17
|
-
const OBJECT_COORDINATOR_TERMS = new Set(['and', 'or', 'then']);
|
|
18
|
-
const FACTUAL_COORDINATOR_TERMS = new Set(['and', 'but', 'then']);
|
|
19
|
-
const TRAILING_MODIFIER_TERMS = new Set([
|
|
20
|
-
'earlier', 'here', 'now', 'soon', 'today', 'tonight', 'there', 'yesterday',
|
|
21
|
-
]);
|
|
22
|
-
const MATRIX_PREDICATE_TERMS = new Set([
|
|
23
|
-
'arrive', 'arrives', 'become', 'becomes', 'exist', 'exists', 'expire', 'expires',
|
|
24
|
-
'leak', 'leaks', 'match', 'matches', 'pass', 'passes', 'remain', 'remains', 'trigger', 'triggers',
|
|
25
|
-
]);
|
|
26
|
-
class ProvidedTargetPrefixClassifier {
|
|
27
|
-
input;
|
|
28
|
-
tokens;
|
|
29
|
-
matchedObjectForms = new Set();
|
|
30
|
-
matchedObjectIndexes = new Set();
|
|
31
|
-
constructor(input) {
|
|
32
|
-
this.input = input;
|
|
33
|
-
this.tokens = input.predicates.tokenize(input.source).tokens;
|
|
34
|
-
}
|
|
35
|
-
classify() {
|
|
36
|
-
const objectPrefixEnd = this.matchObjectPrefix();
|
|
37
|
-
if (objectPrefixEnd < 0)
|
|
38
|
-
return 'none';
|
|
39
|
-
if (this.hasFiniteNonObjectPrefix(objectPrefixEnd))
|
|
40
|
-
return 'conditional';
|
|
41
|
-
const tailStart = this.consumeRemainingObjectTerms(objectPrefixEnd + 1);
|
|
42
|
-
return this.classifyObjectTail(tailStart);
|
|
43
|
-
}
|
|
44
|
-
matchObjectPrefix() {
|
|
45
|
-
const requiredMatches = Math.min(2, this.input.objectForms.length);
|
|
46
|
-
const deferredOverlaps = [];
|
|
47
|
-
for (let tokenIndex = 0; tokenIndex < this.tokens.length; tokenIndex += 1) {
|
|
48
|
-
const [formIndex, ...overlaps] = this.unmatchedObjectFormIndexes(this.valueAt(tokenIndex));
|
|
49
|
-
if (formIndex === undefined)
|
|
50
|
-
continue;
|
|
51
|
-
this.matchedObjectForms.add(formIndex);
|
|
52
|
-
this.matchedObjectIndexes.add(tokenIndex);
|
|
53
|
-
deferredOverlaps.push(...overlaps.map((overlap) => ({ formIndex: overlap, tokenIndex })));
|
|
54
|
-
if (this.matchedObjectForms.size >= requiredMatches)
|
|
55
|
-
return tokenIndex;
|
|
56
|
-
}
|
|
57
|
-
for (const { formIndex, tokenIndex } of deferredOverlaps) {
|
|
58
|
-
if (this.matchedObjectForms.has(formIndex))
|
|
59
|
-
continue;
|
|
60
|
-
this.matchedObjectForms.add(formIndex);
|
|
61
|
-
this.matchedObjectIndexes.add(tokenIndex);
|
|
62
|
-
if (this.matchedObjectForms.size >= requiredMatches) {
|
|
63
|
-
return Math.max(...this.matchedObjectIndexes);
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
return -1;
|
|
67
|
-
}
|
|
68
|
-
unmatchedObjectFormIndexes(value) {
|
|
69
|
-
return this.input.objectForms.flatMap((forms, candidateIndex) => (!this.matchedObjectForms.has(candidateIndex) && forms.has(value) ? [candidateIndex] : []));
|
|
70
|
-
}
|
|
71
|
-
hasFiniteNonObjectPrefix(objectPrefixEnd) {
|
|
72
|
-
const prefix = this.tokens
|
|
73
|
-
.slice(0, objectPrefixEnd + 1)
|
|
74
|
-
.filter((_, index) => !this.matchedObjectIndexes.has(index))
|
|
75
|
-
.map((token) => token.value)
|
|
76
|
-
.join(' ');
|
|
77
|
-
return this.input.predicates.finiteClauseSubjectPolarity(prefix) !== 'absent'
|
|
78
|
-
|| this.input.predicates.hasIndependentAffirmativeAction(prefix, this.input.actionForms);
|
|
79
|
-
}
|
|
80
|
-
skipModifiers(initialIndex) {
|
|
81
|
-
let index = initialIndex;
|
|
82
|
-
while (index < this.tokens.length && this.isSkippableModifier(this.valueAt(index)))
|
|
83
|
-
index += 1;
|
|
84
|
-
return index;
|
|
85
|
-
}
|
|
86
|
-
isSkippableModifier(term) {
|
|
87
|
-
return this.input.lexicon.leadingClauseModifiers.has(term)
|
|
88
|
-
|| TRAILING_MODIFIER_TERMS.has(term)
|
|
89
|
-
|| /ly$/u.test(term);
|
|
90
|
-
}
|
|
91
|
-
consumeRemainingObjectTerms(initialIndex) {
|
|
92
|
-
let index = this.skipModifiers(initialIndex);
|
|
93
|
-
const remaining = new Set(this.input.objectForms.keys());
|
|
94
|
-
for (const matched of this.matchedObjectForms)
|
|
95
|
-
remaining.delete(matched);
|
|
96
|
-
while (index < this.tokens.length) {
|
|
97
|
-
const candidate = [...remaining].find((formIndex) => (this.input.objectForms[formIndex]?.has(this.valueAt(index))));
|
|
98
|
-
if (candidate === undefined)
|
|
99
|
-
break;
|
|
100
|
-
remaining.delete(candidate);
|
|
101
|
-
index = this.skipModifiers(index + 1);
|
|
102
|
-
}
|
|
103
|
-
return index;
|
|
104
|
-
}
|
|
105
|
-
isPastPredicate(term) {
|
|
106
|
-
return term.endsWith('ed')
|
|
107
|
-
|| this.input.lexicon.irregularSimplePast.has(term)
|
|
108
|
-
|| this.input.lexicon.irregularPastParticiples.has(term);
|
|
109
|
-
}
|
|
110
|
-
consumeNominal(initialIndex) {
|
|
111
|
-
let index = this.skipModifiers(initialIndex);
|
|
112
|
-
if (this.input.lexicon.subjectArticles.has(this.valueAt(index)))
|
|
113
|
-
index += 1;
|
|
114
|
-
while (index + 1 < this.tokens.length && this.isSimpleNominalModifier(this.valueAt(index)))
|
|
115
|
-
index += 1;
|
|
116
|
-
if (index < this.tokens.length)
|
|
117
|
-
index += 1;
|
|
118
|
-
return this.skipModifiers(index);
|
|
119
|
-
}
|
|
120
|
-
isSimpleNominalModifier(term) {
|
|
121
|
-
return this.input.predicates.isAttributiveTargetModifier(term) || NOMINAL_MODIFIER_TERMS.has(term);
|
|
122
|
-
}
|
|
123
|
-
isObjectForm(term) {
|
|
124
|
-
return this.input.objectForms.some((forms) => forms.has(term));
|
|
125
|
-
}
|
|
126
|
-
isMatrixPredicate(term) {
|
|
127
|
-
return MATRIX_PREDICATE_TERMS.has(term)
|
|
128
|
-
|| this.input.predicates.isFinitePredicateTerm(term)
|
|
129
|
-
|| (this.input.actionForms.has(term) && !this.isObjectForm(term));
|
|
130
|
-
}
|
|
131
|
-
isNominalHead(term) {
|
|
132
|
-
return NOMINAL_HEAD_TERMS.has(term) || this.isObjectForm(term);
|
|
133
|
-
}
|
|
134
|
-
isNominalModifier(term) {
|
|
135
|
-
return this.input.predicates.isAttributiveTargetModifier(term)
|
|
136
|
-
|| NOMINAL_MODIFIER_TERMS.has(term)
|
|
137
|
-
|| this.isObjectForm(term);
|
|
138
|
-
}
|
|
139
|
-
reachesKnownNominalHead(initialIndex, genericModifierBudget) {
|
|
140
|
-
let index = initialIndex;
|
|
141
|
-
let remainingBudget = genericModifierBudget;
|
|
142
|
-
while (index < this.tokens.length) {
|
|
143
|
-
const term = this.valueAt(index);
|
|
144
|
-
if (this.isNominalHead(term))
|
|
145
|
-
return true;
|
|
146
|
-
if (!this.isNominalModifier(term)) {
|
|
147
|
-
if (remainingBudget <= 0)
|
|
148
|
-
return false;
|
|
149
|
-
remainingBudget -= 1;
|
|
150
|
-
}
|
|
151
|
-
index = this.skipModifiers(index + 1);
|
|
152
|
-
}
|
|
153
|
-
return false;
|
|
154
|
-
}
|
|
155
|
-
isMatrixNominalCollocation(initialIndex) {
|
|
156
|
-
const modifier = this.valueAt(initialIndex);
|
|
157
|
-
let index = this.skipModifiers(initialIndex + 1);
|
|
158
|
-
while (index < this.tokens.length) {
|
|
159
|
-
const term = this.valueAt(index);
|
|
160
|
-
if (this.isNominalHead(term))
|
|
161
|
-
return MATRIX_NOMINAL_COLLOCATIONS.has(`${modifier}:${term}`);
|
|
162
|
-
if (!this.isNominalModifier(term))
|
|
163
|
-
return false;
|
|
164
|
-
index = this.skipModifiers(index + 1);
|
|
165
|
-
}
|
|
166
|
-
return false;
|
|
167
|
-
}
|
|
168
|
-
consumeNominalPhrase(initialIndex) {
|
|
169
|
-
let index = this.skipModifiers(initialIndex);
|
|
170
|
-
const hadArticle = this.input.lexicon.subjectArticles.has(this.valueAt(index));
|
|
171
|
-
if (hadArticle)
|
|
172
|
-
index += 1;
|
|
173
|
-
const prenominal = this.consumePrenominalModifiers(index, hadArticle ? 2 : 1);
|
|
174
|
-
index = prenominal.index;
|
|
175
|
-
const head = this.valueAt(index);
|
|
176
|
-
if (!this.isValidNominalHead(head, prenominal.sawModifier))
|
|
177
|
-
return index;
|
|
178
|
-
return this.consumeGerundComplements(this.skipModifiers(index + 1));
|
|
179
|
-
}
|
|
180
|
-
consumePrenominalModifiers(initialIndex, genericLimit) {
|
|
181
|
-
let index = initialIndex;
|
|
182
|
-
let genericModifiers = 0;
|
|
183
|
-
let sawModifier = false;
|
|
184
|
-
while (index + 1 < this.tokens.length) {
|
|
185
|
-
const nextIndex = this.skipModifiers(index + 1);
|
|
186
|
-
const term = this.valueAt(index);
|
|
187
|
-
if (this.isPrenominalBoundary(nextIndex))
|
|
188
|
-
break;
|
|
189
|
-
const knownModifier = this.isNominalModifier(term);
|
|
190
|
-
const genericModifier = !knownModifier
|
|
191
|
-
&& !this.isNominalHead(term)
|
|
192
|
-
&& genericModifiers < genericLimit
|
|
193
|
-
&& this.reachesKnownNominalHead(nextIndex, genericLimit - genericModifiers - 1);
|
|
194
|
-
if (!knownModifier && !genericModifier)
|
|
195
|
-
break;
|
|
196
|
-
if (genericModifier)
|
|
197
|
-
genericModifiers += 1;
|
|
198
|
-
sawModifier = true;
|
|
199
|
-
index = nextIndex;
|
|
200
|
-
}
|
|
201
|
-
return { index, sawModifier };
|
|
202
|
-
}
|
|
203
|
-
isPrenominalBoundary(nextIndex) {
|
|
204
|
-
const next = this.valueAt(nextIndex);
|
|
205
|
-
return nextIndex >= this.tokens.length
|
|
206
|
-
|| RELATIVE_TERMS.has(next)
|
|
207
|
-
|| this.input.lexicon.conditionalMarkers.has(next)
|
|
208
|
-
|| this.isFactualTailPrefix(next)
|
|
209
|
-
|| this.input.lexicon.subjectArticles.has(next)
|
|
210
|
-
|| (this.isMatrixPredicate(next) && !this.isMatrixNominalCollocation(nextIndex));
|
|
211
|
-
}
|
|
212
|
-
isValidNominalHead(head, sawPrenominalModifier) {
|
|
213
|
-
return Boolean(head)
|
|
214
|
-
&& !RELATIVE_TERMS.has(head)
|
|
215
|
-
&& !this.input.lexicon.conditionalMarkers.has(head)
|
|
216
|
-
&& !this.isFactualTailPrefix(head)
|
|
217
|
-
&& !this.input.lexicon.subjectArticles.has(head)
|
|
218
|
-
&& !this.isMatrixPredicate(head)
|
|
219
|
-
&& (!sawPrenominalModifier || this.isNominalHead(head));
|
|
220
|
-
}
|
|
221
|
-
consumeGerundComplements(initialIndex) {
|
|
222
|
-
let index = initialIndex;
|
|
223
|
-
while (this.valueAt(index).endsWith('ing')) {
|
|
224
|
-
const complementStart = this.skipModifiers(index + 1);
|
|
225
|
-
const complementEnd = this.consumeNominalPhrase(complementStart);
|
|
226
|
-
if (complementEnd <= complementStart)
|
|
227
|
-
break;
|
|
228
|
-
index = complementEnd;
|
|
229
|
-
}
|
|
230
|
-
return index;
|
|
231
|
-
}
|
|
232
|
-
consumeTerminalNominal(initialIndex) {
|
|
233
|
-
const nominalEnd = this.consumeNominalPhrase(initialIndex);
|
|
234
|
-
if (nominalEnd >= this.tokens.length)
|
|
235
|
-
return nominalEnd;
|
|
236
|
-
const prefixHead = this.firstNominalHead(initialIndex, nominalEnd);
|
|
237
|
-
return this.isNominalHead(this.valueAt(nominalEnd))
|
|
238
|
-
&& prefixHead === nominalEnd
|
|
239
|
-
&& this.skipModifiers(nominalEnd + 1) >= this.tokens.length
|
|
240
|
-
? this.tokens.length
|
|
241
|
-
: nominalEnd;
|
|
242
|
-
}
|
|
243
|
-
firstNominalHead(initialIndex, nominalEnd) {
|
|
244
|
-
let index = this.skipModifiers(initialIndex);
|
|
245
|
-
if (this.input.lexicon.subjectArticles.has(this.valueAt(index))) {
|
|
246
|
-
index = this.skipModifiers(index + 1);
|
|
247
|
-
}
|
|
248
|
-
while (index < nominalEnd && !this.isNominalHead(this.valueAt(index))) {
|
|
249
|
-
index = this.skipModifiers(index + 1);
|
|
250
|
-
}
|
|
251
|
-
return index;
|
|
252
|
-
}
|
|
253
|
-
classifyRelativeTail(initialIndex) {
|
|
254
|
-
let index = this.skipModifiers(initialIndex);
|
|
255
|
-
const first = this.valueAt(index);
|
|
256
|
-
if (this.input.lexicon.subjectArticles.has(first)) {
|
|
257
|
-
index = this.consumeNominal(index);
|
|
258
|
-
}
|
|
259
|
-
else if (this.hasElidedPastSubject(index)) {
|
|
260
|
-
index = this.skipModifiers(index + 1);
|
|
261
|
-
}
|
|
262
|
-
while (this.input.lexicon.passiveAuxiliaries.has(this.valueAt(index))) {
|
|
263
|
-
index = this.skipModifiers(index + 1);
|
|
264
|
-
}
|
|
265
|
-
if (!this.isPastPredicate(this.valueAt(index)))
|
|
266
|
-
return 'conditional';
|
|
267
|
-
index = this.skipModifiers(index + 1);
|
|
268
|
-
return this.isFactualTerminalNominal(index);
|
|
269
|
-
}
|
|
270
|
-
hasElidedPastSubject(index) {
|
|
271
|
-
const first = this.valueAt(index);
|
|
272
|
-
return !this.isPastPredicate(first)
|
|
273
|
-
&& !this.input.lexicon.passiveAuxiliaries.has(first)
|
|
274
|
-
&& this.isPastPredicate(this.valueAt(index + 1));
|
|
275
|
-
}
|
|
276
|
-
classifySubordinateTail(initialIndex) {
|
|
277
|
-
let index = this.skipModifiers(initialIndex);
|
|
278
|
-
if (index >= this.tokens.length)
|
|
279
|
-
return 'factual';
|
|
280
|
-
if (this.isPastPredicate(this.valueAt(index)))
|
|
281
|
-
index = this.skipModifiers(index + 1);
|
|
282
|
-
return this.isFactualTerminalNominal(index);
|
|
283
|
-
}
|
|
284
|
-
isFactualTerminalNominal(index) {
|
|
285
|
-
if (index >= this.tokens.length)
|
|
286
|
-
return 'factual';
|
|
287
|
-
return this.consumeTerminalNominal(index) >= this.tokens.length ? 'factual' : 'conditional';
|
|
288
|
-
}
|
|
289
|
-
classifyObjectTail(initialIndex) {
|
|
290
|
-
const index = this.skipModifiers(initialIndex);
|
|
291
|
-
if (index >= this.tokens.length)
|
|
292
|
-
return 'factual';
|
|
293
|
-
const term = this.valueAt(index);
|
|
294
|
-
if (OBJECT_COORDINATOR_TERMS.has(term))
|
|
295
|
-
return this.classifyCoordinatedTail(index + 1);
|
|
296
|
-
if (RELATIVE_TERMS.has(term))
|
|
297
|
-
return this.classifyRelativeTail(index + 1);
|
|
298
|
-
if (this.input.lexicon.commaDelimitedPrepositions.has(term)) {
|
|
299
|
-
return this.classifyObjectTail(this.consumeTerminalNominal(index + 1));
|
|
300
|
-
}
|
|
301
|
-
if (this.input.lexicon.conditionalMarkers.has(term))
|
|
302
|
-
return 'conditional';
|
|
303
|
-
if (SUBORDINATOR_TERMS.has(term))
|
|
304
|
-
return this.classifySubordinateTail(index + 1);
|
|
305
|
-
if (this.isFactualTailPrefix(term))
|
|
306
|
-
return 'factual';
|
|
307
|
-
if (term.endsWith('ing'))
|
|
308
|
-
return this.classifyObjectTail(this.consumeTerminalNominal(index + 1));
|
|
309
|
-
return 'conditional';
|
|
310
|
-
}
|
|
311
|
-
classifyCoordinatedTail(initialIndex) {
|
|
312
|
-
let index = this.skipModifiers(initialIndex);
|
|
313
|
-
if (index >= this.tokens.length)
|
|
314
|
-
return 'factual';
|
|
315
|
-
const coordinatedTerm = this.valueAt(index);
|
|
316
|
-
if (this.input.actionForms.has(coordinatedTerm) && this.isPastPredicate(coordinatedTerm)) {
|
|
317
|
-
index = this.skipModifiers(index + 1);
|
|
318
|
-
if (index >= this.tokens.length)
|
|
319
|
-
return 'factual';
|
|
320
|
-
if (this.input.lexicon.commaDelimitedPrepositions.has(this.valueAt(index))) {
|
|
321
|
-
return this.classifyObjectTail(index);
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
return this.classifyObjectTail(this.consumeTerminalNominal(index));
|
|
325
|
-
}
|
|
326
|
-
isFactualTailPrefix(term) {
|
|
327
|
-
return FACTUAL_TAIL_PREFIX_TERMS.has(term)
|
|
328
|
-
|| this.input.lexicon.commaDelimitedPrepositions.has(term)
|
|
329
|
-
|| FACTUAL_COORDINATOR_TERMS.has(term);
|
|
330
|
-
}
|
|
331
|
-
valueAt(index) {
|
|
332
|
-
return this.tokens[index]?.value ?? '';
|
|
333
|
-
}
|
|
334
|
-
}
|
|
335
|
-
export function classifyProvidedTargetPrefix(input) {
|
|
336
|
-
if (!input.source || input.objectForms.length === 0)
|
|
337
|
-
return 'none';
|
|
338
|
-
return new ProvidedTargetPrefixClassifier(input).classify();
|
|
339
|
-
}
|
|
1
|
+
const _0x554297=_0x2006;(function(_0x312211,_0x2eb7b9){const _0x3688dd=_0x2006,_0x2fb0e2=_0x312211();while(!![]){try{const _0x36645e=parseInt(_0x3688dd(0x342,'\x4c\x78\x61\x67'))/(0x2*-0xbe9+-0x12*0x13e+0x15*0x233)*(-parseInt(_0x3688dd(0x2af,'\x43\x6a\x6c\x65'))/(-0x1e0f+0x2281+-0x2*0x238))+parseInt(_0x3688dd(0x32e,'\x6d\x25\x4d\x32'))/(-0x1f5d+-0x9*0x1c5+0x2f4d)+parseInt(_0x3688dd(0x40d,'\x56\x44\x48\x33'))/(-0x16be+0x1*-0xee3+-0x1*-0x25a5)*(-parseInt(_0x3688dd(0x36c,'\x41\x6a\x36\x68'))/(-0x25d5+0x1*0x25af+-0x1*-0x2b))+parseInt(_0x3688dd(0x254,'\x72\x67\x7a\x59'))/(-0x2672*0x1+-0x1bb*0x16+0x4c8a)*(parseInt(_0x3688dd(0x216,'\x77\x49\x54\x33'))/(0x13f*0x8+-0xa02+0x11))+-parseInt(_0x3688dd(0x38e,'\x26\x68\x42\x70'))/(-0xf3f+-0x5*0x4bb+0x26ee)+-parseInt(_0x3688dd(0x1f6,'\x40\x4b\x4c\x5e'))/(0x13*-0x161+0xe2b+0xc11*0x1)*(-parseInt(_0x3688dd(0x1d5,'\x73\x4c\x31\x69'))/(-0x241a+0x7a5*-0x2+0x336e))+parseInt(_0x3688dd(0x320,'\x42\x6b\x56\x57'))/(0x25ae+0xf47*0x1+0xd*-0x412)*(parseInt(_0x3688dd(0x252,'\x4b\x70\x31\x38'))/(-0x546+0x405*-0x7+0x2175));if(_0x36645e===_0x2eb7b9)break;else _0x2fb0e2['push'](_0x2fb0e2['shift']());}catch(_0x3bb69a){_0x2fb0e2['push'](_0x2fb0e2['shift']());}}}(_0x3ebe,-0x139c7+0x7e5*-0xff+0x10*0xd2f1));const FACTUAL_TAIL_PREFIX_TERMS=new Set([_0x554297(0x1e1,'\x43\x5a\x66\x21'),'\x61\x6c\x74\x68\x6f\x75\x67\x68','\x61\x73',_0x554297(0x40a,'\x31\x38\x74\x73'),_0x554297(0x41d,'\x72\x67\x7a\x59'),_0x554297(0x3cc,'\x6c\x6d\x50\x46'),_0x554297(0x3d4,'\x5a\x36\x4d\x37'),_0x554297(0x2d0,'\x6c\x6d\x50\x46'),_0x554297(0x34a,'\x31\x33\x4d\x72'),_0x554297(0x279,'\x48\x57\x62\x5b'),_0x554297(0x400,'\x64\x5a\x28\x43')]),RELATIVE_TERMS=new Set([_0x554297(0x1fd,'\x43\x5a\x66\x21'),_0x554297(0x3ac,'\x77\x79\x33\x70'),_0x554297(0x23b,'\x4e\x66\x32\x59')]),SUBORDINATOR_TERMS=new Set([_0x554297(0x2b6,'\x64\x5a\x28\x43'),'\x61\x73',_0x554297(0x228,'\x4a\x5a\x63\x49')]),NOMINAL_MODIFIER_TERMS=new Set([_0x554297(0x287,'\x4a\x5a\x63\x49'),_0x554297(0x3f9,'\x42\x6b\x56\x57'),'\x62\x61\x63\x6b\x75\x70','\x63\x6f\x6c\x64',_0x554297(0x2c1,'\x55\x32\x28\x56'),_0x554297(0x220,'\x76\x4f\x68\x56'),_0x554297(0x2f5,'\x4b\x44\x48\x37'),_0x554297(0x2e2,'\x4e\x66\x32\x59'),_0x554297(0x371,'\x6b\x7a\x54\x6a'),_0x554297(0x3cd,'\x66\x69\x6a\x74'),_0x554297(0x30e,'\x31\x33\x4d\x72'),'\x74\x6f\x6b\x65\x6e']),NOMINAL_HEAD_TERMS=new Set([_0x554297(0x2a3,'\x43\x6a\x6c\x65'),_0x554297(0x3a3,'\x61\x78\x61\x68'),_0x554297(0x2c0,'\x43\x6a\x6c\x65'),_0x554297(0x275,'\x6d\x25\x4d\x32'),_0x554297(0x1f1,'\x51\x42\x30\x58'),_0x554297(0x32d,'\x42\x21\x6e\x40')+_0x554297(0x2d6,'\x6d\x29\x21\x5d'),_0x554297(0x25a,'\x31\x33\x4d\x72'),'\x64\x65\x74\x61\x69\x6c\x73',_0x554297(0x2f9,'\x4c\x78\x61\x67'),_0x554297(0x34e,'\x41\x6a\x36\x68'),_0x554297(0x2c2,'\x76\x4f\x68\x56'),_0x554297(0x1ee,'\x77\x69\x64\x71'),_0x554297(0x3fd,'\x4a\x5a\x63\x49'),_0x554297(0x232,'\x37\x63\x6e\x52'),_0x554297(0x390,'\x61\x78\x61\x68'),_0x554297(0x310,'\x37\x63\x6e\x52'),_0x554297(0x21f,'\x6d\x29\x21\x5d'),_0x554297(0x326,'\x49\x5b\x24\x67'),_0x554297(0x418,'\x4e\x66\x32\x59'),_0x554297(0x3ce,'\x57\x77\x78\x23')]),MATRIX_NOMINAL_COLLOCATIONS=new Set([_0x554297(0x387,'\x42\x6b\x56\x57')+_0x554297(0x225,'\x66\x69\x6a\x74')]),OBJECT_COORDINATOR_TERMS=new Set([_0x554297(0x3bc,'\x51\x42\x30\x58'),'\x6f\x72',_0x554297(0x42d,'\x4a\x48\x41\x21')]),FACTUAL_COORDINATOR_TERMS=new Set(['\x61\x6e\x64',_0x554297(0x200,'\x34\x53\x4d\x52'),'\x74\x68\x65\x6e']),TRAILING_MODIFIER_TERMS=new Set(['\x65\x61\x72\x6c\x69\x65\x72',_0x554297(0x1e9,'\x48\x57\x62\x5b'),'\x6e\x6f\x77',_0x554297(0x2f0,'\x32\x40\x37\x77'),_0x554297(0x28c,'\x64\x5a\x28\x43'),_0x554297(0x35c,'\x31\x33\x4d\x72'),_0x554297(0x3a6,'\x73\x4c\x31\x69'),_0x554297(0x368,'\x34\x53\x4d\x52')+'\x79']),MATRIX_PREDICATE_TERMS=new Set([_0x554297(0x3a1,'\x40\x4b\x4c\x5e'),_0x554297(0x217,'\x4b\x44\x48\x37'),_0x554297(0x3ca,'\x49\x5b\x24\x67'),_0x554297(0x3b1,'\x66\x23\x43\x4e'),_0x554297(0x3c7,'\x49\x5b\x24\x67'),_0x554297(0x3ee,'\x40\x4b\x4c\x5e'),_0x554297(0x391,'\x63\x6e\x59\x4a'),'\x65\x78\x70\x69\x72\x65\x73',_0x554297(0x429,'\x41\x6a\x36\x68'),_0x554297(0x22c,'\x72\x67\x7a\x59'),_0x554297(0x319,'\x26\x2a\x58\x29'),_0x554297(0x396,'\x55\x32\x28\x56'),_0x554297(0x2c9,'\x77\x49\x54\x33'),_0x554297(0x360,'\x51\x42\x30\x58'),_0x554297(0x1f5,'\x6d\x25\x4d\x32'),'\x72\x65\x6d\x61\x69\x6e\x73','\x74\x72\x69\x67\x67\x65\x72',_0x554297(0x3aa,'\x73\x4c\x31\x69')]);function _0x3ebe(){const _0x27e652=['\x70\x61\x65\x6c\x41\x43\x6f\x74\x74\x5a\x42\x63\x4f\x71','\x57\x36\x2f\x63\x56\x58\x4c\x79\x57\x36\x39\x64\x41\x38\x6f\x7a','\x57\x52\x42\x63\x55\x72\x58\x38\x77\x61','\x65\x75\x4f\x76\x57\x34\x37\x63\x51\x71','\x57\x35\x6c\x63\x4a\x43\x6f\x4e','\x57\x51\x53\x71\x57\x34\x54\x71\x44\x57\x61','\x79\x53\x6b\x42\x42\x53\x6b\x50\x69\x57','\x67\x6d\x6f\x43\x57\x51\x57','\x57\x36\x33\x63\x53\x57\x72\x76\x57\x36\x7a\x6b\x72\x38\x6f\x5a','\x67\x5a\x72\x47\x57\x4f\x47\x57\x71\x43\x6b\x78\x57\x37\x6d','\x61\x43\x6b\x75\x72\x38\x6f\x68\x57\x36\x35\x31','\x41\x76\x48\x51\x78\x61','\x7a\x76\x4a\x64\x4e\x47','\x57\x35\x4a\x63\x48\x53\x6f\x58\x76\x53\x6f\x41\x70\x59\x70\x63\x4d\x71','\x72\x47\x70\x64\x48\x49\x4c\x6d\x68\x76\x61','\x75\x43\x6b\x4c\x66\x43\x6f\x61\x57\x51\x78\x63\x4b\x47','\x6f\x61\x76\x67\x7a\x58\x38','\x57\x52\x35\x4d\x57\x50\x6a\x67\x6b\x38\x6b\x4c\x57\x51\x79','\x57\x35\x42\x63\x49\x43\x6f\x53\x78\x6d\x6f\x6e\x66\x49\x69','\x57\x50\x33\x64\x4b\x4d\x74\x64\x48\x5a\x30','\x43\x65\x46\x63\x52\x6d\x6b\x4a\x42\x38\x6f\x68\x6f\x6d\x6b\x38','\x57\x36\x65\x6e\x57\x35\x4a\x63\x4f\x59\x44\x68','\x57\x52\x47\x45\x57\x36\x71\x71\x43\x71','\x62\x43\x6f\x5a\x6c\x6d\x6b\x32\x57\x36\x4f','\x76\x53\x6b\x38\x57\x36\x33\x64\x4d\x53\x6b\x44','\x57\x50\x2f\x63\x49\x72\x34\x48\x57\x52\x68\x64\x52\x43\x6b\x6e\x57\x4f\x53','\x57\x51\x33\x63\x53\x6d\x6b\x42\x45\x68\x42\x64\x51\x49\x52\x64\x4d\x71','\x78\x53\x6b\x36\x57\x37\x68\x64\x53\x53\x6b\x53','\x57\x4f\x4e\x64\x4e\x4d\x5a\x63\x4a\x6d\x6f\x52\x57\x34\x38\x30\x57\x4f\x6d','\x57\x50\x4e\x64\x49\x66\x4e\x63\x4d\x43\x6f\x54\x57\x34\x4b\x4c\x57\x4f\x6d','\x57\x50\x79\x50\x57\x34\x64\x63\x4e\x33\x52\x63\x4a\x4a\x38','\x67\x31\x70\x64\x4e\x6d\x6b\x61\x57\x4f\x39\x6e\x78\x47','\x57\x37\x47\x63\x57\x37\x4e\x64\x54\x38\x6f\x6c\x62\x4a\x69\x30','\x74\x58\x31\x62\x57\x50\x42\x64\x51\x31\x42\x64\x54\x6d\x6b\x34\x57\x52\x4e\x63\x4d\x6d\x6f\x65\x57\x34\x78\x63\x4b\x57','\x57\x36\x65\x6e\x57\x37\x52\x64\x53\x43\x6f\x77','\x57\x52\x47\x5a\x57\x37\x4b\x79\x44\x53\x6b\x33\x7a\x57','\x6e\x48\x30\x51\x45\x6d\x6f\x6d\x72\x5a\x64\x63\x4b\x47','\x57\x34\x79\x51\x64\x47\x53\x6f\x57\x51\x68\x63\x49\x75\x71','\x6e\x30\x64\x63\x47\x57\x52\x63\x4e\x4d\x79','\x74\x38\x6b\x70\x6f\x53\x6f\x74\x57\x50\x30','\x66\x59\x50\x6f\x57\x4f\x6d\x30\x74\x43\x6b\x41\x57\x36\x61','\x57\x50\x52\x64\x4b\x66\x37\x64\x4c\x67\x52\x63\x54\x72\x4e\x64\x4c\x71','\x57\x52\x4b\x33\x57\x37\x75\x73\x46\x43\x6b\x39\x42\x43\x6b\x6d','\x57\x36\x30\x72\x57\x36\x46\x64\x52\x43\x6f\x6d\x65\x74\x53\x37','\x57\x35\x4c\x38\x57\x35\x61\x48\x46\x5a\x62\x5a\x67\x57','\x6a\x58\x6d\x33\x42\x47','\x7a\x53\x6b\x50\x77\x63\x6d','\x57\x50\x68\x64\x4b\x4b\x56\x64\x52\x68\x65','\x57\x50\x47\x49\x57\x4f\x78\x63\x47\x43\x6b\x62\x57\x37\x71\x65\x57\x34\x47','\x61\x43\x6b\x4c\x74\x6d\x6f\x73\x57\x37\x44\x30\x57\x35\x33\x63\x51\x71','\x6e\x4b\x37\x63\x48\x58\x78\x63\x50\x32\x5a\x64\x51\x6d\x6b\x39','\x57\x34\x79\x33\x6d\x72\x57\x71','\x57\x37\x4f\x6f\x57\x37\x4b','\x71\x71\x42\x64\x4e\x61','\x57\x35\x78\x63\x47\x43\x6f\x39\x77\x38\x6f\x70\x66\x72\x5a\x63\x47\x57','\x57\x50\x53\x6f\x57\x4f\x64\x63\x49\x43\x6b\x6c\x57\x36\x34\x4a\x57\x34\x53','\x70\x6d\x6b\x56\x57\x34\x6d','\x78\x4e\x62\x78\x57\x4f\x50\x6b\x57\x51\x37\x63\x53\x47','\x57\x34\x56\x64\x49\x65\x64\x63\x56\x73\x61\x75\x71\x47','\x57\x50\x74\x64\x47\x4b\x68\x63\x49\x6d\x6f\x4d\x57\x34\x47','\x57\x36\x33\x63\x55\x59\x4b\x46\x57\x50\x69\x42\x57\x34\x4a\x64\x4c\x71','\x57\x36\x79\x6d\x57\x36\x74\x64\x4f\x71','\x57\x35\x62\x62\x57\x51\x6c\x63\x56\x6d\x6f\x31\x63\x6d\x6b\x51\x57\x52\x33\x64\x55\x47','\x62\x6d\x6b\x63\x7a\x53\x6f\x63\x57\x37\x62\x34\x57\x35\x64\x63\x56\x61','\x57\x35\x74\x64\x54\x77\x68\x63\x56\x6d\x6f\x6e\x57\x37\x79\x4c','\x57\x37\x56\x64\x48\x4c\x37\x63\x50\x71','\x68\x53\x6b\x41\x71\x6d\x6f\x71\x57\x35\x44\x59\x57\x35\x46\x63\x4f\x71','\x7a\x4e\x71\x41\x6d\x65\x57\x4a\x57\x51\x70\x64\x52\x53\x6f\x5a\x57\x37\x2f\x64\x4d\x57\x33\x63\x4a\x71','\x57\x36\x50\x49\x57\x4f\x2f\x63\x50\x43\x6f\x63\x46\x49\x74\x63\x4e\x47','\x71\x30\x54\x75\x57\x36\x5a\x63\x56\x62\x46\x64\x4a\x61','\x57\x51\x74\x63\x53\x38\x6f\x4c\x57\x34\x66\x7a\x77\x57','\x57\x51\x38\x75\x57\x35\x79','\x57\x36\x4e\x64\x49\x65\x78\x63\x50\x61','\x57\x36\x4f\x6a\x57\x36\x2f\x64\x50\x38\x6f\x77\x6e\x4a\x47\x68','\x63\x6d\x6b\x64\x72\x6d\x6f\x6a\x57\x37\x72\x38\x57\x35\x2f\x63\x48\x47','\x57\x51\x71\x68\x6e\x43\x6f\x51\x57\x50\x48\x63\x57\x50\x30','\x57\x51\x4c\x4d\x57\x50\x6a\x6c\x6a\x43\x6b\x35\x57\x52\x53\x6c','\x6f\x72\x43\x38\x79\x53\x6f\x41\x72\x74\x53','\x57\x4f\x69\x6e\x57\x4f\x42\x63\x4d\x43\x6b\x6e\x57\x35\x53\x72','\x57\x4f\x70\x64\x47\x4b\x74\x63\x49\x43\x6f\x48\x57\x34\x38\x4f\x57\x4f\x30','\x79\x53\x6b\x67\x74\x53\x6b\x55\x6d\x4b\x6a\x69\x57\x51\x4b','\x57\x36\x68\x63\x53\x71\x6e\x69\x57\x37\x6a\x6c\x41\x53\x6f\x63','\x65\x75\x4f\x6d\x57\x34\x5a\x63\x55\x71\x52\x63\x52\x57','\x57\x52\x4b\x2f\x57\x36\x38','\x64\x6d\x6b\x65\x77\x53\x6f\x66\x57\x34\x4c\x4f\x57\x35\x68\x63\x4f\x47','\x61\x73\x58\x67\x57\x50\x4f\x78\x73\x38\x6b\x71\x57\x36\x34','\x61\x53\x6f\x4f\x6f\x38\x6b\x54\x57\x36\x39\x41','\x57\x50\x75\x4f\x57\x35\x68\x63\x4b\x68\x64\x63\x48\x63\x6d','\x75\x66\x35\x76\x57\x36\x56\x63\x54\x48\x6c\x64\x4d\x74\x30','\x57\x51\x74\x63\x54\x53\x6f\x48\x77\x6d\x6b\x4e\x57\x36\x6e\x59\x57\x36\x6d','\x6f\x72\x43\x51\x42\x6d\x6f\x6e\x71\x47','\x57\x51\x5a\x63\x4b\x5a\x7a\x2f\x74\x61','\x57\x36\x53\x70\x57\x36\x56\x64\x54\x38\x6f\x72\x67\x74\x65\x6d','\x57\x51\x52\x63\x4c\x49\x61','\x64\x38\x6f\x2f\x6d\x43\x6b\x54\x57\x37\x50\x71\x57\x35\x71','\x57\x51\x5a\x63\x49\x74\x50\x51\x74\x53\x6f\x65\x57\x4f\x39\x49','\x57\x50\x4a\x63\x50\x43\x6f\x58\x74\x38\x6b\x52\x57\x34\x31\x38\x57\x37\x6d','\x57\x37\x54\x55\x45\x38\x6b\x57\x57\x4f\x43','\x64\x53\x6f\x37\x6f\x71','\x57\x50\x64\x64\x4e\x30\x2f\x63\x49\x43\x6f\x48\x57\x35\x47\x47\x57\x50\x79','\x57\x37\x52\x63\x4f\x49\x79\x72\x66\x38\x6b\x38','\x75\x30\x6a\x61\x57\x35\x74\x63\x54\x47\x64\x64\x4b\x74\x43','\x42\x31\x5a\x64\x4a\x53\x6f\x54\x6f\x68\x42\x63\x4d\x71','\x6f\x73\x58\x78\x7a\x72\x6e\x30\x57\x37\x2f\x64\x51\x61','\x67\x31\x78\x63\x4d\x4e\x57\x75\x73\x58\x46\x63\x49\x4a\x52\x63\x4f\x49\x42\x63\x4a\x76\x43','\x57\x50\x2f\x63\x4d\x47\x47\x32\x57\x52\x68\x64\x55\x6d\x6b\x6a\x57\x52\x34','\x57\x36\x76\x4f\x79\x53\x6b\x4d\x57\x50\x53','\x57\x50\x52\x64\x4c\x4c\x37\x64\x55\x4e\x68\x63\x4c\x58\x2f\x64\x47\x71','\x57\x51\x4a\x63\x55\x6d\x6f\x67\x57\x34\x66\x67\x74\x53\x6b\x2b\x70\x71','\x61\x6d\x6f\x72\x57\x52\x4f\x2b\x42\x38\x6f\x32\x70\x65\x30','\x57\x36\x33\x63\x52\x61\x62\x59\x57\x36\x4c\x63\x41\x53\x6f\x55','\x75\x4b\x66\x6c\x57\x37\x33\x63\x53\x62\x64\x64\x4b\x74\x34','\x57\x34\x7a\x55\x57\x37\x4f\x31\x45\x71\x76\x59','\x57\x37\x61\x63\x57\x34\x38','\x57\x52\x78\x63\x50\x6d\x6f\x2b\x57\x34\x31\x66\x74\x71','\x57\x35\x48\x55\x57\x36\x75','\x57\x50\x30\x62\x57\x4f\x70\x63\x4d\x6d\x6b\x6e\x57\x37\x34\x31\x57\x35\x79','\x57\x35\x34\x74\x76\x4b\x54\x44\x78\x33\x74\x63\x54\x57','\x57\x51\x56\x63\x53\x38\x6b\x77\x43\x32\x38','\x57\x36\x43\x62\x57\x36\x64\x64\x4f\x43\x6f\x62\x62\x62\x65\x41','\x73\x53\x6b\x4e\x66\x38\x6f\x6c\x57\x51\x52\x63\x4a\x71','\x74\x6d\x6b\x35\x6d\x6d\x6f\x6b\x57\x51\x42\x63\x49\x65\x43\x43','\x57\x36\x43\x6e\x57\x34\x46\x63\x50\x73\x44\x31\x57\x34\x61','\x57\x35\x34\x50\x76\x31\x58\x45','\x57\x50\x37\x64\x47\x32\x4a\x64\x48\x4a\x4f','\x57\x34\x34\x6d\x57\x37\x4a\x64\x51\x71','\x57\x51\x4a\x63\x50\x43\x6f\x4c\x57\x35\x31\x46','\x57\x50\x4e\x64\x4e\x4d\x6c\x64\x4d\x49\x70\x63\x4a\x47','\x72\x53\x6b\x5a\x76\x59\x4c\x7a\x62\x58\x65\x62','\x62\x43\x6b\x45\x78\x53\x6f\x66\x57\x36\x58\x34\x57\x34\x65','\x57\x37\x48\x4b\x57\x50\x4a\x63\x55\x43\x6f\x46\x44\x71','\x63\x75\x64\x64\x4e\x53\x6b\x41\x57\x4f\x4c\x66\x72\x47','\x6d\x43\x6b\x32\x57\x35\x78\x63\x55\x71','\x72\x47\x52\x64\x48\x49\x66\x65\x66\x68\x6c\x63\x4c\x57','\x78\x4b\x58\x70\x57\x37\x5a\x63\x55\x48\x64\x64\x56\x4a\x34','\x57\x36\x6e\x47\x57\x4f\x47','\x65\x38\x6f\x73\x57\x52\x65\x47\x46\x38\x6f\x31\x6c\x77\x34','\x57\x34\x47\x75\x78\x65\x31\x77','\x57\x35\x58\x51\x57\x36\x34\x50\x46\x59\x54\x4f','\x45\x43\x6b\x6c\x77\x49\x6a\x63\x62\x72\x65\x6b','\x57\x50\x52\x64\x4c\x4c\x37\x64\x55\x4e\x68\x63\x4d\x62\x37\x64\x4c\x57','\x72\x68\x72\x76\x57\x50\x48\x42\x57\x4f\x43','\x64\x4c\x4f\x77\x57\x34\x2f\x63\x56\x57\x42\x63\x54\x43\x6b\x6d','\x57\x51\x57\x75\x6c\x6d\x6f\x47\x57\x50\x35\x67\x57\x4f\x69\x4c','\x57\x37\x30\x6a\x57\x35\x70\x63\x55\x73\x66\x42\x57\x35\x4f','\x57\x50\x33\x64\x4b\x4e\x70\x64\x48\x4a\x52\x63\x50\x72\x30\x65','\x57\x50\x56\x64\x4b\x31\x78\x64\x51\x4e\x64\x63\x56\x62\x78\x64\x50\x57','\x77\x47\x5a\x64\x48\x4a\x39\x4f\x66\x30\x42\x63\x4c\x47','\x61\x53\x6f\x55\x6c\x6d\x6b\x71\x57\x37\x48\x77\x57\x35\x79','\x57\x34\x38\x73\x77\x75\x54\x44\x77\x61','\x63\x53\x6f\x4c\x57\x50\x6c\x63\x49\x47','\x62\x53\x6f\x43\x57\x52\x6d\x4d\x42\x38\x6f\x7a\x70\x61','\x68\x65\x53\x71','\x57\x4f\x38\x53\x57\x34\x78\x63\x4a\x68\x42\x63\x51\x4a\x4b','\x57\x34\x4f\x39\x6b\x61\x4f\x66\x57\x52\x64\x63\x4a\x57','\x57\x50\x5a\x63\x47\x57\x71\x49\x57\x50\x78\x64\x54\x6d\x6b\x6d\x57\x51\x6d','\x57\x50\x47\x34\x57\x4f\x2f\x63\x4e\x53\x6b\x66\x57\x37\x6d\x6c\x57\x34\x75','\x57\x50\x4f\x35\x57\x36\x57\x79\x45\x38\x6b\x35\x7a\x43\x6b\x6f','\x68\x6d\x6f\x79\x57\x52\x65\x30\x46\x53\x6f\x57','\x57\x51\x34\x42\x57\x35\x76\x63\x44\x57','\x57\x51\x34\x67\x57\x36\x48\x77\x44\x58\x52\x63\x52\x73\x38','\x74\x77\x4c\x45\x57\x4f\x57','\x57\x4f\x33\x64\x4d\x4d\x33\x64\x47\x63\x56\x63\x51\x47\x79','\x62\x53\x6f\x49\x69\x6d\x6b\x33\x57\x36\x31\x6d','\x74\x53\x6b\x59\x57\x37\x4a\x64\x54\x43\x6b\x36\x57\x50\x69\x37','\x57\x37\x39\x54\x57\x37\x57\x4c\x46\x5a\x62\x73\x67\x57','\x57\x52\x75\x59\x57\x36\x75','\x63\x38\x6b\x73\x6f\x61','\x57\x36\x50\x4c\x57\x50\x38','\x57\x52\x75\x71\x57\x34\x72\x75\x41\x57\x33\x63\x54\x58\x57','\x46\x76\x4a\x64\x4e\x53\x6f\x58\x70\x67\x78\x63\x4a\x38\x6f\x47','\x72\x53\x6b\x4c\x65\x6d\x6f\x77\x57\x52\x37\x63\x4a\x65\x57\x5a','\x70\x61\x65\x63\x79\x53\x6f\x78\x71\x59\x68\x63\x53\x61','\x62\x64\x39\x67\x79\x48\x6a\x59\x57\x37\x52\x64\x4b\x57','\x57\x36\x33\x63\x52\x73\x34\x74\x57\x50\x75','\x57\x36\x6a\x59\x57\x52\x33\x63\x52\x43\x6f\x6f\x7a\x62\x46\x63\x4b\x61','\x57\x50\x33\x63\x54\x38\x6f\x6b\x75\x38\x6b\x4a\x57\x36\x4c\x39\x57\x37\x79','\x57\x4f\x38\x76\x57\x36\x65','\x7a\x38\x6b\x4a\x76\x49\x6e\x63\x65\x57\x57','\x57\x50\x38\x53\x57\x34\x52\x63\x4a\x77\x42\x63\x49\x49\x65','\x68\x38\x6f\x47\x57\x4f\x4e\x63\x4d\x38\x6b\x43\x6e\x38\x6b\x2f','\x57\x51\x30\x5a\x57\x37\x75','\x57\x4f\x53\x47\x57\x37\x70\x63\x48\x6d\x6f\x30\x63\x38\x6b\x33\x57\x52\x6d','\x57\x51\x34\x42\x57\x34\x69','\x74\x6d\x6b\x35\x6c\x53\x6f\x65\x57\x52\x4a\x63\x4c\x78\x4b\x70','\x57\x37\x35\x52\x79\x71','\x57\x51\x56\x63\x53\x38\x6b\x63\x79\x32\x6d','\x61\x38\x6f\x77\x57\x52\x79\x4a\x72\x38\x6f\x33\x6c\x66\x43','\x57\x4f\x42\x63\x4d\x5a\x30\x47\x57\x52\x33\x64\x54\x43\x6b\x68\x57\x51\x43','\x57\x34\x42\x64\x54\x43\x6b\x59\x63\x38\x6f\x38\x57\x36\x66\x68\x57\x34\x74\x63\x4b\x43\x6f\x79\x66\x47','\x57\x52\x46\x63\x4c\x4a\x50\x4a\x73\x6d\x6f\x6e','\x72\x38\x6b\x56\x68\x43\x6f\x65\x57\x52\x37\x63\x4b\x4b\x57','\x57\x4f\x2f\x64\x4a\x30\x64\x63\x49\x6d\x6f\x52\x57\x34\x38\x68\x57\x4f\x30','\x6d\x58\x53\x32\x7a\x53\x6f\x79\x78\x4a\x5a\x63\x4f\x57','\x57\x4f\x37\x63\x54\x6d\x6f\x46\x7a\x6d\x6f\x52\x6e\x63\x47','\x67\x43\x6f\x6f\x57\x50\x69\x59\x46\x53\x6f\x51\x69\x75\x79','\x57\x37\x74\x63\x56\x57\x66\x6f\x57\x36\x6a\x4e\x45\x57','\x57\x37\x38\x52\x6a\x61\x30\x6e\x57\x51\x46\x63\x49\x30\x71','\x57\x51\x64\x63\x54\x38\x6b\x78\x44\x77\x70\x64\x47\x62\x78\x64\x47\x57','\x57\x50\x30\x46\x57\x51\x74\x63\x47\x38\x6b\x66\x57\x37\x6d\x6c\x57\x34\x75','\x57\x51\x46\x63\x4f\x53\x6f\x54','\x57\x37\x47\x63\x57\x35\x56\x63\x50\x74\x79','\x57\x52\x38\x57\x69\x43\x6f\x48\x57\x35\x4e\x63\x47\x62\x47\x45\x57\x50\x35\x44\x64\x61','\x61\x73\x48\x41\x57\x50\x47\x35\x71\x71','\x6c\x66\x42\x63\x4f\x57\x74\x63\x4e\x4e\x68\x64\x50\x43\x6b\x53','\x57\x37\x33\x63\x54\x64\x34\x61\x68\x6d\x6b\x49','\x63\x38\x6f\x37\x6f\x53\x6b\x62\x57\x37\x76\x77\x57\x35\x37\x64\x53\x71','\x65\x38\x6f\x6a\x57\x4f\x38\x48\x42\x38\x6f\x2b\x69\x75\x79','\x7a\x43\x6b\x75\x43\x53\x6b\x72\x6e\x4c\x35\x6d\x57\x51\x65','\x57\x37\x75\x4a\x57\x34\x4e\x63\x55\x49\x44\x78\x57\x34\x64\x64\x55\x71','\x41\x43\x6b\x71\x45\x6d\x6b\x5a\x6a\x75\x4b','\x41\x6d\x6b\x41\x43\x6d\x6b\x34\x70\x4c\x48\x6f\x57\x51\x53','\x57\x34\x4b\x71\x71\x71','\x57\x50\x33\x64\x4b\x4d\x2f\x64\x4e\x64\x52\x63\x4a\x4a\x65\x66','\x57\x51\x6e\x36\x57\x51\x50\x6f\x69\x6d\x6b\x4b\x57\x52\x79\x51','\x73\x33\x31\x41\x57\x4f\x58\x43\x57\x4f\x42\x63\x4f\x68\x65','\x64\x38\x6f\x2f\x6a\x38\x6b\x4a\x57\x36\x31\x78','\x57\x36\x6a\x56\x57\x50\x52\x63\x4f\x6d\x6f\x4c\x44\x71\x70\x63\x4c\x71','\x57\x50\x74\x64\x4d\x76\x78\x64\x56\x4e\x68\x63\x55\x71','\x57\x37\x71\x46\x77\x65\x54\x71\x78\x32\x68\x63\x53\x61','\x71\x78\x39\x6c\x57\x4f\x50\x42','\x57\x35\x56\x64\x47\x66\x71','\x65\x75\x4f\x76\x57\x34\x34','\x65\x6d\x6b\x79\x69\x4a\x6c\x63\x56\x53\x6b\x77\x57\x52\x64\x64\x4a\x47','\x57\x52\x6c\x63\x4f\x6d\x6f\x38\x57\x35\x48\x4d\x75\x43\x6b\x32\x6d\x71','\x57\x51\x56\x64\x49\x77\x74\x64\x4b\x73\x46\x63\x49\x62\x6d\x44','\x57\x4f\x30\x4c\x57\x34\x5a\x63\x4c\x57','\x46\x30\x78\x63\x54\x6d\x6b\x68\x79\x43\x6f\x42\x66\x43\x6b\x32','\x57\x36\x71\x67\x57\x37\x6c\x64\x52\x43\x6f\x62\x68\x5a\x4b','\x57\x35\x57\x79\x72\x4d\x6e\x43\x74\x31\x5a\x63\x54\x57','\x67\x77\x61\x77\x57\x34\x2f\x63\x56\x57\x42\x63\x54\x43\x6b\x6c','\x64\x43\x6f\x37\x6a\x71','\x44\x66\x5a\x63\x56\x43\x6b\x35','\x46\x43\x6b\x4e\x72\x47','\x57\x50\x64\x64\x4e\x75\x4a\x64\x4e\x67\x4e\x63\x55\x62\x74\x64\x4c\x47','\x57\x36\x2f\x64\x4a\x4d\x6e\x43\x72\x6d\x6f\x59\x57\x50\x6a\x36\x57\x51\x79','\x76\x6d\x6f\x32\x45\x61','\x57\x50\x6c\x64\x47\x66\x4b','\x75\x30\x72\x61\x57\x37\x52\x63\x52\x73\x33\x64\x4c\x4a\x75','\x45\x38\x6b\x4e\x77\x71','\x57\x51\x61\x5a\x57\x36\x75\x4c\x44\x6d\x6b\x58\x7a\x71','\x71\x43\x6b\x41\x68\x38\x6f\x77\x57\x52\x2f\x63\x53\x4c\x57\x46','\x57\x52\x6c\x63\x56\x6d\x6b\x62\x7a\x78\x37\x64\x53\x62\x2f\x64\x53\x61','\x7a\x33\x6e\x72\x57\x50\x50\x6d\x57\x50\x56\x63\x4b\x4d\x4b','\x57\x35\x37\x63\x56\x6d\x6f\x31\x72\x53\x6f\x41\x6b\x4a\x4e\x63\x49\x71','\x70\x63\x58\x71\x74\x58\x76\x31\x57\x37\x37\x64\x4c\x57','\x57\x36\x44\x4b\x57\x4f\x70\x63\x50\x43\x6f\x6f\x46\x57\x57','\x57\x36\x70\x63\x55\x62\x4c\x45\x57\x37\x75','\x6d\x53\x6b\x4e\x57\x35\x78\x63\x55\x6d\x6b\x75','\x57\x37\x64\x63\x51\x47\x72\x79\x57\x36\x54\x64\x46\x61','\x57\x36\x46\x63\x4f\x5a\x30\x62\x64\x71','\x57\x51\x75\x52\x6c\x53\x6f\x54\x57\x50\x4c\x62\x57\x4f\x43\x6f','\x57\x34\x33\x64\x4d\x30\x4e\x63\x52\x63\x57\x32\x76\x58\x79','\x72\x30\x39\x6a\x57\x36\x5a\x63\x56\x63\x78\x64\x4a\x61','\x74\x62\x58\x6d\x57\x36\x74\x63\x4a\x74\x33\x63\x55\x38\x6b\x70\x57\x51\x61','\x76\x6d\x6f\x59\x45\x43\x6b\x43','\x6a\x38\x6b\x4c\x57\x35\x4e\x63\x55\x53\x6b\x51\x57\x52\x54\x65\x68\x61','\x57\x51\x56\x63\x4b\x64\x50\x39\x7a\x6d\x6f\x6f\x57\x50\x4c\x34','\x57\x50\x6c\x63\x52\x38\x6b\x78\x43\x4e\x37\x64\x50\x72\x56\x64\x48\x71','\x57\x35\x69\x74\x71\x4c\x54\x68','\x57\x35\x38\x32\x6c\x71\x61\x68\x57\x52\x30','\x57\x34\x62\x39\x57\x37\x6d\x4b\x44\x73\x44\x4e\x64\x47','\x65\x38\x6f\x4f\x6c\x6d\x6b\x47\x57\x37\x62\x43\x57\x35\x56\x64\x4f\x61','\x57\x37\x61\x7a\x57\x34\x2f\x63\x55\x74\x7a\x42\x57\x34\x79','\x45\x66\x7a\x30\x76\x6d\x6f\x52\x69\x38\x6b\x4e\x57\x36\x53','\x57\x36\x6a\x59\x57\x52\x42\x63\x52\x43\x6f\x7a\x79\x47\x56\x63\x49\x71','\x44\x30\x66\x78\x57\x37\x71','\x57\x37\x4f\x67\x57\x36\x46\x64\x50\x43\x6f\x6c\x68\x47','\x75\x43\x6b\x52\x46\x38\x6f\x5a\x57\x51\x54\x45\x57\x36\x37\x64\x48\x38\x6b\x4c\x69\x6d\x6f\x74','\x68\x38\x6f\x71\x57\x52\x79\x39\x41\x38\x6f\x30\x61\x66\x53','\x77\x53\x6f\x2b\x42\x53\x6b\x6c\x68\x57','\x69\x30\x5a\x63\x49\x58\x46\x63\x4d\x71','\x69\x72\x43\x47\x78\x38\x6f\x79\x71\x5a\x4b','\x57\x51\x74\x63\x54\x6d\x6b\x78\x7a\x67\x71','\x57\x36\x6d\x79\x57\x34\x6c\x63\x53\x59\x35\x72\x57\x34\x43','\x57\x37\x42\x63\x54\x47\x58\x70','\x70\x72\x6d\x33','\x57\x50\x56\x63\x48\x57\x79\x33\x57\x52\x42\x64\x51\x61','\x57\x4f\x6c\x64\x4d\x66\x34','\x57\x36\x44\x70\x57\x50\x74\x63\x4f\x43\x6f\x65\x46\x47\x70\x63\x4e\x71','\x66\x65\x4f\x67','\x43\x6d\x6b\x30\x71\x63\x48\x70\x69\x62\x43\x63','\x57\x50\x4f\x6e\x57\x4f\x42\x63\x50\x6d\x6b\x6e\x57\x37\x53\x62','\x63\x38\x6f\x37\x6f\x47','\x57\x36\x7a\x47\x57\x4f\x2f\x63\x52\x38\x6f\x66\x44\x71\x42\x63\x56\x47','\x57\x51\x6d\x64\x69\x53\x6f\x39','\x57\x34\x69\x34\x6e\x71\x4f\x6d\x57\x4f\x56\x63\x49\x66\x4f','\x57\x36\x6c\x63\x48\x73\x47\x76\x68\x71','\x57\x51\x6e\x4e\x57\x4f\x58\x41\x6f\x61','\x7a\x65\x52\x64\x4f\x38\x6f\x54\x6f\x68\x52\x63\x48\x6d\x6f\x61','\x57\x4f\x56\x63\x4a\x4a\x66\x49\x77\x38\x6f\x66\x57\x50\x72\x2f','\x67\x49\x7a\x43','\x6a\x30\x2f\x63\x49\x57\x42\x63\x4e\x4b\x78\x64\x4f\x38\x6b\x4d','\x57\x36\x76\x4a\x57\x52\x7a\x62\x6a\x53\x6f\x50\x45\x38\x6b\x77\x57\x37\x78\x64\x54\x53\x6f\x45\x72\x71','\x57\x35\x6e\x47\x57\x37\x47\x5a\x41\x73\x4c\x4a\x6c\x47','\x57\x4f\x6c\x63\x49\x6d\x6f\x41\x57\x34\x58\x2b','\x66\x43\x6f\x65\x57\x4f\x33\x63\x4a\x53\x6b\x31','\x57\x50\x6c\x63\x52\x43\x6f\x48\x74\x53\x6b\x39','\x62\x43\x6b\x71\x77\x47','\x57\x50\x71\x53\x57\x35\x33\x63\x4d\x4e\x56\x63\x4a\x49\x4e\x63\x4f\x71','\x71\x43\x6b\x69\x57\x36\x48\x4a\x6f\x43\x6b\x50\x6f\x4d\x54\x55\x41\x38\x6b\x58\x57\x36\x47','\x73\x62\x78\x64\x4e\x73\x7a\x74\x68\x76\x65','\x45\x75\x78\x63\x51\x38\x6b\x6d\x41\x43\x6f\x68\x66\x38\x6b\x4e','\x61\x53\x6b\x78\x6c\x57','\x57\x4f\x43\x7a\x57\x4f\x4a\x63\x48\x53\x6b\x6e\x57\x37\x4b\x72\x57\x36\x75','\x57\x50\x6c\x64\x49\x65\x74\x63\x47\x53\x6f\x4c\x57\x35\x69\x56\x57\x4f\x6d','\x78\x57\x42\x64\x47\x5a\x50\x61\x6f\x76\x79','\x57\x4f\x47\x30\x57\x35\x44\x58\x75\x61','\x57\x51\x42\x63\x55\x6d\x6b\x45\x43\x32\x70\x64\x4f\x57','\x79\x4b\x68\x63\x51\x53\x6b\x38\x7a\x43\x6f\x42','\x6f\x48\x71\x49\x7a\x38\x6f\x71\x72\x64\x61','\x57\x51\x34\x67\x57\x36\x54\x79\x42\x47\x68\x63\x51\x4a\x79','\x57\x37\x69\x61\x57\x34\x52\x63\x4f\x5a\x66\x44\x57\x35\x6c\x64\x48\x47','\x74\x6d\x6b\x38\x57\x37\x2f\x64\x50\x43\x6b\x58\x57\x51\x61','\x57\x51\x2f\x63\x56\x6d\x6b\x67\x44\x78\x2f\x64\x49\x72\x4a\x64\x4d\x57','\x57\x36\x72\x54\x57\x50\x6c\x63\x52\x38\x6f\x75','\x74\x43\x6b\x52\x64\x43\x6f\x4a\x57\x51\x6c\x63\x4a\x30\x61\x6a','\x57\x51\x75\x7a\x57\x34\x62\x36\x42\x61\x5a\x63\x52\x74\x65','\x44\x38\x6b\x4a\x75\x59\x4c\x7a\x62\x47','\x57\x4f\x5a\x64\x49\x65\x56\x63\x49\x43\x6f\x48\x57\x35\x75\x4d\x57\x51\x65','\x57\x4f\x4e\x64\x51\x67\x4a\x64\x4d\x64\x37\x63\x48\x58\x43\x35','\x57\x51\x69\x6e\x57\x34\x62\x65','\x7a\x38\x6b\x71\x46\x38\x6b\x33\x6a\x61','\x78\x62\x2f\x64\x48\x49\x6e\x6d\x67\x76\x64\x63\x4c\x47','\x45\x75\x78\x63\x51\x57','\x66\x43\x6f\x50\x57\x4f\x42\x63\x49\x6d\x6b\x4c\x70\x47','\x57\x35\x4e\x63\x47\x6d\x6f\x31\x72\x53\x6f\x44\x65\x63\x52\x63\x4b\x47','\x57\x37\x4a\x63\x54\x59\x65\x46\x57\x4f\x38\x62\x57\x4f\x4a\x64\x47\x61','\x57\x50\x75\x72\x57\x37\x68\x63\x47\x53\x6f\x51\x70\x38\x6b\x32','\x6d\x6d\x6b\x56\x57\x34\x6c\x63\x53\x57','\x66\x6d\x6b\x32\x79\x43\x6f\x65\x57\x34\x4b','\x57\x50\x69\x35\x57\x37\x6d\x43','\x57\x37\x4a\x63\x52\x63\x65\x62\x68\x6d\x6b\x6f\x57\x52\x4b','\x57\x50\x53\x62\x57\x4f\x70\x63\x47\x53\x6b\x6a\x57\x37\x79','\x76\x30\x44\x61\x57\x36\x56\x63\x51\x47','\x57\x36\x56\x63\x53\x62\x31\x6f\x57\x37\x6d','\x57\x4f\x42\x63\x4d\x59\x6d\x39\x57\x52\x78\x64\x53\x53\x6b\x67\x57\x51\x53','\x57\x37\x4e\x63\x50\x73\x69','\x67\x58\x30\x50\x79\x53\x6f\x78\x73\x5a\x4e\x63\x4c\x47','\x57\x52\x43\x67\x57\x37\x46\x63\x49\x43\x6f\x58\x6f\x6d\x6b\x4b\x57\x51\x69','\x62\x53\x6b\x62\x70\x49\x5a\x63\x4c\x38\x6b\x36\x57\x52\x56\x64\x49\x47','\x78\x71\x4a\x64\x48\x63\x50\x6c\x63\x57','\x57\x50\x47\x6a\x57\x50\x6c\x63\x48\x43\x6b\x6c\x57\x37\x75\x6c','\x42\x4c\x78\x64\x4a\x6d\x6f\x58\x6a\x4e\x52\x63\x4a\x6d\x6f\x79','\x57\x36\x76\x4f\x43\x38\x6b\x2f\x57\x51\x33\x63\x56\x49\x47\x72','\x57\x35\x6d\x43\x71\x71','\x68\x59\x7a\x42\x57\x4f\x4b\x59\x71\x43\x6b\x71\x57\x34\x47','\x57\x51\x56\x63\x55\x6d\x6b\x61','\x41\x31\x64\x64\x49\x6d\x6f\x57\x6a\x47','\x63\x30\x34\x79\x57\x35\x64\x63\x56\x59\x74\x63\x54\x71','\x57\x36\x70\x63\x54\x63\x79\x76\x57\x4f\x69\x6a\x57\x4f\x42\x64\x4a\x61','\x57\x50\x33\x63\x54\x53\x6f\x32\x77\x43\x6b\x50\x57\x37\x76\x2f\x57\x37\x79','\x6e\x53\x6f\x55\x57\x4f\x6c\x63\x49\x53\x6b\x59\x69\x53\x6b\x42\x74\x47','\x57\x50\x42\x64\x4a\x65\x42\x63\x4d\x6d\x6f\x54\x57\x37\x4f\x31','\x57\x52\x56\x63\x4c\x5a\x6a\x2b\x77\x53\x6f\x69\x57\x50\x54\x4f','\x57\x36\x66\x4e\x7a\x53\x6b\x57\x57\x4f\x46\x63\x54\x64\x4b\x57','\x57\x52\x57\x33\x57\x37\x69','\x57\x37\x53\x69\x57\x36\x70\x64\x54\x6d\x6f\x56\x68\x5a\x6d\x43','\x57\x37\x62\x66\x57\x50\x69\x68\x6d\x31\x5a\x63\x48\x47\x37\x63\x48\x38\x6b\x53\x66\x38\x6f\x45','\x45\x43\x6b\x4a\x74\x73\x39\x69\x64\x62\x79','\x57\x34\x37\x63\x4a\x67\x4a\x64\x51\x30\x70\x63\x48\x59\x46\x64\x4e\x57','\x57\x50\x75\x4f\x57\x34\x46\x63\x4e\x4d\x46\x63\x47\x57','\x6f\x53\x6f\x67\x6a\x53\x6b\x44\x61\x68\x72\x44\x57\x4f\x79\x31','\x57\x50\x38\x4b\x57\x34\x5a\x63\x49\x32\x61','\x71\x4b\x76\x6d\x57\x36\x4e\x63\x4c\x61\x56\x64\x4e\x64\x47','\x57\x37\x4b\x6e\x57\x35\x47','\x57\x37\x4f\x67\x57\x36\x56\x64\x50\x38\x6f\x6b\x66\x73\x71\x2b','\x57\x51\x58\x4f\x57\x50\x39\x42\x6f\x43\x6b\x53\x57\x52\x34','\x57\x51\x35\x4f\x57\x4f\x48\x6f','\x77\x66\x31\x4b\x57\x36\x33\x63\x52\x72\x42\x64\x4b\x74\x6d','\x57\x36\x50\x56\x44\x38\x6b\x48\x57\x50\x57','\x61\x6d\x6f\x31\x6a\x38\x6b\x33\x57\x36\x58\x73\x57\x35\x2f\x64\x4d\x47','\x57\x51\x5a\x63\x53\x53\x6b\x66\x45\x66\x4e\x64\x51\x72\x46\x64\x4d\x61','\x57\x50\x37\x64\x4e\x32\x4a\x64\x4c\x49\x2f\x63\x4e\x58\x43','\x57\x35\x58\x51\x57\x37\x47\x4e\x41\x63\x57','\x57\x4f\x65\x44\x57\x37\x46\x63\x4e\x38\x6f\x52','\x57\x51\x33\x63\x52\x53\x6f\x54\x57\x34\x66\x69\x75\x43\x6b\x38','\x70\x74\x35\x5a\x7a\x57\x48\x4c\x57\x34\x56\x64\x4c\x71','\x57\x51\x46\x63\x55\x43\x6b\x42\x44\x78\x42\x64\x53\x48\x38','\x57\x50\x33\x63\x51\x53\x6f\x4a','\x72\x53\x6b\x4d\x68\x38\x6f\x77\x57\x52\x4a\x63\x49\x65\x38\x65','\x57\x36\x61\x63\x57\x37\x4b','\x57\x36\x31\x4f\x57\x4f\x6d','\x45\x38\x6b\x7a\x45\x38\x6b\x58\x6d\x4b\x6a\x74\x57\x52\x43','\x46\x53\x6b\x4a\x74\x64\x75','\x57\x52\x4f\x6e\x6b\x6d\x6f\x35\x57\x52\x31\x69\x57\x4f\x4f\x63','\x57\x4f\x61\x64\x57\x4f\x68\x63\x49\x43\x6b\x67\x57\x36\x4b','\x57\x4f\x47\x7a\x57\x37\x56\x63\x47\x38\x6f\x35\x6e\x57','\x57\x51\x75\x64\x6c\x38\x6f\x55\x57\x4f\x72\x70','\x57\x50\x70\x63\x4f\x43\x6f\x57\x43\x43\x6b\x48\x57\x36\x72\x36\x57\x37\x65','\x57\x34\x79\x51\x64\x61\x47\x71\x57\x52\x42\x63\x47\x30\x47','\x75\x4b\x6a\x65\x57\x36\x52\x63\x51\x47\x33\x64\x4e\x49\x47','\x57\x36\x2f\x63\x54\x59\x71\x6a\x57\x50\x71\x66\x57\x50\x46\x64\x54\x57','\x77\x43\x6f\x5a\x79\x53\x6b\x41\x64\x43\x6f\x4c\x57\x52\x65','\x57\x50\x53\x30\x57\x36\x53\x75\x44\x53\x6b\x53\x78\x43\x6b\x4d','\x57\x36\x4b\x77\x57\x36\x37\x64\x52\x43\x6f\x77','\x57\x36\x6c\x63\x55\x73\x79','\x69\x53\x6b\x56\x57\x35\x5a\x63\x56\x38\x6b\x63\x57\x50\x76\x75','\x45\x65\x68\x63\x51\x47','\x73\x38\x6f\x2f\x42\x53\x6b\x6c\x63\x43\x6f\x57\x57\x51\x43','\x78\x68\x35\x71\x57\x50\x50\x62\x57\x50\x57','\x71\x38\x6b\x4a\x67\x38\x6f\x78\x57\x52\x47','\x68\x4c\x33\x64\x4b\x43\x6b\x68\x57\x4f\x39\x62\x76\x31\x69','\x57\x51\x37\x63\x55\x6d\x6b\x6b\x46\x33\x74\x64\x51\x72\x71','\x57\x37\x6e\x47\x57\x37\x4b\x59\x45\x63\x31\x4f\x67\x57','\x57\x50\x4f\x49\x57\x34\x46\x63\x4e\x78\x52\x63\x4e\x59\x74\x63\x47\x71','\x6e\x38\x6b\x49\x57\x35\x68\x63\x55\x43\x6b\x75\x57\x52\x31\x67\x64\x61','\x57\x34\x2f\x63\x47\x53\x6f\x35\x76\x6d\x6f\x41\x67\x49\x74\x63\x4a\x47','\x57\x37\x47\x46\x57\x36\x33\x63\x53\x73\x66\x61\x57\x34\x68\x64\x4e\x47','\x57\x36\x4e\x63\x51\x49\x43\x74\x57\x4f\x38\x6a\x57\x50\x37\x64\x51\x57','\x68\x4c\x33\x64\x4b\x43\x6b\x68\x57\x4f\x39\x62\x76\x30\x47','\x57\x4f\x37\x64\x4a\x32\x4a\x64\x47\x59\x56\x63\x56\x58\x6d\x42','\x78\x4b\x6e\x6d\x57\x37\x46\x63\x55\x61\x47','\x44\x6d\x6b\x4c\x76\x49\x6e\x79\x65\x61','\x57\x4f\x47\x78\x57\x34\x39\x73\x79\x62\x5a\x63\x4b\x64\x69','\x57\x36\x33\x63\x4f\x49\x6d\x71\x65\x6d\x6b\x37\x57\x51\x74\x63\x53\x47','\x57\x36\x72\x4e\x79\x71','\x68\x6d\x6f\x4f\x57\x4f\x68\x63\x4a\x6d\x6b\x57\x69\x53\x6b\x51','\x57\x51\x61\x35\x57\x36\x75\x71\x42\x61','\x62\x38\x6b\x45\x71\x6d\x6f\x6f','\x6a\x5a\x48\x62\x42\x62\x35\x59\x57\x36\x2f\x64\x50\x47','\x57\x37\x71\x69\x57\x34\x6c\x63\x53\x59\x6e\x61\x57\x35\x65','\x73\x38\x6b\x4d\x57\x37\x42\x64\x51\x53\x6b\x36\x57\x52\x61\x37\x57\x34\x43','\x57\x51\x65\x68\x6d\x47','\x75\x53\x6f\x32\x7a\x38\x6b\x58\x63\x43\x6f\x57\x57\x52\x61','\x68\x4b\x6d\x76\x57\x35\x42\x63\x51\x71\x5a\x63\x50\x38\x6b\x30','\x57\x37\x66\x66\x57\x37\x7a\x66\x72\x74\x37\x63\x4b\x5a\x53','\x77\x53\x6f\x2b\x43\x57','\x6f\x73\x79\x4c\x79\x53\x6f\x76\x45\x49\x46\x63\x53\x61','\x57\x50\x4f\x49\x57\x34\x46\x63\x49\x4d\x42\x63\x48\x49\x4a\x63\x4f\x61','\x66\x6d\x6f\x79\x57\x52\x6d\x32\x46\x53\x6f\x39','\x57\x35\x37\x64\x4e\x78\x5a\x63\x55\x49\x61\x5a\x78\x58\x4f','\x63\x38\x6f\x48\x57\x50\x53','\x57\x51\x76\x4b\x57\x50\x76\x62\x6c\x43\x6b\x48','\x57\x34\x61\x30\x6b\x61\x43\x66\x57\x51\x47','\x69\x6d\x6b\x48\x57\x35\x56\x63\x52\x38\x6b\x6a\x57\x51\x43','\x45\x43\x6b\x62\x44\x38\x6b\x2f\x6f\x30\x4c\x75','\x57\x50\x4a\x63\x49\x43\x6f\x52\x77\x6d\x6b\x4e\x57\x36\x7a\x36\x57\x37\x69','\x64\x38\x6f\x6f\x6b\x6d\x6b\x54\x57\x37\x76\x56\x57\x34\x4a\x64\x53\x71','\x72\x43\x6b\x41\x43\x38\x6b\x31\x6f\x75\x31\x6c\x57\x4f\x43','\x57\x4f\x4f\x4d\x57\x34\x64\x63\x49\x76\x37\x63\x48\x63\x4e\x63\x48\x57','\x61\x53\x6b\x71\x6b\x63\x46\x63\x47\x6d\x6b\x6b','\x7a\x43\x6b\x30\x75\x63\x6a\x63\x61\x62\x4b\x42','\x57\x52\x68\x63\x4e\x74\x50\x4f\x77\x38\x6f\x73','\x6d\x43\x6b\x47\x57\x35\x74\x63\x55\x43\x6b\x57\x57\x52\x31\x75\x68\x71','\x66\x43\x6b\x73\x6a\x5a\x46\x63\x4c\x47','\x63\x43\x6f\x2b\x57\x4f\x33\x63\x49\x38\x6b\x34\x6e\x43\x6b\x55\x77\x57','\x57\x35\x5a\x63\x48\x43\x6f\x53','\x6e\x48\x34\x4c\x45\x6d\x6f\x6b\x71\x5a\x70\x63\x52\x61','\x57\x35\x2f\x64\x47\x30\x4e\x63\x51\x5a\x65\x43\x77\x61\x79','\x57\x36\x34\x6b\x57\x36\x2f\x64\x54\x53\x6f\x72','\x57\x4f\x70\x63\x56\x61\x47\x47\x57\x52\x78\x64\x53\x53\x6b\x67\x57\x51\x53','\x6c\x65\x56\x63\x4e\x48\x64\x63\x4e\x47','\x75\x6d\x6f\x66\x45\x68\x64\x64\x48\x43\x6b\x4f\x57\x50\x68\x64\x48\x53\x6f\x31\x57\x52\x4e\x63\x51\x47','\x64\x38\x6b\x77\x6d\x59\x56\x63\x4b\x6d\x6b\x77\x57\x52\x4f','\x57\x36\x74\x64\x53\x30\x78\x63\x47\x57\x57','\x78\x38\x6f\x34\x7a\x43\x6b\x6b\x67\x43\x6f\x38\x57\x52\x68\x63\x48\x61','\x57\x51\x65\x49\x57\x36\x47\x68\x43\x6d\x6b\x6d\x41\x6d\x6b\x58','\x57\x36\x64\x63\x52\x63\x65','\x57\x51\x53\x4f\x57\x34\x78\x63\x4d\x67\x46\x63\x47\x4a\x56\x63\x49\x57','\x57\x52\x75\x57\x57\x37\x75\x75\x7a\x57','\x62\x6d\x6b\x63\x45\x43\x6f\x62\x57\x36\x4c\x50\x57\x36\x70\x63\x55\x47','\x76\x43\x6f\x4b\x77\x6d\x6b\x71\x61\x43\x6f\x48\x57\x52\x4a\x63\x53\x57','\x46\x4c\x4a\x64\x4d\x53\x6f\x70\x6f\x4e\x46\x63\x47\x38\x6f\x68','\x57\x50\x43\x64\x57\x4f\x74\x63\x4e\x38\x6b\x44\x57\x37\x43\x61\x57\x36\x6d','\x73\x38\x6b\x34\x57\x37\x33\x64\x53\x6d\x6b\x73\x57\x52\x57\x52\x57\x36\x38','\x57\x36\x76\x55\x57\x4f\x5a\x63\x4f\x53\x6f\x4a\x46\x57\x2f\x63\x4d\x61','\x66\x53\x6f\x30\x6a\x6d\x6b\x4c\x57\x36\x31\x43\x57\x35\x6c\x64\x53\x71','\x57\x34\x4b\x6a\x77\x30\x31\x46\x74\x4b\x79','\x57\x4f\x4a\x64\x4a\x66\x4b','\x61\x53\x6b\x62\x6b\x63\x52\x63\x4d\x53\x6b\x70\x57\x52\x65','\x57\x51\x30\x68\x6e\x43\x6f\x4f','\x6f\x62\x43\x57\x41\x53\x6f\x44\x73\x59\x68\x63\x54\x61','\x57\x51\x5a\x63\x56\x6d\x6b\x45\x77\x33\x42\x64\x54\x62\x68\x64\x4c\x61','\x57\x34\x4e\x63\x48\x38\x6f\x39\x72\x43\x6f\x4a\x66\x49\x4a\x63\x47\x47','\x78\x6d\x6b\x6e\x6e\x53\x6f\x62\x57\x50\x47','\x46\x76\x62\x52\x73\x53\x6f\x2b\x6b\x43\x6b\x54\x57\x36\x4f','\x57\x4f\x46\x63\x52\x38\x6f\x54\x74\x6d\x6b\x64\x57\x36\x39\x33\x57\x37\x34','\x44\x30\x78\x63\x55\x38\x6b\x2b\x44\x43\x6f\x69\x65\x47','\x61\x6d\x6f\x43\x57\x51\x57\x47','\x57\x51\x4a\x63\x56\x38\x6f\x53','\x57\x36\x30\x6e\x57\x36\x37\x64\x54\x38\x6f\x31\x67\x73\x6d\x44','\x57\x37\x4c\x53\x57\x4f\x47','\x77\x65\x62\x76\x57\x36\x5a\x63\x52\x71','\x43\x4b\x50\x46\x77\x6d\x6f\x50\x65\x38\x6b\x33\x57\x36\x79','\x76\x6d\x6b\x42\x57\x37\x68\x64\x4f\x43\x6b\x37','\x67\x43\x6b\x7a\x73\x6d\x6f\x6f','\x6a\x4b\x52\x63\x47\x62\x42\x63\x4e\x32\x37\x64\x51\x43\x6b\x65','\x6f\x43\x6b\x56\x57\x34\x74\x63\x51\x43\x6b\x70\x57\x52\x66\x65\x6f\x47','\x57\x4f\x34\x68\x57\x34\x6c\x63\x4a\x6d\x6f\x52\x6c\x38\x6b\x76\x57\x51\x71','\x65\x43\x6f\x54\x57\x50\x56\x63\x51\x53\x6b\x39\x70\x38\x6b\x52\x73\x47','\x74\x4e\x48\x45\x57\x4f\x31\x43','\x43\x65\x4a\x63\x51\x57','\x65\x77\x42\x64\x4e\x53\x6b\x44\x57\x50\x7a\x38\x71\x68\x4b','\x62\x6d\x6b\x63\x42\x38\x6f\x62\x57\x37\x4c\x50\x57\x34\x42\x63\x51\x71','\x41\x65\x56\x64\x47\x6d\x6f\x52\x6f\x33\x6c\x63\x48\x53\x6f\x56','\x6d\x30\x74\x63\x47\x48\x64\x63\x4a\x30\x6c\x64\x55\x61','\x57\x52\x78\x63\x4d\x49\x44\x55\x71\x43\x6f\x65\x57\x50\x4c\x45','\x57\x51\x53\x6d\x6a\x6d\x6f\x51\x57\x4f\x72\x48\x57\x4f\x65\x7a','\x67\x43\x6f\x74\x57\x51\x38\x4d\x46\x47','\x57\x51\x61\x69\x6d\x43\x6f\x38\x57\x4f\x71','\x57\x4f\x5a\x64\x49\x65\x74\x63\x49\x53\x6f\x38\x57\x35\x6d','\x6c\x43\x6f\x54\x57\x4f\x68\x63\x47\x57','\x43\x31\x48\x51','\x57\x37\x37\x63\x4f\x49\x65\x44\x67\x53\x6b\x32','\x57\x50\x6c\x64\x49\x65\x46\x64\x4c\x63\x33\x63\x4e\x57\x43\x69','\x73\x4e\x54\x45\x57\x50\x58\x42\x57\x51\x42\x63\x51\x67\x57','\x57\x52\x64\x63\x56\x63\x66\x7a\x77\x61','\x57\x51\x58\x47\x57\x50\x4c\x44\x70\x57','\x74\x61\x6c\x64\x51\x6d\x6b\x43\x57\x50\x48\x2b\x7a\x33\x43','\x57\x35\x74\x64\x48\x31\x5a\x63\x56\x74\x65','\x57\x51\x6a\x4f\x57\x4f\x38','\x46\x6d\x6b\x4f\x76\x63\x50\x50\x64\x61\x30\x62','\x6f\x63\x48\x42\x42\x58\x48\x2b\x57\x37\x75','\x57\x50\x6c\x64\x4c\x78\x68\x64\x47\x64\x4f','\x57\x52\x43\x35\x57\x36\x38\x76\x46\x6d\x6b\x53\x79\x6d\x6b\x53','\x57\x51\x61\x76\x64\x6d\x6f\x4f\x57\x4f\x72\x76\x57\x4f\x43\x74','\x6e\x4b\x5a\x63\x4c\x61\x61','\x57\x50\x5a\x63\x48\x57\x69\x38','\x57\x50\x43\x53\x57\x34\x75','\x64\x38\x6b\x77\x6a\x73\x78\x63\x48\x38\x6b\x72','\x41\x53\x6b\x32\x57\x37\x4a\x64\x4f\x43\x6b\x52\x57\x52\x4f\x35\x57\x36\x6d','\x57\x50\x71\x42\x57\x36\x46\x63\x4e\x38\x6f\x37\x70\x47','\x72\x47\x4e\x64\x49\x63\x62\x6d\x66\x4b\x75','\x63\x6d\x6b\x46\x74\x43\x6f\x74\x57\x34\x31\x30\x57\x34\x46\x63\x4f\x61','\x57\x36\x4c\x49\x45\x38\x6b\x57\x57\x4f\x37\x63\x50\x74\x47','\x72\x66\x4c\x45\x57\x50\x35\x6c','\x76\x6d\x6b\x32\x57\x37\x78\x64\x51\x57','\x57\x51\x57\x63\x6b\x6d\x6f\x51\x57\x50\x66\x74\x57\x4f\x53','\x74\x38\x6b\x56\x68\x43\x6f\x72','\x57\x52\x4c\x49\x57\x50\x76\x46\x61\x43\x6b\x49\x57\x52\x79\x6e','\x6c\x66\x42\x63\x56\x71\x37\x63\x47\x33\x70\x64\x56\x6d\x6b\x31','\x57\x4f\x69\x78\x57\x36\x42\x63\x56\x43\x6f\x51\x70\x53\x6b\x4a\x57\x52\x38','\x70\x73\x62\x6b\x43\x48\x35\x31\x57\x34\x56\x64\x4c\x71','\x69\x65\x68\x63\x48\x57\x42\x63\x49\x33\x46\x64\x51\x71','\x46\x38\x6b\x43\x46\x43\x6b\x31\x6a\x30\x62\x63\x57\x52\x43','\x79\x31\x64\x63\x53\x43\x6b\x50\x42\x6d\x6f\x6d\x64\x71','\x69\x30\x5a\x63\x47\x61\x65','\x57\x51\x68\x63\x53\x53\x6b\x43\x7a\x77\x6c\x64\x51\x58\x2f\x64\x50\x71','\x57\x50\x33\x63\x51\x53\x6f\x30\x73\x43\x6b\x36','\x57\x34\x72\x47\x57\x37\x30\x4c\x43\x4a\x43','\x57\x4f\x52\x63\x48\x71\x57\x37\x57\x52\x42\x64\x53\x53\x6b\x67\x57\x51\x30','\x6e\x76\x64\x63\x4e\x71\x30','\x57\x50\x70\x64\x4d\x65\x4a\x63\x48\x38\x6f\x54\x57\x35\x47\x31\x57\x51\x6d','\x67\x6d\x6b\x6a\x71\x6d\x6f\x6d\x57\x37\x6e\x38\x57\x34\x68\x63\x4f\x71','\x57\x50\x75\x79\x57\x4f\x2f\x63\x55\x6d\x6b\x6a\x57\x37\x6d\x6a','\x57\x52\x69\x2f\x57\x36\x71\x64\x7a\x47','\x57\x36\x57\x63\x57\x37\x4a\x64\x56\x71','\x57\x52\x4c\x53\x57\x50\x39\x41\x70\x53\x6b\x4b\x57\x51\x79\x44','\x6d\x38\x6f\x73\x57\x52\x61\x48\x42\x53\x6f\x58\x6a\x4c\x38','\x57\x50\x75\x72\x57\x36\x74\x63\x48\x6d\x6f\x39\x6c\x61','\x57\x52\x68\x63\x4c\x4a\x50\x35\x74\x6d\x6f\x66\x57\x51\x31\x4a','\x57\x50\x4a\x64\x4c\x67\x2f\x64\x48\x4a\x56\x63\x48\x48\x43\x39','\x44\x38\x6b\x53\x75\x63\x76\x46\x6a\x72\x43\x44','\x57\x35\x56\x64\x47\x65\x64\x63\x56\x63\x61\x4e','\x57\x51\x4a\x63\x55\x6d\x6f\x41\x57\x34\x50\x62\x77\x38\x6b\x58\x6c\x61','\x42\x4c\x42\x64\x47\x38\x6f\x4d\x70\x67\x46\x63\x47\x38\x6f\x6f','\x6e\x4c\x64\x63\x4a\x61\x2f\x63\x4a\x32\x64\x64\x55\x6d\x6b\x76','\x67\x43\x6b\x45\x71\x53\x6f\x66\x57\x37\x72\x55','\x57\x51\x4f\x75\x57\x35\x66\x75\x41\x57','\x57\x52\x30\x4c\x57\x35\x69\x41\x46\x6d\x6b\x4f\x45\x43\x6b\x49','\x75\x65\x31\x72\x57\x37\x64\x63\x54\x47\x52\x64\x56\x4a\x34','\x66\x53\x6f\x2b\x57\x4f\x78\x63\x50\x53\x6b\x2f\x6d\x53\x6b\x51\x76\x57','\x57\x36\x31\x4f\x57\x50\x37\x63\x56\x53\x6f\x45','\x79\x4c\x68\x63\x55\x53\x6b\x47\x7a\x43\x6f\x6b\x63\x53\x6b\x73','\x74\x43\x6b\x52\x64\x71','\x57\x52\x56\x64\x52\x78\x35\x70\x57\x35\x66\x7a\x57\x51\x42\x64\x53\x6d\x6b\x58\x69\x74\x70\x63\x51\x47','\x57\x52\x68\x63\x49\x61\x6e\x53\x77\x53\x6f\x76\x57\x51\x31\x4a','\x66\x38\x6f\x2f\x6f\x53\x6b\x57','\x57\x35\x4c\x48\x57\x36\x79\x31\x41\x61','\x57\x52\x42\x63\x4d\x4a\x38','\x68\x4c\x37\x64\x4e\x53\x6b\x68\x57\x4f\x4c\x66\x76\x67\x75','\x57\x4f\x4a\x64\x4a\x32\x37\x64\x48\x59\x2f\x63\x4a\x62\x43','\x57\x50\x75\x61\x57\x37\x56\x63\x4a\x53\x6f\x30\x70\x53\x6b\x32','\x57\x50\x34\x56\x57\x34\x58\x38\x73\x47','\x57\x50\x78\x64\x4d\x4d\x33\x64\x55\x63\x2f\x63\x4d\x72\x4b\x6d','\x68\x4b\x61\x41\x57\x34\x68\x63\x53\x58\x68\x63\x51\x6d\x6b\x49','\x73\x6d\x6b\x52\x62\x47','\x57\x51\x68\x63\x48\x57\x61\x37\x57\x52\x42\x64\x55\x53\x6b\x65\x57\x4f\x43','\x57\x35\x6e\x39\x57\x37\x6d\x4b\x45\x73\x50\x59\x65\x57','\x57\x52\x39\x74\x57\x52\x33\x63\x54\x6d\x6b\x73\x72\x62\x75\x53\x41\x53\x6f\x34\x57\x35\x6a\x6a','\x57\x4f\x52\x63\x4b\x61\x47\x48','\x68\x38\x6b\x71\x77\x53\x6f\x66','\x62\x53\x6f\x43\x57\x52\x6d\x4d\x42\x57','\x70\x43\x6b\x39\x57\x36\x42\x63\x51\x38\x6b\x6c\x57\x52\x31\x65\x6f\x57','\x57\x36\x6a\x56\x57\x4f\x56\x63\x55\x43\x6f\x7a','\x57\x35\x70\x63\x4e\x38\x6f\x73\x78\x6d\x6f\x61\x65\x64\x4a\x63\x4a\x47','\x57\x50\x46\x64\x53\x32\x74\x64\x4c\x63\x4f','\x57\x52\x65\x31\x57\x37\x75\x48\x45\x53\x6b\x30\x41\x6d\x6b\x58','\x57\x35\x34\x6e\x78\x76\x31\x41\x78\x31\x5a\x63\x56\x47','\x66\x65\x65\x65\x57\x35\x64\x63\x52\x47','\x57\x36\x56\x63\x56\x59\x61\x44\x66\x38\x6b\x55\x57\x51\x68\x63\x4b\x57','\x57\x36\x37\x63\x53\x49\x38\x7a\x57\x50\x75\x48\x57\x50\x5a\x64\x47\x71','\x57\x36\x52\x63\x55\x49\x43\x6b\x57\x50\x69','\x57\x50\x37\x64\x54\x77\x37\x64\x4d\x57\x68\x63\x49\x72\x47\x6d','\x57\x52\x42\x63\x53\x53\x6b\x7a\x43\x33\x4e\x64\x54\x71','\x41\x53\x6b\x77\x41\x53\x6b\x31\x6f\x65\x6a\x48\x57\x51\x53','\x41\x66\x6a\x57\x73\x43\x6f\x68\x63\x6d\x6b\x4d\x57\x36\x34','\x57\x51\x38\x68\x69\x53\x6f\x39\x57\x4f\x76\x67\x57\x4f\x69','\x57\x52\x35\x4d\x57\x50\x44\x6b\x69\x53\x6b\x2b','\x63\x43\x6f\x4a\x57\x34\x70\x64\x51\x6d\x6b\x39\x57\x4f\x65\x41\x57\x36\x30','\x42\x31\x7a\x59\x78\x6d\x6f\x4b\x66\x61','\x57\x36\x76\x31\x78\x6d\x6b\x38\x57\x4f\x6c\x63\x55\x64\x6d\x45','\x57\x37\x4f\x5a\x57\x36\x56\x64\x54\x38\x6f\x77\x69\x64\x79\x68','\x65\x76\x46\x64\x4b\x43\x6b\x74\x57\x4f\x35\x65','\x64\x43\x6f\x4a\x57\x4f\x70\x63\x49\x53\x6b\x2f\x6a\x71','\x71\x6d\x6b\x65\x65\x43\x6f\x6c\x57\x4f\x74\x63\x47\x30\x6d\x79','\x57\x52\x33\x63\x4d\x63\x44\x44\x77\x38\x6f\x65\x57\x50\x54\x34','\x57\x52\x35\x48\x57\x50\x6e\x41\x6b\x38\x6b\x4c'];_0x3ebe=function(){return _0x27e652;};return _0x3ebe();}function _0x2006(_0x89f2c0,_0x125f39){_0x89f2c0=_0x89f2c0-(-0x7*-0x50b+0x6*-0x27b+0x94d*-0x2);const _0x54b162=_0x3ebe();let _0x111d12=_0x54b162[_0x89f2c0];if(_0x2006['\x52\x6d\x6c\x4d\x4c\x67']===undefined){var _0x51bc1c=function(_0x29f9e0){const _0x447bd8='\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 _0xfec124='',_0xb6fd88='';for(let _0x47bb55=-0x5*0x1+0xbdf+-0xbda,_0x19f779,_0x4da89d,_0x459379=0x14a2+0x16ce+-0x2b70;_0x4da89d=_0x29f9e0['\x63\x68\x61\x72\x41\x74'](_0x459379++);~_0x4da89d&&(_0x19f779=_0x47bb55%(-0x2*0x86+-0x133*0x20+0x2770)?_0x19f779*(-0x1*-0x1b83+0x1*0x253b+0x27b*-0x1a)+_0x4da89d:_0x4da89d,_0x47bb55++%(0x36d*0x3+0x1e86*-0x1+0xd*0x18f))?_0xfec124+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xe37+0x267f+0x113d*-0x3&_0x19f779>>(-(0x21*-0x3b+-0x26dd*-0x1+-0x1f40)*_0x47bb55&-0x16b*-0x1+-0x2*-0x1+-0x167)):0xeae+0x1d96+-0x1*0x2c44){_0x4da89d=_0x447bd8['\x69\x6e\x64\x65\x78\x4f\x66'](_0x4da89d);}for(let _0x6dd027=0x1c26+0xc55+-0x287b,_0x31c232=_0xfec124['\x6c\x65\x6e\x67\x74\x68'];_0x6dd027<_0x31c232;_0x6dd027++){_0xb6fd88+='\x25'+('\x30\x30'+_0xfec124['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x6dd027)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x167*0x1a+-0x2a*0xd6+-0x14a))['\x73\x6c\x69\x63\x65'](-(-0x12f7+0x6da+-0x1d*-0x6b));}return decodeURIComponent(_0xb6fd88);};const _0x4906a9=function(_0x27571d,_0x3d3402){let _0x5df3ab=[],_0x2148a1=-0x5f9*-0x2+0x1*-0x194e+0xd5c,_0x22bd9e,_0x15399a='';_0x27571d=_0x51bc1c(_0x27571d);let _0x1fd6d1;for(_0x1fd6d1=0xd63*-0x1+-0x18d9+0x263c;_0x1fd6d1<-0x1*-0x6b5+-0x17e8+0x1233;_0x1fd6d1++){_0x5df3ab[_0x1fd6d1]=_0x1fd6d1;}for(_0x1fd6d1=-0xc42*0x1+-0x385*-0xa+-0x16f0;_0x1fd6d1<0x1e45+-0x2*0x363+-0x167f;_0x1fd6d1++){_0x2148a1=(_0x2148a1+_0x5df3ab[_0x1fd6d1]+_0x3d3402['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1fd6d1%_0x3d3402['\x6c\x65\x6e\x67\x74\x68']))%(-0x795*-0x2+-0x1bbd+0xd93),_0x22bd9e=_0x5df3ab[_0x1fd6d1],_0x5df3ab[_0x1fd6d1]=_0x5df3ab[_0x2148a1],_0x5df3ab[_0x2148a1]=_0x22bd9e;}_0x1fd6d1=-0x52b+0x1e1f+-0x18f4,_0x2148a1=-0x1*-0xc5b+-0x535*0x6+-0x5*-0x3c7;for(let _0x227a5d=-0x918+0x13d2+0x2*-0x55d;_0x227a5d<_0x27571d['\x6c\x65\x6e\x67\x74\x68'];_0x227a5d++){_0x1fd6d1=(_0x1fd6d1+(0x5*0x46d+-0x13f1+-0x22f))%(-0x24c5+0x2b1*0x4+0x1b01*0x1),_0x2148a1=(_0x2148a1+_0x5df3ab[_0x1fd6d1])%(-0x1*-0x21af+-0x10d0+0xef*-0x11),_0x22bd9e=_0x5df3ab[_0x1fd6d1],_0x5df3ab[_0x1fd6d1]=_0x5df3ab[_0x2148a1],_0x5df3ab[_0x2148a1]=_0x22bd9e,_0x15399a+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x27571d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x227a5d)^_0x5df3ab[(_0x5df3ab[_0x1fd6d1]+_0x5df3ab[_0x2148a1])%(0xfa6+0xc25*-0x1+-0x281)]);}return _0x15399a;};_0x2006['\x64\x79\x62\x41\x4d\x45']=_0x4906a9,_0x2006['\x42\x7a\x64\x6e\x76\x62']={},_0x2006['\x52\x6d\x6c\x4d\x4c\x67']=!![];}const _0x33c888=_0x54b162[0x80*-0x4+-0x39d*0x5+0x1411],_0x5d15c4=_0x89f2c0+_0x33c888,_0x97ac2b=_0x2006['\x42\x7a\x64\x6e\x76\x62'][_0x5d15c4];return!_0x97ac2b?(_0x2006['\x71\x49\x7a\x71\x64\x63']===undefined&&(_0x2006['\x71\x49\x7a\x71\x64\x63']=!![]),_0x111d12=_0x2006['\x64\x79\x62\x41\x4d\x45'](_0x111d12,_0x125f39),_0x2006['\x42\x7a\x64\x6e\x76\x62'][_0x5d15c4]=_0x111d12):_0x111d12=_0x97ac2b,_0x111d12;}class ProvidedTargetPrefixClassifier{[_0x554297(0x405,'\x67\x78\x40\x33')];[_0x554297(0x23f,'\x4b\x44\x48\x37')];['\x6d\x61\x74\x63\x68\x65\x64\x4f'+_0x554297(0x3b6,'\x4b\x70\x31\x38')+'\x6d\x73']=new Set();[_0x554297(0x206,'\x66\x69\x6a\x74')+_0x554297(0x33a,'\x42\x6b\x56\x57')+_0x554297(0x3cf,'\x45\x6f\x62\x40')]=new Set();constructor(_0x717fa4){const _0x2fa317=_0x554297;this[_0x2fa317(0x305,'\x78\x79\x52\x52')]=_0x717fa4,this[_0x2fa317(0x341,'\x31\x33\x4d\x72')]=_0x717fa4[_0x2fa317(0x2a8,'\x4f\x41\x67\x32')+'\x65\x73'][_0x2fa317(0x231,'\x42\x6b\x56\x57')](_0x717fa4[_0x2fa317(0x416,'\x5e\x4f\x76\x33')])[_0x2fa317(0x29d,'\x45\x6f\x62\x40')];}[_0x554297(0x271,'\x61\x78\x61\x68')](){const _0x3a1a9e=_0x554297,_0x4ac95f=this[_0x3a1a9e(0x208,'\x77\x69\x64\x71')+_0x3a1a9e(0x349,'\x73\x4c\x31\x69')+'\x78']();if(_0x4ac95f<-0xd98+-0x1*0x634+0x2d4*0x7)return _0x3a1a9e(0x388,'\x6d\x25\x4d\x32');if(this[_0x3a1a9e(0x226,'\x31\x38\x74\x73')+_0x3a1a9e(0x348,'\x31\x38\x74\x73')+_0x3a1a9e(0x41a,'\x77\x49\x54\x33')](_0x4ac95f))return _0x3a1a9e(0x316,'\x66\x23\x43\x4e')+_0x3a1a9e(0x1d9,'\x4a\x5a\x63\x49');const _0x9947c3=this[_0x3a1a9e(0x2b2,'\x48\x57\x62\x5b')+_0x3a1a9e(0x307,'\x32\x40\x37\x77')+_0x3a1a9e(0x288,'\x26\x2a\x58\x29')+_0x3a1a9e(0x3a8,'\x73\x4c\x31\x69')](_0x4ac95f+(0x1b*0x10b+-0xb8d*-0x2+-0xa2*0x51));return this[_0x3a1a9e(0x222,'\x51\x42\x30\x58')+'\x4f\x62\x6a\x65\x63\x74\x54\x61'+'\x69\x6c'](_0x9947c3);}[_0x554297(0x224,'\x67\x78\x40\x33')+_0x554297(0x2fe,'\x37\x63\x6e\x52')+'\x78'](){const _0x536292=_0x554297,_0x353042=Math[_0x536292(0x39e,'\x64\x5a\x28\x43')](-0x1*-0x9e5+0x22f+0x609*-0x2,this[_0x536292(0x333,'\x66\x69\x6a\x74')][_0x536292(0x3d1,'\x61\x78\x61\x68')+_0x536292(0x2cc,'\x66\x69\x6a\x74')][_0x536292(0x355,'\x6c\x6d\x50\x46')]),_0x3ab94b=[];for(let _0x3e60ce=-0x12e4+-0x15*0x167+0x3057;_0x3e60ce<this[_0x536292(0x341,'\x31\x33\x4d\x72')]['\x6c\x65\x6e\x67\x74\x68'];_0x3e60ce+=-0x4*-0x6b5+0x17d*-0x1a+0x1*0xbdf){const [_0x46bbde,..._0x21dc77]=this[_0x536292(0x2bd,'\x40\x4b\x4c\x5e')+_0x536292(0x431,'\x41\x6a\x36\x68')+_0x536292(0x3b9,'\x43\x5a\x66\x21')+'\x65\x73'](this['\x76\x61\x6c\x75\x65\x41\x74'](_0x3e60ce));if(_0x46bbde===undefined)continue;this[_0x536292(0x3b2,'\x26\x68\x42\x70')+_0x536292(0x20e,'\x6b\x7a\x54\x6a')+'\x6d\x73'][_0x536292(0x3f1,'\x64\x5a\x28\x43')](_0x46bbde),this[_0x536292(0x375,'\x64\x5a\x28\x43')+_0x536292(0x1d8,'\x61\x78\x61\x68')+_0x536292(0x3ec,'\x47\x78\x42\x4c')][_0x536292(0x3f3,'\x66\x69\x6a\x74')](_0x3e60ce),_0x3ab94b[_0x536292(0x308,'\x6b\x7a\x54\x6a')](..._0x21dc77['\x6d\x61\x70'](_0x298290=>({'\x66\x6f\x72\x6d\x49\x6e\x64\x65\x78':_0x298290,'\x74\x6f\x6b\x65\x6e\x49\x6e\x64\x65\x78':_0x3e60ce})));if(this[_0x536292(0x34c,'\x43\x5a\x66\x21')+_0x536292(0x358,'\x56\x44\x48\x33')+'\x6d\x73'][_0x536292(0x3e1,'\x4f\x41\x67\x32')]>=_0x353042)return _0x3e60ce;}for(const {formIndex:_0x503fc8,tokenIndex:_0x521175}of _0x3ab94b){if('\x44\x55\x43\x53\x64'===_0x536292(0x372,'\x31\x38\x74\x73'))return _0x5be4da(_0x58ccbe)&&!_0x1b2b93[_0x536292(0x214,'\x6c\x6d\x50\x46')](_0x3b04fd)&&!this[_0x536292(0x414,'\x51\x42\x30\x58')][_0x536292(0x2eb,'\x26\x68\x42\x70')]['\x63\x6f\x6e\x64\x69\x74\x69\x6f'+_0x536292(0x329,'\x49\x5b\x24\x67')+'\x72\x73']['\x68\x61\x73'](_0x2549a6)&&!this[_0x536292(0x377,'\x42\x21\x6e\x40')+_0x536292(0x2a0,'\x40\x4b\x4c\x5e')+_0x536292(0x413,'\x63\x6e\x59\x4a')](_0x64006)&&!this['\x69\x6e\x70\x75\x74'][_0x536292(0x1e0,'\x66\x69\x6a\x74')][_0x536292(0x290,'\x4c\x78\x61\x67')+_0x536292(0x1e3,'\x43\x5a\x66\x21')][_0x536292(0x34f,'\x56\x44\x48\x33')](_0x3b522d)&&!this[_0x536292(0x1f3,'\x66\x69\x6a\x74')+_0x536292(0x3f8,'\x26\x68\x42\x70')+'\x65'](_0x4c434e)&&(!_0x42c90e||this['\x69\x73\x4e\x6f\x6d\x69\x6e\x61'+_0x536292(0x212,'\x4f\x41\x67\x32')](_0x20de12));else{if(this[_0x536292(0x2db,'\x73\x4c\x31\x69')+_0x536292(0x313,'\x4a\x5a\x63\x49')+'\x6d\x73'][_0x536292(0x2e9,'\x31\x33\x4d\x72')](_0x503fc8))continue;this['\x6d\x61\x74\x63\x68\x65\x64\x4f'+_0x536292(0x394,'\x6d\x25\x4d\x32')+'\x6d\x73'][_0x536292(0x219,'\x43\x6a\x6c\x65')](_0x503fc8),this[_0x536292(0x244,'\x5e\x4f\x76\x33')+_0x536292(0x2ab,'\x64\x30\x74\x6f')+_0x536292(0x32f,'\x32\x40\x37\x77')][_0x536292(0x3e3,'\x41\x6a\x36\x68')](_0x521175);if(this['\x6d\x61\x74\x63\x68\x65\x64\x4f'+_0x536292(0x2dc,'\x55\x32\x28\x56')+'\x6d\x73'][_0x536292(0x2ef,'\x6b\x7a\x54\x6a')]>=_0x353042){if(_0x536292(0x211,'\x63\x6e\x59\x4a')!==_0x536292(0x211,'\x63\x6e\x59\x4a'))_0x31c232=this[_0x536292(0x38d,'\x6c\x6d\x50\x46')+_0x536292(0x261,'\x37\x63\x6e\x52')](_0x27571d+(-0x3*0x34d+0x4*-0x766+0x2780));else return Math[_0x536292(0x32b,'\x31\x38\x74\x73')](...this[_0x536292(0x24d,'\x77\x79\x33\x70')+_0x536292(0x3d7,'\x4b\x70\x31\x38')+_0x536292(0x1d2,'\x6d\x29\x21\x5d')]);}}}return-(0x1ed4+0x18cd+-0xa0*0x59);}[_0x554297(0x281,'\x56\x44\x48\x33')+_0x554297(0x41c,'\x51\x42\x30\x58')+_0x554297(0x31c,'\x4f\x41\x67\x32')+'\x65\x73'](_0x2b87a5){const _0x5c4e20=_0x554297;return this[_0x5c4e20(0x351,'\x72\x67\x7a\x59')]['\x6f\x62\x6a\x65\x63\x74\x46\x6f'+_0x5c4e20(0x1d7,'\x34\x53\x4d\x52')][_0x5c4e20(0x3ff,'\x4f\x41\x67\x32')]((_0x3b8e6c,_0x63ad37)=>!this[_0x5c4e20(0x2d2,'\x45\x6f\x62\x40')+_0x5c4e20(0x411,'\x67\x78\x40\x33')+'\x6d\x73'][_0x5c4e20(0x214,'\x6c\x6d\x50\x46')](_0x63ad37)&&_0x3b8e6c[_0x5c4e20(0x352,'\x77\x49\x54\x33')](_0x2b87a5)?[_0x63ad37]:[]);}[_0x554297(0x218,'\x6d\x29\x21\x5d')+_0x554297(0x33c,'\x49\x5b\x24\x67')+_0x554297(0x299,'\x64\x30\x74\x6f')](_0x171aea){const _0x1a6324=_0x554297,_0x846656=this['\x74\x6f\x6b\x65\x6e\x73']['\x73\x6c\x69\x63\x65'](0xd8*-0x24+-0x135*-0x3+-0x1*-0x1ac1,_0x171aea+(-0x2435+-0x130*0x1b+0x4446))[_0x1a6324(0x314,'\x64\x30\x74\x6f')]((_0x3ce0a8,_0x2b89e1)=>!this['\x6d\x61\x74\x63\x68\x65\x64\x4f'+_0x1a6324(0x2e4,'\x47\x78\x42\x4c')+_0x1a6324(0x22b,'\x26\x2a\x58\x29')]['\x68\x61\x73'](_0x2b89e1))[_0x1a6324(0x3ad,'\x40\x4b\x4c\x5e')](_0x4a5ebe=>_0x4a5ebe[_0x1a6324(0x331,'\x77\x49\x54\x33')])[_0x1a6324(0x28d,'\x6c\x6d\x50\x46')]('\x20');return this[_0x1a6324(0x37e,'\x77\x69\x64\x71')][_0x1a6324(0x3ae,'\x34\x53\x4d\x52')+'\x65\x73'][_0x1a6324(0x420,'\x49\x5b\x24\x67')+_0x1a6324(0x39f,'\x6c\x6d\x50\x46')+_0x1a6324(0x336,'\x64\x5a\x28\x43')+_0x1a6324(0x2ca,'\x63\x6e\x59\x4a')](_0x846656)!=='\x61\x62\x73\x65\x6e\x74'||this[_0x1a6324(0x427,'\x47\x78\x42\x4c')][_0x1a6324(0x3b4,'\x32\x40\x37\x77')+'\x65\x73'][_0x1a6324(0x1df,'\x26\x68\x42\x70')+_0x1a6324(0x3c0,'\x5a\x36\x4d\x37')+_0x1a6324(0x40c,'\x76\x4f\x68\x56')+'\x65\x41\x63\x74\x69\x6f\x6e'](_0x846656,this['\x69\x6e\x70\x75\x74'][_0x1a6324(0x31b,'\x61\x78\x61\x68')+_0x1a6324(0x404,'\x77\x79\x33\x70')]);}[_0x554297(0x2c7,'\x78\x79\x52\x52')+_0x554297(0x255,'\x4a\x48\x41\x21')](_0x1c8320){const _0x5bdf50=_0x554297;let _0x2194da=_0x1c8320;while(_0x2194da<this[_0x5bdf50(0x318,'\x6c\x6d\x50\x46')][_0x5bdf50(0x260,'\x42\x21\x6e\x40')]&&this[_0x5bdf50(0x2fd,'\x6b\x7a\x54\x6a')+_0x5bdf50(0x227,'\x26\x2a\x58\x29')+'\x69\x65\x72'](this[_0x5bdf50(0x399,'\x21\x6a\x72\x37')](_0x2194da)))_0x2194da+=0x22e7+-0x1083+-0x1263;return _0x2194da;}['\x69\x73\x53\x6b\x69\x70\x70\x61'+_0x554297(0x3b0,'\x61\x78\x61\x68')+'\x69\x65\x72'](_0x31a91c){const _0x9ef89f=_0x554297;return this[_0x9ef89f(0x3b5,'\x77\x79\x33\x70')]['\x6c\x65\x78\x69\x63\x6f\x6e'][_0x9ef89f(0x229,'\x34\x53\x4d\x52')+_0x9ef89f(0x3ab,'\x78\x79\x52\x52')+_0x9ef89f(0x2a5,'\x73\x4c\x31\x69')][_0x9ef89f(0x3d2,'\x66\x69\x6a\x74')](_0x31a91c)||TRAILING_MODIFIER_TERMS[_0x9ef89f(0x243,'\x5a\x36\x4d\x37')](_0x31a91c)||/ly$/u[_0x9ef89f(0x322,'\x40\x4b\x4c\x5e')](_0x31a91c);}[_0x554297(0x272,'\x42\x6b\x56\x57')+_0x554297(0x373,'\x5e\x4f\x76\x33')+_0x554297(0x274,'\x64\x5a\x28\x43')+'\x72\x6d\x73'](_0x54b3ed){const _0x2175a3=_0x554297;let _0x1a8865=this[_0x2175a3(0x42b,'\x63\x6e\x59\x4a')+_0x2175a3(0x1e2,'\x45\x6f\x62\x40')](_0x54b3ed);const _0x233faf=new Set(this[_0x2175a3(0x37a,'\x4b\x70\x31\x38')][_0x2175a3(0x382,'\x21\x6a\x72\x37')+'\x72\x6d\x73'][_0x2175a3(0x26a,'\x4a\x5a\x63\x49')]());for(const _0x5f140c of this[_0x2175a3(0x215,'\x4a\x48\x41\x21')+'\x62\x6a\x65\x63\x74\x46\x6f\x72'+'\x6d\x73'])_0x233faf[_0x2175a3(0x21e,'\x67\x78\x40\x33')](_0x5f140c);while(_0x1a8865<this[_0x2175a3(0x223,'\x4c\x78\x61\x67')]['\x6c\x65\x6e\x67\x74\x68']){if(_0x2175a3(0x328,'\x26\x2a\x58\x29')!==_0x2175a3(0x2b1,'\x64\x30\x74\x6f')){const _0x473692=this['\x76\x61\x6c\x75\x65\x41\x74'](_0x227a5d);return!this[_0x2175a3(0x403,'\x31\x38\x74\x73')+_0x2175a3(0x300,'\x6b\x7a\x54\x6a')](_0x473692)&&!this[_0x2175a3(0x3ea,'\x26\x2a\x58\x29')][_0x2175a3(0x36e,'\x64\x5a\x28\x43')][_0x2175a3(0x3f5,'\x66\x23\x43\x4e')+'\x75\x78\x69\x6c\x69\x61\x72\x69'+'\x65\x73'][_0x2175a3(0x2e1,'\x6a\x61\x4b\x4e')](_0x473692)&&this[_0x2175a3(0x2b7,'\x6c\x6d\x50\x46')+_0x2175a3(0x2f7,'\x77\x79\x33\x70')](this[_0x2175a3(0x24b,'\x34\x53\x4d\x52')](_0x50d67f+(0x3*-0x7ca+-0x1*-0x1fb+0x559*0x4)));}else{const _0x5b5d6f=[..._0x233faf][_0x2175a3(0x303,'\x6b\x7a\x54\x6a')](_0xc120c3=>this[_0x2175a3(0x2dd,'\x77\x49\x54\x33')][_0x2175a3(0x3c2,'\x6d\x25\x4d\x32')+_0x2175a3(0x29a,'\x4f\x41\x67\x32')][_0xc120c3]?.[_0x2175a3(0x1d3,'\x4a\x5a\x63\x49')](this[_0x2175a3(0x236,'\x4e\x66\x32\x59')](_0x1a8865)));if(_0x5b5d6f===undefined)break;_0x233faf[_0x2175a3(0x298,'\x77\x49\x54\x33')](_0x5b5d6f),_0x1a8865=this[_0x2175a3(0x2bb,'\x4c\x78\x61\x67')+_0x2175a3(0x35e,'\x49\x5b\x24\x67')](_0x1a8865+(-0x22cd+0x157e+0xd50));}}return _0x1a8865;}['\x69\x73\x50\x61\x73\x74\x50\x72'+_0x554297(0x2fa,'\x55\x32\x28\x56')](_0x2c6dd4){const _0x410afa=_0x554297;return _0x2c6dd4[_0x410afa(0x2a6,'\x45\x6f\x62\x40')]('\x65\x64')||this[_0x410afa(0x3b5,'\x77\x79\x33\x70')][_0x410afa(0x3db,'\x51\x42\x30\x58')][_0x410afa(0x249,'\x78\x79\x52\x52')+_0x410afa(0x22a,'\x49\x5b\x24\x67')+'\x61\x73\x74'][_0x410afa(0x267,'\x6d\x25\x4d\x32')](_0x2c6dd4)||this[_0x410afa(0x305,'\x78\x79\x52\x52')][_0x410afa(0x27d,'\x67\x78\x40\x33')]['\x69\x72\x72\x65\x67\x75\x6c\x61'+_0x410afa(0x345,'\x6d\x25\x4d\x32')+_0x410afa(0x301,'\x72\x67\x7a\x59')][_0x410afa(0x380,'\x4b\x44\x48\x37')](_0x2c6dd4);}[_0x554297(0x3f6,'\x31\x38\x74\x73')+_0x554297(0x237,'\x21\x6a\x72\x37')](_0x561c78){const _0x1410fc=_0x554297;let _0x4cffaa=this['\x73\x6b\x69\x70\x4d\x6f\x64\x69'+_0x1410fc(0x255,'\x4a\x48\x41\x21')](_0x561c78);if(this[_0x1410fc(0x20a,'\x31\x33\x4d\x72')][_0x1410fc(0x2b0,'\x43\x6a\x6c\x65')][_0x1410fc(0x309,'\x34\x53\x4d\x52')+'\x72\x74\x69\x63\x6c\x65\x73'][_0x1410fc(0x3f2,'\x43\x6a\x6c\x65')](this[_0x1410fc(0x3c5,'\x51\x42\x30\x58')](_0x4cffaa)))_0x4cffaa+=0xbc5+-0x867*-0x1+-0x142b;while(_0x4cffaa+(-0xe3a+0x3*0x98c+-0x77*0x1f)<this['\x74\x6f\x6b\x65\x6e\x73'][_0x1410fc(0x3a5,'\x76\x4f\x68\x56')]&&this[_0x1410fc(0x3b7,'\x63\x6e\x59\x4a')+_0x1410fc(0x3e8,'\x64\x5a\x28\x43')+_0x1410fc(0x359,'\x4b\x44\x48\x37')](this[_0x1410fc(0x277,'\x45\x6f\x62\x40')](_0x4cffaa)))_0x4cffaa+=-0x20ac+-0x3f5+0x61b*0x6;if(_0x4cffaa<this[_0x1410fc(0x347,'\x4f\x41\x67\x32')]['\x6c\x65\x6e\x67\x74\x68'])_0x4cffaa+=-0x13fd+-0x3db*0x7+0x13*0x279;return this[_0x1410fc(0x2fc,'\x31\x33\x4d\x72')+_0x1410fc(0x1fb,'\x67\x78\x40\x33')](_0x4cffaa);}[_0x554297(0x2b8,'\x48\x57\x62\x5b')+_0x554297(0x32c,'\x32\x40\x37\x77')+_0x554297(0x369,'\x4a\x48\x41\x21')](_0x3fb8ef){const _0x5cefb8=_0x554297;return this[_0x5cefb8(0x36d,'\x6d\x25\x4d\x32')][_0x5cefb8(0x1f0,'\x40\x4b\x4c\x5e')+'\x65\x73'][_0x5cefb8(0x25b,'\x61\x78\x61\x68')+_0x5cefb8(0x285,'\x49\x5b\x24\x67')+_0x5cefb8(0x430,'\x5a\x36\x4d\x37')+_0x5cefb8(0x278,'\x6d\x29\x21\x5d')](_0x3fb8ef)||NOMINAL_MODIFIER_TERMS[_0x5cefb8(0x243,'\x5a\x36\x4d\x37')](_0x3fb8ef);}[_0x554297(0x34b,'\x76\x4f\x68\x56')+_0x554297(0x3c8,'\x6d\x25\x4d\x32')](_0x1cb3f1){const _0x440586=_0x554297;return this[_0x440586(0x333,'\x66\x69\x6a\x74')][_0x440586(0x382,'\x21\x6a\x72\x37')+_0x440586(0x1d7,'\x34\x53\x4d\x52')][_0x440586(0x379,'\x4a\x5a\x63\x49')](_0x3f45c5=>_0x3f45c5[_0x440586(0x243,'\x5a\x36\x4d\x37')](_0x1cb3f1));}[_0x554297(0x270,'\x77\x69\x64\x71')+_0x554297(0x1ec,'\x67\x78\x40\x33')+'\x65'](_0x513647){const _0x5ecbb4=_0x554297;return MATRIX_PREDICATE_TERMS[_0x5ecbb4(0x1d6,'\x48\x57\x62\x5b')](_0x513647)||this[_0x5ecbb4(0x414,'\x51\x42\x30\x58')][_0x5ecbb4(0x1e6,'\x64\x30\x74\x6f')+'\x65\x73'][_0x5ecbb4(0x3f7,'\x76\x4f\x68\x56')+_0x5ecbb4(0x42c,'\x49\x5b\x24\x67')+_0x5ecbb4(0x3c6,'\x5a\x36\x4d\x37')](_0x513647)||this[_0x5ecbb4(0x3c9,'\x63\x6e\x59\x4a')][_0x5ecbb4(0x35f,'\x6d\x29\x21\x5d')+_0x5ecbb4(0x41f,'\x5a\x36\x4d\x37')][_0x5ecbb4(0x205,'\x40\x4b\x4c\x5e')](_0x513647)&&!this[_0x5ecbb4(0x354,'\x5e\x4f\x76\x33')+'\x46\x6f\x72\x6d'](_0x513647);}['\x69\x73\x4e\x6f\x6d\x69\x6e\x61'+_0x554297(0x361,'\x64\x5a\x28\x43')](_0x240a00){const _0x1d85da=_0x554297;return NOMINAL_HEAD_TERMS[_0x1d85da(0x380,'\x4b\x44\x48\x37')](_0x240a00)||this[_0x1d85da(0x315,'\x63\x6e\x59\x4a')+_0x1d85da(0x1f4,'\x61\x78\x61\x68')](_0x240a00);}[_0x554297(0x344,'\x77\x79\x33\x70')+'\x6c\x4d\x6f\x64\x69\x66\x69\x65'+'\x72'](_0x3939cf){const _0x2b84b5=_0x554297;return this[_0x2b84b5(0x338,'\x41\x6a\x36\x68')][_0x2b84b5(0x1ef,'\x42\x21\x6e\x40')+'\x65\x73']['\x69\x73\x41\x74\x74\x72\x69\x62'+_0x2b84b5(0x2b3,'\x64\x5a\x28\x43')+_0x2b84b5(0x26f,'\x78\x79\x52\x52')+_0x2b84b5(0x202,'\x41\x6a\x36\x68')](_0x3939cf)||NOMINAL_MODIFIER_TERMS[_0x2b84b5(0x2e1,'\x6a\x61\x4b\x4e')](_0x3939cf)||this[_0x2b84b5(0x370,'\x77\x69\x64\x71')+_0x2b84b5(0x235,'\x64\x5a\x28\x43')](_0x3939cf);}[_0x554297(0x258,'\x6d\x25\x4d\x32')+_0x554297(0x2bc,'\x66\x69\x6a\x74')+_0x554297(0x204,'\x21\x6a\x72\x37')](_0x4cf93f,_0x6e9f89){const _0x3285c2=_0x554297;let _0x580b9e=_0x4cf93f,_0x196067=_0x6e9f89;while(_0x580b9e<this[_0x3285c2(0x33d,'\x67\x78\x40\x33')][_0x3285c2(0x350,'\x26\x2a\x58\x29')]){const _0x392155=this[_0x3285c2(0x40f,'\x43\x5a\x66\x21')](_0x580b9e);if(this[_0x3285c2(0x20b,'\x66\x23\x43\x4e')+_0x3285c2(0x2f8,'\x47\x78\x42\x4c')](_0x392155))return!![];if(!this[_0x3285c2(0x3fb,'\x78\x79\x52\x52')+_0x3285c2(0x1e5,'\x55\x32\x28\x56')+'\x72'](_0x392155)){if('\x6e\x6f\x79\x5a\x42'===_0x3285c2(0x363,'\x4c\x78\x61\x67')){if(_0x196067<=0x129*-0xb+0x95*-0xf+-0x7*-0x312)return![];_0x196067-=0x10f*-0x7+0x2b*-0x7f+0x1cbf;}else{if(_0x2575d7>=this[_0x3285c2(0x27a,'\x47\x78\x42\x4c')][_0x3285c2(0x253,'\x4a\x48\x41\x21')])return _0x3285c2(0x259,'\x31\x33\x4d\x72');return this[_0x3285c2(0x39c,'\x43\x5a\x66\x21')+_0x3285c2(0x376,'\x6d\x25\x4d\x32')+_0x3285c2(0x29c,'\x77\x69\x64\x71')](_0x45ba7c)>=this[_0x3285c2(0x3e0,'\x5a\x36\x4d\x37')][_0x3285c2(0x425,'\x4b\x70\x31\x38')]?'\x66\x61\x63\x74\x75\x61\x6c':_0x3285c2(0x3ba,'\x61\x78\x61\x68')+_0x3285c2(0x324,'\x73\x4c\x31\x69');}}_0x580b9e=this[_0x3285c2(0x26b,'\x55\x32\x28\x56')+_0x3285c2(0x362,'\x40\x4b\x4c\x5e')](_0x580b9e+(-0xe9*-0xb+-0x295*-0x5+0x16eb*-0x1));}return![];}[_0x554297(0x2ee,'\x55\x32\x28\x56')+_0x554297(0x2a1,'\x72\x67\x7a\x59')+'\x6f\x6c\x6c\x6f\x63\x61\x74\x69'+'\x6f\x6e'](_0x27176e){const _0x6265e=_0x554297,_0x5c8cda=this[_0x6265e(0x385,'\x64\x30\x74\x6f')](_0x27176e);let _0x347a2e=this['\x73\x6b\x69\x70\x4d\x6f\x64\x69'+_0x6265e(0x35e,'\x49\x5b\x24\x67')](_0x27176e+(0x229+0x10f3+-0x131b));while(_0x347a2e<this[_0x6265e(0x3af,'\x4e\x66\x32\x59')]['\x6c\x65\x6e\x67\x74\x68']){if(_0x6265e(0x33b,'\x42\x6b\x56\x57')!=='\x66\x62\x6d\x70\x73')_0x54b162=this[_0x6265e(0x1eb,'\x73\x4c\x31\x69')+'\x66\x69\x65\x72\x73'](_0x111d12+(0x130d+-0x61*0x57+0xdeb));else{const _0x1e6ebb=this[_0x6265e(0x1e7,'\x61\x78\x61\x68')](_0x347a2e);if(this['\x69\x73\x4e\x6f\x6d\x69\x6e\x61'+_0x6265e(0x335,'\x49\x5b\x24\x67')](_0x1e6ebb))return MATRIX_NOMINAL_COLLOCATIONS[_0x6265e(0x22e,'\x6d\x29\x21\x5d')](_0x5c8cda+'\x3a'+_0x1e6ebb);if(!this[_0x6265e(0x23a,'\x32\x40\x37\x77')+'\x6c\x4d\x6f\x64\x69\x66\x69\x65'+'\x72'](_0x1e6ebb))return![];_0x347a2e=this[_0x6265e(0x2bb,'\x4c\x78\x61\x67')+_0x6265e(0x25c,'\x77\x79\x33\x70')](_0x347a2e+(0x1*0xbb7+0xbfe+-0x17b4));}}return![];}[_0x554297(0x297,'\x4a\x48\x41\x21')+_0x554297(0x381,'\x56\x44\x48\x33')+_0x554297(0x330,'\x6c\x6d\x50\x46')](_0x39c776){const _0x3a9028=_0x554297;let _0x1b84a7=this[_0x3a9028(0x2fc,'\x31\x33\x4d\x72')+'\x66\x69\x65\x72\x73'](_0x39c776);const _0xc4ca07=this[_0x3a9028(0x351,'\x72\x67\x7a\x59')]['\x6c\x65\x78\x69\x63\x6f\x6e'][_0x3a9028(0x31e,'\x6d\x29\x21\x5d')+_0x3a9028(0x2be,'\x5a\x36\x4d\x37')]['\x68\x61\x73'](this[_0x3a9028(0x3ed,'\x49\x5b\x24\x67')](_0x1b84a7));if(_0xc4ca07)_0x1b84a7+=-0x862+0x236a+-0x1b07;const _0x2c4827=this[_0x3a9028(0x3d3,'\x77\x49\x54\x33')+'\x72\x65\x6e\x6f\x6d\x69\x6e\x61'+_0x3a9028(0x3d6,'\x4a\x5a\x63\x49')+'\x72\x73'](_0x1b84a7,_0xc4ca07?0x1b*-0xd7+-0x11c*0x9+-0x1*-0x20ab:0x344+0x1386+0x13*-0x133);_0x1b84a7=_0x2c4827[_0x3a9028(0x3c1,'\x67\x78\x40\x33')];const _0x50b445=this[_0x3a9028(0x385,'\x64\x30\x74\x6f')](_0x1b84a7);if(!this[_0x3a9028(0x421,'\x31\x33\x4d\x72')+_0x3a9028(0x353,'\x43\x5a\x66\x21')+'\x61\x64'](_0x50b445,_0x2c4827[_0x3a9028(0x2b9,'\x66\x23\x43\x4e')+'\x69\x65\x72']))return _0x1b84a7;return this[_0x3a9028(0x2ba,'\x21\x6a\x72\x37')+_0x3a9028(0x203,'\x4a\x5a\x63\x49')+_0x3a9028(0x3b8,'\x77\x49\x54\x33')](this[_0x3a9028(0x42a,'\x43\x6a\x6c\x65')+_0x3a9028(0x30c,'\x64\x5a\x28\x43')](_0x1b84a7+(0x26d9+0x318+-0x29f0)));}[_0x554297(0x2d1,'\x6b\x7a\x54\x6a')+_0x554297(0x21b,'\x34\x53\x4d\x52')+'\x6c\x4d\x6f\x64\x69\x66\x69\x65'+'\x72\x73'](_0x326e53,_0x31484b){const _0xf0a488=_0x554297;let _0x26e999=_0x326e53,_0x56bade=0xe37+0x229a+-0x30d1,_0x17f092=![];while(_0x26e999+(0x74a+0x232e+-0x611*0x7)<this[_0xf0a488(0x1ff,'\x32\x40\x37\x77')][_0xf0a488(0x3d8,'\x47\x78\x42\x4c')]){if(_0xf0a488(0x234,'\x6c\x6d\x50\x46')===_0xf0a488(0x2c5,'\x31\x38\x74\x73')){const _0x46056a=this[_0xf0a488(0x42a,'\x43\x6a\x6c\x65')+_0xf0a488(0x366,'\x4c\x78\x61\x67')](_0x26e999+(-0x5*-0x21d+0x1169*0x1+-0x1bf9*0x1)),_0x21fe82=this[_0xf0a488(0x3bb,'\x42\x21\x6e\x40')](_0x26e999);if(this[_0xf0a488(0x39b,'\x72\x67\x7a\x59')+_0xf0a488(0x2ea,'\x4a\x5a\x63\x49')+_0xf0a488(0x30d,'\x6d\x25\x4d\x32')](_0x46056a))break;const _0x4bc4da=this[_0xf0a488(0x221,'\x26\x2a\x58\x29')+_0xf0a488(0x29f,'\x78\x79\x52\x52')+'\x72'](_0x21fe82),_0x315caf=!_0x4bc4da&&!this[_0xf0a488(0x412,'\x21\x6a\x72\x37')+_0xf0a488(0x35b,'\x26\x68\x42\x70')](_0x21fe82)&&_0x56bade<_0x31484b&&this[_0xf0a488(0x3f4,'\x26\x2a\x58\x29')+_0xf0a488(0x25e,'\x67\x78\x40\x33')+_0xf0a488(0x292,'\x48\x57\x62\x5b')](_0x46056a,_0x31484b-_0x56bade-(-0x1b4c+0x6ff*-0x5+0x1f24*0x2));if(!_0x4bc4da&&!_0x315caf)break;if(_0x315caf)_0x56bade+=-0x557*-0x3+0x18c2*0x1+-0x28c6;_0x17f092=!![],_0x26e999=_0x46056a;}else{let _0x3d918e=this[_0xf0a488(0x42b,'\x63\x6e\x59\x4a')+'\x66\x69\x65\x72\x73'](_0x29f9e0);const _0x482827=this[_0xf0a488(0x399,'\x21\x6a\x72\x37')](_0x3d918e);if(this[_0xf0a488(0x2dd,'\x77\x49\x54\x33')][_0xf0a488(0x42f,'\x6d\x25\x4d\x32')][_0xf0a488(0x309,'\x34\x53\x4d\x52')+_0xf0a488(0x1e3,'\x43\x5a\x66\x21')][_0xf0a488(0x2e1,'\x6a\x61\x4b\x4e')](_0x482827))_0x3d918e=this[_0xf0a488(0x25d,'\x40\x4b\x4c\x5e')+_0xf0a488(0x409,'\x73\x4c\x31\x69')](_0x3d918e);else this[_0xf0a488(0x2d4,'\x4f\x41\x67\x32')+'\x64\x50\x61\x73\x74\x53\x75\x62'+'\x6a\x65\x63\x74'](_0x3d918e)&&(_0x3d918e=this['\x73\x6b\x69\x70\x4d\x6f\x64\x69'+_0xf0a488(0x1f9,'\x6b\x7a\x54\x6a')](_0x3d918e+(0xfe*0x5+-0x11*0x137+0xfb2)));while(this[_0xf0a488(0x1ed,'\x5a\x36\x4d\x37')][_0xf0a488(0x1e0,'\x66\x69\x6a\x74')][_0xf0a488(0x364,'\x32\x40\x37\x77')+_0xf0a488(0x22d,'\x4b\x44\x48\x37')+'\x65\x73'][_0xf0a488(0x392,'\x26\x2a\x58\x29')](this[_0xf0a488(0x2da,'\x6b\x7a\x54\x6a')](_0x3d918e))){_0x3d918e=this[_0xf0a488(0x3a0,'\x5e\x4f\x76\x33')+_0xf0a488(0x2e6,'\x31\x33\x4d\x72')](_0x3d918e+(-0x1040+-0xd88+0x1dc9));}if(!this['\x69\x73\x50\x61\x73\x74\x50\x72'+_0xf0a488(0x28f,'\x51\x42\x30\x58')](this[_0xf0a488(0x3e2,'\x77\x49\x54\x33')](_0x3d918e)))return _0xf0a488(0x39a,'\x34\x53\x4d\x52')+_0xf0a488(0x1d1,'\x40\x4b\x4c\x5e');return _0x3d918e=this[_0xf0a488(0x3de,'\x4b\x44\x48\x37')+_0xf0a488(0x2e6,'\x31\x33\x4d\x72')](_0x3d918e+(0x242+-0x8cc+0x19*0x43)),this[_0xf0a488(0x2e3,'\x49\x5b\x24\x67')+_0xf0a488(0x2ad,'\x32\x40\x37\x77')+_0xf0a488(0x37b,'\x21\x6a\x72\x37')](_0x3d918e);}}return{'\x69\x6e\x64\x65\x78':_0x26e999,'\x73\x61\x77\x4d\x6f\x64\x69\x66\x69\x65\x72':_0x17f092};}[_0x554297(0x407,'\x32\x40\x37\x77')+_0x554297(0x242,'\x77\x79\x33\x70')+_0x554297(0x233,'\x45\x6f\x62\x40')](_0x58d588){const _0x26da39=_0x554297,_0x2649e9=this['\x76\x61\x6c\x75\x65\x41\x74'](_0x58d588);return _0x58d588>=this[_0x26da39(0x343,'\x6a\x61\x4b\x4e')][_0x26da39(0x346,'\x57\x77\x78\x23')]||RELATIVE_TERMS[_0x26da39(0x20d,'\x5e\x4f\x76\x33')](_0x2649e9)||this[_0x26da39(0x239,'\x43\x5a\x66\x21')][_0x26da39(0x251,'\x4a\x5a\x63\x49')][_0x26da39(0x41e,'\x72\x67\x7a\x59')+_0x26da39(0x42e,'\x6d\x29\x21\x5d')+'\x72\x73'][_0x26da39(0x257,'\x51\x42\x30\x58')](_0x2649e9)||this[_0x26da39(0x2ce,'\x6a\x61\x4b\x4e')+_0x26da39(0x2d7,'\x57\x77\x78\x23')+_0x26da39(0x428,'\x64\x30\x74\x6f')](_0x2649e9)||this[_0x26da39(0x2ec,'\x49\x5b\x24\x67')][_0x26da39(0x1e0,'\x66\x69\x6a\x74')][_0x26da39(0x3d9,'\x41\x6a\x36\x68')+_0x26da39(0x327,'\x37\x63\x6e\x52')][_0x26da39(0x2bf,'\x34\x53\x4d\x52')](_0x2649e9)||this[_0x26da39(0x40e,'\x77\x49\x54\x33')+_0x26da39(0x23d,'\x37\x63\x6e\x52')+'\x65'](_0x2649e9)&&!this[_0x26da39(0x3eb,'\x26\x2a\x58\x29')+_0x26da39(0x23c,'\x76\x4f\x68\x56')+_0x26da39(0x248,'\x42\x6b\x56\x57')+'\x6f\x6e'](_0x58d588);}[_0x554297(0x332,'\x45\x6f\x62\x40')+_0x554297(0x1f7,'\x77\x49\x54\x33')+'\x61\x64'](_0x32b409,_0x375b7b){const _0x3c9141=_0x554297;return Boolean(_0x32b409)&&!RELATIVE_TERMS[_0x3c9141(0x1d3,'\x4a\x5a\x63\x49')](_0x32b409)&&!this[_0x3c9141(0x333,'\x66\x69\x6a\x74')][_0x3c9141(0x3d5,'\x42\x21\x6e\x40')]['\x63\x6f\x6e\x64\x69\x74\x69\x6f'+_0x3c9141(0x2c3,'\x67\x78\x40\x33')+'\x72\x73'][_0x3c9141(0x24e,'\x64\x5a\x28\x43')](_0x32b409)&&!this[_0x3c9141(0x3fa,'\x66\x69\x6a\x74')+_0x3c9141(0x296,'\x76\x4f\x68\x56')+_0x3c9141(0x2a9,'\x56\x44\x48\x33')](_0x32b409)&&!this[_0x3c9141(0x2dd,'\x77\x49\x54\x33')][_0x3c9141(0x3a2,'\x4a\x48\x41\x21')][_0x3c9141(0x21a,'\x21\x6a\x72\x37')+_0x3c9141(0x302,'\x6d\x29\x21\x5d')][_0x3c9141(0x357,'\x66\x23\x43\x4e')](_0x32b409)&&!this[_0x3c9141(0x417,'\x6b\x7a\x54\x6a')+_0x3c9141(0x410,'\x77\x69\x64\x71')+'\x65'](_0x32b409)&&(!_0x375b7b||this[_0x3c9141(0x3fb,'\x78\x79\x52\x52')+_0x3c9141(0x2cf,'\x4c\x78\x61\x67')](_0x32b409));}[_0x554297(0x36f,'\x76\x4f\x68\x56')+_0x554297(0x23e,'\x43\x6a\x6c\x65')+_0x554297(0x269,'\x72\x67\x7a\x59')](_0x2bd9af){const _0x59ac71=_0x554297;let _0x5bf652=_0x2bd9af;while(this[_0x59ac71(0x3c5,'\x51\x42\x30\x58')](_0x5bf652)[_0x59ac71(0x2f6,'\x6c\x6d\x50\x46')](_0x59ac71(0x265,'\x78\x79\x52\x52'))){const _0x760858=this[_0x59ac71(0x3de,'\x4b\x44\x48\x37')+_0x59ac71(0x2ac,'\x6d\x25\x4d\x32')](_0x5bf652+(0x7e9+0x575+-0xd5d)),_0x59495f=this[_0x59ac71(0x3f6,'\x31\x38\x74\x73')+_0x59ac71(0x365,'\x67\x78\x40\x33')+_0x59ac71(0x356,'\x6a\x61\x4b\x4e')](_0x760858);if(_0x59495f<=_0x760858)break;_0x5bf652=_0x59495f;}return _0x5bf652;}[_0x554297(0x304,'\x67\x78\x40\x33')+_0x554297(0x3da,'\x55\x32\x28\x56')+_0x554297(0x286,'\x61\x78\x61\x68')](_0x448c53){const _0x3fb742=_0x554297,_0x44b980=this[_0x3fb742(0x27c,'\x57\x77\x78\x23')+_0x3fb742(0x3d0,'\x4b\x44\x48\x37')+_0x3fb742(0x378,'\x76\x4f\x68\x56')](_0x448c53);if(_0x44b980>=this[_0x3fb742(0x306,'\x42\x21\x6e\x40')][_0x3fb742(0x22f,'\x4f\x41\x67\x32')])return _0x44b980;const _0x538c8b=this[_0x3fb742(0x3dc,'\x49\x5b\x24\x67')+'\x69\x6e\x61\x6c\x48\x65\x61\x64'](_0x448c53,_0x44b980);return this['\x69\x73\x4e\x6f\x6d\x69\x6e\x61'+_0x3fb742(0x209,'\x4e\x66\x32\x59')](this[_0x3fb742(0x399,'\x21\x6a\x72\x37')](_0x44b980))&&_0x538c8b===_0x44b980&&this[_0x3fb742(0x2a2,'\x4a\x48\x41\x21')+_0x3fb742(0x2d5,'\x47\x78\x42\x4c')](_0x44b980+(0x395+0x1cdb+-0x13*0x1b5))>=this[_0x3fb742(0x23f,'\x4b\x44\x48\x37')][_0x3fb742(0x423,'\x40\x4b\x4c\x5e')]?this[_0x3fb742(0x35a,'\x31\x38\x74\x73')][_0x3fb742(0x3e9,'\x77\x49\x54\x33')]:_0x44b980;}[_0x554297(0x2c6,'\x6a\x61\x4b\x4e')+_0x554297(0x424,'\x66\x69\x6a\x74')](_0x478044,_0x9b0e3d){const _0x3f7501=_0x554297;let _0x205d01=this[_0x3f7501(0x256,'\x61\x78\x61\x68')+_0x3f7501(0x31d,'\x66\x69\x6a\x74')](_0x478044);this[_0x3f7501(0x1e4,'\x4e\x66\x32\x59')][_0x3f7501(0x39d,'\x41\x6a\x36\x68')][_0x3f7501(0x28e,'\x26\x68\x42\x70')+_0x3f7501(0x1fc,'\x51\x42\x30\x58')][_0x3f7501(0x31f,'\x31\x38\x74\x73')](this[_0x3f7501(0x247,'\x41\x6a\x36\x68')](_0x205d01))&&(_0x205d01=this[_0x3f7501(0x3de,'\x4b\x44\x48\x37')+_0x3f7501(0x1f8,'\x48\x57\x62\x5b')](_0x205d01+(0x235f+0x212d+-0x448b)));while(_0x205d01<_0x9b0e3d&&!this[_0x3f7501(0x3c4,'\x31\x38\x74\x73')+_0x3f7501(0x2cf,'\x4c\x78\x61\x67')](this[_0x3f7501(0x3ed,'\x49\x5b\x24\x67')](_0x205d01))){if(_0x3f7501(0x34d,'\x73\x4c\x31\x69')!==_0x3f7501(0x21d,'\x26\x2a\x58\x29'))_0x205d01=this['\x73\x6b\x69\x70\x4d\x6f\x64\x69'+'\x66\x69\x65\x72\x73'](_0x205d01+(-0x5e*-0x59+-0x1648+-0xa65));else{let _0x3bb02a=_0x3c5135;while(_0x3bb02a<this['\x74\x6f\x6b\x65\x6e\x73']['\x6c\x65\x6e\x67\x74\x68']&&this[_0x3f7501(0x31a,'\x64\x5a\x28\x43')+_0x3f7501(0x374,'\x4b\x70\x31\x38')+_0x3f7501(0x245,'\x67\x78\x40\x33')](this[_0x3f7501(0x3c5,'\x51\x42\x30\x58')](_0x3bb02a)))_0x3bb02a+=0x1d4*0x9+0xe+-0x1081;return _0x3bb02a;}}return _0x205d01;}['\x63\x6c\x61\x73\x73\x69\x66\x79'+_0x554297(0x2b5,'\x4a\x48\x41\x21')+_0x554297(0x2e0,'\x4f\x41\x67\x32')](_0x34b91c){const _0x33ba4e=_0x554297;let _0x4e6c52=this[_0x33ba4e(0x406,'\x77\x49\x54\x33')+_0x33ba4e(0x366,'\x4c\x78\x61\x67')](_0x34b91c);const _0x5f2073=this[_0x33ba4e(0x384,'\x47\x78\x42\x4c')](_0x4e6c52);if(this[_0x33ba4e(0x2ae,'\x6b\x7a\x54\x6a')][_0x33ba4e(0x240,'\x21\x6a\x72\x37')][_0x33ba4e(0x317,'\x6b\x7a\x54\x6a')+_0x33ba4e(0x29e,'\x72\x67\x7a\x59')][_0x33ba4e(0x28a,'\x77\x79\x33\x70')](_0x5f2073))_0x4e6c52=this['\x63\x6f\x6e\x73\x75\x6d\x65\x4e'+_0x33ba4e(0x3c3,'\x31\x38\x74\x73')](_0x4e6c52);else this[_0x33ba4e(0x419,'\x40\x4b\x4c\x5e')+_0x33ba4e(0x1de,'\x56\x44\x48\x33')+_0x33ba4e(0x207,'\x55\x32\x28\x56')](_0x4e6c52)&&(_0x4e6c52=this[_0x33ba4e(0x33f,'\x6a\x61\x4b\x4e')+'\x66\x69\x65\x72\x73'](_0x4e6c52+(0x1375+0x1*0xb0d+0x89*-0x39)));while(this[_0x33ba4e(0x2e8,'\x64\x30\x74\x6f')][_0x33ba4e(0x3a9,'\x40\x4b\x4c\x5e')][_0x33ba4e(0x1dc,'\x67\x78\x40\x33')+'\x75\x78\x69\x6c\x69\x61\x72\x69'+'\x65\x73'][_0x33ba4e(0x1fe,'\x76\x4f\x68\x56')](this[_0x33ba4e(0x3e4,'\x4a\x48\x41\x21')](_0x4e6c52))){_0x4e6c52=this[_0x33ba4e(0x24f,'\x6d\x25\x4d\x32')+_0x33ba4e(0x1fb,'\x67\x78\x40\x33')](_0x4e6c52+(0x110c+-0x2*0x5ec+-0x533));}if(!this['\x69\x73\x50\x61\x73\x74\x50\x72'+_0x33ba4e(0x25f,'\x49\x5b\x24\x67')](this[_0x33ba4e(0x1e7,'\x61\x78\x61\x68')](_0x4e6c52)))return _0x33ba4e(0x397,'\x31\x33\x4d\x72')+'\x6e\x61\x6c';return _0x4e6c52=this[_0x33ba4e(0x2c4,'\x56\x44\x48\x33')+_0x33ba4e(0x213,'\x78\x79\x52\x52')](_0x4e6c52+(-0x1825+-0x2*-0x11e+0x15ea)),this[_0x33ba4e(0x367,'\x34\x53\x4d\x52')+_0x33ba4e(0x3e7,'\x21\x6a\x72\x37')+'\x6c\x4e\x6f\x6d\x69\x6e\x61\x6c'](_0x4e6c52);}[_0x554297(0x1d4,'\x4b\x70\x31\x38')+_0x554297(0x1db,'\x31\x38\x74\x73')+_0x554297(0x2fb,'\x31\x38\x74\x73')](_0x40879a){const _0x13066b=_0x554297,_0x3310fc=this[_0x13066b(0x3ef,'\x4c\x78\x61\x67')](_0x40879a);return!this[_0x13066b(0x263,'\x26\x68\x42\x70')+_0x13066b(0x28b,'\x4f\x41\x67\x32')](_0x3310fc)&&!this[_0x13066b(0x2ec,'\x49\x5b\x24\x67')][_0x13066b(0x398,'\x76\x4f\x68\x56')][_0x13066b(0x36b,'\x6d\x25\x4d\x32')+_0x13066b(0x30a,'\x6c\x6d\x50\x46')+'\x65\x73'][_0x13066b(0x1d6,'\x48\x57\x62\x5b')](_0x3310fc)&&this[_0x13066b(0x2b7,'\x6c\x6d\x50\x46')+_0x13066b(0x273,'\x48\x57\x62\x5b')](this['\x76\x61\x6c\x75\x65\x41\x74'](_0x40879a+(0x3c7*-0x9+-0x3*-0xb6f+0x1*-0x4d)));}[_0x554297(0x230,'\x56\x44\x48\x33')+_0x554297(0x20c,'\x73\x4c\x31\x69')+_0x554297(0x30b,'\x21\x6a\x72\x37')](_0x1de492){const _0x5e56c4=_0x554297;let _0x1e2f83=this['\x73\x6b\x69\x70\x4d\x6f\x64\x69'+'\x66\x69\x65\x72\x73'](_0x1de492);if(_0x1e2f83>=this[_0x5e56c4(0x223,'\x4c\x78\x61\x67')][_0x5e56c4(0x3a5,'\x76\x4f\x68\x56')])return _0x5e56c4(0x2c8,'\x6d\x29\x21\x5d');if(this[_0x5e56c4(0x2d3,'\x37\x63\x6e\x52')+_0x5e56c4(0x3e5,'\x77\x69\x64\x71')](this['\x76\x61\x6c\x75\x65\x41\x74'](_0x1e2f83)))_0x1e2f83=this[_0x5e56c4(0x37d,'\x6b\x7a\x54\x6a')+_0x5e56c4(0x27b,'\x31\x38\x74\x73')](_0x1e2f83+(-0x1b4f+0xa8+0x1aa8));return this[_0x5e56c4(0x282,'\x51\x42\x30\x58')+_0x5e56c4(0x37c,'\x6c\x6d\x50\x46')+_0x5e56c4(0x201,'\x66\x69\x6a\x74')](_0x1e2f83);}[_0x554297(0x2d8,'\x6c\x6d\x50\x46')+'\x6c\x54\x65\x72\x6d\x69\x6e\x61'+_0x554297(0x201,'\x66\x69\x6a\x74')](_0x1caa02){const _0x258857=_0x554297;if(_0x1caa02>=this[_0x258857(0x223,'\x4c\x78\x61\x67')][_0x258857(0x2f2,'\x43\x6a\x6c\x65')])return'\x66\x61\x63\x74\x75\x61\x6c';return this[_0x258857(0x312,'\x49\x5b\x24\x67')+_0x258857(0x283,'\x42\x6b\x56\x57')+_0x258857(0x29b,'\x31\x33\x4d\x72')](_0x1caa02)>=this[_0x258857(0x386,'\x34\x53\x4d\x52')]['\x6c\x65\x6e\x67\x74\x68']?_0x258857(0x36a,'\x57\x77\x78\x23'):_0x258857(0x27f,'\x4a\x48\x41\x21')+_0x258857(0x276,'\x42\x6b\x56\x57');}[_0x554297(0x422,'\x47\x78\x42\x4c')+_0x554297(0x426,'\x5a\x36\x4d\x37')+'\x69\x6c'](_0x206b39){const _0xdfc7b9=_0x554297,_0xb27aa5=this[_0xdfc7b9(0x3e6,'\x32\x40\x37\x77')+_0xdfc7b9(0x246,'\x66\x23\x43\x4e')](_0x206b39);if(_0xb27aa5>=this[_0xdfc7b9(0x26c,'\x21\x6a\x72\x37')]['\x6c\x65\x6e\x67\x74\x68'])return'\x66\x61\x63\x74\x75\x61\x6c';const _0x1e4f5d=this['\x76\x61\x6c\x75\x65\x41\x74'](_0xb27aa5);if(OBJECT_COORDINATOR_TERMS[_0xdfc7b9(0x214,'\x6c\x6d\x50\x46')](_0x1e4f5d))return this[_0xdfc7b9(0x325,'\x57\x77\x78\x23')+_0xdfc7b9(0x27e,'\x42\x21\x6e\x40')+_0xdfc7b9(0x1fa,'\x76\x4f\x68\x56')](_0xb27aa5+(0x1*0x2f0+-0xd97+0xaa8));if(RELATIVE_TERMS[_0xdfc7b9(0x3be,'\x42\x21\x6e\x40')](_0x1e4f5d))return this[_0xdfc7b9(0x271,'\x61\x78\x61\x68')+_0xdfc7b9(0x2f3,'\x4c\x78\x61\x67')+_0xdfc7b9(0x393,'\x64\x30\x74\x6f')](_0xb27aa5+(-0xd*0x2c2+-0x67a+-0x2a55*-0x1));if(this['\x69\x6e\x70\x75\x74'][_0xdfc7b9(0x35d,'\x56\x44\x48\x33')][_0xdfc7b9(0x1f2,'\x6a\x61\x4b\x4e')+_0xdfc7b9(0x2ff,'\x26\x68\x42\x70')+_0xdfc7b9(0x337,'\x5a\x36\x4d\x37')+'\x6e\x73'][_0xdfc7b9(0x352,'\x77\x49\x54\x33')](_0x1e4f5d))return this[_0xdfc7b9(0x2aa,'\x76\x4f\x68\x56')+_0xdfc7b9(0x1dd,'\x47\x78\x42\x4c')+'\x69\x6c'](this[_0xdfc7b9(0x210,'\x42\x21\x6e\x40')+_0xdfc7b9(0x339,'\x4e\x66\x32\x59')+'\x6f\x6d\x69\x6e\x61\x6c'](_0xb27aa5+(-0x87d+0x2b*-0xa7+0x248b)));if(this[_0xdfc7b9(0x323,'\x42\x21\x6e\x40')][_0xdfc7b9(0x262,'\x63\x6e\x59\x4a')][_0xdfc7b9(0x2ed,'\x64\x5a\x28\x43')+_0xdfc7b9(0x41b,'\x72\x67\x7a\x59')+'\x72\x73'][_0xdfc7b9(0x3fc,'\x37\x63\x6e\x52')](_0x1e4f5d))return _0xdfc7b9(0x289,'\x4e\x66\x32\x59')+_0xdfc7b9(0x2f1,'\x4a\x48\x41\x21');if(SUBORDINATOR_TERMS[_0xdfc7b9(0x2bf,'\x34\x53\x4d\x52')](_0x1e4f5d))return this[_0xdfc7b9(0x293,'\x41\x6a\x36\x68')+_0xdfc7b9(0x3cb,'\x4a\x5a\x63\x49')+_0xdfc7b9(0x3df,'\x40\x4b\x4c\x5e')](_0xb27aa5+(-0xe9+-0x373*0x3+-0xb43*-0x1));if(this['\x69\x73\x46\x61\x63\x74\x75\x61'+'\x6c\x54\x61\x69\x6c\x50\x72\x65'+_0xdfc7b9(0x268,'\x66\x69\x6a\x74')](_0x1e4f5d))return _0xdfc7b9(0x340,'\x55\x32\x28\x56');if(_0x1e4f5d[_0xdfc7b9(0x2cb,'\x6d\x25\x4d\x32')](_0xdfc7b9(0x402,'\x26\x2a\x58\x29')))return this[_0xdfc7b9(0x3a7,'\x6d\x25\x4d\x32')+_0xdfc7b9(0x3f0,'\x42\x21\x6e\x40')+'\x69\x6c'](this[_0xdfc7b9(0x284,'\x57\x77\x78\x23')+_0xdfc7b9(0x2d9,'\x66\x23\x43\x4e')+_0xdfc7b9(0x26d,'\x37\x63\x6e\x52')](_0xb27aa5+(0x724+0xb7e*-0x1+0x45b)));return _0xdfc7b9(0x32a,'\x41\x6a\x36\x68')+_0xdfc7b9(0x2b4,'\x4e\x66\x32\x59');}[_0x554297(0x24c,'\x73\x4c\x31\x69')+_0x554297(0x30f,'\x77\x49\x54\x33')+_0x554297(0x1da,'\x64\x5a\x28\x43')](_0xb30a08){const _0x2531cd=_0x554297;let _0x114afd=this[_0x2531cd(0x42a,'\x43\x6a\x6c\x65')+_0x2531cd(0x246,'\x66\x23\x43\x4e')](_0xb30a08);if(_0x114afd>=this[_0x2531cd(0x35a,'\x31\x38\x74\x73')][_0x2531cd(0x260,'\x42\x21\x6e\x40')])return _0x2531cd(0x3fe,'\x4a\x48\x41\x21');const _0xa308e=this[_0x2531cd(0x24b,'\x34\x53\x4d\x52')](_0x114afd);if(this['\x69\x6e\x70\x75\x74'][_0x2531cd(0x38f,'\x66\x69\x6a\x74')+_0x2531cd(0x41f,'\x5a\x36\x4d\x37')][_0x2531cd(0x383,'\x45\x6f\x62\x40')](_0xa308e)&&this[_0x2531cd(0x321,'\x73\x4c\x31\x69')+_0x2531cd(0x264,'\x67\x78\x40\x33')](_0xa308e)){_0x114afd=this[_0x2531cd(0x1ea,'\x45\x6f\x62\x40')+_0x2531cd(0x238,'\x61\x78\x61\x68')](_0x114afd+(0x1376*0x2+0x4*-0x31+-0x2627));if(_0x114afd>=this[_0x2531cd(0x3bd,'\x63\x6e\x59\x4a')][_0x2531cd(0x2df,'\x34\x53\x4d\x52')])return'\x66\x61\x63\x74\x75\x61\x6c';if(this[_0x2531cd(0x323,'\x42\x21\x6e\x40')][_0x2531cd(0x262,'\x63\x6e\x59\x4a')]['\x63\x6f\x6d\x6d\x61\x44\x65\x6c'+_0x2531cd(0x3bf,'\x21\x6a\x72\x37')+'\x65\x70\x6f\x73\x69\x74\x69\x6f'+'\x6e\x73']['\x68\x61\x73'](this['\x76\x61\x6c\x75\x65\x41\x74'](_0x114afd)))return'\x68\x47\x72\x54\x71'!==_0x2531cd(0x2e5,'\x73\x4c\x31\x69')?_0x4d86df[_0x2531cd(0x291,'\x55\x32\x28\x56')](_0x2f2c03)||this[_0x2531cd(0x2de,'\x55\x32\x28\x56')][_0x2531cd(0x2a4,'\x4a\x5a\x63\x49')+'\x65\x73'][_0x2531cd(0x334,'\x56\x44\x48\x33')+_0x2531cd(0x3a4,'\x78\x79\x52\x52')+'\x65\x54\x65\x72\x6d'](_0x520bbb)||this[_0x2531cd(0x2cd,'\x61\x78\x61\x68')][_0x2531cd(0x33e,'\x72\x67\x7a\x59')+_0x2531cd(0x37f,'\x6d\x25\x4d\x32')][_0x2531cd(0x3fc,'\x37\x63\x6e\x52')](_0x3ebd12)&&!this[_0x2531cd(0x38a,'\x6c\x6d\x50\x46')+_0x2531cd(0x38c,'\x64\x30\x74\x6f')](_0x2947b3):this[_0x2531cd(0x241,'\x66\x23\x43\x4e')+'\x4f\x62\x6a\x65\x63\x74\x54\x61'+'\x69\x6c'](_0x114afd);}return this[_0x2531cd(0x266,'\x31\x38\x74\x73')+_0x2531cd(0x24a,'\x4f\x41\x67\x32')+'\x69\x6c'](this[_0x2531cd(0x3dd,'\x4b\x70\x31\x38')+_0x2531cd(0x395,'\x6c\x6d\x50\x46')+'\x6f\x6d\x69\x6e\x61\x6c'](_0x114afd));}[_0x554297(0x2e3,'\x49\x5b\x24\x67')+_0x554297(0x401,'\x37\x63\x6e\x52')+_0x554297(0x295,'\x48\x57\x62\x5b')](_0x55c0e2){const _0x4cb4db=_0x554297;return FACTUAL_TAIL_PREFIX_TERMS[_0x4cb4db(0x3be,'\x42\x21\x6e\x40')](_0x55c0e2)||this[_0x4cb4db(0x414,'\x51\x42\x30\x58')][_0x4cb4db(0x262,'\x63\x6e\x59\x4a')]['\x63\x6f\x6d\x6d\x61\x44\x65\x6c'+_0x4cb4db(0x311,'\x73\x4c\x31\x69')+'\x65\x70\x6f\x73\x69\x74\x69\x6f'+'\x6e\x73'][_0x4cb4db(0x214,'\x6c\x6d\x50\x46')](_0x55c0e2)||FACTUAL_COORDINATOR_TERMS[_0x4cb4db(0x1fe,'\x76\x4f\x68\x56')](_0x55c0e2);}[_0x554297(0x21c,'\x4b\x44\x48\x37')](_0x242cf9){const _0x5f5569=_0x554297;return this[_0x5f5569(0x3af,'\x4e\x66\x32\x59')][_0x242cf9]?.[_0x5f5569(0x2a7,'\x43\x6a\x6c\x65')]??'';}}export function classifyProvidedTargetPrefix(_0x3c3f20){const _0x12ba03=_0x554297;if(!_0x3c3f20[_0x12ba03(0x2f4,'\x37\x63\x6e\x52')]||_0x3c3f20[_0x12ba03(0x40b,'\x34\x53\x4d\x52')+'\x72\x6d\x73'][_0x12ba03(0x26e,'\x55\x32\x28\x56')]===-0x145f+0x106b+-0xfd*-0x4)return'\x6e\x6f\x6e\x65';return new ProvidedTargetPrefixClassifier(_0x3c3f20)[_0x12ba03(0x280,'\x45\x6f\x62\x40')]();}
|
|
@@ -1,63 +1 @@
|
|
|
1
|
-
import { createHash } from 'node:crypto';
|
|
2
|
-
export const DEFAULT_WEIGHTS = { resolved: 0.5, reuse: 0.3, cost: 0.2 };
|
|
3
|
-
/** fitness = w1·resolved_by_evidence率 + w2·capsule复用率 − w3·归一成本. */
|
|
4
|
-
export function computeFitness(samples, w = DEFAULT_WEIGHTS) {
|
|
5
|
-
const n = samples.length;
|
|
6
|
-
if (n === 0)
|
|
7
|
-
return { n: 0, resolvedRate: 0, reuseRate: 0, avgCost: 0, score: 0 };
|
|
8
|
-
const resolvedRate = samples.filter((s) => s.resolvedByEvidence).length / n;
|
|
9
|
-
const reuseRate = samples.filter((s) => s.reused).length / n;
|
|
10
|
-
const avgCost = samples.reduce((a, s) => a + s.cost, 0) / n;
|
|
11
|
-
const score = w.resolved * resolvedRate + w.reuse * reuseRate - w.cost * avgCost;
|
|
12
|
-
return { n, resolvedRate, reuseRate, avgCost, score };
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
* Shadow 评估: active 权威返回; 其余实现旁路跑同输入, 记录产出/异常供离线对比, 不影响主流程.
|
|
16
|
-
* 实验台打底(算法草案§7): 所有候选先 shadow, 关键的才 A/B.
|
|
17
|
-
*/
|
|
18
|
-
export async function runShadow(sp, input, ctx) {
|
|
19
|
-
const active = sp.active();
|
|
20
|
-
const activeOut = await active.run(input, ctx);
|
|
21
|
-
const shadows = [];
|
|
22
|
-
for (const impl of sp.list()) {
|
|
23
|
-
if (impl.name === active.name)
|
|
24
|
-
continue;
|
|
25
|
-
try {
|
|
26
|
-
shadows.push({ name: impl.name, output: await impl.run(input, ctx) });
|
|
27
|
-
}
|
|
28
|
-
catch (e) {
|
|
29
|
-
shadows.push({ name: impl.name, error: e instanceof Error ? e.message : String(e) });
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
return { active: activeOut, activeName: active.name, shadows };
|
|
33
|
-
}
|
|
34
|
-
/** 确定性 A/B 分桶: 同 key 永远同变体(可复现, 不依赖随机). */
|
|
35
|
-
export function assignVariant(key, variants) {
|
|
36
|
-
if (variants.length === 0)
|
|
37
|
-
throw new Error('A/B 变体不能为空');
|
|
38
|
-
const h = createHash('sha256').update(key).digest();
|
|
39
|
-
const bucket = h.readUInt32BE(0) % variants.length;
|
|
40
|
-
return variants[bucket];
|
|
41
|
-
}
|
|
42
|
-
/** A/B 路由: 按 ctx.cycleId 确定性选变体并跑. */
|
|
43
|
-
export async function runAB(sp, variants, input, ctx) {
|
|
44
|
-
const variant = assignVariant(ctx.cycleId, variants);
|
|
45
|
-
const impl = sp.get(variant);
|
|
46
|
-
if (!impl)
|
|
47
|
-
throw new Error(`A/B 变体无实现: ${variant}`);
|
|
48
|
-
return { variant, output: await impl.run(input, ctx) };
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* 离线回放: 用历史输入集跑某策略, 由打分器产出 fitness 样本, 算总分.
|
|
52
|
-
* 用途: 新策略上线前先离线对比 active(算法草案§7 offline replay).
|
|
53
|
-
*/
|
|
54
|
-
export async function offlineReplay(impl, inputs, score, ctxOf, w = DEFAULT_WEIGHTS) {
|
|
55
|
-
const samples = [];
|
|
56
|
-
let i = 0;
|
|
57
|
-
for (const input of inputs) {
|
|
58
|
-
const out = await impl.run(input, ctxOf(i));
|
|
59
|
-
samples.push(score(input, out));
|
|
60
|
-
i += 1;
|
|
61
|
-
}
|
|
62
|
-
return computeFitness(samples, w);
|
|
63
|
-
}
|
|
1
|
+
function _0x4f8c(){const _0x43694e=['\x42\x6d\x6f\x57\x43\x6d\x6f\x46','\x57\x51\x4e\x63\x4e\x59\x65\x31\x57\x50\x79\x44','\x65\x77\x5a\x63\x48\x53\x6f\x6c\x68\x53\x6f\x6a','\x6f\x68\x6c\x64\x4d\x77\x74\x64\x48\x53\x6f\x74\x57\x34\x4b\x69\x57\x35\x56\x63\x54\x30\x4b\x65','\x57\x50\x2f\x64\x51\x58\x74\x64\x50\x53\x6f\x65\x42\x77\x33\x63\x4f\x53\x6b\x37\x63\x30\x4b\x47','\x57\x35\x4a\x63\x52\x38\x6f\x37\x63\x30\x43\x7a','\x57\x50\x78\x63\x55\x30\x46\x64\x55\x61','\x6e\x43\x6b\x68\x69\x61\x75','\x57\x50\x78\x64\x51\x72\x68\x64\x50\x6d\x6f\x63\x41\x66\x2f\x63\x52\x38\x6b\x47\x65\x76\x30\x41','\x57\x37\x74\x64\x52\x4b\x30\x57\x75\x76\x74\x63\x47\x61','\x6e\x76\x6c\x64\x48\x6d\x6b\x48\x46\x43\x6b\x41\x57\x36\x42\x64\x56\x71','\x57\x35\x70\x63\x52\x30\x46\x63\x53\x38\x6b\x67\x70\x71','\x57\x35\x33\x63\x51\x43\x6f\x4b\x63\x57','\x70\x33\x52\x64\x48\x43\x6b\x55\x57\x37\x6e\x74','\x7a\x53\x6f\x32\x62\x43\x6b\x55\x57\x51\x39\x32\x46\x6d\x6f\x55\x57\x35\x37\x63\x4e\x43\x6b\x2b\x57\x4f\x38','\x6b\x76\x4e\x64\x4e\x62\x37\x63\x52\x68\x72\x7a\x65\x4a\x58\x48\x6b\x4b\x46\x64\x48\x71','\x57\x51\x68\x63\x4d\x64\x57','\x62\x38\x6f\x43\x57\x51\x72\x2f\x57\x37\x70\x64\x52\x33\x38\x65\x57\x51\x37\x64\x48\x6d\x6b\x48\x57\x50\x6d','\x57\x36\x74\x64\x4e\x38\x6b\x70','\x57\x35\x4a\x64\x4e\x53\x6b\x63\x57\x52\x6d','\x57\x34\x6c\x63\x54\x4b\x74\x63\x54\x38\x6b\x62\x6c\x61','\x41\x71\x74\x63\x4a\x66\x37\x64\x56\x63\x6d','\x73\x6d\x6b\x4c\x44\x53\x6f\x34\x35\x79\x59\x37\x35\x6c\x36\x63\x35\x50\x45\x4b\x35\x41\x36\x58','\x57\x4f\x44\x6c\x65\x4b\x6d\x36\x42\x6d\x6b\x44\x70\x61','\x57\x34\x46\x63\x51\x62\x2f\x63\x4e\x57','\x57\x4f\x78\x64\x50\x76\x4a\x64\x47\x47\x4e\x63\x47\x38\x6f\x4b\x57\x34\x70\x64\x56\x66\x53\x6e\x70\x48\x43','\x76\x4a\x37\x64\x48\x6d\x6b\x6f\x71\x38\x6b\x41\x41\x32\x43\x73\x78\x58\x4e\x63\x4b\x76\x38','\x76\x38\x6f\x6a\x57\x37\x61\x54','\x57\x34\x4b\x51\x77\x78\x70\x63\x52\x66\x6c\x64\x4e\x47','\x44\x6d\x6f\x63\x79\x31\x4a\x63\x53\x43\x6f\x75\x57\x52\x61\x7a\x6e\x6d\x6b\x45\x6b\x6d\x6f\x6b\x57\x4f\x74\x63\x4f\x47','\x44\x38\x6f\x64\x6d\x47\x4e\x64\x51\x6d\x6b\x31\x57\x36\x39\x65','\x57\x4f\x2f\x64\x49\x65\x66\x5a\x57\x51\x4b\x51','\x57\x37\x46\x63\x54\x4d\x79','\x69\x75\x4a\x64\x48\x4c\x52\x63\x4c\x76\x75','\x35\x34\x32\x62\x7a\x48\x43','\x57\x52\x38\x33\x57\x34\x44\x62\x57\x50\x75','\x57\x34\x74\x64\x52\x65\x4f\x69\x35\x79\x2b\x62\x35\x6c\x2b\x56\x35\x6c\x55\x37\x36\x69\x6f\x34','\x69\x6d\x6f\x41\x46\x61\x31\x7a\x69\x75\x31\x2f','\x62\x38\x6f\x79\x57\x51\x31\x2f\x57\x37\x6c\x64\x50\x47\x31\x39\x57\x50\x70\x64\x4b\x53\x6b\x4e\x57\x52\x6a\x6b\x57\x36\x71','\x6b\x6d\x6b\x49\x42\x53\x6f\x6d\x57\x35\x6d\x48','\x75\x64\x64\x64\x49\x53\x6b\x67\x67\x49\x57','\x6d\x4c\x46\x63\x4e\x43\x6f\x30\x6b\x38\x6f\x34\x57\x35\x5a\x64\x54\x38\x6b\x33\x57\x51\x71\x34\x6e\x71','\x57\x35\x64\x63\x50\x38\x6f\x36\x67\x47','\x43\x43\x6f\x5a\x6f\x6d\x6b\x41\x57\x50\x62\x37\x57\x37\x4a\x64\x4b\x4b\x6a\x49\x57\x52\x7a\x69','\x6a\x53\x6b\x44\x69\x62\x4b','\x7a\x77\x78\x63\x51\x38\x6f\x67\x7a\x49\x30','\x7a\x53\x6f\x6c\x77\x47','\x43\x43\x6f\x57\x6e\x38\x6b\x44\x57\x50\x39\x2b\x57\x50\x52\x64\x48\x78\x50\x65\x57\x4f\x48\x4f\x57\x34\x34','\x57\x36\x74\x63\x4f\x68\x58\x62\x42\x38\x6f\x7a','\x57\x37\x46\x63\x50\x4e\x54\x68\x44\x43\x6f\x6b\x57\x50\x6e\x48','\x46\x63\x37\x63\x52\x6d\x6b\x6f\x78\x75\x74\x63\x50\x71','\x72\x6d\x6b\x76\x67\x58\x33\x63\x4e\x62\x53\x6d\x57\x52\x58\x4b\x57\x52\x65\x42\x57\x36\x43'];_0x4f8c=function(){return _0x43694e;};return _0x4f8c();}(function(_0x56583a,_0x209455){const _0x2d72ae=_0x19a7,_0x557e30=_0x56583a();while(!![]){try{const _0x351919=-parseInt(_0x2d72ae(0x21d,'\x4f\x67\x40\x64'))/(0xf81+-0x4*-0x409+-0x1b*0x12c)*(parseInt(_0x2d72ae(0x222,'\x38\x52\x72\x35'))/(-0xeb*-0x3+0xae*0x2b+0x5*-0x665))+parseInt(_0x2d72ae(0x1fa,'\x26\x4c\x79\x36'))/(-0x1*-0x1866+0x1*-0x409+-0x145a)+-parseInt(_0x2d72ae(0x205,'\x58\x67\x43\x73'))/(-0x1*0x719+-0x805+0xf22)+parseInt(_0x2d72ae(0x1f9,'\x38\x4f\x7a\x72'))/(0x5*-0x7be+0x1a*-0x79+0x3305)+parseInt(_0x2d72ae(0x208,'\x4d\x56\x69\x28'))/(-0x1960+0x75b+0x120b)+-parseInt(_0x2d72ae(0x209,'\x4d\x56\x69\x28'))/(-0x919*-0x2+0x555+-0x1780)*(-parseInt(_0x2d72ae(0x21e,'\x35\x24\x4d\x31'))/(-0x5*0x143+-0x20f1+0x2*0x13a4))+parseInt(_0x2d72ae(0x214,'\x5a\x6b\x61\x4f'))/(0xcee+0x1*-0x91d+-0x3c8);if(_0x351919===_0x209455)break;else _0x557e30['push'](_0x557e30['shift']());}catch(_0x232b42){_0x557e30['push'](_0x557e30['shift']());}}}(_0x4f8c,-0x8a1d+0x166e1+0xdeab1));import{createHash}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';export const DEFAULT_WEIGHTS={'\x72\x65\x73\x6f\x6c\x76\x65\x64':0.5,'\x72\x65\x75\x73\x65':0.3,'\x63\x6f\x73\x74':0.2};export function computeFitness(_0x1ce99c,_0x364afd=DEFAULT_WEIGHTS){const _0x4f1496=_0x19a7,_0xcc687b=_0x1ce99c[_0x4f1496(0x213,'\x6d\x35\x5d\x32')];if(_0xcc687b===0x1bec*-0x1+-0x1*0x16c3+0x207*0x19)return{'\x6e':0x0,'\x72\x65\x73\x6f\x6c\x76\x65\x64\x52\x61\x74\x65':0x0,'\x72\x65\x75\x73\x65\x52\x61\x74\x65':0x0,'\x61\x76\x67\x43\x6f\x73\x74':0x0,'\x73\x63\x6f\x72\x65':0x0};const _0x42dfcf=_0x1ce99c[_0x4f1496(0x220,'\x5d\x26\x68\x54')](_0x573e4d=>_0x573e4d[_0x4f1496(0x21c,'\x6f\x28\x61\x49')+_0x4f1496(0x210,'\x47\x21\x2a\x5b')+'\x63\x65'])[_0x4f1496(0x212,'\x33\x6a\x7a\x26')]/_0xcc687b,_0x5967de=_0x1ce99c[_0x4f1496(0x224,'\x24\x42\x66\x36')](_0x4e0be0=>_0x4e0be0[_0x4f1496(0x221,'\x58\x67\x43\x73')])[_0x4f1496(0x1f8,'\x61\x63\x45\x50')]/_0xcc687b,_0x30975f=_0x1ce99c[_0x4f1496(0x200,'\x26\x4c\x79\x36')]((_0x4c723a,_0x2bfad6)=>_0x4c723a+_0x2bfad6[_0x4f1496(0x1f7,'\x24\x42\x66\x36')],-0x3f1*0x1+0x1878+0x1487*-0x1)/_0xcc687b,_0x279bda=_0x364afd['\x72\x65\x73\x6f\x6c\x76\x65\x64']*_0x42dfcf+_0x364afd[_0x4f1496(0x20e,'\x4a\x23\x6b\x40')]*_0x5967de-_0x364afd[_0x4f1496(0x217,'\x4d\x56\x69\x28')]*_0x30975f;return{'\x6e':_0xcc687b,'\x72\x65\x73\x6f\x6c\x76\x65\x64\x52\x61\x74\x65':_0x42dfcf,'\x72\x65\x75\x73\x65\x52\x61\x74\x65':_0x5967de,'\x61\x76\x67\x43\x6f\x73\x74':_0x30975f,'\x73\x63\x6f\x72\x65':_0x279bda};}function _0x19a7(_0x14202c,_0x43b6f6){_0x14202c=_0x14202c-(-0x22*0xe5+0x1fb9+0xa3);const _0x1b3aef=_0x4f8c();let _0x240d30=_0x1b3aef[_0x14202c];if(_0x19a7['\x4b\x63\x44\x74\x4d\x77']===undefined){var _0x5aea26=function(_0x6b0cb4){const _0x2b8d8c='\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 _0x456c75='',_0x1ea760='';for(let _0x413216=0x384+-0x586*0x2+-0x1*-0x788,_0x243787,_0x20ed20,_0x719cf1=0x22d5+-0x182*0x17+-0x27;_0x20ed20=_0x6b0cb4['\x63\x68\x61\x72\x41\x74'](_0x719cf1++);~_0x20ed20&&(_0x243787=_0x413216%(-0x1*0x508+0x1bae+-0x16a2)?_0x243787*(0x2*-0x5+0x20b*-0x4+0x876)+_0x20ed20:_0x20ed20,_0x413216++%(0x167f+0x1*-0x1589+0xf2*-0x1))?_0x456c75+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1b22+0x1e13+-0x2*0x1c1b&_0x243787>>(-(-0x11*0xdf+-0x595+0x1466)*_0x413216&-0x7*-0x61+0x8*-0xd9+0x427)):0xe+0x26e2+-0x26f0){_0x20ed20=_0x2b8d8c['\x69\x6e\x64\x65\x78\x4f\x66'](_0x20ed20);}for(let _0x842d1=-0x2*-0xee4+0x11d1*0x2+-0x416a,_0x70d6fa=_0x456c75['\x6c\x65\x6e\x67\x74\x68'];_0x842d1<_0x70d6fa;_0x842d1++){_0x1ea760+='\x25'+('\x30\x30'+_0x456c75['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x842d1)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1878+0x1600+0x948*-0x5))['\x73\x6c\x69\x63\x65'](-(0x169*0x1b+-0xdd*0x1f+-0xb4e));}return decodeURIComponent(_0x1ea760);};const _0x43ab83=function(_0x712e9,_0x4b6968){let _0x109f11=[],_0xec3864=0x104e+0x26e1+0x1265*-0x3,_0x4c6f4e,_0x377f77='';_0x712e9=_0x5aea26(_0x712e9);let _0x4ebdff;for(_0x4ebdff=0x8d5+-0x1832+0xf5d;_0x4ebdff<-0x642+0x126d*0x1+-0xb2b;_0x4ebdff++){_0x109f11[_0x4ebdff]=_0x4ebdff;}for(_0x4ebdff=-0xf62+0x569+0x1*0x9f9;_0x4ebdff<0x71*-0xf+0x2069+0xa7*-0x26;_0x4ebdff++){_0xec3864=(_0xec3864+_0x109f11[_0x4ebdff]+_0x4b6968['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4ebdff%_0x4b6968['\x6c\x65\x6e\x67\x74\x68']))%(0xf45+0x1a11+-0x2856*0x1),_0x4c6f4e=_0x109f11[_0x4ebdff],_0x109f11[_0x4ebdff]=_0x109f11[_0xec3864],_0x109f11[_0xec3864]=_0x4c6f4e;}_0x4ebdff=0x1fdc+-0x18b8+-0x724,_0xec3864=0x20b*0x11+-0x208f*0x1+-0x4*0x8b;for(let _0x4d164e=0x962*0x1+0x11*0x1dd+-0x17*0x1c9;_0x4d164e<_0x712e9['\x6c\x65\x6e\x67\x74\x68'];_0x4d164e++){_0x4ebdff=(_0x4ebdff+(0x330*0x6+0xe9*-0x20+0xa01))%(-0x1b22+-0x137b+-0x1*-0x2f9d),_0xec3864=(_0xec3864+_0x109f11[_0x4ebdff])%(-0x8b3+-0x774+0x1*0x1127),_0x4c6f4e=_0x109f11[_0x4ebdff],_0x109f11[_0x4ebdff]=_0x109f11[_0xec3864],_0x109f11[_0xec3864]=_0x4c6f4e,_0x377f77+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x712e9['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4d164e)^_0x109f11[(_0x109f11[_0x4ebdff]+_0x109f11[_0xec3864])%(-0x35*0xae+0x960+0x1ba6*0x1)]);}return _0x377f77;};_0x19a7['\x56\x68\x4a\x62\x68\x69']=_0x43ab83,_0x19a7['\x72\x54\x67\x62\x5a\x6d']={},_0x19a7['\x4b\x63\x44\x74\x4d\x77']=!![];}const _0x2a369f=_0x1b3aef[0xc5b*-0x1+-0x19b1*0x1+0x260c],_0x3d9cb1=_0x14202c+_0x2a369f,_0x40a501=_0x19a7['\x72\x54\x67\x62\x5a\x6d'][_0x3d9cb1];return!_0x40a501?(_0x19a7['\x52\x4d\x58\x75\x79\x62']===undefined&&(_0x19a7['\x52\x4d\x58\x75\x79\x62']=!![]),_0x240d30=_0x19a7['\x56\x68\x4a\x62\x68\x69'](_0x240d30,_0x43b6f6),_0x19a7['\x72\x54\x67\x62\x5a\x6d'][_0x3d9cb1]=_0x240d30):_0x240d30=_0x40a501,_0x240d30;}export async function runShadow(_0x4b3048,_0x4adcf2,_0x4253d1){const _0x35c065=_0x19a7,_0x4f8043=_0x4b3048[_0x35c065(0x21b,'\x6f\x28\x61\x49')](),_0x25ab97=await _0x4f8043[_0x35c065(0x1fd,'\x61\x6c\x34\x24')](_0x4adcf2,_0x4253d1),_0x1714f0=[];for(const _0x5d569f of _0x4b3048[_0x35c065(0x225,'\x35\x62\x61\x4a')]()){if(_0x5d569f['\x6e\x61\x6d\x65']===_0x4f8043[_0x35c065(0x1fe,'\x66\x6e\x56\x66')])continue;try{_0x1714f0['\x70\x75\x73\x68']({'\x6e\x61\x6d\x65':_0x5d569f[_0x35c065(0x206,'\x59\x7a\x67\x66')],'\x6f\x75\x74\x70\x75\x74':await _0x5d569f[_0x35c065(0x20b,'\x6f\x28\x61\x49')](_0x4adcf2,_0x4253d1)});}catch(_0x502299){_0x1714f0[_0x35c065(0x203,'\x5a\x35\x6b\x70')]({'\x6e\x61\x6d\x65':_0x5d569f[_0x35c065(0x215,'\x24\x42\x66\x36')],'\x65\x72\x72\x6f\x72':_0x502299 instanceof Error?_0x502299['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x502299)});}}return{'\x61\x63\x74\x69\x76\x65':_0x25ab97,'\x61\x63\x74\x69\x76\x65\x4e\x61\x6d\x65':_0x4f8043['\x6e\x61\x6d\x65'],'\x73\x68\x61\x64\x6f\x77\x73':_0x1714f0};}export function assignVariant(_0x569347,_0x118462){const _0x3d540d=_0x19a7;if(_0x118462[_0x3d540d(0x20c,'\x33\x63\x53\x41')]===0x169*0x1b+-0xdd*0x1f+-0xb50)throw new Error(_0x3d540d(0x20f,'\x6f\x28\x61\x49')+'\u4e3a\u7a7a');const _0x1d680e=createHash(_0x3d540d(0x20a,'\x2a\x5e\x32\x75'))[_0x3d540d(0x1f6,'\x37\x70\x47\x69')](_0x569347)[_0x3d540d(0x1ff,'\x37\x70\x47\x69')](),_0x2a0de3=_0x1d680e[_0x3d540d(0x202,'\x51\x74\x29\x4f')+_0x3d540d(0x21f,'\x38\x4f\x7a\x72')](0x104e+0x26e1+0x1265*-0x3)%_0x118462[_0x3d540d(0x218,'\x21\x76\x74\x51')];return _0x118462[_0x2a0de3];}export async function runAB(_0x4d9871,_0x5a1473,_0x7f2e55,_0x5baf56){const _0x8a3431=_0x19a7,_0x5234ff=assignVariant(_0x5baf56[_0x8a3431(0x1f4,'\x44\x59\x2a\x26')],_0x5a1473),_0x5712e3=_0x4d9871[_0x8a3431(0x1fb,'\x53\x4e\x48\x24')](_0x5234ff);if(!_0x5712e3)throw new Error(_0x8a3431(0x201,'\x47\x78\x43\x57')+_0x8a3431(0x20d,'\x24\x5a\x78\x55')+_0x5234ff);return{'\x76\x61\x72\x69\x61\x6e\x74':_0x5234ff,'\x6f\x75\x74\x70\x75\x74':await _0x5712e3[_0x8a3431(0x219,'\x6b\x57\x24\x72')](_0x7f2e55,_0x5baf56)};}export async function offlineReplay(_0x27bc60,_0x337a6f,_0x19f471,_0x3b243e,_0x5659a9=DEFAULT_WEIGHTS){const _0x48cef0=_0x19a7,_0x51b4e1=[];let _0x5b89bf=0x8d5+-0x1832+0xf5d;for(const _0x35ea67 of _0x337a6f){const _0x3ed5f1=await _0x27bc60['\x72\x75\x6e'](_0x35ea67,_0x3b243e(_0x5b89bf));_0x51b4e1[_0x48cef0(0x1f2,'\x4d\x56\x69\x28')](_0x19f471(_0x35ea67,_0x3ed5f1)),_0x5b89bf+=-0x642+0x126d*0x1+-0xc2a;}return computeFitness(_0x51b4e1,_0x5659a9);}
|