@evomap/evolver 1.89.4 → 1.89.5

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 (105) hide show
  1. package/CONTRIBUTING.md +19 -0
  2. package/README.md +536 -86
  3. package/assets/cover.png +0 -0
  4. package/index.js +87 -7
  5. package/package.json +17 -6
  6. package/scripts/a2a_export.js +63 -0
  7. package/scripts/a2a_ingest.js +79 -0
  8. package/scripts/a2a_promote.js +118 -0
  9. package/scripts/analyze_by_skill.js +121 -0
  10. package/scripts/build_binaries.js +479 -0
  11. package/scripts/check-changelog.js +166 -0
  12. package/scripts/extract_log.js +85 -0
  13. package/scripts/generate_history.js +75 -0
  14. package/scripts/gep_append_event.js +96 -0
  15. package/scripts/gep_personality_report.js +234 -0
  16. package/scripts/human_report.js +147 -0
  17. package/scripts/recall-verify-report.js +234 -0
  18. package/scripts/recover_loop.js +61 -0
  19. package/scripts/refresh_stars_badge.js +168 -0
  20. package/scripts/seed-merchants.js +91 -0
  21. package/scripts/suggest_version.js +89 -0
  22. package/scripts/validate-modules.js +38 -0
  23. package/scripts/validate-suite.js +78 -0
  24. package/skills/index.json +14 -0
  25. package/src/adapters/scripts/_runtimePaths.js +1 -0
  26. package/src/adapters/scripts/evolver-session-end.js +1 -0
  27. package/src/adapters/scripts/evolver-session-start.js +1 -0
  28. package/src/evolve/guards.js +1 -721
  29. package/src/evolve/pipeline/collect.js +1 -1283
  30. package/src/evolve/pipeline/dispatch.js +1 -421
  31. package/src/evolve/pipeline/enrich.js +1 -440
  32. package/src/evolve/pipeline/hub.js +1 -319
  33. package/src/evolve/pipeline/select.js +1 -274
  34. package/src/evolve/pipeline/signals.js +1 -206
  35. package/src/evolve/utils.js +1 -264
  36. package/src/evolve.js +1 -350
  37. package/src/gep/a2aProtocol.js +1 -4455
  38. package/src/gep/antiAbuseTelemetry.js +1 -233
  39. package/src/gep/autoDistillConv.js +1 -205
  40. package/src/gep/autoDistillLlm.js +1 -315
  41. package/src/gep/candidateEval.js +1 -92
  42. package/src/gep/candidates.js +1 -198
  43. package/src/gep/contentHash.js +1 -30
  44. package/src/gep/conversationSniffer.js +1 -266
  45. package/src/gep/crypto.js +1 -89
  46. package/src/gep/curriculum.js +1 -163
  47. package/src/gep/deviceId.js +1 -218
  48. package/src/gep/envFingerprint.js +1 -118
  49. package/src/gep/epigenetics.js +1 -31
  50. package/src/gep/execBridge.js +1 -711
  51. package/src/gep/explore.js +1 -289
  52. package/src/gep/hash.js +1 -15
  53. package/src/gep/hubFetch.js +1 -359
  54. package/src/gep/hubReview.js +1 -207
  55. package/src/gep/hubSearch.js +1 -526
  56. package/src/gep/hubVerify.js +1 -306
  57. package/src/gep/idleScheduler.js +6 -1
  58. package/src/gep/learningSignals.js +1 -89
  59. package/src/gep/memoryGraph.js +1 -1374
  60. package/src/gep/memoryGraphAdapter.js +1 -203
  61. package/src/gep/mutation.js +1 -203
  62. package/src/gep/narrativeMemory.js +1 -108
  63. package/src/gep/openPRRegistry.js +1 -205
  64. package/src/gep/personality.js +1 -423
  65. package/src/gep/policyCheck.js +1 -599
  66. package/src/gep/prompt.js +1 -836
  67. package/src/gep/recallInject.js +1 -409
  68. package/src/gep/recallVerifier.js +1 -318
  69. package/src/gep/reflection.js +1 -177
  70. package/src/gep/selector.js +1 -602
  71. package/src/gep/skillDistiller.js +1 -1294
  72. package/src/gep/solidify.js +1 -1699
  73. package/src/gep/strategy.js +1 -136
  74. package/src/gep/tokenSavings.js +1 -88
  75. package/src/gep/workspaceKeychain.js +1 -174
  76. package/src/ops/lifecycle.js +17 -4
  77. package/src/proxy/extensions/traceControl.js +1 -99
  78. package/src/proxy/index.js +206 -1
  79. package/src/proxy/inject.js +1 -52
  80. package/src/proxy/lifecycle/manager.js +12 -0
  81. package/src/proxy/mailbox/store.js +29 -6
  82. package/src/proxy/router/responses_route.js +157 -0
  83. package/src/proxy/server/http.js +13 -4
  84. package/src/proxy/server/routes.js +11 -1
  85. package/src/proxy/sync/engine.js +7 -1
  86. package/src/proxy/sync/outbound.js +32 -4
  87. package/src/proxy/trace/extractor.js +1 -646
  88. package/src/proxy/trace/usage.js +1 -105
  89. package/.cursor/BUGBOT.md +0 -182
  90. package/.env.example +0 -68
  91. package/.git-commit-guard-token +0 -1
  92. package/.github/CODEOWNERS +0 -63
  93. package/.github/ISSUE_TEMPLATE/good_first_issue.md +0 -23
  94. package/.github/pull_request_template.md +0 -45
  95. package/.github/workflows/test.yml +0 -75
  96. package/CHANGELOG.md +0 -1237
  97. package/README.public.md +0 -569
  98. package/SECURITY.md +0 -108
  99. package/assets/gep/events.jsonl +0 -3
  100. package/examples/atp-consumer-quickstart.md +0 -100
  101. package/examples/hello-world.md +0 -38
  102. package/proxy-package.json +0 -39
  103. package/public.manifest.json +0 -143
  104. /package/assets/gep/{genes.json → genes.seed.json} +0 -0
  105. /package/{bundled-skills → skills}/_meta/SKILL.md +0 -0
