@evomap/evolver-proxy 2.0.0-beta.9 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/evolver-proxy.d.ts +26 -2
- package/dist/bin/evolver-proxy.js +284 -51
- package/dist/daemon/atpConsent.js +5 -2
- package/dist/daemon/collaborationFacade.js +23 -13
- package/dist/daemon/proxyDaemon.d.ts +52 -0
- package/dist/daemon/proxyDaemon.js +1067 -24
- package/dist/daemon/publishRecallVerifier.d.ts +114 -0
- package/dist/daemon/publishRecallVerifier.js +495 -0
- package/dist/daemon/selectHub.js +5 -3
- package/dist/daemon/systemdNotifier.d.ts +46 -0
- package/dist/daemon/systemdNotifier.js +153 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.js +4 -1
- package/dist/lifecycle/claimNudge.d.ts +20 -0
- package/dist/lifecycle/claimNudge.js +1 -0
- package/dist/lifecycle/deployGuard.js +1 -53
- package/dist/lifecycle/legacyNodeId.js +1 -178
- package/dist/lifecycle/manager.d.ts +4 -0
- package/dist/lifecycle/manager.js +1 -390
- package/dist/llm/bodyCapture.js +1 -293
- package/dist/llm/index.js +1 -3
- package/dist/llm/server.js +1 -359
- package/dist/llm/traceBackfill.js +1 -525
- package/dist/llm/traceConfig.js +1 -44
- package/dist/llm/traceControl.js +1 -85
- package/dist/llm/traceEnvelope.js +1 -286
- package/dist/llm/traceSink.js +1 -278
- package/dist/llm/traceUploadPayload.js +1 -27
- package/dist/llm/upstream.d.ts +5 -1
- package/dist/llm/upstream.js +1 -491
- package/dist/private/accountAssetCompatibility.d.ts +29 -0
- package/dist/private/accountAssetCompatibility.js +196 -0
- package/dist/private/adapterLoader.d.ts +21 -1
- package/dist/private/adapterLoader.js +242 -7
- package/dist/private/nodeCredentialStore.d.ts +23 -0
- package/dist/private/nodeCredentialStore.js +210 -0
- package/dist/router/cachePassthrough.js +1 -13
- package/dist/router/features.js +1 -52
- package/dist/router/index.js +1 -6
- package/dist/router/messagesRoute.js +1 -809
- package/dist/router/modelRouter.js +1 -66
- package/dist/router/providerRoutes.js +1 -1579
- package/dist/router/sseScan.js +1 -543
- package/dist/selfUpdate/bootstrap.d.ts +69 -0
- package/dist/selfUpdate/bootstrap.js +282 -0
- package/dist/selfUpdate/builtinKey.d.ts +4 -0
- package/dist/selfUpdate/builtinKey.js +16 -0
- package/dist/selfUpdate/executor.d.ts +1 -1
- package/dist/selfUpdate/executor.js +1 -1
- package/dist/selfUpdate/failureCodes.d.ts +4 -0
- package/dist/selfUpdate/failureCodes.js +7 -0
- package/dist/selfUpdate/migration.d.ts +93 -0
- package/dist/selfUpdate/migration.js +315 -0
- package/dist/selfUpdate/policy.d.ts +19 -2
- package/dist/selfUpdate/policy.js +82 -2
- package/dist/selfUpdate/releaseBinary.js +4 -1
- package/dist/sync/engine.d.ts +12 -0
- package/dist/sync/engine.js +1 -505
- package/package.json +7 -4
|
@@ -1,525 +1 @@
|
|
|
1
|
-
import { createHash } from 'node:crypto';
|
|
2
|
-
import { closeSync, existsSync, openSync, readdirSync, readSync, statSync } from 'node:fs';
|
|
3
|
-
import { join } from 'node:path';
|
|
4
|
-
import { mailbox } from '@evomap/evolver-core';
|
|
5
|
-
import { traceCollectionEnabled } from './traceConfig.js';
|
|
6
|
-
import { buildProxyTraceUploadPayload, PROXY_TRACE_UPLOAD_SCHEMA, } from './traceUploadPayload.js';
|
|
7
|
-
const TRACE_BACKFILL_STATE_PREFIX = 'llm_trace_backfill:v1:';
|
|
8
|
-
const DEFAULT_TRACE_BACKFILL_MAX_ROWS = 100;
|
|
9
|
-
const DEFAULT_TRACE_BACKFILL_MAX_SCAN_BYTES = 8 * 1024 * 1024;
|
|
10
|
-
const DEFAULT_TRACE_BACKFILL_MAX_LINE_BYTES = 1024 * 1024;
|
|
11
|
-
const DEFAULT_TRACE_BACKFILL_MAX_PENDING = 100;
|
|
12
|
-
const TRACE_CURSOR_GUARD_BYTES = 4096;
|
|
13
|
-
const SUMMARY_ALLOWED_KEYS = new Set([
|
|
14
|
-
'event',
|
|
15
|
-
'payload_schema',
|
|
16
|
-
'ts',
|
|
17
|
-
'route',
|
|
18
|
-
'provider',
|
|
19
|
-
'wire_api',
|
|
20
|
-
'original_model',
|
|
21
|
-
'chosen_model',
|
|
22
|
-
'tier',
|
|
23
|
-
'reason',
|
|
24
|
-
'fallback',
|
|
25
|
-
'router_enabled',
|
|
26
|
-
'upstream_mode',
|
|
27
|
-
'status',
|
|
28
|
-
'stream',
|
|
29
|
-
'ttfb_ms',
|
|
30
|
-
'latency_ms',
|
|
31
|
-
'usage',
|
|
32
|
-
]);
|
|
33
|
-
const SUMMARY_STRING_OR_NULL_KEYS = [
|
|
34
|
-
'route',
|
|
35
|
-
'provider',
|
|
36
|
-
'wire_api',
|
|
37
|
-
'original_model',
|
|
38
|
-
'chosen_model',
|
|
39
|
-
'tier',
|
|
40
|
-
'reason',
|
|
41
|
-
'fallback',
|
|
42
|
-
'upstream_mode',
|
|
43
|
-
];
|
|
44
|
-
const SUMMARY_NUMBER_OR_NULL_KEYS = ['status', 'ttfb_ms', 'latency_ms'];
|
|
45
|
-
const USAGE_ALLOWED_KEYS = new Set([
|
|
46
|
-
'input_tokens',
|
|
47
|
-
'output_tokens',
|
|
48
|
-
'cache_creation_input_tokens',
|
|
49
|
-
'cache_read_input_tokens',
|
|
50
|
-
]);
|
|
51
|
-
function isRecord(value) {
|
|
52
|
-
return Boolean(value) && typeof value === 'object' && !Array.isArray(value);
|
|
53
|
-
}
|
|
54
|
-
function isNonEmptyBase64(value) {
|
|
55
|
-
return typeof value === 'string' && value.length > 0 && /^[A-Za-z0-9+/]+={0,2}$/.test(value);
|
|
56
|
-
}
|
|
57
|
-
function hasOnlyKeys(value, allowed) {
|
|
58
|
-
return Object.keys(value).every((key) => allowed.has(key));
|
|
59
|
-
}
|
|
60
|
-
function hasOwnKey(value, key) {
|
|
61
|
-
return Object.prototype.hasOwnProperty.call(value, key);
|
|
62
|
-
}
|
|
63
|
-
function parseNodeSecretVersion(value) {
|
|
64
|
-
if (typeof value === 'number' && Number.isInteger(value) && value > 0)
|
|
65
|
-
return value;
|
|
66
|
-
if (typeof value !== 'string')
|
|
67
|
-
return undefined;
|
|
68
|
-
const trimmed = value.trim();
|
|
69
|
-
if (!/^[1-9]\d*$/.test(trimmed))
|
|
70
|
-
return undefined;
|
|
71
|
-
const parsed = Number(trimmed);
|
|
72
|
-
return Number.isSafeInteger(parsed) ? parsed : undefined;
|
|
73
|
-
}
|
|
74
|
-
function isProducerGeneration(value) {
|
|
75
|
-
return value === 'v1' || value === 'v2' || value === 'unknown';
|
|
76
|
-
}
|
|
77
|
-
function storeState(store, key) {
|
|
78
|
-
try {
|
|
79
|
-
return store?.getState?.(key) ?? undefined;
|
|
80
|
-
}
|
|
81
|
-
catch {
|
|
82
|
-
return undefined;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
/** Mirrors v1 extractor truthyState: accepts the string/number/boolean truthy forms the store may surface. */
|
|
86
|
-
function truthyState(value) {
|
|
87
|
-
return value === true || value === 'true' || value === 1 || value === '1';
|
|
88
|
-
}
|
|
89
|
-
/**
|
|
90
|
-
* v1 parity (extractor.js readTraceNodeSecretVersionDecryptEnabled): the hub-keyring decrypt path is OFF by
|
|
91
|
-
* default. It is enabled only when ANY of these env vars / store-state keys is truthy. Without it, an encrypted
|
|
92
|
-
* row that only carries a secret_version (no hub_key_envelope) can only be decrypted by the hub keyring, which
|
|
93
|
-
* older hubs cannot do — so we must refuse the upload.
|
|
94
|
-
*/
|
|
95
|
-
function readTraceNodeSecretVersionDecryptEnabled(env = process.env, store) {
|
|
96
|
-
const candidates = [
|
|
97
|
-
env['EVOMAP_PROXY_TRACE_NODE_SECRET_VERSION_DECRYPT'],
|
|
98
|
-
env['EVOMAP_PROXY_TRACE_HUB_KEYRING_DECRYPT'],
|
|
99
|
-
storeState(store, 'trace_node_secret_version_decrypt_enabled'),
|
|
100
|
-
storeState(store, 'proxy_trace_node_secret_version_decrypt_enabled'),
|
|
101
|
-
storeState(store, 'trace_hub_keyring_decrypt_enabled'),
|
|
102
|
-
storeState(store, 'proxy_trace_hub_keyring_decrypt_enabled'),
|
|
103
|
-
];
|
|
104
|
-
const rawEnabled = candidates.find((value) => value !== undefined && value !== null && value !== '');
|
|
105
|
-
return truthyState(rawEnabled);
|
|
106
|
-
}
|
|
107
|
-
/**
|
|
108
|
-
* v1 parity (extractor.js secretVersionTraceDecryptAllowed). An encrypted envelope is hub-decryptable when it
|
|
109
|
-
* carries a hub_key_envelope (always allowed). A secret_version-only envelope is allowed ONLY when the
|
|
110
|
-
* node-secret-version keyring-decrypt flag is enabled; otherwise the hub could never decrypt it.
|
|
111
|
-
*/
|
|
112
|
-
function secretVersionTraceDecryptAllowed(record, env, store) {
|
|
113
|
-
if (!record || typeof record !== 'object')
|
|
114
|
-
return false;
|
|
115
|
-
if (record.hub_key_envelope)
|
|
116
|
-
return true;
|
|
117
|
-
if (parseNodeSecretVersion(record.secret_version) === undefined)
|
|
118
|
-
return false;
|
|
119
|
-
return readTraceNodeSecretVersionDecryptEnabled(env, store);
|
|
120
|
-
}
|
|
121
|
-
function isOptionalShortString(value, max) {
|
|
122
|
-
return value === undefined || (typeof value === 'string' && value.length > 0 && value.length <= max);
|
|
123
|
-
}
|
|
124
|
-
function isOptionalNonNegativeSafeInteger(value) {
|
|
125
|
-
return value === undefined || (typeof value === 'number' && Number.isSafeInteger(value) && value >= 0);
|
|
126
|
-
}
|
|
127
|
-
function isStringOrNull(value) {
|
|
128
|
-
return typeof value === 'string' || value === null;
|
|
129
|
-
}
|
|
130
|
-
function isBooleanOrNull(value) {
|
|
131
|
-
return typeof value === 'boolean' || value === null;
|
|
132
|
-
}
|
|
133
|
-
function isFiniteNumberOrNull(value) {
|
|
134
|
-
return value === null || (typeof value === 'number' && Number.isFinite(value));
|
|
135
|
-
}
|
|
136
|
-
function isHubTraceUsageSummary(value) {
|
|
137
|
-
if (!isRecord(value) || !hasOnlyKeys(value, USAGE_ALLOWED_KEYS))
|
|
138
|
-
return false;
|
|
139
|
-
return Object.values(value).every((entry) => typeof entry === 'number' && Number.isFinite(entry));
|
|
140
|
-
}
|
|
141
|
-
function isHubTracePlaintextSummary(value) {
|
|
142
|
-
if (!isRecord(value) || !hasOnlyKeys(value, SUMMARY_ALLOWED_KEYS))
|
|
143
|
-
return false;
|
|
144
|
-
if (value['event'] !== 'llm_trace_plaintext_summary')
|
|
145
|
-
return false;
|
|
146
|
-
if (value['payload_schema'] !== 'llm_turn_summary')
|
|
147
|
-
return false;
|
|
148
|
-
if (typeof value['ts'] !== 'string')
|
|
149
|
-
return false;
|
|
150
|
-
for (const key of SUMMARY_STRING_OR_NULL_KEYS) {
|
|
151
|
-
if (!isStringOrNull(value[key]))
|
|
152
|
-
return false;
|
|
153
|
-
}
|
|
154
|
-
if (!isBooleanOrNull(value['router_enabled']))
|
|
155
|
-
return false;
|
|
156
|
-
if (!isBooleanOrNull(value['stream']))
|
|
157
|
-
return false;
|
|
158
|
-
for (const key of SUMMARY_NUMBER_OR_NULL_KEYS) {
|
|
159
|
-
if (!isFiniteNumberOrNull(value[key]))
|
|
160
|
-
return false;
|
|
161
|
-
}
|
|
162
|
-
return !hasOwnKey(value, 'usage') || isHubTraceUsageSummary(value['usage']);
|
|
163
|
-
}
|
|
164
|
-
function isHubKeyEnvelope(value) {
|
|
165
|
-
if (!isRecord(value))
|
|
166
|
-
return false;
|
|
167
|
-
const allowed = new Set(['algorithm', 'key_id', 'wrapped_key']);
|
|
168
|
-
return hasOnlyKeys(value, allowed)
|
|
169
|
-
&& value['algorithm'] === 'rsa-oaep-sha256'
|
|
170
|
-
&& typeof value['key_id'] === 'string'
|
|
171
|
-
&& /^[a-f0-9]{16}$/i.test(value['key_id'])
|
|
172
|
-
&& isNonEmptyBase64(value['wrapped_key']);
|
|
173
|
-
}
|
|
174
|
-
export function isHubDecryptableTraceEnvelope(record) {
|
|
175
|
-
if (!isRecord(record))
|
|
176
|
-
return false;
|
|
177
|
-
const allowed = new Set([
|
|
178
|
-
'schema_version',
|
|
179
|
-
'event',
|
|
180
|
-
'encrypted',
|
|
181
|
-
'payload_schema',
|
|
182
|
-
'algorithm',
|
|
183
|
-
'key_id',
|
|
184
|
-
'iv',
|
|
185
|
-
'tag',
|
|
186
|
-
'ciphertext',
|
|
187
|
-
'hub_key_envelope',
|
|
188
|
-
'secret_version',
|
|
189
|
-
'producer_generation',
|
|
190
|
-
'producer_version',
|
|
191
|
-
'producer_component',
|
|
192
|
-
'plaintext_summary',
|
|
193
|
-
'payload_complete',
|
|
194
|
-
'payload_incomplete_reason',
|
|
195
|
-
'hub_uploadable',
|
|
196
|
-
'hub_upload_blocked_reason',
|
|
197
|
-
'hub_upload_size_bytes',
|
|
198
|
-
'hub_upload_max_bytes',
|
|
199
|
-
]);
|
|
200
|
-
return hasOnlyKeys(record, allowed)
|
|
201
|
-
&& record['schema_version'] === 1
|
|
202
|
-
&& record['event'] === 'llm_trace_envelope'
|
|
203
|
-
&& record['encrypted'] === true
|
|
204
|
-
&& record['payload_schema'] === 'prism_trace_row'
|
|
205
|
-
&& record['algorithm'] === 'aes-256-gcm'
|
|
206
|
-
&& typeof record['key_id'] === 'string'
|
|
207
|
-
&& /^[a-f0-9]{16}$/i.test(record['key_id'])
|
|
208
|
-
&& isNonEmptyBase64(record['iv'])
|
|
209
|
-
&& isNonEmptyBase64(record['tag'])
|
|
210
|
-
&& isNonEmptyBase64(record['ciphertext'])
|
|
211
|
-
&& (!hasOwnKey(record, 'hub_key_envelope') || isHubKeyEnvelope(record['hub_key_envelope']))
|
|
212
|
-
&& (isHubKeyEnvelope(record['hub_key_envelope']) || parseNodeSecretVersion(record['secret_version']) !== undefined)
|
|
213
|
-
&& (record['secret_version'] === undefined || parseNodeSecretVersion(record['secret_version']) !== undefined)
|
|
214
|
-
&& (record['producer_generation'] === undefined || isProducerGeneration(record['producer_generation']))
|
|
215
|
-
&& isOptionalShortString(record['producer_version'], 32)
|
|
216
|
-
&& isOptionalShortString(record['producer_component'], 32)
|
|
217
|
-
&& (record['payload_complete'] === undefined || record['payload_complete'] === false)
|
|
218
|
-
&& isOptionalShortString(record['payload_incomplete_reason'], 64)
|
|
219
|
-
&& (record['hub_uploadable'] === undefined || record['hub_uploadable'] === false)
|
|
220
|
-
&& isOptionalShortString(record['hub_upload_blocked_reason'], 64)
|
|
221
|
-
&& isOptionalNonNegativeSafeInteger(record['hub_upload_size_bytes'])
|
|
222
|
-
&& isOptionalNonNegativeSafeInteger(record['hub_upload_max_bytes'])
|
|
223
|
-
&& (!hasOwnKey(record, 'plaintext_summary') || isHubTracePlaintextSummary(record['plaintext_summary']));
|
|
224
|
-
}
|
|
225
|
-
export function traceUploadBlockedReason(record) {
|
|
226
|
-
if (record.hub_uploadable === false) {
|
|
227
|
-
const reason = record.hub_upload_blocked_reason ?? 'hub_upload_blocked';
|
|
228
|
-
return reason === 'payload_incomplete' ? undefined : reason;
|
|
229
|
-
}
|
|
230
|
-
return undefined;
|
|
231
|
-
}
|
|
232
|
-
function isProxyTraceUploadPayload(payload) {
|
|
233
|
-
if (!isRecord(payload))
|
|
234
|
-
return false;
|
|
235
|
-
const allowed = new Set([
|
|
236
|
-
'schema',
|
|
237
|
-
'encrypted',
|
|
238
|
-
'trace',
|
|
239
|
-
'node_secret_version',
|
|
240
|
-
'secret_version',
|
|
241
|
-
'producer_generation',
|
|
242
|
-
'producer_version',
|
|
243
|
-
'producer_component',
|
|
244
|
-
]);
|
|
245
|
-
return hasOnlyKeys(payload, allowed)
|
|
246
|
-
&& payload['schema'] === PROXY_TRACE_UPLOAD_SCHEMA
|
|
247
|
-
&& payload['encrypted'] === true
|
|
248
|
-
&& isHubDecryptableTraceEnvelope(payload['trace'])
|
|
249
|
-
&& (payload['node_secret_version'] === undefined || parseNodeSecretVersion(payload['node_secret_version']) !== undefined)
|
|
250
|
-
&& (payload['secret_version'] === undefined || parseNodeSecretVersion(payload['secret_version']) !== undefined)
|
|
251
|
-
&& (payload['producer_generation'] === undefined || isProducerGeneration(payload['producer_generation']))
|
|
252
|
-
&& isOptionalShortString(payload['producer_version'], 32)
|
|
253
|
-
&& isOptionalShortString(payload['producer_component'], 32);
|
|
254
|
-
}
|
|
255
|
-
export function normalizeProxyTraceOutboundPayload(payload, env = process.env, store) {
|
|
256
|
-
if (!traceCollectionEnabled(env, store) || env['EVOLVER_LLM_TRACE_MAILBOX'] === '0') {
|
|
257
|
-
return { ok: false, reason: 'proxy_trace_upload_disabled' };
|
|
258
|
-
}
|
|
259
|
-
// v1 parity (isProxyTraceUploadPayloadAllowed): an encrypted row that carries a secret_version but no
|
|
260
|
-
// hub_key_envelope is decryptable only by the hub keyring. Refuse it at egress unless the keyring-decrypt
|
|
261
|
-
// flag is enabled — a hub_key_envelope row is always allowed.
|
|
262
|
-
const gate = (trace) => {
|
|
263
|
-
const blockedReason = traceUploadBlockedReason(trace);
|
|
264
|
-
if (blockedReason)
|
|
265
|
-
return { ok: false, reason: blockedReason };
|
|
266
|
-
if (!secretVersionTraceDecryptAllowed(trace, env, store)) {
|
|
267
|
-
return { ok: false, reason: 'hub_keyring_decrypt_unsupported' };
|
|
268
|
-
}
|
|
269
|
-
return { ok: true, payload: buildProxyTraceUploadPayload(trace) };
|
|
270
|
-
};
|
|
271
|
-
if (isProxyTraceUploadPayload(payload))
|
|
272
|
-
return gate(payload.trace);
|
|
273
|
-
if (isRecord(payload) && payload['schema'] === PROXY_TRACE_UPLOAD_SCHEMA && payload['encrypted'] === true) {
|
|
274
|
-
const trace = payload['trace'];
|
|
275
|
-
if (isHubDecryptableTraceEnvelope(trace)) {
|
|
276
|
-
return gate(trace);
|
|
277
|
-
}
|
|
278
|
-
return { ok: false, reason: 'proxy_trace_payload_rejected' };
|
|
279
|
-
}
|
|
280
|
-
if (isHubDecryptableTraceEnvelope(payload))
|
|
281
|
-
return gate(payload);
|
|
282
|
-
return { ok: false, reason: 'proxy_trace_payload_rejected' };
|
|
283
|
-
}
|
|
284
|
-
export function traceUploadIdempotencyKey(record) {
|
|
285
|
-
return `proxy_trace:${createHash('sha256').update(JSON.stringify(record)).digest('hex')}`;
|
|
286
|
-
}
|
|
287
|
-
export function enqueueTraceEnvelope(store, record, opts = {}) {
|
|
288
|
-
if (!traceCollectionEnabled(opts.env ?? process.env, store)) {
|
|
289
|
-
return { queued: false, duplicate: false };
|
|
290
|
-
}
|
|
291
|
-
if (traceUploadBlockedReason(record)) {
|
|
292
|
-
return { queued: false, duplicate: false };
|
|
293
|
-
}
|
|
294
|
-
// v1 parity (validateTraceUpload): refuse — without enqueueing — an encrypted row that carries a
|
|
295
|
-
// secret_version but no hub_key_envelope unless the node-secret-version keyring-decrypt flag is enabled.
|
|
296
|
-
// The hub could otherwise never decrypt it. The mailbox store doubles as the decrypt-flag state source.
|
|
297
|
-
if (!secretVersionTraceDecryptAllowed(record, opts.env ?? process.env, store)) {
|
|
298
|
-
return { queued: false, duplicate: false };
|
|
299
|
-
}
|
|
300
|
-
const idempotencyKey = traceUploadIdempotencyKey(record);
|
|
301
|
-
const payload = buildProxyTraceUploadPayload(record);
|
|
302
|
-
if (store.hasMessageWithIdempotencyKey?.(idempotencyKey)
|
|
303
|
-
|| store.hasMessageWithPayload?.('proxy_trace', payload)
|
|
304
|
-
|| store.hasMessageWithPayload?.('proxy_trace', record)) {
|
|
305
|
-
return { queued: false, duplicate: true };
|
|
306
|
-
}
|
|
307
|
-
const env = mailbox.createEnvelope({
|
|
308
|
-
id: idempotencyKey,
|
|
309
|
-
type: 'proxy_trace',
|
|
310
|
-
payload,
|
|
311
|
-
correlationId: idempotencyKey,
|
|
312
|
-
idempotencyKey,
|
|
313
|
-
...(opts.now !== undefined ? { now: opts.now } : {}),
|
|
314
|
-
...(opts.runtimeNamespace ? { runtimeNamespace: opts.runtimeNamespace } : {}),
|
|
315
|
-
...(opts.sourceAgent ? { sourceAgent: opts.sourceAgent } : {}),
|
|
316
|
-
...(opts.targetAgent ? { targetAgent: opts.targetAgent } : {}),
|
|
317
|
-
});
|
|
318
|
-
return { queued: store.send(env).stored, duplicate: false };
|
|
319
|
-
}
|
|
320
|
-
function numberFromEnv(env, keys, fallback) {
|
|
321
|
-
for (const key of keys) {
|
|
322
|
-
const raw = Number(env[key]);
|
|
323
|
-
if (Number.isFinite(raw) && raw > 0)
|
|
324
|
-
return Math.floor(raw);
|
|
325
|
-
}
|
|
326
|
-
return fallback;
|
|
327
|
-
}
|
|
328
|
-
function cursorKey(file) {
|
|
329
|
-
return `${TRACE_BACKFILL_STATE_PREFIX}${createHash('sha256').update(file).digest('hex').slice(0, 24)}`;
|
|
330
|
-
}
|
|
331
|
-
function currentCursorState(file, offset) {
|
|
332
|
-
const stat = statSync(file);
|
|
333
|
-
return {
|
|
334
|
-
dev: Number(stat.dev) || 0,
|
|
335
|
-
ino: Number(stat.ino) || 0,
|
|
336
|
-
birthtimeMs: Math.floor(Number(stat.birthtimeMs) || 0),
|
|
337
|
-
size: Number(stat.size) || 0,
|
|
338
|
-
offset,
|
|
339
|
-
guard: cursorGuard(file, offset),
|
|
340
|
-
};
|
|
341
|
-
}
|
|
342
|
-
function cursorGuard(file, offset) {
|
|
343
|
-
if (offset <= 0)
|
|
344
|
-
return '';
|
|
345
|
-
const bytesToRead = Math.min(TRACE_CURSOR_GUARD_BYTES, offset);
|
|
346
|
-
const fd = openSync(file, 'r');
|
|
347
|
-
try {
|
|
348
|
-
const buf = Buffer.alloc(bytesToRead);
|
|
349
|
-
const bytesRead = readSync(fd, buf, 0, bytesToRead, offset - bytesToRead);
|
|
350
|
-
return createHash('sha256').update(buf.subarray(0, bytesRead)).digest('hex');
|
|
351
|
-
}
|
|
352
|
-
finally {
|
|
353
|
-
closeSync(fd);
|
|
354
|
-
}
|
|
355
|
-
}
|
|
356
|
-
function parseCursor(raw) {
|
|
357
|
-
if (!raw)
|
|
358
|
-
return null;
|
|
359
|
-
try {
|
|
360
|
-
const parsed = JSON.parse(raw);
|
|
361
|
-
if (typeof parsed.dev === 'number'
|
|
362
|
-
&& typeof parsed.ino === 'number'
|
|
363
|
-
&& typeof parsed.birthtimeMs === 'number'
|
|
364
|
-
&& typeof parsed.size === 'number'
|
|
365
|
-
&& typeof parsed.offset === 'number'
|
|
366
|
-
&& (typeof parsed.guard === 'string' || parsed.guard === undefined)
|
|
367
|
-
&& parsed.offset >= 0)
|
|
368
|
-
return { ...parsed, guard: parsed.guard ?? '' };
|
|
369
|
-
}
|
|
370
|
-
catch {
|
|
371
|
-
return null;
|
|
372
|
-
}
|
|
373
|
-
return null;
|
|
374
|
-
}
|
|
375
|
-
function sameFileIdentity(a, b) {
|
|
376
|
-
if (!a)
|
|
377
|
-
return false;
|
|
378
|
-
if (a.dev && b.dev && a.ino && b.ino)
|
|
379
|
-
return a.dev === b.dev && a.ino === b.ino;
|
|
380
|
-
return a.birthtimeMs > 0 && a.birthtimeMs === b.birthtimeMs;
|
|
381
|
-
}
|
|
382
|
-
function cursorOffset(store, file) {
|
|
383
|
-
const statState = currentCursorState(file, 0);
|
|
384
|
-
const saved = parseCursor(store.getState?.(cursorKey(file)));
|
|
385
|
-
if (!sameFileIdentity(saved, statState))
|
|
386
|
-
return 0;
|
|
387
|
-
if (!saved || saved.offset > statState.size || saved.size > statState.size)
|
|
388
|
-
return 0;
|
|
389
|
-
if (saved.guard !== cursorGuard(file, saved.offset))
|
|
390
|
-
return 0;
|
|
391
|
-
return saved.offset;
|
|
392
|
-
}
|
|
393
|
-
function readCompleteLines(file, offset, maxBytes, maxLineBytes) {
|
|
394
|
-
const stat = statSync(file);
|
|
395
|
-
const bytesToRead = Math.min(maxBytes, Math.max(0, stat.size - offset));
|
|
396
|
-
if (bytesToRead <= 0)
|
|
397
|
-
return { lines: [], nextOffset: offset, lineTooLong: false };
|
|
398
|
-
const fd = openSync(file, 'r');
|
|
399
|
-
try {
|
|
400
|
-
const buf = Buffer.alloc(bytesToRead);
|
|
401
|
-
const bytesRead = readSync(fd, buf, 0, bytesToRead, offset);
|
|
402
|
-
let pos = 0;
|
|
403
|
-
let nextOffset = offset;
|
|
404
|
-
let lineTooLong = false;
|
|
405
|
-
const lines = [];
|
|
406
|
-
while (pos < bytesRead) {
|
|
407
|
-
const nl = buf.indexOf(0x0a, pos);
|
|
408
|
-
if (nl === -1) {
|
|
409
|
-
if (bytesRead === bytesToRead && offset + bytesRead < stat.size) {
|
|
410
|
-
const partialLineBytes = bytesRead - pos;
|
|
411
|
-
if (partialLineBytes > maxLineBytes) {
|
|
412
|
-
nextOffset = offset + bytesRead;
|
|
413
|
-
lineTooLong = true;
|
|
414
|
-
}
|
|
415
|
-
}
|
|
416
|
-
break;
|
|
417
|
-
}
|
|
418
|
-
const rawLine = buf.subarray(pos, nl);
|
|
419
|
-
nextOffset = offset + nl + 1;
|
|
420
|
-
pos = nl + 1;
|
|
421
|
-
if (rawLine.length === 0)
|
|
422
|
-
continue;
|
|
423
|
-
if (rawLine.length > maxLineBytes) {
|
|
424
|
-
lineTooLong = true;
|
|
425
|
-
continue;
|
|
426
|
-
}
|
|
427
|
-
lines.push({ raw: rawLine.toString('utf8'), nextOffset });
|
|
428
|
-
}
|
|
429
|
-
return { lines, nextOffset, lineTooLong };
|
|
430
|
-
}
|
|
431
|
-
finally {
|
|
432
|
-
closeSync(fd);
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
function traceFiles(dir) {
|
|
436
|
-
if (!existsSync(dir))
|
|
437
|
-
return [];
|
|
438
|
-
return readdirSync(dir)
|
|
439
|
-
.filter((name) => /^llm-trace-\d{8}\.jsonl$/.test(name))
|
|
440
|
-
.sort()
|
|
441
|
-
.map((name) => join(dir, name));
|
|
442
|
-
}
|
|
443
|
-
function bump(stats, reason) {
|
|
444
|
-
stats.skipped += 1;
|
|
445
|
-
stats.reasons[reason] = (stats.reasons[reason] ?? 0) + 1;
|
|
446
|
-
}
|
|
447
|
-
function persistCursor(store, file, offset) {
|
|
448
|
-
store.setState?.(cursorKey(file), JSON.stringify(currentCursorState(file, offset)));
|
|
449
|
-
}
|
|
450
|
-
export function backfillProxyTraceUploads(opts) {
|
|
451
|
-
const env = opts.env ?? process.env;
|
|
452
|
-
const maxRows = numberFromEnv(env, ['EVOLVER_LLM_TRACE_BACKFILL_MAX_ROWS', 'EVOMAP_PROXY_TRACE_BACKFILL_MAX_ROWS'], DEFAULT_TRACE_BACKFILL_MAX_ROWS);
|
|
453
|
-
const maxScanBytes = numberFromEnv(env, ['EVOLVER_LLM_TRACE_BACKFILL_MAX_SCAN_BYTES', 'EVOMAP_PROXY_TRACE_BACKFILL_MAX_SCAN_BYTES'], DEFAULT_TRACE_BACKFILL_MAX_SCAN_BYTES);
|
|
454
|
-
const maxLineBytes = numberFromEnv(env, ['EVOLVER_LLM_TRACE_BACKFILL_MAX_LINE_BYTES', 'EVOMAP_PROXY_TRACE_BACKFILL_MAX_LINE_BYTES'], DEFAULT_TRACE_BACKFILL_MAX_LINE_BYTES);
|
|
455
|
-
const maxPending = numberFromEnv(env, ['EVOLVER_LLM_TRACE_MAX_PENDING_UPLOADS', 'EVOMAP_PROXY_TRACE_MAX_PENDING_UPLOADS'], DEFAULT_TRACE_BACKFILL_MAX_PENDING);
|
|
456
|
-
const stats = { scanned: 0, queued: 0, duplicates: 0, skipped: 0, files: 0, reasons: {} };
|
|
457
|
-
let stopBackfill = false;
|
|
458
|
-
for (const file of traceFiles(opts.dir)) {
|
|
459
|
-
if (stopBackfill || stats.scanned >= maxRows)
|
|
460
|
-
break;
|
|
461
|
-
let pending = opts.store.countPending?.('proxy', opts.runtimeNamespace);
|
|
462
|
-
if (pending !== undefined && pending >= maxPending) {
|
|
463
|
-
bump(stats, 'max_pending_uploads');
|
|
464
|
-
break;
|
|
465
|
-
}
|
|
466
|
-
stats.files += 1;
|
|
467
|
-
let offset = cursorOffset(opts.store, file);
|
|
468
|
-
try {
|
|
469
|
-
const read = readCompleteLines(file, offset, maxScanBytes, maxLineBytes);
|
|
470
|
-
if (read.lineTooLong)
|
|
471
|
-
bump(stats, 'line_too_long');
|
|
472
|
-
let processedLineCount = 0;
|
|
473
|
-
for (const line of read.lines) {
|
|
474
|
-
if (stats.scanned >= maxRows)
|
|
475
|
-
break;
|
|
476
|
-
if (pending !== undefined && pending >= maxPending) {
|
|
477
|
-
bump(stats, 'max_pending_uploads');
|
|
478
|
-
stopBackfill = true;
|
|
479
|
-
break;
|
|
480
|
-
}
|
|
481
|
-
processedLineCount += 1;
|
|
482
|
-
stats.scanned += 1;
|
|
483
|
-
offset = line.nextOffset;
|
|
484
|
-
let parsed;
|
|
485
|
-
try {
|
|
486
|
-
parsed = JSON.parse(line.raw);
|
|
487
|
-
}
|
|
488
|
-
catch {
|
|
489
|
-
bump(stats, 'invalid_json');
|
|
490
|
-
continue;
|
|
491
|
-
}
|
|
492
|
-
if (!isHubDecryptableTraceEnvelope(parsed)) {
|
|
493
|
-
bump(stats, 'not_hub_decryptable');
|
|
494
|
-
continue;
|
|
495
|
-
}
|
|
496
|
-
const blockedReason = traceUploadBlockedReason(parsed);
|
|
497
|
-
if (blockedReason) {
|
|
498
|
-
bump(stats, blockedReason);
|
|
499
|
-
continue;
|
|
500
|
-
}
|
|
501
|
-
const queued = enqueueTraceEnvelope(opts.store, parsed, {
|
|
502
|
-
now: opts.now?.(),
|
|
503
|
-
env,
|
|
504
|
-
...(opts.runtimeNamespace ? { runtimeNamespace: opts.runtimeNamespace } : {}),
|
|
505
|
-
...(opts.sourceAgent ? { sourceAgent: opts.sourceAgent } : {}),
|
|
506
|
-
...(opts.targetAgent ? { targetAgent: opts.targetAgent } : {}),
|
|
507
|
-
});
|
|
508
|
-
if (queued.duplicate)
|
|
509
|
-
stats.duplicates += 1;
|
|
510
|
-
else if (queued.queued) {
|
|
511
|
-
stats.queued += 1;
|
|
512
|
-
if (pending !== undefined)
|
|
513
|
-
pending += 1;
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
if (processedLineCount === read.lines.length && read.nextOffset > offset)
|
|
517
|
-
offset = read.nextOffset;
|
|
518
|
-
persistCursor(opts.store, file, offset);
|
|
519
|
-
}
|
|
520
|
-
catch {
|
|
521
|
-
bump(stats, 'read_failed');
|
|
522
|
-
}
|
|
523
|
-
}
|
|
524
|
-
return stats;
|
|
525
|
-
}
|
|
1
|
+
const _0x3bd873=_0x3097;(function(_0x1f15f9,_0x2a074f){const _0x57f48a=_0x3097,_0x1502c4=_0x1f15f9();while(!![]){try{const _0x213c8e=parseInt(_0x57f48a(0x1fa,'\x65\x49\x23\x40'))/(-0x54e*-0x3+-0x16c0+-0x67*-0x11)+-parseInt(_0x57f48a(0x274,'\x70\x29\x75\x24'))/(-0x6cc+-0x1e10+0x24de)+-parseInt(_0x57f48a(0x2aa,'\x2a\x4a\x6c\x5e'))/(0x3e*-0x23+-0x9ff+0x127c)+parseInt(_0x57f48a(0x2b0,'\x50\x4e\x4a\x32'))/(0x2c*-0x70+0x25ae+-0x935*0x2)*(parseInt(_0x57f48a(0x11a,'\x6d\x38\x75\x62'))/(-0x103*-0x1b+0x2137+-0x3c83))+parseInt(_0x57f48a(0x124,'\x24\x53\x67\x77'))/(-0x197b+-0x134d+-0x2*-0x1667)*(-parseInt(_0x57f48a(0x2a4,'\x28\x6a\x54\x5e'))/(-0x11*-0x4+0x7*0x287+-0x2*0x8f7))+-parseInt(_0x57f48a(0x26e,'\x70\x29\x75\x24'))/(-0x1118+-0x6*-0x152+0x934)*(parseInt(_0x57f48a(0x16e,'\x61\x23\x52\x44'))/(0x1563+-0x2536+0x7*0x244))+-parseInt(_0x57f48a(0xc5,'\x6a\x55\x24\x55'))/(0x1d3e+-0x1*-0x3c7+-0x1*0x20fb)*(-parseInt(_0x57f48a(0x10e,'\x63\x64\x66\x77'))/(-0x20b6+0x26e4+0x1*-0x623));if(_0x213c8e===_0x2a074f)break;else _0x1502c4['push'](_0x1502c4['shift']());}catch(_0x2af677){_0x1502c4['push'](_0x1502c4['shift']());}}}(_0x6edb,0x4ae9b+-0xb*-0x2588b+-0x1*0x1139c6));import{createHash}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';import{closeSync,existsSync,openSync,readdirSync,readSync,statSync}from'\x6e\x6f\x64\x65\x3a\x66\x73';import{join}from'\x6e\x6f\x64\x65\x3a\x70\x61\x74\x68';import{mailbox}from'\x40\x65\x76\x6f\x6d\x61\x70\x2f\x65\x76\x6f\x6c\x76\x65\x72\x2d\x63\x6f\x72\x65';import{traceCollectionEnabled}from'\x2e\x2f\x74\x72\x61\x63\x65\x43\x6f\x6e\x66\x69\x67\x2e\x6a\x73';import{buildProxyTraceUploadPayload,PROXY_TRACE_UPLOAD_SCHEMA}from'\x2e\x2f\x74\x72\x61\x63\x65\x55\x70\x6c\x6f\x61\x64\x50\x61\x79\x6c\x6f\x61\x64\x2e\x6a\x73';const TRACE_BACKFILL_STATE_PREFIX=_0x3bd873(0x26f,'\x39\x56\x21\x5e')+_0x3bd873(0x88,'\x4e\x47\x2a\x6c')+_0x3bd873(0x1c8,'\x24\x30\x25\x64'),DEFAULT_TRACE_BACKFILL_MAX_ROWS=0xbe9+-0x26fe+0x1b79,DEFAULT_TRACE_BACKFILL_MAX_SCAN_BYTES=(0x1759*-0x1+-0x1af*-0x8+0x3b*0x2b)*(0xa*0x12c+0x242f+0x2be7*-0x1)*(0x4f*0x76+-0x4*0x6e2+-0x7d*0xa),DEFAULT_TRACE_BACKFILL_MAX_LINE_BYTES=(0x463*-0x7+0x1*-0x1a45+0x23*0x1be)*(-0x1d14+-0xd*-0x2f3+0x1*-0x543),DEFAULT_TRACE_BACKFILL_MAX_PENDING=-0x1d18+0x1*0x2531+-0x1*0x7b5,TRACE_CURSOR_GUARD_BYTES=-0xd15+-0x12b5+0x6*0x7f7,SUMMARY_ALLOWED_KEYS=new Set([_0x3bd873(0x13b,'\x64\x31\x63\x26'),_0x3bd873(0x20d,'\x39\x56\x21\x5e')+_0x3bd873(0x238,'\x47\x67\x67\x67'),'\x74\x73',_0x3bd873(0x22e,'\x6e\x23\x21\x41'),_0x3bd873(0x17b,'\x6a\x55\x24\x55'),_0x3bd873(0xa5,'\x61\x23\x52\x44'),_0x3bd873(0x17a,'\x47\x67\x67\x67')+_0x3bd873(0xa2,'\x61\x23\x52\x44'),_0x3bd873(0x1ab,'\x58\x5b\x23\x4c')+_0x3bd873(0x89,'\x71\x68\x29\x55'),_0x3bd873(0x18e,'\x66\x36\x48\x64'),_0x3bd873(0x232,'\x66\x4b\x51\x25'),_0x3bd873(0x248,'\x7a\x6f\x41\x68'),_0x3bd873(0x194,'\x79\x74\x72\x78')+_0x3bd873(0x142,'\x6e\x23\x21\x41'),_0x3bd873(0xc9,'\x46\x55\x49\x34')+_0x3bd873(0x292,'\x33\x67\x36\x2a'),_0x3bd873(0x168,'\x73\x78\x44\x32'),_0x3bd873(0x1d0,'\x28\x67\x61\x48'),_0x3bd873(0x1b5,'\x36\x36\x21\x7a'),'\x6c\x61\x74\x65\x6e\x63\x79\x5f'+'\x6d\x73',_0x3bd873(0x116,'\x6f\x63\x4f\x36')]),SUMMARY_STRING_OR_NULL_KEYS=[_0x3bd873(0xbf,'\x4e\x47\x2a\x6c'),_0x3bd873(0xea,'\x24\x57\x26\x78'),'\x77\x69\x72\x65\x5f\x61\x70\x69',_0x3bd873(0x286,'\x34\x49\x25\x48')+_0x3bd873(0x279,'\x47\x67\x67\x67'),_0x3bd873(0xd8,'\x66\x4b\x51\x25')+_0x3bd873(0x2a9,'\x6a\x55\x24\x55'),_0x3bd873(0xe6,'\x49\x33\x26\x6e'),_0x3bd873(0x26a,'\x34\x49\x25\x48'),_0x3bd873(0xfb,'\x5b\x29\x74\x35'),_0x3bd873(0x199,'\x75\x66\x29\x69')+_0x3bd873(0x20a,'\x61\x23\x52\x44')],SUMMARY_NUMBER_OR_NULL_KEYS=[_0x3bd873(0xcf,'\x49\x70\x75\x41'),_0x3bd873(0x222,'\x65\x49\x23\x40'),_0x3bd873(0x180,'\x56\x65\x39\x51')+'\x6d\x73'],USAGE_ALLOWED_KEYS=new Set(['\x69\x6e\x70\x75\x74\x5f\x74\x6f'+'\x6b\x65\x6e\x73',_0x3bd873(0x1c6,'\x50\x4e\x4a\x32')+_0x3bd873(0x25d,'\x70\x29\x75\x24'),_0x3bd873(0xd5,'\x30\x23\x6a\x6b')+_0x3bd873(0x293,'\x67\x58\x51\x38')+'\x6e\x70\x75\x74\x5f\x74\x6f\x6b'+'\x65\x6e\x73',_0x3bd873(0x161,'\x49\x33\x26\x6e')+_0x3bd873(0x24e,'\x28\x6a\x54\x5e')+_0x3bd873(0x150,'\x28\x67\x61\x48')]);function isRecord(_0x69dc27){const _0x587fd7=_0x3bd873;return Boolean(_0x69dc27)&&typeof _0x69dc27===_0x587fd7(0xcd,'\x70\x29\x75\x24')&&!Array[_0x587fd7(0x288,'\x6e\x70\x35\x6f')](_0x69dc27);}function isNonEmptyBase64(_0x3af020){const _0x38d9a6=_0x3bd873;return typeof _0x3af020===_0x38d9a6(0x187,'\x6e\x23\x21\x41')&&_0x3af020[_0x38d9a6(0x1c5,'\x75\x66\x29\x69')]>0x1b2f+0x2459+0x6b*-0x98&&/^[A-Za-z0-9+/]+={0,2}$/[_0x38d9a6(0x201,'\x7a\x6f\x41\x68')](_0x3af020);}function hasOnlyKeys(_0x47a288,_0x9da2){const _0x41251f=_0x3bd873;return Object[_0x41251f(0x21c,'\x28\x6a\x54\x5e')](_0x47a288)[_0x41251f(0x99,'\x28\x67\x61\x48')](_0x16f3b2=>_0x9da2['\x68\x61\x73'](_0x16f3b2));}function hasOwnKey(_0x34dd68,_0x293017){const _0x27d7c3=_0x3bd873;return Object[_0x27d7c3(0x15c,'\x41\x6a\x26\x59')+'\x65'][_0x27d7c3(0x197,'\x49\x33\x26\x6e')+_0x27d7c3(0x141,'\x6a\x55\x24\x55')]['\x63\x61\x6c\x6c'](_0x34dd68,_0x293017);}function parseNodeSecretVersion(_0x4cf507){const _0x2af39d=_0x3bd873;if(typeof _0x4cf507===_0x2af39d(0x27d,'\x66\x36\x48\x64')&&Number[_0x2af39d(0xed,'\x28\x67\x61\x48')+'\x72'](_0x4cf507)&&_0x4cf507>0x47*0x9+0x2*0x30a+-0x893)return _0x4cf507;if(typeof _0x4cf507!==_0x2af39d(0x25e,'\x39\x56\x21\x5e'))return undefined;const _0x423709=_0x4cf507[_0x2af39d(0x241,'\x49\x70\x75\x41')]();if(!/^[1-9]\d*$/['\x74\x65\x73\x74'](_0x423709))return undefined;const _0x26708f=Number(_0x423709);return Number[_0x2af39d(0x209,'\x28\x6a\x54\x5e')+_0x2af39d(0x299,'\x5b\x29\x74\x35')](_0x26708f)?_0x26708f:undefined;}function isProducerGeneration(_0x26248a){const _0x28de08=_0x3bd873;return _0x26248a==='\x76\x31'||_0x26248a==='\x76\x32'||_0x26248a===_0x28de08(0x123,'\x49\x33\x26\x6e');}function storeState(_0x179d21,_0x2a6546){const _0x1f38ce=_0x3bd873;try{if(_0x1f38ce(0x1f1,'\x4e\x47\x53\x23')===_0x1f38ce(0x18f,'\x46\x55\x49\x34'))return _0x179d21?.[_0x1f38ce(0x17d,'\x56\x40\x4c\x44')]?.(_0x2a6546)??undefined;else{const _0xa8ae6d=_0x357c7d(_0x191743,0x7c5+0x9*0x2da+-0x216f),_0x536cf7=_0x53465a(_0x27abea[_0x1f38ce(0x250,'\x4e\x47\x53\x23')]?.(_0x3ffa40(_0x33acba)));if(!_0x5aa993(_0x536cf7,_0xa8ae6d))return 0x259*-0xf+-0x254e+0x4885;if(!_0x536cf7||_0x536cf7[_0x1f38ce(0x167,'\x66\x36\x48\x64')]>_0xa8ae6d['\x73\x69\x7a\x65']||_0x536cf7['\x73\x69\x7a\x65']>_0xa8ae6d[_0x1f38ce(0xd3,'\x4e\x47\x2a\x6c')])return 0x129+0x1*0x6f4+-0x1*0x81d;if(_0x536cf7[_0x1f38ce(0x1cd,'\x46\x55\x49\x34')]!==_0xc30ea7(_0x36401b,_0x536cf7[_0x1f38ce(0x83,'\x61\x56\x2a\x53')]))return-0x1ffb+-0x16cd*-0x1+0x92e;return _0x536cf7[_0x1f38ce(0x203,'\x71\x68\x29\x55')];}}catch{if(_0x1f38ce(0x169,'\x73\x78\x44\x32')===_0x1f38ce(0x1fb,'\x61\x23\x52\x44'))return undefined;else{if(!_0x366412(_0x103f6f[_0xf206e4]))return![];}}}function truthyState(_0x22bd0e){const _0x3a166c=_0x3bd873;return _0x22bd0e===!![]||_0x22bd0e===_0x3a166c(0x10c,'\x30\x66\x33\x75')||_0x22bd0e===0x1fb1+-0x74f*0x2+0x17*-0xbe||_0x22bd0e==='\x31';}function readTraceNodeSecretVersionDecryptEnabled(_0x328309=process.env,_0xda87f0){const _0x9de748=_0x3bd873,_0x52359a=[_0x328309[_0x9de748(0x1ec,'\x33\x67\x36\x2a')+_0x9de748(0xc1,'\x30\x66\x33\x75')+_0x9de748(0xca,'\x6e\x23\x21\x41')+'\x53\x45\x43\x52\x45\x54\x5f\x56'+_0x9de748(0x282,'\x47\x67\x67\x67')+_0x9de748(0x8c,'\x61\x56\x2a\x53')],_0x328309[_0x9de748(0x1cc,'\x73\x55\x4b\x71')+_0x9de748(0x7e,'\x56\x65\x39\x51')+_0x9de748(0x138,'\x67\x58\x51\x38')+_0x9de748(0xd7,'\x61\x23\x52\x44')+_0x9de748(0x14d,'\x2a\x4a\x6c\x5e')],storeState(_0xda87f0,_0x9de748(0x271,'\x66\x36\x48\x64')+_0x9de748(0x1ce,'\x73\x78\x44\x32')+'\x74\x5f\x76\x65\x72\x73\x69\x6f'+_0x9de748(0x228,'\x73\x55\x4b\x71')+_0x9de748(0x1f2,'\x49\x70\x75\x41')+'\x64'),storeState(_0xda87f0,'\x70\x72\x6f\x78\x79\x5f\x74\x72'+'\x61\x63\x65\x5f\x6e\x6f\x64\x65'+_0x9de748(0x181,'\x5b\x29\x74\x35')+_0x9de748(0x264,'\x6e\x23\x21\x41')+_0x9de748(0x102,'\x75\x66\x29\x69')+_0x9de748(0x9c,'\x5b\x29\x74\x35')),storeState(_0xda87f0,'\x74\x72\x61\x63\x65\x5f\x68\x75'+'\x62\x5f\x6b\x65\x79\x72\x69\x6e'+_0x9de748(0x23b,'\x73\x78\x44\x32')+_0x9de748(0x298,'\x75\x66\x29\x69')+'\x64'),storeState(_0xda87f0,'\x70\x72\x6f\x78\x79\x5f\x74\x72'+_0x9de748(0x110,'\x30\x66\x33\x75')+_0x9de748(0x23e,'\x61\x56\x2a\x53')+_0x9de748(0x196,'\x58\x5b\x23\x4c')+_0x9de748(0x28f,'\x58\x5b\x23\x4c'))],_0x326982=_0x52359a[_0x9de748(0x1ea,'\x71\x68\x29\x55')](_0x383522=>_0x383522!==undefined&&_0x383522!==null&&_0x383522!=='');return truthyState(_0x326982);}function _0x6edb(){const _0x3c4e4b=['\x75\x38\x6f\x6b\x62\x73\x78\x64\x48\x66\x43\x6d\x73\x47','\x61\x38\x6f\x43\x72\x32\x48\x32\x67\x38\x6b\x6c\x61\x71','\x61\x61\x37\x63\x49\x77\x66\x48\x77\x53\x6b\x42\x57\x51\x65','\x57\x35\x4a\x63\x4b\x4a\x6c\x63\x52\x66\x4b','\x42\x57\x5a\x63\x4e\x38\x6b\x45\x77\x57','\x57\x50\x46\x63\x50\x53\x6b\x54\x57\x52\x44\x2f\x70\x57','\x57\x37\x4e\x63\x4b\x38\x6b\x4b\x57\x35\x5a\x64\x55\x43\x6f\x57','\x57\x37\x64\x63\x53\x38\x6b\x45\x57\x35\x71','\x45\x57\x42\x63\x54\x61','\x57\x37\x52\x64\x54\x38\x6b\x38\x57\x34\x34\x69\x57\x4f\x46\x63\x4d\x49\x47','\x57\x4f\x46\x64\x56\x72\x57\x37\x57\x51\x4e\x63\x4f\x48\x61\x7a','\x57\x37\x43\x31\x74\x53\x6f\x7a\x63\x53\x6f\x77','\x78\x66\x5a\x64\x48\x61','\x43\x4e\x4e\x64\x49\x68\x50\x6f\x70\x43\x6f\x56','\x57\x34\x78\x64\x50\x6d\x6f\x76\x41\x5a\x6a\x6c\x6f\x4e\x43','\x57\x35\x76\x4b\x57\x50\x61\x71\x63\x4d\x46\x64\x4f\x43\x6f\x63','\x57\x37\x46\x64\x52\x6d\x6b\x39\x57\x36\x6d\x65\x57\x4f\x46\x63\x47\x49\x69','\x6f\x4c\x47\x4e\x74\x6d\x6b\x77\x57\x36\x6c\x64\x49\x38\x6f\x47','\x57\x36\x4f\x30\x75\x43\x6f\x73\x61\x43\x6f\x64','\x57\x50\x4e\x64\x4b\x62\x43\x36\x57\x52\x2f\x63\x53\x57\x57\x42','\x75\x6d\x6f\x47\x57\x35\x4e\x63\x4b\x75\x5a\x64\x51\x53\x6f\x53\x62\x47','\x57\x34\x39\x4b\x57\x52\x43\x77\x69\x67\x64\x64\x54\x6d\x6f\x45','\x57\x34\x4a\x64\x4e\x78\x78\x64\x50\x43\x6f\x36\x57\x50\x56\x63\x4f\x62\x69','\x41\x4d\x4f\x67','\x78\x38\x6b\x4d\x67\x38\x6f\x7a\x57\x36\x37\x64\x55\x6d\x6f\x74\x57\x4f\x47','\x57\x4f\x44\x50\x64\x77\x39\x57','\x42\x67\x56\x63\x55\x75\x5a\x64\x47\x6d\x6f\x54\x43\x72\x38','\x76\x6d\x6f\x5a\x57\x34\x74\x63\x4b\x4c\x5a\x64\x56\x43\x6f\x69\x65\x57','\x57\x51\x56\x64\x51\x6d\x6f\x68\x74\x4b\x37\x64\x49\x53\x6f\x72\x42\x71','\x76\x53\x6f\x4b\x57\x34\x52\x63\x48\x75\x42\x64\x53\x61','\x57\x37\x6c\x63\x4c\x6d\x6b\x36\x57\x35\x46\x64\x53\x38\x6f\x53','\x57\x52\x56\x64\x47\x5a\x34\x61\x57\x4f\x4a\x63\x4b\x5a\x71\x4f','\x57\x52\x34\x69\x74\x4a\x74\x63\x48\x38\x6f\x73\x62\x71\x75','\x66\x71\x6c\x63\x56\x57','\x57\x51\x43\x74\x57\x4f\x4f','\x43\x72\x56\x64\x54\x6d\x6b\x2f\x76\x6d\x6f\x61','\x57\x35\x4e\x64\x56\x4d\x50\x4c\x57\x52\x4b\x6a\x57\x35\x6e\x2f','\x57\x34\x70\x64\x4a\x30\x62\x67\x57\x50\x30\x52\x57\x36\x31\x42','\x57\x37\x78\x64\x4e\x43\x6b\x36\x57\x37\x71\x45\x57\x4f\x78\x63\x4a\x5a\x43','\x63\x66\x79\x52\x68\x6d\x6f\x75\x77\x6d\x6b\x48\x57\x37\x53','\x44\x47\x64\x63\x54\x43\x6b\x4c','\x77\x43\x6b\x54\x61\x43\x6b\x66\x57\x35\x46\x63\x52\x6d\x6b\x31\x57\x51\x75','\x57\x34\x33\x64\x53\x38\x6f\x6d\x79\x64\x62\x6e\x6c\x78\x4b','\x57\x51\x53\x73\x57\x50\x6a\x2f\x57\x36\x47\x71\x42\x6d\x6b\x43','\x57\x34\x39\x5a\x57\x4f\x65\x6a','\x57\x50\x6a\x4f\x57\x51\x34\x6f\x57\x35\x54\x6f','\x57\x4f\x5a\x63\x4f\x6d\x6b\x39','\x57\x4f\x78\x63\x50\x53\x6b\x47\x57\x4f\x31\x38\x6d\x78\x30\x48','\x71\x64\x5a\x64\x4c\x6d\x6f\x50\x57\x35\x68\x63\x56\x38\x6f\x4a\x45\x57','\x57\x52\x6a\x4e\x44\x38\x6b\x31\x57\x36\x46\x64\x52\x53\x6f\x64','\x6a\x4d\x30\x46','\x74\x31\x5a\x63\x4d\x4d\x33\x64\x4f\x38\x6f\x43\x74\x73\x71','\x57\x35\x78\x63\x4e\x59\x2f\x63\x51\x4c\x47\x66\x57\x35\x7a\x63','\x68\x71\x2f\x63\x56\x75\x50\x33\x76\x53\x6b\x77\x57\x52\x71','\x43\x47\x52\x64\x53\x38\x6b\x49\x71\x6d\x6f\x2b\x57\x34\x78\x64\x4b\x47','\x57\x50\x4c\x57\x57\x52\x6d\x64\x57\x34\x50\x7a\x57\x34\x42\x64\x4a\x47','\x44\x4c\x56\x64\x53\x47','\x57\x37\x52\x63\x53\x53\x6b\x34\x57\x34\x34\x68\x57\x37\x46\x64\x51\x6d\x6f\x43','\x6c\x31\x30\x6b\x77\x6d\x6b\x41\x57\x36\x5a\x64\x52\x38\x6f\x79','\x57\x36\x42\x64\x54\x65\x33\x64\x51\x43\x6f\x64\x57\x52\x56\x63\x4a\x63\x47','\x57\x50\x33\x63\x4e\x53\x6f\x6e\x72\x30\x5a\x64\x4b\x6d\x6f\x51\x57\x34\x6d','\x57\x36\x53\x44\x42\x43\x6f\x78\x57\x4f\x42\x63\x4c\x38\x6b\x37\x79\x47','\x57\x36\x38\x44\x79\x38\x6f\x71\x57\x50\x79','\x71\x43\x6f\x56\x57\x34\x4a\x63\x48\x66\x64\x64\x52\x53\x6f\x7a\x62\x61','\x57\x4f\x33\x63\x51\x38\x6b\x4d\x57\x52\x31\x2f\x6c\x4e\x75\x48','\x67\x68\x4b\x4e\x43\x53\x6b\x2b\x57\x34\x64\x64\x53\x43\x6f\x56','\x71\x43\x6b\x38\x63\x53\x6b\x45\x57\x35\x64\x63\x50\x71','\x57\x50\x6e\x37\x57\x51\x75\x46\x57\x35\x54\x69','\x57\x36\x2f\x64\x56\x4c\x33\x64\x4e\x38\x6f\x4f\x57\x51\x4e\x63\x4e\x73\x34','\x66\x71\x78\x63\x48\x78\x44\x2f\x78\x6d\x6b\x77\x57\x51\x30','\x41\x58\x42\x64\x56\x38\x6b\x31\x76\x6d\x6f\x72\x57\x35\x33\x64\x48\x71','\x57\x37\x4f\x53\x71\x4e\x42\x64\x4d\x43\x6b\x51\x57\x51\x43\x72','\x57\x52\x46\x64\x50\x53\x6f\x62\x75\x4c\x47','\x67\x6d\x6f\x6a\x72\x4b\x35\x56\x65\x47','\x42\x72\x64\x64\x50\x6d\x6f\x2f\x57\x36\x52\x63\x49\x6d\x6f\x71\x75\x61','\x57\x52\x46\x64\x4b\x72\x34','\x57\x34\x78\x64\x4e\x66\x62\x64\x57\x4f\x4b\x35\x57\x36\x31\x61','\x71\x43\x6b\x4e\x64\x43\x6b\x66\x57\x35\x33\x63\x50\x38\x6b\x74\x57\x50\x30','\x74\x6d\x6f\x6b\x57\x34\x46\x64\x4b\x59\x33\x64\x51\x4e\x6d\x66','\x57\x4f\x6e\x4a\x63\x4d\x48\x38\x57\x37\x6a\x6c\x77\x71','\x57\x4f\x66\x4a\x63\x32\x38','\x65\x62\x74\x63\x51\x4e\x4c\x36\x75\x6d\x6b\x75\x57\x52\x69','\x57\x35\x31\x5a\x79\x48\x57\x41\x57\x36\x6d\x4c\x57\x4f\x4f','\x46\x78\x53\x63\x57\x35\x70\x63\x47\x76\x4f','\x57\x37\x6d\x41\x6a\x48\x71\x69\x64\x6d\x6f\x51\x43\x61','\x46\x58\x64\x63\x49\x53\x6b\x69\x72\x38\x6b\x52','\x57\x34\x4a\x63\x4d\x38\x6b\x2f\x75\x38\x6f\x6f\x57\x36\x47','\x57\x4f\x44\x5a\x66\x4d\x39\x38\x57\x37\x62\x61\x73\x61','\x57\x51\x74\x63\x4d\x38\x6b\x4e\x57\x34\x64\x64\x4b\x38\x6f\x64\x57\x35\x70\x64\x47\x57','\x57\x36\x52\x63\x55\x43\x6f\x6a\x74\x77\x42\x64\x4d\x53\x6f\x64\x79\x57','\x62\x38\x6f\x72\x77\x78\x48\x31\x62\x38\x6b\x36\x65\x61','\x57\x50\x71\x65\x6b\x38\x6f\x4d\x62\x43\x6f\x47\x70\x43\x6b\x31','\x6c\x30\x34\x7a\x78\x6d\x6b\x41\x57\x34\x46\x64\x47\x6d\x6f\x71','\x57\x36\x52\x64\x56\x59\x6a\x43\x62\x76\x47\x6d\x57\x34\x38','\x7a\x62\x46\x63\x4f\x53\x6f\x36\x57\x35\x6c\x63\x4b\x57','\x57\x36\x52\x63\x56\x6d\x6b\x77\x64\x62\x70\x63\x4a\x53\x6b\x2b\x75\x43\x6b\x74\x65\x78\x6c\x63\x4e\x48\x47','\x57\x50\x31\x5a\x67\x4b\x72\x47\x57\x36\x31\x6a\x41\x71','\x57\x52\x4e\x63\x4c\x53\x6b\x2b\x57\x37\x42\x64\x4a\x43\x6f\x73\x57\x35\x4a\x64\x4e\x57','\x57\x52\x76\x54\x45\x71','\x57\x4f\x68\x63\x4f\x43\x6b\x41\x57\x51\x62\x33\x70\x32\x4f\x52','\x78\x72\x78\x64\x53\x38\x6b\x2b\x78\x6d\x6f\x6e','\x57\x37\x31\x41\x72\x74\x6d\x54','\x57\x51\x6e\x4c\x42\x6d\x6b\x58\x57\x37\x2f\x64\x56\x38\x6f\x6f\x76\x57','\x76\x43\x6f\x6d\x73\x53\x6b\x56\x57\x35\x57\x4b\x74\x57','\x6e\x75\x4b\x76\x78\x43\x6b\x41\x57\x36\x4f','\x43\x4e\x5a\x64\x53\x49\x35\x78\x78\x63\x52\x63\x52\x57','\x57\x50\x42\x64\x52\x4a\x43\x59\x57\x50\x43','\x57\x34\x54\x5a\x57\x4f\x43\x43\x70\x61','\x42\x62\x42\x64\x47\x6d\x6f\x6a\x57\x37\x68\x63\x4b\x43\x6f\x69\x77\x47','\x72\x59\x52\x64\x4a\x38\x6b\x74\x44\x53\x6f\x56\x57\x36\x37\x64\x50\x61','\x57\x36\x38\x6b\x7a\x43\x6f\x77\x57\x4f\x65','\x57\x37\x30\x53\x74\x67\x6c\x64\x4e\x6d\x6b\x53\x57\x51\x79\x38','\x7a\x4e\x69\x74\x76\x43\x6f\x2b\x69\x43\x6b\x30','\x79\x47\x46\x63\x47\x53\x6b\x43\x71\x43\x6b\x52\x42\x48\x34','\x57\x36\x57\x44\x6f\x71\x53\x63\x67\x71','\x57\x36\x2f\x64\x51\x4b\x35\x35\x57\x51\x34\x41\x57\x34\x53','\x57\x34\x71\x6d\x42\x43\x6f\x45\x57\x4f\x70\x63\x4d\x38\x6b\x57\x44\x71','\x77\x48\x70\x64\x4f\x38\x6f\x73\x57\x36\x5a\x63\x4b\x43\x6f\x74\x75\x71','\x57\x51\x68\x63\x4b\x38\x6b\x6b\x57\x50\x39\x74\x64\x4b\x79\x75','\x41\x57\x74\x64\x50\x6d\x6f\x6d\x57\x37\x52\x63\x4e\x61','\x57\x36\x38\x58\x43\x66\x78\x64\x56\x61','\x72\x30\x4a\x63\x4d\x32\x70\x64\x50\x6d\x6f\x70','\x57\x51\x34\x6e\x6c\x38\x6f\x51\x64\x6d\x6f\x33\x6f\x61','\x57\x35\x35\x76\x57\x34\x58\x4f\x57\x4f\x47\x49\x76\x43\x6b\x37','\x7a\x4e\x4f\x73\x57\x36\x78\x63\x4d\x4b\x30\x61\x57\x50\x6d','\x57\x37\x37\x63\x4b\x5a\x6c\x63\x51\x76\x47','\x76\x66\x5a\x64\x49\x62\x48\x36\x41\x59\x68\x63\x47\x57','\x57\x36\x37\x64\x52\x67\x31\x75\x57\x51\x4b\x6c\x57\x35\x35\x4b','\x7a\x67\x68\x64\x49\x57','\x71\x75\x4a\x63\x4c\x66\x37\x64\x54\x6d\x6f\x6e\x71\x49\x61','\x67\x75\x47\x4a\x63\x38\x6f\x46\x42\x53\x6b\x48\x57\x36\x65','\x68\x77\x75\x50\x68\x43\x6f\x68\x75\x38\x6b\x35\x57\x37\x79','\x57\x4f\x48\x34\x57\x51\x71\x6a\x57\x34\x57','\x57\x36\x61\x4f\x77\x38\x6f\x76\x66\x38\x6f\x66','\x41\x4d\x79\x78\x57\x35\x2f\x63\x4e\x65\x4b','\x57\x37\x6c\x64\x56\x4b\x56\x64\x4a\x47','\x57\x37\x38\x37\x76\x31\x4e\x64\x4e\x38\x6b\x51\x57\x52\x65\x39','\x75\x31\x6c\x64\x4b\x58\x31\x57\x7a\x62\x61','\x57\x37\x4a\x63\x47\x6d\x6b\x56\x57\x34\x33\x64\x55\x43\x6f\x32','\x57\x34\x37\x63\x4b\x53\x6b\x33','\x57\x50\x57\x5a\x57\x52\x58\x64\x57\x35\x53\x52\x74\x53\x6b\x34','\x71\x75\x33\x64\x4b\x57\x6e\x48\x79\x62\x4f','\x57\x4f\x7a\x4a\x67\x32\x4c\x57\x57\x36\x4c\x36\x43\x61','\x57\x51\x5a\x63\x4b\x43\x6b\x2b\x57\x34\x69\x42\x57\x36\x4a\x64\x55\x57','\x41\x61\x46\x63\x4d\x6d\x6b\x73\x72\x38\x6b\x52','\x71\x4c\x6c\x64\x49\x71\x6e\x32\x79\x64\x2f\x63\x4a\x71','\x7a\x62\x68\x64\x53\x6d\x6b\x2f\x73\x47','\x71\x66\x70\x63\x4d\x71','\x57\x4f\x56\x63\x4f\x43\x6b\x47\x57\x52\x34','\x57\x37\x61\x37\x6c\x6d\x6f\x5a\x57\x51\x64\x63\x53\x38\x6b\x73\x43\x53\x6b\x53\x46\x77\x6a\x42\x57\x52\x34','\x74\x4a\x64\x63\x54\x6d\x6b\x35\x41\x43\x6b\x67\x72\x64\x71','\x57\x34\x33\x64\x4b\x62\x4c\x31\x69\x61','\x41\x58\x42\x64\x53\x57','\x79\x61\x56\x64\x50\x38\x6f\x63\x57\x37\x70\x63\x4e\x43\x6f\x79','\x7a\x77\x4f\x6a\x57\x34\x4b','\x57\x37\x39\x6f\x57\x35\x65\x4f\x57\x34\x65\x33\x7a\x6d\x6b\x57\x57\x37\x34\x32','\x57\x52\x57\x70\x57\x4f\x75\x33\x57\x36\x53\x45\x45\x43\x6b\x6a','\x62\x38\x6f\x79\x77\x4b\x62\x31\x68\x71','\x78\x76\x74\x64\x4b\x48\x72\x4d','\x57\x37\x6e\x6a\x77\x71\x69\x57\x57\x34\x57','\x57\x35\x50\x47\x57\x51\x57\x6a\x64\x47','\x75\x43\x6b\x50\x66\x6d\x6b\x42','\x57\x34\x33\x64\x53\x38\x6f\x59\x79\x64\x62\x68','\x67\x47\x37\x63\x52\x71','\x42\x43\x6b\x2b\x68\x43\x6b\x66\x57\x34\x33\x63\x51\x38\x6b\x39\x57\x50\x71','\x57\x51\x64\x63\x4c\x43\x6b\x58','\x57\x52\x71\x4b\x6c\x43\x6f\x34\x57\x36\x4a\x64\x53\x6d\x6b\x73\x6a\x71','\x44\x47\x52\x64\x56\x43\x6b\x35\x78\x6d\x6f\x2b\x57\x35\x2f\x64\x4a\x57','\x57\x34\x68\x64\x48\x48\x4c\x70\x6f\x32\x47\x38\x57\x34\x38','\x75\x6d\x6f\x65\x63\x74\x56\x64\x49\x66\x6d\x50\x43\x47','\x57\x35\x79\x6f\x7a\x6d\x6f\x50\x6f\x38\x6f\x4c\x57\x52\x6d\x6b','\x57\x37\x43\x54\x76\x43\x6f\x74\x61\x71','\x57\x37\x52\x63\x53\x53\x6b\x75','\x57\x36\x54\x33\x57\x36\x4c\x69\x57\x51\x47\x72\x42\x38\x6b\x77','\x57\x51\x4f\x6d\x41\x63\x56\x63\x4a\x43\x6f\x71\x65\x5a\x38','\x78\x43\x6b\x55\x68\x53\x6b\x65\x57\x35\x56\x63\x54\x47','\x75\x66\x64\x64\x4d\x71\x6a\x4c\x7a\x62\x33\x63\x4a\x57','\x72\x4c\x64\x64\x51\x63\x75\x52\x61\x38\x6f\x66\x57\x4f\x58\x56\x57\x52\x34\x2b\x70\x30\x6d','\x78\x43\x6f\x43\x57\x37\x46\x64\x49\x74\x4a\x64\x4d\x4d\x71\x43','\x57\x36\x65\x59\x74\x4c\x4e\x64\x4e\x43\x6b\x39\x57\x51\x69\x54','\x43\x4a\x5a\x63\x53\x53\x6f\x2b\x57\x35\x64\x63\x4c\x43\x6f\x69\x65\x61','\x75\x38\x6f\x43\x57\x34\x33\x64\x48\x57','\x57\x52\x5a\x64\x51\x6d\x6f\x73','\x78\x43\x6b\x52\x61\x61','\x44\x38\x6b\x6c\x6b\x53\x6b\x55\x57\x36\x37\x63\x4c\x47','\x79\x64\x33\x63\x4e\x43\x6b\x57\x45\x47','\x71\x4c\x4a\x64\x4e\x57\x6e\x57\x43\x73\x68\x63\x4e\x61','\x72\x6d\x6f\x59\x68\x71\x70\x64\x53\x71','\x57\x37\x75\x61\x7a\x53\x6f\x77\x57\x51\x5a\x63\x48\x38\x6b\x37\x43\x57','\x62\x38\x6f\x4c\x43\x53\x6b\x4f\x57\x34\x69\x55\x74\x71','\x67\x43\x6f\x69\x77\x4c\x6e\x4f\x67\x6d\x6b\x2b\x70\x71','\x57\x34\x4a\x63\x48\x43\x6b\x4d\x57\x35\x70\x64\x52\x6d\x6f\x54\x61\x58\x4f','\x57\x35\x50\x4c\x57\x52\x43\x67\x6b\x77\x37\x64\x50\x6d\x6f\x41','\x57\x35\x68\x63\x4a\x64\x6c\x63\x54\x75\x71\x55\x57\x36\x6e\x78','\x57\x37\x76\x6e\x75\x61','\x57\x36\x75\x52\x71\x76\x4e\x64\x4e\x6d\x6b\x2f\x57\x51\x38\x48','\x46\x71\x46\x63\x48\x6d\x6b\x46\x78\x43\x6b\x4d\x41\x47\x61','\x57\x52\x4b\x4e\x6b\x53\x6f\x76\x57\x36\x71','\x72\x43\x6f\x4c\x57\x34\x52\x63\x4c\x65\x78\x64\x55\x57','\x77\x38\x6f\x44\x57\x35\x5a\x64\x55\x63\x64\x64\x4c\x68\x6d\x73','\x57\x50\x4c\x5a\x57\x51\x69\x6f\x57\x35\x6a\x7a\x57\x34\x57','\x46\x68\x34\x43','\x67\x75\x47\x4a\x66\x38\x6f\x74\x75\x53\x6b\x57\x57\x36\x65','\x57\x37\x6c\x64\x54\x66\x46\x64\x4e\x47','\x69\x53\x6f\x63\x57\x36\x64\x63\x49\x6d\x6f\x61\x57\x4f\x46\x63\x55\x67\x6d','\x77\x47\x6c\x64\x4f\x38\x6f\x6f\x57\x37\x52\x63\x49\x53\x6f\x44\x73\x57','\x57\x34\x71\x63\x42\x43\x6f\x78\x57\x50\x42\x63\x4d\x61','\x7a\x61\x42\x64\x4f\x38\x6f\x2f\x57\x36\x2f\x63\x4d\x43\x6f\x66\x75\x57','\x6d\x74\x46\x63\x4c\x76\x4c\x66\x44\x53\x6b\x4e\x57\x50\x4b','\x57\x36\x57\x67\x43\x6d\x6f\x77\x57\x51\x5a\x63\x4c\x43\x6b\x55\x45\x71','\x41\x77\x4f\x4e\x57\x35\x70\x63\x4d\x31\x75\x38\x57\x50\x30','\x57\x37\x68\x64\x51\x38\x6b\x55\x57\x37\x4b\x79\x57\x4f\x78\x63\x47\x49\x69','\x57\x37\x52\x63\x53\x53\x6b\x34\x57\x34\x4f\x69\x57\x37\x2f\x64\x47\x53\x6f\x6b','\x57\x37\x78\x64\x55\x4d\x44\x55\x57\x52\x65\x41','\x57\x36\x38\x73\x6d\x72\x30\x34\x67\x43\x6f\x48\x71\x61','\x57\x51\x76\x4c\x45\x43\x6b\x47\x57\x36\x74\x64\x56\x57','\x57\x4f\x42\x63\x4a\x53\x6f\x6d\x41\x4c\x5a\x64\x4c\x6d\x6f\x7a\x57\x35\x4f','\x57\x51\x72\x4f\x71\x43\x6b\x33\x57\x37\x6c\x64\x51\x53\x6f\x75\x76\x71','\x75\x66\x4a\x64\x4a\x31\x57\x4e\x6d\x65\x4a\x64\x48\x57','\x57\x52\x34\x42\x77\x64\x5a\x63\x4e\x43\x6f\x71\x62\x63\x47','\x76\x53\x6f\x79\x68\x73\x37\x64\x4a\x47','\x57\x36\x33\x63\x54\x38\x6b\x6c\x57\x35\x69\x6d\x57\x37\x71','\x74\x75\x4f\x56\x57\x37\x4a\x63\x52\x4e\x34\x4e\x57\x52\x4f','\x57\x36\x64\x64\x56\x76\x78\x64\x4c\x43\x6f\x75','\x6c\x53\x6f\x56\x7a\x32\x35\x6f\x6f\x38\x6b\x65\x6e\x57','\x57\x37\x68\x64\x4f\x31\x42\x64\x4e\x53\x6f\x63\x57\x52\x4e\x63\x4e\x74\x38','\x57\x36\x4c\x6c\x75\x72\x79\x61','\x70\x38\x6f\x64\x57\x34\x46\x63\x47\x53\x6f\x6c','\x57\x4f\x68\x63\x54\x38\x6b\x32\x57\x52\x54\x39\x6d\x61','\x57\x36\x4f\x75\x6d\x71','\x57\x35\x70\x63\x4d\x59\x4e\x63\x4b\x4b\x53\x75\x57\x36\x76\x77','\x57\x34\x64\x64\x53\x53\x6f\x39\x7a\x73\x48\x6b','\x75\x43\x6b\x36\x68\x43\x6b\x77\x57\x34\x52\x63\x50\x38\x6b\x78\x57\x50\x71','\x6f\x38\x6f\x64\x57\x34\x4e\x63\x48\x43\x6f\x42\x57\x4f\x33\x63\x51\x78\x71','\x62\x31\x38\x30\x62\x38\x6f\x50\x76\x38\x6b\x5a\x57\x36\x61','\x7a\x71\x5a\x63\x50\x43\x6f\x52\x57\x35\x79','\x57\x34\x50\x43\x57\x35\x53','\x72\x31\x34\x51\x79\x53\x6f\x70\x65\x6d\x6b\x63\x67\x47','\x57\x37\x34\x62\x44\x61','\x57\x4f\x44\x50\x64\x77\x39\x57\x57\x36\x39\x36\x79\x57','\x76\x38\x6f\x4f\x57\x35\x68\x63\x4b\x57','\x57\x35\x42\x64\x54\x6d\x6f\x33\x57\x36\x6d\x49\x7a\x59\x50\x30\x57\x37\x58\x58\x6a\x6d\x6b\x78\x71\x6d\x6b\x48','\x57\x37\x66\x63\x79\x59\x4f\x48','\x57\x36\x47\x67\x45\x6d\x6f\x77','\x6c\x38\x6f\x75\x57\x35\x61','\x57\x36\x31\x43\x75\x59\x4b\x52\x57\x34\x30\x63\x57\x51\x34','\x57\x52\x7a\x64\x6a\x31\x76\x41\x57\x35\x4c\x47\x77\x71','\x57\x4f\x58\x56\x57\x51\x57\x69\x57\x34\x54\x46\x57\x34\x33\x64\x4e\x57','\x57\x51\x61\x67\x71\x61','\x57\x52\x46\x64\x52\x38\x6f\x6f\x77\x75\x4a\x64\x49\x47','\x41\x4d\x4a\x64\x47\x68\x39\x4c\x6f\x61','\x57\x34\x48\x31\x57\x4f\x4b\x71\x6d\x68\x69','\x72\x30\x46\x64\x53\x6d\x6b\x4f\x57\x50\x31\x39\x57\x51\x37\x64\x48\x57','\x57\x51\x61\x67\x75\x5a\x33\x63\x54\x38\x6f\x61\x62\x64\x4b','\x65\x72\x4e\x63\x52\x4b\x50\x47\x72\x53\x6b\x79\x57\x51\x53','\x7a\x61\x52\x63\x51\x53\x6f\x36','\x46\x58\x42\x63\x53\x53\x6f\x61\x57\x34\x42\x63\x4a\x53\x6f\x63\x66\x47','\x57\x51\x52\x63\x4d\x38\x6b\x38\x57\x37\x46\x64\x48\x53\x6f\x35\x57\x35\x37\x64\x4c\x71','\x57\x36\x53\x45\x6a\x57','\x57\x35\x34\x32\x75\x6d\x6f\x36\x57\x52\x33\x63\x53\x38\x6b\x62\x76\x61','\x72\x38\x6f\x50\x57\x34\x74\x63\x48\x75\x5a\x64\x53\x6d\x6f\x59\x64\x61','\x46\x4d\x34\x6a\x57\x35\x42\x63\x47\x66\x57\x69\x57\x51\x6d','\x76\x53\x6b\x48\x61\x38\x6f\x7a\x57\x37\x65','\x57\x37\x6c\x64\x48\x4e\x4c\x55\x57\x51\x34\x69\x57\x35\x54\x4b','\x57\x52\x46\x64\x52\x6d\x6f\x61\x79\x31\x4e\x64\x4d\x38\x6f\x4b\x46\x47','\x41\x58\x4e\x63\x48\x6d\x6b\x75\x77\x47','\x57\x51\x52\x64\x51\x6d\x6f\x66\x74\x30\x74\x64\x4b\x6d\x6f\x39','\x57\x35\x74\x63\x49\x6d\x6b\x37\x71\x43\x6f\x7a\x57\x36\x37\x63\x50\x71\x79','\x57\x36\x6d\x30\x78\x43\x6f\x63\x61\x61','\x6a\x76\x46\x63\x56\x43\x6f\x55\x57\x37\x37\x63\x4d\x53\x6f\x4a\x61\x71','\x75\x38\x6b\x4e\x61\x57','\x57\x4f\x33\x63\x4a\x38\x6f\x6c\x75\x71','\x70\x53\x6f\x63\x57\x34\x46\x63\x48\x53\x6f\x6c','\x79\x4d\x74\x64\x47\x68\x38','\x57\x35\x56\x64\x47\x61\x48\x49','\x6d\x78\x47\x68\x6a\x43\x6f\x49','\x57\x51\x50\x57\x68\x77\x4c\x4d\x57\x37\x72\x6b\x41\x61','\x57\x34\x78\x64\x55\x43\x6f\x38','\x57\x36\x46\x63\x4c\x6d\x6b\x4d\x57\x34\x4a\x64\x54\x43\x6f\x4d\x63\x61\x30','\x77\x6d\x6f\x78\x73\x43\x6b\x73\x57\x35\x53\x4b\x75\x53\x6b\x6e','\x72\x53\x6b\x78\x63\x38\x6b\x63\x57\x35\x70\x63\x52\x38\x6b\x5a\x57\x4f\x47','\x57\x52\x75\x49\x62\x53\x6f\x6a\x57\x36\x4e\x64\x50\x43\x6b\x7a\x6c\x57','\x57\x36\x47\x41\x79\x6d\x6f\x73\x57\x4f\x68\x63\x48\x53\x6b\x2f\x41\x71','\x76\x4b\x68\x64\x4f\x76\x4c\x76\x61\x57','\x73\x38\x6f\x56\x57\x34\x57','\x79\x58\x5a\x64\x56\x43\x6b\x34\x76\x43\x6f\x65','\x44\x78\x4e\x64\x4e\x68\x66\x2f\x6e\x57','\x57\x52\x4b\x2f\x6c\x6d\x6f\x76\x57\x36\x74\x64\x53\x6d\x6b\x6b\x6c\x57','\x6c\x67\x75\x62\x6d\x53\x6f\x2b\x42\x53\x6b\x66\x57\x35\x79','\x57\x52\x47\x78\x70\x6d\x6f\x48\x64\x53\x6f\x31\x6e\x43\x6b\x4e','\x57\x36\x54\x6a\x71\x59\x38\x38\x57\x35\x57\x38\x57\x52\x75','\x41\x58\x64\x64\x51\x38\x6f\x63\x57\x37\x52\x63\x49\x47','\x64\x53\x6f\x74\x71\x4b\x6a\x54\x67\x53\x6b\x52\x66\x47','\x57\x37\x5a\x64\x52\x43\x6b\x36\x57\x37\x71\x49\x57\x4f\x74\x63\x4b\x59\x71','\x43\x66\x78\x64\x54\x53\x6b\x69\x57\x50\x76\x56\x57\x51\x2f\x64\x4e\x57','\x57\x50\x50\x38\x57\x51\x38\x61\x57\x35\x58\x44\x57\x34\x56\x64\x48\x47','\x75\x66\x68\x64\x4d\x58\x35\x4e\x42\x61\x52\x63\x47\x47','\x57\x37\x2f\x63\x4f\x38\x6b\x78\x57\x34\x53\x61\x57\x36\x74\x64\x56\x6d\x6f\x43','\x71\x53\x6b\x50\x61\x43\x6b\x42\x57\x35\x68\x63\x4f\x38\x6b\x32\x57\x51\x75','\x63\x6d\x6f\x73\x71\x75\x4c\x31\x6a\x43\x6b\x2b\x68\x71','\x57\x34\x48\x4b\x57\x4f\x53\x77\x69\x68\x78\x64\x4d\x6d\x6f\x68','\x57\x37\x2f\x63\x4b\x38\x6b\x52\x57\x36\x68\x64\x51\x43\x6f\x59\x61\x72\x61','\x64\x76\x38\x56\x61\x43\x6f\x46\x71\x43\x6b\x48\x57\x34\x57','\x57\x37\x37\x64\x50\x38\x6b\x57\x57\x37\x79\x6a\x57\x50\x38','\x73\x43\x6b\x38\x68\x38\x6f\x76\x57\x36\x5a\x64\x53\x61','\x57\x36\x30\x55\x75\x47','\x57\x50\x74\x63\x50\x6d\x6b\x38\x57\x52\x35\x39\x70\x33\x30\x42','\x44\x4e\x2f\x64\x47\x78\x58\x4b\x6d\x38\x6f\x35\x6c\x57','\x73\x4e\x56\x64\x4e\x43\x6b\x43\x57\x51\x39\x69\x57\x4f\x37\x64\x56\x57','\x65\x61\x74\x63\x52\x61','\x57\x34\x46\x64\x4e\x61\x39\x70\x6a\x4d\x30\x59\x57\x37\x38','\x57\x51\x50\x4c\x66\x33\x7a\x4c\x57\x37\x6a\x6c\x79\x57','\x79\x77\x6d\x68\x78\x47','\x57\x4f\x46\x64\x4f\x58\x69\x32\x57\x52\x6c\x63\x54\x72\x61\x74','\x72\x76\x64\x63\x49\x77\x7a\x47\x44\x6d\x6b\x4a\x57\x50\x79','\x69\x6d\x6f\x75\x57\x35\x38','\x44\x68\x69\x78\x7a\x6d\x6f\x34\x6d\x43\x6b\x59\x62\x61','\x57\x52\x34\x42\x77\x63\x64\x63\x4b\x43\x6f\x53\x66\x73\x47','\x6a\x57\x64\x63\x4c\x4e\x48\x59','\x57\x51\x4b\x32\x75\x5a\x33\x63\x49\x38\x6f\x62\x67\x63\x4f','\x42\x61\x56\x64\x51\x71','\x57\x36\x53\x41\x43\x43\x6f\x42','\x57\x51\x52\x64\x47\x57\x57\x30\x64\x71','\x57\x52\x4c\x45\x57\x50\x65\x31\x57\x36\x35\x4f','\x57\x52\x42\x64\x4e\x47\x69','\x57\x34\x4c\x47\x57\x50\x38','\x57\x50\x74\x64\x49\x53\x6f\x56\x65\x6d\x6f\x46\x57\x36\x74\x63\x52\x63\x46\x63\x53\x38\x6b\x35','\x57\x35\x52\x64\x4d\x71\x4c\x58\x6a\x33\x47','\x69\x53\x6f\x46\x57\x34\x78\x63\x4a\x53\x6f\x64\x57\x50\x37\x63\x4f\x67\x6d','\x57\x4f\x48\x63\x77\x38\x6b\x41\x57\x35\x78\x64\x4b\x53\x6f\x5a\x46\x57','\x57\x52\x57\x7a\x57\x50\x62\x66\x57\x37\x69\x41\x42\x53\x6b\x6b','\x57\x52\x56\x63\x51\x43\x6b\x51\x57\x52\x58\x31','\x57\x51\x53\x79\x57\x52\x54\x4f\x57\x36\x65\x45\x42\x38\x6b\x77','\x6c\x76\x4b\x75\x75\x6d\x6b\x70\x57\x37\x30','\x57\x51\x34\x76\x6b\x38\x6f\x4d\x66\x61','\x57\x35\x52\x64\x48\x57\x7a\x2b\x70\x67\x4f\x57','\x65\x6d\x6b\x45\x73\x33\x64\x63\x4e\x57\x66\x43\x44\x48\x57\x78\x62\x4d\x54\x59','\x57\x37\x42\x64\x51\x32\x62\x56\x57\x51\x4b\x79\x57\x35\x44\x35','\x75\x38\x6b\x4d\x63\x43\x6f\x7a\x57\x37\x52\x64\x4d\x6d\x6f\x66','\x57\x4f\x52\x64\x47\x53\x6f\x38\x7a\x78\x74\x64\x51\x53\x6f\x43\x77\x47','\x57\x52\x47\x61\x6a\x53\x6f\x54\x64\x43\x6f\x5a','\x77\x43\x6f\x77\x57\x34\x56\x64\x4d\x73\x33\x64\x48\x78\x6d\x73','\x77\x4e\x38\x66\x57\x35\x68\x63\x4c\x57','\x57\x35\x37\x64\x4e\x61\x48\x4c\x6e\x4e\x4b','\x57\x51\x56\x63\x4b\x38\x6b\x54\x57\x36\x56\x64\x49\x38\x6f\x73\x57\x35\x74\x64\x49\x47','\x57\x4f\x5a\x63\x4b\x53\x6f\x43\x71\x75\x68\x64\x4b\x6d\x6f\x43\x57\x35\x47','\x57\x4f\x76\x30\x66\x33\x39\x47\x57\x37\x35\x61\x44\x61','\x65\x48\x42\x63\x4e\x30\x58\x59','\x73\x43\x6f\x79\x65\x59\x43','\x64\x66\x71\x56\x61\x43\x6f\x46\x71\x43\x6b\x48\x57\x37\x79','\x57\x51\x38\x65\x75\x49\x56\x63\x4d\x6d\x6f\x73\x61\x4a\x38','\x57\x34\x46\x64\x4e\x61\x39\x70\x6f\x68\x47\x4e\x57\x34\x38','\x71\x38\x6b\x4b\x61\x53\x6f\x44\x57\x36\x79','\x77\x78\x56\x64\x49\x32\x50\x49\x6f\x43\x6f\x5a\x6d\x57','\x41\x30\x64\x64\x54\x38\x6b\x53\x57\x50\x35\x37\x57\x52\x78\x64\x4d\x61','\x57\x34\x4e\x64\x55\x43\x6f\x4e','\x43\x4e\x4a\x64\x4f\x5a\x4c\x61\x72\x59\x68\x63\x4f\x71','\x41\x31\x46\x64\x52\x43\x6b\x47\x57\x50\x31\x39','\x6d\x30\x52\x63\x51\x43\x6f\x4f\x46\x6d\x6f\x50\x57\x34\x4e\x64\x51\x43\x6b\x30\x57\x37\x4b','\x57\x36\x79\x6e\x6f\x48\x79\x74','\x57\x36\x30\x6f\x6d\x48\x4f\x63\x68\x57','\x57\x51\x53\x6e\x41\x63\x52\x63\x4a\x43\x6f\x73\x65\x4a\x75','\x44\x71\x74\x64\x54\x6d\x6f\x74\x57\x37\x4f','\x76\x4b\x4a\x64\x4e\x71\x6e\x58','\x57\x51\x39\x79\x57\x4f\x61\x2b\x57\x37\x54\x4f\x57\x37\x46\x64\x55\x57','\x57\x4f\x56\x63\x54\x43\x6b\x47\x57\x51\x62\x4d\x6a\x57','\x57\x50\x54\x4e\x67\x4e\x44\x57\x57\x37\x4b','\x6b\x57\x6c\x63\x54\x78\x48\x4a\x78\x6d\x6b\x42\x57\x51\x6d','\x57\x35\x31\x36\x42\x58\x61\x79\x57\x37\x47\x38\x57\x50\x6d','\x43\x47\x33\x63\x50\x53\x6f\x36\x57\x35\x2f\x63\x4b\x43\x6f\x45\x68\x61','\x57\x52\x53\x72\x69\x43\x6f\x38\x64\x38\x6f\x4d\x6a\x43\x6b\x58','\x75\x6d\x6f\x69\x68\x73\x46\x64\x48\x76\x6d\x6d','\x57\x34\x75\x75\x63\x49\x57\x52','\x69\x6d\x6f\x75\x57\x35\x2f\x63\x56\x53\x6f\x68\x57\x4f\x4f','\x78\x53\x6b\x54\x67\x57','\x57\x50\x37\x63\x4c\x38\x6b\x2b\x57\x37\x68\x64\x52\x57','\x57\x52\x30\x31\x65\x6d\x6f\x75\x57\x37\x74\x64\x55\x53\x6b\x42\x66\x71','\x57\x4f\x72\x70\x74\x6d\x6b\x43\x57\x34\x46\x64\x4e\x57','\x42\x58\x4e\x64\x50\x6d\x6b\x66\x73\x43\x6f\x65\x57\x35\x2f\x64\x48\x61','\x57\x36\x74\x64\x50\x31\x5a\x64\x49\x6d\x6f\x6f','\x57\x4f\x6d\x4c\x69\x6d\x6f\x6d\x57\x37\x4a\x64\x52\x53\x6b\x6e','\x57\x52\x30\x76\x57\x50\x35\x2f','\x57\x36\x42\x64\x4e\x43\x6b\x54\x57\x36\x71\x71\x57\x50\x52\x63\x4c\x5a\x75','\x57\x36\x61\x4b\x73\x47','\x57\x36\x74\x64\x4e\x65\x4f','\x57\x52\x4c\x6b\x6e\x75\x72\x62\x57\x34\x39\x4b\x72\x71','\x42\x62\x68\x63\x54\x6d\x6b\x7a\x72\x6d\x6b\x51\x42\x62\x4b','\x57\x51\x75\x7a\x57\x50\x31\x4f\x57\x36\x30\x72\x45\x38\x6b\x4d','\x57\x36\x56\x63\x54\x38\x6b\x45\x57\x34\x53\x67\x57\x36\x42\x64\x55\x43\x6f\x33','\x57\x36\x57\x30\x78\x53\x6f\x56\x64\x38\x6f\x75\x57\x50\x47\x75','\x74\x43\x6f\x65\x67\x63\x5a\x64\x54\x65\x75\x6e\x44\x47','\x57\x51\x35\x73\x57\x50\x53\x31\x57\x36\x66\x4f\x57\x37\x52\x64\x52\x61','\x44\x72\x46\x64\x51\x43\x6f\x75\x57\x37\x64\x63\x4a\x6d\x6f\x66\x74\x57','\x64\x43\x6f\x75\x77\x4b\x6d','\x57\x51\x57\x57\x70\x43\x6f\x75\x57\x37\x47','\x57\x35\x6c\x63\x4a\x43\x6b\x39\x71\x43\x6f\x46\x57\x37\x4b','\x57\x52\x30\x44\x77\x63\x52\x63\x4a\x71','\x57\x34\x5a\x64\x49\x61\x35\x34\x6e\x4b\x69\x53\x57\x37\x75','\x46\x47\x5a\x63\x56\x47','\x57\x50\x74\x63\x54\x38\x6b\x51\x57\x52\x7a\x4e\x70\x78\x57\x32','\x77\x31\x75\x37\x44\x43\x6f\x78\x67\x38\x6b\x66\x63\x57','\x77\x75\x2f\x63\x4d\x77\x78\x64\x54\x6d\x6f\x45\x73\x5a\x30','\x57\x37\x6c\x64\x55\x65\x70\x64\x4e\x57','\x6e\x66\x4f\x45\x74\x6d\x6b\x41\x57\x36\x57','\x57\x36\x68\x64\x54\x53\x6b\x2f\x57\x36\x75\x69\x57\x4f\x71','\x57\x34\x68\x64\x4c\x43\x6b\x53\x57\x34\x43\x77','\x57\x37\x70\x64\x50\x66\x46\x64\x4a\x53\x6f\x45\x57\x52\x46\x63\x4e\x71\x6d','\x42\x61\x33\x64\x53\x43\x6b\x34\x78\x6d\x6f\x74','\x57\x34\x48\x49\x57\x4f\x61\x62\x6b\x67\x64\x64\x4d\x6d\x6f\x68','\x57\x37\x75\x41\x42\x38\x6f\x72\x57\x50\x42\x63\x48\x47','\x57\x51\x50\x7a\x6d\x6d\x6b\x64\x57\x34\x68\x64\x47\x53\x6f\x56\x78\x49\x37\x63\x4f\x43\x6f\x31\x57\x37\x78\x63\x4d\x47','\x57\x36\x70\x64\x54\x33\x53','\x57\x52\x71\x4b\x6c\x43\x6f\x34\x57\x37\x42\x64\x50\x43\x6b\x68\x6f\x61','\x57\x36\x64\x64\x4d\x38\x6f\x6d\x74\x58\x31\x36\x65\x76\x34','\x64\x53\x6f\x57\x72\x57','\x57\x51\x34\x69\x6e\x58\x4c\x76\x77\x6d\x6b\x34','\x7a\x77\x6d\x44\x78\x38\x6f\x4c\x6a\x38\x6b\x31\x6b\x71','\x57\x36\x57\x6c\x6f\x47\x4f\x74\x66\x61','\x42\x32\x70\x64\x49\x75\x44\x31\x6e\x43\x6f\x2f\x6c\x57','\x57\x37\x5a\x64\x4f\x6d\x6f\x76\x43\x48\x61','\x57\x51\x43\x68\x77\x61','\x57\x50\x33\x63\x4b\x38\x6f\x70\x62\x58\x5a\x63\x4b\x47','\x42\x71\x52\x64\x54\x43\x6b\x39\x75\x6d\x6f\x70\x57\x35\x64\x64\x4a\x61','\x57\x50\x74\x63\x54\x38\x6b\x51\x57\x51\x72\x37\x6f\x4e\x57\x32','\x63\x38\x6f\x35\x70\x53\x6f\x70\x57\x37\x68\x64\x4b\x6d\x6f\x31\x57\x52\x30','\x6c\x6d\x6f\x75\x57\x35\x6c\x63\x53\x53\x6f\x41\x57\x4f\x2f\x63\x55\x67\x6d','\x57\x37\x43\x64\x42\x38\x6f\x53\x57\x4f\x46\x63\x48\x53\x6b\x2f\x43\x57','\x7a\x71\x64\x63\x49\x43\x6b\x4b\x71\x38\x6b\x47\x44\x49\x30','\x57\x36\x47\x47\x73\x6d\x6f\x76\x63\x53\x6f\x73\x57\x50\x47\x75','\x57\x51\x6e\x55\x57\x51\x79\x70\x57\x34\x58\x7a\x57\x35\x5a\x64\x53\x47','\x57\x36\x57\x4b\x72\x61','\x57\x37\x52\x63\x54\x43\x6b\x63','\x57\x34\x37\x64\x4a\x71\x58\x59\x70\x33\x47','\x57\x34\x5a\x63\x4d\x6d\x6b\x47\x46\x38\x6f\x63\x57\x37\x47','\x71\x43\x6f\x5a\x57\x35\x4a\x63\x4e\x30\x42\x64\x53\x61','\x57\x4f\x7a\x59\x63\x4e\x6a\x37\x57\x37\x4f','\x7a\x57\x52\x64\x52\x38\x6b\x5a\x76\x53\x6f\x70','\x57\x52\x75\x2f\x69\x61','\x57\x34\x39\x44\x57\x37\x6a\x53\x57\x4f\x43\x55\x42\x38\x6b\x48','\x77\x43\x6f\x4e\x57\x35\x4a\x64\x48\x5a\x78\x64\x4e\x67\x4b\x64','\x45\x33\x6c\x63\x52\x4c\x4a\x64\x4e\x53\x6f\x50\x46\x61\x34','\x74\x68\x64\x63\x48\x71','\x6c\x31\x75\x44\x74\x71','\x57\x35\x44\x4b\x76\x59\x57\x53','\x62\x62\x70\x63\x54\x78\x66\x4d\x75\x6d\x6b\x71\x57\x52\x71','\x57\x37\x64\x64\x51\x38\x6b\x53\x57\x36\x75\x76\x57\x4f\x70\x63\x4e\x59\x4f','\x78\x43\x6f\x6c\x72\x71','\x57\x34\x54\x6c\x57\x35\x35\x4f\x57\x4f\x4b\x34','\x57\x50\x5a\x63\x4c\x6d\x6f\x42\x71\x75\x5a\x64\x4c\x53\x6f\x51\x57\x35\x61','\x57\x37\x78\x64\x4f\x31\x4a\x64\x4d\x43\x6f\x73','\x57\x51\x38\x67\x6c\x43\x6f\x36\x67\x43\x6f\x49\x6b\x6d\x6b\x45','\x57\x34\x46\x64\x49\x62\x35\x46\x6a\x68\x6d\x6f\x57\x36\x69','\x61\x43\x6b\x75\x67\x43\x6f\x39\x57\x4f\x6a\x33\x67\x53\x6b\x58\x7a\x77\x48\x73\x57\x51\x70\x64\x56\x47','\x68\x65\x4f\x2f\x62\x38\x6f\x75\x76\x6d\x6b\x30\x57\x37\x34','\x57\x52\x30\x6b\x78\x5a\x33\x63\x48\x43\x6f\x73','\x57\x36\x47\x53\x75\x67\x2f\x64\x48\x53\x6b\x48','\x57\x34\x54\x78\x57\x35\x4b','\x75\x53\x6f\x4e\x57\x34\x5a\x64\x4a\x4a\x46\x64\x48\x33\x34\x68','\x57\x52\x75\x2f\x6f\x43\x6f\x67\x57\x37\x68\x64\x51\x43\x6b\x41\x66\x71','\x73\x31\x61\x59\x57\x37\x56\x63\x52\x68\x79\x51\x57\x52\x75','\x57\x51\x53\x58\x57\x50\x43','\x57\x50\x31\x57\x57\x51\x79\x46\x57\x34\x35\x44\x57\x34\x56\x64\x49\x61','\x43\x4c\x6c\x64\x49\x33\x7a\x57\x6d\x53\x6f\x57\x6f\x61','\x57\x51\x4a\x64\x56\x43\x6f\x6c\x74\x4c\x2f\x64\x4d\x38\x6f\x51','\x63\x66\x34\x74\x65\x43\x6f\x6b\x78\x53\x6b\x32\x57\x37\x47','\x43\x68\x38\x65\x78\x53\x6f\x38\x6b\x38\x6b\x47\x70\x47','\x76\x68\x4a\x64\x4d\x53\x6b\x69\x57\x52\x66\x65\x57\x4f\x70\x64\x52\x71','\x57\x37\x56\x64\x52\x6d\x6b\x35\x57\x34\x34\x69\x57\x4f\x46\x63\x4d\x49\x47','\x44\x4c\x68\x64\x56\x43\x6b\x58\x57\x52\x39\x36\x57\x52\x52\x64\x4a\x71','\x69\x53\x6f\x46\x57\x34\x4b','\x57\x4f\x4e\x63\x4a\x53\x6f\x70\x72\x30\x30','\x57\x51\x47\x6c\x69\x43\x6f\x37\x62\x43\x6f\x38\x61\x38\x6b\x53','\x57\x51\x53\x68\x71\x71','\x72\x30\x6d\x38\x57\x36\x78\x63\x4f\x4e\x57\x30\x57\x51\x6d','\x6e\x6d\x6f\x6f\x75\x75\x72\x5a\x65\x6d\x6b\x56\x6c\x61','\x57\x52\x52\x63\x4d\x43\x6b\x33\x57\x37\x52\x64\x4a\x53\x6f\x68','\x57\x52\x75\x2b\x69\x71','\x63\x4c\x75\x48\x61\x38\x6f\x6b\x76\x6d\x6b\x48\x57\x37\x79','\x44\x43\x6f\x39\x41\x43\x6b\x6d\x57\x37\x6d\x6b\x42\x43\x6b\x32','\x41\x72\x64\x63\x4e\x71','\x75\x6d\x6b\x78\x65\x38\x6b\x73\x57\x34\x46\x63\x53\x6d\x6b\x37\x57\x50\x71','\x42\x65\x64\x64\x4f\x38\x6b\x4e\x57\x51\x39\x58\x57\x51\x38','\x57\x51\x33\x64\x56\x43\x6f\x61\x78\x76\x2f\x64\x4d\x57','\x57\x34\x56\x63\x4b\x43\x6b\x30\x46\x38\x6f\x46\x57\x36\x4e\x63\x54\x48\x65','\x57\x50\x70\x64\x56\x63\x61\x6d\x70\x6d\x6b\x2b\x77\x38\x6b\x77','\x57\x34\x34\x53\x57\x37\x66\x44\x57\x4f\x34\x66\x57\x50\x56\x63\x4e\x43\x6f\x45\x42\x38\x6b\x54\x57\x34\x4a\x63\x53\x66\x43','\x57\x35\x68\x63\x4e\x59\x74\x63\x4f\x76\x69\x71\x57\x37\x6e\x36','\x57\x36\x65\x73\x6c\x71\x57\x70\x67\x43\x6f\x4e\x71\x47','\x57\x34\x4a\x64\x4e\x61\x58\x49\x6e\x57','\x74\x38\x6f\x71\x57\x34\x4e\x63\x4d\x77\x68\x63\x47\x57','\x57\x37\x6e\x6a\x77\x71','\x77\x43\x6f\x6d\x72\x61','\x43\x48\x46\x64\x50\x38\x6f\x71\x57\x36\x2f\x63\x4e\x43\x6f\x79\x79\x61','\x77\x31\x5a\x63\x47\x71','\x43\x57\x42\x63\x50\x47','\x73\x6d\x6b\x54\x67\x43\x6f\x4a\x57\x37\x74\x64\x53\x53\x6f\x72\x57\x50\x34','\x57\x36\x37\x63\x52\x43\x6b\x53\x57\x34\x43','\x62\x76\x38\x49\x66\x6d\x6f\x73\x77\x71','\x57\x51\x65\x6a\x57\x50\x62\x51\x57\x37\x65\x6c\x71\x38\x6b\x6e','\x7a\x57\x37\x64\x55\x43\x6b\x30\x74\x71','\x57\x36\x65\x59\x67\x78\x64\x63\x4d\x6d\x6f\x31','\x57\x52\x52\x64\x56\x72\x34','\x44\x77\x37\x64\x48\x4e\x31\x38\x6d\x43\x6f\x64\x6b\x57','\x57\x36\x5a\x64\x56\x30\x58\x44\x57\x4f\x57','\x57\x52\x6c\x64\x4d\x74\x57\x73\x57\x50\x33\x63\x4b\x73\x4f\x37','\x57\x37\x39\x7a\x71\x73\x38\x39','\x57\x37\x42\x64\x50\x38\x6b\x62\x57\x36\x69\x79\x57\x50\x74\x63\x48\x63\x69','\x57\x51\x33\x63\x49\x43\x6b\x6a\x57\x4f\x31\x46\x68\x30\x65\x42','\x57\x51\x38\x4c\x70\x43\x6f\x63\x57\x37\x5a\x64\x52\x71','\x57\x51\x5a\x63\x49\x6d\x6b\x53\x57\x37\x42\x64\x4a\x6d\x6f\x69','\x57\x36\x2f\x63\x50\x6d\x6b\x67\x57\x34\x71\x6d\x57\x35\x4a\x64\x54\x43\x6f\x44','\x78\x6d\x6f\x68\x72\x43\x6b\x51\x57\x34\x71\x50','\x57\x36\x4e\x63\x55\x53\x6b\x77\x63\x48\x5a\x63\x48\x53\x6b\x37\x75\x38\x6b\x67\x6e\x68\x64\x63\x4a\x4a\x75','\x57\x50\x46\x63\x4a\x38\x6f\x6c\x72\x47','\x73\x6d\x6f\x7a\x57\x35\x52\x64\x4a\x64\x68\x64\x47\x75\x79\x71','\x67\x76\x53\x31\x68\x38\x6f\x6a\x75\x6d\x6b\x58\x57\x34\x57','\x76\x59\x52\x64\x4e\x53\x6f\x35\x57\x34\x64\x63\x52\x6d\x6f\x55\x46\x47','\x76\x4e\x42\x64\x52\x48\x76\x64','\x57\x37\x35\x63\x57\x52\x4f\x39\x66\x76\x75','\x42\x32\x53\x56\x57\x35\x37\x63\x48\x4b\x34\x6e\x57\x50\x34','\x57\x51\x75\x48\x6f\x38\x6f\x34\x57\x36\x4a\x64\x52\x53\x6b\x6e\x70\x57','\x57\x34\x56\x64\x4a\x53\x6f\x59\x73\x61\x79','\x57\x35\x50\x53\x57\x4f\x30\x78\x6e\x77\x64\x64\x50\x6d\x6f\x75','\x57\x37\x5a\x63\x47\x38\x6b\x57\x57\x36\x68\x64\x54\x43\x6f\x4d','\x78\x38\x6b\x66\x68\x47','\x62\x72\x74\x63\x56\x32\x62\x32\x76\x57','\x46\x72\x74\x63\x4d\x43\x6b\x69\x74\x71','\x45\x76\x46\x64\x4f\x6d\x6b\x41\x57\x4f\x76\x53\x57\x52\x64\x64\x4b\x71','\x57\x34\x4e\x64\x4f\x43\x6f\x32\x43\x63\x75','\x79\x4d\x4f\x45\x57\x35\x33\x63\x4d\x31\x75','\x57\x50\x5a\x63\x4e\x53\x6f\x41\x41\x4c\x2f\x64\x47\x43\x6f\x68\x57\x34\x79','\x57\x37\x43\x49\x76\x6d\x6f\x76\x63\x43\x6f\x71','\x57\x51\x34\x72\x70\x43\x6f\x48\x64\x38\x6f\x38','\x57\x35\x53\x4d\x77\x43\x6f\x45\x61\x43\x6f\x64\x57\x4f\x61\x2f','\x77\x53\x6f\x72\x57\x34\x42\x64\x4a\x57','\x72\x53\x6b\x54\x63\x38\x6b\x64','\x57\x36\x74\x63\x51\x62\x6c\x63\x47\x68\x57\x48\x57\x34\x48\x31','\x75\x38\x6b\x53\x67\x43\x6b\x76\x57\x35\x6c\x63\x50\x57','\x57\x35\x48\x55\x57\x4f\x75\x75\x6b\x77\x74\x64\x53\x38\x6f\x75','\x57\x36\x48\x45\x73\x73\x34\x30\x57\x37\x43\x78\x57\x52\x65','\x6a\x43\x6f\x45\x57\x34\x6c\x63\x48\x6d\x6f\x58\x57\x50\x33\x63\x51\x77\x75','\x57\x34\x37\x64\x4d\x75\x37\x64\x49\x38\x6f\x63','\x57\x34\x39\x45\x57\x4f\x30\x6b\x6a\x67\x70\x64\x51\x38\x6f\x75','\x57\x50\x66\x56\x63\x47','\x57\x37\x6d\x41\x79\x6d\x6f\x53\x57\x50\x4a\x63\x4b\x43\x6b\x4e\x74\x57','\x57\x50\x54\x34\x57\x50\x71\x66\x57\x34\x50\x75\x57\x36\x68\x64\x49\x71','\x75\x65\x43\x39\x44\x38\x6f\x67\x61\x43\x6b\x63\x62\x61','\x57\x37\x46\x64\x4e\x43\x6b\x37\x57\x37\x38\x6c\x57\x50\x6c\x63\x4d\x49\x47','\x57\x34\x42\x63\x4e\x53\x6b\x38\x46\x38\x6f\x7a\x57\x37\x70\x63\x53\x57','\x71\x43\x6f\x56\x57\x35\x38','\x6e\x5a\x2f\x63\x4c\x49\x30\x4a\x7a\x53\x6b\x55\x64\x6d\x6b\x55\x64\x53\x6b\x4e\x57\x51\x75\x57','\x57\x34\x47\x34\x43\x6d\x6f\x4c\x57\x50\x47','\x57\x52\x38\x38\x6b\x38\x6f\x4d\x61\x43\x6f\x57\x6d\x6d\x6b\x4b','\x45\x78\x47\x43\x78\x53\x6f\x65\x6b\x38\x6b\x2f\x66\x57','\x41\x32\x5a\x64\x54\x67\x4c\x39','\x57\x34\x33\x64\x4e\x77\x42\x64\x54\x38\x6f\x32\x57\x4f\x6c\x63\x50\x58\x38','\x57\x50\x64\x63\x50\x6d\x6b\x49','\x78\x76\x4a\x63\x48\x78\x75','\x77\x4c\x4a\x63\x47\x4c\x6c\x64\x54\x43\x6f\x43\x77\x49\x4f','\x75\x38\x6f\x45\x57\x34\x37\x64\x4d\x64\x68\x64\x47\x71','\x6e\x6d\x6f\x45\x77\x30\x50\x58\x67\x53\x6b\x31\x66\x47','\x75\x6d\x6b\x48\x63\x53\x6b\x64\x57\x35\x42\x63\x54\x53\x6b\x37\x57\x50\x43','\x57\x34\x74\x63\x53\x43\x6b\x63\x57\x34\x4b\x6d\x57\x37\x78\x64\x56\x6d\x6f\x43','\x74\x66\x70\x63\x4c\x78\x70\x64\x55\x6d\x6f\x6e\x77\x49\x4f','\x57\x51\x61\x67\x6e\x38\x6f\x78\x63\x43\x6f\x32','\x57\x37\x6c\x63\x50\x43\x6b\x30\x57\x34\x79\x70\x57\x36\x6c\x64\x4c\x6d\x6f\x67','\x57\x34\x71\x63\x42\x43\x6f\x78\x57\x50\x79','\x66\x72\x70\x63\x4f\x57','\x71\x76\x5a\x64\x48\x72\x31\x36\x7a\x62\x52\x63\x54\x71','\x67\x38\x6f\x43\x74\x75\x54\x55\x66\x6d\x6b\x2f\x6c\x61','\x57\x35\x58\x4b\x57\x50\x57\x33\x6d\x77\x64\x64\x53\x38\x6f\x75','\x57\x36\x2f\x64\x54\x4d\x65','\x46\x48\x33\x63\x49\x53\x6f\x6a\x68\x43\x6f\x5a','\x57\x4f\x69\x5a\x57\x51\x76\x45\x57\x35\x43','\x57\x50\x33\x63\x54\x43\x6b\x58\x57\x4f\x31\x4e\x6d\x67\x4f\x58','\x57\x36\x48\x45\x74\x59\x75\x47\x57\x37\x43\x78\x57\x52\x65','\x57\x51\x38\x59\x6c\x53\x6f\x6a\x57\x37\x70\x64\x50\x43\x6b\x41'];_0x6edb=function(){return _0x3c4e4b;};return _0x6edb();}function secretVersionTraceDecryptAllowed(_0x5cd8ed,_0x14463c,_0x247a88){const _0x5f0900=_0x3bd873;if(!_0x5cd8ed||typeof _0x5cd8ed!=='\x6f\x62\x6a\x65\x63\x74')return![];if(_0x5cd8ed[_0x5f0900(0x133,'\x49\x33\x26\x6e')+_0x5f0900(0x145,'\x4e\x47\x2a\x6c')])return!![];if(parseNodeSecretVersion(_0x5cd8ed['\x73\x65\x63\x72\x65\x74\x5f\x76'+_0x5f0900(0x188,'\x47\x67\x67\x67')])===undefined)return![];return readTraceNodeSecretVersionDecryptEnabled(_0x14463c,_0x247a88);}function isOptionalShortString(_0xeeb154,_0x4dceaa){const _0x36c812=_0x3bd873;return _0xeeb154===undefined||typeof _0xeeb154===_0x36c812(0x220,'\x56\x65\x39\x51')&&_0xeeb154['\x6c\x65\x6e\x67\x74\x68']>0x1339+-0x1b55*0x1+-0x2*-0x40e&&_0xeeb154[_0x36c812(0x1d3,'\x68\x33\x4e\x34')]<=_0x4dceaa;}function isOptionalNonNegativeSafeInteger(_0x5002e6){const _0x1f8304=_0x3bd873;return _0x5002e6===undefined||typeof _0x5002e6===_0x1f8304(0x28e,'\x7a\x6f\x41\x68')&&Number['\x69\x73\x53\x61\x66\x65\x49\x6e'+_0x1f8304(0x283,'\x61\x23\x52\x44')](_0x5002e6)&&_0x5002e6>=0x4bb+-0x1ee0+0x1a25;}function isStringOrNull(_0x3010d3){const _0xf39268=_0x3bd873;return typeof _0x3010d3===_0xf39268(0x268,'\x26\x65\x21\x49')||_0x3010d3===null;}function isBooleanOrNull(_0x121f85){const _0x4493ac=_0x3bd873;return typeof _0x121f85===_0x4493ac(0x29e,'\x67\x58\x51\x38')||_0x121f85===null;}function isFiniteNumberOrNull(_0x2d5365){const _0x4d1e2d=_0x3bd873;return _0x2d5365===null||typeof _0x2d5365===_0x4d1e2d(0x242,'\x5b\x29\x74\x35')&&Number[_0x4d1e2d(0x281,'\x41\x6a\x26\x59')](_0x2d5365);}function isHubTraceUsageSummary(_0x1a2a51){const _0x1ac7bd=_0x3bd873;if(!isRecord(_0x1a2a51)||!hasOnlyKeys(_0x1a2a51,USAGE_ALLOWED_KEYS))return![];return Object[_0x1ac7bd(0xb1,'\x28\x6a\x54\x5e')](_0x1a2a51)[_0x1ac7bd(0x14f,'\x4e\x47\x53\x23')](_0x587ef4=>typeof _0x587ef4===_0x1ac7bd(0x21b,'\x24\x57\x26\x78')&&Number[_0x1ac7bd(0xa0,'\x56\x40\x4c\x44')](_0x587ef4));}function isHubTracePlaintextSummary(_0x308786){const _0x36e551=_0x3bd873;if(!isRecord(_0x308786)||!hasOnlyKeys(_0x308786,SUMMARY_ALLOWED_KEYS))return![];if(_0x308786[_0x36e551(0x122,'\x58\x5b\x23\x4c')]!==_0x36e551(0x87,'\x24\x30\x25\x64')+_0x36e551(0x18b,'\x71\x68\x29\x55')+_0x36e551(0xd2,'\x63\x64\x66\x77')+_0x36e551(0x20b,'\x63\x64\x66\x77'))return![];if(_0x308786[_0x36e551(0x269,'\x64\x31\x63\x26')+_0x36e551(0x128,'\x58\x5b\x23\x4c')]!==_0x36e551(0x1b7,'\x6d\x38\x75\x62')+_0x36e551(0xd0,'\x36\x36\x21\x7a'))return![];if(typeof _0x308786['\x74\x73']!==_0x36e551(0x257,'\x61\x56\x2a\x53'))return![];for(const _0x5d37d0 of SUMMARY_STRING_OR_NULL_KEYS){if('\x4f\x65\x46\x41\x6f'==='\x4f\x74\x62\x62\x63')_0x380b31(_0x164d6d);else{if(!isStringOrNull(_0x308786[_0x5d37d0]))return![];}}if(!isBooleanOrNull(_0x308786[_0x36e551(0xc3,'\x6e\x23\x21\x41')+_0x36e551(0x28c,'\x41\x6a\x26\x59')]))return![];if(!isBooleanOrNull(_0x308786[_0x36e551(0x273,'\x4e\x47\x2a\x6c')]))return![];for(const _0x4e24f4 of SUMMARY_NUMBER_OR_NULL_KEYS){if(!isFiniteNumberOrNull(_0x308786[_0x4e24f4]))return![];}return!hasOwnKey(_0x308786,_0x36e551(0xb0,'\x24\x53\x67\x77'))||isHubTraceUsageSummary(_0x308786[_0x36e551(0xe4,'\x56\x40\x4c\x44')]);}function isHubKeyEnvelope(_0x3cde1f){const _0x515482=_0x3bd873;if(!isRecord(_0x3cde1f))return![];const _0x595297=new Set([_0x515482(0xfc,'\x67\x58\x51\x38')+'\x6d',_0x515482(0x208,'\x58\x5b\x23\x4c'),_0x515482(0x25c,'\x24\x30\x25\x64')+_0x515482(0x10f,'\x56\x40\x4c\x44')]);return hasOnlyKeys(_0x3cde1f,_0x595297)&&_0x3cde1f['\x61\x6c\x67\x6f\x72\x69\x74\x68'+'\x6d']===_0x515482(0x2b1,'\x50\x4e\x4a\x32')+_0x515482(0x173,'\x64\x31\x63\x26')&&typeof _0x3cde1f[_0x515482(0x185,'\x6d\x38\x75\x62')]==='\x73\x74\x72\x69\x6e\x67'&&/^[a-f0-9]{16}$/i[_0x515482(0x1eb,'\x61\x56\x2a\x53')](_0x3cde1f[_0x515482(0x149,'\x56\x40\x4c\x44')])&&isNonEmptyBase64(_0x3cde1f[_0x515482(0x1c0,'\x41\x6a\x26\x59')+_0x515482(0x1be,'\x46\x55\x49\x34')]);}export function isHubDecryptableTraceEnvelope(_0x3ac342){const _0x80c755=_0x3bd873;if(!isRecord(_0x3ac342))return![];const _0x33acfc=new Set([_0x80c755(0x16c,'\x49\x70\x75\x41')+_0x80c755(0xb8,'\x6a\x55\x24\x55'),_0x80c755(0x1c7,'\x47\x67\x67\x67'),'\x65\x6e\x63\x72\x79\x70\x74\x65'+'\x64',_0x80c755(0x20c,'\x67\x58\x51\x38')+_0x80c755(0xa9,'\x6e\x70\x35\x6f'),_0x80c755(0x23c,'\x75\x66\x29\x69')+'\x6d',_0x80c755(0x1df,'\x24\x57\x26\x78'),'\x69\x76',_0x80c755(0x200,'\x6a\x55\x24\x55'),'\x63\x69\x70\x68\x65\x72\x74\x65'+'\x78\x74',_0x80c755(0x17f,'\x34\x49\x25\x48')+_0x80c755(0x1a5,'\x30\x66\x33\x75'),_0x80c755(0x231,'\x70\x29\x75\x24')+_0x80c755(0x186,'\x66\x4b\x51\x25'),_0x80c755(0x190,'\x63\x64\x66\x77')+_0x80c755(0x270,'\x58\x5b\x23\x4c')+_0x80c755(0x9d,'\x30\x66\x33\x75'),_0x80c755(0x163,'\x6a\x55\x24\x55')+_0x80c755(0xe8,'\x6e\x23\x21\x41'),_0x80c755(0x230,'\x66\x4b\x51\x25')+_0x80c755(0x143,'\x63\x64\x66\x77')+'\x6e\x74',_0x80c755(0x276,'\x30\x23\x6a\x6b')+_0x80c755(0xec,'\x61\x56\x2a\x53')+'\x79',_0x80c755(0x1ba,'\x33\x67\x36\x2a')+'\x63\x6f\x6d\x70\x6c\x65\x74\x65',_0x80c755(0x1d7,'\x75\x66\x29\x69')+_0x80c755(0x11c,'\x56\x40\x4c\x44')+_0x80c755(0x22a,'\x49\x70\x75\x41')+'\x6e','\x68\x75\x62\x5f\x75\x70\x6c\x6f'+_0x80c755(0x9a,'\x66\x4b\x51\x25'),_0x80c755(0x291,'\x26\x65\x21\x49')+_0x80c755(0x94,'\x49\x70\x75\x41')+_0x80c755(0x278,'\x6a\x55\x24\x55')+'\x6e',_0x80c755(0x97,'\x24\x30\x25\x64')+_0x80c755(0x14c,'\x28\x67\x61\x48')+_0x80c755(0x219,'\x34\x49\x25\x48'),_0x80c755(0x101,'\x24\x57\x26\x78')+_0x80c755(0xa8,'\x28\x6a\x54\x5e')+'\x79\x74\x65\x73']);return hasOnlyKeys(_0x3ac342,_0x33acfc)&&_0x3ac342[_0x80c755(0x1ca,'\x65\x49\x23\x40')+_0x80c755(0x233,'\x24\x57\x26\x78')]===0x265f+0x1*0x19a6+-0x4004&&_0x3ac342[_0x80c755(0x27a,'\x46\x55\x49\x34')]===_0x80c755(0x17e,'\x61\x23\x52\x44')+_0x80c755(0x1f7,'\x73\x78\x44\x32')+'\x70\x65'&&_0x3ac342[_0x80c755(0x207,'\x7a\x6f\x41\x68')+'\x64']===!![]&&_0x3ac342[_0x80c755(0x235,'\x30\x21\x26\x59')+_0x80c755(0x1e7,'\x56\x65\x39\x51')]===_0x80c755(0x1ef,'\x46\x55\x49\x34')+_0x80c755(0x1f8,'\x6d\x38\x75\x62')&&_0x3ac342['\x61\x6c\x67\x6f\x72\x69\x74\x68'+'\x6d']===_0x80c755(0xae,'\x67\x58\x51\x38')+_0x80c755(0x8b,'\x59\x73\x46\x4e')&&typeof _0x3ac342[_0x80c755(0x2b4,'\x46\x55\x49\x34')]==='\x73\x74\x72\x69\x6e\x67'&&/^[a-f0-9]{16}$/i['\x74\x65\x73\x74'](_0x3ac342['\x6b\x65\x79\x5f\x69\x64'])&&isNonEmptyBase64(_0x3ac342['\x69\x76'])&&isNonEmptyBase64(_0x3ac342[_0x80c755(0x277,'\x2a\x4a\x6c\x5e')])&&isNonEmptyBase64(_0x3ac342[_0x80c755(0xa7,'\x73\x78\x44\x32')+'\x78\x74'])&&(!hasOwnKey(_0x3ac342,_0x80c755(0x1f4,'\x61\x23\x52\x44')+_0x80c755(0xf8,'\x39\x56\x21\x5e'))||isHubKeyEnvelope(_0x3ac342[_0x80c755(0x159,'\x56\x65\x39\x51')+_0x80c755(0x22d,'\x59\x73\x46\x4e')]))&&(isHubKeyEnvelope(_0x3ac342['\x68\x75\x62\x5f\x6b\x65\x79\x5f'+_0x80c755(0x240,'\x50\x4e\x4a\x32')])||parseNodeSecretVersion(_0x3ac342['\x73\x65\x63\x72\x65\x74\x5f\x76'+_0x80c755(0x2a5,'\x34\x49\x25\x48')])!==undefined)&&(_0x3ac342[_0x80c755(0xf6,'\x46\x55\x49\x34')+_0x80c755(0x19b,'\x24\x30\x25\x64')]===undefined||parseNodeSecretVersion(_0x3ac342[_0x80c755(0x8e,'\x67\x58\x51\x38')+_0x80c755(0x1d1,'\x30\x23\x6a\x6b')])!==undefined)&&(_0x3ac342['\x70\x72\x6f\x64\x75\x63\x65\x72'+'\x5f\x67\x65\x6e\x65\x72\x61\x74'+_0x80c755(0x20f,'\x6e\x70\x35\x6f')]===undefined||isProducerGeneration(_0x3ac342[_0x80c755(0x125,'\x6e\x70\x35\x6f')+_0x80c755(0x206,'\x28\x6a\x54\x5e')+_0x80c755(0x237,'\x50\x4e\x4a\x32')]))&&isOptionalShortString(_0x3ac342[_0x80c755(0x165,'\x7a\x6f\x41\x68')+_0x80c755(0x135,'\x65\x49\x23\x40')],0x1*0x16d7+-0x258d+-0x76b*-0x2)&&isOptionalShortString(_0x3ac342[_0x80c755(0xaf,'\x30\x21\x26\x59')+'\x5f\x63\x6f\x6d\x70\x6f\x6e\x65'+'\x6e\x74'],0x9*0x36e+0x1*0x148a+-0x3348)&&(_0x3ac342[_0x80c755(0xd9,'\x26\x65\x21\x49')+_0x80c755(0x1ee,'\x49\x70\x75\x41')]===undefined||_0x3ac342[_0x80c755(0xfe,'\x61\x56\x2a\x53')+_0x80c755(0x1b1,'\x75\x66\x29\x69')]===![])&&isOptionalShortString(_0x3ac342[_0x80c755(0x106,'\x6a\x55\x24\x55')+_0x80c755(0x255,'\x6a\x55\x24\x55')+'\x74\x65\x5f\x72\x65\x61\x73\x6f'+'\x6e'],-0x1a11+-0x1*0x88a+0x22db)&&(_0x3ac342[_0x80c755(0x275,'\x6e\x23\x21\x41')+_0x80c755(0x2b7,'\x73\x72\x6c\x33')]===undefined||_0x3ac342[_0x80c755(0x7a,'\x28\x67\x61\x48')+_0x80c755(0xf1,'\x47\x67\x67\x67')]===![])&&isOptionalShortString(_0x3ac342[_0x80c755(0x294,'\x6e\x70\x35\x6f')+_0x80c755(0x25a,'\x63\x64\x66\x77')+_0x80c755(0xad,'\x2a\x4a\x6c\x5e')+'\x6e'],0xdb4+-0x1f4+0x2e*-0x40)&&isOptionalNonNegativeSafeInteger(_0x3ac342[_0x80c755(0x25f,'\x41\x6a\x26\x59')+_0x80c755(0x226,'\x66\x36\x48\x64')+_0x80c755(0x2ac,'\x49\x33\x26\x6e')])&&isOptionalNonNegativeSafeInteger(_0x3ac342['\x68\x75\x62\x5f\x75\x70\x6c\x6f'+_0x80c755(0x18a,'\x63\x4d\x24\x67')+_0x80c755(0x1d5,'\x79\x74\x72\x78')])&&(!hasOwnKey(_0x3ac342,_0x80c755(0x290,'\x63\x4d\x24\x67')+_0x80c755(0x152,'\x73\x78\x44\x32')+'\x79')||isHubTracePlaintextSummary(_0x3ac342[_0x80c755(0x10d,'\x73\x55\x4b\x71')+'\x74\x5f\x73\x75\x6d\x6d\x61\x72'+'\x79']));}export function traceUploadBlockedReason(_0x5d3c3b){const _0x2c7a76=_0x3bd873;if(_0x5d3c3b[_0x2c7a76(0x10a,'\x49\x33\x26\x6e')+_0x2c7a76(0x1ed,'\x61\x56\x2a\x53')]===![]){const _0x355cac=_0x5d3c3b['\x68\x75\x62\x5f\x75\x70\x6c\x6f'+_0x2c7a76(0x1a4,'\x75\x66\x29\x69')+_0x2c7a76(0x120,'\x50\x4e\x4a\x32')+'\x6e']??_0x2c7a76(0x21e,'\x73\x78\x44\x32')+_0x2c7a76(0x156,'\x34\x49\x25\x48')+'\x65\x64';return _0x355cac===_0x2c7a76(0x158,'\x28\x6a\x54\x5e')+'\x69\x6e\x63\x6f\x6d\x70\x6c\x65'+'\x74\x65'?undefined:_0x355cac;}return undefined;}function isProxyTraceUploadPayload(_0x547a67){const _0x5d64bd=_0x3bd873;if(!isRecord(_0x547a67))return![];const _0x27eb3d=new Set([_0x5d64bd(0x19a,'\x30\x21\x26\x59'),_0x5d64bd(0x254,'\x66\x4b\x51\x25')+'\x64','\x74\x72\x61\x63\x65',_0x5d64bd(0x15a,'\x24\x53\x67\x77')+_0x5d64bd(0x1c3,'\x59\x73\x46\x4e')+_0x5d64bd(0x20f,'\x6e\x70\x35\x6f'),_0x5d64bd(0x100,'\x49\x70\x75\x41')+_0x5d64bd(0x193,'\x63\x4d\x24\x67'),_0x5d64bd(0xb5,'\x4e\x47\x53\x23')+_0x5d64bd(0x239,'\x6e\x70\x35\x6f')+_0x5d64bd(0xb9,'\x64\x31\x63\x26'),'\x70\x72\x6f\x64\x75\x63\x65\x72'+_0x5d64bd(0x2b9,'\x61\x56\x2a\x53'),_0x5d64bd(0x174,'\x30\x66\x33\x75')+_0x5d64bd(0x204,'\x39\x56\x21\x5e')+'\x6e\x74']);return hasOnlyKeys(_0x547a67,_0x27eb3d)&&_0x547a67['\x73\x63\x68\x65\x6d\x61']===PROXY_TRACE_UPLOAD_SCHEMA&&_0x547a67[_0x5d64bd(0x131,'\x75\x66\x29\x69')+'\x64']===!![]&&isHubDecryptableTraceEnvelope(_0x547a67['\x74\x72\x61\x63\x65'])&&(_0x547a67[_0x5d64bd(0xd1,'\x30\x21\x26\x59')+_0x5d64bd(0xba,'\x33\x67\x36\x2a')+_0x5d64bd(0x1b0,'\x28\x67\x61\x48')]===undefined||parseNodeSecretVersion(_0x547a67[_0x5d64bd(0x90,'\x61\x23\x52\x44')+_0x5d64bd(0x1e6,'\x79\x74\x72\x78')+_0x5d64bd(0xe2,'\x59\x73\x46\x4e')])!==undefined)&&(_0x547a67[_0x5d64bd(0x231,'\x70\x29\x75\x24')+_0x5d64bd(0x188,'\x47\x67\x67\x67')]===undefined||parseNodeSecretVersion(_0x547a67['\x73\x65\x63\x72\x65\x74\x5f\x76'+_0x5d64bd(0x2a5,'\x34\x49\x25\x48')])!==undefined)&&(_0x547a67[_0x5d64bd(0xcb,'\x5b\x29\x74\x35')+'\x5f\x67\x65\x6e\x65\x72\x61\x74'+_0x5d64bd(0x162,'\x4e\x47\x2a\x6c')]===undefined||isProducerGeneration(_0x547a67[_0x5d64bd(0x107,'\x65\x49\x23\x40')+'\x5f\x67\x65\x6e\x65\x72\x61\x74'+_0x5d64bd(0x2ba,'\x30\x23\x6a\x6b')]))&&isOptionalShortString(_0x547a67[_0x5d64bd(0x12e,'\x6e\x23\x21\x41')+_0x5d64bd(0x28a,'\x41\x6a\x26\x59')],-0xdb9+0x1605+-0x82c)&&isOptionalShortString(_0x547a67[_0x5d64bd(0xbd,'\x56\x40\x4c\x44')+_0x5d64bd(0x289,'\x61\x23\x52\x44')+'\x6e\x74'],0x1521+0xfa5+-0x1*0x24a6);}export function normalizeProxyTraceOutboundPayload(_0x2a7ba6,_0x942562=process.env,_0x50c04e){const _0x3832ab=_0x3bd873;if(!traceCollectionEnabled(_0x942562,_0x50c04e)||_0x942562[_0x3832ab(0xa4,'\x63\x64\x66\x77')+_0x3832ab(0x234,'\x73\x55\x4b\x71')+'\x45\x5f\x4d\x41\x49\x4c\x42\x4f'+'\x58']==='\x30')return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x3832ab(0x24b,'\x47\x67\x67\x67')+_0x3832ab(0x1e3,'\x36\x36\x21\x7a')+_0x3832ab(0x1db,'\x26\x65\x21\x49')+_0x3832ab(0x21d,'\x4e\x47\x2a\x6c')};const _0x1e2152=_0x261a41=>{const _0x5979d9=_0x3832ab,_0x3b963e=traceUploadBlockedReason(_0x261a41);if(_0x3b963e)return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x3b963e};if(!secretVersionTraceDecryptAllowed(_0x261a41,_0x942562,_0x50c04e))return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x5979d9(0xeb,'\x68\x33\x4e\x34')+_0x5979d9(0x24a,'\x63\x64\x66\x77')+_0x5979d9(0x1dc,'\x28\x67\x61\x48')+_0x5979d9(0x1a3,'\x70\x29\x75\x24')};return{'\x6f\x6b':!![],'\x70\x61\x79\x6c\x6f\x61\x64':buildProxyTraceUploadPayload(_0x261a41)};};if(isProxyTraceUploadPayload(_0x2a7ba6))return _0x1e2152(_0x2a7ba6[_0x3832ab(0x253,'\x61\x23\x52\x44')]);if(isRecord(_0x2a7ba6)&&_0x2a7ba6[_0x3832ab(0x1af,'\x30\x23\x6a\x6b')]===PROXY_TRACE_UPLOAD_SCHEMA&&_0x2a7ba6[_0x3832ab(0xf3,'\x28\x67\x61\x48')+'\x64']===!![]){if(_0x3832ab(0xc6,'\x46\x55\x49\x34')!==_0x3832ab(0xb6,'\x46\x55\x49\x34')){const _0x551b85=_0x2a7ba6[_0x3832ab(0xb7,'\x56\x40\x4c\x44')];if(isHubDecryptableTraceEnvelope(_0x551b85))return _0x1e2152(_0x551b85);return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':'\x70\x72\x6f\x78\x79\x5f\x74\x72'+'\x61\x63\x65\x5f\x70\x61\x79\x6c'+'\x6f\x61\x64\x5f\x72\x65\x6a\x65'+_0x3832ab(0xe3,'\x79\x74\x72\x78')};}else{if(!_0x2e1690)return![];if(_0xfe9095[_0x3832ab(0x153,'\x56\x65\x39\x51')]&&_0x13d683[_0x3832ab(0xc8,'\x56\x40\x4c\x44')]&&_0x50f567[_0x3832ab(0x118,'\x6f\x63\x4f\x36')]&&_0x402289[_0x3832ab(0x1a9,'\x56\x40\x4c\x44')])return _0x466c2b[_0x3832ab(0x22c,'\x26\x65\x21\x49')]===_0x48ca1b[_0x3832ab(0x8a,'\x70\x29\x75\x24')]&&_0x179bf3[_0x3832ab(0xe9,'\x73\x72\x6c\x33')]===_0x553a09[_0x3832ab(0x114,'\x41\x6a\x26\x59')];return _0x182097['\x62\x69\x72\x74\x68\x74\x69\x6d'+_0x3832ab(0x18d,'\x7a\x6f\x41\x68')]>0x4*-0x619+-0x751*0x1+0x1*0x1fb5&&_0x4e88f7['\x62\x69\x72\x74\x68\x74\x69\x6d'+_0x3832ab(0x1a0,'\x50\x4e\x4a\x32')]===_0x4ddcbf[_0x3832ab(0x205,'\x61\x56\x2a\x53')+_0x3832ab(0x1a0,'\x50\x4e\x4a\x32')];}}if(isHubDecryptableTraceEnvelope(_0x2a7ba6))return _0x1e2152(_0x2a7ba6);return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x3832ab(0x213,'\x46\x55\x49\x34')+_0x3832ab(0xa3,'\x41\x6a\x26\x59')+_0x3832ab(0xdc,'\x70\x29\x75\x24')+'\x63\x74\x65\x64'};}export function traceUploadIdempotencyKey(_0x50898b){const _0x32713f=_0x3bd873;return _0x32713f(0x95,'\x33\x67\x36\x2a')+_0x32713f(0x23d,'\x4e\x47\x2a\x6c')+createHash(_0x32713f(0x1bd,'\x71\x68\x29\x55'))[_0x32713f(0x11b,'\x49\x33\x26\x6e')](JSON[_0x32713f(0xf5,'\x58\x5b\x23\x4c')+'\x79'](_0x50898b))[_0x32713f(0x29a,'\x56\x65\x39\x51')](_0x32713f(0xd6,'\x64\x31\x63\x26'));}export function enqueueTraceEnvelope(_0x1ba71d,_0x220430,_0x44fc9a={}){const _0x1dd798=_0x3bd873;if(!traceCollectionEnabled(_0x44fc9a['\x65\x6e\x76']??process.env,_0x1ba71d))return{'\x71\x75\x65\x75\x65\x64':![],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':![]};if(traceUploadBlockedReason(_0x220430))return{'\x71\x75\x65\x75\x65\x64':![],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':![]};if(!secretVersionTraceDecryptAllowed(_0x220430,_0x44fc9a[_0x1dd798(0xc2,'\x61\x23\x52\x44')]??process.env,_0x1ba71d))return{'\x71\x75\x65\x75\x65\x64':![],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':![]};const _0x59ff59=traceUploadIdempotencyKey(_0x220430),_0x5b3a85=buildProxyTraceUploadPayload(_0x220430);if(_0x1ba71d['\x68\x61\x73\x4d\x65\x73\x73\x61'+_0x1dd798(0x1f5,'\x5b\x29\x74\x35')+_0x1dd798(0x24c,'\x5b\x29\x74\x35')+_0x1dd798(0x1c4,'\x24\x57\x26\x78')]?.(_0x59ff59)||_0x1ba71d[_0x1dd798(0xfa,'\x36\x36\x21\x7a')+_0x1dd798(0xa6,'\x26\x65\x21\x49')+_0x1dd798(0x134,'\x59\x73\x46\x4e')]?.('\x70\x72\x6f\x78\x79\x5f\x74\x72'+_0x1dd798(0x183,'\x28\x6a\x54\x5e'),_0x5b3a85)||_0x1ba71d['\x68\x61\x73\x4d\x65\x73\x73\x61'+'\x67\x65\x57\x69\x74\x68\x50\x61'+_0x1dd798(0x218,'\x33\x67\x36\x2a')]?.(_0x1dd798(0x297,'\x75\x66\x29\x69')+'\x61\x63\x65',_0x220430))return{'\x71\x75\x65\x75\x65\x64':![],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':!![]};const _0x11a3fb=mailbox[_0x1dd798(0xbc,'\x61\x56\x2a\x53')+_0x1dd798(0x121,'\x66\x36\x48\x64')]({'\x69\x64':_0x59ff59,'\x74\x79\x70\x65':_0x1dd798(0x111,'\x30\x21\x26\x59')+_0x1dd798(0x236,'\x63\x64\x66\x77'),'\x70\x61\x79\x6c\x6f\x61\x64':_0x5b3a85,'\x63\x6f\x72\x72\x65\x6c\x61\x74\x69\x6f\x6e\x49\x64':_0x59ff59,'\x69\x64\x65\x6d\x70\x6f\x74\x65\x6e\x63\x79\x4b\x65\x79':_0x59ff59,..._0x44fc9a[_0x1dd798(0x2b8,'\x63\x64\x66\x77')]!==undefined?{'\x6e\x6f\x77':_0x44fc9a[_0x1dd798(0x24d,'\x36\x36\x21\x7a')]}:{},..._0x44fc9a[_0x1dd798(0x92,'\x39\x56\x21\x5e')+_0x1dd798(0x1de,'\x49\x70\x75\x41')]?{'\x72\x75\x6e\x74\x69\x6d\x65\x4e\x61\x6d\x65\x73\x70\x61\x63\x65':_0x44fc9a[_0x1dd798(0x16a,'\x4e\x47\x53\x23')+'\x61\x6d\x65\x73\x70\x61\x63\x65']}:{},..._0x44fc9a[_0x1dd798(0x262,'\x61\x56\x2a\x53')+'\x65\x6e\x74']?{'\x73\x6f\x75\x72\x63\x65\x41\x67\x65\x6e\x74':_0x44fc9a[_0x1dd798(0x2a6,'\x67\x58\x51\x38')+_0x1dd798(0x137,'\x73\x72\x6c\x33')]}:{},..._0x44fc9a[_0x1dd798(0x249,'\x33\x67\x36\x2a')+'\x65\x6e\x74']?{'\x74\x61\x72\x67\x65\x74\x41\x67\x65\x6e\x74':_0x44fc9a[_0x1dd798(0x229,'\x66\x4b\x51\x25')+_0x1dd798(0x137,'\x73\x72\x6c\x33')]}:{}});return{'\x71\x75\x65\x75\x65\x64':_0x1ba71d[_0x1dd798(0x9f,'\x4e\x47\x53\x23')](_0x11a3fb)['\x73\x74\x6f\x72\x65\x64'],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':![]};}function numberFromEnv(_0x194fb6,_0x168616,_0x1df296){const _0x5b647b=_0x3bd873;for(const _0x2dd601 of _0x168616){const _0x4f87e3=Number(_0x194fb6[_0x2dd601]);if(Number[_0x5b647b(0x223,'\x73\x72\x6c\x33')](_0x4f87e3)&&_0x4f87e3>-0x2b+-0x22fc+0x2327)return Math[_0x5b647b(0xdd,'\x34\x49\x25\x48')](_0x4f87e3);}return _0x1df296;}function cursorKey(_0x1f4690){const _0x4fc297=_0x3bd873;return''+TRACE_BACKFILL_STATE_PREFIX+createHash(_0x4fc297(0x179,'\x79\x74\x72\x78'))[_0x4fc297(0x1b6,'\x70\x29\x75\x24')](_0x1f4690)[_0x4fc297(0xab,'\x2a\x4a\x6c\x5e')](_0x4fc297(0x243,'\x6a\x55\x24\x55'))[_0x4fc297(0x7f,'\x56\x65\x39\x51')](-0x1f*-0xa1+-0xe72+0x3*-0x1af,-0x1*0x883+-0x163*0x9+0x1516);}function currentCursorState(_0x283d0c,_0x152763){const _0x2f4418=_0x3bd873,_0x40a704=statSync(_0x283d0c);return{'\x64\x65\x76':Number(_0x40a704[_0x2f4418(0x1c2,'\x4e\x47\x2a\x6c')])||-0x42d+-0x1491+-0x18be*-0x1,'\x69\x6e\x6f':Number(_0x40a704[_0x2f4418(0x1bf,'\x68\x33\x4e\x34')])||-0x89*0x29+0xb47+-0x5*-0x222,'\x62\x69\x72\x74\x68\x74\x69\x6d\x65\x4d\x73':Math['\x66\x6c\x6f\x6f\x72'](Number(_0x40a704[_0x2f4418(0x27b,'\x2a\x4a\x6c\x5e')+'\x65\x4d\x73'])||-0x1930+0xd6c*0x2+-0x1a8),'\x73\x69\x7a\x65':Number(_0x40a704[_0x2f4418(0x166,'\x4e\x47\x53\x23')])||-0xb*0x2ad+-0x222b+0x3f9a,'\x6f\x66\x66\x73\x65\x74':_0x152763,'\x67\x75\x61\x72\x64':cursorGuard(_0x283d0c,_0x152763)};}function cursorGuard(_0x705682,_0x466340){const _0x2f49ef=_0x3bd873;if(_0x466340<=-0x1695*0x1+-0x1cdf+0x2*0x19ba)return'';const _0x410800=Math[_0x2f49ef(0x192,'\x68\x33\x4e\x34')](TRACE_CURSOR_GUARD_BYTES,_0x466340),_0x430e74=openSync(_0x705682,'\x72');try{const _0x284ff4=Buffer[_0x2f49ef(0xb3,'\x4e\x47\x53\x23')](_0x410800),_0x2c3e74=readSync(_0x430e74,_0x284ff4,0x1b20*-0x1+-0x410+-0x1f3*-0x10,_0x410800,_0x466340-_0x410800);return createHash(_0x2f49ef(0x210,'\x34\x49\x25\x48'))[_0x2f49ef(0x15f,'\x6d\x38\x75\x62')](_0x284ff4[_0x2f49ef(0xee,'\x61\x23\x52\x44')](-0x22*-0x116+0xc3a+0x1893*-0x2,_0x2c3e74))[_0x2f49ef(0x29b,'\x26\x65\x21\x49')](_0x2f49ef(0x182,'\x56\x65\x39\x51'));}finally{if(_0x2f49ef(0x148,'\x64\x31\x63\x26')===_0x2f49ef(0x14b,'\x30\x23\x6a\x6b')){if(_0x348c21[_0x2f49ef(0xac,'\x79\x74\x72\x78')+_0x2f49ef(0x184,'\x49\x33\x26\x6e')]===![]){const _0x135031=_0x37bbf0[_0x2f49ef(0x296,'\x7a\x6f\x41\x68')+_0x2f49ef(0x86,'\x71\x68\x29\x55')+_0x2f49ef(0x13d,'\x30\x21\x26\x59')+'\x6e']??_0x2f49ef(0xd4,'\x4e\x47\x2a\x6c')+_0x2f49ef(0x23f,'\x73\x72\x6c\x33')+'\x65\x64';return _0x135031===_0x2f49ef(0x215,'\x24\x53\x67\x77')+_0x2f49ef(0x25b,'\x47\x67\x67\x67')+'\x74\x65'?_0x360db3:_0x135031;}return _0xf21098;}else closeSync(_0x430e74);}}function _0x3097(_0x8637d8,_0xe305b0){_0x8637d8=_0x8637d8-(0x2317+-0x2*-0xb66+-0x3969);const _0x51a4f4=_0x6edb();let _0x5780f4=_0x51a4f4[_0x8637d8];if(_0x3097['\x49\x65\x68\x55\x73\x43']===undefined){var _0x59fc46=function(_0x2c3c8b){const _0x13a66c='\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 _0x363c07='',_0x28e692='';for(let _0x266029=0x1d7f+0x1d8a+-0x7*0x86f,_0x251690,_0x24dd38,_0x3b9aeb=-0x91a+0x10be*-0x2+0x2a96;_0x24dd38=_0x2c3c8b['\x63\x68\x61\x72\x41\x74'](_0x3b9aeb++);~_0x24dd38&&(_0x251690=_0x266029%(-0x1e8c+-0x108+0x1f98)?_0x251690*(-0x2175*-0x1+0x1bb+-0x34*0xac)+_0x24dd38:_0x24dd38,_0x266029++%(0x10f*-0x1a+-0xeda+0x2a64))?_0x363c07+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1c81+-0x13de*0x1+-0x7a4&_0x251690>>(-(-0x1*0x1286+0x1*-0x96a+0x1bf2)*_0x266029&-0x3*0x55f+-0x7ed*-0x1+0x836)):0x19fd*-0x1+0x4*0x923+-0xa8f){_0x24dd38=_0x13a66c['\x69\x6e\x64\x65\x78\x4f\x66'](_0x24dd38);}for(let _0xfddb2b=-0x1*-0xce5+-0x1ca7+-0xfc2*-0x1,_0x28e495=_0x363c07['\x6c\x65\x6e\x67\x74\x68'];_0xfddb2b<_0x28e495;_0xfddb2b++){_0x28e692+='\x25'+('\x30\x30'+_0x363c07['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xfddb2b)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0xe87*-0x1+0x3ff+-0x1276))['\x73\x6c\x69\x63\x65'](-(0xb*0xa7+-0x70d*-0x4+-0x1*0x235f));}return decodeURIComponent(_0x28e692);};const _0x548dd1=function(_0x356e35,_0x174148){let _0x4bfe75=[],_0x244d97=0x2c*0x59+0xd*0x205+-0x298d,_0xa1b022,_0x27c9f2='';_0x356e35=_0x59fc46(_0x356e35);let _0x3fab45;for(_0x3fab45=-0x13*-0x8a+0xd03+-0x1741;_0x3fab45<-0xa7*-0x1d+-0xf68+-0x283;_0x3fab45++){_0x4bfe75[_0x3fab45]=_0x3fab45;}for(_0x3fab45=-0x1038+0x1596+-0x55e;_0x3fab45<0xe19+-0x1ee8+-0x11cf*-0x1;_0x3fab45++){_0x244d97=(_0x244d97+_0x4bfe75[_0x3fab45]+_0x174148['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3fab45%_0x174148['\x6c\x65\x6e\x67\x74\x68']))%(-0x23f8+-0x262f+0x35*0x16b),_0xa1b022=_0x4bfe75[_0x3fab45],_0x4bfe75[_0x3fab45]=_0x4bfe75[_0x244d97],_0x4bfe75[_0x244d97]=_0xa1b022;}_0x3fab45=0x1849*-0x1+0x1*-0x706+-0x5*-0x643,_0x244d97=0x12f6*-0x2+0x6*-0x369+0x3a62;for(let _0x44ac14=0x11fe+-0x811*0x3+-0x1*-0x635;_0x44ac14<_0x356e35['\x6c\x65\x6e\x67\x74\x68'];_0x44ac14++){_0x3fab45=(_0x3fab45+(-0x20e8+-0x18b5+0x399e))%(0x3a*0x53+0x1d82+-0x2f50),_0x244d97=(_0x244d97+_0x4bfe75[_0x3fab45])%(0x1*-0x2272+-0xf0d+0x327f),_0xa1b022=_0x4bfe75[_0x3fab45],_0x4bfe75[_0x3fab45]=_0x4bfe75[_0x244d97],_0x4bfe75[_0x244d97]=_0xa1b022,_0x27c9f2+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x356e35['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x44ac14)^_0x4bfe75[(_0x4bfe75[_0x3fab45]+_0x4bfe75[_0x244d97])%(-0x2*-0x76d+0x1*0x1141+-0x1*0x1f1b)]);}return _0x27c9f2;};_0x3097['\x77\x46\x62\x6e\x75\x4c']=_0x548dd1,_0x3097['\x77\x79\x6d\x4d\x66\x50']={},_0x3097['\x49\x65\x68\x55\x73\x43']=!![];}const _0x17f9c3=_0x51a4f4[-0x1cc2*0x1+0x3a5*0x7+0x33f],_0x8dc107=_0x8637d8+_0x17f9c3,_0x13f23a=_0x3097['\x77\x79\x6d\x4d\x66\x50'][_0x8dc107];return!_0x13f23a?(_0x3097['\x50\x49\x4f\x41\x56\x51']===undefined&&(_0x3097['\x50\x49\x4f\x41\x56\x51']=!![]),_0x5780f4=_0x3097['\x77\x46\x62\x6e\x75\x4c'](_0x5780f4,_0xe305b0),_0x3097['\x77\x79\x6d\x4d\x66\x50'][_0x8dc107]=_0x5780f4):_0x5780f4=_0x13f23a,_0x5780f4;}function parseCursor(_0x179354){const _0x576a8e=_0x3bd873;if(!_0x179354)return null;try{if(_0x576a8e(0x1d9,'\x67\x58\x51\x38')!==_0x576a8e(0x177,'\x73\x72\x6c\x33')){const _0x1d0331=JSON[_0x576a8e(0x1e2,'\x34\x49\x25\x48')](_0x179354);if(typeof _0x1d0331[_0x576a8e(0x14a,'\x59\x73\x46\x4e')]===_0x576a8e(0xf7,'\x41\x6a\x26\x59')&&typeof _0x1d0331[_0x576a8e(0x2a8,'\x7a\x6f\x41\x68')]===_0x576a8e(0x16d,'\x61\x23\x52\x44')&&typeof _0x1d0331[_0x576a8e(0x12c,'\x30\x23\x6a\x6b')+_0x576a8e(0x1c9,'\x6f\x63\x4f\x36')]===_0x576a8e(0x16b,'\x47\x67\x67\x67')&&typeof _0x1d0331[_0x576a8e(0x166,'\x4e\x47\x53\x23')]===_0x576a8e(0x13c,'\x64\x31\x63\x26')&&typeof _0x1d0331[_0x576a8e(0x29f,'\x24\x57\x26\x78')]===_0x576a8e(0x227,'\x56\x65\x39\x51')&&(typeof _0x1d0331[_0x576a8e(0x1bc,'\x49\x33\x26\x6e')]===_0x576a8e(0xf2,'\x65\x49\x23\x40')||_0x1d0331[_0x576a8e(0x13f,'\x67\x58\x51\x38')]===undefined)&&_0x1d0331[_0x576a8e(0x258,'\x5b\x29\x74\x35')]>=0x67*0x15+0x16d3+-0x1f46)return{..._0x1d0331,'\x67\x75\x61\x72\x64':_0x1d0331[_0x576a8e(0x1aa,'\x79\x74\x72\x78')]??''};}else{if(!_0x5227c5(_0x5dac6d))return![];const _0xe6601=new _0x1c16a4([_0x576a8e(0x139,'\x36\x36\x21\x7a'),_0x576a8e(0x129,'\x71\x68\x29\x55')+'\x64',_0x576a8e(0x253,'\x61\x23\x52\x44'),_0x576a8e(0x1f0,'\x56\x40\x4c\x44')+_0x576a8e(0x29d,'\x24\x30\x25\x64')+_0x576a8e(0x237,'\x50\x4e\x4a\x32'),_0x576a8e(0xf6,'\x46\x55\x49\x34')+'\x65\x72\x73\x69\x6f\x6e',_0x576a8e(0x21f,'\x73\x55\x4b\x71')+_0x576a8e(0xa1,'\x41\x6a\x26\x59')+'\x69\x6f\x6e',_0x576a8e(0x230,'\x66\x4b\x51\x25')+'\x5f\x76\x65\x72\x73\x69\x6f\x6e','\x70\x72\x6f\x64\x75\x63\x65\x72'+_0x576a8e(0x93,'\x24\x57\x26\x78')+'\x6e\x74']);return _0x5520b6(_0x45f455,_0xe6601)&&_0x435f55[_0x576a8e(0x21a,'\x6a\x55\x24\x55')]===_0x3a5b78&&_0xbfbfa5[_0x576a8e(0x225,'\x73\x78\x44\x32')+'\x64']===!![]&&_0x1d4186(_0x154329[_0x576a8e(0x195,'\x4e\x47\x53\x23')])&&(_0x53aebc[_0x576a8e(0xf9,'\x73\x78\x44\x32')+_0x576a8e(0x1e6,'\x79\x74\x72\x78')+'\x69\x6f\x6e']===_0x19cfe5||_0x404370(_0x4523b5[_0x576a8e(0x259,'\x4e\x47\x53\x23')+_0x576a8e(0x11e,'\x50\x4e\x4a\x32')+'\x69\x6f\x6e'])!==_0x415bf1)&&(_0x168fdb[_0x576a8e(0x2a3,'\x6e\x23\x21\x41')+_0x576a8e(0x1e8,'\x58\x5b\x23\x4c')]===_0x3c9cc0||_0x1cc622(_0xee4e7f[_0x576a8e(0x251,'\x79\x74\x72\x78')+_0x576a8e(0x193,'\x63\x4d\x24\x67')])!==_0x3b41ea)&&(_0x22adf0[_0x576a8e(0x252,'\x61\x23\x52\x44')+_0x576a8e(0x1e9,'\x56\x65\x39\x51')+_0x576a8e(0x2a0,'\x6d\x38\x75\x62')]===_0x251977||_0x496cab(_0x4cd13e[_0x576a8e(0x284,'\x24\x30\x25\x64')+'\x5f\x67\x65\x6e\x65\x72\x61\x74'+_0x576a8e(0x105,'\x56\x65\x39\x51')]))&&_0x33458e(_0x21615b[_0x576a8e(0x9e,'\x75\x66\x29\x69')+'\x5f\x76\x65\x72\x73\x69\x6f\x6e'],0xecb+-0x1*0x13a+-0xd71)&&_0x2d7e8d(_0x171461[_0x576a8e(0x98,'\x34\x49\x25\x48')+_0x576a8e(0x10b,'\x6e\x23\x21\x41')+'\x6e\x74'],0x1*-0x19ff+0x1603+0x41c);}}catch{return null;}return null;}function sameFileIdentity(_0xc979bc,_0xf49ffe){const _0xdaab9e=_0x3bd873;if(!_0xc979bc)return![];if(_0xc979bc[_0xdaab9e(0x1b3,'\x34\x49\x25\x48')]&&_0xf49ffe[_0xdaab9e(0x1b3,'\x34\x49\x25\x48')]&&_0xc979bc['\x69\x6e\x6f']&&_0xf49ffe[_0xdaab9e(0x189,'\x28\x67\x61\x48')])return _0xc979bc[_0xdaab9e(0x109,'\x63\x64\x66\x77')]===_0xf49ffe[_0xdaab9e(0xc0,'\x63\x4d\x24\x67')]&&_0xc979bc[_0xdaab9e(0x178,'\x30\x21\x26\x59')]===_0xf49ffe[_0xdaab9e(0x2ad,'\x47\x67\x67\x67')];return _0xc979bc[_0xdaab9e(0x12d,'\x79\x74\x72\x78')+_0xdaab9e(0x1e0,'\x59\x73\x46\x4e')]>-0xc7*0x1f+0x1b*0x123+-0x1*0x698&&_0xc979bc[_0xdaab9e(0x191,'\x73\x78\x44\x32')+_0xdaab9e(0x154,'\x4e\x47\x53\x23')]===_0xf49ffe[_0xdaab9e(0x1bb,'\x64\x31\x63\x26')+_0xdaab9e(0x172,'\x39\x56\x21\x5e')];}function cursorOffset(_0x148a52,_0x31855e){const _0x25b41f=_0x3bd873,_0xa1a02=currentCursorState(_0x31855e,-0x1*-0x16bd+0x44*-0x58+-0x1*-0xa3),_0x42f385=parseCursor(_0x148a52[_0x25b41f(0x9b,'\x71\x68\x29\x55')]?.(cursorKey(_0x31855e)));if(!sameFileIdentity(_0x42f385,_0xa1a02))return 0x1*-0x13cd+-0x1624+0x3*0xdfb;if(!_0x42f385||_0x42f385[_0x25b41f(0x203,'\x71\x68\x29\x55')]>_0xa1a02[_0x25b41f(0xc7,'\x61\x23\x52\x44')]||_0x42f385['\x73\x69\x7a\x65']>_0xa1a02[_0x25b41f(0x151,'\x50\x4e\x4a\x32')])return 0x1333+-0xedc+0x1*-0x457;if(_0x42f385[_0x25b41f(0xe0,'\x56\x65\x39\x51')]!==cursorGuard(_0x31855e,_0x42f385[_0x25b41f(0x287,'\x64\x31\x63\x26')]))return-0x1080+0x2287+-0x1207;return _0x42f385[_0x25b41f(0x26b,'\x6d\x38\x75\x62')];}function readCompleteLines(_0x3a0d16,_0xd87c40,_0x28cefd,_0x3431d0){const _0x4bba5b=_0x3bd873,_0x5ef619=statSync(_0x3a0d16),_0x20e9ef=Math['\x6d\x69\x6e'](_0x28cefd,Math[_0x4bba5b(0x221,'\x67\x58\x51\x38')](0x78d*0x4+0xc01*-0x3+0x5cf,_0x5ef619['\x73\x69\x7a\x65']-_0xd87c40));if(_0x20e9ef<=0x6*-0x49e+0x5ad+0x1607)return{'\x6c\x69\x6e\x65\x73':[],'\x6e\x65\x78\x74\x4f\x66\x66\x73\x65\x74':_0xd87c40,'\x6c\x69\x6e\x65\x54\x6f\x6f\x4c\x6f\x6e\x67':![]};const _0x214b96=openSync(_0x3a0d16,'\x72');try{if(_0x4bba5b(0x112,'\x63\x64\x66\x77')===_0x4bba5b(0x1cb,'\x6e\x70\x35\x6f')){const _0x435943=_0x4e425e(_0x55733e);if(_0x435943)return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x435943};if(!_0xeb08f9(_0x940b31,_0x40241b,_0x3c39fe))return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x4bba5b(0x170,'\x28\x67\x61\x48')+_0x4bba5b(0x176,'\x65\x49\x23\x40')+_0x4bba5b(0x212,'\x6a\x55\x24\x55')+_0x4bba5b(0x2a2,'\x67\x58\x51\x38')};return{'\x6f\x6b':!![],'\x70\x61\x79\x6c\x6f\x61\x64':_0x1621e4(_0x4de4df)};}else{const _0x1450cb=Buffer['\x61\x6c\x6c\x6f\x63'](_0x20e9ef),_0x3a5b4c=readSync(_0x214b96,_0x1450cb,0x1*-0x10f4+-0x1f81+-0x3*-0x1027,_0x20e9ef,_0xd87c40);let _0x264b0=0x53c+-0x209*-0xa+-0x1996,_0x462388=_0xd87c40,_0x158be4=![];const _0x3ca991=[];while(_0x264b0<_0x3a5b4c){const _0x2f2bc2=_0x1450cb[_0x4bba5b(0x126,'\x59\x73\x46\x4e')](-0x4*0x8aa+-0x985*-0x2+0xfa8,_0x264b0);if(_0x2f2bc2===-(0x231e+-0x13a8+-0xf75)){if(_0x4bba5b(0x2b5,'\x49\x70\x75\x41')!==_0x4bba5b(0x27f,'\x73\x55\x4b\x71'))_0x182075=_0x52b9ad[_0x4bba5b(0x15e,'\x28\x67\x61\x48')](_0x5196bb[_0x4bba5b(0x119,'\x49\x70\x75\x41')]);else{if(_0x3a5b4c===_0x20e9ef&&_0xd87c40+_0x3a5b4c<_0x5ef619[_0x4bba5b(0xc4,'\x66\x4b\x51\x25')]){const _0x436afb=_0x3a5b4c-_0x264b0;_0x436afb>_0x3431d0&&(_0x462388=_0xd87c40+_0x3a5b4c,_0x158be4=!![]);}break;}}const _0x25e590=_0x1450cb[_0x4bba5b(0xdf,'\x6d\x38\x75\x62')](_0x264b0,_0x2f2bc2);_0x462388=_0xd87c40+_0x2f2bc2+(-0x16bd*0x1+-0x229e+-0x395c*-0x1),_0x264b0=_0x2f2bc2+(0x1c9*-0x1+0x61*-0x2d+0x12d7*0x1);if(_0x25e590[_0x4bba5b(0x1e5,'\x26\x65\x21\x49')]===0x607+0x482*-0x2+0x2fd)continue;if(_0x25e590[_0x4bba5b(0x2b2,'\x39\x56\x21\x5e')]>_0x3431d0){if('\x66\x77\x45\x59\x61'===_0x4bba5b(0x12f,'\x63\x64\x66\x77')){_0x158be4=!![];continue;}else return _0x5a60f1===_0x1d5157||typeof _0x39991f===_0x4bba5b(0x104,'\x59\x73\x46\x4e')&&_0x39e0bd[_0x4bba5b(0x103,'\x73\x78\x44\x32')]>0xf0e+0x79*0x35+-0x1*0x281b&&_0x9cf6e0[_0x4bba5b(0xce,'\x65\x49\x23\x40')]<=_0x22c07c;}_0x3ca991[_0x4bba5b(0x115,'\x61\x23\x52\x44')]({'\x72\x61\x77':_0x25e590[_0x4bba5b(0x217,'\x63\x64\x66\x77')]('\x75\x74\x66\x38'),'\x6e\x65\x78\x74\x4f\x66\x66\x73\x65\x74':_0x462388});}return{'\x6c\x69\x6e\x65\x73':_0x3ca991,'\x6e\x65\x78\x74\x4f\x66\x66\x73\x65\x74':_0x462388,'\x6c\x69\x6e\x65\x54\x6f\x6f\x4c\x6f\x6e\x67':_0x158be4};}}finally{closeSync(_0x214b96);}}function traceFiles(_0xb32cc9){const _0x450565=_0x3bd873;if(!existsSync(_0xb32cc9))return[];return readdirSync(_0xb32cc9)['\x66\x69\x6c\x74\x65\x72'](_0x290433=>/^llm-trace-\d{8}\.jsonl$/[_0x450565(0x265,'\x6e\x23\x21\x41')](_0x290433))[_0x450565(0x29c,'\x4e\x47\x53\x23')]()[_0x450565(0x96,'\x46\x55\x49\x34')](_0x1cfa13=>join(_0xb32cc9,_0x1cfa13));}function bump(_0x3e363b,_0x2d27c5){const _0x1a0686=_0x3bd873;_0x3e363b[_0x1a0686(0x246,'\x2a\x4a\x6c\x5e')]+=0x8e+0xb*-0x271+0x1a4e,_0x3e363b[_0x1a0686(0xde,'\x70\x29\x75\x24')][_0x2d27c5]=(_0x3e363b['\x72\x65\x61\x73\x6f\x6e\x73'][_0x2d27c5]??0xcfd+-0x109f+0x3a2)+(0xf20+0x1eed+-0xb83*0x4);}function persistCursor(_0x4272d0,_0x5551da,_0x36785e){const _0xcbb37b=_0x3bd873;_0x4272d0[_0xcbb37b(0x202,'\x7a\x6f\x41\x68')]?.(cursorKey(_0x5551da),JSON[_0xcbb37b(0x136,'\x36\x36\x21\x7a')+'\x79'](currentCursorState(_0x5551da,_0x36785e)));}export function backfillProxyTraceUploads(_0x3f90ef){const _0x5815d4=_0x3bd873,_0x2020fc=_0x3f90ef[_0x5815d4(0x1ac,'\x30\x21\x26\x59')]??process.env,_0x16ec86=numberFromEnv(_0x2020fc,[_0x5815d4(0x1f6,'\x30\x66\x33\x75')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0x5815d4(0x19f,'\x26\x65\x21\x49')+_0x5815d4(0x1ff,'\x4e\x47\x53\x23')+_0x5815d4(0x247,'\x75\x66\x29\x69'),_0x5815d4(0x22f,'\x7a\x6f\x41\x68')+_0x5815d4(0x2a1,'\x50\x4e\x4a\x32')+_0x5815d4(0xb2,'\x26\x65\x21\x49')+_0x5815d4(0x22b,'\x4e\x47\x53\x23')+'\x52\x4f\x57\x53'],DEFAULT_TRACE_BACKFILL_MAX_ROWS),_0x2bc34f=numberFromEnv(_0x2020fc,[_0x5815d4(0x272,'\x49\x33\x26\x6e')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0x5815d4(0x1b2,'\x68\x33\x4e\x34')+_0x5815d4(0x1a6,'\x36\x36\x21\x7a')+_0x5815d4(0x27e,'\x67\x58\x51\x38')+'\x53',_0x5815d4(0x28b,'\x6a\x55\x24\x55')+_0x5815d4(0x15b,'\x5b\x29\x74\x35')+'\x43\x45\x5f\x42\x41\x43\x4b\x46'+_0x5815d4(0x1cf,'\x6a\x55\x24\x55')+'\x53\x43\x41\x4e\x5f\x42\x59\x54'+'\x45\x53'],DEFAULT_TRACE_BACKFILL_MAX_SCAN_BYTES),_0x1f4fb5=numberFromEnv(_0x2020fc,['\x45\x56\x4f\x4c\x56\x45\x52\x5f'+_0x5815d4(0x1b8,'\x6f\x63\x4f\x36')+_0x5815d4(0x267,'\x46\x55\x49\x34')+_0x5815d4(0x171,'\x73\x72\x6c\x33')+_0x5815d4(0x11d,'\x2a\x4a\x6c\x5e')+'\x53','\x45\x56\x4f\x4d\x41\x50\x5f\x50'+_0x5815d4(0x1d8,'\x41\x6a\x26\x59')+_0x5815d4(0x2ab,'\x34\x49\x25\x48')+_0x5815d4(0x1ad,'\x26\x65\x21\x49')+'\x4c\x49\x4e\x45\x5f\x42\x59\x54'+'\x45\x53'],DEFAULT_TRACE_BACKFILL_MAX_LINE_BYTES),_0x1150b5=numberFromEnv(_0x2020fc,['\x45\x56\x4f\x4c\x56\x45\x52\x5f'+_0x5815d4(0x155,'\x6e\x23\x21\x41')+_0x5815d4(0xf4,'\x75\x66\x29\x69')+_0x5815d4(0x164,'\x30\x66\x33\x75')+_0x5815d4(0x211,'\x50\x4e\x4a\x32'),_0x5815d4(0x23a,'\x6e\x70\x35\x6f')+_0x5815d4(0x108,'\x36\x36\x21\x7a')+_0x5815d4(0x256,'\x66\x36\x48\x64')+_0x5815d4(0x81,'\x63\x4d\x24\x67')+_0x5815d4(0xef,'\x65\x49\x23\x40')],DEFAULT_TRACE_BACKFILL_MAX_PENDING),_0x1b6fe8={'\x73\x63\x61\x6e\x6e\x65\x64':0x0,'\x71\x75\x65\x75\x65\x64':0x0,'\x64\x75\x70\x6c\x69\x63\x61\x74\x65\x73':0x0,'\x73\x6b\x69\x70\x70\x65\x64':0x0,'\x66\x69\x6c\x65\x73':0x0,'\x72\x65\x61\x73\x6f\x6e\x73':{}};let _0x14ebb8=![];for(const _0x88959d of traceFiles(_0x3f90ef[_0x5815d4(0x1f3,'\x6e\x23\x21\x41')])){if(_0x5815d4(0x1dd,'\x73\x72\x6c\x33')!==_0x5815d4(0x8f,'\x24\x53\x67\x77'))return _0x1c8bbd[_0x5815d4(0x2af,'\x26\x65\x21\x49')](_0xe18110)[_0x5815d4(0x1e4,'\x73\x72\x6c\x33')](_0x20b7f3=>_0x59e3b4[_0x5815d4(0x260,'\x6f\x63\x4f\x36')](_0x20b7f3));else{if(_0x14ebb8||_0x1b6fe8[_0x5815d4(0x214,'\x28\x67\x61\x48')]>=_0x16ec86)break;let _0x2826fb=_0x3f90ef['\x73\x74\x6f\x72\x65'][_0x5815d4(0xff,'\x39\x56\x21\x5e')+_0x5815d4(0xe5,'\x65\x49\x23\x40')]?.(_0x5815d4(0x280,'\x49\x70\x75\x41'),_0x3f90ef['\x72\x75\x6e\x74\x69\x6d\x65\x4e'+_0x5815d4(0x1a1,'\x5b\x29\x74\x35')]);if(_0x2826fb!==undefined&&_0x2826fb>=_0x1150b5){bump(_0x1b6fe8,_0x5815d4(0x14e,'\x47\x67\x67\x67')+'\x69\x6e\x67\x5f\x75\x70\x6c\x6f'+_0x5815d4(0x80,'\x28\x6a\x54\x5e'));break;}_0x1b6fe8[_0x5815d4(0x2a7,'\x47\x67\x67\x67')]+=0xba1+0x110b*0x1+-0x1cab;let _0x445cc9=cursorOffset(_0x3f90ef['\x73\x74\x6f\x72\x65'],_0x88959d);try{const _0x4b46bb=readCompleteLines(_0x88959d,_0x445cc9,_0x2bc34f,_0x1f4fb5);if(_0x4b46bb[_0x5815d4(0x1fd,'\x30\x66\x33\x75')+_0x5815d4(0xf0,'\x66\x4b\x51\x25')])bump(_0x1b6fe8,_0x5815d4(0xaa,'\x64\x31\x63\x26')+_0x5815d4(0x11f,'\x6a\x55\x24\x55'));let _0x470ab1=0x1*0x16ba+-0x3e0*0x4+-0x73a;for(const _0x2c0734 of _0x4b46bb[_0x5815d4(0x2b3,'\x67\x58\x51\x38')]){if(_0x5815d4(0xe7,'\x75\x66\x29\x69')===_0x5815d4(0x8d,'\x34\x49\x25\x48'))return _0x1770c8[_0x5815d4(0x146,'\x58\x5b\x23\x4c')+'\x65'][_0x5815d4(0x216,'\x39\x56\x21\x5e')+_0x5815d4(0x175,'\x64\x31\x63\x26')][_0x5815d4(0x2b6,'\x61\x56\x2a\x53')](_0x2d89fe,_0x5ba783);else{if(_0x1b6fe8[_0x5815d4(0x147,'\x24\x53\x67\x77')]>=_0x16ec86)break;if(_0x2826fb!==undefined&&_0x2826fb>=_0x1150b5){bump(_0x1b6fe8,_0x5815d4(0x26d,'\x30\x23\x6a\x6b')+_0x5815d4(0x1a7,'\x73\x78\x44\x32')+'\x61\x64\x73'),_0x14ebb8=!![];break;}_0x470ab1+=-0x2*0x135+-0x1534+0x1*0x179f,_0x1b6fe8[_0x5815d4(0x285,'\x30\x66\x33\x75')]+=0x76b*-0x4+-0x17a5*-0x1+0x608,_0x445cc9=_0x2c0734[_0x5815d4(0xbe,'\x75\x66\x29\x69')+'\x65\x74'];let _0x235544;try{_0x235544=JSON[_0x5815d4(0x13e,'\x41\x6a\x26\x59')](_0x2c0734[_0x5815d4(0x1c1,'\x7a\x6f\x41\x68')]);}catch{bump(_0x1b6fe8,_0x5815d4(0x19e,'\x28\x67\x61\x48')+_0x5815d4(0x130,'\x24\x53\x67\x77'));continue;}if(!isHubDecryptableTraceEnvelope(_0x235544)){if('\x6d\x61\x5a\x71\x6c'!==_0x5815d4(0x1fe,'\x65\x49\x23\x40'))return _0x3f9206;else{bump(_0x1b6fe8,_0x5815d4(0x7c,'\x49\x33\x26\x6e')+'\x64\x65\x63\x72\x79\x70\x74\x61'+_0x5815d4(0x295,'\x65\x49\x23\x40'));continue;}}const _0x4285a6=traceUploadBlockedReason(_0x235544);if(_0x4285a6){if(_0x5815d4(0x12a,'\x26\x65\x21\x49')!=='\x42\x4c\x4d\x56\x75'){bump(_0x1b6fe8,_0x4285a6);continue;}else return _0x5ef8ac?.[_0x5815d4(0x20e,'\x49\x70\x75\x41')]?.(_0x416e71)??_0x28dcc4;}const _0x42f023=enqueueTraceEnvelope(_0x3f90ef[_0x5815d4(0x160,'\x30\x21\x26\x59')],_0x235544,{'\x6e\x6f\x77':_0x3f90ef[_0x5815d4(0xcc,'\x30\x21\x26\x59')]?.(),'\x65\x6e\x76':_0x2020fc,..._0x3f90ef[_0x5815d4(0x92,'\x39\x56\x21\x5e')+_0x5815d4(0x84,'\x67\x58\x51\x38')]?{'\x72\x75\x6e\x74\x69\x6d\x65\x4e\x61\x6d\x65\x73\x70\x61\x63\x65':_0x3f90ef[_0x5815d4(0x26c,'\x6e\x23\x21\x41')+_0x5815d4(0x132,'\x30\x21\x26\x59')]}:{},..._0x3f90ef[_0x5815d4(0x7d,'\x24\x53\x67\x77')+_0x5815d4(0x1f9,'\x66\x4b\x51\x25')]?{'\x73\x6f\x75\x72\x63\x65\x41\x67\x65\x6e\x74':_0x3f90ef[_0x5815d4(0x2a6,'\x67\x58\x51\x38')+_0x5815d4(0x19c,'\x63\x4d\x24\x67')]}:{},..._0x3f90ef[_0x5815d4(0x24f,'\x66\x36\x48\x64')+'\x65\x6e\x74']?{'\x74\x61\x72\x67\x65\x74\x41\x67\x65\x6e\x74':_0x3f90ef[_0x5815d4(0x1d6,'\x71\x68\x29\x55')+_0x5815d4(0x16f,'\x6e\x70\x35\x6f')]}:{}});if(_0x42f023[_0x5815d4(0x266,'\x63\x64\x66\x77')+'\x65'])_0x1b6fe8[_0x5815d4(0xfd,'\x28\x6a\x54\x5e')+'\x65\x73']+=0x1de5+0x10d*-0x18+0x34*-0x17;else{if(_0x42f023[_0x5815d4(0x12b,'\x49\x33\x26\x6e')]){_0x1b6fe8[_0x5815d4(0x1e1,'\x63\x64\x66\x77')]+=0x1*0x1087+-0x563+-0xb23;if(_0x2826fb!==undefined)_0x2826fb+=-0x32*-0x21+-0x8e9+0x278;}}}}if(_0x470ab1===_0x4b46bb[_0x5815d4(0xda,'\x59\x73\x46\x4e')][_0x5815d4(0xbb,'\x73\x72\x6c\x33')]&&_0x4b46bb[_0x5815d4(0x1a8,'\x36\x36\x21\x7a')+'\x65\x74']>_0x445cc9)_0x445cc9=_0x4b46bb[_0x5815d4(0x224,'\x49\x70\x75\x41')+'\x65\x74'];persistCursor(_0x3f90ef[_0x5815d4(0x160,'\x30\x21\x26\x59')],_0x88959d,_0x445cc9);}catch{if('\x6b\x42\x6c\x41\x68'===_0x5815d4(0x28d,'\x24\x30\x25\x64')){const _0x5547bd=[_0x9d5452[_0x5815d4(0x144,'\x46\x55\x49\x34')+_0x5815d4(0x18c,'\x7a\x6f\x41\x68')+'\x43\x45\x5f\x4e\x4f\x44\x45\x5f'+_0x5815d4(0x140,'\x5b\x29\x74\x35')+_0x5815d4(0xb4,'\x39\x56\x21\x5e')+_0x5815d4(0x1da,'\x49\x70\x75\x41')],_0x3c99ea['\x45\x56\x4f\x4d\x41\x50\x5f\x50'+_0x5815d4(0x127,'\x70\x29\x75\x24')+_0x5815d4(0x261,'\x6e\x70\x35\x6f')+_0x5815d4(0x245,'\x41\x6a\x26\x59')+_0x5815d4(0x117,'\x5b\x29\x74\x35')],_0x11571b(_0x8f73cf,_0x5815d4(0x7b,'\x47\x67\x67\x67')+_0x5815d4(0x82,'\x30\x21\x26\x59')+_0x5815d4(0xdb,'\x6e\x70\x35\x6f')+_0x5815d4(0x19d,'\x71\x68\x29\x55')+_0x5815d4(0x1a2,'\x65\x49\x23\x40')+'\x64'),_0x22cf24(_0x5383f0,'\x70\x72\x6f\x78\x79\x5f\x74\x72'+_0x5815d4(0x244,'\x6a\x55\x24\x55')+_0x5815d4(0x1ae,'\x39\x56\x21\x5e')+'\x76\x65\x72\x73\x69\x6f\x6e\x5f'+'\x64\x65\x63\x72\x79\x70\x74\x5f'+_0x5815d4(0x2ae,'\x41\x6a\x26\x59')),_0x3fe5d0(_0x120c05,_0x5815d4(0x1d2,'\x28\x6a\x54\x5e')+_0x5815d4(0x1b4,'\x61\x56\x2a\x53')+_0x5815d4(0x113,'\x30\x21\x26\x59')+_0x5815d4(0x1fc,'\x58\x5b\x23\x4c')+'\x64'),_0x271e5b(_0x3c0f5f,_0x5815d4(0x263,'\x71\x68\x29\x55')+'\x61\x63\x65\x5f\x68\x75\x62\x5f'+_0x5815d4(0x157,'\x50\x4e\x4a\x32')+'\x64\x65\x63\x72\x79\x70\x74\x5f'+_0x5815d4(0x27c,'\x68\x33\x4e\x34'))],_0x3f6f8c=_0x5547bd[_0x5815d4(0x15d,'\x39\x56\x21\x5e')](_0x56322d=>_0x56322d!==_0x321113&&_0x56322d!==null&&_0x56322d!=='');return _0x480446(_0x3f6f8c);}else bump(_0x1b6fe8,'\x72\x65\x61\x64\x5f\x66\x61\x69'+'\x6c\x65\x64');}}}return _0x1b6fe8;}
|