@evomap/evolver 1.87.3 → 1.88.0

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.
Files changed (65) hide show
  1. package/index.js +848 -33
  2. package/package.json +1 -1
  3. package/scripts/build_binaries.js +11 -1
  4. package/src/adapters/hookAdapter.js +3 -1
  5. package/src/adapters/scripts/_runtimePaths.js +202 -1
  6. package/src/adapters/scripts/evolver-session-end.js +160 -98
  7. package/src/adapters/scripts/evolver-session-start.js +227 -43
  8. package/src/config.js +43 -8
  9. package/src/evolve/guards.js +1 -1
  10. package/src/evolve/pipeline/collect.js +1 -1
  11. package/src/evolve/pipeline/dispatch.js +1 -1
  12. package/src/evolve/pipeline/enrich.js +1 -1
  13. package/src/evolve/pipeline/hub.js +1 -1
  14. package/src/evolve/pipeline/select.js +1 -1
  15. package/src/evolve/pipeline/signals.js +1 -1
  16. package/src/evolve/utils.js +1 -1
  17. package/src/evolve.js +1 -1
  18. package/src/forceUpdate.js +42 -21
  19. package/src/gep/a2aProtocol.js +1 -1
  20. package/src/gep/assetStore.js +40 -0
  21. package/src/gep/candidateEval.js +1 -1
  22. package/src/gep/candidates.js +1 -1
  23. package/src/gep/contentHash.js +1 -1
  24. package/src/gep/crypto.js +1 -1
  25. package/src/gep/curriculum.js +1 -1
  26. package/src/gep/deviceId.js +1 -1
  27. package/src/gep/envFingerprint.js +1 -1
  28. package/src/gep/epigenetics.js +1 -1
  29. package/src/gep/explore.js +1 -1
  30. package/src/gep/featureFlags.js +4 -0
  31. package/src/gep/gitOps.js +7 -2
  32. package/src/gep/hash.js +1 -1
  33. package/src/gep/hubFetch.js +1 -1
  34. package/src/gep/hubReview.js +1 -1
  35. package/src/gep/hubSearch.js +1 -1
  36. package/src/gep/hubVerify.js +1 -1
  37. package/src/gep/idleScheduler.js +233 -6
  38. package/src/gep/learningSignals.js +1 -1
  39. package/src/gep/mailboxTransport.js +34 -0
  40. package/src/gep/memoryGraph.js +1 -1
  41. package/src/gep/memoryGraphAdapter.js +1 -1
  42. package/src/gep/mutation.js +1 -1
  43. package/src/gep/narrativeMemory.js +1 -1
  44. package/src/gep/openPRRegistry.js +1 -1
  45. package/src/gep/paths.js +16 -2
  46. package/src/gep/personality.js +1 -1
  47. package/src/gep/policyCheck.js +1 -1
  48. package/src/gep/prompt.js +1 -1
  49. package/src/gep/recallVerifier.js +1 -1
  50. package/src/gep/reflection.js +1 -1
  51. package/src/gep/selector.js +1 -1
  52. package/src/gep/skillDistiller.js +1 -1
  53. package/src/gep/solidify.js +1 -1
  54. package/src/gep/strategy.js +1 -1
  55. package/src/gep/validator/index.js +46 -1
  56. package/src/gep/validator/sandboxExecutor.js +10 -1
  57. package/src/gep/validator/stakeBootstrap.js +3 -0
  58. package/src/gep/workspaceKeychain.js +1 -1
  59. package/src/ops/lifecycle.js +79 -10
  60. package/src/ops/skills_monitor.js +2 -1
  61. package/src/proxy/index.js +7 -1
  62. package/src/proxy/lifecycle/manager.js +77 -4
  63. package/src/proxy/mailbox/store.js +52 -2
  64. package/src/proxy/server/settings.js +16 -2
  65. package/src/proxy/sync/inbound.js +14 -1
@@ -4,8 +4,32 @@
4
4
  // evolution intensity levels. Monitors system idle time on supported platforms.
5
5
  // When idle, the evolver can run more aggressive operations (distillation,
6
6
  // reflection); when busy, it only collects signals.
7
+ //
8
+ // Headless / no-X11 Linux notes
9
+ // --------------------------------
10
+ // On headless Linux servers (no X11 display), `xprintidle` is unavailable and
11
+ // will always fail, causing getSystemIdleSeconds() to return -1. This is also
12
+ // true inside Docker containers, SSH-only servers, and most CI runners.
13
+ //
14
+ // When idleSeconds === -1, determineIntensity() falls back to 'normal' by
15
+ // default. On a truly headless server there is no interactive user, so the
16
+ // machine is effectively always idle — 'normal' may be too conservative for a
17
+ // dedicated evolver host yet too aggressive for a shared CI runner.
18
+ //
19
+ // Override options (in order of precedence):
20
+ // EVOLVER_INTENSITY=aggressive force a fixed intensity level regardless of
21
+ // EVOLVER_INTENSITY=deep idle detection. Valid values: signal_only,
22
+ // EVOLVER_INTENSITY=normal normal, aggressive, deep.
23
+ // EVOLVER_INTENSITY=signal_only
24
+ //
25
+ // Alternatives to xprintidle on headless systems:
26
+ // - Set EVOLVER_INTENSITY to the desired level in the service unit / crontab.
27
+ // - Use `loginctl show-session` to detect attached TTY sessions and set the
28
+ // env var conditionally in a wrapper script.
29
+ // - Install `xprintidle` and export DISPLAY=:0 only if a virtual framebuffer
30
+ // (Xvfb) is running — not recommended for pure server deployments.
7
31
 
8
- const { execSync } = require('child_process');
32
+ const { execSync, execFileSync } = require('child_process');
9
33
  // 10 MB — prevents RangeError on large child process output (e.g. git log/diff
10
34
  // on large repos). See GHSA reports / issue #451.
11
35
  const MAX_EXEC_BUFFER = 10 * 1024 * 1024;
@@ -17,7 +41,182 @@ const { getEvolutionDir } = require('./paths');
17
41
  const IDLE_THRESHOLD_SECONDS = parseInt(process.env.OMLS_IDLE_THRESHOLD || '300', 10) || 300;
18
42
  const DEEP_IDLE_THRESHOLD_SECONDS = parseInt(process.env.OMLS_DEEP_IDLE_THRESHOLD || '1800', 10) || 1800;
19
43
 