@@ -1,89 +1 @@
1
- // Structured learning signal expansion: raw signals -> categorized tags for gene selection and evolution feedback.
2
- function unique(items) {
3
- return Array.from(new Set((Array.isArray(items) ? items : []).filter(Boolean).map(function (x) {
4
- return String(x).trim();
5
- }).filter(Boolean)));
6
- }
7
-
8
- function add(tags, value) {
9
- if (!value) return;
10
- tags.push(String(value).trim());
11
- }
12
-
13
- function expandSignals(signals, extraText) {
14
- const raw = Array.isArray(signals) ? signals.map(function (s) { return String(s); }) : [];
15
- const tags = [];
16
-
17
- for (let i = 0; i < raw.length; i++) {
18
- const signal = raw[i];
19
- add(tags, signal);
20
- const base = signal.split(':')[0];
21
- if (base && base !== signal) add(tags, base);
22
- }
23
-
24
- const text = (raw.join(' ') + ' ' + String(extraText || '')).toLowerCase();
25
-
26
- if (/(error|exception|failed|unstable|log_error|runtime|429)/.test(text)) {
27
- add(tags, 'problem:reliability');
28
- add(tags, 'action:repair');
29
- }
30
- if (/(protocol|prompt|audit|gep|schema|drift)/.test(text)) {
31
- add(tags, 'problem:protocol');
32
- add(tags, 'action:optimize');
33
- add(tags, 'area:prompt');
34
- }
35
- if (/(perf|performance|bottleneck|latency|slow|throughput)/.test(text)) {
36
- add(tags, 'problem:performance');
37
- add(tags, 'action:optimize');
38
- }
39
- if (/(feature|capability_gap|user_feature_request|external_opportunity|stagnation recommendation)/.test(text)) {
40
- add(tags, 'problem:capability');
41
- add(tags, 'action:innovate');
42
- }
43
- if (/(stagnation|plateau|steady_state|saturation|empty_cycle_loop|loop_detected|recurring)/.test(text)) {
44
- add(tags, 'problem:stagnation');
45
- add(tags, 'action:innovate');
46
- }
47
- if (/(task|worker|heartbeat|hub|commitment|assignment|orchestration)/.test(text)) {
48
- add(tags, 'area:orchestration');
49
- }
50
- if (/(memory|narrative|reflection)/.test(text)) {
51
- add(tags, 'area:memory');
52
- }
53
- if (/(skill|dashboard)/.test(text)) {
54
- add(tags, 'area:skills');
55
- }
56
- if (/(validation|canary|rollback|constraint|blast radius|destructive)/.test(text)) {
57
- add(tags, 'risk:validation');
58
- }
59
-
60
- return unique(tags);
61
- }
62
-
63
- function geneTags(gene) {
64
- if (!gene || typeof gene !== 'object') return [];
65
- let inputs = [];
66
- if (gene.category) inputs.push('action:' + String(gene.category).toLowerCase());
67
- if (Array.isArray(gene.signals_match)) inputs = inputs.concat(gene.signals_match);
68
- if (typeof gene.id === 'string') inputs.push(gene.id);
69
- if (typeof gene.summary === 'string') inputs.push(gene.summary);
70
- return expandSignals(inputs, '');
71
- }
72
-
73
- function scoreTagOverlap(gene, signals) {
74
- const signalTags = expandSignals(signals, '');
75
- const geneTagList = geneTags(gene);
76
- if (signalTags.length === 0 || geneTagList.length === 0) return 0;
77
- const signalSet = new Set(signalTags);
78
- let hits = 0;
79
- for (let i = 0; i < geneTagList.length; i++) {
80
- if (signalSet.has(geneTagList[i])) hits++;
81
- }
82
- return hits;
83
- }
84
-
85
- module.exports = {
86
- expandSignals: expandSignals,
87
- geneTags: geneTags,
88
- scoreTagOverlap: scoreTagOverlap,
89
- };
1
+ const _0x529124=_0x2ec3;function _0x8d2c(){const _0x58d54b=['\x57\x50\x68\x63\x53\x31\x76\x41','\x61\x38\x6f\x6f\x6f\x57','\x73\x66\x37\x64\x47\x38\x6b\x66\x57\x50\x4b\x45\x66\x38\x6f\x6a','\x57\x50\x42\x63\x4f\x30\x54\x64\x67\x53\x6f\x4d\x57\x51\x4b','\x57\x52\x62\x7a\x6d\x59\x70\x64\x55\x74\x6e\x76\x72\x38\x6f\x33\x74\x53\x6f\x6c\x57\x52\x71','\x57\x34\x64\x63\x53\x6d\x6b\x45\x62\x30\x56\x63\x4a\x43\x6b\x53\x57\x51\x71','\x57\x52\x6c\x64\x48\x43\x6f\x63\x6c\x31\x61','\x70\x59\x2f\x63\x4e\x71\x4f\x47','\x57\x37\x42\x63\x4d\x53\x6b\x50\x67\x68\x61','\x78\x38\x6b\x48\x75\x47','\x62\x74\x46\x63\x47\x63\x34\x67','\x76\x38\x6b\x43\x79\x53\x6b\x6a\x57\x51\x30','\x66\x68\x72\x35\x6f\x38\x6f\x42','\x57\x4f\x42\x63\x4c\x6d\x6f\x6e\x57\x34\x42\x64\x4a\x77\x46\x63\x56\x47','\x65\x64\x42\x63\x4f\x49\x34','\x57\x37\x68\x63\x54\x4d\x39\x30\x79\x49\x42\x63\x4a\x47','\x69\x6d\x6f\x4e\x57\x52\x6c\x63\x4e\x4e\x7a\x76\x57\x51\x5a\x64\x49\x47','\x57\x52\x6c\x63\x49\x67\x2f\x63\x4a\x76\x37\x63\x52\x33\x4b','\x45\x53\x6b\x51\x45\x6d\x6b\x58\x57\x52\x47','\x45\x6d\x6f\x33\x67\x43\x6f\x6a\x57\x4f\x43','\x57\x50\x46\x64\x56\x6d\x6b\x76\x61\x38\x6f\x35\x57\x34\x46\x64\x4d\x33\x53','\x64\x65\x44\x61\x6e\x43\x6f\x46\x61\x75\x75\x2b','\x67\x33\x4a\x64\x47\x4e\x43\x38','\x75\x61\x64\x64\x47\x43\x6b\x54\x61\x71','\x75\x4d\x72\x4a\x57\x51\x62\x78\x57\x34\x39\x73','\x57\x35\x6e\x4a\x57\x52\x79\x48\x57\x52\x43','\x61\x48\x75\x30\x46\x77\x57','\x77\x57\x39\x6b\x67\x43\x6f\x42','\x71\x74\x52\x63\x4e\x47','\x6a\x57\x6c\x63\x4d\x59\x38\x49','\x57\x50\x5a\x63\x53\x6d\x6f\x44\x63\x47\x4a\x64\x4e\x38\x6b\x53\x57\x4f\x61','\x65\x4e\x44\x74\x68\x6d\x6f\x4e\x57\x52\x4b\x63','\x69\x74\x48\x6f\x57\x50\x35\x66\x45\x38\x6f\x5a\x57\x37\x72\x56\x57\x34\x57\x61\x64\x6d\x6b\x79','\x57\x4f\x74\x63\x4a\x43\x6f\x70\x57\x52\x47\x53\x57\x34\x56\x63\x54\x53\x6b\x34','\x43\x4c\x78\x63\x55\x38\x6b\x57\x62\x57','\x57\x52\x70\x64\x4d\x38\x6b\x52\x67\x38\x6f\x51','\x63\x49\x7a\x4a\x69\x38\x6f\x66\x68\x4c\x61','\x46\x66\x53\x5a\x57\x51\x50\x4e','\x61\x61\x42\x63\x50\x64\x69\x62','\x6e\x53\x6f\x53\x67\x48\x66\x55\x6e\x72\x46\x64\x51\x32\x33\x63\x52\x30\x33\x64\x48\x62\x4f','\x64\x59\x44\x68\x6c\x76\x76\x6c\x57\x4f\x71\x62','\x65\x43\x6f\x79\x70\x30\x72\x5a\x66\x57','\x57\x50\x2f\x64\x54\x53\x6f\x4d\x76\x57','\x73\x6d\x6f\x79\x6e\x38\x6f\x52\x57\x52\x69','\x57\x37\x37\x63\x54\x30\x66\x52','\x57\x4f\x6c\x63\x53\x30\x48\x6c\x6c\x38\x6f\x31\x57\x52\x46\x64\x51\x71','\x73\x4a\x69\x52\x78\x53\x6b\x48\x57\x36\x4c\x6c\x57\x4f\x61\x55\x46\x6d\x6b\x6b\x72\x43\x6b\x48','\x43\x67\x71\x42\x57\x35\x6d\x42\x6a\x43\x6b\x56','\x57\x37\x42\x63\x50\x4b\x53','\x57\x4f\x64\x64\x52\x38\x6f\x35\x71\x47\x33\x64\x4b\x43\x6b\x4d\x57\x52\x72\x39\x57\x34\x71\x32\x6e\x61','\x57\x4f\x71\x33\x79\x43\x6f\x6f\x57\x52\x71','\x57\x50\x42\x63\x51\x38\x6f\x6b','\x64\x4e\x74\x64\x4d\x4e\x79\x71\x70\x71','\x7a\x6d\x6b\x72\x72\x6d\x6b\x70\x57\x52\x61','\x57\x51\x68\x63\x51\x43\x6f\x7a\x57\x34\x6c\x64\x54\x47','\x57\x35\x39\x33\x57\x4f\x65\x67\x57\x50\x53','\x57\x52\x78\x63\x53\x30\x70\x63\x53\x76\x57','\x6e\x48\x6d\x73\x75\x61','\x68\x4a\x52\x63\x52\x4d\x6c\x63\x50\x43\x6f\x74\x6a\x71','\x61\x33\x6c\x64\x47\x68\x47\x6c\x6f\x58\x6c\x64\x52\x71','\x57\x51\x42\x64\x4a\x43\x6f\x62\x65\x33\x74\x63\x56\x53\x6f\x6e\x57\x36\x38','\x7a\x38\x6f\x63\x69\x6d\x6f\x44\x57\x50\x53','\x43\x75\x66\x69\x61\x61','\x77\x6d\x6f\x78\x70\x53\x6f\x49\x57\x51\x61','\x57\x4f\x6c\x64\x55\x6d\x6f\x4f\x68\x66\x61','\x65\x63\x6d\x31\x57\x37\x46\x64\x4d\x33\x65\x41\x57\x36\x56\x64\x55\x38\x6b\x4c\x41\x6d\x6f\x51\x70\x71','\x73\x74\x58\x35\x6b\x38\x6f\x4a\x57\x50\x69\x6b\x57\x51\x75','\x75\x68\x75\x48\x57\x50\x48\x64','\x73\x5a\x42\x64\x54\x43\x6b\x6f\x6e\x32\x74\x63\x4a\x43\x6f\x6b','\x45\x5a\x4a\x64\x4a\x30\x34\x71\x70\x47','\x57\x50\x71\x2f\x74\x6d\x6f\x62\x57\x50\x75','\x57\x35\x52\x63\x53\x43\x6b\x49\x62\x76\x4a\x63\x4b\x6d\x6b\x4e','\x46\x57\x48\x34\x6d\x38\x6f\x6d','\x62\x38\x6f\x66\x6c\x4c\x44\x2b\x67\x38\x6b\x51\x71\x47','\x61\x30\x35\x70\x57\x51\x48\x63','\x45\x48\x6e\x71\x57\x4f\x39\x31\x57\x35\x52\x64\x4e\x38\x6b\x4c','\x76\x49\x5a\x64\x55\x38\x6b\x46\x6f\x68\x68\x63\x4e\x61','\x77\x76\x54\x71','\x76\x32\x72\x2b\x64\x49\x79','\x57\x4f\x35\x4f\x61\x47\x64\x64\x4b\x53\x6b\x33\x46\x61\x6d','\x75\x38\x6f\x6f\x67\x38\x6f\x46\x57\x51\x75','\x45\x6d\x6b\x39\x57\x37\x78\x64\x4b\x4a\x65\x7a\x57\x36\x52\x64\x4d\x71','\x75\x4b\x7a\x68\x57\x50\x2f\x63\x4f\x57','\x57\x35\x5a\x63\x4c\x5a\x6e\x72','\x68\x67\x75\x6e\x45\x53\x6f\x76','\x67\x47\x64\x64\x4d\x6d\x6b\x4c\x57\x50\x75\x4a','\x6e\x6d\x6f\x4f\x77\x53\x6b\x33\x72\x53\x6b\x68\x57\x52\x4b\x46','\x57\x51\x42\x64\x56\x43\x6b\x34\x6c\x53\x6f\x34','\x76\x77\x6e\x4e\x57\x51\x61','\x41\x74\x74\x64\x4b\x65\x34','\x57\x52\x6c\x64\x47\x53\x6f\x64\x69\x4d\x30','\x45\x53\x6b\x46\x79\x43\x6b\x66\x57\x4f\x6d','\x6b\x49\x7a\x33\x63\x74\x43','\x57\x36\x72\x2b\x57\x4f\x30\x47\x57\x50\x34','\x77\x53\x6b\x6e\x6c\x66\x31\x38\x6d\x43\x6b\x57\x45\x61','\x73\x33\x39\x62\x57\x52\x58\x68','\x57\x51\x74\x63\x4f\x78\x76\x54\x68\x47','\x57\x4f\x52\x63\x52\x31\x33\x63\x4b\x4b\x34','\x57\x37\x4e\x63\x54\x30\x54\x4e\x6b\x49\x4a\x63\x48\x77\x61','\x57\x35\x6c\x64\x54\x4b\x68\x64\x4c\x59\x76\x38\x57\x37\x70\x63\x4c\x47','\x57\x36\x75\x42\x44\x4e\x52\x63\x55\x71','\x74\x76\x37\x63\x48\x53\x6f\x30\x57\x34\x62\x48\x75\x43\x6b\x51\x43\x38\x6f\x6e\x57\x4f\x78\x64\x56\x43\x6b\x32\x62\x71','\x57\x52\x6c\x64\x4d\x49\x6d\x4c\x57\x36\x6d\x4a\x45\x68\x43','\x73\x53\x6b\x4e\x57\x35\x4a\x64\x48\x71\x57','\x6d\x57\x69\x6c\x77\x66\x64\x64\x4b\x53\x6f\x30\x57\x50\x48\x58\x75\x53\x6b\x47\x57\x50\x61\x56','\x6a\x77\x4c\x4c\x57\x50\x76\x72','\x46\x43\x6b\x6f\x72\x4b\x30\x6b','\x46\x53\x6b\x4d\x71\x76\x57\x32\x7a\x30\x52\x64\x47\x57','\x64\x6d\x6f\x6c\x46\x76\x37\x63\x4e\x47','\x6b\x47\x4f\x73','\x57\x4f\x2f\x64\x54\x53\x6b\x33\x63\x38\x6f\x36\x57\x34\x4f','\x64\x32\x54\x62\x67\x53\x6f\x4e\x57\x52\x65\x76\x57\x50\x69','\x57\x35\x57\x37\x6c\x4a\x68\x64\x4f\x43\x6b\x38\x44\x48\x75','\x79\x4c\x76\x6c\x63\x71\x68\x63\x4a\x6d\x6b\x4f\x57\x51\x61','\x57\x50\x56\x63\x54\x4d\x35\x68\x6f\x71','\x45\x53\x6b\x58\x78\x76\x57','\x57\x52\x66\x73\x6e\x59\x6c\x64\x54\x5a\x6a\x61\x44\x6d\x6f\x52\x73\x6d\x6f\x38\x57\x52\x57','\x7a\x31\x31\x78\x68\x61\x42\x63\x4c\x57','\x41\x78\x71\x74\x57\x34\x4f\x42\x6d\x6d\x6b\x4b','\x77\x66\x39\x6f\x43\x53\x6b\x4e\x44\x71','\x41\x61\x74\x64\x53\x53\x6b\x48\x6c\x57','\x57\x4f\x58\x36\x65\x57','\x57\x34\x50\x38\x57\x52\x6c\x63\x4c\x78\x75','\x74\x63\x68\x63\x47\x68\x70\x63\x4d\x61','\x57\x37\x4e\x63\x4a\x5a\x61\x38\x57\x36\x57\x66','\x57\x35\x56\x63\x49\x63\x34','\x57\x35\x4a\x64\x4e\x77\x4a\x64\x52\x57\x30','\x45\x53\x6b\x4d\x57\x37\x33\x64\x4e\x61\x75','\x57\x37\x52\x63\x4d\x64\x34\x53\x57\x36\x6d\x69\x78\x62\x34','\x57\x51\x74\x64\x4b\x61\x7a\x68\x6b\x73\x6d','\x45\x6d\x6b\x51\x57\x36\x4a\x64\x4c\x4a\x69\x6f\x57\x36\x52\x63\x47\x47','\x46\x4a\x64\x64\x4b\x31\x53\x78\x6a\x71\x31\x63','\x57\x52\x70\x63\x49\x38\x6f\x6d\x57\x36\x52\x64\x53\x47','\x62\x4a\x68\x63\x56\x49\x53','\x57\x35\x70\x64\x54\x4e\x52\x64\x48\x64\x71','\x63\x53\x6f\x49\x62\x63\x4e\x64\x4a\x71','\x75\x58\x35\x42','\x61\x49\x68\x63\x56\x4a\x43','\x77\x47\x58\x51\x68\x57\x6e\x55\x57\x50\x69','\x63\x38\x6f\x59\x6c\x49\x57','\x66\x38\x6f\x59\x6c\x49\x5a\x64\x50\x38\x6b\x32\x57\x36\x6e\x59','\x57\x52\x37\x64\x4d\x32\x66\x38\x57\x52\x54\x42\x62\x62\x31\x49\x57\x52\x78\x64\x56\x33\x53\x79\x57\x37\x71','\x45\x72\x5a\x64\x54\x4c\x69\x35','\x64\x58\x6c\x63\x50\x57\x43\x6b','\x61\x33\x6c\x64\x47\x68\x47\x6c\x6f\x58\x6c\x64\x51\x57','\x46\x43\x6b\x78\x42\x67\x43\x54','\x57\x4f\x37\x64\x4b\x63\x62\x4b\x65\x47','\x67\x47\x64\x64\x4d\x6d\x6b\x31\x57\x4f\x61\x4c\x65\x43\x6f\x57','\x7a\x4e\x46\x63\x4d\x53\x6b\x59\x6f\x57','\x71\x4e\x74\x64\x55\x78\x6a\x79\x74\x53\x6b\x32\x57\x35\x75\x57\x77\x43\x6b\x68\x62\x71','\x63\x43\x6b\x46\x75\x38\x6b\x2b','\x66\x4d\x70\x64\x4e\x78\x57','\x57\x50\x42\x63\x56\x30\x66\x61\x67\x53\x6f\x34\x57\x51\x70\x64\x48\x71','\x6c\x43\x6f\x59\x71\x57','\x64\x65\x70\x64\x4b\x31\x79\x69','\x57\x34\x66\x49\x57\x4f\x43\x6d\x57\x50\x33\x63\x51\x57','\x57\x52\x4a\x64\x4a\x43\x6f\x64\x68\x77\x68\x63\x54\x61','\x57\x37\x56\x63\x50\x66\x50\x4a\x44\x59\x4a\x63\x48\x78\x4f','\x46\x67\x66\x6d','\x67\x4e\x7a\x33\x64\x38\x6b\x56\x57\x52\x75\x45\x57\x50\x47','\x57\x34\x4a\x63\x4f\x4c\x39\x66\x78\x71','\x67\x43\x6f\x36\x6d\x47\x33\x64\x4b\x61','\x7a\x6d\x6b\x52\x73\x53\x6b\x76\x65\x43\x6b\x39\x57\x51\x65\x53','\x67\x31\x61\x78','\x57\x37\x4b\x41\x57\x51\x2f\x64\x4c\x38\x6f\x4c\x70\x49\x61\x71','\x57\x36\x78\x63\x4e\x53\x6b\x75\x73\x49\x68\x64\x52\x43\x6b\x75\x57\x37\x42\x63\x55\x53\x6f\x30\x43\x33\x33\x63\x47\x47','\x57\x52\x58\x72\x57\x37\x68\x63\x47\x43\x6b\x2b\x42\x48\x72\x34\x6f\x71\x79\x52\x57\x35\x6d','\x57\x37\x39\x56\x57\x50\x4a\x63\x47\x30\x33\x63\x4b\x6d\x6b\x33\x79\x71','\x57\x4f\x56\x63\x53\x31\x5a\x63\x49\x65\x47','\x57\x35\x6e\x31\x57\x4f\x65\x6d\x57\x50\x5a\x63\x4f\x4a\x37\x64\x50\x61','\x64\x71\x64\x64\x50\x43\x6b\x59\x57\x4f\x79\x2b\x63\x53\x6f\x30','\x57\x36\x5a\x63\x4c\x4b\x6e\x70\x72\x47','\x57\x36\x75\x69\x43\x4e\x2f\x63\x52\x32\x4b\x4a','\x57\x4f\x2f\x63\x52\x43\x6f\x43\x67\x58\x64\x64\x49\x6d\x6b\x30\x57\x35\x4b','\x42\x49\x78\x64\x4b\x76\x6d\x42\x6b\x57','\x57\x37\x58\x54\x57\x50\x56\x63\x49\x66\x75','\x77\x68\x79\x2b\x57\x50\x6e\x44','\x63\x4e\x74\x64\x48\x32\x75\x77\x6e\x66\x5a\x64\x51\x57','\x44\x53\x6b\x33\x74\x67\x4f\x70','\x41\x31\x78\x63\x4a\x53\x6b\x70\x70\x71','\x57\x4f\x56\x63\x55\x53\x6f\x61\x64\x71','\x57\x51\x64\x64\x4a\x43\x6f\x45\x64\x47','\x57\x34\x57\x2b\x77\x57'];_0x8d2c=function(){return _0x58d54b;};return _0x8d2c();}(function(_0x1db2b1,_0x41b010){const _0x4331ef=_0x2ec3,_0x139fc5=_0x1db2b1();while(!![]){try{const _0x244740=parseInt(_0x4331ef(0x144,'\x56\x7a\x70\x6b'))/(-0x1acc+0xb*0x2f6+-0x5c5)*(-parseInt(_0x4331ef(0x164,'\x69\x6f\x63\x61'))/(0xc4c*0x1+-0x1b53+0xf09))+parseInt(_0x4331ef(0x12e,'\x34\x59\x43\x23'))/(0x215b*0x1+-0x1e25*-0x1+-0x3f7d)+-parseInt(_0x4331ef(0x155,'\x69\x6f\x63\x61'))/(-0x1f32+-0x1*-0x1ea9+0x8d)*(parseInt(_0x4331ef(0x12f,'\x63\x72\x26\x49'))/(-0xcd0+0x34+0xca1))+parseInt(_0x4331ef(0x167,'\x30\x52\x47\x78'))/(0xe51+0x1848+-0x2693)*(-parseInt(_0x4331ef(0x17a,'\x4e\x49\x51\x4a'))/(-0x2a+-0x10a9+0x10da))+parseInt(_0x4331ef(0x19e,'\x4f\x47\x5d\x37'))/(0x1aaf+0x1949*0x1+0x33f*-0x10)*(parseInt(_0x4331ef(0x11e,'\x4b\x31\x64\x63'))/(-0xc1*-0x13+0x2f8+-0x1142))+parseInt(_0x4331ef(0x181,'\x62\x5a\x56\x4c'))/(-0x21ca+-0x1*0x5ac+0x2780)*(-parseInt(_0x4331ef(0x142,'\x42\x35\x40\x5b'))/(-0x2*-0xfae+0x134f+0x78*-0x6c))+parseInt(_0x4331ef(0x18b,'\x75\x7a\x6f\x77'))/(0x2393+0x12d3+0x2*-0x1b2d)*(parseInt(_0x4331ef(0x1a5,'\x42\x35\x40\x5b'))/(-0xbb0+0x2006+-0x1449));if(_0x244740===_0x41b010)break;else _0x139fc5['push'](_0x139fc5['shift']());}catch(_0x459938){_0x139fc5['push'](_0x139fc5['shift']());}}}(_0x8d2c,-0x6a3bb+0x2*-0x85d4a+0x22dfb4));const _0x56d5ff=(function(){let _0x280d58=!![];return function(_0x398c21,_0x31b6a5){const _0x24772c=_0x280d58?function(){const _0x437467=_0x2ec3;if(_0x31b6a5){const _0x2ea24b=_0x31b6a5[_0x437467(0x1a4,'\x56\x7a\x70\x6b')](_0x398c21,arguments);return _0x31b6a5=null,_0x2ea24b;}}:function(){};return _0x280d58=![],_0x24772c;};}()),_0x2aab1f=_0x56d5ff(this,function(){const _0x162f88=_0x2ec3,_0x5c276e={};_0x5c276e[_0x162f88(0x16b,'\x75\x36\x4d\x5d')]='\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x162f88(0x11f,'\x75\x36\x4d\x5d');const _0x508402=_0x5c276e;return _0x2aab1f['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x162f88(0x1bc,'\x37\x49\x42\x55')](_0x508402['\x6a\x6e\x4f\x71\x71'])[_0x162f88(0x145,'\x48\x71\x76\x31')]()[_0x162f88(0x11c,'\x42\x35\x40\x5b')+_0x162f88(0x12c,'\x26\x2a\x6b\x65')](_0x2aab1f)[_0x162f88(0x169,'\x4f\x47\x5d\x37')](_0x508402[_0x162f88(0x19f,'\x35\x6a\x4f\x43')]);});_0x2aab1f();function _0x2543b3(_0x172e30){const _0x3934eb=_0x2ec3,_0x2f3598={'\x70\x53\x42\x58\x4b':function(_0x4012f3,_0x2e231d,_0x529359){return _0x4012f3(_0x2e231d,_0x529359);},'\x64\x4d\x55\x68\x4c':_0x3934eb(0x12d,'\x63\x72\x26\x49')+_0x3934eb(0x1b1,'\x65\x35\x50\x2a')+'\x74\x79','\x51\x46\x56\x6c\x4e':'\x61\x63\x74\x69\x6f\x6e\x3a\x69'+_0x3934eb(0x18c,'\x5b\x6d\x40\x2a'),'\x56\x68\x78\x45\x6d':function(_0x1ea1b1,_0xbde93c){return _0x1ea1b1!==_0xbde93c;},'\x50\x46\x66\x48\x76':_0x3934eb(0x1a9,'\x75\x7a\x6f\x77'),'\x51\x54\x73\x6d\x62':function(_0xefa0c6,_0x296ffc){return _0xefa0c6(_0x296ffc);}};return Array[_0x3934eb(0x16c,'\x48\x52\x4c\x72')](new Set((Array[_0x3934eb(0x151,'\x33\x79\x52\x73')](_0x172e30)?_0x172e30:[])['\x66\x69\x6c\x74\x65\x72'](Boolean)[_0x3934eb(0x127,'\x72\x4e\x76\x43')](function(_0x3cce94){const _0x37d0ab=_0x3934eb;if(_0x2f3598[_0x37d0ab(0x19d,'\x37\x5b\x61\x23')](_0x37d0ab(0x178,'\x33\x79\x52\x73'),_0x2f3598[_0x37d0ab(0x1b8,'\x5b\x6d\x40\x2a')]))_0x2f3598[_0x37d0ab(0x192,'\x62\x5a\x56\x4c')](_0x182442,_0x39a205,_0x2f3598[_0x37d0ab(0x117,'\x6b\x43\x68\x6c')]),_0x11a5e6(_0x57b539,_0x2f3598[_0x37d0ab(0x15d,'\x4b\x31\x64\x63')]);else return _0x2f3598[_0x37d0ab(0x1a1,'\x33\x79\x52\x73')](String,_0x3cce94)['\x74\x72\x69\x6d']();})['\x66\x69\x6c\x74\x65\x72'](Boolean)));}function _0x2ec3(_0x4b9bbb,_0x2e5e9b){_0x4b9bbb=_0x4b9bbb-(-0x1914+-0x1*0xf7+0x1b17);const _0x1faedb=_0x8d2c();let _0x2617be=_0x1faedb[_0x4b9bbb];if(_0x2ec3['\x4c\x6d\x6b\x42\x55\x61']===undefined){var _0x4da2bf=function(_0x3363b9){const _0x40c4a7='\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 _0x277e91='',_0xf45732='',_0x31284a=_0x277e91+_0x4da2bf,_0x3145fa=(''+function(){return-0x2*0x61+0x34e+-0x2*0x146;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x1*-0x21e9+0x59*0x22+0x1618);for(let _0x4275fc=-0x2457+-0x4db+0x2932,_0x18c4b3,_0x240851,_0x2cb66e=-0x2*-0x44b+0x1337+0x1*-0x1bcd;_0x240851=_0x3363b9['\x63\x68\x61\x72\x41\x74'](_0x2cb66e++);~_0x240851&&(_0x18c4b3=_0x4275fc%(-0x1d*0xd+0x1*-0x1572+-0x135*-0x13)?_0x18c4b3*(0x532+-0x81b+-0x329*-0x1)+_0x240851:_0x240851,_0x4275fc++%(-0x1c4b+0x2*-0x29+0x1ca1))?_0x277e91+=_0x3145fa||_0x31284a['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2cb66e+(0x15e*-0x1+-0x163+0x2cb))-(0x2*-0xa0b+0x499+0xf87)!==-0x1b2e+0x7b7+0x1377?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x2*0xf9+-0x122d+0x151e*0x1&_0x18c4b3>>(-(-0x1*-0x3c0+0xe1a+-0x11d8)*_0x4275fc&0x2417+0x2342+0x24d*-0x1f)):_0x4275fc:0x12e1*0x1+0x2619+-0x38fa){_0x240851=_0x40c4a7['\x69\x6e\x64\x65\x78\x4f\x66'](_0x240851);}for(let _0x262d26=-0x21af+0x223e+-0xd*0xb,_0x5eba01=_0x277e91['\x6c\x65\x6e\x67\x74\x68'];_0x262d26<_0x5eba01;_0x262d26++){_0xf45732+='\x25'+('\x30\x30'+_0x277e91['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x262d26)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x20ca+0x45+-0x20ff))['\x73\x6c\x69\x63\x65'](-(0x4bf+-0x446*-0x4+-0x15d5));}return decodeURIComponent(_0xf45732);};const _0x463243=function(_0x236411,_0xf9f8f8){let _0x5c7add=[],_0x458f88=-0x106f+0x202d*0x1+-0x136*0xd,_0x215ada,_0x264e1='';_0x236411=_0x4da2bf(_0x236411);let _0x3d2ead;for(_0x3d2ead=0x12b9*-0x2+0x9c9+0x1ba9;_0x3d2ead<0x2d1*-0x5+-0xcdb*-0x3+-0x177c;_0x3d2ead++){_0x5c7add[_0x3d2ead]=_0x3d2ead;}for(_0x3d2ead=0x70*0x2f+0x34a+-0x56*0x47;_0x3d2ead<0xa51+-0x6ca+0x1*-0x287;_0x3d2ead++){_0x458f88=(_0x458f88+_0x5c7add[_0x3d2ead]+_0xf9f8f8['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3d2ead%_0xf9f8f8['\x6c\x65\x6e\x67\x74\x68']))%(-0x848+0x5*0x1d9+0xb*0x1),_0x215ada=_0x5c7add[_0x3d2ead],_0x5c7add[_0x3d2ead]=_0x5c7add[_0x458f88],_0x5c7add[_0x458f88]=_0x215ada;}_0x3d2ead=0x14fb+-0x439+-0x10c2*0x1,_0x458f88=0x18ac+0xa1f+0xb99*-0x3;for(let _0x324acd=0x7*0x499+0x354+-0x1*0x2383;_0x324acd<_0x236411['\x6c\x65\x6e\x67\x74\x68'];_0x324acd++){_0x3d2ead=(_0x3d2ead+(-0x1*0x1d2c+0x2346+0x7*-0xdf))%(-0x1d02*0x1+0xb37+-0x11b*-0x11),_0x458f88=(_0x458f88+_0x5c7add[_0x3d2ead])%(-0x61*-0x12+-0x19*0xc2+0xd20),_0x215ada=_0x5c7add[_0x3d2ead],_0x5c7add[_0x3d2ead]=_0x5c7add[_0x458f88],_0x5c7add[_0x458f88]=_0x215ada,_0x264e1+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x236411['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x324acd)^_0x5c7add[(_0x5c7add[_0x3d2ead]+_0x5c7add[_0x458f88])%(-0x14f2+-0x36e+0x74*0x38)]);}return _0x264e1;};_0x2ec3['\x58\x45\x55\x51\x6c\x44']=_0x463243,_0x2ec3['\x6f\x75\x50\x72\x6f\x6e']={},_0x2ec3['\x4c\x6d\x6b\x42\x55\x61']=!![];}const _0x5529f1=_0x1faedb[0xef2*0x1+0x6*-0x4e+-0xd1e],_0x2b9a3f=_0x4b9bbb+_0x5529f1,_0x326f6e=_0x2ec3['\x6f\x75\x50\x72\x6f\x6e'][_0x2b9a3f];if(!_0x326f6e){if(_0x2ec3['\x6b\x7a\x74\x4a\x7a\x42']===undefined){const _0x323221=function(_0x21cbd6){this['\x6a\x61\x4f\x59\x74\x70']=_0x21cbd6,this['\x6b\x78\x6c\x46\x47\x6b']=[-0xe09+-0xa34+0x183e,0x21a3+-0x95*0x1+0x1*-0x210e,0x2*0x114a+0x5fd+0x5*-0x81d],this['\x74\x6f\x68\x6c\x68\x73']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x4a\x6d\x56\x73\x61\x58']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x6b\x52\x47\x55\x46\x59']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x323221['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x7a\x76\x58\x70\x6c\x6e']=function(){const _0x108d62=new RegExp(this['\x4a\x6d\x56\x73\x61\x58']+this['\x6b\x52\x47\x55\x46\x59']),_0x1860c8=_0x108d62['\x74\x65\x73\x74'](this['\x74\x6f\x68\x6c\x68\x73']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x6b\x78\x6c\x46\x47\x6b'][-0xa55+-0xd2f+0x1785]:--this['\x6b\x78\x6c\x46\x47\x6b'][-0x1*-0x2363+0x4f*0x2b+0x615*-0x8];return this['\x54\x77\x6e\x4d\x57\x4e'](_0x1860c8);},_0x323221['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x54\x77\x6e\x4d\x57\x4e']=function(_0x4a15eb){if(!Boolean(~_0x4a15eb))return _0x4a15eb;return this['\x6e\x79\x47\x59\x68\x6e'](this['\x6a\x61\x4f\x59\x74\x70']);},_0x323221['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6e\x79\x47\x59\x68\x6e']=function(_0x1d8f0a){for(let _0x1db574=-0x11c3+-0x21e0+0x33a3,_0x2d1df7=this['\x6b\x78\x6c\x46\x47\x6b']['\x6c\x65\x6e\x67\x74\x68'];_0x1db574<_0x2d1df7;_0x1db574++){this['\x6b\x78\x6c\x46\x47\x6b']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x2d1df7=this['\x6b\x78\x6c\x46\x47\x6b']['\x6c\x65\x6e\x67\x74\x68'];}return _0x1d8f0a(this['\x6b\x78\x6c\x46\x47\x6b'][-0x1492+0x3a1+0x1*0x10f1]);},(''+function(){return 0xe7c+-0x1ee*0x13+-0xb17*-0x2;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0xa39+-0x343*-0x7+-0x210d*0x1)&&new _0x323221(_0x2ec3)['\x7a\x76\x58\x70\x6c\x6e'](),_0x2ec3['\x6b\x7a\x74\x4a\x7a\x42']=!![];}_0x2617be=_0x2ec3['\x58\x45\x55\x51\x6c\x44'](_0x2617be,_0x2e5e9b),_0x2ec3['\x6f\x75\x50\x72\x6f\x6e'][_0x2b9a3f]=_0x2617be;}else _0x2617be=_0x326f6e;return _0x2617be;}function _0x55b3eb(_0x56b009,_0x25fb45){const _0x1075da=_0x2ec3,_0x1fa5c5={'\x7a\x50\x76\x68\x6d':function(_0x46e292,_0x142362){return _0x46e292(_0x142362);}};if(!_0x25fb45)return;_0x56b009[_0x1075da(0x17e,'\x65\x35\x50\x2a')](_0x1fa5c5[_0x1075da(0x13c,'\x5b\x4e\x2a\x48')](String,_0x25fb45)[_0x1075da(0x198,'\x35\x6a\x4f\x43')]());}function _0x392535(_0x12a251,_0x423054){const _0x40db4c=_0x2ec3,_0x5741c5={'\x42\x45\x64\x6b\x49':function(_0xf60f3e,_0x17f783){return _0xf60f3e(_0x17f783);},'\x66\x6d\x6f\x55\x45':function(_0x58f6d0,_0x3c47d7,_0x5d95dd){return _0x58f6d0(_0x3c47d7,_0x5d95dd);},'\x63\x50\x43\x57\x57':_0x40db4c(0x136,'\x26\x6a\x28\x34')+_0x40db4c(0x17c,'\x34\x59\x43\x23')+_0x40db4c(0x173,'\x26\x6a\x28\x34'),'\x42\x68\x42\x75\x51':function(_0x445d70,_0x1f6588,_0x2669b9){return _0x445d70(_0x1f6588,_0x2669b9);},'\x56\x50\x45\x66\x45':_0x40db4c(0x132,'\x37\x5b\x61\x23')+_0x40db4c(0x15b,'\x69\x6f\x63\x61'),'\x6e\x63\x57\x54\x59':'\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x40db4c(0x16a,'\x48\x71\x76\x31'),'\x77\x72\x62\x55\x6b':function(_0x1615ad,_0x168c30){return _0x1615ad<_0x168c30;},'\x73\x5a\x68\x65\x53':_0x40db4c(0x152,'\x33\x5a\x55\x5b'),'\x78\x63\x62\x42\x56':function(_0x2e5a6a,_0x2e7b67){return _0x2e5a6a!==_0x2e7b67;},'\x50\x67\x71\x43\x4d':function(_0x40d27b,_0x5157fc,_0x4349e7){return _0x40d27b(_0x5157fc,_0x4349e7);},'\x78\x4e\x45\x51\x49':function(_0x51bfbf,_0x2e3670){return _0x51bfbf+_0x2e3670;},'\x6c\x6d\x63\x51\x56':function(_0x59fa33,_0x220b07){return _0x59fa33||_0x220b07;},'\x5a\x41\x61\x53\x44':function(_0x21dd3f,_0x521627,_0x28e45a){return _0x21dd3f(_0x521627,_0x28e45a);},'\x44\x73\x55\x45\x58':function(_0x103458,_0x2cf49f){return _0x103458!==_0x2cf49f;},'\x49\x7a\x51\x56\x72':_0x40db4c(0x10f,'\x69\x58\x23\x65'),'\x61\x75\x43\x44\x44':_0x40db4c(0x11b,'\x43\x74\x68\x40'),'\x7a\x61\x46\x78\x63':_0x40db4c(0x191,'\x78\x21\x6c\x53')+_0x40db4c(0x1ab,'\x30\x52\x47\x78'),'\x48\x6f\x47\x73\x63':function(_0x598f6f,_0x2c621e,_0x158e15){return _0x598f6f(_0x2c621e,_0x158e15);},'\x50\x48\x72\x77\x64':_0x40db4c(0x17b,'\x68\x72\x4a\x6e')+_0x40db4c(0x1b6,'\x75\x30\x4a\x4f'),'\x54\x42\x6f\x68\x45':_0x40db4c(0x168,'\x78\x6f\x30\x28')+_0x40db4c(0x1bd,'\x50\x35\x51\x70'),'\x66\x6a\x6e\x58\x78':function(_0x4c9b12,_0x425377,_0x5e2f73){return _0x4c9b12(_0x425377,_0x5e2f73);},'\x76\x42\x69\x71\x6d':_0x40db4c(0x130,'\x47\x44\x36\x4e')+_0x40db4c(0x1c2,'\x78\x21\x6c\x53')+_0x40db4c(0x170,'\x48\x52\x4c\x72'),'\x41\x77\x53\x43\x65':_0x40db4c(0x119,'\x68\x72\x4a\x6e')+_0x40db4c(0x187,'\x48\x71\x76\x31'),'\x79\x69\x76\x66\x58':_0x40db4c(0x139,'\x5b\x59\x24\x63'),'\x74\x53\x6d\x49\x56':function(_0x5bdf7e,_0x4733d3,_0x318902){return _0x5bdf7e(_0x4733d3,_0x318902);},'\x6a\x65\x6e\x61\x47':_0x40db4c(0x1a2,'\x48\x52\x4c\x72')+_0x40db4c(0x13a,'\x68\x72\x4a\x6e')+'\x6f\x6e','\x71\x78\x63\x45\x66':function(_0x52f884,_0x32e3b1,_0x2f60c3){return _0x52f884(_0x32e3b1,_0x2f60c3);},'\x79\x56\x6a\x44\x66':_0x40db4c(0x128,'\x40\x5e\x4e\x5b')+_0x40db4c(0x149,'\x33\x5a\x55\x5b'),'\x75\x75\x59\x71\x58':_0x40db4c(0x12b,'\x5b\x74\x6c\x76')+_0x40db4c(0x1ad,'\x69\x37\x4d\x38'),'\x55\x56\x4c\x77\x45':_0x40db4c(0x186,'\x72\x30\x77\x30'),'\x45\x6e\x61\x42\x76':_0x40db4c(0x19b,'\x33\x5a\x55\x5b'),'\x6f\x70\x6b\x55\x4e':'\x72\x69\x73\x6b\x3a\x76\x61\x6c'+_0x40db4c(0x16f,'\x75\x30\x4a\x4f')},_0x169e25=Array[_0x40db4c(0x14f,'\x48\x52\x4c\x72')](_0x12a251)?_0x12a251[_0x40db4c(0x111,'\x69\x6f\x63\x61')](function(_0x3961ed){return String(_0x3961ed);}):[],_0xd44f21=[];for(let _0x29623f=0xb*0x26b+-0x607+-0xa49*0x2;_0x5741c5[_0x40db4c(0x11d,'\x5b\x4e\x2a\x48')](_0x29623f,_0x169e25[_0x40db4c(0x125,'\x34\x59\x43\x23')]);_0x29623f++){if(_0x5741c5[_0x40db4c(0x1aa,'\x30\x52\x47\x78')]===_0x5741c5[_0x40db4c(0x194,'\x26\x2a\x6b\x65')]){const _0xd84849=_0x169e25[_0x29623f];_0x5741c5[_0x40db4c(0x1a7,'\x78\x21\x6c\x53')](_0x55b3eb,_0xd44f21,_0xd84849);const _0x512e1e=_0xd84849[_0x40db4c(0x138,'\x47\x44\x36\x4e')]('\x3a')[-0x16fc+0x9*0x2e9+-0x335];if(_0x512e1e&&_0x5741c5[_0x40db4c(0x13b,'\x30\x52\x47\x78')](_0x512e1e,_0xd84849))_0x5741c5[_0x40db4c(0x129,'\x48\x52\x4c\x72')](_0x55b3eb,_0xd44f21,_0x512e1e);}else{const _0x1b9154={'\x6e\x52\x67\x47\x6c':function(_0x46d996,_0x78ca11){const _0x50d8c9=_0x40db4c;return tGgMgq[_0x50d8c9(0x176,'\x26\x67\x55\x6b')](_0x46d996,_0x78ca11);}};return _0x3a2b51[_0x40db4c(0x14e,'\x4b\x31\x64\x63')](new _0x472416((_0x39ac5b['\x69\x73\x41\x72\x72\x61\x79'](_0x297f53)?_0x2e5f16:[])[_0x40db4c(0x1b5,'\x65\x35\x50\x2a')](_0x575c8a)[_0x40db4c(0x18d,'\x6c\x46\x4f\x44')](function(_0x38790e){const _0x1ee3dc=_0x40db4c;return _0x1b9154[_0x1ee3dc(0x123,'\x68\x72\x4a\x6e')](_0x158364,_0x38790e)[_0x1ee3dc(0x120,'\x68\x72\x4a\x6e')]();})[_0x40db4c(0x185,'\x6b\x43\x68\x6c')](_0x2de472)));}}const _0xf73e91=_0x5741c5[_0x40db4c(0x1be,'\x69\x58\x23\x65')](_0x169e25[_0x40db4c(0x193,'\x50\x35\x51\x70')]('\x20')+'\x20',String(_0x5741c5['\x6c\x6d\x63\x51\x56'](_0x423054,'')))[_0x40db4c(0x154,'\x5e\x5e\x52\x46')+_0x40db4c(0x141,'\x4f\x47\x5d\x37')]();/(error|exception|failed|unstable|log_error|runtime|429)/[_0x40db4c(0x1b3,'\x30\x52\x47\x78')](_0xf73e91)&&(_0x55b3eb(_0xd44f21,_0x40db4c(0x12d,'\x63\x72\x26\x49')+_0x40db4c(0x1a3,'\x69\x58\x23\x65')+_0x40db4c(0x13f,'\x50\x29\x51\x63')),_0x5741c5[_0x40db4c(0x153,'\x75\x36\x4d\x5d')](_0x55b3eb,_0xd44f21,_0x5741c5[_0x40db4c(0x18e,'\x65\x35\x50\x2a')]));/(protocol|prompt|audit|gep|schema|drift)/['\x74\x65\x73\x74'](_0xf73e91)&&(_0x5741c5[_0x40db4c(0x15a,'\x69\x37\x4d\x38')](_0x5741c5['\x49\x7a\x51\x56\x72'],_0x5741c5[_0x40db4c(0x159,'\x37\x5b\x61\x23')])?(_0x5741c5[_0x40db4c(0x12a,'\x30\x70\x46\x6e')](_0x55b3eb,_0xd44f21,_0x5741c5[_0x40db4c(0x17f,'\x75\x36\x4d\x5d')]),_0x5741c5[_0x40db4c(0x18a,'\x75\x7a\x6f\x77')](_0x55b3eb,_0xd44f21,_0x5741c5[_0x40db4c(0x163,'\x5e\x5e\x52\x46')]),_0x55b3eb(_0xd44f21,_0x5741c5[_0x40db4c(0x175,'\x33\x5a\x55\x5b')])):(_0x5741c5['\x66\x6d\x6f\x55\x45'](_0x2d50cf,_0x198091,_0x5741c5[_0x40db4c(0x162,'\x5b\x4e\x2a\x48')]),_0x5741c5[_0x40db4c(0x1b2,'\x30\x6d\x75\x28')](_0x5960d8,_0x24ec8d,_0x5741c5[_0x40db4c(0x180,'\x34\x59\x43\x23')])));/(perf|performance|bottleneck|latency|slow|throughput)/[_0x40db4c(0x114,'\x30\x70\x46\x6e')](_0xf73e91)&&(_0x5741c5[_0x40db4c(0x19a,'\x34\x59\x43\x23')](_0x55b3eb,_0xd44f21,_0x5741c5[_0x40db4c(0x166,'\x4b\x31\x64\x63')]),_0x55b3eb(_0xd44f21,_0x5741c5[_0x40db4c(0x131,'\x33\x79\x52\x73')]));/(feature|capability_gap|user_feature_request|external_opportunity|stagnation recommendation)/[_0x40db4c(0x13e,'\x34\x59\x43\x23')](_0xf73e91)&&(_0x55b3eb(_0xd44f21,_0x40db4c(0x1c0,'\x37\x49\x42\x55')+_0x40db4c(0x10c,'\x6b\x43\x68\x6c')+'\x74\x79'),_0x5741c5[_0x40db4c(0x10d,'\x26\x67\x55\x6b')](_0x55b3eb,_0xd44f21,_0x5741c5[_0x40db4c(0x188,'\x69\x6f\x63\x61')]));/(stagnation|plateau|steady_state|saturation|empty_cycle_loop|loop_detected|recurring)/[_0x40db4c(0x140,'\x4e\x64\x32\x35')](_0xf73e91)&&(_0x55b3eb(_0xd44f21,'\x70\x72\x6f\x62\x6c\x65\x6d\x3a'+_0x40db4c(0x184,'\x5b\x6d\x40\x2a')+'\x6f\x6e'),_0x5741c5['\x66\x6a\x6e\x58\x78'](_0x55b3eb,_0xd44f21,_0x5741c5[_0x40db4c(0x1a0,'\x4e\x64\x32\x35')]));/(task|worker|heartbeat|hub|commitment|assignment|orchestration)/['\x74\x65\x73\x74'](_0xf73e91)&&(_0x40db4c(0x1bf,'\x78\x21\x6c\x53')===_0x5741c5[_0x40db4c(0x156,'\x68\x72\x4a\x6e')]?_0x5741c5[_0x40db4c(0x146,'\x34\x59\x43\x23')](_0x1ba12f,_0x56f644,_0x40db4c(0x161,'\x4d\x40\x6a\x46')+_0x40db4c(0x115,'\x30\x70\x46\x6e')+'\x6f\x6e'):_0x5741c5['\x74\x53\x6d\x49\x56'](_0x55b3eb,_0xd44f21,_0x5741c5[_0x40db4c(0x172,'\x72\x30\x77\x30')]));/(memory|narrative|reflection)/[_0x40db4c(0x199,'\x6b\x43\x68\x6c')](_0xf73e91)&&_0x5741c5[_0x40db4c(0x190,'\x75\x36\x4d\x5d')](_0x55b3eb,_0xd44f21,_0x5741c5[_0x40db4c(0x118,'\x4b\x31\x64\x63')]);/(skill|dashboard)/[_0x40db4c(0x13d,'\x26\x6a\x28\x34')](_0xf73e91)&&_0x55b3eb(_0xd44f21,_0x5741c5[_0x40db4c(0x110,'\x30\x70\x46\x6e')]);if(/(validation|canary|rollback|constraint|blast radius|destructive)/[_0x40db4c(0x112,'\x4b\x31\x64\x63')](_0xf73e91)){if(_0x5741c5[_0x40db4c(0x19c,'\x78\x6f\x30\x28')](_0x5741c5[_0x40db4c(0x1ac,'\x70\x74\x6f\x66')],_0x5741c5[_0x40db4c(0x197,'\x5e\x5e\x52\x46')]))_0x5741c5[_0x40db4c(0x134,'\x48\x52\x4c\x72')](_0x55b3eb,_0xd44f21,_0x5741c5[_0x40db4c(0x14c,'\x40\x5e\x4e\x5b')]);else return _0x32a1ef[_0x40db4c(0x133,'\x42\x35\x40\x5b')]()[_0x40db4c(0x169,'\x4f\x47\x5d\x37')](_0x40db4c(0x150,'\x78\x21\x6c\x53')+'\x2b\x29\x2b\x24')[_0x40db4c(0x1af,'\x40\x5e\x4e\x5b')]()[_0x40db4c(0x15e,'\x26\x6a\x28\x34')+_0x40db4c(0x122,'\x70\x74\x6f\x66')](_0x3a6473)['\x73\x65\x61\x72\x63\x68'](tGgMgq['\x6e\x63\x57\x54\x59']);}return _0x5741c5[_0x40db4c(0x148,'\x48\x71\x76\x31')](_0x2543b3,_0xd44f21);}function _0xb833d9(_0x565394){const _0x19cda2=_0x2ec3,_0x23a7ae={'\x73\x73\x4d\x6d\x6a':function(_0x5e8571,_0x4c6448){return _0x5e8571!==_0x4c6448;},'\x45\x61\x45\x74\x54':_0x19cda2(0x1c1,'\x43\x74\x68\x40'),'\x45\x5a\x73\x54\x43':function(_0x306040,_0x2a333d){return _0x306040+_0x2a333d;},'\x70\x69\x67\x45\x71':_0x19cda2(0x135,'\x56\x7a\x70\x6b'),'\x45\x74\x58\x47\x58':function(_0x431597,_0xbf346){return _0x431597(_0xbf346);},'\x73\x43\x42\x4f\x74':function(_0x18dd61,_0x188c7f){return _0x18dd61===_0x188c7f;},'\x67\x4f\x49\x6e\x58':function(_0x2f55e8,_0x46a4ff){return _0x2f55e8===_0x46a4ff;},'\x41\x4f\x66\x51\x4c':_0x19cda2(0x137,'\x6b\x43\x68\x6c'),'\x68\x42\x55\x44\x58':function(_0x465e2b,_0x27e9ed,_0x1232f1){return _0x465e2b(_0x27e9ed,_0x1232f1);}};if(!_0x565394||_0x23a7ae[_0x19cda2(0x14a,'\x4b\x31\x64\x63')](typeof _0x565394,_0x23a7ae[_0x19cda2(0x1ba,'\x47\x44\x36\x4e')]))return[];let _0x4cc3d3=[];if(_0x565394[_0x19cda2(0x18f,'\x76\x62\x67\x58')])_0x4cc3d3[_0x19cda2(0x179,'\x69\x37\x4d\x38')](_0x23a7ae['\x45\x5a\x73\x54\x43'](_0x23a7ae['\x70\x69\x67\x45\x71'],_0x23a7ae[_0x19cda2(0x17d,'\x75\x36\x4d\x5d')](String,_0x565394[_0x19cda2(0x126,'\x48\x52\x4c\x72')])['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x19cda2(0x1b9,'\x76\x62\x67\x58')]()));if(Array[_0x19cda2(0x15f,'\x40\x5e\x4e\x5b')](_0x565394['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x19cda2(0x165,'\x5b\x59\x24\x63')]))_0x4cc3d3=_0x4cc3d3[_0x19cda2(0x195,'\x42\x35\x40\x5b')](_0x565394[_0x19cda2(0x121,'\x4e\x64\x32\x35')+_0x19cda2(0x177,'\x37\x5b\x61\x23')]);if(_0x23a7ae[_0x19cda2(0x11a,'\x30\x52\x47\x78')](typeof _0x565394['\x69\x64'],_0x19cda2(0x124,'\x37\x5b\x61\x23')))_0x4cc3d3['\x70\x75\x73\x68'](_0x565394['\x69\x64']);if(_0x23a7ae[_0x19cda2(0x14b,'\x33\x5a\x55\x5b')](typeof _0x565394[_0x19cda2(0x143,'\x4e\x64\x32\x35')],_0x23a7ae[_0x19cda2(0x183,'\x5b\x59\x24\x63')]))_0x4cc3d3[_0x19cda2(0x10e,'\x4b\x31\x64\x63')](_0x565394[_0x19cda2(0x158,'\x35\x6a\x4f\x43')]);return _0x23a7ae[_0x19cda2(0x157,'\x5b\x6d\x40\x2a')](_0x392535,_0x4cc3d3,'');}function _0x4b43f0(_0x5e2ea0,_0x4e0c55){const _0x279c9f=_0x2ec3,_0x27d65b={'\x59\x56\x4c\x63\x63':function(_0x4ec5d3,_0x417b5a,_0x11e52f){return _0x4ec5d3(_0x417b5a,_0x11e52f);},'\x49\x6b\x50\x49\x4c':function(_0x304b3e,_0x3212af){return _0x304b3e(_0x3212af);},'\x44\x61\x7a\x4d\x73':function(_0x48d451,_0x562e40){return _0x48d451===_0x562e40;},'\x65\x7a\x6d\x42\x4a':function(_0x38cd5d,_0x342d10){return _0x38cd5d<_0x342d10;}},_0x446af0=_0x27d65b['\x59\x56\x4c\x63\x63'](_0x392535,_0x4e0c55,''),_0x2572ff=_0x27d65b[_0x279c9f(0x147,'\x4b\x31\x64\x63')](_0xb833d9,_0x5e2ea0);if(_0x27d65b['\x44\x61\x7a\x4d\x73'](_0x446af0[_0x279c9f(0x174,'\x68\x72\x4a\x6e')],-0x116*-0x22+-0x6e4+-0xf8*0x1f)||_0x2572ff[_0x279c9f(0x1ae,'\x5e\x5e\x52\x46')]===-0x22*-0xcb+0x505+-0x1ffb)return 0x1b87+-0x1*-0x269d+-0x4224;const _0x4e626f=new Set(_0x446af0);let _0x21bdd7=0x1f35+-0x3*-0x3ef+-0x1581*0x2;for(let _0x461c92=-0x1*-0x26b0+0x51+0x2701*-0x1;_0x27d65b[_0x279c9f(0x1bb,'\x4e\x49\x51\x4a')](_0x461c92,_0x2572ff[_0x279c9f(0x1b7,'\x6c\x46\x4f\x44')]);_0x461c92++){if(_0x4e626f[_0x279c9f(0x15c,'\x4e\x49\x51\x4a')](_0x2572ff[_0x461c92]))_0x21bdd7++;}return _0x21bdd7;}const _0x4e77c1={};_0x4e77c1[_0x529124(0x189,'\x4f\x47\x5d\x37')+'\x67\x6e\x61\x6c\x73']=_0x392535,_0x4e77c1[_0x529124(0x16d,'\x4e\x64\x32\x35')]=_0xb833d9,_0x4e77c1['\x73\x63\x6f\x72\x65\x54\x61\x67'+'\x4f\x76\x65\x72\x6c\x61\x70']=_0x4b43f0,module[_0x529124(0x14d,'\x26\x67\x55\x6b')]=_0x4e77c1;