44
+ // EVOLVER_INTENSITY: when set, bypasses idle detection entirely and pins the
45
+ // scheduler to this intensity level. Useful on headless servers where
46
+ // xprintidle is unavailable and the machine is always effectively idle.
47
+ // Accepted values (case-insensitive): signal_only | normal | aggressive | deep.
48
+ const VALID_INTENSITIES = new Set(['signal_only', 'normal', 'aggressive', 'deep']);
49
+ const _forcedIntensity = (function () {
50
+ const raw = (process.env.EVOLVER_INTENSITY || '').trim().toLowerCase();
51
+ if (raw && VALID_INTENSITIES.has(raw)) return raw;
52
+ if (raw) {
53
+ // Warn once at startup rather than silently ignoring a typo.
54
+ console.warn(
55
+ '[idleScheduler] EVOLVER_INTENSITY="' + raw + '" is not a recognised value. ' +
56
+ 'Valid values: signal_only, normal, aggressive, deep. Falling back to idle detection.'
57
+ );
58
+ }
59
+ return null;
60
+ }());
61
+
62
+ // In-process cache to avoid spawning `ioreg` (darwin) / `xprintidle` (linux)
63
+ // / a powershell child (win32) on EVERY evolve cycle. Each call has a
64
+ // hard timeout (5-10s) but in practice ioreg takes ~50-200ms and
65
+ // powershell startup ~500-800ms; doing that synchronously on the main
66
+ // thread once per cycle stacks 1-2s of blocking time per loop iteration
67
+ // onto whatever other sync IO the cycle did (git, gh, npm view). The 2s
68
+ // TTL means we still re-sample frequently enough to detect a user
69
+ // becoming active mid-cycle, but we are not paying the spawn cost in a
70
+ // tight loop. The cache is intentionally per-process (no fs writes): a
71
+ // daemon and an ad-hoc CLI invocation pay independent costs.
72
+ let _idleCache = { at: 0, value: -1 };
73
+ const _IDLE_CACHE_TTL_MS = 2000;
74
+ function _getCachedIdleSeconds(compute) {
75
+ const now = Date.now();
76
+ if (now - _idleCache.at < _IDLE_CACHE_TTL_MS) return _idleCache.value;
77
+ const v = compute();
78
+ _idleCache = { at: now, value: v };
79
+ return v;
80
+ }
81
+
82
+ // Linux idle detection — overridable for tests via __test.setExec() /
83
+ // __test.setExecFile(). Two helpers because of a security distinction:
84
+ // * _execImpl -> execSync (string form, parsed by /bin/sh -c). ONLY use
85
+ // for fully static commands with no dynamic input.
86
+ // * _execFileImpl -> execFileSync (argv form, NEVER touches the shell).
87
+ // REQUIRED for any command that mixes in an env var or
88
+ // other dynamic value, to eliminate shell-injection at
89
+ // the source. See issue #168 / PR #167 review.
90
+ function _defaultExec(cmd, timeoutMs) {
91
+ try {
92
+ return execSync(cmd, {
93
+ timeout: timeoutMs,
94
+ encoding: 'utf8',
95
+ maxBuffer: MAX_EXEC_BUFFER,
96
+ stdio: ['ignore', 'pipe', 'ignore'],
97
+ }).trim();
98
+ } catch (e) {
99
+ return null;
100
+ }
101
+ }
102
+ function _defaultExecFile(file, args, timeoutMs) {
103
+ try {
104
+ return execFileSync(file, args, {
105
+ timeout: timeoutMs,
106
+ encoding: 'utf8',
107
+ maxBuffer: MAX_EXEC_BUFFER,
108
+ stdio: ['ignore', 'pipe', 'ignore'],
109
+ }).trim();
110
+ } catch (e) {
111
+ return null;
112
+ }
113
+ }
114
+ let _execImpl = _defaultExec;
115
+ let _execFileImpl = _defaultExecFile;
116
+
117
+ function _tryXprintidle() {
118
+ // X11-only. Returns idle time in ms. Silently fails on Wayland sessions
119
+ // (no X server) or on systems without the xprintidle package installed.
120
+ const out = _execImpl('xprintidle', 5000);
121
+ if (out === null) return -1;
122
+ const ms = parseInt(out, 10);
123
+ if (!Number.isFinite(ms) || ms < 0) return -1;
124
+ return Math.floor(ms / 1000);
125
+ }
126
+
127
+ function _tryGnomeMutter() {
128
+ // GNOME exposes the compositor's idle time via the session D-Bus, on BOTH
129
+ // X11 and Wayland sessions. Returns ms. This is the primary Wayland path
130
+ // since GNOME is the default desktop on Ubuntu / Fedora / RHEL desktop
131
+ // workloads. Requires a running user session bus (will fail under sudo /
132
+ // cron / TTY with no session).
133
+ const out = _execImpl(
134
+ 'gdbus call --session --dest org.gnome.Mutter.IdleMonitor ' +
135
+ '--object-path /org/gnome/Mutter/IdleMonitor/Core ' +
136
+ '--method org.gnome.Mutter.IdleMonitor.GetIdletime',
137
+ 5000,
138
+ );
139
+ if (out === null) return -1;
140
+ // gdbus output format: "(uint64 12345,)"
141
+ const m = out.match(/uint64\s+(\d+)/);
142
+ if (!m) return -1;
143
+ const ms = parseInt(m[1], 10);
144
+ if (!Number.isFinite(ms) || ms < 0) return -1;
145
+ return Math.floor(ms / 1000);
146
+ }
147
+
148
+ function _tryLoginctlIdleHint() {
149
+ // systemd-logind exposes IdleHint (bool) + IdleSinceHint (usec epoch).
150
+ // Universal fallback for any modern systemd Linux regardless of X11/
151
+ // Wayland/desktop environment. Less precise than xprintidle / Mutter —
152
+ // when IdleHint=no we can only report 0 (active). Requires XDG_SESSION_ID
153
+ // to be set, which it is for any logind-managed login (graphical or TTY).
154
+ //
155
+ // SECURITY (issue #168): XDG_SESSION_ID is read from the process
156
+ // environment, so it must NEVER be concatenated into a shell command.
157
+ // We use _execFileImpl (argv form, no /bin/sh) AND additionally enforce
158
+ // an ASCII-digit allowlist before forking — defense in depth, since
159
+ // logind session ids are documented to be monotonic uints. The
160
+ // `[0-9]+` (not `\d+`) form is deliberate: `\d` in JS regex matches
161
+ // Unicode digits, which is broader than what loginctl accepts.
162
+ const sessionId = process.env.XDG_SESSION_ID;
163
+ if (!sessionId) return -1;
164
+ if (!/^[0-9]+$/.test(sessionId)) return -1;
165
+ const out = _execFileImpl(
166
+ 'loginctl',
167
+ ['show-session', sessionId, '-p', 'IdleHint', '-p', 'IdleSinceHint'],
168
+ 5000,
169
+ );
170
+ if (out === null) return -1;
171
+ const hintMatch = out.match(/IdleHint=(yes|no)/);
172
+ const sinceMatch = out.match(/IdleSinceHint=(\d+)/);
173
+ if (!hintMatch) return -1;
174
+ if (hintMatch[1] === 'no') return 0;
175
+ if (!sinceMatch) return -1;
176
+ const sinceUsec = parseInt(sinceMatch[1], 10);
177
+ if (!Number.isFinite(sinceUsec) || sinceUsec <= 0) return -1;
178
+ const nowUsec = Date.now() * 1000;
179
+ const idleSec = Math.floor((nowUsec - sinceUsec) / 1_000_000);
180
+ return idleSec >= 0 ? idleSec : -1;
181
+ }
182
+
183
+ const LINUX_METHODS = [
184
+ ['xprintidle', _tryXprintidle],
185
+ ['gnome-mutter', _tryGnomeMutter],
186
+ ['loginctl', _tryLoginctlIdleHint],
187
+ ];
188
+
189
+ // Remember which method worked last so we don't fork 3 subprocesses every
190
+ // scheduling tick. A method that succeeds once almost always keeps working
191
+ // for the lifetime of the session.
192
+ let _cachedLinuxMethod = null;
193
+
194
+ function _getLinuxIdleSeconds() {
195
+ if (_cachedLinuxMethod) {
196
+ const entry = LINUX_METHODS.find((m) => m[0] === _cachedLinuxMethod);
197
+ if (entry) {
198
+ const s = entry[1]();
199
+ if (s >= 0) return s;
200
+ // Cached method stopped working (e.g. session type changed across a
201
+ // logout/login). Fall through to re-discover.
202
+ _cachedLinuxMethod = null;
203
+ }
204
+ }
205
+ for (const [name, fn] of LINUX_METHODS) {
206
+ const s = fn();
207
+ if (s >= 0) {
208
+ _cachedLinuxMethod = name;
209
+ return s;
210
+ }
211
+ }
212
+ return -1;
213
+ }
214
+
20
215
  function getSystemIdleSeconds() {
216
+ return _getCachedIdleSeconds(_getSystemIdleSecondsUncached);
217
+ }
218
+
219
+ function _getSystemIdleSecondsUncached() {
21
220
  const platform = process.platform;
22
221
  try {
23
222
  if (platform === 'win32') {
@@ -51,11 +250,13 @@ function getSystemIdleSeconds() {
51
250
  return Math.floor(parseInt(match[1], 10) / 1000000000);
52
251
  }
53
252
  } else if (platform === 'linux') {
54
- try {
55
- const result = execSync('xprintidle 2>/dev/null || echo -1', { timeout: 5000, encoding: 'utf8', maxBuffer: MAX_EXEC_BUFFER }).trim();
56
- const ms = parseInt(result, 10);
57
- if (Number.isFinite(ms) && ms >= 0) return Math.floor(ms / 1000);
58
- } catch (e) {}
253
+ // Multi-tier detection. Pre-fix this was xprintidle-only, which fails
254
+ // silently on Wayland sessions (default on modern Ubuntu / Fedora /
255
+ // GNOME 40+ / KDE 6+) — getSystemIdleSeconds() returned -1 forever,
256
+ // determineIntensity(-1) returned 'normal', and the idle scheduler
257
+ // never triggered aggressive/deep mode on Wayland boxes.
258
+ const linuxIdle = _getLinuxIdleSeconds();
259
+ if (linuxIdle >= 0) return linuxIdle;
59
260
  }
60
261
  } catch (e) {}
61
262
  return -1;
@@ -66,7 +267,17 @@ function getSystemIdleSeconds() {
66
267
  // 'normal' - standard evolution cycle
67
268
  // 'aggressive' - run distillation, reflection, deeper analysis
68
269
  // 'deep' - extended operations (future: RL, fine-tuning triggers)
270
+ //
271
+ // idleSeconds === -1 means idle detection is unavailable (e.g. headless Linux
272
+ // with no X11/xprintidle). The default fallback is 'normal'. To override this
273
+ // on a server set EVOLVER_INTENSITY in the environment (see top-of-file docs).
69
274
  function determineIntensity(idleSeconds) {
275
+ // Environment override takes precedence over any measured or inferred value.
276
+ if (_forcedIntensity) return _forcedIntensity;
277
+
278
+ // idleSeconds < 0: idle detection unavailable (headless / unsupported env).
279
+ // Default to 'normal' so a shared CI runner is not inadvertently hammered.
280
+ // On a dedicated evolver server, set EVOLVER_INTENSITY=aggressive instead.
70
281
  if (idleSeconds < 0) return 'normal';
71
282
  if (idleSeconds >= DEEP_IDLE_THRESHOLD_SECONDS) return 'deep';
72
283
  if (idleSeconds >= IDLE_THRESHOLD_SECONDS) return 'aggressive';
@@ -165,4 +376,20 @@ module.exports = {
165
376
  writeScheduleState: writeScheduleState,
166
377
  IDLE_THRESHOLD_SECONDS: IDLE_THRESHOLD_SECONDS,
167
378
  DEEP_IDLE_THRESHOLD_SECONDS: DEEP_IDLE_THRESHOLD_SECONDS,
379
+ // Exposed for inspection / testing; null means no override is active.
380
+ _forcedIntensity: _forcedIntensity,
381
+ // Test-only surface for the Linux multi-tier idle detection. Lets tests
382
+ // inject a fake exec implementation so we can verify the fallback chain
383
+ // (xprintidle -> gnome-mutter -> loginctl) and the cached-method fast path
384
+ // without depending on a real X server / D-Bus / systemd on the test box.
385
+ __test: {
386
+ setExec: function (fn) { _execImpl = fn || _defaultExec; },
387
+ setExecFile: function (fn) { _execFileImpl = fn || _defaultExecFile; },
388
+ resetLinuxCache: function () { _cachedLinuxMethod = null; },
389
+ getLinuxIdleSeconds: _getLinuxIdleSeconds,
390
+ tryXprintidle: _tryXprintidle,
391
+ tryGnomeMutter: _tryGnomeMutter,
392
+ tryLoginctlIdleHint: _tryLoginctlIdleHint,
393
+ getCachedMethod: function () { return _cachedLinuxMethod; },
394
+ },
168
395
  };
@@ -1 +1 @@
1
- const _0x13df9=_0x56d1;(function(_0xf24e38,_0x1d272c){const _0x20a831=_0x56d1,_0x43430b=_0xf24e38();while(!![]){try{const _0x4451ba=-parseInt(_0x20a831(0x1de,'\x51\x34\x31\x24'))/(0x8d*-0x2a+-0x13*0x119+0x1*0x2bfe)+parseInt(_0x20a831(0x21a,'\x51\x5b\x72\x58'))/(0x4*-0x8bf+-0x34*-0x25+-0x1*-0x1b7a)+-parseInt(_0x20a831(0x1b5,'\x65\x74\x4d\x36'))/(-0x1*0x463+0x234e+-0xb8*0x2b)*(parseInt(_0x20a831(0x230,'\x45\x24\x5e\x56'))/(0xe4c+-0x24b6*-0x1+-0x32fe))+-parseInt(_0x20a831(0x241,'\x31\x79\x21\x32'))/(-0x1*-0x1e7e+0x10*0xec+-0x2d39)*(parseInt(_0x20a831(0x23d,'\x62\x5e\x43\x79'))/(0x3a9*0x1+0xf62+-0x1305))+parseInt(_0x20a831(0x1bd,'\x5a\x25\x69\x58'))/(0xc46*0x1+-0x110c+0x4cd*0x1)*(-parseInt(_0x20a831(0x187,'\x35\x57\x29\x65'))/(0x3c+0x471+-0x4a5))+-parseInt(_0x20a831(0x237,'\x5a\x25\x69\x58'))/(-0x26*-0x3f+0x20ff+-0x2a50)*(parseInt(_0x20a831(0x217,'\x4f\x62\x37\x5a'))/(0x235+-0x131*0x7+0x62c))+parseInt(_0x20a831(0x220,'\x66\x42\x58\x5e'))/(0x1b57+-0x5e7*0x3+-0x997);if(_0x4451ba===_0x1d272c)break;else _0x43430b['push'](_0x43430b['shift']());}catch(_0x43144b){_0x43430b['push'](_0x43430b['shift']());}}}(_0x2d24,-0x1078f8+0x879e9+0x1048af));const _0x491b99=(function(){const _0xfd2693=_0x56d1,_0x5c694c={'\x59\x44\x41\x64\x45':function(_0x4319d2,_0x63cfc6){return _0x4319d2===_0x63cfc6;},'\x75\x46\x6e\x57\x72':_0xfd2693(0x182,'\x76\x70\x6f\x57'),'\x44\x78\x46\x58\x5a':function(_0x14b779,_0x5b8707,_0xfb27c2){return _0x14b779(_0x5b8707,_0xfb27c2);},'\x56\x69\x47\x63\x54':_0xfd2693(0x1ed,'\x31\x44\x61\x54')+_0xfd2693(0x244,'\x6b\x47\x65\x50')+_0xfd2693(0x20b,'\x65\x74\x4d\x36'),'\x4f\x65\x52\x6d\x76':_0xfd2693(0x1fa,'\x47\x63\x61\x66')+_0xfd2693(0x197,'\x51\x65\x37\x42')};let _0x380f0d=!![];return function(_0x25eb9c,_0x1c5e1a){const _0x41c1a7=_0xfd2693,_0x1a6226={'\x66\x66\x67\x65\x61':function(_0x15ef78,_0x411c9b,_0x2fd490){const _0x3f94a8=_0x56d1;return _0x5c694c[_0x3f94a8(0x229,'\x62\x5e\x43\x79')](_0x15ef78,_0x411c9b,_0x2fd490);},'\x43\x59\x59\x59\x4b':_0x5c694c[_0x41c1a7(0x1c1,'\x65\x5e\x4d\x5e')],'\x54\x56\x76\x7a\x6f':_0x5c694c[_0x41c1a7(0x1dd,'\x35\x57\x29\x65')]},_0x1a41e5=_0x380f0d?function(){const _0x23ca1e=_0x41c1a7;if(_0x5c694c[_0x23ca1e(0x1ce,'\x59\x6c\x5a\x44')](_0x5c694c[_0x23ca1e(0x226,'\x42\x5d\x47\x29')],_0x5c694c[_0x23ca1e(0x181,'\x56\x63\x34\x69')])){if(_0x1c5e1a){const _0x3d46d6=_0x1c5e1a[_0x23ca1e(0x250,'\x5a\x25\x69\x58')](_0x25eb9c,arguments);return _0x1c5e1a=null,_0x3d46d6;}}else _0x1a6226[_0x23ca1e(0x1bb,'\x62\x31\x4d\x6b')](_0x10b510,_0x176078,_0x1a6226[_0x23ca1e(0x223,'\x6b\x47\x65\x50')]),_0x176d80(_0x215c64,_0x1a6226['\x54\x56\x76\x7a\x6f']);}:function(){};return _0x380f0d=![],_0x1a41e5;};}()),_0x4f30dc=_0x491b99(this,function(){const _0x49585b=_0x56d1;return _0x4f30dc[_0x49585b(0x203,'\x31\x79\x21\x32')]()[_0x49585b(0x1fc,'\x5e\x67\x63\x52')](_0x49585b(0x194,'\x76\x70\x6f\x57')+_0x49585b(0x1f5,'\x4f\x62\x37\x5a'))[_0x49585b(0x1bf,'\x51\x5b\x72\x58')]()[_0x49585b(0x1e4,'\x45\x24\x5e\x56')+_0x49585b(0x20d,'\x51\x5b\x72\x58')](_0x4f30dc)[_0x49585b(0x1f8,'\x44\x63\x6f\x77')](_0x49585b(0x195,'\x79\x79\x72\x4e')+_0x49585b(0x1c0,'\x50\x69\x41\x7a'));});_0x4f30dc();function _0x3a62f4(_0x2272bd){const _0x356803=_0x56d1,_0xf9ba10={'\x43\x64\x4b\x58\x6b':_0x356803(0x1cd,'\x44\x63\x6f\x77'),'\x62\x4d\x7a\x6d\x67':function(_0x387d22,_0x218325){return _0x387d22(_0x218325);}};return Array[_0x356803(0x236,'\x6d\x50\x6a\x4c')](new Set((Array[_0x356803(0x1b8,'\x6d\x50\x6a\x4c')](_0x2272bd)?_0x2272bd:[])['\x66\x69\x6c\x74\x65\x72'](Boolean)[_0x356803(0x213,'\x56\x63\x34\x69')](function(_0x5962b2){const _0x58ca14=_0x356803,_0x1c3304={'\x4c\x71\x5a\x78\x49':function(_0x559807,_0x2520aa,_0x105c37){return _0x559807(_0x2520aa,_0x105c37);}};if(_0xf9ba10[_0x58ca14(0x212,'\x67\x67\x34\x6a')]!==_0xf9ba10[_0x58ca14(0x1d8,'\x33\x76\x71\x59')])_0x1c3304[_0x58ca14(0x186,'\x38\x59\x59\x33')](_0x43014d,_0x3f080d,_0x58ca14(0x18f,'\x65\x5e\x4d\x5e')+_0x58ca14(0x1e0,'\x59\x6c\x5a\x44'));else return _0xf9ba10[_0x58ca14(0x1da,'\x36\x4a\x42\x4b')](String,_0x5962b2)['\x74\x72\x69\x6d']();})[_0x356803(0x1dc,'\x5a\x25\x69\x58')](Boolean)));}function _0x213dd2(_0x5b4b69,_0x127a6c){const _0x25ad75=_0x56d1;if(!_0x127a6c)return;_0x5b4b69[_0x25ad75(0x24c,'\x57\x44\x31\x6c')](String(_0x127a6c)[_0x25ad75(0x215,'\x79\x79\x72\x4e')]());}function _0x395c04(_0x4f7e65,_0x88dc8f){const _0x5bb478=_0x56d1,_0x3083ef={'\x71\x72\x6e\x4b\x57':function(_0x2d9991,_0x1d3642){return _0x2d9991(_0x1d3642);},'\x6b\x6b\x67\x4a\x69':function(_0x543254,_0x14d6e3,_0x5877cf){return _0x543254(_0x14d6e3,_0x5877cf);},'\x78\x59\x4d\x73\x45':function(_0x477212,_0x42f5f3){return _0x477212!==_0x42f5f3;},'\x54\x43\x62\x4e\x64':function(_0x3e1781,_0x43cb49,_0x1a8009){return _0x3e1781(_0x43cb49,_0x1a8009);},'\x70\x56\x78\x59\x50':_0x5bb478(0x1a9,'\x37\x73\x6f\x6b')+_0x5bb478(0x1d5,'\x5a\x25\x69\x58')+_0x5bb478(0x200,'\x67\x37\x28\x5b'),'\x70\x79\x43\x76\x6e':function(_0x6c91dd,_0x1304f1,_0x60cda1){return _0x6c91dd(_0x1304f1,_0x60cda1);},'\x52\x72\x70\x42\x48':_0x5bb478(0x211,'\x44\x63\x6f\x77')+_0x5bb478(0x1f7,'\x51\x65\x37\x42'),'\x76\x63\x55\x61\x73':_0x5bb478(0x188,'\x67\x67\x34\x6a')+_0x5bb478(0x1a1,'\x57\x44\x31\x6c'),'\x63\x65\x57\x53\x47':_0x5bb478(0x18b,'\x50\x69\x41\x7a')+_0x5bb478(0x20f,'\x59\x6c\x5a\x44'),'\x55\x46\x6b\x7a\x5a':function(_0x26e449,_0x2ae864,_0x518fe4){return _0x26e449(_0x2ae864,_0x518fe4);},'\x66\x6f\x47\x57\x50':function(_0x64e100,_0x5bd645){return _0x64e100(_0x5bd645);},'\x6a\x75\x64\x4e\x6b':function(_0x477d91,_0x968bc8){return _0x477d91!==_0x968bc8;},'\x64\x4c\x68\x66\x5a':_0x5bb478(0x1fd,'\x65\x5a\x57\x4b'),'\x4b\x76\x6d\x4d\x56':function(_0x43006a,_0x4cf21b){return _0x43006a+_0x4cf21b;},'\x62\x4b\x57\x51\x45':_0x5bb478(0x1c3,'\x24\x50\x69\x42'),'\x4e\x4f\x56\x53\x6b':function(_0x47a3e7,_0x38c62b){return _0x47a3e7(_0x38c62b);},'\x66\x65\x73\x78\x4d':function(_0x2fb995,_0x6a13bd){return _0x2fb995===_0x6a13bd;},'\x6b\x49\x52\x66\x57':_0x5bb478(0x254,'\x78\x26\x4e\x4f'),'\x4b\x79\x6f\x57\x72':_0x5bb478(0x235,'\x50\x69\x41\x7a'),'\x52\x4a\x6d\x75\x46':_0x5bb478(0x206,'\x44\x63\x6f\x77'),'\x69\x64\x52\x4c\x72':function(_0x1e31f1,_0xd9b9c8,_0x16ab52){return _0x1e31f1(_0xd9b9c8,_0x16ab52);},'\x55\x68\x79\x49\x78':function(_0x1ded42,_0x508673){return _0x1ded42+_0x508673;},'\x65\x77\x54\x6c\x73':function(_0x4730c8,_0x136316,_0x4143c4){return _0x4730c8(_0x136316,_0x4143c4);},'\x4e\x79\x45\x4b\x70':function(_0x5e9a47,_0x13865d,_0x4fcb24){return _0x5e9a47(_0x13865d,_0x4fcb24);},'\x7a\x43\x42\x61\x47':_0x5bb478(0x21b,'\x78\x26\x4e\x4f')+_0x5bb478(0x1d6,'\x51\x5b\x72\x58'),'\x61\x4f\x59\x52\x72':function(_0x1bd94f,_0x307b0d,_0x1d599a){return _0x1bd94f(_0x307b0d,_0x1d599a);},'\x79\x6c\x79\x65\x79':_0x5bb478(0x1aa,'\x65\x74\x4d\x36')+_0x5bb478(0x189,'\x4b\x4e\x73\x77')+_0x5bb478(0x225,'\x70\x72\x47\x59'),'\x61\x45\x67\x63\x76':'\x6a\x4c\x54\x43\x66','\x6c\x58\x72\x48\x62':_0x5bb478(0x185,'\x51\x65\x37\x42')+_0x5bb478(0x222,'\x78\x26\x4e\x4f')+'\x74\x79','\x4e\x49\x69\x50\x72':function(_0x2bbf8f,_0x27e333,_0x359a01){return _0x2bbf8f(_0x27e333,_0x359a01);},'\x63\x4f\x77\x4d\x44':_0x5bb478(0x1df,'\x4b\x4e\x73\x77')+_0x5bb478(0x1ee,'\x51\x5b\x72\x58'),'\x6a\x4f\x72\x76\x6a':function(_0x22dec4,_0x1c6def){return _0x22dec4!==_0x1c6def;},'\x42\x75\x7a\x76\x4c':_0x5bb478(0x1e3,'\x5a\x25\x69\x58'),'\x77\x71\x63\x62\x62':_0x5bb478(0x1ae,'\x5a\x25\x69\x58'),'\x78\x6c\x77\x6f\x63':function(_0x224299,_0x303bba,_0x1143a9){return _0x224299(_0x303bba,_0x1143a9);},'\x73\x53\x67\x49\x66':_0x5bb478(0x1b3,'\x38\x59\x59\x33')+_0x5bb478(0x19b,'\x56\x63\x34\x69')+'\x6f\x6e','\x77\x59\x73\x64\x53':function(_0x2400d8,_0x4ffc2f){return _0x2400d8===_0x4ffc2f;},'\x4c\x71\x49\x48\x48':_0x5bb478(0x1b6,'\x36\x4a\x42\x4b'),'\x54\x62\x61\x52\x71':_0x5bb478(0x17f,'\x6b\x47\x65\x50')+_0x5bb478(0x23a,'\x62\x31\x4d\x6b')+'\x6f\x6e','\x50\x52\x50\x4f\x64':_0x5bb478(0x1c9,'\x67\x67\x34\x6a')+_0x5bb478(0x214,'\x4f\x62\x37\x5a'),'\x62\x6b\x6c\x78\x5a':_0x5bb478(0x22b,'\x31\x79\x21\x32'),'\x74\x54\x4c\x41\x58':_0x5bb478(0x252,'\x6f\x55\x35\x74')+_0x5bb478(0x180,'\x79\x67\x77\x6d'),'\x62\x77\x78\x6a\x4e':'\x68\x48\x6d\x42\x48','\x4e\x61\x58\x4a\x77':_0x5bb478(0x242,'\x38\x59\x59\x33')+_0x5bb478(0x17e,'\x65\x74\x4d\x36')},_0x414019=Array[_0x5bb478(0x22c,'\x29\x78\x4d\x56')](_0x4f7e65)?_0x4f7e65['\x6d\x61\x70'](function(_0x22e36){const _0x4dd32f=_0x5bb478;return _0x3083ef[_0x4dd32f(0x1d2,'\x50\x69\x41\x7a')](String,_0x22e36);}):[],_0x1d8ece=[];for(let _0x4cc559=-0x24e0+0x781+-0x1*-0x1d5f;_0x4cc559<_0x414019['\x6c\x65\x6e\x67\x74\x68'];_0x4cc559++){if(_0x3083ef[_0x5bb478(0x22a,'\x37\x73\x6f\x6b')](_0x3083ef['\x4b\x79\x6f\x57\x72'],_0x3083ef[_0x5bb478(0x192,'\x76\x70\x6f\x57')])){const _0x24bf4d=_0x414019[_0x4cc559];_0x3083ef[_0x5bb478(0x178,'\x42\x5d\x47\x29')](_0x213dd2,_0x1d8ece,_0x24bf4d);const _0x561959=_0x24bf4d[_0x5bb478(0x227,'\x56\x63\x34\x69')]('\x3a')[0x1*0x246b+0x106*0x16+-0x3aef];if(_0x561959&&_0x3083ef[_0x5bb478(0x255,'\x6b\x47\x65\x50')](_0x561959,_0x24bf4d))_0x3083ef[_0x5bb478(0x1d9,'\x5e\x67\x63\x52')](_0x213dd2,_0x1d8ece,_0x561959);}else{const _0x5e9490=_0x25229e[_0x595f0e];_0x3083ef[_0x5bb478(0x1b4,'\x31\x44\x61\x54')](_0x1d70c0,_0x10d08c,_0x5e9490);const _0x312585=_0x5e9490[_0x5bb478(0x196,'\x51\x34\x31\x24')]('\x3a')[-0x11a*0x11+-0x1*-0x699+0xc21];if(_0x312585&&_0x3083ef[_0x5bb478(0x19a,'\x65\x5e\x4d\x5e')](_0x312585,_0x5e9490))_0x3083ef[_0x5bb478(0x1e5,'\x67\x37\x28\x5b')](_0x269fae,_0x5dcdcb,_0x312585);}}const _0x51fac9=(_0x3083ef[_0x5bb478(0x183,'\x6b\x47\x65\x50')](_0x414019[_0x5bb478(0x202,'\x50\x69\x41\x7a')]('\x20'),'\x20')+String(_0x88dc8f||''))['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x5bb478(0x1d4,'\x6e\x26\x59\x52')]();/(error|exception|failed|unstable|log_error|runtime|429)/['\x74\x65\x73\x74'](_0x51fac9)&&(_0x213dd2(_0x1d8ece,_0x3083ef[_0x5bb478(0x1f9,'\x36\x4a\x42\x4b')]),_0x213dd2(_0x1d8ece,_0x5bb478(0x1af,'\x5e\x49\x72\x6d')+_0x5bb478(0x1a7,'\x70\x72\x47\x59')));/(protocol|prompt|audit|gep|schema|drift)/[_0x5bb478(0x247,'\x35\x57\x29\x65')](_0x51fac9)&&(_0x213dd2(_0x1d8ece,_0x5bb478(0x238,'\x78\x26\x4e\x4f')+'\x70\x72\x6f\x74\x6f\x63\x6f\x6c'),_0x3083ef[_0x5bb478(0x231,'\x6f\x55\x35\x74')](_0x213dd2,_0x1d8ece,'\x61\x63\x74\x69\x6f\x6e\x3a\x6f'+'\x70\x74\x69\x6d\x69\x7a\x65'),_0x3083ef[_0x5bb478(0x1ff,'\x62\x5e\x43\x79')](_0x213dd2,_0x1d8ece,_0x3083ef[_0x5bb478(0x256,'\x59\x6c\x5a\x44')]));/(perf|performance|bottleneck|latency|slow|throughput)/['\x74\x65\x73\x74'](_0x51fac9)&&(_0x3083ef['\x61\x4f\x59\x52\x72'](_0x213dd2,_0x1d8ece,_0x3083ef[_0x5bb478(0x207,'\x6d\x50\x6a\x4c')]),_0x213dd2(_0x1d8ece,_0x3083ef[_0x5bb478(0x23e,'\x6d\x50\x6a\x4c')]));/(feature|capability_gap|user_feature_request|external_opportunity|stagnation recommendation)/[_0x5bb478(0x1d3,'\x29\x75\x74\x21')](_0x51fac9)&&(_0x5bb478(0x1f6,'\x5a\x25\x69\x58')!==_0x3083ef[_0x5bb478(0x258,'\x5a\x25\x69\x58')]?(_0x3083ef[_0x5bb478(0x22f,'\x65\x5e\x4d\x5e')](_0x2d7e48,_0x223b02,_0x3083ef[_0x5bb478(0x246,'\x6b\x47\x65\x50')]),_0x3083ef[_0x5bb478(0x1db,'\x56\x63\x34\x69')](_0x1ae8b1,_0x533e4e,_0x3083ef[_0x5bb478(0x1f0,'\x44\x63\x6f\x77')])):(_0x213dd2(_0x1d8ece,_0x3083ef[_0x5bb478(0x23f,'\x67\x67\x34\x6a')]),_0x3083ef[_0x5bb478(0x1a0,'\x67\x67\x34\x6a')](_0x213dd2,_0x1d8ece,_0x3083ef[_0x5bb478(0x1e9,'\x62\x5e\x43\x79')])));/(stagnation|plateau|steady_state|saturation|empty_cycle_loop|loop_detected|recurring)/[_0x5bb478(0x1eb,'\x57\x44\x31\x6c')](_0x51fac9)&&(_0x3083ef[_0x5bb478(0x1ea,'\x38\x59\x59\x33')](_0x3083ef[_0x5bb478(0x1a2,'\x67\x67\x34\x6a')],_0x3083ef[_0x5bb478(0x24b,'\x6e\x26\x59\x52')])?(_0x3083ef[_0x5bb478(0x24d,'\x4f\x62\x37\x5a')](_0x213dd2,_0x1d8ece,_0x3083ef[_0x5bb478(0x210,'\x6f\x55\x35\x74')]),_0x3083ef[_0x5bb478(0x1a5,'\x50\x69\x41\x7a')](_0x213dd2,_0x1d8ece,_0x3083ef[_0x5bb478(0x1e7,'\x70\x72\x47\x59')])):(_0x1034a7(_0x545484,_0x3083ef[_0x5bb478(0x1ec,'\x4d\x28\x39\x48')]),_0x3083ef[_0x5bb478(0x1c7,'\x7a\x48\x43\x31')](_0x199d6f,_0xa6ea75,_0x3083ef[_0x5bb478(0x191,'\x66\x42\x58\x5e')]),_0x3083ef['\x55\x46\x6b\x7a\x5a'](_0x4ab45c,_0x56e657,'\x61\x72\x65\x61\x3a\x70\x72\x6f'+_0x5bb478(0x1f4,'\x65\x74\x4d\x36'))));if(/(task|worker|heartbeat|hub|commitment|assignment|orchestration)/['\x74\x65\x73\x74'](_0x51fac9)){if(_0x3083ef[_0x5bb478(0x23c,'\x47\x79\x32\x58')](_0x3083ef[_0x5bb478(0x224,'\x51\x34\x31\x24')],_0x3083ef['\x4c\x71\x49\x48\x48']))_0x213dd2(_0x1d8ece,_0x3083ef[_0x5bb478(0x20a,'\x66\x42\x58\x5e')]);else{if(!_0x2880bb)return;_0x59bd1a[_0x5bb478(0x1d7,'\x50\x69\x41\x7a')](HgoBNC[_0x5bb478(0x21d,'\x70\x72\x47\x59')](_0x177f22,_0x37756d)[_0x5bb478(0x1ab,'\x7a\x48\x43\x31')]());}}/(memory|narrative|reflection)/[_0x5bb478(0x1eb,'\x57\x44\x31\x6c')](_0x51fac9)&&_0x3083ef[_0x5bb478(0x18c,'\x6d\x50\x6a\x4c')](_0x213dd2,_0x1d8ece,_0x3083ef[_0x5bb478(0x21f,'\x7a\x48\x43\x31')]);if(/(skill|dashboard)/[_0x5bb478(0x1f2,'\x33\x4d\x50\x71')](_0x51fac9)){if(_0x3083ef[_0x5bb478(0x24f,'\x51\x65\x37\x42')](_0x3083ef[_0x5bb478(0x228,'\x57\x44\x31\x6c')],_0x3083ef[_0x5bb478(0x1cb,'\x5e\x49\x72\x6d')])){if(!_0x59d06c||_0x3083ef[_0x5bb478(0x1a3,'\x6b\x47\x65\x50')](typeof _0xe549c0,_0x3083ef['\x64\x4c\x68\x66\x5a']))return[];let _0x40431d=[];if(_0x5d914c[_0x5bb478(0x248,'\x5a\x25\x69\x58')])_0x40431d[_0x5bb478(0x1ca,'\x65\x5a\x57\x4b')](_0x3083ef[_0x5bb478(0x201,'\x6e\x26\x59\x52')](_0x3083ef[_0x5bb478(0x1b9,'\x38\x59\x59\x33')],_0x3083ef[_0x5bb478(0x1fb,'\x33\x76\x71\x59')](_0x2395ad,_0x38e6c1[_0x5bb478(0x239,'\x4d\x28\x39\x48')])[_0x5bb478(0x1a4,'\x73\x62\x61\x63')+_0x5bb478(0x216,'\x29\x75\x74\x21')]()));if(_0x279564[_0x5bb478(0x17c,'\x76\x70\x6f\x57')](_0x1bf091[_0x5bb478(0x1a6,'\x7a\x48\x43\x31')+'\x6d\x61\x74\x63\x68']))_0x40431d=_0x40431d[_0x5bb478(0x177,'\x29\x75\x74\x21')](_0x407938[_0x5bb478(0x24e,'\x67\x37\x28\x5b')+_0x5bb478(0x1be,'\x73\x62\x61\x63')]);if(_0x3083ef[_0x5bb478(0x21c,'\x36\x4a\x42\x4b')](typeof _0x3e22c8['\x69\x64'],_0x5bb478(0x245,'\x29\x78\x4d\x56')))_0x40431d[_0x5bb478(0x22e,'\x44\x63\x6f\x77')](_0xb5c150['\x69\x64']);if(typeof _0x5898d0[_0x5bb478(0x18e,'\x47\x63\x61\x66')]===_0x3083ef[_0x5bb478(0x1d0,'\x33\x76\x71\x59')])_0x40431d[_0x5bb478(0x20c,'\x35\x57\x29\x65')](_0x2b08c9[_0x5bb478(0x193,'\x51\x65\x37\x42')]);return _0x3083ef[_0x5bb478(0x1b1,'\x79\x79\x72\x4e')](_0x456e48,_0x40431d,'');}else _0x3083ef[_0x5bb478(0x19c,'\x79\x67\x77\x6d')](_0x213dd2,_0x1d8ece,_0x3083ef[_0x5bb478(0x17b,'\x4f\x62\x37\x5a')]);}return/(validation|canary|rollback|constraint|blast radius|destructive)/[_0x5bb478(0x205,'\x47\x79\x32\x58')](_0x51fac9)&&(_0x3083ef[_0x5bb478(0x1b7,'\x36\x4a\x42\x4b')]!==_0x5bb478(0x249,'\x5e\x67\x63\x52')?_0x3083ef[_0x5bb478(0x1c5,'\x56\x51\x7a\x77')](_0x213dd2,_0x1d8ece,_0x3083ef[_0x5bb478(0x251,'\x35\x57\x29\x65')]):_0x3083ef[_0x5bb478(0x1a8,'\x33\x4d\x50\x71')](_0x565206,_0x3da6a9,'\x72\x69\x73\x6b\x3a\x76\x61\x6c'+_0x5bb478(0x18d,'\x31\x44\x61\x54'))),_0x3083ef[_0x5bb478(0x17a,'\x76\x70\x6f\x57')](_0x3a62f4,_0x1d8ece);}function _0x2d24(){const _0x53dd99=['\x6d\x6d\x6f\x34\x41\x43\x6b\x78','\x57\x4f\x62\x55\x64\x43\x6b\x32\x6b\x47','\x70\x43\x6f\x74\x41\x6d\x6b\x45\x57\x34\x74\x64\x4b\x53\x6b\x54\x57\x50\x65','\x57\x51\x5a\x63\x4d\x5a\x4e\x63\x54\x4c\x34','\x57\x34\x69\x54\x57\x51\x2f\x63\x53\x71\x30','\x6d\x31\x44\x64\x74\x63\x6d','\x57\x50\x69\x65\x57\x36\x62\x4f\x57\x52\x5a\x63\x4c\x38\x6b\x54\x57\x34\x4f','\x70\x72\x61\x4a\x65\x74\x34','\x64\x53\x6b\x51\x6e\x53\x6f\x76\x68\x6d\x6f\x44','\x57\x51\x52\x63\x54\x43\x6f\x66\x6b\x73\x79','\x78\x38\x6b\x51\x64\x6d\x6b\x5a\x57\x4f\x4b','\x42\x71\x37\x64\x51\x43\x6f\x62\x73\x43\x6b\x65','\x57\x34\x69\x79\x57\x52\x4a\x63\x56\x47\x69','\x73\x6d\x6b\x4e\x57\x51\x79\x74\x57\x52\x70\x63\x55\x57','\x64\x32\x68\x64\x53\x75\x69\x78','\x43\x43\x6b\x70\x75\x59\x69\x51\x7a\x38\x6b\x2b\x42\x71','\x57\x4f\x4e\x64\x47\x68\x72\x34\x79\x61','\x57\x4f\x58\x77\x6e\x53\x6b\x79\x65\x71','\x57\x4f\x42\x64\x4e\x68\x6a\x44\x71\x4e\x70\x63\x53\x47','\x65\x4d\x66\x4a\x45\x53\x6b\x59','\x62\x43\x6b\x43\x62\x43\x6f\x55\x57\x4f\x6d\x74\x42\x47','\x57\x52\x70\x63\x4e\x53\x6f\x54\x6f\x31\x4b\x5a\x6e\x38\x6b\x44','\x70\x68\x69\x4a','\x64\x78\x6c\x64\x52\x30\x4b\x73','\x57\x51\x52\x64\x48\x4e\x44\x4f\x43\x47','\x57\x4f\x46\x63\x48\x6d\x6f\x58\x65\x58\x53','\x57\x50\x78\x63\x51\x4a\x72\x4e\x57\x4f\x42\x64\x4d\x53\x6b\x74\x57\x4f\x48\x30\x57\x36\x68\x63\x55\x78\x53','\x57\x51\x74\x63\x53\x62\x56\x63\x50\x33\x46\x63\x4e\x75\x48\x34','\x77\x53\x6b\x42\x7a\x5a\x38\x33','\x72\x71\x7a\x4a\x71\x4a\x39\x79\x75\x68\x69','\x72\x77\x31\x31\x57\x50\x43\x33\x57\x34\x79\x35\x75\x71','\x77\x53\x6b\x35\x57\x4f\x4e\x63\x54\x6d\x6f\x4b\x57\x35\x4c\x73\x57\x37\x38','\x57\x35\x6c\x64\x4c\x47\x54\x63\x6f\x72\x66\x66','\x77\x43\x6f\x52\x57\x50\x54\x34\x57\x51\x4c\x51\x41\x78\x34','\x57\x4f\x30\x65\x70\x43\x6b\x4b\x57\x50\x65','\x57\x51\x33\x64\x54\x31\x2f\x63\x53\x53\x6f\x66\x57\x34\x76\x51','\x73\x73\x4a\x63\x4e\x43\x6f\x73\x71\x38\x6b\x76\x57\x34\x57','\x79\x62\x4e\x64\x4f\x53\x6f\x68\x62\x38\x6b\x62\x75\x53\x6b\x51','\x70\x38\x6f\x39\x73\x53\x6b\x46\x57\x37\x71','\x57\x34\x46\x64\x56\x31\x6d\x65\x57\x37\x79','\x57\x52\x33\x64\x50\x76\x35\x41\x44\x47','\x57\x51\x46\x63\x54\x58\x4e\x63\x51\x68\x52\x63\x49\x4c\x57','\x57\x34\x46\x63\x48\x58\x53\x62\x67\x5a\x56\x64\x4f\x6d\x6f\x53','\x6e\x32\x66\x4d\x70\x53\x6b\x50\x57\x34\x78\x63\x50\x6d\x6f\x49','\x79\x33\x52\x63\x4c\x68\x56\x63\x55\x47','\x57\x51\x74\x63\x54\x48\x33\x63\x51\x68\x6c\x63\x47\x4b\x61','\x73\x47\x2f\x64\x4f\x6d\x6f\x2b\x46\x57','\x57\x35\x46\x64\x52\x4e\x79\x2b\x57\x35\x2f\x63\x49\x61','\x45\x74\x6c\x64\x49\x53\x6f\x76\x45\x61','\x63\x30\x64\x64\x4f\x68\x4b\x6f\x57\x50\x37\x64\x48\x43\x6b\x5a','\x6f\x78\x4f\x63\x69\x33\x61','\x69\x43\x6f\x2f\x46\x38\x6b\x45\x6e\x68\x6a\x76\x44\x57','\x57\x36\x61\x5a\x57\x4f\x4a\x63\x50\x73\x61','\x78\x74\x4a\x63\x4f\x38\x6f\x6f\x74\x71','\x45\x31\x7a\x5a\x57\x51\x75\x50','\x6d\x6d\x6f\x2f\x44\x43\x6b\x6c\x79\x77\x6a\x72\x43\x47','\x44\x32\x50\x47\x57\x4f\x6d\x78','\x57\x52\x4a\x63\x4d\x43\x6f\x53\x66\x61\x47','\x57\x34\x70\x63\x51\x43\x6b\x51\x57\x35\x6d\x78\x57\x51\x4f\x4f\x57\x35\x65','\x42\x6d\x6f\x6c\x57\x4f\x31\x46\x57\x51\x69','\x68\x31\x58\x2b\x57\x52\x5a\x64\x4f\x63\x34\x77\x42\x71','\x6c\x6d\x6f\x51\x65\x65\x4f\x55','\x57\x37\x4b\x50\x79\x32\x43\x43','\x57\x37\x64\x64\x4b\x72\x37\x63\x47\x75\x38\x50\x67\x53\x6f\x4b','\x68\x6d\x6b\x6b\x63\x38\x6f\x34\x57\x4f\x79\x7a\x42\x43\x6b\x7a','\x67\x65\x44\x57\x57\x52\x38','\x46\x48\x4c\x65\x45\x38\x6b\x57\x57\x50\x64\x64\x55\x38\x6b\x75','\x74\x6d\x6b\x2f\x57\x37\x31\x74\x41\x67\x46\x64\x49\x47\x30','\x57\x36\x57\x43\x57\x4f\x37\x63\x49\x64\x30','\x6b\x75\x58\x4c\x44\x38\x6b\x73\x57\x52\x52\x63\x4b\x38\x6b\x55','\x57\x34\x57\x6c\x57\x52\x33\x63\x50\x5a\x43','\x73\x47\x38\x4c\x41\x53\x6f\x79','\x57\x34\x75\x6c\x43\x47','\x7a\x53\x6b\x79\x75\x49\x75\x73\x79\x38\x6b\x30\x6a\x61','\x57\x51\x2f\x64\x55\x66\x4e\x63\x4a\x6d\x6f\x66','\x78\x43\x6f\x6a\x76\x6d\x6b\x54\x57\x35\x6d\x6e\x43\x53\x6f\x4b\x7a\x31\x68\x64\x51\x61','\x46\x78\x33\x63\x56\x38\x6f\x34\x62\x57','\x74\x4e\x5a\x63\x48\x53\x6f\x69\x67\x57','\x57\x50\x57\x42\x63\x38\x6b\x35\x57\x4f\x64\x63\x47\x4c\x61','\x44\x6d\x6b\x48\x41\x48\x79\x37','\x43\x43\x6b\x4f\x71\x62\x72\x51\x44\x6d\x6f\x45\x63\x6d\x6f\x5a\x67\x38\x6b\x76\x57\x51\x61\x37','\x57\x35\x78\x64\x4b\x58\x48\x6f\x6e\x57','\x57\x51\x64\x64\x4d\x76\x7a\x44\x78\x68\x70\x63\x55\x57','\x57\x50\x6a\x53\x57\x36\x2f\x64\x52\x65\x43\x50\x77\x4e\x74\x64\x48\x4b\x6a\x38\x57\x52\x4f','\x57\x35\x52\x63\x50\x38\x6b\x73\x57\x35\x38\x69','\x57\x36\x4c\x64\x57\x36\x74\x63\x4f\x53\x6f\x7a\x57\x50\x2f\x64\x4b\x6d\x6f\x4a','\x65\x38\x6b\x48\x57\x34\x71\x31','\x76\x57\x6c\x64\x47\x6d\x6f\x66\x41\x71','\x57\x52\x34\x30\x72\x6d\x6f\x6b\x57\x37\x37\x64\x4f\x4e\x57','\x57\x4f\x54\x4e\x57\x51\x6d\x34\x74\x58\x79\x6a','\x57\x37\x58\x52\x6e\x6d\x6b\x6e\x44\x48\x78\x64\x4d\x61','\x61\x32\x56\x64\x53\x38\x6b\x51\x57\x51\x61','\x57\x52\x4f\x4c\x57\x4f\x30\x61\x71\x61','\x62\x31\x35\x2b\x57\x50\x4a\x64\x51\x61','\x57\x4f\x79\x47\x57\x51\x53\x2f\x78\x74\x79','\x76\x67\x31\x2f\x57\x50\x72\x48\x57\x34\x34\x58\x62\x47','\x6a\x38\x6b\x47\x57\x52\x47\x68','\x6b\x4b\x72\x39\x7a\x53\x6b\x4e','\x57\x50\x54\x54\x66\x6d\x6b\x36\x6b\x6d\x6f\x67','\x57\x34\x75\x35\x57\x36\x66\x72\x42\x47','\x46\x6d\x6b\x54\x64\x38\x6b\x32\x57\x4f\x53','\x41\x4a\x53\x4b\x77\x6d\x6f\x51','\x78\x38\x6b\x77\x42\x4c\x6e\x52','\x78\x43\x6f\x6a\x76\x6d\x6b\x52\x57\x35\x4c\x65\x7a\x43\x6f\x6f\x77\x4c\x56\x64\x4e\x6d\x6f\x6f','\x73\x43\x6f\x36\x57\x4f\x66\x41\x57\x50\x65','\x78\x38\x6b\x54\x57\x52\x53\x65','\x64\x62\x42\x63\x54\x61','\x57\x35\x65\x34\x57\x52\x70\x63\x54\x62\x76\x5a\x76\x4e\x75','\x57\x37\x62\x43\x57\x34\x6d','\x73\x6d\x6f\x39\x57\x50\x58\x35','\x44\x38\x6b\x37\x44\x32\x31\x78','\x57\x37\x52\x63\x49\x4a\x4a\x63\x4a\x4b\x43','\x74\x4b\x42\x63\x48\x6d\x6f\x70\x6d\x47','\x63\x65\x33\x64\x47\x4d\x47\x6f','\x57\x34\x75\x30\x57\x52\x70\x63\x51\x72\x66\x4a','\x6d\x4c\x6e\x6a\x41\x59\x69','\x6a\x4a\x4e\x64\x49\x63\x64\x64\x56\x53\x6b\x61\x79\x61\x54\x6a\x57\x52\x2f\x64\x4c\x75\x38','\x73\x38\x6b\x2f\x57\x4f\x2f\x63\x55\x38\x6f\x4b\x57\x34\x75\x66\x57\x37\x43','\x73\x53\x6b\x42\x6e\x57','\x57\x50\x68\x63\x49\x38\x6f\x63\x66\x57\x4f','\x57\x34\x65\x70\x42\x30\x34\x6d\x70\x71','\x57\x37\x4b\x52\x57\x51\x4e\x63\x52\x61\x65','\x57\x52\x5a\x64\x4a\x43\x6f\x70\x57\x37\x70\x64\x4a\x43\x6b\x44\x69\x78\x69','\x6a\x43\x6f\x72\x41\x6d\x6b\x36\x57\x34\x57','\x57\x51\x56\x64\x53\x76\x74\x63\x4f\x38\x6f\x70\x57\x35\x34','\x6b\x53\x6f\x76\x62\x4d\x34\x79','\x57\x50\x61\x78\x57\x37\x66\x53\x57\x36\x68\x63\x49\x38\x6b\x30\x57\x35\x4f','\x57\x36\x44\x4d\x57\x50\x64\x63\x4d\x53\x6b\x64','\x46\x6d\x6b\x4c\x74\x5a\x65\x75','\x6e\x6d\x6f\x4f\x41\x43\x6b\x6c','\x65\x48\x57\x70\x62\x74\x47','\x57\x52\x74\x64\x4f\x76\x68\x63\x50\x6d\x6f\x61\x57\x34\x39\x50\x57\x52\x4b','\x57\x37\x6e\x63\x57\x35\x4a\x63\x4f\x6d\x6f\x6b\x57\x4f\x6c\x64\x4d\x57','\x6f\x4b\x4e\x64\x50\x43\x6b\x68\x57\x51\x57','\x57\x36\x75\x36\x57\x37\x50\x44\x75\x47','\x43\x59\x75\x39','\x57\x35\x4b\x70\x43\x4c\x30','\x6c\x53\x6f\x30\x65\x65\x38\x56','\x61\x43\x6b\x69\x65\x61','\x57\x35\x6d\x52\x75\x43\x6f\x39','\x57\x34\x4b\x72\x57\x4f\x56\x63\x4e\x48\x69','\x57\x52\x68\x63\x53\x48\x78\x63\x52\x67\x4b','\x57\x34\x71\x54\x57\x36\x54\x54\x45\x77\x79','\x78\x66\x33\x63\x48\x53\x6f\x37\x62\x71','\x77\x5a\x37\x63\x48\x6d\x6f\x77\x74\x43\x6b\x6a\x57\x4f\x2f\x63\x4e\x71','\x45\x53\x6b\x71\x41\x4d\x7a\x78','\x57\x36\x64\x63\x49\x57\x56\x63\x53\x66\x42\x64\x53\x47','\x6f\x6d\x6b\x33\x57\x51\x65\x6b\x6a\x67\x30','\x57\x34\x74\x63\x53\x38\x6b\x6c\x57\x35\x65\x62\x57\x52\x30\x4a','\x57\x34\x50\x71\x57\x51\x6c\x63\x4e\x6d\x6b\x33','\x6a\x38\x6f\x6f\x44\x47','\x6a\x48\x70\x63\x56\x6d\x6f\x6f\x68\x47','\x75\x53\x6f\x4e\x57\x4f\x7a\x2f','\x57\x4f\x65\x37\x57\x4f\x4f\x49\x71\x74\x48\x73\x57\x36\x65','\x57\x34\x72\x4b\x57\x36\x58\x4c\x61\x32\x65\x69\x57\x35\x68\x63\x4c\x43\x6f\x68\x57\x37\x64\x63\x4d\x6d\x6b\x76','\x77\x38\x6b\x37\x57\x37\x50\x63','\x57\x35\x75\x36\x57\x37\x50\x6e\x74\x47','\x57\x4f\x57\x65\x6d\x38\x6b\x55\x57\x4f\x53','\x63\x43\x6b\x35\x57\x35\x38\x4d\x57\x37\x39\x31\x69\x76\x42\x64\x54\x43\x6f\x48\x57\x36\x69','\x61\x78\x4c\x5a\x57\x51\x64\x64\x47\x47','\x57\x37\x64\x64\x55\x67\x75\x66\x57\x34\x61','\x61\x53\x6b\x42\x61\x71','\x64\x75\x6e\x4f\x42\x47','\x57\x36\x4c\x64\x57\x34\x75','\x67\x38\x6f\x53\x57\x52\x68\x63\x4e\x38\x6f\x34\x57\x34\x6a\x6e\x57\x37\x6d','\x76\x43\x6b\x44\x6a\x38\x6b\x2f\x57\x51\x43\x68\x57\x36\x30','\x57\x4f\x61\x4c\x57\x36\x6a\x61\x57\x36\x61','\x57\x35\x79\x52\x57\x37\x35\x32\x44\x77\x61\x36\x57\x50\x4f','\x44\x4e\x54\x72\x57\x51\x30\x57','\x66\x76\x78\x64\x53\x71','\x57\x50\x44\x57\x61\x57','\x41\x5a\x53\x4e\x46\x71','\x73\x53\x6b\x37\x57\x51\x30','\x57\x34\x4b\x59\x6d\x6d\x6b\x75\x6f\x53\x6f\x42\x57\x35\x52\x64\x56\x47','\x42\x61\x52\x64\x53\x38\x6f\x66\x76\x71','\x57\x4f\x75\x44\x6f\x43\x6b\x4a','\x57\x51\x57\x43\x57\x4f\x6c\x64\x50\x43\x6b\x42\x57\x34\x42\x63\x49\x53\x6f\x74\x69\x6d\x6f\x32\x57\x51\x52\x63\x52\x53\x6b\x4e','\x68\x6d\x6b\x53\x69\x43\x6f\x44\x73\x6d\x6f\x6b\x44\x4d\x6d','\x73\x4d\x37\x63\x4a\x43\x6f\x41\x67\x61','\x6c\x38\x6f\x31\x6e\x4e\x71\x6d','\x44\x71\x74\x64\x49\x38\x6f\x6a\x73\x53\x6b\x6a\x72\x43\x6b\x65','\x70\x67\x44\x6a\x57\x50\x33\x64\x50\x71','\x57\x50\x42\x63\x52\x74\x44\x4c\x57\x4f\x6c\x64\x4d\x6d\x6f\x76\x57\x34\x6a\x4a\x57\x37\x6c\x63\x48\x75\x61\x41\x71\x71','\x57\x50\x39\x4e\x6b\x43\x6b\x4f\x6a\x47','\x68\x53\x6b\x2f\x6e\x6d\x6f\x44\x65\x6d\x6f\x74\x41\x67\x75','\x57\x50\x68\x63\x54\x43\x6f\x72\x61\x59\x47','\x78\x68\x56\x63\x53\x76\x52\x63\x48\x47','\x6a\x38\x6f\x35\x66\x61','\x6c\x4d\x74\x64\x56\x76\x53\x62','\x63\x30\x74\x64\x52\x78\x43\x75','\x69\x53\x6f\x4d\x44\x53\x6b\x68\x76\x61','\x57\x34\x62\x72\x57\x51\x68\x63\x4a\x38\x6b\x44','\x57\x37\x4a\x64\x55\x4a\x5a\x63\x4b\x67\x79','\x57\x50\x43\x5a\x57\x4f\x6d\x5a\x77\x71','\x57\x52\x69\x2f\x44\x43\x6f\x78\x57\x37\x37\x64\x54\x33\x79','\x57\x34\x78\x64\x51\x77\x65','\x57\x34\x43\x39\x57\x37\x4c\x33','\x76\x73\x4a\x64\x50\x43\x6f\x4f\x77\x71','\x57\x36\x52\x63\x4d\x38\x6b\x74\x57\x34\x33\x64\x56\x43\x6b\x4a\x67\x4c\x6d\x54','\x57\x50\x79\x62\x57\x35\x66\x4c\x57\x37\x75','\x57\x36\x52\x64\x4e\x6d\x6f\x57\x68\x47\x47\x5a\x6a\x38\x6b\x4f','\x57\x52\x61\x54\x57\x4f\x53\x76\x43\x61','\x65\x43\x6b\x37\x6b\x53\x6f\x42\x62\x53\x6f\x73','\x76\x6d\x6f\x70\x57\x4f\x48\x6c\x57\x51\x47','\x57\x50\x6d\x41\x6a\x43\x6b\x4d','\x57\x50\x54\x56\x57\x36\x37\x64\x51\x4b\x69\x4b\x63\x68\x6c\x64\x4c\x65\x50\x78\x57\x51\x46\x63\x4a\x61','\x64\x43\x6b\x53\x6b\x38\x6f\x45\x68\x53\x6f\x46\x41\x74\x79','\x62\x58\x34\x55\x61\x73\x58\x6b\x68\x43\x6b\x6b','\x57\x35\x56\x64\x4b\x61\x58\x46\x6a\x62\x34\x6c\x57\x36\x4b','\x69\x32\x53\x39\x61\x4d\x70\x64\x4d\x57\x30','\x77\x6d\x6b\x68\x57\x37\x50\x73\x78\x61','\x57\x52\x69\x46\x57\x52\x6c\x63\x53\x53\x6b\x6b\x57\x51\x52\x64\x49\x53\x6f\x30','\x57\x50\x79\x6e\x68\x43\x6b\x79\x57\x52\x75','\x77\x75\x44\x4f\x57\x52\x30\x35','\x67\x43\x6f\x54\x57\x52\x4b\x65\x70\x5a\x52\x64\x4c\x64\x64\x64\x4b\x38\x6f\x42\x45\x77\x71','\x57\x34\x72\x4b\x57\x36\x4c\x4d\x62\x67\x72\x70\x57\x37\x74\x63\x4b\x38\x6f\x7a\x57\x37\x5a\x63\x4b\x57','\x7a\x6d\x6b\x64\x74\x49\x58\x65\x43\x6d\x6b\x34\x43\x47','\x72\x4e\x58\x31\x57\x4f\x43\x2b\x57\x37\x43\x31\x64\x61','\x57\x51\x6c\x63\x49\x43\x6f\x36\x70\x61\x57\x55\x6b\x6d\x6b\x46','\x57\x51\x47\x34\x72\x53\x6f\x6d\x57\x36\x6c\x64\x53\x71','\x57\x51\x6c\x63\x55\x53\x6f\x57\x61\x5a\x6d','\x63\x76\x6e\x4f\x43\x47','\x57\x34\x61\x38\x57\x51\x56\x63\x55\x62\x6e\x2b\x74\x77\x61','\x57\x35\x74\x63\x4a\x62\x6c\x63\x4a\x77\x79','\x57\x52\x61\x58\x67\x6d\x6b\x6a\x57\x52\x47','\x67\x48\x74\x63\x53\x53\x6f\x48\x6b\x47'];_0x2d24=function(){return _0x53dd99;};return _0x2d24();}function _0x1da6b(_0x1fa296){const _0x48188c=_0x56d1,_0x15ef36={'\x6d\x4c\x6a\x72\x43':function(_0x38afb7,_0x566b0a){return _0x38afb7!==_0x566b0a;},'\x59\x6f\x79\x75\x75':_0x48188c(0x1e6,'\x31\x44\x61\x54'),'\x74\x67\x77\x54\x49':function(_0x4f65cb,_0x58c071){return _0x4f65cb+_0x58c071;},'\x43\x6e\x57\x78\x54':_0x48188c(0x18a,'\x62\x31\x4d\x6b'),'\x45\x59\x52\x42\x4a':function(_0x2e70fb,_0x448f52){return _0x2e70fb(_0x448f52);},'\x67\x65\x53\x71\x6f':function(_0x3be4c5,_0x4190df){return _0x3be4c5===_0x4190df;},'\x4f\x71\x54\x56\x73':_0x48188c(0x199,'\x66\x42\x58\x5e')};if(!_0x1fa296||_0x15ef36[_0x48188c(0x209,'\x7a\x48\x43\x31')](typeof _0x1fa296,_0x15ef36[_0x48188c(0x253,'\x4d\x28\x39\x48')]))return[];let _0x2c9c22=[];if(_0x1fa296[_0x48188c(0x1ad,'\x47\x79\x32\x58')])_0x2c9c22['\x70\x75\x73\x68'](_0x15ef36['\x74\x67\x77\x54\x49'](_0x15ef36[_0x48188c(0x19e,'\x5a\x25\x69\x58')],_0x15ef36[_0x48188c(0x24a,'\x6d\x50\x6a\x4c')](String,_0x1fa296[_0x48188c(0x1e8,'\x6f\x55\x35\x74')])[_0x48188c(0x21e,'\x65\x5e\x4d\x5e')+_0x48188c(0x22d,'\x66\x42\x58\x5e')]()));if(Array[_0x48188c(0x1c4,'\x26\x5e\x7a\x5d')](_0x1fa296['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x48188c(0x1ef,'\x56\x51\x7a\x77')]))_0x2c9c22=_0x2c9c22[_0x48188c(0x1cc,'\x4f\x62\x37\x5a')](_0x1fa296['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x48188c(0x218,'\x65\x5e\x4d\x5e')]);if(_0x15ef36[_0x48188c(0x221,'\x4f\x62\x37\x5a')](typeof _0x1fa296['\x69\x64'],_0x15ef36[_0x48188c(0x1c6,'\x31\x79\x21\x32')]))_0x2c9c22[_0x48188c(0x1d7,'\x50\x69\x41\x7a')](_0x1fa296['\x69\x64']);if(_0x15ef36[_0x48188c(0x19f,'\x47\x63\x61\x66')](typeof _0x1fa296[_0x48188c(0x23b,'\x79\x67\x77\x6d')],_0x48188c(0x1c8,'\x31\x79\x21\x32')))_0x2c9c22[_0x48188c(0x219,'\x6d\x50\x6a\x4c')](_0x1fa296[_0x48188c(0x1fe,'\x73\x62\x61\x63')]);return _0x395c04(_0x2c9c22,'');}function _0x24f140(_0x1faf75,_0x2c2361){const _0x200cc9=_0x56d1,_0x56b567={'\x61\x74\x46\x53\x49':function(_0x37d6fa,_0x3f5c3b,_0xe99e93){return _0x37d6fa(_0x3f5c3b,_0xe99e93);},'\x4b\x64\x67\x58\x42':_0x200cc9(0x19d,'\x57\x44\x31\x6c')+_0x200cc9(0x1f1,'\x79\x79\x72\x4e'),'\x71\x47\x45\x6f\x51':function(_0x540dbd,_0x31ab06){return _0x540dbd(_0x31ab06);},'\x75\x72\x6a\x48\x68':function(_0x1ffb76,_0x108fa5){return _0x1ffb76===_0x108fa5;},'\x43\x67\x4a\x4d\x69':function(_0x23b21c,_0x1c04e9){return _0x23b21c<_0x1c04e9;},'\x45\x79\x52\x43\x43':function(_0x22bf8c,_0x4aaca1){return _0x22bf8c!==_0x4aaca1;},'\x6f\x56\x62\x7a\x43':_0x200cc9(0x17d,'\x5e\x49\x72\x6d')},_0x5c15b1=_0x395c04(_0x2c2361,''),_0xe8b316=_0x56b567[_0x200cc9(0x190,'\x67\x37\x28\x5b')](_0x1da6b,_0x1faf75);if(_0x56b567[_0x200cc9(0x1cf,'\x79\x79\x72\x4e')](_0x5c15b1[_0x200cc9(0x1e2,'\x33\x4d\x50\x71')],0xaee*0x2+-0x709*-0x3+-0x287*0x11)||_0xe8b316[_0x200cc9(0x234,'\x78\x26\x4e\x4f')]===0x39*0x67+0x3d4+0x1f*-0xdd)return 0x13a0+-0x1857+0x4b7;const _0x598bab=new Set(_0x5c15b1);let _0x3d5542=-0xe*0x11e+0x540+0xa64;for(let _0x54878e=-0x2698+-0x2b*0x1d+0x2b77;_0x56b567[_0x200cc9(0x1e1,'\x6b\x47\x65\x50')](_0x54878e,_0xe8b316[_0x200cc9(0x257,'\x65\x5e\x4d\x5e')]);_0x54878e++){if(_0x56b567[_0x200cc9(0x233,'\x31\x79\x21\x32')](_0x56b567[_0x200cc9(0x1b0,'\x5a\x25\x69\x58')],_0x56b567['\x6f\x56\x62\x7a\x43']))rjlpUM['\x61\x74\x46\x53\x49'](_0x31ff4b,_0x24ed35,rjlpUM[_0x200cc9(0x198,'\x65\x5e\x4d\x5e')]);else{if(_0x598bab[_0x200cc9(0x1b2,'\x33\x4d\x50\x71')](_0xe8b316[_0x54878e]))_0x3d5542++;}}return _0x3d5542;}const _0xe98a02={};function _0x56d1(_0x4692ff,_0x21e4b8){_0x4692ff=_0x4692ff-(0x601+0xf57+-0x1*0x13e1);const _0x1d3414=_0x2d24();let _0xdfcdbc=_0x1d3414[_0x4692ff];if(_0x56d1['\x63\x6f\x49\x78\x55\x53']===undefined){var _0x3d51b9=function(_0x21ff9a){const _0x2b909a='\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 _0x4ae905='',_0x50e80e='',_0x4eb0a8=_0x4ae905+_0x3d51b9,_0x1fb399=(''+function(){return 0x200f+-0x12a*0x17+-0x7b*0xb;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x173f+-0x11*0x1c0+-0x6a0*-0x8);for(let _0x20bedb=0x3bd+0x2*-0xc1c+0x147b,_0x4c2663,_0x15b139,_0x36849b=0x18a*-0x13+0x7*0x49d+-0x30d;_0x15b139=_0x21ff9a['\x63\x68\x61\x72\x41\x74'](_0x36849b++);~_0x15b139&&(_0x4c2663=_0x20bedb%(-0x17e8+-0x62b+0x1e17*0x1)?_0x4c2663*(-0x130e+-0x1*-0x11ba+-0x65*-0x4)+_0x15b139:_0x15b139,_0x20bedb++%(-0xa*-0xa3+-0x1dce+0x1774))?_0x4ae905+=_0x1fb399||_0x4eb0a8['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x36849b+(0x24c6+-0x39f+-0x211d))-(-0x8a6+0x2227+-0x1977)!==0x25c9+-0x7*0x2f1+0x1*-0x1132?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1cc+0xb07*-0x1+0x2*0x6e9&_0x4c2663>>(-(-0x10c1*-0x1+-0x1291*-0x1+-0x2350)*_0x20bedb&0x1623+0x2020+-0x363d)):_0x20bedb:-0x113d+-0x1962+0x2a9f){_0x15b139=_0x2b909a['\x69\x6e\x64\x65\x78\x4f\x66'](_0x15b139);}for(let _0x5f1136=-0x4b6+-0x4bf*-0x3+-0x987,_0x4800eb=_0x4ae905['\x6c\x65\x6e\x67\x74\x68'];_0x5f1136<_0x4800eb;_0x5f1136++){_0x50e80e+='\x25'+('\x30\x30'+_0x4ae905['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5f1136)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x7e4+-0x53b+-0x299))['\x73\x6c\x69\x63\x65'](-(0x190a+-0x9b1+-0xf57));}return decodeURIComponent(_0x50e80e);};const _0x3bb3c3=function(_0x206f04,_0x624fbc){let _0x49f8a2=[],_0x2a26bd=0x7*-0x29c+0x1231+0x13,_0x4d170c,_0x2debeb='';_0x206f04=_0x3d51b9(_0x206f04);let _0x3f0e8d;for(_0x3f0e8d=0xfd4+0xc92+-0x2*0xe33;_0x3f0e8d<0x1*-0x1537+-0x2628+0x1*0x3c5f;_0x3f0e8d++){_0x49f8a2[_0x3f0e8d]=_0x3f0e8d;}for(_0x3f0e8d=-0x2181+-0xbc2+0x2d43*0x1;_0x3f0e8d<-0x21bf*0x1+-0x281*-0x2+-0x17*-0x14b;_0x3f0e8d++){_0x2a26bd=(_0x2a26bd+_0x49f8a2[_0x3f0e8d]+_0x624fbc['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3f0e8d%_0x624fbc['\x6c\x65\x6e\x67\x74\x68']))%(0x78c+0x11*-0x64+0x18),_0x4d170c=_0x49f8a2[_0x3f0e8d],_0x49f8a2[_0x3f0e8d]=_0x49f8a2[_0x2a26bd],_0x49f8a2[_0x2a26bd]=_0x4d170c;}_0x3f0e8d=0x1e*0x11e+0x7a*-0x8+0x1db4*-0x1,_0x2a26bd=-0xf5*0x7+-0x1100+0x17b3;for(let _0x4a8db0=-0x11a*0x15+-0x18e9+-0xfb*-0x31;_0x4a8db0<_0x206f04['\x6c\x65\x6e\x67\x74\x68'];_0x4a8db0++){_0x3f0e8d=(_0x3f0e8d+(-0x1d3*-0x9+-0x1b04+0x2*0x54d))%(0xa51*-0x1+-0xfb*0x2+0x3*0x46d),_0x2a26bd=(_0x2a26bd+_0x49f8a2[_0x3f0e8d])%(0x2bf+0x13*-0x143+0x163a),_0x4d170c=_0x49f8a2[_0x3f0e8d],_0x49f8a2[_0x3f0e8d]=_0x49f8a2[_0x2a26bd],_0x49f8a2[_0x2a26bd]=_0x4d170c,_0x2debeb+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x206f04['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4a8db0)^_0x49f8a2[(_0x49f8a2[_0x3f0e8d]+_0x49f8a2[_0x2a26bd])%(-0xb*-0x151+-0x1f6+-0xb85)]);}return _0x2debeb;};_0x56d1['\x5a\x48\x66\x50\x72\x72']=_0x3bb3c3,_0x56d1['\x75\x61\x6c\x72\x4a\x57']={},_0x56d1['\x63\x6f\x49\x78\x55\x53']=!![];}const _0x16dc52=_0x1d3414[-0x434*-0x5+-0xa65*0x1+-0xa9f],_0x3201f0=_0x4692ff+_0x16dc52,_0x3cc3a4=_0x56d1['\x75\x61\x6c\x72\x4a\x57'][_0x3201f0];if(!_0x3cc3a4){if(_0x56d1['\x70\x4c\x4a\x4b\x76\x4a']===undefined){const _0x8d9def=function(_0x539adb){this['\x57\x68\x66\x6e\x41\x4a']=_0x539adb,this['\x46\x57\x4a\x6f\x77\x73']=[-0x1fa2+-0xc73*0x3+-0x14*-0x373,-0x2440+0x1da*-0x7+0x189b*0x2,0x1cd4+-0x1b8c+-0x52*0x4],this['\x53\x76\x48\x79\x50\x4f']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x62\x54\x63\x44\x6a\x4d']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x53\x69\x76\x69\x4f\x52']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x8d9def['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6c\x6d\x45\x76\x73\x4b']=function(){const _0x1d7aa1=new RegExp(this['\x62\x54\x63\x44\x6a\x4d']+this['\x53\x69\x76\x69\x4f\x52']),_0x38363b=_0x1d7aa1['\x74\x65\x73\x74'](this['\x53\x76\x48\x79\x50\x4f']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x46\x57\x4a\x6f\x77\x73'][-0x59d*-0x3+0x1ce7+-0x2dbd]:--this['\x46\x57\x4a\x6f\x77\x73'][-0x1*0x269e+-0x581+0x2c1f];return this['\x56\x57\x6d\x75\x67\x58'](_0x38363b);},_0x8d9def['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x56\x57\x6d\x75\x67\x58']=function(_0x3c5de0){if(!Boolean(~_0x3c5de0))return _0x3c5de0;return this['\x65\x73\x55\x54\x63\x77'](this['\x57\x68\x66\x6e\x41\x4a']);},_0x8d9def['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x65\x73\x55\x54\x63\x77']=function(_0x5cf37b){for(let _0x43cf12=0x69*-0x15+0xd*0x1a1+-0xc90,_0x371509=this['\x46\x57\x4a\x6f\x77\x73']['\x6c\x65\x6e\x67\x74\x68'];_0x43cf12<_0x371509;_0x43cf12++){this['\x46\x57\x4a\x6f\x77\x73']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x371509=this['\x46\x57\x4a\x6f\x77\x73']['\x6c\x65\x6e\x67\x74\x68'];}return _0x5cf37b(this['\x46\x57\x4a\x6f\x77\x73'][0xa6*-0x20+0x16bc+0x1fc*-0x1]);},(''+function(){return 0x19e7+-0x1*-0x16db+-0x30c2*0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x1ce4+0x25ae+-0x8c9)&&new _0x8d9def(_0x56d1)['\x6c\x6d\x45\x76\x73\x4b'](),_0x56d1['\x70\x4c\x4a\x4b\x76\x4a']=!![];}_0xdfcdbc=_0x56d1['\x5a\x48\x66\x50\x72\x72'](_0xdfcdbc,_0x21e4b8),_0x56d1['\x75\x61\x6c\x72\x4a\x57'][_0x3201f0]=_0xdfcdbc;}else _0xdfcdbc=_0x3cc3a4;return _0xdfcdbc;}_0xe98a02['\x65\x78\x70\x61\x6e\x64\x53\x69'+_0x13df9(0x1f3,'\x70\x72\x47\x59')]=_0x395c04,_0xe98a02[_0x13df9(0x179,'\x38\x59\x59\x33')]=_0x1da6b,_0xe98a02[_0x13df9(0x243,'\x67\x67\x34\x6a')+_0x13df9(0x1bc,'\x76\x70\x6f\x57')]=_0x24f140,module[_0x13df9(0x1c2,'\x29\x78\x4d\x56')]=_0xe98a02;
1
+ const _0x37ffef=_0x458f;function _0x4f78(){const _0x20c489=['\x57\x35\x4a\x63\x53\x66\x42\x63\x4c\x53\x6b\x39\x74\x63\x39\x36\x76\x43\x6f\x61\x78\x73\x70\x63\x48\x71','\x57\x34\x6d\x6b\x64\x43\x6f\x45\x57\x51\x53','\x57\x37\x78\x63\x49\x48\x79\x57\x70\x6d\x6f\x46\x6d\x48\x79','\x57\x36\x5a\x63\x47\x53\x6b\x44\x57\x34\x71\x4c\x61\x66\x34\x48','\x57\x4f\x43\x6a\x57\x37\x4a\x63\x51\x78\x57','\x57\x34\x75\x78\x67\x53\x6f\x79\x57\x51\x75','\x61\x38\x6b\x57\x7a\x73\x48\x55','\x57\x50\x79\x70\x64\x5a\x65','\x72\x58\x64\x64\x56\x78\x31\x7a','\x57\x52\x61\x2f\x62\x5a\x57\x76\x68\x38\x6f\x31\x57\x36\x38','\x74\x43\x6b\x46\x57\x50\x74\x63\x52\x6d\x6b\x37','\x57\x37\x79\x51\x62\x61','\x78\x47\x78\x63\x4d\x57\x68\x63\x4f\x53\x6f\x50\x57\x36\x4f','\x57\x51\x79\x45\x57\x35\x37\x63\x50\x53\x6f\x7a','\x57\x34\x33\x63\x55\x43\x6b\x74\x57\x36\x38\x79','\x72\x43\x6b\x2b\x57\x34\x5a\x64\x4c\x78\x61','\x57\x51\x52\x63\x52\x6d\x6f\x33\x57\x51\x64\x64\x4b\x71','\x71\x6d\x6b\x6a\x64\x43\x6f\x37','\x57\x51\x5a\x64\x4b\x53\x6f\x68\x57\x4f\x72\x57\x42\x66\x79\x78\x57\x37\x46\x64\x4a\x43\x6f\x58\x43\x71','\x75\x5a\x46\x64\x51\x77\x66\x58','\x43\x4e\x65\x31\x63\x33\x4b','\x57\x52\x42\x64\x4e\x6d\x6f\x49\x77\x43\x6f\x36','\x75\x53\x6f\x6f\x57\x37\x75\x31\x57\x52\x75\x46\x43\x78\x35\x43\x57\x37\x75\x66\x64\x71','\x79\x57\x70\x64\x53\x53\x6b\x54\x57\x34\x47','\x77\x38\x6b\x49\x57\x4f\x5a\x63\x54\x6d\x6f\x47\x57\x51\x50\x76\x57\x37\x43','\x72\x61\x74\x63\x4a\x57','\x72\x43\x6f\x5a\x67\x47\x74\x64\x4e\x47','\x57\x50\x61\x63\x57\x35\x37\x63\x4a\x6d\x6f\x61','\x57\x52\x69\x49\x57\x36\x64\x63\x51\x43\x6f\x39','\x57\x52\x42\x64\x4d\x72\x31\x54\x57\x51\x78\x64\x4e\x4e\x48\x70','\x74\x38\x6b\x4e\x57\x52\x78\x63\x51\x38\x6b\x47','\x57\x50\x78\x64\x4a\x53\x6b\x67\x57\x35\x37\x64\x50\x57','\x45\x38\x6f\x6a\x57\x36\x64\x64\x54\x4c\x69\x50\x57\x51\x54\x49','\x57\x35\x4a\x63\x49\x6d\x6b\x68\x57\x35\x53\x78','\x7a\x75\x31\x45\x57\x37\x75\x79','\x75\x62\x5a\x64\x4e\x38\x6f\x52\x57\x4f\x47','\x57\x35\x78\x63\x4d\x53\x6f\x34\x57\x36\x4a\x64\x4c\x43\x6b\x66\x57\x50\x48\x56\x57\x4f\x30','\x78\x53\x6f\x6e\x67\x49\x43','\x68\x6d\x6b\x68\x57\x50\x72\x70\x66\x43\x6f\x38\x57\x36\x76\x6e\x57\x50\x7a\x63','\x75\x6d\x6f\x4c\x57\x52\x44\x61\x42\x43\x6f\x70\x57\x52\x75\x76\x57\x37\x57','\x73\x31\x70\x64\x55\x78\x5a\x64\x48\x61','\x57\x4f\x33\x64\x48\x6d\x6b\x48\x57\x34\x4e\x64\x52\x6d\x6b\x4a\x57\x51\x34','\x57\x34\x74\x64\x4e\x33\x4f\x64\x57\x34\x75','\x61\x64\x43\x4c\x57\x4f\x71\x7a','\x71\x6d\x6b\x54\x6e\x38\x6f\x6b\x57\x35\x4f','\x41\x38\x6f\x6d\x69\x72\x4e\x64\x52\x47','\x57\x37\x52\x64\x53\x58\x68\x64\x52\x6d\x6b\x66','\x72\x43\x6b\x45\x57\x34\x33\x64\x49\x4b\x38','\x61\x76\x65\x31\x44\x76\x4a\x63\x4d\x57\x54\x36','\x57\x36\x33\x63\x4a\x4c\x4b\x57\x57\x37\x74\x64\x55\x4e\x48\x2f\x6d\x6d\x6b\x50\x6e\x61','\x57\x50\x70\x64\x4e\x63\x62\x4b\x57\x4f\x6d','\x75\x57\x46\x64\x51\x43\x6f\x6c\x57\x52\x30','\x57\x37\x5a\x64\x51\x6d\x6f\x41\x57\x50\x46\x63\x49\x57','\x57\x52\x6c\x63\x49\x43\x6f\x43\x57\x51\x37\x63\x4f\x31\x65\x73\x57\x4f\x57','\x57\x37\x33\x63\x49\x74\x57\x48','\x73\x38\x6f\x6c\x68\x74\x52\x64\x54\x53\x6f\x38\x6d\x53\x6b\x49','\x57\x51\x56\x63\x48\x71\x6d\x64\x75\x61','\x7a\x77\x64\x64\x4d\x33\x64\x63\x4a\x59\x75','\x57\x34\x48\x4b\x57\x51\x42\x64\x53\x38\x6f\x51\x57\x36\x35\x58\x57\x50\x37\x64\x49\x6d\x6f\x35','\x57\x35\x56\x64\x54\x63\x37\x64\x48\x43\x6b\x32','\x41\x43\x6f\x51\x67\x47\x6c\x64\x49\x61','\x77\x49\x6c\x64\x50\x4d\x39\x33\x57\x34\x43','\x42\x43\x6b\x4c\x6c\x53\x6f\x47\x57\x35\x6c\x64\x4c\x53\x6b\x75\x6c\x47','\x41\x30\x44\x45\x57\x36\x30\x63\x57\x50\x30\x37','\x57\x50\x5a\x63\x4a\x43\x6f\x43\x57\x52\x33\x64\x54\x75\x6d\x6a','\x65\x6d\x6b\x51\x57\x52\x76\x59\x57\x35\x38','\x72\x38\x6f\x77\x57\x35\x71\x45\x6e\x53\x6f\x47\x57\x36\x58\x75','\x77\x6d\x6b\x43\x57\x4f\x52\x63\x51\x53\x6b\x61','\x64\x53\x6b\x31\x57\x4f\x76\x75\x57\x34\x6d','\x57\x52\x46\x64\x48\x4b\x72\x6e\x79\x47','\x57\x52\x75\x53\x65\x67\x53','\x68\x38\x6f\x66\x76\x43\x6b\x52','\x57\x4f\x33\x64\x55\x43\x6b\x64\x57\x37\x42\x64\x4f\x61','\x57\x51\x5a\x64\x56\x71\x31\x57\x57\x4f\x38','\x63\x72\x65\x49\x57\x4f\x4b\x78','\x6a\x43\x6b\x44\x43\x64\x58\x61','\x69\x67\x2f\x63\x47\x43\x6b\x34\x6b\x6d\x6b\x36\x57\x34\x6d','\x78\x6d\x6f\x54\x57\x52\x43\x78\x7a\x6d\x6f\x6d\x57\x52\x4f\x63\x57\x36\x5a\x63\x4f\x61','\x41\x68\x46\x64\x4b\x68\x42\x64\x47\x73\x64\x63\x4a\x53\x6f\x30','\x57\x4f\x68\x64\x48\x53\x6b\x79\x57\x35\x4a\x64\x49\x47','\x6c\x78\x37\x63\x4a\x6d\x6b\x2f\x64\x47','\x57\x51\x37\x64\x50\x31\x7a\x74\x76\x61','\x57\x36\x56\x64\x51\x38\x6b\x51','\x79\x31\x6a\x36\x57\x35\x71\x4f','\x57\x35\x46\x64\x54\x43\x6f\x70\x57\x4f\x47\x32','\x57\x52\x74\x64\x53\x53\x6b\x47\x57\x37\x52\x64\x4d\x71','\x57\x50\x70\x64\x4d\x6d\x6b\x48\x57\x35\x33\x64\x4f\x43\x6b\x59\x57\x51\x79\x44','\x73\x43\x6f\x77\x57\x35\x71','\x44\x61\x56\x64\x4f\x43\x6b\x49','\x74\x38\x6b\x7a\x57\x36\x37\x64\x4b\x30\x57','\x57\x34\x50\x7a\x76\x67\x38\x6f\x74\x43\x6b\x4e\x77\x62\x50\x50','\x73\x43\x6f\x68\x62\x5a\x64\x64\x55\x6d\x6f\x4d','\x57\x51\x47\x76\x65\x61\x79\x30','\x57\x50\x4e\x64\x54\x61\x6e\x62\x57\x51\x75','\x57\x52\x75\x38\x65\x77\x78\x63\x49\x38\x6f\x35\x57\x4f\x4a\x63\x52\x61','\x71\x53\x6b\x38\x57\x34\x4e\x64\x4b\x71','\x6e\x4b\x6c\x64\x52\x6d\x6b\x46\x57\x4f\x72\x79\x62\x57\x4f','\x57\x34\x38\x68\x61\x38\x6b\x76\x42\x57','\x57\x51\x2f\x63\x55\x49\x53\x69\x78\x71','\x66\x53\x6f\x6a\x61\x38\x6f\x79\x57\x34\x2f\x64\x50\x6d\x6b\x43\x79\x57','\x57\x34\x4e\x63\x50\x6d\x6b\x78\x57\x37\x4b\x48','\x57\x37\x2f\x64\x51\x43\x6f\x48\x57\x50\x43','\x57\x52\x5a\x63\x4a\x43\x6b\x35\x6f\x66\x42\x63\x48\x53\x6f\x4c\x67\x71','\x73\x38\x6b\x34\x57\x4f\x44\x48\x57\x52\x42\x63\x4a\x72\x75','\x57\x52\x50\x64\x63\x53\x6f\x44\x57\x50\x66\x63','\x57\x35\x70\x63\x4b\x53\x6b\x62\x57\x35\x4f\x71','\x57\x50\x4e\x63\x51\x71\x34\x65\x44\x53\x6f\x32\x57\x36\x74\x64\x4f\x61','\x45\x53\x6b\x39\x57\x35\x70\x64\x4b\x66\x71','\x57\x37\x37\x64\x4e\x33\x53\x4a\x57\x34\x4b','\x74\x43\x6f\x65\x57\x36\x75\x6e\x6a\x53\x6f\x4f\x57\x37\x4b','\x57\x52\x6c\x64\x4b\x65\x43','\x57\x51\x78\x64\x49\x47\x7a\x51\x57\x51\x37\x64\x4c\x67\x43\x6d','\x57\x36\x64\x64\x56\x43\x6f\x48\x57\x4f\x46\x63\x50\x57','\x73\x38\x6f\x6c\x68\x74\x52\x64\x54\x53\x6f\x38\x6d\x53\x6b\x2f','\x7a\x38\x6b\x48\x6d\x61','\x57\x50\x64\x63\x4a\x64\x39\x42\x57\x52\x4a\x63\x4c\x57\x46\x64\x50\x6d\x6f\x59\x46\x6d\x6b\x2b\x66\x47','\x57\x37\x72\x38\x75\x32\x35\x69\x72\x38\x6f\x6a\x57\x36\x35\x6d\x73\x6d\x6f\x76\x67\x47','\x78\x38\x6f\x4f\x57\x36\x78\x64\x4a\x78\x4b','\x79\x6d\x6f\x58\x63\x64\x6c\x64\x54\x47','\x57\x52\x4f\x6b\x69\x64\x47\x49','\x42\x5a\x2f\x64\x4e\x38\x6b\x36\x57\x37\x61','\x57\x50\x71\x31\x57\x36\x4e\x63\x4c\x53\x6f\x79','\x57\x50\x6d\x56\x6c\x57\x57\x33','\x57\x52\x79\x50\x64\x32\x52\x63\x4b\x61','\x57\x37\x56\x63\x52\x38\x6b\x77\x57\x36\x69\x4c','\x57\x52\x6d\x55\x66\x4a\x34\x34','\x62\x38\x6b\x43\x46\x71\x42\x64\x48\x72\x2f\x63\x47\x5a\x4f\x41','\x57\x36\x4f\x41\x75\x6d\x6f\x2b\x57\x51\x58\x49\x57\x51\x31\x43\x77\x57','\x57\x37\x64\x64\x4c\x53\x6f\x46\x57\x51\x74\x64\x4f\x62\x2f\x63\x4f\x38\x6f\x41','\x72\x73\x6c\x64\x51\x78\x50\x47\x57\x34\x43','\x61\x6d\x6b\x6f\x57\x51\x75','\x57\x52\x6d\x55\x66\x64\x30\x75\x64\x6d\x6f\x53\x57\x36\x43','\x57\x36\x4e\x64\x4a\x38\x6b\x45\x6e\x57\x70\x63\x4f\x53\x6f\x55\x68\x57','\x61\x6d\x6b\x70\x57\x51\x76\x4d\x57\x52\x39\x69\x41\x4b\x57','\x57\x36\x34\x74\x78\x38\x6f\x4d\x57\x50\x54\x68\x57\x50\x50\x4b\x44\x47','\x75\x38\x6b\x32\x57\x35\x64\x64\x4e\x77\x52\x64\x55\x6d\x6b\x78\x65\x47','\x66\x30\x61\x49\x44\x65\x56\x63\x47\x57\x53','\x41\x58\x74\x63\x56\x57\x64\x63\x47\x47','\x79\x43\x6f\x67\x57\x35\x71\x34\x62\x71','\x6b\x75\x42\x64\x54\x6d\x6b\x76\x57\x4f\x30','\x57\x37\x46\x64\x49\x61\x79','\x41\x4b\x74\x64\x4f\x78\x37\x64\x52\x57','\x44\x62\x42\x64\x4d\x38\x6b\x37\x57\x34\x4c\x72\x79\x71\x30','\x62\x43\x6b\x56\x57\x36\x6a\x67\x68\x38\x6f\x75\x57\x52\x4f\x46','\x57\x50\x64\x64\x4e\x53\x6b\x38\x57\x35\x42\x64\x4f\x38\x6b\x57','\x41\x4b\x7a\x6d\x57\x36\x30\x7a\x57\x50\x6d\x48\x61\x47','\x57\x4f\x65\x62\x69\x75\x6c\x63\x47\x61','\x75\x43\x6b\x69\x6d\x38\x6f\x78\x57\x35\x43','\x41\x66\x6c\x64\x4b\x76\x4e\x64\x51\x5a\x79','\x72\x38\x6f\x6c\x61\x71\x37\x64\x55\x47\x5a\x63\x4d\x58\x34','\x44\x4b\x7a\x6d\x57\x36\x30','\x57\x52\x43\x55\x66\x73\x38','\x62\x38\x6b\x59\x57\x36\x4c\x75\x75\x43\x6f\x6c\x57\x51\x4f\x72','\x6f\x77\x37\x63\x52\x38\x6b\x2b\x6e\x43\x6b\x34\x57\x35\x78\x64\x49\x71','\x62\x53\x6f\x79\x74\x53\x6f\x34\x57\x37\x74\x63\x55\x38\x6f\x64\x57\x50\x74\x63\x54\x71','\x6f\x66\x79\x62\x74\x76\x6d','\x57\x52\x38\x49\x66\x71\x34\x78','\x57\x36\x2f\x63\x4e\x49\x61\x34','\x41\x43\x6b\x48\x6e\x6d\x6f\x47\x57\x36\x68\x64\x4d\x6d\x6b\x62\x6a\x61','\x57\x4f\x70\x64\x4c\x53\x6f\x68\x77\x43\x6f\x38','\x57\x50\x42\x63\x49\x74\x69\x44\x57\x37\x37\x64\x4f\x59\x70\x64\x55\x38\x6f\x53','\x70\x53\x6f\x57\x61\x53\x6f\x52\x57\x36\x4e\x64\x4f\x38\x6b\x6b\x6e\x61','\x57\x51\x69\x4f\x65\x4a\x69\x75\x65\x6d\x6b\x37\x57\x36\x38','\x6f\x38\x6f\x59\x45\x6d\x6f\x32\x57\x37\x70\x64\x55\x53\x6b\x46\x6b\x48\x30','\x57\x35\x69\x34\x62\x6d\x6b\x31\x75\x71','\x41\x6d\x6f\x65\x57\x35\x43\x74\x62\x61','\x57\x50\x5a\x64\x54\x59\x52\x64\x49\x6d\x6f\x4d','\x72\x43\x6f\x66\x57\x34\x65\x45\x42\x53\x6f\x4d\x57\x37\x6a\x45','\x57\x52\x56\x63\x4c\x53\x6b\x57\x6c\x71\x4e\x63\x48\x61','\x57\x51\x52\x64\x50\x4e\x76\x52\x74\x71','\x57\x51\x6d\x77\x57\x35\x2f\x63\x56\x4d\x75','\x61\x4b\x69\x6b\x43\x32\x65','\x43\x48\x37\x63\x53\x53\x6f\x67\x57\x51\x31\x42\x61\x72\x61\x6d\x57\x51\x57','\x57\x52\x6c\x63\x4e\x43\x6b\x32\x70\x61\x2f\x63\x47\x47','\x57\x51\x48\x70\x66\x43\x6f\x44','\x75\x38\x6f\x65\x57\x37\x4c\x69\x57\x36\x50\x71\x46\x66\x39\x33','\x71\x38\x6b\x4f\x6e\x43\x6f\x36\x57\x37\x47','\x71\x43\x6f\x76\x57\x35\x5a\x64\x47\x4c\x71','\x57\x36\x6c\x64\x4c\x62\x65','\x73\x53\x6f\x77\x57\x34\x53\x73\x66\x71','\x76\x75\x75\x72\x61\x4e\x69','\x57\x52\x66\x41\x65\x47','\x57\x34\x43\x4a\x65\x53\x6b\x77\x73\x57','\x65\x38\x6b\x41\x57\x37\x44\x71\x44\x57','\x57\x51\x52\x63\x56\x71\x57\x4b\x78\x71','\x7a\x6d\x6f\x49\x6a\x4a\x64\x64\x4f\x47','\x73\x38\x6f\x6c\x68\x74\x52\x64\x54\x53\x6f\x38\x6d\x47','\x57\x34\x74\x64\x51\x38\x6f\x45\x57\x51\x5a\x63\x56\x57','\x72\x43\x6b\x4e\x57\x34\x46\x64\x4b\x4d\x78\x64\x53\x6d\x6b\x33\x6a\x61','\x7a\x71\x4e\x64\x52\x78\x4c\x55','\x46\x30\x74\x64\x4a\x66\x2f\x63\x55\x61','\x6f\x65\x2f\x63\x55\x6d\x6f\x33\x57\x4f\x31\x5a\x46\x73\x6d\x74\x71\x64\x38','\x57\x51\x39\x46\x63\x38\x6f\x65\x57\x50\x76\x63\x57\x4f\x43','\x57\x50\x74\x63\x52\x58\x71\x6b\x42\x43\x6f\x57','\x57\x52\x64\x63\x4d\x53\x6f\x6a\x57\x51\x37\x64\x55\x30\x53\x76\x57\x4f\x57','\x57\x50\x46\x64\x4a\x38\x6b\x39\x57\x34\x53','\x72\x38\x6f\x62\x70\x48\x75','\x57\x50\x74\x64\x51\x43\x6b\x69\x57\x34\x46\x64\x54\x71','\x43\x61\x5a\x64\x55\x38\x6b\x4e'];_0x4f78=function(){return _0x20c489;};return _0x4f78();}(function(_0x5a9b99,_0x4e8f06){const _0x338d81=_0x458f,_0x8e4d8e=_0x5a9b99();while(!![]){try{const _0x3f18ef=parseInt(_0x338d81(0x12e,'\x45\x56\x37\x44'))/(-0x1b4d+-0x1d44+0x3892)*(-parseInt(_0x338d81(0xc5,'\x39\x39\x54\x21'))/(-0x2640+0x10fe+0x1544))+parseInt(_0x338d81(0x109,'\x51\x40\x39\x57'))/(-0xe1*-0x21+0x1423+0x1*-0x3121)*(parseInt(_0x338d81(0xb1,'\x4f\x62\x64\x52'))/(0x1*0x190b+0x3*-0xc9+-0x16ac))+-parseInt(_0x338d81(0x70,'\x4b\x32\x70\x48'))/(-0xaa0+0x205b+0x1*-0x15b6)*(-parseInt(_0x338d81(0xaf,'\x56\x47\x25\x39'))/(-0x8*-0x3b9+0x26b3+0x4475*-0x1))+parseInt(_0x338d81(0x8b,'\x29\x4a\x2a\x6c'))/(-0x1994+-0x9b*-0x1a+-0x19*-0x65)+-parseInt(_0x338d81(0x10f,'\x5b\x41\x55\x52'))/(-0x1759+-0xeda*-0x1+0x887)*(-parseInt(_0x338d81(0xfe,'\x53\x40\x21\x70'))/(-0x19af+0x1456+0x562))+-parseInt(_0x338d81(0x125,'\x39\x78\x52\x61'))/(-0x56f+-0x1*-0x21aa+-0x407*0x7)*(-parseInt(_0x338d81(0x83,'\x4c\x70\x77\x25'))/(0x68e+-0x47f*-0x1+-0xb02))+-parseInt(_0x338d81(0x9d,'\x5a\x6f\x36\x68'))/(0x47d+-0xdaa+0x939)*(parseInt(_0x338d81(0x73,'\x21\x30\x6e\x71'))/(-0x1ff+-0x226b+0x2477));if(_0x3f18ef===_0x4e8f06)break;else _0x8e4d8e['push'](_0x8e4d8e['shift']());}catch(_0x21eacb){_0x8e4d8e['push'](_0x8e4d8e['shift']());}}}(_0x4f78,-0x665b2+-0x50c1a+0xf1104));const _0x261d60=(function(){const _0x690b22=_0x458f,_0x9bfda8={'\x6e\x61\x6f\x6d\x41':function(_0x173e6c,_0x1a9e9f,_0x199873){return _0x173e6c(_0x1a9e9f,_0x199873);},'\x4a\x59\x61\x61\x6f':_0x690b22(0xd9,'\x57\x26\x45\x39')+_0x690b22(0xf9,'\x5e\x49\x4f\x5d'),'\x54\x53\x6a\x59\x47':function(_0x442f4a,_0x325486){return _0x442f4a===_0x325486;},'\x6f\x48\x45\x53\x46':_0x690b22(0xd6,'\x4b\x62\x25\x4c')};let _0x3afdd1=!![];return function(_0x1f600d,_0x3daa40){const _0xf7391d=_0x3afdd1?function(){const _0x1d663e=_0x458f,_0xd14ca8={'\x4b\x43\x59\x77\x63':function(_0xf774ce,_0x597713,_0x1908f4){const _0x48f3a7=_0x458f;return _0x9bfda8[_0x48f3a7(0x77,'\x4f\x62\x64\x52')](_0xf774ce,_0x597713,_0x1908f4);},'\x79\x78\x74\x4d\x6c':_0x9bfda8[_0x1d663e(0x101,'\x78\x42\x78\x30')]};if(_0x3daa40){if(_0x9bfda8[_0x1d663e(0x100,'\x55\x55\x5b\x43')](_0x1d663e(0x81,'\x23\x53\x72\x30'),_0x9bfda8[_0x1d663e(0xcf,'\x21\x30\x6e\x71')])){const _0x12ca1a=_0x3daa40['\x61\x70\x70\x6c\x79'](_0x1f600d,arguments);return _0x3daa40=null,_0x12ca1a;}else _0xd14ca8['\x4b\x43\x59\x77\x63'](_0x1ac0e0,_0x1165a2,_0xd14ca8['\x79\x78\x74\x4d\x6c']);}}:function(){};return _0x3afdd1=![],_0xf7391d;};}()),_0x217899=_0x261d60(this,function(){const _0x193062=_0x458f,_0x39ae49={};_0x39ae49[_0x193062(0x104,'\x39\x39\x54\x21')]=_0x193062(0x8d,'\x5e\x49\x4f\x5d')+_0x193062(0xd2,'\x39\x78\x52\x61');const _0x3a67ea=_0x39ae49;return _0x217899[_0x193062(0x10b,'\x54\x6f\x21\x44')]()[_0x193062(0x10c,'\x23\x53\x72\x30')](_0x3a67ea[_0x193062(0xd0,'\x5e\x49\x4f\x5d')])[_0x193062(0x119,'\x4c\x70\x77\x25')]()[_0x193062(0x123,'\x75\x56\x30\x53')+_0x193062(0x117,'\x65\x76\x75\x28')](_0x217899)[_0x193062(0x11f,'\x48\x69\x42\x62')](_0x3a67ea[_0x193062(0xdf,'\x6b\x45\x49\x63')]);});_0x217899();function _0x1ef117(_0x547fbe){const _0x5609be=_0x458f,_0xfe58dc={'\x65\x6b\x65\x42\x4b':function(_0x193382,_0x1c9e01,_0x560904){return _0x193382(_0x1c9e01,_0x560904);},'\x76\x41\x79\x48\x43':'\x70\x72\x6f\x62\x6c\x65\x6d\x3a'+_0x5609be(0xe9,'\x50\x6c\x73\x45')+'\x6e\x63\x65','\x63\x47\x55\x70\x46':_0x5609be(0xf5,'\x5d\x38\x45\x57')+'\x70\x74\x69\x6d\x69\x7a\x65','\x4a\x42\x58\x6d\x78':function(_0x46964f,_0x562720){return _0x46964f!==_0x562720;},'\x73\x74\x48\x68\x61':'\x73\x50\x6d\x76\x4b','\x71\x47\x78\x61\x4b':function(_0x10b4d4,_0x1778bf){return _0x10b4d4(_0x1778bf);}};return Array[_0x5609be(0xc1,'\x4c\x65\x31\x33')](new Set((Array[_0x5609be(0xf2,'\x73\x72\x39\x39')](_0x547fbe)?_0x547fbe:[])[_0x5609be(0x6c,'\x5b\x41\x55\x52')](Boolean)[_0x5609be(0xe2,'\x4f\x62\x64\x52')](function(_0x4dd2dc){const _0x5eb0d3=_0x5609be,_0xfccbd7={'\x79\x57\x4e\x6f\x48':function(_0x46f84b,_0x49c3fc,_0x5427c1){return _0xfe58dc['\x65\x6b\x65\x42\x4b'](_0x46f84b,_0x49c3fc,_0x5427c1);},'\x75\x4d\x78\x47\x67':_0xfe58dc[_0x5eb0d3(0x82,'\x57\x26\x45\x39')],'\x4b\x77\x4c\x53\x55':_0xfe58dc['\x63\x47\x55\x70\x46']};if(_0xfe58dc['\x4a\x42\x58\x6d\x78'](_0xfe58dc[_0x5eb0d3(0xbf,'\x73\x79\x41\x57')],_0x5eb0d3(0xba,'\x48\x61\x4b\x47')))_0xfccbd7[_0x5eb0d3(0x9b,'\x43\x75\x39\x5b')](_0x23e00a,_0x2f4ae4,_0xfccbd7['\x75\x4d\x78\x47\x67']),_0xfccbd7[_0x5eb0d3(0xe4,'\x48\x61\x4b\x47')](_0x2168bf,_0x11e179,_0xfccbd7[_0x5eb0d3(0x7f,'\x73\x79\x41\x57')]);else return _0xfe58dc['\x71\x47\x78\x61\x4b'](String,_0x4dd2dc)[_0x5eb0d3(0xea,'\x48\x61\x4b\x47')]();})[_0x5609be(0xf3,'\x30\x4f\x47\x38')](Boolean)));}function _0x3912bd(_0x39e040,_0x2f0b20){const _0x1b232d=_0x458f,_0x1ea09f={'\x41\x5a\x61\x62\x45':function(_0x230213,_0x25835c){return _0x230213(_0x25835c);}};if(!_0x2f0b20)return;_0x39e040[_0x1b232d(0x8a,'\x4c\x70\x77\x25')](_0x1ea09f[_0x1b232d(0x90,'\x5a\x76\x75\x65')](String,_0x2f0b20)[_0x1b232d(0xe3,'\x4c\x70\x77\x25')]());}function _0x26cbf5(_0x19e4ac,_0x29f565){const _0xf2b459=_0x458f,_0x3b3992={'\x52\x58\x61\x59\x58':'\x70\x72\x6f\x62\x6c\x65\x6d\x3a'+_0xf2b459(0xcd,'\x4f\x62\x64\x52')+'\x74\x79','\x46\x45\x61\x44\x48':_0xf2b459(0x12d,'\x31\x2a\x2a\x41')+'\x6e\x6e\x6f\x76\x61\x74\x65','\x79\x45\x64\x78\x4d':function(_0x555ede,_0x2cb5a8){return _0x555ede!==_0x2cb5a8;},'\x45\x6f\x55\x65\x45':_0xf2b459(0xe7,'\x64\x33\x54\x47'),'\x59\x68\x65\x4f\x4a':_0xf2b459(0x7c,'\x5d\x38\x45\x57'),'\x63\x64\x70\x6d\x4e':function(_0x1feba4,_0x5de835){return _0x1feba4(_0x5de835);},'\x71\x57\x75\x75\x5a':function(_0x1f525f,_0x1acb33,_0x2cec8a){return _0x1f525f(_0x1acb33,_0x2cec8a);},'\x61\x71\x45\x4d\x43':_0xf2b459(0xc0,'\x43\x75\x39\x5b')+_0xf2b459(0xdd,'\x79\x6f\x26\x29'),'\x46\x72\x49\x64\x62':function(_0x42376b,_0x15dd4b,_0x2205d8){return _0x42376b(_0x15dd4b,_0x2205d8);},'\x46\x6a\x46\x67\x64':function(_0x42d65c,_0x3cb394){return _0x42d65c!==_0x3cb394;},'\x4a\x6e\x53\x56\x6a':function(_0x2aae80,_0x556c7a){return _0x2aae80(_0x556c7a);},'\x4c\x73\x73\x6c\x50':function(_0x31a72a,_0xffebf9,_0x365ae1){return _0x31a72a(_0xffebf9,_0x365ae1);},'\x71\x73\x51\x55\x67':_0xf2b459(0x110,'\x21\x30\x6e\x71')+_0xf2b459(0x11c,'\x49\x75\x5a\x63')+'\x6f\x6e','\x43\x42\x73\x51\x51':_0xf2b459(0xfa,'\x65\x69\x45\x52')+_0xf2b459(0xeb,'\x4b\x32\x70\x48')+_0xf2b459(0xa4,'\x48\x23\x55\x72'),'\x46\x64\x49\x6c\x41':_0xf2b459(0x7b,'\x75\x56\x30\x53'),'\x6e\x53\x4d\x49\x6d':function(_0x5a4ea7,_0x3b8cb8){return _0x5a4ea7+_0x3b8cb8;},'\x76\x64\x48\x61\x6a':_0xf2b459(0xee,'\x62\x61\x5a\x23')+_0xf2b459(0x124,'\x30\x6c\x42\x6a'),'\x70\x65\x70\x65\x43':_0xf2b459(0xfc,'\x78\x42\x78\x30')+'\x70\x74\x69\x6d\x69\x7a\x65','\x75\x72\x48\x68\x6c':_0xf2b459(0xf1,'\x5b\x41\x55\x52')+_0xf2b459(0x79,'\x30\x4f\x47\x38'),'\x58\x4f\x4d\x63\x74':function(_0x2e4514,_0x25e794){return _0x2e4514===_0x25e794;},'\x57\x5a\x4f\x5a\x5a':_0xf2b459(0xda,'\x56\x47\x25\x39'),'\x64\x62\x4c\x75\x54':_0xf2b459(0xab,'\x55\x55\x5b\x43')+_0xf2b459(0x10e,'\x31\x2a\x2a\x41')+'\x6e\x63\x65','\x77\x44\x4b\x75\x5a':'\x77\x53\x50\x67\x4a','\x79\x54\x65\x6f\x57':function(_0x2e6081,_0x2f96f3,_0x14dea5){return _0x2e6081(_0x2f96f3,_0x14dea5);},'\x73\x45\x68\x4d\x43':function(_0x5b18df,_0x24852f,_0x37fcea){return _0x5b18df(_0x24852f,_0x37fcea);},'\x77\x73\x53\x49\x53':function(_0x29b3c7,_0x223727){return _0x29b3c7!==_0x223727;},'\x57\x70\x51\x65\x44':_0xf2b459(0x11d,'\x50\x6c\x73\x45'),'\x56\x45\x65\x4f\x61':function(_0x2aebff,_0xdcba29,_0x1a735d){return _0x2aebff(_0xdcba29,_0x1a735d);},'\x57\x46\x6b\x51\x6f':function(_0x11f0d6,_0x41c076){return _0x11f0d6!==_0x41c076;},'\x74\x41\x49\x45\x78':'\x59\x64\x71\x4d\x42','\x64\x54\x6b\x73\x61':_0xf2b459(0x11a,'\x75\x56\x30\x53')+'\x6f\x72\x79','\x64\x4e\x64\x54\x65':function(_0x564f99,_0x2fe563){return _0x564f99===_0x2fe563;},'\x66\x6c\x4a\x74\x7a':_0xf2b459(0xb8,'\x51\x40\x39\x57'),'\x45\x6b\x42\x61\x43':_0xf2b459(0x103,'\x4c\x70\x77\x25'),'\x76\x57\x57\x65\x53':function(_0x9ba826,_0x215967,_0x26d6c0){return _0x9ba826(_0x215967,_0x26d6c0);},'\x4c\x4c\x6a\x49\x67':_0xf2b459(0xa3,'\x49\x23\x6a\x66')+_0xf2b459(0xca,'\x49\x75\x5a\x63'),'\x75\x63\x70\x65\x43':function(_0x15545c,_0xe7da2c){return _0x15545c(_0xe7da2c);}},_0x17ab70=Array[_0xf2b459(0xf8,'\x4f\x62\x64\x52')](_0x19e4ac)?_0x19e4ac[_0xf2b459(0xfd,'\x45\x56\x37\x44')](function(_0x3a1e32){const _0x47f989=_0xf2b459,_0x307e71={'\x45\x71\x70\x47\x51':function(_0x179ad6,_0x175862,_0x1e7fde){return _0x179ad6(_0x175862,_0x1e7fde);},'\x63\x7a\x7a\x62\x73':_0x3b3992[_0x47f989(0x99,'\x5a\x6f\x36\x68')],'\x58\x53\x5a\x46\x64':_0x3b3992[_0x47f989(0x9f,'\x47\x5e\x24\x5e')]};if(_0x3b3992[_0x47f989(0xd4,'\x65\x69\x45\x52')](_0x3b3992[_0x47f989(0xa0,'\x68\x30\x6c\x38')],_0x3b3992[_0x47f989(0x7a,'\x26\x5d\x74\x72')]))return _0x3b3992[_0x47f989(0xb5,'\x53\x40\x21\x70')](String,_0x3a1e32);else _0x307e71[_0x47f989(0x115,'\x4f\x62\x64\x52')](_0x1b9d46,_0x3b1c43,_0x307e71[_0x47f989(0xa2,'\x4c\x70\x77\x25')]),_0x307e71[_0x47f989(0xae,'\x73\x5d\x42\x24')](_0x24e3e4,_0x39eebb,_0x307e71[_0x47f989(0xc6,'\x65\x76\x75\x28')]);}):[],_0x20fcbd=[];for(let _0xeb8e88=0x1fb8+0x2ca+-0x2282;_0xeb8e88<_0x17ab70[_0xf2b459(0x85,'\x5d\x38\x45\x57')];_0xeb8e88++){if(_0x3b3992[_0xf2b459(0xbe,'\x73\x5d\x42\x24')](_0x3b3992[_0xf2b459(0x114,'\x48\x23\x55\x72')],_0x3b3992[_0xf2b459(0xbd,'\x65\x69\x45\x52')]))_0x3b3992['\x71\x57\x75\x75\x5a'](_0x25b76d,_0x5d3a4d,_0x3b3992[_0xf2b459(0xde,'\x49\x75\x5a\x63')]);else{const _0x490e7b=_0x17ab70[_0xeb8e88];_0x3912bd(_0x20fcbd,_0x490e7b);const _0x397e07=_0x490e7b[_0xf2b459(0x9a,'\x48\x61\x4b\x47')]('\x3a')[0x103*-0x22+-0x143*0x17+0x1*0x3f6b];if(_0x397e07&&_0x397e07!==_0x490e7b)_0x3912bd(_0x20fcbd,_0x397e07);}}const _0x28283b=_0x3b3992[_0xf2b459(0xd3,'\x56\x47\x25\x39')](_0x3b3992[_0xf2b459(0xa6,'\x39\x39\x54\x21')](_0x17ab70[_0xf2b459(0x92,'\x64\x33\x54\x47')]('\x20'),'\x20'),_0x3b3992[_0xf2b459(0x75,'\x55\x55\x5b\x43')](String,_0x29f565||''))[_0xf2b459(0x120,'\x51\x40\x39\x57')+_0xf2b459(0x76,'\x65\x76\x75\x28')]();/(error|exception|failed|unstable|log_error|runtime|429)/[_0xf2b459(0x128,'\x4c\x65\x31\x33')](_0x28283b)&&(_0x3b3992[_0xf2b459(0xd5,'\x31\x25\x36\x2a')](_0x3912bd,_0x20fcbd,_0x3b3992[_0xf2b459(0xc7,'\x78\x42\x78\x30')]),_0x3b3992[_0xf2b459(0x93,'\x23\x53\x72\x30')](_0x3912bd,_0x20fcbd,'\x61\x63\x74\x69\x6f\x6e\x3a\x72'+'\x65\x70\x61\x69\x72'));/(protocol|prompt|audit|gep|schema|drift)/[_0xf2b459(0x121,'\x49\x75\x5a\x63')](_0x28283b)&&(_0x3b3992[_0xf2b459(0xa7,'\x39\x39\x54\x21')](_0x3912bd,_0x20fcbd,_0x3b3992[_0xf2b459(0xaa,'\x56\x47\x25\x39')]),_0x3b3992[_0xf2b459(0x69,'\x4f\x62\x64\x52')](_0x3912bd,_0x20fcbd,_0x3b3992[_0xf2b459(0x12a,'\x68\x30\x6c\x38')]),_0x3912bd(_0x20fcbd,_0x3b3992[_0xf2b459(0x6a,'\x29\x4a\x2a\x6c')]));if(/(perf|performance|bottleneck|latency|slow|throughput)/[_0xf2b459(0x87,'\x56\x47\x25\x39')](_0x28283b)){if(_0x3b3992[_0xf2b459(0x98,'\x39\x39\x54\x21')](_0x3b3992[_0xf2b459(0x6e,'\x21\x34\x52\x70')],_0xf2b459(0x89,'\x56\x47\x25\x39'))){if(_0x2d9deb[_0xf2b459(0x96,'\x26\x5d\x74\x72')](_0x4f6467[_0x488e66]))_0x2f3a08++;}else _0x3912bd(_0x20fcbd,_0x3b3992[_0xf2b459(0xdb,'\x30\x6c\x42\x6a')]),_0x3b3992[_0xf2b459(0x68,'\x26\x5d\x74\x72')](_0x3912bd,_0x20fcbd,_0x3b3992[_0xf2b459(0x108,'\x31\x2a\x2a\x41')]);}if(/(feature|capability_gap|user_feature_request|external_opportunity|stagnation recommendation)/[_0xf2b459(0x72,'\x30\x4f\x47\x38')](_0x28283b)){if(_0x3b3992[_0xf2b459(0x6d,'\x5e\x49\x4f\x5d')]!==_0x3b3992[_0xf2b459(0x74,'\x39\x78\x52\x61')]){const _0x487b15=_0x109ac8[_0x3ca92f];_0x3b3992[_0xf2b459(0xd5,'\x31\x25\x36\x2a')](_0x205858,_0x337969,_0x487b15);const _0x2344fb=_0x487b15[_0xf2b459(0x106,'\x50\x6c\x73\x45')]('\x3a')[0xb50+-0x1fc+-0x2*0x4aa];if(_0x2344fb&&_0x3b3992[_0xf2b459(0x102,'\x64\x33\x54\x47')](_0x2344fb,_0x487b15))_0x3b3992[_0xf2b459(0xcc,'\x21\x30\x6e\x71')](_0x4b981e,_0x36156b,_0x2344fb);}else _0x3b3992[_0xf2b459(0xb9,'\x65\x76\x75\x28')](_0x3912bd,_0x20fcbd,_0xf2b459(0xe1,'\x56\x47\x25\x39')+_0xf2b459(0x86,'\x43\x75\x39\x5b')+'\x74\x79'),_0x3b3992[_0xf2b459(0x8f,'\x21\x34\x52\x70')](_0x3912bd,_0x20fcbd,'\x61\x63\x74\x69\x6f\x6e\x3a\x69'+_0xf2b459(0xb4,'\x56\x47\x25\x39'));}if(/(stagnation|plateau|steady_state|saturation|empty_cycle_loop|loop_detected|recurring)/[_0xf2b459(0x122,'\x31\x2a\x2a\x41')](_0x28283b)){if(_0x3b3992['\x77\x73\x53\x49\x53'](_0x3b3992['\x57\x70\x51\x65\x44'],_0x3b3992[_0xf2b459(0xed,'\x5d\x38\x45\x57')]))return ICgznW[_0xf2b459(0x126,'\x25\x64\x2a\x25')](_0x3cb2eb,_0x39feea)['\x74\x72\x69\x6d']();else _0x3b3992[_0xf2b459(0xef,'\x5a\x6f\x36\x68')](_0x3912bd,_0x20fcbd,_0xf2b459(0xab,'\x55\x55\x5b\x43')+_0xf2b459(0x94,'\x31\x2a\x2a\x41')+'\x6f\x6e'),_0x3912bd(_0x20fcbd,'\x61\x63\x74\x69\x6f\x6e\x3a\x69'+'\x6e\x6e\x6f\x76\x61\x74\x65');}return/(task|worker|heartbeat|hub|commitment|assignment|orchestration)/[_0xf2b459(0x88,'\x51\x40\x39\x57')](_0x28283b)&&(_0x3b3992[_0xf2b459(0x7d,'\x51\x40\x39\x57')](_0xf2b459(0xf7,'\x53\x40\x21\x70'),_0x3b3992[_0xf2b459(0xb7,'\x39\x78\x52\x61')])?_0x3b3992[_0xf2b459(0xf4,'\x5a\x6f\x36\x68')](_0x1b5c8a,_0x1313b1,_0x3b3992[_0xf2b459(0x118,'\x48\x69\x42\x62')]):_0x3b3992[_0xf2b459(0xf6,'\x48\x61\x4b\x47')](_0x3912bd,_0x20fcbd,_0xf2b459(0x6b,'\x4f\x62\x64\x52')+'\x68\x65\x73\x74\x72\x61\x74\x69'+'\x6f\x6e')),/(memory|narrative|reflection)/[_0xf2b459(0x128,'\x4c\x65\x31\x33')](_0x28283b)&&_0x3912bd(_0x20fcbd,_0x3b3992[_0xf2b459(0x95,'\x49\x23\x6a\x66')]),/(skill|dashboard)/[_0xf2b459(0x9c,'\x39\x78\x52\x61')](_0x28283b)&&(_0x3b3992[_0xf2b459(0x107,'\x5a\x6f\x36\x68')](_0x3b3992[_0xf2b459(0xa9,'\x49\x23\x6a\x66')],_0x3b3992['\x45\x6b\x42\x61\x43'])?(_0x3b3992[_0xf2b459(0xce,'\x49\x23\x6a\x66')](_0x232986,_0x22e3fb,_0x3b3992[_0xf2b459(0x127,'\x64\x33\x54\x47')]),_0x37bd40(_0x14bfdf,_0xf2b459(0xc2,'\x78\x42\x78\x30')+_0xf2b459(0x9e,'\x23\x53\x72\x30'))):_0x3b3992[_0xf2b459(0xa5,'\x51\x40\x39\x57')](_0x3912bd,_0x20fcbd,_0x3b3992[_0xf2b459(0x78,'\x47\x5e\x24\x5e')])),/(validation|canary|rollback|constraint|blast radius|destructive)/[_0xf2b459(0xb0,'\x78\x42\x78\x30')](_0x28283b)&&_0x3b3992[_0xf2b459(0xdc,'\x5e\x49\x4f\x5d')](_0x3912bd,_0x20fcbd,_0x3b3992[_0xf2b459(0xe8,'\x65\x69\x45\x52')]),_0x3b3992[_0xf2b459(0x91,'\x4b\x62\x25\x4c')](_0x1ef117,_0x20fcbd);}function _0x37b192(_0x1b3763){const _0x5af469=_0x458f,_0x54a8dd={'\x57\x58\x6e\x45\x54':function(_0x31bfba,_0x394acb){return _0x31bfba!==_0x394acb;},'\x53\x4f\x79\x6e\x49':_0x5af469(0x71,'\x5b\x41\x55\x52'),'\x47\x47\x76\x64\x4b':_0x5af469(0x7e,'\x78\x42\x78\x30'),'\x4f\x54\x4e\x69\x6c':function(_0x1ff851,_0x369c0c){return _0x1ff851(_0x369c0c);},'\x50\x64\x49\x57\x4c':_0x5af469(0x11b,'\x56\x47\x25\x39'),'\x47\x69\x75\x6d\x57':function(_0x1b714c,_0x1831df){return _0x1b714c===_0x1831df;}};if(!_0x1b3763||_0x54a8dd[_0x5af469(0xe0,'\x56\x47\x25\x39')](typeof _0x1b3763,_0x54a8dd[_0x5af469(0xc3,'\x5d\x38\x45\x57')]))return[];let _0x351e3c=[];if(_0x1b3763[_0x5af469(0xa8,'\x65\x69\x45\x52')])_0x351e3c[_0x5af469(0x8a,'\x4c\x70\x77\x25')](_0x54a8dd[_0x5af469(0x8c,'\x5a\x76\x75\x65')]+_0x54a8dd[_0x5af469(0xb6,'\x31\x25\x36\x2a')](String,_0x1b3763[_0x5af469(0x129,'\x45\x56\x37\x44')])['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x5af469(0x10d,'\x21\x30\x6e\x71')]());if(Array[_0x5af469(0xd7,'\x30\x6c\x42\x6a')](_0x1b3763[_0x5af469(0x80,'\x48\x61\x4b\x47')+_0x5af469(0x116,'\x4b\x32\x70\x48')]))_0x351e3c=_0x351e3c[_0x5af469(0xe6,'\x78\x42\x78\x30')](_0x1b3763[_0x5af469(0xbb,'\x25\x64\x2a\x25')+'\x6d\x61\x74\x63\x68']);if(typeof _0x1b3763['\x69\x64']===_0x54a8dd[_0x5af469(0x105,'\x31\x2a\x2a\x41')])_0x351e3c[_0x5af469(0xd1,'\x50\x6c\x73\x45')](_0x1b3763['\x69\x64']);if(_0x54a8dd[_0x5af469(0xac,'\x5a\x6f\x36\x68')](typeof _0x1b3763[_0x5af469(0x97,'\x48\x23\x55\x72')],_0x54a8dd[_0x5af469(0xb3,'\x48\x69\x42\x62')]))_0x351e3c[_0x5af469(0xf0,'\x73\x79\x41\x57')](_0x1b3763[_0x5af469(0x84,'\x30\x4f\x47\x38')]);return _0x26cbf5(_0x351e3c,'');}function _0x458f(_0x1dd050,_0x46e611){_0x1dd050=_0x1dd050-(-0x7f3+0xbb5+0x42*-0xd);const _0x32c1a4=_0x4f78();let _0x276767=_0x32c1a4[_0x1dd050];if(_0x458f['\x5a\x6f\x41\x56\x4b\x52']===undefined){var _0x1518a3=function(_0xdc1b94){const _0x1599eb='\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 _0x2bf8cf='',_0x522925='',_0x1a0893=_0x2bf8cf+_0x1518a3,_0x3a074a=(''+function(){return 0x11eb+0x1048+-0x5*0x6d7;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x8cf+0x5*-0x5e+-0x2f*-0x3a);for(let _0x58cf59=0x1506+-0x8cd*0x1+0x413*-0x3,_0x259470,_0x42e74e,_0x29c7e6=-0x23*0x101+-0x144f+0x3772*0x1;_0x42e74e=_0xdc1b94['\x63\x68\x61\x72\x41\x74'](_0x29c7e6++);~_0x42e74e&&(_0x259470=_0x58cf59%(-0x64d+-0x10f5+0x3*0x7c2)?_0x259470*(-0x6ce*-0x1+0x11*-0x9b+0x3bd)+_0x42e74e:_0x42e74e,_0x58cf59++%(-0x1736+0xcc7+0x19*0x6b))?_0x2bf8cf+=_0x3a074a||_0x1a0893['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x29c7e6+(0x18f6+0x225b+-0x25f*0x19))-(0x38b*0x3+-0x2*0x649+0x1fb)!==0x43f*0x9+0xfb+-0x2732?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x233*0x3+-0x2602+0x2068&_0x259470>>(-(0x3c4*0x2+-0x15f+-0x627)*_0x58cf59&-0x1f2e+0x607+-0x5*-0x509)):_0x58cf59:-0x9ae+-0x53+0xd*0xc5){_0x42e74e=_0x1599eb['\x69\x6e\x64\x65\x78\x4f\x66'](_0x42e74e);}for(let _0x5e4b3c=-0x106a+0x1de+0xe8c,_0x4b82ff=_0x2bf8cf['\x6c\x65\x6e\x67\x74\x68'];_0x5e4b3c<_0x4b82ff;_0x5e4b3c++){_0x522925+='\x25'+('\x30\x30'+_0x2bf8cf['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5e4b3c)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1*0x865+0x2028+-0x819*0x5))['\x73\x6c\x69\x63\x65'](-(-0x85a+-0xd92+0x15ee));}return decodeURIComponent(_0x522925);};const _0x5b103d=function(_0x568f39,_0x270deb){let _0x55b9f8=[],_0x112360=-0x1771+0x2352+-0xbe1,_0x2adfd3,_0x3b41e0='';_0x568f39=_0x1518a3(_0x568f39);let _0x46f28f;for(_0x46f28f=0x177c+0x3*0x9a9+0x197*-0x21;_0x46f28f<-0x1f2e+0xf*-0x99+0x3*0xdb7;_0x46f28f++){_0x55b9f8[_0x46f28f]=_0x46f28f;}for(_0x46f28f=-0x1bd6+-0xe06+0x29dc;_0x46f28f<0x158f*0x1+0x3*-0x239+-0xde4;_0x46f28f++){_0x112360=(_0x112360+_0x55b9f8[_0x46f28f]+_0x270deb['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x46f28f%_0x270deb['\x6c\x65\x6e\x67\x74\x68']))%(-0x17da+0x1af*0x1+0x172b),_0x2adfd3=_0x55b9f8[_0x46f28f],_0x55b9f8[_0x46f28f]=_0x55b9f8[_0x112360],_0x55b9f8[_0x112360]=_0x2adfd3;}_0x46f28f=-0x2329+-0x1ed4+0x755*0x9,_0x112360=0x5da+-0x2*-0x12f9+-0x15e6*0x2;for(let _0x284c9e=0x2069+0x1*-0x605+-0x233*0xc;_0x284c9e<_0x568f39['\x6c\x65\x6e\x67\x74\x68'];_0x284c9e++){_0x46f28f=(_0x46f28f+(0x1a12+0x5e*-0x4a+0x11b))%(0x11*-0x241+0x6d*0x22+0x18d7),_0x112360=(_0x112360+_0x55b9f8[_0x46f28f])%(-0xdf1*0x1+0x1*-0x1426+-0x2317*-0x1),_0x2adfd3=_0x55b9f8[_0x46f28f],_0x55b9f8[_0x46f28f]=_0x55b9f8[_0x112360],_0x55b9f8[_0x112360]=_0x2adfd3,_0x3b41e0+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x568f39['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x284c9e)^_0x55b9f8[(_0x55b9f8[_0x46f28f]+_0x55b9f8[_0x112360])%(-0x4*0x6a+-0x3b*0x2c+0xccc)]);}return _0x3b41e0;};_0x458f['\x4a\x64\x68\x74\x77\x64']=_0x5b103d,_0x458f['\x41\x78\x55\x57\x57\x6c']={},_0x458f['\x5a\x6f\x41\x56\x4b\x52']=!![];}const _0x281448=_0x32c1a4[-0x40f*-0x4+-0x112d*0x2+0x121e],_0x42facf=_0x1dd050+_0x281448,_0xac39bd=_0x458f['\x41\x78\x55\x57\x57\x6c'][_0x42facf];if(!_0xac39bd){if(_0x458f['\x50\x74\x72\x6b\x57\x49']===undefined){const _0x3ad6b1=function(_0x4b1480){this['\x6a\x45\x42\x6d\x7a\x68']=_0x4b1480,this['\x53\x63\x6c\x69\x55\x47']=[0x1cd5+-0x6*0x147+-0x6*0x387,-0x10c*0x6+-0x14*-0xa9+-0x1*0x6ec,0x996+0x1*-0xfbf+-0x13*-0x53],this['\x6d\x4d\x49\x62\x78\x71']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x6a\x73\x4e\x4e\x6c\x4a']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x4e\x67\x74\x63\x68\x65']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x3ad6b1['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x41\x67\x5a\x4b\x76\x47']=function(){const _0xbf2eb=new RegExp(this['\x6a\x73\x4e\x4e\x6c\x4a']+this['\x4e\x67\x74\x63\x68\x65']),_0x292d04=_0xbf2eb['\x74\x65\x73\x74'](this['\x6d\x4d\x49\x62\x78\x71']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x53\x63\x6c\x69\x55\x47'][0x2571+0x3b4+-0x2924]:--this['\x53\x63\x6c\x69\x55\x47'][-0x1*-0x20d9+0xa*-0x2e2+-0x405];return this['\x61\x75\x57\x56\x71\x45'](_0x292d04);},_0x3ad6b1['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x61\x75\x57\x56\x71\x45']=function(_0x200f9e){if(!Boolean(~_0x200f9e))return _0x200f9e;return this['\x54\x50\x46\x6a\x42\x56'](this['\x6a\x45\x42\x6d\x7a\x68']);},_0x3ad6b1['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x54\x50\x46\x6a\x42\x56']=function(_0x4228ff){for(let _0x347dc5=-0x32f+-0xad6+-0x1*-0xe05,_0x5d18bb=this['\x53\x63\x6c\x69\x55\x47']['\x6c\x65\x6e\x67\x74\x68'];_0x347dc5<_0x5d18bb;_0x347dc5++){this['\x53\x63\x6c\x69\x55\x47']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x5d18bb=this['\x53\x63\x6c\x69\x55\x47']['\x6c\x65\x6e\x67\x74\x68'];}return _0x4228ff(this['\x53\x63\x6c\x69\x55\x47'][0x1c74+-0x17a4*-0x1+-0x3418]);},(''+function(){return 0x1b22*-0x1+0x1*0xf3c+0xbe6;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x23fa+0xf21*0x1+0x14da)&&new _0x3ad6b1(_0x458f)['\x41\x67\x5a\x4b\x76\x47'](),_0x458f['\x50\x74\x72\x6b\x57\x49']=!![];}_0x276767=_0x458f['\x4a\x64\x68\x74\x77\x64'](_0x276767,_0x46e611),_0x458f['\x41\x78\x55\x57\x57\x6c'][_0x42facf]=_0x276767;}else _0x276767=_0xac39bd;return _0x276767;}function _0x2e1050(_0x109c27,_0x5ef72e){const _0x21df9c=_0x458f,_0x24cf9c={'\x6f\x61\x73\x78\x4d':function(_0x15bad8,_0xf8910e,_0x52aae3){return _0x15bad8(_0xf8910e,_0x52aae3);},'\x53\x42\x42\x6e\x43':function(_0x24fc5c,_0x528477){return _0x24fc5c(_0x528477);},'\x70\x7a\x58\x68\x58':function(_0x191ff8,_0xb08f6d){return _0x191ff8===_0xb08f6d;},'\x51\x4c\x74\x4c\x6e':function(_0x12ac85,_0x474150){return _0x12ac85===_0x474150;},'\x65\x64\x4d\x58\x75':function(_0x26b172,_0x58d540){return _0x26b172<_0x58d540;}},_0xd2c480=_0x24cf9c[_0x21df9c(0xfb,'\x73\x79\x41\x57')](_0x26cbf5,_0x5ef72e,''),_0x49e515=_0x24cf9c['\x53\x42\x42\x6e\x43'](_0x37b192,_0x109c27);if(_0x24cf9c[_0x21df9c(0x6f,'\x25\x64\x2a\x25')](_0xd2c480['\x6c\x65\x6e\x67\x74\x68'],-0x5*0x48b+-0x1*0x1337+0x29ee*0x1)||_0x24cf9c[_0x21df9c(0xec,'\x26\x5d\x74\x72')](_0x49e515[_0x21df9c(0xc8,'\x23\x53\x72\x30')],0xc4b+0x1f81+-0x2bcc))return-0x836*0x4+-0x2*0x12b5+0x4642;const _0x4b3c3d=new Set(_0xd2c480);let _0x83ee3a=-0x1*-0x6df+-0x24e8+-0x2bb*-0xb;for(let _0x120dc7=0x1aca+-0x1ea6+0x3dc;_0x24cf9c[_0x21df9c(0x11e,'\x39\x78\x52\x61')](_0x120dc7,_0x49e515[_0x21df9c(0xc4,'\x57\x26\x45\x39')]);_0x120dc7++){if(_0x4b3c3d['\x68\x61\x73'](_0x49e515[_0x120dc7]))_0x83ee3a++;}return _0x83ee3a;}const _0x143a70={};_0x143a70[_0x37ffef(0x112,'\x48\x61\x4b\x47')+_0x37ffef(0xad,'\x49\x75\x5a\x63')]=_0x26cbf5,_0x143a70[_0x37ffef(0xc9,'\x45\x56\x37\x44')]=_0x37b192,_0x143a70[_0x37ffef(0x8e,'\x5a\x6f\x36\x68')+_0x37ffef(0xcb,'\x43\x75\x39\x5b')]=_0x2e1050,module[_0x37ffef(0x113,'\x25\x64\x2a\x25')]=_0x143a70;
@@ -3,6 +3,39 @@
3
3
  const http = require('http');
4
4
  const { getProxyUrl, getProxyToken } = require('../proxy/server/settings');
5
5
 
6
+ // Bounded keep-alive agent. Default `agent: undefined` would use Node's
7
+ // global `http.globalAgent` whose default keep-alive timeout is 8 seconds
8
+ // AND survives macOS sleep on libuv's monotonic clock. After the laptop
9
+ // resumes, the next request reuses a socket the proxy / local OS has
10
+ // already closed and only fails after `timeout: 10_000` -- enough time
11
+ // for the proxy-mode heartbeat to look stalled.
12
+ //
13
+ // Round-6 (§19.8): the previous value was 1000ms keepAliveMsecs, which
14
+ // was wrong for two reasons:
15
+ // 1. NAT eviction in residential / corporate networks is 300-900s,
16
+ // not 1s. The 1s window was cargo-culted from browser keep-alive
17
+ // defaults and gives zero real NAT-eviction protection for the
18
+ // proxy is on localhost (NAT does not apply).
19
+ // 2. A 1s window forces a fresh TCP+TLS handshake on every request
20
+ // that lands >=1s after the previous one, which is essentially
21
+ // every request in steady state -- adding 10-50ms per call for
22
+ // no gain. Locally the proxy is the only consumer; the real
23
+ // sleep/wake risk is covered by the explicit
24
+ // drainPool/wake-recovery path on the undici agent used for hub
25
+ // traffic, NOT this localhost agent.
26
+ // 30s window balances:
27
+ // - keep-alive reuse for legitimate proxy-mode bursts (proxy clients
28
+ // issue heartbeat + mailbox poll + receive within sub-second)
29
+ // - guarantees a fresh socket post-wake (longer-than-30s sleep ->
30
+ // pool is empty by definition; shorter sleep -> proxy on
31
+ // localhost would not have lost the socket anyway)
32
+ const _proxyAgent = new http.Agent({
33
+ keepAlive: true,
34
+ keepAliveMsecs: 30_000,
35
+ maxSockets: 16,
36
+ maxFreeSockets: 4,
37
+ });
38
+
6
39
  function _request(method, path, body) {
7
40
  const proxyUrl = getProxyUrl();
8
41
  if (!proxyUrl) {
@@ -27,6 +60,7 @@ function _request(method, path, body) {
27
60
  method,
28
61
  headers,
29
62
  timeout: 10_000,
63
+ agent: _proxyAgent,
30
64
  },
31
65
  (res) => {
32
66
  const chunks = [];