@evomap/evolver 1.89.3 → 1.89.4

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 (104) hide show
  1. package/.cursor/BUGBOT.md +182 -0
  2. package/.env.example +68 -0
  3. package/.git-commit-guard-token +1 -0
  4. package/.github/CODEOWNERS +63 -0
  5. package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
  6. package/.github/pull_request_template.md +45 -0
  7. package/.github/workflows/test.yml +75 -0
  8. package/CHANGELOG.md +1237 -0
  9. package/README.md +86 -528
  10. package/README.public.md +569 -0
  11. package/SECURITY.md +108 -0
  12. package/assets/gep/events.jsonl +3 -0
  13. package/examples/atp-consumer-quickstart.md +100 -0
  14. package/examples/hello-world.md +38 -0
  15. package/index.js +30 -1
  16. package/package.json +6 -17
  17. package/proxy-package.json +39 -0
  18. package/public.manifest.json +143 -0
  19. package/src/config.js +23 -0
  20. package/src/evolve/guards.js +721 -1
  21. package/src/evolve/pipeline/collect.js +1283 -1
  22. package/src/evolve/pipeline/dispatch.js +421 -1
  23. package/src/evolve/pipeline/enrich.js +440 -1
  24. package/src/evolve/pipeline/hub.js +319 -1
  25. package/src/evolve/pipeline/select.js +274 -1
  26. package/src/evolve/pipeline/signals.js +206 -1
  27. package/src/evolve/utils.js +264 -1
  28. package/src/evolve.js +350 -1
  29. package/src/experiment/agentRunner.js +229 -0
  30. package/src/experiment/cli.js +159 -0
  31. package/src/experiment/comparison.js +233 -0
  32. package/src/experiment/metrics.js +75 -0
  33. package/src/forceUpdate.js +147 -59
  34. package/src/gep/a2aProtocol.js +4455 -1
  35. package/src/gep/antiAbuseTelemetry.js +233 -0
  36. package/src/gep/autoDistillConv.js +205 -1
  37. package/src/gep/autoDistillLlm.js +315 -1
  38. package/src/gep/candidateEval.js +92 -1
  39. package/src/gep/candidates.js +198 -1
  40. package/src/gep/contentHash.js +30 -1
  41. package/src/gep/conversationSniffer.js +266 -1
  42. package/src/gep/crypto.js +89 -1
  43. package/src/gep/curriculum.js +163 -1
  44. package/src/gep/deviceId.js +218 -1
  45. package/src/gep/envFingerprint.js +118 -1
  46. package/src/gep/epigenetics.js +31 -1
  47. package/src/gep/execBridge.js +711 -1
  48. package/src/gep/explore.js +289 -1
  49. package/src/gep/hash.js +15 -1
  50. package/src/gep/hubFetch.js +359 -1
  51. package/src/gep/hubReview.js +207 -1
  52. package/src/gep/hubSearch.js +526 -1
  53. package/src/gep/hubVerify.js +306 -1
  54. package/src/gep/learningSignals.js +89 -1
  55. package/src/gep/memoryGraph.js +1374 -1
  56. package/src/gep/memoryGraphAdapter.js +203 -1
  57. package/src/gep/mutation.js +203 -1
  58. package/src/gep/narrativeMemory.js +108 -1
  59. package/src/gep/openPRRegistry.js +205 -1
  60. package/src/gep/personality.js +423 -1
  61. package/src/gep/policyCheck.js +599 -1
  62. package/src/gep/prompt.js +836 -1
  63. package/src/gep/recallInject.js +409 -1
  64. package/src/gep/recallVerifier.js +318 -1
  65. package/src/gep/reflection.js +177 -1
  66. package/src/gep/sanitize.js +9 -0
  67. package/src/gep/selector.js +602 -1
  68. package/src/gep/skillDistiller.js +1294 -1
  69. package/src/gep/solidify.js +1699 -1
  70. package/src/gep/strategy.js +136 -1
  71. package/src/gep/tokenSavings.js +88 -1
  72. package/src/gep/validator/sandboxExecutor.js +29 -1
  73. package/src/gep/workspaceKeychain.js +174 -1
  74. package/src/proxy/extensions/traceControl.js +99 -1
  75. package/src/proxy/index.js +10 -1
  76. package/src/proxy/inject.js +52 -1
  77. package/src/proxy/lifecycle/manager.js +19 -0
  78. package/src/proxy/mailbox/store.js +2 -1
  79. package/src/proxy/router/messages_route.js +5 -2
  80. package/src/proxy/trace/extractor.js +646 -1
  81. package/src/proxy/trace/usage.js +105 -1
  82. package/CONTRIBUTING.md +0 -19
  83. package/assets/cover.png +0 -0
  84. package/scripts/a2a_export.js +0 -63
  85. package/scripts/a2a_ingest.js +0 -79
  86. package/scripts/a2a_promote.js +0 -118
  87. package/scripts/analyze_by_skill.js +0 -121
  88. package/scripts/build_binaries.js +0 -479
  89. package/scripts/check-changelog.js +0 -166
  90. package/scripts/extract_log.js +0 -85
  91. package/scripts/generate_history.js +0 -75
  92. package/scripts/gep_append_event.js +0 -96
  93. package/scripts/gep_personality_report.js +0 -234
  94. package/scripts/human_report.js +0 -147
  95. package/scripts/recall-verify-report.js +0 -234
  96. package/scripts/recover_loop.js +0 -61
  97. package/scripts/refresh_stars_badge.js +0 -168
  98. package/scripts/seed-merchants.js +0 -91
  99. package/scripts/suggest_version.js +0 -89
  100. package/scripts/validate-modules.js +0 -38
  101. package/scripts/validate-suite.js +0 -78
  102. package/skills/index.json +0 -14
  103. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  104. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,203 @@
1
- const _0x24ef29=_0x51a6;function _0x54ab(){const _0xd2278a=['\x6e\x53\x6b\x55\x57\x35\x2f\x64\x4e\x30\x76\x4f\x46\x6d\x6f\x55','\x57\x37\x74\x63\x4b\x77\x37\x63\x4b\x4a\x5a\x63\x49\x31\x2f\x63\x52\x30\x71\x44\x6b\x4c\x56\x63\x50\x57','\x66\x4b\x48\x51\x57\x35\x6e\x61\x6d\x63\x78\x64\x49\x47','\x57\x35\x65\x4a\x6a\x43\x6b\x73\x57\x35\x64\x63\x4a\x57','\x61\x75\x76\x42\x57\x36\x48\x61\x6d\x5a\x37\x64\x49\x57','\x57\x51\x48\x44\x57\x4f\x64\x63\x4c\x72\x71','\x57\x36\x37\x64\x55\x6d\x6b\x44\x57\x37\x37\x63\x55\x6d\x6b\x6e\x57\x4f\x31\x74','\x44\x5a\x48\x4c\x61\x65\x56\x63\x55\x65\x5a\x63\x4b\x71','\x57\x51\x37\x64\x51\x6d\x6f\x63\x76\x63\x78\x64\x4b\x72\x43','\x57\x36\x43\x73\x57\x50\x31\x6f\x57\x37\x68\x63\x47\x6d\x6f\x30\x57\x51\x47','\x57\x35\x57\x41\x57\x50\x30\x51\x6e\x48\x79\x7a\x57\x51\x71','\x64\x33\x6c\x63\x4c\x31\x42\x63\x52\x47','\x42\x38\x6f\x67\x57\x36\x6c\x63\x49\x77\x4e\x64\x48\x6d\x6f\x4c\x63\x5a\x78\x64\x52\x61','\x67\x53\x6b\x74\x57\x34\x46\x64\x4d\x77\x4b','\x76\x74\x5a\x63\x47\x33\x38\x39\x57\x52\x6c\x64\x49\x6d\x6f\x50','\x57\x37\x6c\x63\x4e\x6d\x6f\x6a\x66\x4c\x61','\x42\x4a\x6a\x36','\x71\x33\x69\x51\x46\x63\x43','\x57\x4f\x43\x6e\x65\x43\x6f\x39\x65\x57','\x57\x52\x46\x64\x48\x5a\x74\x64\x49\x78\x5a\x64\x4e\x4a\x78\x63\x52\x47','\x6f\x4d\x4b\x2b\x57\x52\x71\x70','\x57\x35\x33\x64\x50\x4a\x79\x48\x57\x50\x57\x32\x67\x38\x6f\x57','\x57\x36\x44\x68\x57\x52\x56\x63\x52\x58\x54\x4e\x57\x34\x44\x79','\x66\x77\x44\x56\x77\x38\x6b\x7a\x57\x36\x38\x42\x75\x47','\x57\x37\x34\x79\x57\x51\x6e\x76\x57\x37\x68\x63\x4b\x6d\x6f\x44\x57\x52\x30','\x57\x52\x57\x64\x65\x53\x6f\x76\x61\x71','\x6b\x4d\x4b\x75\x57\x4f\x53\x67\x44\x62\x4f\x4e','\x6f\x43\x6f\x64\x57\x50\x4c\x6e\x67\x61','\x46\x58\x2f\x64\x4f\x57\x78\x64\x56\x33\x61\x35\x57\x37\x53\x66\x72\x65\x46\x64\x4f\x77\x4b','\x75\x59\x33\x63\x4c\x47','\x57\x36\x61\x75\x57\x51\x4c\x75\x57\x36\x6c\x63\x48\x43\x6f\x50','\x43\x38\x6f\x56\x57\x50\x68\x63\x55\x72\x71\x35\x6c\x43\x6f\x6a\x57\x51\x46\x64\x55\x47\x4e\x63\x55\x43\x6f\x4b','\x57\x52\x53\x69\x67\x53\x6f\x6a','\x78\x6d\x6b\x42\x62\x38\x6f\x30\x66\x64\x6e\x45\x57\x35\x43','\x6b\x64\x56\x63\x54\x4e\x7a\x49\x45\x43\x6f\x47\x63\x47','\x57\x35\x76\x57\x6a\x43\x6f\x68\x57\x51\x38','\x57\x4f\x5a\x63\x50\x31\x76\x79\x57\x36\x61','\x57\x37\x2f\x64\x50\x43\x6b\x46\x57\x37\x5a\x63\x55\x6d\x6b\x70\x57\x51\x39\x67','\x57\x35\x65\x4a\x6b\x38\x6b\x73\x57\x35\x42\x63\x4a\x53\x6b\x56\x42\x47','\x57\x37\x58\x66\x57\x52\x42\x63\x4f\x71\x76\x69\x57\x36\x6e\x76','\x57\x50\x5a\x64\x4b\x48\x4e\x63\x48\x47','\x74\x43\x6b\x65\x65\x43\x6f\x75\x63\x62\x76\x69\x57\x37\x53','\x7a\x32\x37\x64\x4c\x30\x74\x63\x4c\x38\x6f\x76\x57\x4f\x44\x33','\x6b\x32\x30\x50\x57\x52\x47\x76\x43\x53\x6f\x78\x57\x4f\x57','\x57\x51\x56\x64\x48\x4a\x64\x64\x47\x4d\x4e\x64\x4a\x57\x38','\x68\x47\x4a\x63\x4a\x31\x48\x6a\x42\x53\x6f\x6c\x6a\x47','\x62\x43\x6b\x41\x57\x37\x65','\x57\x35\x30\x57\x57\x50\x43\x32\x6b\x48\x47\x70','\x57\x51\x2f\x63\x51\x6d\x6f\x7a\x57\x51\x78\x64\x52\x53\x6f\x72\x57\x37\x50\x68\x43\x53\x6f\x66\x64\x38\x6f\x53\x57\x35\x53','\x57\x36\x61\x6a\x57\x51\x39\x6f\x57\x37\x42\x63\x4d\x47','\x65\x6d\x6b\x66\x57\x50\x46\x64\x48\x4d\x38','\x57\x51\x64\x63\x4d\x53\x6f\x71\x68\x38\x6b\x38\x57\x50\x65\x30\x6b\x47','\x61\x43\x6b\x46\x57\x37\x66\x39\x64\x71','\x71\x67\x34\x6c\x57\x34\x35\x76\x57\x36\x33\x63\x4e\x43\x6f\x6b\x57\x52\x74\x64\x48\x78\x6c\x63\x4f\x38\x6b\x41','\x57\x37\x58\x66\x57\x52\x42\x63\x4f\x71\x76\x69\x57\x36\x31\x75','\x45\x48\x52\x63\x4b\x33\x43\x72','\x57\x37\x4f\x41\x57\x51\x62\x42\x57\x36\x2f\x63\x4f\x53\x6f\x2f\x57\x52\x79','\x69\x71\x47\x77\x73\x32\x34','\x57\x36\x5a\x64\x49\x38\x6f\x57\x57\x4f\x42\x64\x52\x33\x5a\x63\x49\x75\x71','\x63\x43\x6b\x6d\x57\x36\x44\x31\x64\x61','\x57\x51\x6c\x64\x49\x6d\x6f\x4b\x57\x52\x61\x45\x57\x4f\x53\x42','\x41\x38\x6f\x67\x57\x52\x54\x48\x6e\x6d\x6b\x45\x57\x36\x4f','\x73\x53\x6b\x66\x67\x38\x6f\x63','\x57\x35\x76\x59\x62\x6d\x6b\x32\x6f\x53\x6f\x78\x78\x43\x6f\x58','\x41\x59\x42\x63\x55\x71\x4a\x64\x50\x6d\x6f\x38\x57\x4f\x43\x6f','\x57\x35\x47\x68\x57\x4f\x69\x30\x6e\x47','\x57\x51\x33\x63\x48\x6d\x6b\x32\x57\x34\x4e\x63\x51\x62\x37\x64\x48\x58\x71','\x6e\x38\x6f\x43\x57\x50\x6a\x68','\x70\x65\x70\x63\x4a\x38\x6b\x55\x64\x53\x6f\x44\x57\x51\x31\x32','\x57\x50\x31\x62\x57\x50\x78\x63\x4f\x63\x4c\x35','\x72\x59\x70\x64\x56\x6d\x6b\x50\x70\x53\x6f\x38\x57\x50\x71\x43\x57\x4f\x4b','\x45\x72\x5a\x64\x4f\x57\x6c\x64\x53\x78\x65\x39\x57\x35\x30\x51\x72\x33\x5a\x64\x4a\x4c\x34','\x57\x52\x4e\x63\x4f\x53\x6b\x41\x57\x36\x74\x63\x49\x47','\x42\x74\x68\x63\x50\x62\x74\x64\x53\x6d\x6f\x4d\x57\x4f\x6d\x50','\x57\x36\x74\x63\x53\x43\x6b\x62\x69\x61','\x57\x4f\x68\x63\x51\x32\x58\x48\x57\x35\x7a\x5a\x43\x38\x6b\x34','\x57\x51\x68\x63\x47\x43\x6b\x66\x57\x34\x4e\x64\x56\x75\x79','\x57\x35\x71\x73\x57\x50\x38\x33\x70\x73\x47\x53\x57\x52\x43','\x57\x35\x71\x4b\x57\x4f\x79\x35\x6f\x5a\x71','\x66\x6d\x6b\x62\x57\x35\x66\x4c\x68\x6d\x6b\x58\x68\x6d\x6f\x78','\x61\x78\x6c\x63\x51\x43\x6b\x45\x6b\x43\x6f\x52\x57\x51\x71\x55','\x71\x38\x6f\x39\x67\x43\x6f\x77\x6b\x53\x6b\x77\x6c\x61','\x57\x4f\x78\x64\x50\x57\x47\x55\x57\x4f\x61\x70\x57\x51\x71\x6d\x57\x36\x61\x38\x76\x53\x6f\x50\x79\x71','\x57\x52\x70\x63\x52\x53\x6b\x6e\x57\x35\x64\x63\x49\x47','\x6d\x5a\x30\x32\x74\x77\x4b','\x57\x35\x56\x63\x50\x53\x6f\x46\x67\x30\x38','\x61\x43\x6b\x72\x57\x36\x62\x32\x63\x38\x6b\x58\x63\x43\x6f\x69','\x57\x36\x4f\x72\x41\x33\x39\x62\x57\x35\x68\x63\x4a\x66\x79','\x57\x50\x70\x63\x55\x38\x6b\x6c\x57\x52\x4b\x39','\x67\x57\x37\x63\x4b\x4c\x54\x71\x77\x38\x6f\x72','\x57\x50\x57\x76\x67\x38\x6f\x54\x6c\x71','\x57\x36\x4a\x63\x4d\x66\x70\x64\x4a\x65\x64\x63\x4e\x4c\x52\x64\x4e\x57','\x44\x68\x6c\x64\x4a\x33\x52\x63\x4f\x43\x6f\x41\x57\x4f\x6a\x6b','\x57\x34\x61\x50\x6a\x53\x6b\x6f\x57\x35\x64\x63\x4d\x6d\x6b\x6a\x7a\x61','\x42\x43\x6f\x54\x67\x38\x6f\x6a\x63\x47','\x6b\x43\x6b\x53\x57\x35\x4c\x43\x6b\x38\x6b\x67\x6e\x38\x6f\x4a','\x62\x32\x39\x42\x57\x37\x66\x77','\x6e\x38\x6f\x58\x57\x52\x48\x61\x63\x47','\x70\x53\x6f\x79\x57\x4f\x6a\x30\x6b\x71','\x57\x4f\x6a\x42\x57\x4f\x2f\x63\x51\x63\x38','\x43\x4a\x78\x63\x4d\x49\x46\x64\x49\x47','\x57\x51\x6e\x30\x57\x51\x74\x63\x49\x57\x4f','\x57\x51\x4b\x49\x66\x43\x6f\x70\x6c\x47','\x71\x64\x5a\x63\x4d\x4c\x30\x53\x57\x52\x4f','\x57\x52\x56\x63\x4f\x53\x6f\x39\x70\x53\x6b\x55','\x57\x35\x61\x56\x6c\x38\x6b\x74\x57\x34\x78\x63\x48\x53\x6b\x70','\x66\x67\x33\x63\x4c\x72\x56\x64\x53\x53\x6f\x78\x79\x53\x6f\x35','\x6f\x53\x6b\x42\x57\x52\x6c\x64\x4e\x31\x71','\x45\x4a\x56\x63\x55\x57\x52\x64\x50\x6d\x6f\x2b\x57\x51\x75\x42','\x74\x43\x6b\x4c\x70\x38\x6f\x48\x69\x61','\x57\x52\x38\x73\x6e\x53\x6f\x73\x69\x38\x6f\x4a\x57\x50\x6c\x63\x4a\x71','\x57\x36\x61\x79\x57\x51\x39\x69\x57\x36\x64\x63\x47\x71','\x57\x35\x6e\x51\x67\x43\x6b\x32\x6a\x53\x6f\x2b\x77\x38\x6f\x64','\x57\x34\x4b\x5a\x57\x52\x58\x49\x57\x37\x69','\x65\x4d\x78\x63\x54\x67\x74\x63\x47\x71','\x75\x64\x68\x63\x4c\x58\x61','\x57\x52\x68\x64\x51\x43\x6b\x6d\x74\x62\x4b\x6a\x45\x77\x7a\x48\x78\x4d\x68\x63\x4d\x66\x43','\x62\x53\x6f\x2b\x45\x6d\x6f\x47\x57\x36\x68\x63\x4c\x6d\x6f\x42\x57\x52\x64\x63\x53\x61','\x79\x4a\x68\x63\x51\x47\x78\x64\x51\x71','\x62\x6d\x6f\x7a\x57\x51\x31\x6a\x6e\x6d\x6f\x38\x57\x50\x52\x64\x54\x57','\x57\x51\x56\x64\x4a\x73\x33\x63\x48\x4d\x56\x64\x4c\x61\x74\x63\x4f\x57','\x6d\x6d\x6b\x35\x57\x34\x78\x64\x4f\x4c\x6a\x54\x78\x43\x6f\x42','\x69\x30\x78\x63\x55\x58\x2f\x63\x4f\x4a\x6e\x49\x57\x36\x61','\x70\x68\x61\x36\x57\x52\x47\x76\x79\x53\x6f\x53','\x57\x51\x2f\x63\x54\x43\x6b\x6f\x57\x37\x4e\x63\x4b\x53\x6b\x6b\x74\x77\x61','\x57\x36\x6e\x57\x67\x53\x6f\x7a\x57\x50\x46\x63\x4c\x53\x6f\x42','\x57\x4f\x42\x63\x55\x4e\x39\x37\x57\x34\x6a\x53','\x57\x51\x33\x63\x4a\x53\x6f\x6b\x65\x53\x6b\x32\x57\x50\x47\x77','\x6c\x65\x78\x64\x56\x38\x6b\x35\x57\x36\x57','\x73\x75\x56\x64\x4c\x61\x34\x6d\x77\x43\x6f\x2f\x66\x43\x6b\x36\x57\x51\x62\x39','\x68\x73\x61\x35','\x6b\x61\x58\x35\x67\x66\x38\x73\x57\x36\x5a\x64\x4b\x38\x6f\x73\x57\x50\x54\x65','\x62\x6d\x6f\x78\x57\x52\x72\x41\x6b\x71','\x57\x52\x42\x63\x4c\x6d\x6f\x54\x62\x43\x6b\x52\x57\x50\x57\x44\x6b\x61','\x57\x37\x56\x63\x55\x43\x6f\x44\x65\x65\x54\x77','\x42\x59\x37\x63\x4f\x74\x74\x64\x50\x6d\x6f\x4d\x57\x4f\x34','\x62\x63\x61\x4a\x76\x77\x74\x63\x4e\x73\x72\x51','\x57\x4f\x6a\x33\x57\x4f\x6c\x63\x52\x49\x39\x34\x57\x36\x38\x75','\x57\x51\x52\x63\x48\x43\x6b\x6b\x57\x36\x4e\x63\x4d\x61','\x65\x4b\x39\x4a\x57\x34\x50\x73\x6f\x59\x70\x64\x55\x47','\x75\x33\x64\x64\x4a\x4d\x52\x63\x56\x71','\x73\x6d\x6f\x58\x62\x38\x6f\x6f\x6a\x61','\x57\x4f\x43\x2f\x72\x43\x6f\x38\x42\x6d\x6b\x6a\x65\x43\x6f\x4d\x42\x49\x56\x63\x4b\x38\x6f\x55\x57\x37\x4f','\x63\x48\x78\x63\x4b\x4c\x7a\x79\x77\x6d\x6f\x6d\x6e\x61','\x67\x74\x42\x63\x4c\x78\x6e\x74','\x6b\x32\x30\x50\x57\x52\x47\x76\x43\x53\x6f\x41\x57\x4f\x30','\x6b\x68\x47\x71\x57\x4f\x71\x68','\x57\x51\x42\x63\x51\x66\x54\x66\x57\x36\x61','\x46\x4a\x42\x63\x47\x4d\x6d\x32','\x57\x52\x53\x54\x57\x52\x37\x64\x47\x78\x4b','\x57\x50\x64\x63\x50\x6d\x6b\x46\x57\x34\x37\x63\x55\x47','\x6c\x32\x56\x64\x4b\x71\x46\x63\x52\x43\x6f\x76\x57\x4f\x66\x49','\x64\x67\x54\x53\x75\x61','\x76\x71\x76\x46\x63\x32\x38','\x57\x51\x2f\x63\x4a\x38\x6b\x66\x57\x36\x37\x63\x4b\x57','\x57\x52\x4f\x59\x57\x52\x64\x64\x4a\x33\x5a\x64\x54\x61\x72\x48','\x64\x4d\x76\x53\x76\x43\x6b\x62\x57\x34\x65\x48\x71\x61','\x64\x53\x6b\x37\x57\x52\x64\x64\x51\x4e\x65','\x76\x64\x50\x67\x62\x4e\x53','\x41\x74\x76\x4e\x67\x57','\x57\x50\x56\x63\x51\x4e\x44\x52\x57\x35\x7a\x52\x76\x71','\x70\x4b\x2f\x64\x56\x38\x6b\x2f','\x70\x30\x6c\x64\x53\x38\x6b\x4b\x57\x36\x4f\x38\x68\x6d\x6b\x7a','\x57\x52\x2f\x63\x4c\x53\x6b\x31\x57\x37\x78\x64\x4e\x61','\x6f\x58\x5a\x63\x48\x66\x62\x4c','\x44\x67\x70\x64\x4d\x75\x78\x63\x4f\x43\x6f\x39\x57\x50\x72\x4f','\x65\x57\x4e\x63\x50\x30\x58\x70\x73\x53\x6f\x43'];_0x54ab=function(){return _0xd2278a;};return _0x54ab();}(function(_0x4f5980,_0xc9fe0c){const _0x19d4b2=_0x51a6,_0x3ea444=_0x4f5980();while(!![]){try{const _0x397647=-parseInt(_0x19d4b2(0x1a2,'\x4f\x54\x52\x4e'))/(-0xb1+0x2a1*-0x5+-0x3*-0x49d)+-parseInt(_0x19d4b2(0x196,'\x39\x24\x58\x25'))/(-0x37*-0x9d+-0x1fa2+-0x1*0x217)*(-parseInt(_0x19d4b2(0x1d4,'\x45\x33\x48\x67'))/(-0x1321+0x1ea*0x5+0x19*0x62))+parseInt(_0x19d4b2(0x1fd,'\x6e\x37\x46\x79'))/(0x2*0x761+-0xeed*-0x2+-0x2c98)+parseInt(_0x19d4b2(0x1e7,'\x71\x67\x42\x6e'))/(-0xd*0x1df+-0x184e+-0xd*-0x3be)+-parseInt(_0x19d4b2(0x20f,'\x51\x48\x4d\x43'))/(-0x20bf+-0x1*0x1c8b+0x3d50)*(parseInt(_0x19d4b2(0x205,'\x72\x6b\x6f\x75'))/(0x1*-0x1666+0x4f*0x2e+0x12d*0x7))+parseInt(_0x19d4b2(0x1f8,'\x7a\x21\x71\x40'))/(-0xecc+-0x146+0x101a)+-parseInt(_0x19d4b2(0x21a,'\x5b\x65\x47\x48'))/(-0x1a70+-0x26b*-0x4+0x10cd);if(_0x397647===_0xc9fe0c)break;else _0x3ea444['push'](_0x3ea444['shift']());}catch(_0x4c968f){_0x3ea444['push'](_0x3ea444['shift']());}}}(_0x54ab,0x1*0x93665+0x9ed98+0x61b*-0x237));const _0x59e6ca=require(_0x24ef29(0x18b,'\x77\x4b\x38\x69')+_0x24ef29(0x21c,'\x42\x74\x54\x21')),_0x54663={'\x6e\x61\x6d\x65':_0x24ef29(0x18c,'\x45\x33\x48\x67'),'\x67\x65\x74\x41\x64\x76\x69\x63\x65'(_0x410af5){const _0x1bfa6a=_0x24ef29;return _0x59e6ca[_0x1bfa6a(0x1cc,'\x65\x71\x4f\x78')+_0x1bfa6a(0x219,'\x64\x67\x58\x53')](_0x410af5);},'\x72\x65\x63\x6f\x72\x64\x53\x69\x67\x6e\x61\x6c\x53\x6e\x61\x70\x73\x68\x6f\x74'(_0x1e9acc){const _0x3fa1a8=_0x24ef29;return _0x59e6ca['\x72\x65\x63\x6f\x72\x64\x53\x69'+'\x67\x6e\x61\x6c\x53\x6e\x61\x70'+_0x3fa1a8(0x1c2,'\x65\x4e\x24\x65')](_0x1e9acc);},'\x72\x65\x63\x6f\x72\x64\x48\x79\x70\x6f\x74\x68\x65\x73\x69\x73'(_0x49b129){const _0x2a3c8e=_0x24ef29;return _0x59e6ca[_0x2a3c8e(0x1f3,'\x51\x5a\x47\x6a')+_0x2a3c8e(0x1b0,'\x4f\x54\x52\x4e')](_0x49b129);},'\x72\x65\x63\x6f\x72\x64\x41\x74\x74\x65\x6d\x70\x74'(_0x3d5ed3){const _0x5219b0=_0x24ef29;return _0x59e6ca[_0x5219b0(0x1ef,'\x5a\x76\x53\x43')+'\x74\x65\x6d\x70\x74'](_0x3d5ed3);},'\x72\x65\x63\x6f\x72\x64\x4f\x75\x74\x63\x6f\x6d\x65'(_0x3b95a2){const _0x5f12b1=_0x24ef29;return _0x59e6ca[_0x5f12b1(0x1aa,'\x54\x58\x30\x68')+_0x5f12b1(0x21f,'\x45\x73\x4c\x6c')+_0x5f12b1(0x216,'\x36\x5d\x21\x37')](_0x3b95a2);},'\x72\x65\x63\x6f\x72\x64\x45\x78\x74\x65\x72\x6e\x61\x6c\x43\x61\x6e\x64\x69\x64\x61\x74\x65'(_0x22c3c8){const _0x5ae28d=_0x24ef29;return _0x59e6ca[_0x5ae28d(0x218,'\x74\x34\x31\x79')+_0x5ae28d(0x1ce,'\x7a\x21\x71\x40')+_0x5ae28d(0x1f4,'\x69\x24\x4c\x6a')](_0x22c3c8);},'\x6d\x65\x6d\x6f\x72\x79\x47\x72\x61\x70\x68\x50\x61\x74\x68'(){const _0x1c97f0=_0x24ef29;return _0x59e6ca[_0x1c97f0(0x1e0,'\x5b\x4a\x35\x4f')+'\x61\x70\x68\x50\x61\x74\x68']();},'\x63\x6f\x6d\x70\x75\x74\x65\x53\x69\x67\x6e\x61\x6c\x4b\x65\x79'(_0x52b6d6){const _0x55a07d=_0x24ef29;return _0x59e6ca['\x63\x6f\x6d\x70\x75\x74\x65\x53'+_0x55a07d(0x20a,'\x77\x67\x30\x57')](_0x52b6d6);},'\x74\x72\x79\x52\x65\x61\x64\x4d\x65\x6d\x6f\x72\x79\x47\x72\x61\x70\x68\x45\x76\x65\x6e\x74\x73'(_0x30ae7a){const _0x8e02f7=_0x24ef29;return _0x59e6ca[_0x8e02f7(0x224,'\x53\x49\x5a\x62')+_0x8e02f7(0x191,'\x6d\x79\x43\x38')+_0x8e02f7(0x1ca,'\x65\x71\x4f\x78')](_0x30ae7a);}};function _0x550e09(){const _0x32137a=_0x24ef29,_0x3af5fd={'\x71\x48\x71\x6f\x6a':_0x32137a(0x227,'\x5d\x57\x70\x37')+_0x32137a(0x1ea,'\x4f\x54\x52\x4e')+_0x32137a(0x20c,'\x74\x34\x31\x79')+_0x32137a(0x199,'\x69\x24\x4c\x6a')+_0x32137a(0x214,'\x2a\x4c\x70\x69'),'\x53\x66\x45\x4a\x57':function(_0x44d118,_0x47fdda,_0x35dae8){return _0x44d118(_0x47fdda,_0x35dae8);},'\x79\x69\x4b\x57\x57':'\x50\x4f\x53\x54','\x66\x58\x66\x6b\x68':_0x32137a(0x1e2,'\x7a\x58\x4f\x49')+_0x32137a(0x19b,'\x51\x48\x4d\x43'),'\x46\x71\x46\x78\x57':function(_0x66920,_0x2e88a2){return _0x66920===_0x2e88a2;},'\x73\x7a\x6d\x61\x77':_0x32137a(0x1e1,'\x49\x48\x77\x43'),'\x53\x6f\x68\x49\x6b':_0x32137a(0x1b5,'\x4e\x76\x67\x67'),'\x5a\x4e\x72\x58\x71':function(_0x2d48b3,_0x2cad1d){return _0x2d48b3(_0x2cad1d);},'\x65\x4c\x41\x47\x51':_0x32137a(0x1d7,'\x58\x72\x21\x50'),'\x52\x74\x4f\x4d\x6f':function(_0x35c6d2,_0x47ba05){return _0x35c6d2===_0x47ba05;},'\x48\x43\x64\x45\x49':_0x32137a(0x22c,'\x77\x4b\x38\x69'),'\x6d\x65\x73\x66\x75':'\x2f\x6b\x67\x2f\x61\x64\x76\x69'+'\x63\x65','\x58\x4f\x61\x54\x49':_0x32137a(0x1b8,'\x53\x49\x5a\x62')+'\x73\x74','\x64\x45\x74\x74\x47':_0x32137a(0x1a7,'\x58\x72\x21\x50'),'\x55\x47\x41\x76\x6f':'\x68\x79\x70\x6f\x74\x68\x65\x73'+'\x69\x73','\x62\x6f\x61\x62\x78':function(_0x28c599,_0x598d3a){return _0x28c599===_0x598d3a;},'\x45\x58\x42\x66\x66':_0x32137a(0x230,'\x57\x58\x6e\x79'),'\x63\x4c\x73\x4d\x6e':_0x32137a(0x229,'\x72\x6b\x6f\x75'),'\x72\x49\x6e\x69\x72':'\x74\x4e\x50\x56\x46','\x4e\x67\x4e\x69\x42':_0x32137a(0x21e,'\x5d\x57\x70\x37')+_0x32137a(0x223,'\x4c\x6f\x2a\x44')+'\x74\x65','\x53\x76\x65\x65\x65':_0x32137a(0x22f,'\x4e\x76\x67\x67'),'\x72\x4d\x7a\x6e\x67':function(_0x3ded7d,_0x431943,_0x2a334b){return _0x3ded7d(_0x431943,_0x2a334b);}},_0x541e3b=process.env.MEMORY_GRAPH_REMOTE_URL||'',_0x53d1a5=process.env.MEMORY_GRAPH_REMOTE_KEY||'',_0x35d73e=_0x3af5fd[_0x32137a(0x192,'\x5b\x4a\x35\x4f')](Number,process.env.MEMORY_GRAPH_REMOTE_TIMEOUT_MS)||0xeb3*-0x2+-0x1*-0x10ff+0x1fef;async function _0x506301(_0x2037d4,_0x1e66d7){const _0x28b510=_0x32137a;if(!_0x541e3b)throw new Error(_0x3af5fd[_0x28b510(0x210,'\x34\x59\x43\x50')]);const _0x26fcd5=''+_0x541e3b['\x72\x65\x70\x6c\x61\x63\x65'](/\/+$/,'')+_0x2037d4,_0x5974c0=new AbortController(),_0xd72080=setTimeout(()=>_0x5974c0[_0x28b510(0x1a1,'\x65\x4e\x24\x65')](),_0x35d73e);try{const _0x38fc87=await _0x3af5fd[_0x28b510(0x1b4,'\x23\x34\x43\x64')](fetch,_0x26fcd5,{'\x6d\x65\x74\x68\x6f\x64':_0x3af5fd[_0x28b510(0x1ec,'\x23\x34\x43\x64')],'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':_0x3af5fd[_0x28b510(0x22e,'\x49\x48\x77\x43')],..._0x53d1a5?{'\x41\x75\x74\x68\x6f\x72\x69\x7a\x61\x74\x69\x6f\x6e':'\x42\x65\x61\x72\x65\x72\x20'+_0x53d1a5}:{}},'\x62\x6f\x64\x79':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](_0x1e66d7),'\x73\x69\x67\x6e\x61\x6c':_0x5974c0['\x73\x69\x67\x6e\x61\x6c']});if(!_0x38fc87['\x6f\x6b'])throw new Error(_0x28b510(0x1df,'\x64\x2a\x24\x24')+_0x28b510(0x19d,'\x34\x59\x43\x50')+'\x20'+_0x38fc87[_0x28b510(0x1f9,'\x5b\x4a\x35\x4f')]);return await _0x38fc87[_0x28b510(0x194,'\x77\x4b\x38\x69')]();}finally{if(_0x3af5fd[_0x28b510(0x1fa,'\x45\x33\x48\x67')](_0x3af5fd[_0x28b510(0x1b6,'\x59\x4f\x31\x58')],_0x3af5fd[_0x28b510(0x222,'\x49\x48\x77\x43')]))return _0x3ee03f[_0x28b510(0x1b2,'\x51\x5a\x47\x6a')+_0x28b510(0x18d,'\x74\x47\x28\x4b')+_0x28b510(0x1c1,'\x23\x34\x43\x64')](_0x4d07a9);else _0x3af5fd['\x5a\x4e\x72\x58\x71'](clearTimeout,_0xd72080);}}function _0x2035a3(_0x237b7f,_0x241088){const _0x361ef3=_0x32137a;return _0x3af5fd['\x52\x74\x4f\x4d\x6f'](_0x361ef3(0x1da,'\x49\x48\x77\x43'),_0x3af5fd[_0x361ef3(0x1ff,'\x4e\x76\x67\x67')])?async function(..._0x834022){const _0x1e58f1=_0x361ef3;try{return _0x3af5fd[_0x1e58f1(0x18e,'\x30\x25\x50\x55')]!==_0x3af5fd['\x65\x4c\x41\x47\x51']?_0x332c2c[_0x1e58f1(0x1e9,'\x30\x25\x50\x55')+_0x1e58f1(0x1f1,'\x30\x25\x50\x55')+_0x1e58f1(0x217,'\x5d\x57\x70\x37')](_0x3d1b93):await _0x3af5fd['\x5a\x4e\x72\x58\x71'](_0x241088,..._0x834022);}catch(_0x40f67e){return _0x3af5fd['\x5a\x4e\x72\x58\x71'](_0x237b7f,..._0x834022);}}:_0x199f4a[_0x361ef3(0x215,'\x36\x5d\x21\x37')+_0x361ef3(0x1a8,'\x74\x47\x28\x4b')]();}return{'\x6e\x61\x6d\x65':_0x3af5fd[_0x32137a(0x21d,'\x58\x72\x21\x50')],'\x67\x65\x74\x41\x64\x76\x69\x63\x65':_0x3af5fd[_0x32137a(0x1ae,'\x64\x67\x58\x53')](_0x2035a3,_0x3bd35b=>_0x59e6ca[_0x32137a(0x1d6,'\x4e\x76\x67\x67')+'\x79\x41\x64\x76\x69\x63\x65'](_0x3bd35b),async _0x8fd280=>{const _0x5d8af4=_0x32137a,_0x11bc04=await _0x506301(_0x3af5fd[_0x5d8af4(0x203,'\x5d\x57\x70\x37')],{'\x73\x69\x67\x6e\x61\x6c\x73':_0x8fd280[_0x5d8af4(0x1e6,'\x5b\x4a\x35\x4f')],'\x67\x65\x6e\x65\x73':(_0x8fd280[_0x5d8af4(0x1bb,'\x34\x59\x43\x50')]||[])['\x6d\x61\x70'](_0x386c21=>({'\x69\x64':_0x386c21['\x69\x64'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x386c21['\x63\x61\x74\x65\x67\x6f\x72\x79'],'\x74\x79\x70\x65':_0x386c21['\x74\x79\x70\x65']})),'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':_0x8fd280[_0x5d8af4(0x1f5,'\x4f\x54\x52\x4e')+_0x5d8af4(0x206,'\x30\x25\x50\x55')]});return{'\x63\x75\x72\x72\x65\x6e\x74\x53\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x11bc04[_0x5d8af4(0x207,'\x6d\x79\x43\x38')+_0x5d8af4(0x200,'\x5b\x4a\x35\x4f')]||_0x59e6ca[_0x5d8af4(0x211,'\x74\x47\x28\x4b')+_0x5d8af4(0x1bd,'\x64\x2a\x24\x24')](_0x8fd280[_0x5d8af4(0x231,'\x6a\x66\x72\x77')]),'\x70\x72\x65\x66\x65\x72\x72\x65\x64\x47\x65\x6e\x65\x49\x64':_0x11bc04['\x70\x72\x65\x66\x65\x72\x72\x65'+_0x5d8af4(0x1f7,'\x36\x5d\x21\x37')]||null,'\x62\x61\x6e\x6e\x65\x64\x47\x65\x6e\x65\x49\x64\x73':new Set(_0x11bc04[_0x5d8af4(0x1fb,'\x57\x58\x6e\x79')+_0x5d8af4(0x220,'\x44\x51\x51\x63')]||[]),'\x65\x78\x70\x6c\x61\x6e\x61\x74\x69\x6f\x6e':Array[_0x5d8af4(0x1c7,'\x4f\x54\x52\x4e')](_0x11bc04[_0x5d8af4(0x1ed,'\x7a\x21\x71\x40')+_0x5d8af4(0x1e5,'\x77\x4b\x38\x69')])?_0x11bc04[_0x5d8af4(0x208,'\x74\x47\x28\x4b')+_0x5d8af4(0x1a3,'\x42\x74\x54\x21')]:[]};}),'\x72\x65\x63\x6f\x72\x64\x53\x69\x67\x6e\x61\x6c\x53\x6e\x61\x70\x73\x68\x6f\x74'(_0x2f2efc){const _0x16d94f=_0x32137a,_0x23552e=_0x59e6ca[_0x16d94f(0x1ee,'\x6a\x66\x72\x77')+_0x16d94f(0x1f2,'\x53\x49\x5a\x62')+_0x16d94f(0x1c0,'\x6f\x4a\x35\x33')](_0x2f2efc);return _0x3af5fd[_0x16d94f(0x1b4,'\x23\x34\x43\x64')](_0x506301,_0x3af5fd[_0x16d94f(0x1be,'\x45\x33\x48\x67')],{'\x6b\x69\x6e\x64':_0x3af5fd['\x64\x45\x74\x74\x47'],'\x65\x76\x65\x6e\x74':_0x23552e})[_0x16d94f(0x1a5,'\x33\x78\x2a\x48')](()=>{}),_0x23552e;},'\x72\x65\x63\x6f\x72\x64\x48\x79\x70\x6f\x74\x68\x65\x73\x69\x73'(_0x1b69a8){const _0x133cae=_0x32137a,_0x553809=_0x59e6ca[_0x133cae(0x1bc,'\x59\x4f\x31\x58')+_0x133cae(0x1a9,'\x42\x74\x54\x21')](_0x1b69a8);return _0x506301(_0x3af5fd[_0x133cae(0x1d5,'\x71\x67\x42\x6e')],{'\x6b\x69\x6e\x64':_0x3af5fd[_0x133cae(0x201,'\x42\x74\x54\x21')],'\x65\x76\x65\x6e\x74':_0x553809})['\x63\x61\x74\x63\x68'](()=>{}),_0x553809;},'\x72\x65\x63\x6f\x72\x64\x41\x74\x74\x65\x6d\x70\x74'(_0xdde6a0){const _0x29ea7b=_0x32137a;if(_0x3af5fd[_0x29ea7b(0x1ab,'\x34\x59\x43\x50')](_0x29ea7b(0x1ad,'\x53\x49\x5a\x62'),_0x3af5fd[_0x29ea7b(0x1d3,'\x51\x48\x4d\x43')]))_0x1c2099(_0x11a412);else{const _0x3fa444=_0x59e6ca[_0x29ea7b(0x1c3,'\x65\x4e\x24\x65')+'\x74\x65\x6d\x70\x74'](_0xdde6a0),_0x1ceaf9={};return _0x1ceaf9[_0x29ea7b(0x20b,'\x72\x6b\x6f\x75')]=_0x29ea7b(0x221,'\x4f\x54\x52\x4e'),_0x1ceaf9[_0x29ea7b(0x1fc,'\x5d\x57\x70\x37')]=_0x3fa444,_0x506301(_0x3af5fd[_0x29ea7b(0x193,'\x51\x48\x4d\x43')],_0x1ceaf9)[_0x29ea7b(0x1dc,'\x51\x5a\x47\x6a')](()=>{}),_0x3fa444;}},'\x72\x65\x63\x6f\x72\x64\x4f\x75\x74\x63\x6f\x6d\x65'(_0x31346a){const _0x3930c5=_0x32137a;if(_0x3af5fd[_0x3930c5(0x1b1,'\x4f\x54\x52\x4e')]===_0x3af5fd[_0x3930c5(0x22b,'\x54\x58\x30\x68')])throw new _0x5274f4(_0x3930c5(0x1db,'\x69\x24\x4c\x6a')+'\x67\x5f\x65\x72\x72\x6f\x72\x3a'+'\x20'+_0x2a267c[_0x3930c5(0x19f,'\x23\x34\x43\x64')]);else{const _0x15c874=_0x59e6ca[_0x3930c5(0x1fe,'\x5a\x76\x53\x43')+_0x3930c5(0x1c6,'\x53\x49\x5a\x62')+'\x6d\x53\x74\x61\x74\x65'](_0x31346a);if(_0x15c874){const _0x331226={};_0x331226[_0x3930c5(0x1b9,'\x64\x2a\x24\x24')]=_0x3930c5(0x1a0,'\x57\x58\x6e\x79'),_0x331226[_0x3930c5(0x1e3,'\x72\x6b\x6f\x75')]=_0x15c874,_0x506301(_0x3af5fd[_0x3930c5(0x1d9,'\x63\x49\x58\x26')],_0x331226)[_0x3930c5(0x1b3,'\x7a\x58\x4f\x49')](()=>{});}return _0x15c874;}},'\x72\x65\x63\x6f\x72\x64\x45\x78\x74\x65\x72\x6e\x61\x6c\x43\x61\x6e\x64\x69\x64\x61\x74\x65'(_0x550f6b){const _0x49c539=_0x32137a,_0x527e54=_0x59e6ca[_0x49c539(0x19a,'\x71\x67\x42\x6e')+_0x49c539(0x213,'\x23\x34\x43\x64')+_0x49c539(0x19e,'\x31\x47\x58\x74')](_0x550f6b);return _0x527e54&&_0x3af5fd[_0x49c539(0x22d,'\x54\x58\x30\x68')](_0x506301,_0x3af5fd[_0x49c539(0x1cd,'\x54\x58\x30\x68')],{'\x6b\x69\x6e\x64':_0x3af5fd[_0x49c539(0x1bf,'\x6f\x4a\x35\x33')],'\x65\x76\x65\x6e\x74':_0x527e54})['\x63\x61\x74\x63\x68'](()=>{}),_0x527e54;},'\x6d\x65\x6d\x6f\x72\x79\x47\x72\x61\x70\x68\x50\x61\x74\x68'(){const _0x57a109=_0x32137a;return _0x59e6ca[_0x57a109(0x1cf,'\x6f\x4a\x35\x33')+_0x57a109(0x1d0,'\x41\x43\x65\x7a')]();},'\x63\x6f\x6d\x70\x75\x74\x65\x53\x69\x67\x6e\x61\x6c\x4b\x65\x79'(_0x547e53){const _0x4ac116=_0x32137a;return _0x59e6ca[_0x4ac116(0x198,'\x33\x78\x2a\x48')+_0x4ac116(0x1de,'\x5a\x76\x53\x43')](_0x547e53);},'\x74\x72\x79\x52\x65\x61\x64\x4d\x65\x6d\x6f\x72\x79\x47\x72\x61\x70\x68\x45\x76\x65\x6e\x74\x73'(_0xc32532){const _0x20dbc9=_0x32137a;return _0x59e6ca[_0x20dbc9(0x1c8,'\x71\x67\x42\x6e')+_0x20dbc9(0x1d2,'\x36\x5d\x21\x37')+_0x20dbc9(0x18f,'\x49\x48\x77\x43')](_0xc32532);}};}function _0x315281(){const _0x39a7d5=_0x24ef29,_0x4faf6d={'\x61\x4f\x74\x54\x73':function(_0x209278,_0x43f409){return _0x209278===_0x43f409;},'\x57\x51\x66\x69\x49':_0x39a7d5(0x1c4,'\x2a\x4c\x70\x69'),'\x41\x66\x62\x6e\x58':_0x39a7d5(0x202,'\x77\x67\x30\x57')+_0x39a7d5(0x212,'\x41\x43\x65\x7a'),'\x58\x4e\x74\x45\x5a':function(_0xea7a9e,_0x526a9a,_0x5b34e9){return _0xea7a9e(_0x526a9a,_0x5b34e9);},'\x77\x4d\x55\x78\x4e':_0x39a7d5(0x197,'\x74\x47\x28\x4b'),'\x58\x64\x56\x7a\x59':_0x39a7d5(0x1cb,'\x6a\x66\x72\x77'),'\x4f\x58\x57\x64\x56':function(_0x11cf15){return _0x11cf15();}},_0x21a061=(function(){let _0x58a52=!![];return function(_0x5a7374,_0x3fa1f9){const _0x463007=_0x51a6;if(_0x4faf6d[_0x463007(0x228,'\x65\x71\x4f\x78')](_0x4faf6d[_0x463007(0x226,'\x64\x67\x58\x53')],_0x463007(0x22a,'\x33\x78\x2a\x48')))return _0x42afb5['\x72\x65\x63\x6f\x72\x64\x4f\x75'+'\x74\x63\x6f\x6d\x65\x46\x72\x6f'+_0x463007(0x20d,'\x54\x58\x30\x68')](_0x460090);else{const _0x4af3e5=_0x58a52?function(){const _0x585a34=_0x463007;if(_0x3fa1f9){const _0x2d0b47=_0x3fa1f9[_0x585a34(0x209,'\x36\x5d\x21\x37')](_0x5a7374,arguments);return _0x3fa1f9=null,_0x2d0b47;}}:function(){};return _0x58a52=![],_0x4af3e5;}};}()),_0x876667=_0x4faf6d[_0x39a7d5(0x1b7,'\x34\x59\x43\x50')](_0x21a061,this,function(){const _0x4e1489=_0x39a7d5;return _0x876667[_0x4e1489(0x1a6,'\x57\x58\x6e\x79')]()[_0x4e1489(0x190,'\x5b\x4a\x35\x4f')](_0x4faf6d[_0x4e1489(0x1c5,'\x4f\x54\x52\x4e')])[_0x4e1489(0x1d1,'\x5b\x4a\x35\x4f')]()[_0x4e1489(0x225,'\x6a\x66\x72\x77')+_0x4e1489(0x1d8,'\x6f\x4a\x35\x33')](_0x876667)['\x73\x65\x61\x72\x63\x68'](_0x4e1489(0x1dd,'\x23\x34\x43\x64')+_0x4e1489(0x1f0,'\x4c\x6f\x2a\x44'));});_0x876667();const _0x26e196=(process.env.MEMORY_GRAPH_PROVIDER||_0x4faf6d[_0x39a7d5(0x21b,'\x77\x67\x30\x57')])[_0x39a7d5(0x1ac,'\x65\x71\x4f\x78')+_0x39a7d5(0x1f6,'\x5d\x57\x70\x37')]()[_0x39a7d5(0x1e8,'\x49\x48\x77\x43')]();if(_0x26e196===_0x4faf6d[_0x39a7d5(0x1eb,'\x31\x47\x58\x74')])return _0x4faf6d[_0x39a7d5(0x1ba,'\x6f\x4a\x35\x33')](_0x550e09);return _0x54663;}function _0x51a6(_0x2212cf,_0x41f27b){_0x2212cf=_0x2212cf-(-0x19e3+-0x6d*-0xa+0xb96*0x2);const _0x3c9baf=_0x54ab();let _0x4236eb=_0x3c9baf[_0x2212cf];if(_0x51a6['\x79\x57\x73\x43\x4b\x51']===undefined){var _0x2d0ba4=function(_0x3b6797){const _0x29bf93='\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 _0x149841='',_0x13e15e='',_0x49515c=_0x149841+_0x2d0ba4,_0x118db0=(''+function(){return-0x1*0x1be6+-0x1b8c+-0x2*-0x1bb9;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x7*-0x57b+0x211*0x8+0x2b*0x82);for(let _0x30a745=-0x2078+-0x142f*-0x1+0xc49,_0x99b2e7,_0xe52f9b,_0x2c9606=-0x1280+0x13*0x1a+-0x586*-0x3;_0xe52f9b=_0x3b6797['\x63\x68\x61\x72\x41\x74'](_0x2c9606++);~_0xe52f9b&&(_0x99b2e7=_0x30a745%(0xc72+0x180a+0x91e*-0x4)?_0x99b2e7*(-0x1a6e+0x1c33+-0x1*0x185)+_0xe52f9b:_0xe52f9b,_0x30a745++%(-0x2*-0x868+0x4*-0x272+-0x704))?_0x149841+=_0x118db0||_0x49515c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2c9606+(-0x189e+0xf35+0x973))-(0x1ccc+0x7fc+-0x24be)!==-0x65*-0x5b+0x13*-0xc3+0x1a*-0xd3?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1a2b*-0x1+-0x619+-0x6a7*-0x5&_0x99b2e7>>(-(-0xc28*-0x3+-0x1582*0x1+-0xef4)*_0x30a745&0xfa7+0x35*-0x1+-0xf6c)):_0x30a745:-0x21f1+-0x26*-0x31+0x1*0x1aab){_0xe52f9b=_0x29bf93['\x69\x6e\x64\x65\x78\x4f\x66'](_0xe52f9b);}for(let _0x2c1a3c=-0x12*0x4+0x1566+-0x151e,_0x2faf19=_0x149841['\x6c\x65\x6e\x67\x74\x68'];_0x2c1a3c<_0x2faf19;_0x2c1a3c++){_0x13e15e+='\x25'+('\x30\x30'+_0x149841['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2c1a3c)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x1214+0x10c6*0x1+0x15e))['\x73\x6c\x69\x63\x65'](-(-0x1*0x1e0b+-0x2db*-0x1+0x1b32));}return decodeURIComponent(_0x13e15e);};const _0x2dc127=function(_0x401676,_0x353287){let _0x316068=[],_0x1aa1d5=-0xb67+0x56e+0x5f9,_0x44b000,_0x148366='';_0x401676=_0x2d0ba4(_0x401676);let _0x1bc7a5;for(_0x1bc7a5=-0x24a0+0xe65+0x163b;_0x1bc7a5<-0x34b*0xb+0x223a+-0x1*-0x2ff;_0x1bc7a5++){_0x316068[_0x1bc7a5]=_0x1bc7a5;}for(_0x1bc7a5=-0xb7a+-0x1d6+0x18*0x8e;_0x1bc7a5<-0x34*0x53+-0x7ad*0x1+-0x1*-0x1989;_0x1bc7a5++){_0x1aa1d5=(_0x1aa1d5+_0x316068[_0x1bc7a5]+_0x353287['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1bc7a5%_0x353287['\x6c\x65\x6e\x67\x74\x68']))%(-0x1d*-0x135+-0x94+-0x216d),_0x44b000=_0x316068[_0x1bc7a5],_0x316068[_0x1bc7a5]=_0x316068[_0x1aa1d5],_0x316068[_0x1aa1d5]=_0x44b000;}_0x1bc7a5=0x157e+0xf31*0x1+0x1*-0x24af,_0x1aa1d5=0x289*-0x2+-0xe3*0x2a+-0x1528*-0x2;for(let _0x346339=0x1ed9+0x24bc+-0x1*0x4395;_0x346339<_0x401676['\x6c\x65\x6e\x67\x74\x68'];_0x346339++){_0x1bc7a5=(_0x1bc7a5+(0x1b45+-0x1*0x103a+-0xb0a))%(-0x3*-0xc65+0x326+-0x1*0x2755),_0x1aa1d5=(_0x1aa1d5+_0x316068[_0x1bc7a5])%(-0x5bc+0x8fe+0x1*-0x242),_0x44b000=_0x316068[_0x1bc7a5],_0x316068[_0x1bc7a5]=_0x316068[_0x1aa1d5],_0x316068[_0x1aa1d5]=_0x44b000,_0x148366+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x401676['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x346339)^_0x316068[(_0x316068[_0x1bc7a5]+_0x316068[_0x1aa1d5])%(-0x2348+0x1f7*-0x10+0x8*0x877)]);}return _0x148366;};_0x51a6['\x63\x76\x55\x77\x73\x50']=_0x2dc127,_0x51a6['\x74\x62\x6a\x46\x42\x4a']={},_0x51a6['\x79\x57\x73\x43\x4b\x51']=!![];}const _0x3dfebb=_0x3c9baf[-0x1*-0x1444+0x3*-0x8d+-0x129d],_0x2da190=_0x2212cf+_0x3dfebb,_0x47e3e4=_0x51a6['\x74\x62\x6a\x46\x42\x4a'][_0x2da190];if(!_0x47e3e4){if(_0x51a6['\x5a\x4f\x63\x68\x55\x59']===undefined){const _0x217b17=function(_0x32a352){this['\x76\x55\x48\x4a\x45\x61']=_0x32a352,this['\x66\x5a\x4b\x56\x45\x4c']=[-0x40d+-0x686+0xa94,0x265d+-0x1738+0xf25*-0x1,0x493+0x34*0xb3+-0x28ef],this['\x57\x65\x65\x6f\x77\x75']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x52\x62\x77\x49\x62\x4a']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x69\x6a\x58\x50\x79\x48']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x217b17['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x70\x61\x67\x46\x6a\x45']=function(){const _0x37f8e4=new RegExp(this['\x52\x62\x77\x49\x62\x4a']+this['\x69\x6a\x58\x50\x79\x48']),_0x296cee=_0x37f8e4['\x74\x65\x73\x74'](this['\x57\x65\x65\x6f\x77\x75']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x66\x5a\x4b\x56\x45\x4c'][-0x1*-0x21b8+0x8c+-0x1*0x2243]:--this['\x66\x5a\x4b\x56\x45\x4c'][0x49*0x28+0x1542+-0x20aa];return this['\x6c\x51\x54\x53\x6e\x44'](_0x296cee);},_0x217b17['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6c\x51\x54\x53\x6e\x44']=function(_0x199ced){if(!Boolean(~_0x199ced))return _0x199ced;return this['\x5a\x4f\x74\x69\x43\x42'](this['\x76\x55\x48\x4a\x45\x61']);},_0x217b17['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x5a\x4f\x74\x69\x43\x42']=function(_0x354687){for(let _0x3ebb1b=0x32f*0x8+0x1*0x151+-0x1*0x1ac9,_0x2a22b1=this['\x66\x5a\x4b\x56\x45\x4c']['\x6c\x65\x6e\x67\x74\x68'];_0x3ebb1b<_0x2a22b1;_0x3ebb1b++){this['\x66\x5a\x4b\x56\x45\x4c']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x2a22b1=this['\x66\x5a\x4b\x56\x45\x4c']['\x6c\x65\x6e\x67\x74\x68'];}return _0x354687(this['\x66\x5a\x4b\x56\x45\x4c'][-0x1b4f*-0x1+0x13f6+-0x1*0x2f45]);},(''+function(){return-0x18*0x65+-0xf7*-0x1f+0x1471*-0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x91*0x2e+-0xe3c+-0x37*0x37)&&new _0x217b17(_0x51a6)['\x70\x61\x67\x46\x6a\x45'](),_0x51a6['\x5a\x4f\x63\x68\x55\x59']=!![];}_0x4236eb=_0x51a6['\x63\x76\x55\x77\x73\x50'](_0x4236eb,_0x41f27b),_0x51a6['\x74\x62\x6a\x46\x42\x4a'][_0x2da190]=_0x4236eb;}else _0x4236eb=_0x47e3e4;return _0x4236eb;}const _0xa85fa5=_0x315281();module[_0x24ef29(0x19c,'\x51\x5a\x47\x6a')]=_0xa85fa5;
1
+ // ---------------------------------------------------------------------------
2
+ // MemoryGraphAdapter -- stable interface boundary for memory graph operations.
3
+ //
4
+ // Default implementation delegates to the local JSONL-based memoryGraph.js.
5
+ // SaaS providers can supply a remote adapter by setting MEMORY_GRAPH_PROVIDER=remote
6
+ // and configuring MEMORY_GRAPH_REMOTE_URL / MEMORY_GRAPH_REMOTE_KEY.
7
+ //
8
+ // The adapter is designed so that the open-source evolver always works offline
9
+ // with the local implementation. Remote is optional and degrades gracefully.
10
+ // ---------------------------------------------------------------------------
11
+
12
+ const localGraph = require('./memoryGraph');
13
+
14
+ // ---------------------------------------------------------------------------
15
+ // Adapter interface contract (all methods must be implemented by providers):
16
+ //
17
+ // getAdvice({ signals, genes, driftEnabled }) => { preferredGeneId, bannedGeneIds, currentSignalKey, explanation }
18
+ // recordSignalSnapshot({ signals, observations }) => event
19
+ // recordHypothesis({ signals, mutation, personality_state, selectedGene, selector, driftEnabled, selectedBy, capsulesUsed, observations }) => { hypothesisId, signalKey }
20
+ // recordAttempt({ signals, mutation, personality_state, selectedGene, selector, driftEnabled, selectedBy, hypothesisId, capsulesUsed, observations }) => { actionId, signalKey }
21
+ // recordOutcome({ signals, observations }) => event | null
22
+ // recordExternalCandidate({ asset, source, signals }) => event | null
23
+ // memoryGraphPath() => string
24
+ // computeSignalKey(signals) => string
25
+ // tryReadMemoryGraphEvents(limit) => event[]
26
+ // ---------------------------------------------------------------------------
27
+
28
+ // ---------------------------------------------------------------------------
29
+ // Local adapter (default) -- wraps memoryGraph.js without any behavior change
30
+ // ---------------------------------------------------------------------------
31
+
32
+ const localAdapter = {
33
+ name: 'local',
34
+
35
+ getAdvice(opts) {
36
+ return localGraph.getMemoryAdvice(opts);
37
+ },
38
+
39
+ recordSignalSnapshot(opts) {
40
+ return localGraph.recordSignalSnapshot(opts);
41
+ },
42
+
43
+ recordHypothesis(opts) {
44
+ return localGraph.recordHypothesis(opts);
45
+ },
46
+
47
+ recordAttempt(opts) {
48
+ return localGraph.recordAttempt(opts);
49
+ },
50
+
51
+ recordOutcome(opts) {
52
+ return localGraph.recordOutcomeFromState(opts);
53
+ },
54
+
55
+ recordExternalCandidate(opts) {
56
+ return localGraph.recordExternalCandidate(opts);
57
+ },
58
+
59
+ memoryGraphPath() {
60
+ return localGraph.memoryGraphPath();
61
+ },
62
+
63
+ computeSignalKey(signals) {
64
+ return localGraph.computeSignalKey(signals);
65
+ },
66
+
67
+ tryReadMemoryGraphEvents(limit) {
68
+ return localGraph.tryReadMemoryGraphEvents(limit);
69
+ },
70
+ };
71
+
72
+ // ---------------------------------------------------------------------------
73
+ // Remote adapter (SaaS) -- calls external KG service with local fallback
74
+ // ---------------------------------------------------------------------------
75
+
76
+ function buildRemoteAdapter() {
77
+ const remoteUrl = process.env.MEMORY_GRAPH_REMOTE_URL || '';
78
+ const remoteKey = process.env.MEMORY_GRAPH_REMOTE_KEY || '';
79
+ const timeoutMs = Number(process.env.MEMORY_GRAPH_REMOTE_TIMEOUT_MS) || 5000;
80
+
81
+ async function remoteCall(endpoint, body) {
82
+ if (!remoteUrl) throw new Error('MEMORY_GRAPH_REMOTE_URL not configured');
83
+ const url = `${remoteUrl.replace(/\/+$/, '')}${endpoint}`;
84
+ const controller = new AbortController();
85
+ const timer = setTimeout(() => controller.abort(), timeoutMs);
86
+ try {
87
+ const res = await fetch(url, {
88
+ method: 'POST',
89
+ headers: {
90
+ 'Content-Type': 'application/json',
91
+ ...(remoteKey ? { Authorization: `Bearer ${remoteKey}` } : {}),
92
+ },
93
+ body: JSON.stringify(body),
94
+ signal: controller.signal,
95
+ });
96
+ if (!res.ok) {
97
+ throw new Error(`remote_kg_error: ${res.status}`);
98
+ }
99
+ return await res.json();
100
+ } finally {
101
+ clearTimeout(timer);
102
+ }
103
+ }
104
+
105
+ // Wrap remote call with local fallback -- ensures offline resilience.
106
+ function withFallback(localFn, remoteFn) {
107
+ return async function (...args) {
108
+ try {
109
+ return await remoteFn(...args);
110
+ } catch (e) {
111
+ // Fallback to local on any remote failure (network, timeout, config).
112
+ return localFn(...args);
113
+ }
114
+ };
115
+ }
116
+
117
+ return {
118
+ name: 'remote',
119
+
120
+ // getAdvice is the primary candidate for remote enhancement (richer graph reasoning).
121
+ getAdvice: withFallback(
122
+ (opts) => localGraph.getMemoryAdvice(opts),
123
+ async (opts) => {
124
+ const result = await remoteCall('/kg/advice', {
125
+ signals: opts.signals,
126
+ genes: (opts.genes || []).map((g) => ({ id: g.id, category: g.category, type: g.type })),
127
+ driftEnabled: opts.driftEnabled,
128
+ });
129
+ // Normalize remote response to match local contract.
130
+ return {
131
+ currentSignalKey: result.currentSignalKey || localGraph.computeSignalKey(opts.signals),
132
+ preferredGeneId: result.preferredGeneId || null,
133
+ bannedGeneIds: new Set(result.bannedGeneIds || []),
134
+ explanation: Array.isArray(result.explanation) ? result.explanation : [],
135
+ };
136
+ }
137
+ ),
138
+
139
+ // Write operations: always write locally first, then async-sync to remote.
140
+ // This preserves the append-only local graph as source of truth.
141
+ recordSignalSnapshot(opts) {
142
+ const ev = localGraph.recordSignalSnapshot(opts);
143
+ remoteCall('/kg/ingest', { kind: 'signal', event: ev }).catch(() => {});
144
+ return ev;
145
+ },
146
+
147
+ recordHypothesis(opts) {
148
+ const result = localGraph.recordHypothesis(opts);
149
+ remoteCall('/kg/ingest', { kind: 'hypothesis', event: result }).catch(() => {});
150
+ return result;
151
+ },
152
+
153
+ recordAttempt(opts) {
154
+ const result = localGraph.recordAttempt(opts);
155
+ remoteCall('/kg/ingest', { kind: 'attempt', event: result }).catch(() => {});
156
+ return result;
157
+ },
158
+
159
+ recordOutcome(opts) {
160
+ const ev = localGraph.recordOutcomeFromState(opts);
161
+ if (ev) {
162
+ remoteCall('/kg/ingest', { kind: 'outcome', event: ev }).catch(() => {});
163
+ }
164
+ return ev;
165
+ },
166
+
167
+ recordExternalCandidate(opts) {
168
+ const ev = localGraph.recordExternalCandidate(opts);
169
+ if (ev) {
170
+ remoteCall('/kg/ingest', { kind: 'external_candidate', event: ev }).catch(() => {});
171
+ }
172
+ return ev;
173
+ },
174
+
175
+ memoryGraphPath() {
176
+ return localGraph.memoryGraphPath();
177
+ },
178
+
179
+ computeSignalKey(signals) {
180
+ return localGraph.computeSignalKey(signals);
181
+ },
182
+
183
+ tryReadMemoryGraphEvents(limit) {
184
+ return localGraph.tryReadMemoryGraphEvents(limit);
185
+ },
186
+ };
187
+ }
188
+
189
+ // ---------------------------------------------------------------------------
190
+ // Provider resolution
191
+ // ---------------------------------------------------------------------------
192
+
193
+ function resolveAdapter() {
194
+ const provider = (process.env.MEMORY_GRAPH_PROVIDER || 'local').toLowerCase().trim();
195
+ if (provider === 'remote') {
196
+ return buildRemoteAdapter();
197
+ }
198
+ return localAdapter;
199
+ }
200
+
201
+ const adapter = resolveAdapter();
202
+
203
+ module.exports = adapter;
@@ -1 +1,203 @@
1
- const _0x5283b3=_0x8473;(function(_0x128feb,_0x13c75c){const _0x185663=_0x8473,_0x4f402c=_0x128feb();while(!![]){try{const _0x333d9e=parseInt(_0x185663(0x205,'\x4a\x25\x41\x23'))/(0x231a+0x12*0x9d+-0x3*0xf61)*(parseInt(_0x185663(0x2e0,'\x78\x33\x75\x67'))/(-0x2*0xa4f+0xe26+-0x2*-0x33d))+-parseInt(_0x185663(0x2fb,'\x43\x38\x46\x63'))/(0xc09+-0x1f7*0xd+-0xd85*-0x1)*(-parseInt(_0x185663(0x335,'\x71\x4d\x62\x34'))/(-0x1779+0x113b+-0x59*-0x12))+parseInt(_0x185663(0x1b3,'\x43\x38\x46\x63'))/(-0x11b*-0x11+0x594+-0x185a)*(parseInt(_0x185663(0x232,'\x48\x5a\x6d\x21'))/(0xbb0+0x2ac+-0xe56))+-parseInt(_0x185663(0x2d0,'\x5e\x21\x45\x76'))/(-0xfc4*0x2+-0x534+0x3*0xc41)+-parseInt(_0x185663(0x291,'\x61\x66\x33\x6a'))/(-0x53*0x47+-0x201*-0x13+-0xf06)*(-parseInt(_0x185663(0x32b,'\x73\x43\x7a\x4b'))/(0x18f4+-0xfee+-0x8fd))+-parseInt(_0x185663(0x2df,'\x49\x45\x5b\x4c'))/(0x22ef+0x1f7*-0x11+0x17e*-0x1)+-parseInt(_0x185663(0x2a9,'\x34\x63\x58\x5a'))/(0x25a3+0x1d9d+-0x4335)*(-parseInt(_0x185663(0x311,'\x38\x39\x37\x4f'))/(-0xfa1+-0x25c8+-0xa1*-0x55));if(_0x333d9e===_0x13c75c)break;else _0x4f402c['push'](_0x4f402c['shift']());}catch(_0x4f2691){_0x4f402c['push'](_0x4f402c['shift']());}}}(_0x4ea3,0xc1cfe+0xc96e3+-0x1237cd));const _0x4925b3=(function(){const _0x3e9b91=_0x8473,_0x469e60={'\x41\x53\x4b\x58\x62':_0x3e9b91(0x327,'\x65\x25\x52\x26'),'\x46\x68\x6b\x75\x70':_0x3e9b91(0x2aa,'\x64\x42\x6e\x6c'),'\x65\x53\x74\x41\x51':_0x3e9b91(0x30a,'\x43\x38\x46\x63'),'\x56\x77\x6d\x4d\x41':_0x3e9b91(0x2a7,'\x42\x50\x59\x39'),'\x6c\x4d\x79\x45\x4b':function(_0x555107,_0x410c47){return _0x555107(_0x410c47);},'\x5a\x57\x50\x43\x69':_0x3e9b91(0x1db,'\x30\x67\x73\x7a')+_0x3e9b91(0x269,'\x34\x63\x58\x5a'),'\x71\x77\x41\x79\x46':function(_0xcede2b,_0x40bbe9){return _0xcede2b===_0x40bbe9;},'\x6e\x70\x66\x68\x69':_0x3e9b91(0x32e,'\x48\x5a\x6d\x21'),'\x61\x51\x6f\x55\x4d':function(_0x142c58,_0x41eb5e){return _0x142c58>=_0x41eb5e;},'\x44\x69\x63\x47\x51':'\x69\x6e\x6e\x6f\x76\x61\x74\x65','\x6d\x78\x68\x4f\x54':_0x3e9b91(0x2c8,'\x25\x5b\x58\x75'),'\x61\x4d\x54\x45\x71':_0x3e9b91(0x1d6,'\x70\x62\x2a\x39')+'\x6f\x70\x70\x6f\x72\x74\x75\x6e'+_0x3e9b91(0x283,'\x39\x53\x54\x67'),'\x4a\x70\x74\x6b\x4a':_0x3e9b91(0x299,'\x34\x63\x58\x5a')};let _0x1e31bc=!![];return function(_0x4d1d77,_0xcdd32f){const _0x37e5f8=_0x3e9b91,_0x382765={'\x69\x61\x46\x74\x47':function(_0x2c1519,_0x5c9afb){const _0x97db80=_0x8473;return _0x469e60[_0x97db80(0x290,'\x43\x5d\x44\x6d')](_0x2c1519,_0x5c9afb);},'\x55\x6e\x67\x43\x73':function(_0x17ab47,_0x1a2302){const _0x92559a=_0x8473;return _0x469e60[_0x92559a(0x30b,'\x49\x45\x5b\x4c')](_0x17ab47,_0x1a2302);},'\x62\x6c\x71\x51\x48':_0x469e60[_0x37e5f8(0x26d,'\x28\x44\x75\x5d')],'\x6e\x76\x75\x45\x55':function(_0x1e8011,_0x449a0f){const _0x52511a=_0x37e5f8;return _0x469e60[_0x52511a(0x263,'\x5e\x21\x45\x76')](_0x1e8011,_0x449a0f);},'\x42\x78\x57\x77\x65':_0x37e5f8(0x2f4,'\x28\x4a\x70\x48')+'\x67\x79','\x49\x69\x48\x42\x6a':function(_0x587c5f,_0x2d7fc6){const _0x4f0999=_0x37e5f8;return _0x469e60[_0x4f0999(0x29d,'\x25\x42\x58\x65')](_0x587c5f,_0x2d7fc6);},'\x6e\x46\x63\x58\x49':_0x469e60[_0x37e5f8(0x2cd,'\x30\x67\x73\x7a')],'\x6d\x57\x61\x50\x43':function(_0x5bb5bc,_0x3ee1cc){const _0x13c5cd=_0x37e5f8;return _0x469e60[_0x13c5cd(0x277,'\x73\x43\x7a\x4b')](_0x5bb5bc,_0x3ee1cc);},'\x49\x50\x41\x52\x79':_0x469e60[_0x37e5f8(0x2b5,'\x44\x6f\x37\x68')],'\x71\x77\x4f\x67\x4c':_0x469e60[_0x37e5f8(0x322,'\x71\x4d\x62\x34')],'\x4f\x76\x61\x66\x54':_0x469e60[_0x37e5f8(0x1cd,'\x39\x53\x54\x67')],'\x75\x68\x72\x54\x61':_0x37e5f8(0x24c,'\x30\x67\x73\x7a'),'\x49\x78\x6e\x57\x74':function(_0x360ac1,_0x47801c){const _0x48c148=_0x37e5f8;return _0x469e60[_0x48c148(0x294,'\x73\x43\x7a\x4b')](_0x360ac1,_0x47801c);}};if(_0x469e60[_0x37e5f8(0x1d8,'\x38\x39\x37\x4f')]!==_0x469e60['\x4a\x70\x74\x6b\x4a']){if(_0x1d67e2&&_0x1a627a['\x69\x64'])return _0x37e5f8(0x1b2,'\x62\x6a\x5b\x35')+_0x382765['\x69\x61\x46\x74\x47'](_0x29cc1d,_0x34984d['\x69\x64']);return _0x37e5f8(0x2bd,'\x30\x67\x73\x7a')+_0x37e5f8(0x207,'\x34\x63\x58\x5a')+'\x6c';}else{const _0x4f7062=_0x1e31bc?function(){const _0x21b5a2=_0x37e5f8;if(_0x469e60[_0x21b5a2(0x2c9,'\x2a\x25\x32\x69')]!==_0x469e60[_0x21b5a2(0x1d3,'\x23\x38\x4f\x6f')]){if(_0xcdd32f){if(_0x469e60[_0x21b5a2(0x1c5,'\x25\x5b\x58\x75')]===_0x469e60['\x56\x77\x6d\x4d\x41']){const _0x3fc41a=_0x382765[_0x21b5a2(0x275,'\x26\x6a\x76\x4c')](_0x319bea,_0x47df70);if(!_0x21252a[_0x21b5a2(0x1e9,'\x4e\x6d\x7a\x6d')](_0x3fc41a))return 0x8*-0x37+0x1e*-0xa5+-0xf5*-0x16;return _0x228dd7[_0x21b5a2(0x31a,'\x28\x44\x75\x5d')](0x1eaf+0xb7e*0x1+0xb7*-0x3b,_0x4116f6[_0x21b5a2(0x1d1,'\x71\x4d\x62\x34')](-0x2174+-0x5e+0x21d3,_0x3fc41a));}else{const _0x36357e=_0xcdd32f[_0x21b5a2(0x1c1,'\x62\x58\x78\x48')](_0x4d1d77,arguments);return _0xcdd32f=null,_0x36357e;}}}else{const _0x3faa5e=_0x382765['\x62\x6c\x71\x51\x48'][_0x21b5a2(0x28e,'\x25\x5b\x58\x75')]('\x7c');let _0x25d88f=0x1d4+-0x2c+-0xd4*0x2;while(!![]){switch(_0x3faa5e[_0x25d88f++]){case'\x30':try{var _0x2b22f9=_0x382765[_0x21b5a2(0x2f8,'\x54\x41\x34\x37')](_0x292a5b,_0x382765[_0x21b5a2(0x242,'\x43\x38\x46\x63')])[_0x21b5a2(0x31b,'\x2a\x41\x77\x77')+'\x74\x72\x61\x74\x65\x67\x79']();if(_0x2b22f9&&_0x382765[_0x21b5a2(0x247,'\x63\x26\x5b\x61')](typeof _0x2b22f9[_0x21b5a2(0x1a6,'\x61\x66\x33\x6a')],_0x382765[_0x21b5a2(0x1c2,'\x73\x43\x7a\x4b')])&&_0x382765['\x6d\x57\x61\x50\x43'](_0x2b22f9[_0x21b5a2(0x316,'\x74\x74\x31\x64')],0x12dc+0x2*0xe51+-0x2f7e*0x1+0.5))return _0x21b5a2(0x20a,'\x5e\x21\x45\x76');}catch(_0x3e1c2a){}continue;case'\x31':var _0x44b382=_0x5c5703['\x69\x73\x41\x72\x72\x61\x79'](_0x4a90ff)?_0x3c02c8:[];continue;case'\x32':if(_0x19a184(_0x32001c))return _0x382765[_0x21b5a2(0x2a3,'\x30\x67\x73\x7a')];continue;case'\x33':return _0x382765[_0x21b5a2(0x1d5,'\x63\x26\x5b\x61')];case'\x34':if(_0x3a1af6)return'\x69\x6e\x6e\x6f\x76\x61\x74\x65';continue;case'\x35':if(_0x44b382[_0x21b5a2(0x1fb,'\x42\x50\x73\x74')](_0x382765[_0x21b5a2(0x2f2,'\x39\x53\x54\x67')]))return _0x382765[_0x21b5a2(0x274,'\x65\x25\x52\x26')];continue;case'\x36':if(_0x382765[_0x21b5a2(0x2af,'\x73\x43\x7a\x4b')](_0x2c18ff,_0x431c08))return _0x21b5a2(0x1bd,'\x30\x67\x73\x7a');continue;}break;}}}:function(){};return _0x1e31bc=![],_0x4f7062;}};}()),_0x584d19=_0x4925b3(this,function(){const _0x252eea=_0x8473,_0x4a728c={};_0x4a728c[_0x252eea(0x1ff,'\x63\x26\x5b\x61')]=_0x252eea(0x21d,'\x69\x46\x58\x63')+'\x2b\x29\x2b\x24';const _0x485f34=_0x4a728c;return _0x584d19[_0x252eea(0x266,'\x4e\x6d\x7a\x6d')]()[_0x252eea(0x25c,'\x64\x42\x6e\x6c')](_0x485f34['\x75\x43\x4e\x65\x4c'])[_0x252eea(0x2e1,'\x49\x45\x5b\x4c')]()[_0x252eea(0x26e,'\x26\x6a\x76\x4c')+'\x74\x6f\x72'](_0x584d19)['\x73\x65\x61\x72\x63\x68'](_0x485f34[_0x252eea(0x244,'\x4c\x5e\x4d\x68')]);});_0x584d19();const {VALID_CATEGORIES:_0x56477e,VALID_RISK_LEVELS:_0x3c8b88}=require(_0x5283b3(0x1b0,'\x7a\x7a\x35\x57')+_0x5283b3(0x1de,'\x25\x62\x42\x5d')+'\x6f\x6c');function _0x59f8de(_0x314060){const _0x2b5878=_0x5283b3,_0x522ecc={'\x49\x52\x4b\x44\x47':function(_0x1e7f92,_0x182e6d){return _0x1e7f92(_0x182e6d);}},_0x52703d=_0x522ecc[_0x2b5878(0x27e,'\x5e\x21\x45\x76')](Number,_0x314060);if(!Number[_0x2b5878(0x216,'\x71\x4d\x62\x34')](_0x52703d))return-0x3*0x466+0x1*-0x19f9+0x272b;return Math[_0x2b5878(0x22b,'\x71\x4d\x62\x34')](0x247d*-0x1+-0x7ac+-0x64f*-0x7,Math[_0x2b5878(0x1af,'\x30\x67\x73\x7a')](-0xda4+0x81*-0x45+0x2*0x1835,_0x52703d));}function _0xed07bb(){const _0x4efab6=_0x5283b3;return Date[_0x4efab6(0x22c,'\x5e\x21\x45\x76')]();}function _0xf2847(_0x2978de){const _0x12e863=_0x5283b3,_0x3ba054={'\x66\x55\x56\x51\x6a':function(_0x1b33ae,_0x31fb82){return _0x1b33ae(_0x31fb82);},'\x59\x49\x77\x55\x42':function(_0x4e08f5,_0x292b5d){return _0x4e08f5||_0x292b5d;}},_0x378b5b=[],_0x5d7ebd=new Set();for(const _0x535da1 of Array[_0x12e863(0x2d1,'\x62\x6a\x5b\x35')](_0x2978de)?_0x2978de:[]){const _0x174d3f=_0x3ba054[_0x12e863(0x238,'\x69\x46\x58\x63')](String,_0x3ba054[_0x12e863(0x262,'\x43\x38\x46\x63')](_0x535da1,''))[_0x12e863(0x2d5,'\x61\x68\x4d\x4f')]();if(!_0x174d3f)continue;if(_0x5d7ebd[_0x12e863(0x2c2,'\x51\x47\x41\x78')](_0x174d3f))continue;_0x5d7ebd[_0x12e863(0x229,'\x78\x33\x75\x67')](_0x174d3f),_0x378b5b[_0x12e863(0x24d,'\x69\x46\x58\x63')](_0x174d3f);}return _0x378b5b;}function _0x457638(_0x42f519){const _0xa07235=_0x5283b3,_0x1381c0={};_0x1381c0[_0xa07235(0x1a9,'\x42\x50\x73\x74')]=_0xa07235(0x220,'\x25\x5b\x58\x75')+_0xa07235(0x217,'\x73\x43\x7a\x4b')+_0xa07235(0x28b,'\x71\x4d\x62\x34'),_0x1381c0[_0xa07235(0x1a4,'\x47\x52\x63\x50')]=_0xa07235(0x1e1,'\x30\x67\x73\x7a')+'\x5f\x73\x65\x6c\x66\x5f\x68\x65'+_0xa07235(0x321,'\x78\x33\x75\x67'),_0x1381c0['\x7a\x75\x6f\x4f\x4d']=_0xa07235(0x1b1,'\x33\x6e\x51\x72')+'\x6e',_0x1381c0[_0xa07235(0x1ba,'\x28\x4a\x70\x48')]=_0xa07235(0x1fd,'\x4d\x64\x62\x50'),_0x1381c0[_0xa07235(0x2c5,'\x48\x5a\x6d\x21')]=_0xa07235(0x1e8,'\x69\x46\x58\x63'),_0x1381c0[_0xa07235(0x1ad,'\x69\x46\x58\x63')]=_0xa07235(0x1e6,'\x4e\x6d\x7a\x6d'),_0x1381c0[_0xa07235(0x2e2,'\x69\x46\x58\x63')]='\x65\x72\x72\x73\x69\x67\x5f\x6e'+_0xa07235(0x201,'\x42\x50\x59\x39');const _0x3582b4=_0x1381c0,_0x33a26f=Array[_0xa07235(0x2da,'\x70\x62\x2a\x39')](_0x42f519)?_0x42f519[_0xa07235(0x200,'\x23\x38\x4f\x6f')](_0x2f1dee=>String(_0x2f1dee||'')):[];if(_0x33a26f[_0xa07235(0x25a,'\x51\x47\x41\x78')](_0x3582b4[_0xa07235(0x1ed,'\x64\x42\x6e\x6c')])||_0x33a26f[_0xa07235(0x32c,'\x71\x4d\x62\x34')](_0x3582b4[_0xa07235(0x1a7,'\x23\x53\x58\x58')]))return![];const _0x1a937e=[_0xa07235(0x2ab,'\x78\x33\x75\x67')+'\x72',_0xa07235(0x27d,'\x63\x26\x5b\x61'),_0x3582b4[_0xa07235(0x2d8,'\x26\x6a\x76\x4c')],_0x3582b4[_0xa07235(0x1ba,'\x28\x4a\x70\x48')],_0x3582b4[_0xa07235(0x1e0,'\x30\x67\x73\x7a')]];for(const _0xac7d72 of _0x33a26f){const _0x1c96f9=_0xac7d72[_0xa07235(0x20c,'\x39\x53\x54\x67')+'\x61\x73\x65']();if(_0x1a937e[_0xa07235(0x1ec,'\x4d\x64\x62\x50')](_0x33bd3a=>_0x1c96f9===_0x33bd3a))return!![];if(_0x1c96f9[_0xa07235(0x2ad,'\x73\x43\x7a\x4b')+'\x74\x68'](_0x3582b4[_0xa07235(0x21e,'\x38\x39\x37\x4f')])||_0x1c96f9['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x3582b4[_0xa07235(0x19e,'\x63\x26\x5b\x61')]))return!![];}return![];}var _0x63c8df=[_0x5283b3(0x21c,'\x5a\x66\x5e\x66')+_0x5283b3(0x239,'\x48\x5a\x6d\x21')+'\x75\x65\x73\x74',_0x5283b3(0x1be,'\x33\x6e\x51\x72')+_0x5283b3(0x324,'\x44\x6f\x37\x68')+_0x5283b3(0x267,'\x69\x46\x58\x63')+_0x5283b3(0x312,'\x2a\x66\x6c\x38'),_0x5283b3(0x2db,'\x43\x5d\x44\x6d')+_0x5283b3(0x28d,'\x38\x39\x37\x4f'),_0x5283b3(0x2bc,'\x64\x42\x6e\x6c')+_0x5283b3(0x288,'\x4d\x64\x62\x50'),_0x5283b3(0x21a,'\x4c\x5e\x4d\x68')+_0x5283b3(0x25e,'\x54\x41\x34\x37')+_0x5283b3(0x279,'\x65\x25\x52\x26'),_0x5283b3(0x319,'\x44\x6f\x37\x68')+_0x5283b3(0x306,'\x70\x62\x2a\x39')+'\x6e\x69\x74\x79',_0x5283b3(0x221,'\x78\x33\x75\x67')+_0x5283b3(0x224,'\x62\x58\x78\x48'),_0x5283b3(0x199,'\x61\x66\x33\x6a')+_0x5283b3(0x249,'\x69\x46\x58\x63')+'\x74\x5f\x74\x79\x70\x65',_0x5283b3(0x1b7,'\x7a\x7a\x35\x57')+_0x5283b3(0x295,'\x74\x74\x31\x64')+_0x5283b3(0x2ba,'\x42\x50\x59\x39')+_0x5283b3(0x2b9,'\x49\x45\x5b\x4c'),_0x5283b3(0x210,'\x65\x25\x52\x26')+_0x5283b3(0x1cf,'\x5e\x21\x45\x76')+_0x5283b3(0x1f4,'\x39\x53\x54\x67'),'\x66\x6f\x72\x63\x65\x5f\x69\x6e'+_0x5283b3(0x2a8,'\x71\x4d\x62\x34')+_0x5283b3(0x334,'\x25\x62\x42\x5d')+_0x5283b3(0x2a0,'\x30\x53\x65\x55')+'\x6f\x70','\x74\x6f\x6f\x6c\x5f\x62\x79\x70'+_0x5283b3(0x209,'\x26\x6a\x76\x4c'),_0x5283b3(0x212,'\x44\x6f\x37\x68')+_0x5283b3(0x19a,'\x49\x45\x5b\x4c')+'\x74',_0x5283b3(0x331,'\x70\x62\x2a\x39')+_0x5283b3(0x1ac,'\x65\x25\x52\x26')+_0x5283b3(0x30f,'\x4a\x25\x41\x23'),_0x5283b3(0x222,'\x69\x46\x58\x63')+_0x5283b3(0x26a,'\x4e\x6d\x7a\x6d')+_0x5283b3(0x1c6,'\x49\x45\x5b\x4c'),_0x5283b3(0x1d4,'\x39\x53\x54\x67')+_0x5283b3(0x278,'\x62\x6a\x5b\x35')+_0x5283b3(0x230,'\x44\x6f\x37\x68')+'\x64'];function _0x3f68ef(_0x556f9c){const _0x215df0=_0x5283b3,_0x3c2045={};_0x3c2045[_0x215df0(0x268,'\x25\x5b\x58\x75')]=function(_0xf9de1f,_0x145085){return _0xf9de1f||_0x145085;},_0x3c2045[_0x215df0(0x27a,'\x43\x5d\x44\x6d')]=function(_0x348131,_0x401447){return _0x348131+_0x401447;},_0x3c2045[_0x215df0(0x300,'\x65\x25\x52\x26')]=function(_0x30e166,_0x541166){return _0x30e166<_0x541166;};const _0x2c7f7a=_0x3c2045;var _0x22cbf2=Array[_0x215df0(0x21f,'\x43\x5d\x44\x6d')](_0x556f9c)?_0x556f9c[_0x215df0(0x2fa,'\x62\x6a\x5b\x35')](function(_0x12147c){const _0x5d6f84=_0x215df0;return String(_0x2c7f7a[_0x5d6f84(0x28c,'\x78\x33\x75\x67')](_0x12147c,''));}):[];for(var _0x1f7496=0x239e*0x1+-0x135*0x1f+0x1cd;_0x2c7f7a[_0x215df0(0x25f,'\x4a\x25\x41\x23')](_0x1f7496,_0x63c8df[_0x215df0(0x1ae,'\x65\x6a\x35\x43')]);_0x1f7496++){var _0x26e47d=_0x63c8df[_0x1f7496];if(_0x22cbf2[_0x215df0(0x297,'\x2a\x25\x32\x69')](_0x26e47d))return!![];if(_0x22cbf2[_0x215df0(0x261,'\x4c\x5e\x4d\x68')](function(_0x4a2cf6){const _0x841940=_0x215df0;return _0x4a2cf6[_0x841940(0x2bf,'\x30\x53\x65\x55')+'\x74\x68'](_0x2c7f7a[_0x841940(0x23f,'\x23\x53\x58\x58')](_0x26e47d,'\x3a'));}))return!![];}return![];}function _0x57184a({signals:_0x4a4473,driftEnabled:_0x1cf720}){const _0x37de1f=_0x5283b3,_0x1cd69e={'\x4e\x53\x49\x63\x61':function(_0x1b7162,_0x30ec08){return _0x1b7162(_0x30ec08);},'\x66\x56\x49\x46\x77':_0x37de1f(0x330,'\x5a\x66\x5e\x66'),'\x53\x68\x51\x52\x59':_0x37de1f(0x1d6,'\x70\x62\x2a\x39')+_0x37de1f(0x1b9,'\x4c\x5e\x4d\x68')+'\x69\x74\x79','\x69\x7a\x77\x7a\x79':_0x37de1f(0x315,'\x78\x33\x75\x67'),'\x4e\x46\x45\x55\x4d':_0x37de1f(0x1d0,'\x43\x5d\x44\x6d')+'\x67\x79','\x6a\x75\x4b\x59\x4e':function(_0x5e788f,_0x15f10a){return _0x5e788f===_0x15f10a;},'\x51\x5a\x75\x61\x43':function(_0x473e3b,_0x2b9ebf){return _0x473e3b>=_0x2b9ebf;},'\x45\x67\x76\x71\x6c':_0x37de1f(0x2e9,'\x4c\x5e\x4d\x68')};if(_0x1cd69e[_0x37de1f(0x1d9,'\x54\x41\x34\x37')](_0x457638,_0x4a4473))return _0x37de1f(0x1b6,'\x65\x6a\x35\x43');if(_0x1cf720)return _0x1cd69e['\x66\x56\x49\x46\x77'];if(_0x1cd69e[_0x37de1f(0x26c,'\x25\x62\x42\x5d')](_0x3f68ef,_0x4a4473))return _0x1cd69e[_0x37de1f(0x29b,'\x65\x6a\x35\x43')];var _0x31b9f2=Array[_0x37de1f(0x2da,'\x70\x62\x2a\x39')](_0x4a4473)?_0x4a4473:[];if(_0x31b9f2[_0x37de1f(0x1fb,'\x42\x50\x73\x74')](_0x1cd69e[_0x37de1f(0x304,'\x44\x6f\x37\x68')]))return _0x1cd69e[_0x37de1f(0x19c,'\x62\x58\x78\x48')];try{var _0x23fa88=_0x1cd69e[_0x37de1f(0x1f3,'\x30\x67\x73\x7a')](require,_0x1cd69e[_0x37de1f(0x28f,'\x43\x38\x46\x63')])[_0x37de1f(0x2ea,'\x42\x50\x73\x74')+_0x37de1f(0x1fe,'\x4d\x64\x62\x50')]();if(_0x23fa88&&_0x1cd69e[_0x37de1f(0x1d7,'\x51\x47\x41\x78')](typeof _0x23fa88[_0x37de1f(0x1e2,'\x23\x53\x58\x58')],_0x37de1f(0x2e8,'\x54\x41\x34\x37'))&&_0x1cd69e[_0x37de1f(0x226,'\x65\x25\x52\x26')](_0x23fa88[_0x37de1f(0x250,'\x25\x42\x58\x65')],0x6b*0x47+0x35*0x22+-0xd*0x2d3+0.5))return _0x1cd69e[_0x37de1f(0x203,'\x23\x38\x4f\x6f')];}catch(_0x2986c4){}return _0x1cd69e[_0x37de1f(0x2f9,'\x5e\x21\x45\x76')];}function _0x3873bb(_0x46b121){const _0x135e37=_0x5283b3,_0x1d9700={'\x4b\x75\x53\x4a\x71':function(_0x281adb,_0x242f44){return _0x281adb(_0x242f44);},'\x76\x68\x50\x73\x4f':function(_0x57b1b7,_0x34b1d1){return _0x57b1b7||_0x34b1d1;},'\x4d\x59\x55\x77\x68':function(_0x562fb4,_0xfa0adb){return _0x562fb4===_0xfa0adb;},'\x6f\x4e\x54\x77\x45':_0x135e37(0x219,'\x52\x75\x37\x53'),'\x6b\x78\x56\x73\x70':_0x135e37(0x214,'\x33\x6e\x51\x72')+_0x135e37(0x29f,'\x42\x50\x73\x74')+_0x135e37(0x2b8,'\x55\x5b\x47\x30')+_0x135e37(0x2d2,'\x52\x75\x37\x53')+'\x73\x74\x61\x62\x69\x6c\x69\x74'+_0x135e37(0x22e,'\x74\x74\x31\x64')+_0x135e37(0x313,'\x64\x42\x6e\x6c')+_0x135e37(0x314,'\x61\x68\x4d\x4f')+'\x65','\x44\x57\x65\x4e\x49':function(_0x196d15,_0x51fc11){return _0x196d15===_0x51fc11;},'\x5a\x6d\x44\x78\x79':_0x135e37(0x2ec,'\x2a\x25\x32\x69'),'\x6d\x61\x67\x6e\x64':_0x135e37(0x32f,'\x2a\x41\x77\x77'),'\x57\x66\x68\x47\x7a':_0x135e37(0x30d,'\x42\x50\x73\x74')+_0x135e37(0x253,'\x30\x67\x73\x7a')+'\x74\x65\x67\x79\x20\x63\x6f\x6d'+_0x135e37(0x1f1,'\x51\x47\x41\x78')+_0x135e37(0x2ac,'\x25\x62\x42\x5d')+_0x135e37(0x2fe,'\x25\x42\x58\x65')+_0x135e37(0x2a6,'\x30\x53\x65\x55')+'\x6d','\x43\x6b\x64\x57\x68':function(_0x475522,_0x20daf0){return _0x475522===_0x20daf0;},'\x75\x61\x6e\x68\x56':_0x135e37(0x2c0,'\x7a\x7a\x35\x57'),'\x54\x63\x74\x42\x65':_0x135e37(0x24b,'\x5a\x66\x5e\x66')+_0x135e37(0x325,'\x7a\x7a\x35\x57')+_0x135e37(0x2a5,'\x43\x38\x46\x63')+_0x135e37(0x326,'\x64\x42\x6e\x6c')+_0x135e37(0x1f0,'\x5a\x66\x5e\x66')+_0x135e37(0x2f3,'\x44\x6f\x37\x68')+_0x135e37(0x31f,'\x25\x62\x42\x5d')+_0x135e37(0x2b0,'\x64\x42\x6e\x6c')+'\x73\x20\x74\x6f\x20\x64\x69\x73'+_0x135e37(0x1c0,'\x51\x47\x41\x78')+_0x135e37(0x2fc,'\x48\x5a\x6d\x21')+_0x135e37(0x2e6,'\x23\x53\x58\x58')+_0x135e37(0x25d,'\x51\x47\x41\x78')+'\x73','\x72\x73\x45\x52\x55':_0x135e37(0x307,'\x25\x62\x42\x5d')+_0x135e37(0x29e,'\x44\x6f\x37\x68')+_0x135e37(0x2e3,'\x54\x41\x34\x37')+_0x135e37(0x332,'\x73\x43\x7a\x4b')+_0x135e37(0x1a5,'\x2a\x41\x77\x77')+'\x74\x79'},_0x3bf720=_0x1d9700['\x4b\x75\x53\x4a\x71'](String,_0x1d9700['\x76\x68\x50\x73\x4f'](_0x46b121,''));if(_0x1d9700[_0x135e37(0x2fd,'\x39\x53\x54\x67')](_0x3bf720,_0x1d9700[_0x135e37(0x270,'\x74\x74\x31\x64')]))return _0x1d9700[_0x135e37(0x246,'\x71\x4d\x62\x34')];if(_0x1d9700[_0x135e37(0x2a2,'\x64\x42\x6e\x6c')](_0x3bf720,_0x1d9700[_0x135e37(0x2cb,'\x4a\x25\x41\x23')]))return _0x135e37(0x30c,'\x55\x5b\x47\x30')+_0x135e37(0x26f,'\x64\x42\x6e\x6c')+_0x135e37(0x252,'\x54\x41\x34\x37')+_0x135e37(0x310,'\x65\x6a\x35\x43')+_0x135e37(0x233,'\x5e\x21\x45\x76')+_0x135e37(0x1ef,'\x63\x26\x5b\x61')+_0x135e37(0x1f5,'\x38\x39\x37\x4f')+'\x74';if(_0x1d9700[_0x135e37(0x265,'\x26\x6a\x76\x4c')](_0x3bf720,_0x1d9700[_0x135e37(0x1c9,'\x33\x6e\x51\x72')]))return _0x1d9700[_0x135e37(0x2b7,'\x71\x4d\x62\x34')];if(_0x1d9700[_0x135e37(0x2d7,'\x23\x53\x58\x58')](_0x3bf720,_0x1d9700['\x75\x61\x6e\x68\x56']))return _0x1d9700[_0x135e37(0x309,'\x78\x33\x75\x67')];return _0x1d9700[_0x135e37(0x31e,'\x43\x5d\x44\x6d')];}function _0x8473(_0x9c471b,_0x370ccc){_0x9c471b=_0x9c471b-(0x15d4+-0x17f*-0x1a+-0x3b23*0x1);const _0x2f64dc=_0x4ea3();let _0x1da28f=_0x2f64dc[_0x9c471b];if(_0x8473['\x42\x68\x77\x6f\x45\x6b']===undefined){var _0x5a49e7=function(_0x47ad9a){const _0x59344b='\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 _0x543639='',_0x5f30ae='',_0x29a784=_0x543639+_0x5a49e7,_0x268e30=(''+function(){return 0x1c6c+-0x60a*0x4+0x2a*-0x1a;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0xb*0x22d+-0x9ec+-0xe02);for(let _0x1f405a=0x6b*-0x47+0xcb8+0x10f5,_0x3d256e,_0x3d0123,_0x5f1afd=0xe42+0x61*0x25+-0x7f*0x39;_0x3d0123=_0x47ad9a['\x63\x68\x61\x72\x41\x74'](_0x5f1afd++);~_0x3d0123&&(_0x3d256e=_0x1f405a%(-0x1bdb*-0x1+0x104b+-0x2c22)?_0x3d256e*(0x90e+-0x1dab+0x2fb*0x7)+_0x3d0123:_0x3d0123,_0x1f405a++%(0xf9d+0x1dd4+-0x191*0x1d))?_0x543639+=_0x268e30||_0x29a784['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5f1afd+(0x8f4+0x1*-0x16ae+0xdc4))-(0x1872+0x254c+-0x1eda*0x2)!==-0x1*-0x4af+0x4e+-0x4fd?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x193a+0x2*-0x214+0x1*0x1e61&_0x3d256e>>(-(0x1de*0x11+0x1826+0x137*-0x2e)*_0x1f405a&-0xd38+-0xa2f+0x176d*0x1)):_0x1f405a:-0x1*0x1c3f+-0x14cf*-0x1+0x7*0x110){_0x3d0123=_0x59344b['\x69\x6e\x64\x65\x78\x4f\x66'](_0x3d0123);}for(let _0x4842fd=-0x3*0xfb+0xfe9*0x1+0x8*-0x19f,_0x4f5713=_0x543639['\x6c\x65\x6e\x67\x74\x68'];_0x4842fd<_0x4f5713;_0x4842fd++){_0x5f30ae+='\x25'+('\x30\x30'+_0x543639['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4842fd)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x1*-0x221+0x4*-0x156+0x347))['\x73\x6c\x69\x63\x65'](-(-0x81d+0xc1d+0x2*-0x1ff));}return decodeURIComponent(_0x5f30ae);};const _0x33b4c0=function(_0x39b90d,_0x2eee61){let _0x5c740f=[],_0x12f830=-0xb*0x295+0xd0d+0xf5a,_0x2ec390,_0x4e0a8b='';_0x39b90d=_0x5a49e7(_0x39b90d);let _0x330412;for(_0x330412=-0x4d4+-0x31*-0x15+0x1*0xcf;_0x330412<0x3*0xaf9+-0x7b*0x41+-0xb0;_0x330412++){_0x5c740f[_0x330412]=_0x330412;}for(_0x330412=0x1c33+-0x8d1*-0x1+-0x2504;_0x330412<-0x2*-0x6af+-0xc20+-0x3e;_0x330412++){_0x12f830=(_0x12f830+_0x5c740f[_0x330412]+_0x2eee61['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x330412%_0x2eee61['\x6c\x65\x6e\x67\x74\x68']))%(-0x1902+-0x1312+0x2d14),_0x2ec390=_0x5c740f[_0x330412],_0x5c740f[_0x330412]=_0x5c740f[_0x12f830],_0x5c740f[_0x12f830]=_0x2ec390;}_0x330412=0x364*-0x3+0x1*-0xd5d+0x4b5*0x5,_0x12f830=0xd0a*0x2+-0x1*-0x100d+-0x3*0xe0b;for(let _0x4e83ba=0xacf*0x1+0x2489+-0x2f58;_0x4e83ba<_0x39b90d['\x6c\x65\x6e\x67\x74\x68'];_0x4e83ba++){_0x330412=(_0x330412+(0x1f33+-0x5*-0x168+-0x7*0x576))%(0x110b+0x3a4*0x6+-0x25e3),_0x12f830=(_0x12f830+_0x5c740f[_0x330412])%(-0x2546+-0x12e2*0x1+0x3928),_0x2ec390=_0x5c740f[_0x330412],_0x5c740f[_0x330412]=_0x5c740f[_0x12f830],_0x5c740f[_0x12f830]=_0x2ec390,_0x4e0a8b+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x39b90d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4e83ba)^_0x5c740f[(_0x5c740f[_0x330412]+_0x5c740f[_0x12f830])%(-0x9b7+0x4a*0x6+0x8fb*0x1)]);}return _0x4e0a8b;};_0x8473['\x58\x6c\x4d\x52\x4d\x7a']=_0x33b4c0,_0x8473['\x64\x62\x72\x72\x66\x67']={},_0x8473['\x42\x68\x77\x6f\x45\x6b']=!![];}const _0x10747f=_0x2f64dc[-0xfc+-0x1*0xe7c+-0x84*-0x1e],_0x4ff20a=_0x9c471b+_0x10747f,_0x4e2ada=_0x8473['\x64\x62\x72\x72\x66\x67'][_0x4ff20a];if(!_0x4e2ada){if(_0x8473['\x6c\x71\x62\x50\x69\x4e']===undefined){const _0x2a0602=function(_0x65a326){this['\x61\x45\x64\x57\x4a\x4d']=_0x65a326,this['\x73\x7a\x41\x55\x56\x6b']=[0x4c5+-0xebf*0x1+-0x16d*-0x7,0x1472*-0x1+0xb*0x4d+0x1*0x1123,0x13f4+-0x1c*-0xb9+0x8*-0x506],this['\x4c\x76\x45\x6e\x41\x48']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x4d\x72\x72\x70\x44\x51']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x63\x78\x63\x6e\x47\x77']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x2a0602['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x43\x59\x7a\x44\x6a\x77']=function(){const _0x56d55b=new RegExp(this['\x4d\x72\x72\x70\x44\x51']+this['\x63\x78\x63\x6e\x47\x77']),_0x2ab61c=_0x56d55b['\x74\x65\x73\x74'](this['\x4c\x76\x45\x6e\x41\x48']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x73\x7a\x41\x55\x56\x6b'][-0xfb5*0x1+-0x24d5+0x348b]:--this['\x73\x7a\x41\x55\x56\x6b'][-0x46*0x1b+-0x2121+0x2883];return this['\x46\x63\x47\x48\x50\x6d'](_0x2ab61c);},_0x2a0602['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x46\x63\x47\x48\x50\x6d']=function(_0xedef5){if(!Boolean(~_0xedef5))return _0xedef5;return this['\x55\x52\x63\x61\x49\x6d'](this['\x61\x45\x64\x57\x4a\x4d']);},_0x2a0602['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x55\x52\x63\x61\x49\x6d']=function(_0x92f632){for(let _0x1dc8eb=0x1*-0x641+-0x69f*-0x5+-0x1ada,_0x45d89b=this['\x73\x7a\x41\x55\x56\x6b']['\x6c\x65\x6e\x67\x74\x68'];_0x1dc8eb<_0x45d89b;_0x1dc8eb++){this['\x73\x7a\x41\x55\x56\x6b']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x45d89b=this['\x73\x7a\x41\x55\x56\x6b']['\x6c\x65\x6e\x67\x74\x68'];}return _0x92f632(this['\x73\x7a\x41\x55\x56\x6b'][-0x1591+0x1d5*-0x2+0x193b]);},(''+function(){return 0xd77+-0x90b+-0x46c*0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x7f6+0x1be2+-0x13eb*0x1)&&new _0x2a0602(_0x8473)['\x43\x59\x7a\x44\x6a\x77'](),_0x8473['\x6c\x71\x62\x50\x69\x4e']=!![];}_0x1da28f=_0x8473['\x58\x6c\x4d\x52\x4d\x7a'](_0x1da28f,_0x370ccc),_0x8473['\x64\x62\x72\x72\x66\x67'][_0x4ff20a]=_0x1da28f;}else _0x1da28f=_0x4e2ada;return _0x1da28f;}function _0x102f54(_0x4ae8ea){const _0x485c52=_0x5283b3,_0x2772ac={'\x54\x4e\x48\x54\x52':function(_0x2f41f0,_0xf84bd8){return _0x2f41f0(_0xf84bd8);},'\x64\x44\x64\x62\x63':_0x485c52(0x218,'\x7a\x7a\x35\x57')+_0x485c52(0x1ab,'\x63\x26\x5b\x61')+'\x6c'};if(_0x4ae8ea&&_0x4ae8ea['\x69\x64'])return _0x485c52(0x302,'\x52\x75\x37\x53')+_0x2772ac['\x54\x4e\x48\x54\x52'](String,_0x4ae8ea['\x69\x64']);return _0x2772ac[_0x485c52(0x22f,'\x49\x45\x5b\x4c')];}function _0x5bc3cb(_0x12e444){const _0x4c8a68=_0x5283b3,_0x37fa0f={'\x69\x7a\x47\x57\x62':function(_0x1c8e53,_0x56f1f2){return _0x1c8e53(_0x56f1f2);},'\x63\x5a\x4a\x66\x43':function(_0x5bf7e1,_0x51dc14){return _0x5bf7e1(_0x51dc14);},'\x7a\x62\x74\x47\x6f':function(_0x4135f2,_0x5da058){return _0x4135f2(_0x5da058);},'\x4b\x74\x65\x4a\x57':function(_0x4a01d8,_0x3e5306){return _0x4a01d8!=_0x3e5306;},'\x69\x49\x77\x75\x47':function(_0xa37562,_0x2429e3){return _0xa37562<_0x2429e3;},'\x57\x4a\x50\x62\x44':function(_0x3d5ff1,_0x1dab15){return _0x3d5ff1!=_0x1dab15;},'\x4a\x46\x43\x59\x71':function(_0x221efa,_0x35543f){return _0x221efa>_0x35543f;}},_0x5792d1=_0x12e444&&Number[_0x4c8a68(0x1f9,'\x4c\x5e\x4d\x68')](Number(_0x12e444[_0x4c8a68(0x2f5,'\x4a\x25\x41\x23')]))?_0x37fa0f[_0x4c8a68(0x264,'\x69\x46\x58\x63')](Number,_0x12e444[_0x4c8a68(0x211,'\x62\x58\x78\x48')]):null,_0x29bd04=_0x12e444&&Number[_0x4c8a68(0x32a,'\x78\x33\x75\x67')](_0x37fa0f[_0x4c8a68(0x204,'\x55\x5b\x47\x30')](Number,_0x12e444[_0x4c8a68(0x245,'\x71\x4d\x62\x34')+_0x4c8a68(0x213,'\x23\x53\x58\x58')]))?_0x37fa0f['\x7a\x62\x74\x47\x6f'](Number,_0x12e444[_0x4c8a68(0x2dc,'\x5a\x66\x5e\x66')+_0x4c8a68(0x2ed,'\x33\x6e\x51\x72')]):null;if(_0x37fa0f[_0x4c8a68(0x206,'\x78\x33\x75\x67')](_0x5792d1,null)&&_0x37fa0f[_0x4c8a68(0x26b,'\x48\x5a\x6d\x21')](_0x5792d1,-0xbe5+-0xd58+0x1*0x193d+0.5))return!![];if(_0x37fa0f['\x57\x4a\x50\x62\x44'](_0x29bd04,null)&&_0x37fa0f[_0x4c8a68(0x1a2,'\x26\x6a\x76\x4c')](_0x29bd04,-0x90f*-0x3+-0x1*-0x27a+0x1da7*-0x1+0.6))return!![];return![];}function _0x57a34e(_0x3c923e){const _0x3d146d=_0x5283b3,_0x39bfc5={'\x46\x59\x77\x41\x44':function(_0x3d7d9f,_0x4e49c7){return _0x3d7d9f(_0x4e49c7);},'\x44\x76\x51\x42\x75':function(_0x15f6cc,_0x21773e){return _0x15f6cc(_0x21773e);},'\x71\x59\x5a\x61\x61':function(_0x1572c8,_0x5ea225){return _0x1572c8<=_0x5ea225;}},_0x360d5a=_0x3c923e&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x39bfc5[_0x3d146d(0x305,'\x69\x46\x58\x63')](Number,_0x3c923e[_0x3d146d(0x2b1,'\x74\x74\x31\x64')]))?_0x39bfc5[_0x3d146d(0x255,'\x4c\x5e\x4d\x68')](Number,_0x3c923e['\x72\x69\x67\x6f\x72']):-0x7*0x38b+-0x2311+0x3bde,_0x569ec9=_0x3c923e&&Number[_0x3d146d(0x1ce,'\x61\x66\x33\x6a')](_0x39bfc5[_0x3d146d(0x1bf,'\x69\x46\x58\x63')](Number,_0x3c923e['\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+_0x3d146d(0x1eb,'\x23\x38\x4f\x6f')]))?_0x39bfc5[_0x3d146d(0x1e5,'\x78\x33\x75\x67')](Number,_0x3c923e[_0x3d146d(0x1a3,'\x64\x42\x6e\x6c')+'\x65\x72\x61\x6e\x63\x65']):0x620+0x4*-0x652+0x9*0x221;return _0x360d5a>=0x12c0+0x18c3+-0x2b83+0.6&&_0x39bfc5[_0x3d146d(0x2b4,'\x69\x46\x58\x63')](_0x569ec9,-0xc*-0x259+0x238e+-0x3fba+0.5);}function _0x9ba87({signals:_0x41613c,selectedGene:_0x2ba587,driftEnabled:_0x5baaed,personalityState:_0x5f5588,allowHighRisk:allowHighRisk=![],target:_0x5f30d3,expected_effect:_0x44f0a1}={}){const _0x5e7417=_0x5283b3,_0x2960fe={'\x69\x4d\x70\x68\x6f':_0x5e7417(0x298,'\x63\x26\x5b\x61')+_0x5e7417(0x2bb,'\x43\x5d\x44\x6d')+_0x5e7417(0x2e7,'\x33\x6e\x51\x72')+_0x5e7417(0x308,'\x52\x75\x37\x53')+_0x5e7417(0x1ca,'\x73\x43\x7a\x4b')+_0x5e7417(0x28a,'\x52\x75\x37\x53')+_0x5e7417(0x208,'\x4a\x25\x41\x23')+_0x5e7417(0x336,'\x30\x53\x65\x55')+_0x5e7417(0x1f2,'\x52\x75\x37\x53')+_0x5e7417(0x1a1,'\x54\x41\x34\x37')+_0x5e7417(0x280,'\x42\x50\x59\x39'),'\x69\x48\x4d\x4c\x76':_0x5e7417(0x281,'\x28\x4a\x70\x48'),'\x77\x53\x6e\x55\x42':function(_0x272baf,_0x17f310){return _0x272baf(_0x17f310);},'\x4c\x70\x48\x65\x79':_0x5e7417(0x223,'\x30\x53\x65\x55')+'\x76\x6f\x69\x64\x5f\x69\x6e\x6e'+_0x5e7417(0x2a4,'\x47\x52\x63\x50')+_0x5e7417(0x256,'\x48\x5a\x6d\x21')+_0x5e7417(0x24a,'\x23\x53\x58\x58')+_0x5e7417(0x2ce,'\x26\x6a\x76\x4c'),'\x63\x66\x65\x4f\x68':function(_0x59ef94,_0xa9d468){return _0x59ef94(_0xa9d468);},'\x44\x70\x62\x77\x7a':_0x5e7417(0x284,'\x61\x66\x33\x6a'),'\x77\x53\x44\x67\x6d':function(_0x37928b,_0x43f2be){return _0x37928b(_0x43f2be);},'\x47\x70\x45\x63\x49':_0x5e7417(0x19b,'\x62\x6a\x5b\x35'),'\x67\x43\x48\x7a\x6e':function(_0x3382a0,_0x2dd4ce){return _0x3382a0===_0x2dd4ce;},'\x6a\x6f\x47\x4c\x69':_0x5e7417(0x1fa,'\x61\x68\x4d\x4f'),'\x56\x79\x56\x74\x76':function(_0x2ca2a0,_0x3d07da){return _0x2ca2a0===_0x3d07da;},'\x78\x77\x69\x71\x64':_0x5e7417(0x317,'\x5e\x21\x45\x76'),'\x55\x47\x4c\x5a\x52':function(_0x2e2fb4,_0x3161a8){return _0x2e2fb4===_0x3161a8;},'\x47\x61\x4b\x61\x66':function(_0x4906c0,_0x228430){return _0x4906c0(_0x228430);},'\x55\x4c\x76\x59\x75':'\x6d\x65\x64\x69\x75\x6d','\x61\x59\x6a\x6b\x79':function(_0x5e9b40,_0xb69422){return _0x5e9b40(_0xb69422);},'\x70\x54\x53\x76\x46':_0x5e7417(0x251,'\x25\x42\x58\x65')+_0x5e7417(0x198,'\x2a\x66\x6c\x38')+_0x5e7417(0x318,'\x61\x66\x33\x6a')+'\x73\x6b'},_0x2f8c22=_0xed07bb(),_0x2aa916={};_0x2aa916['\x73\x69\x67\x6e\x61\x6c\x73']=_0x41613c,_0x2aa916[_0x5e7417(0x303,'\x49\x45\x5b\x4c')+_0x5e7417(0x24f,'\x2a\x41\x77\x77')]=!!_0x5baaed;const _0x46f2f5=_0x2960fe['\x63\x66\x65\x4f\x68'](_0x57184a,_0x2aa916),_0xe46fac=_0xf2847(_0x41613c),_0x25cb92={'\x74\x79\x70\x65':_0x2960fe[_0x5e7417(0x1dc,'\x78\x33\x75\x67')],'\x69\x64':_0x5e7417(0x2d3,'\x28\x4a\x70\x48')+_0x2f8c22,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x46f2f5,'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0xe46fac,'\x74\x61\x72\x67\x65\x74':String(_0x5f30d3||_0x2960fe[_0x5e7417(0x19d,'\x2a\x41\x77\x77')](_0x102f54,_0x2ba587)),'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x2960fe[_0x5e7417(0x235,'\x4c\x5e\x4d\x68')](String,_0x44f0a1||_0x3873bb(_0x46f2f5)),'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x5e7417(0x2b3,'\x78\x33\x75\x67')};if(_0x46f2f5===_0x2960fe['\x47\x70\x45\x63\x49'])_0x25cb92['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c']=_0x5e7417(0x2c6,'\x23\x38\x4f\x6f');allowHighRisk&&_0x2960fe[_0x5e7417(0x31c,'\x38\x39\x37\x4f')](_0x46f2f5,_0x2960fe['\x47\x70\x45\x63\x49'])&&(_0x25cb92[_0x5e7417(0x2ca,'\x62\x58\x78\x48')+'\x65\x6c']=_0x2960fe[_0x5e7417(0x276,'\x70\x62\x2a\x39')]);const _0x118bc7=_0x5bc3cb(_0x5f5588||null);return _0x2960fe['\x56\x79\x56\x74\x76'](_0x25cb92[_0x5e7417(0x29a,'\x25\x62\x42\x5d')],_0x2960fe[_0x5e7417(0x2b6,'\x55\x5b\x47\x30')])&&_0x118bc7&&(_0x2960fe[_0x5e7417(0x240,'\x47\x52\x63\x50')]===_0x2960fe[_0x5e7417(0x23b,'\x25\x5b\x58\x75')]?(_0x25cb92[_0x5e7417(0x2c7,'\x33\x6e\x51\x72')]='\x6f\x70\x74\x69\x6d\x69\x7a\x65',_0x25cb92[_0x5e7417(0x248,'\x65\x6a\x35\x43')+_0x5e7417(0x2d4,'\x48\x5a\x6d\x21')]=_0x2960fe['\x69\x4d\x70\x68\x6f'],_0x25cb92[_0x5e7417(0x1f8,'\x28\x4a\x70\x48')+'\x65\x6c']=_0x2960fe[_0x5e7417(0x337,'\x47\x52\x63\x50')],_0x25cb92[_0x5e7417(0x1c7,'\x4d\x64\x62\x50')+_0x5e7417(0x243,'\x62\x6a\x5b\x35')]=_0xf2847([..._0x25cb92[_0x5e7417(0x289,'\x23\x38\x4f\x6f')+_0x5e7417(0x1b4,'\x5a\x66\x5e\x66')]||[],_0x2960fe[_0x5e7417(0x286,'\x63\x26\x5b\x61')]])):(_0x2bbbf4[_0x5e7417(0x32d,'\x44\x6f\x37\x68')]=_0x5e7417(0x227,'\x2a\x66\x6c\x38'),_0x42630f[_0x5e7417(0x1dd,'\x25\x42\x58\x65')+_0x5e7417(0x20b,'\x30\x67\x73\x7a')]=_0x2960fe[_0x5e7417(0x2ee,'\x2a\x25\x32\x69')],_0x1bbfe4[_0x5e7417(0x2f7,'\x7a\x7a\x35\x57')+'\x65\x6c']=_0x2960fe[_0x5e7417(0x2ae,'\x43\x5d\x44\x6d')],_0x771cf7[_0x5e7417(0x1f7,'\x25\x62\x42\x5d')+_0x5e7417(0x282,'\x33\x6e\x51\x72')]=_0x2960fe[_0x5e7417(0x1a8,'\x5e\x21\x45\x76')](_0x2696a1,[..._0x26ad28[_0x5e7417(0x272,'\x2a\x66\x6c\x38')+_0x5e7417(0x1da,'\x26\x6a\x76\x4c')]||[],_0x2960fe['\x4c\x70\x48\x65\x79']]))),_0x2960fe[_0x5e7417(0x296,'\x65\x6a\x35\x43')](_0x25cb92['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c'],_0x2960fe['\x6a\x6f\x47\x4c\x69'])&&!_0x2960fe['\x47\x61\x4b\x61\x66'](_0x57a34e,_0x5f5588||null)&&(_0x25cb92[_0x5e7417(0x301,'\x26\x6a\x76\x4c')+'\x65\x6c']=_0x2960fe[_0x5e7417(0x197,'\x4e\x6d\x7a\x6d')],_0x25cb92[_0x5e7417(0x1df,'\x71\x4d\x62\x34')+'\x73\x69\x67\x6e\x61\x6c\x73']=_0x2960fe['\x61\x59\x6a\x6b\x79'](_0xf2847,[..._0x25cb92['\x74\x72\x69\x67\x67\x65\x72\x5f'+_0x5e7417(0x2a1,'\x25\x42\x58\x65')]||[],_0x2960fe[_0x5e7417(0x1c3,'\x33\x6e\x51\x72')]])),_0x25cb92;}function _0x4ea3(){const _0xebcd30=['\x69\x6d\x6f\x46\x6e\x53\x6f\x59\x57\x34\x2f\x64\x4f\x4e\x53','\x42\x6d\x6f\x4c\x57\x52\x2f\x63\x54\x43\x6f\x76\x70\x53\x6f\x41\x7a\x61','\x57\x37\x47\x66\x6b\x77\x56\x64\x52\x57','\x73\x4a\x56\x63\x52\x48\x76\x68\x45\x64\x5a\x63\x56\x61','\x65\x38\x6b\x42\x6f\x43\x6b\x34\x70\x32\x78\x64\x4d\x43\x6f\x75','\x57\x37\x48\x70\x6c\x53\x6b\x39\x69\x6d\x6b\x42\x66\x43\x6f\x47','\x65\x38\x6f\x51\x57\x34\x5a\x63\x48\x53\x6b\x4a','\x6e\x43\x6f\x50\x57\x36\x37\x63\x50\x38\x6b\x65\x6c\x53\x6b\x6b\x42\x57','\x57\x52\x52\x63\x48\x32\x47\x5a\x57\x36\x4c\x39\x66\x32\x4b','\x57\x35\x37\x64\x52\x48\x2f\x64\x53\x58\x53','\x57\x52\x71\x70\x74\x6d\x6f\x4d\x57\x35\x68\x64\x49\x76\x6d\x36','\x57\x37\x4f\x53\x70\x66\x33\x64\x4b\x71','\x6a\x33\x58\x71\x69\x53\x6b\x53\x75\x31\x34','\x61\x73\x42\x63\x47\x48\x47\x58\x72\x49\x68\x64\x4d\x65\x52\x63\x4f\x47','\x62\x43\x6b\x76\x62\x6d\x6b\x79\x57\x50\x4b\x55\x57\x37\x61\x56','\x6b\x33\x31\x4b\x6f\x6d\x6b\x52\x78\x72\x62\x58','\x57\x37\x70\x63\x53\x47\x76\x63\x64\x71','\x57\x4f\x6c\x64\x52\x53\x6b\x46\x6a\x38\x6f\x78\x57\x51\x47','\x6d\x68\x43\x4d\x64\x61','\x57\x51\x61\x62\x57\x52\x50\x79\x6a\x47','\x46\x65\x71\x4d\x57\x37\x4b\x37\x57\x52\x69\x59\x65\x57','\x6e\x48\x58\x41\x57\x52\x52\x63\x51\x38\x6f\x6e\x57\x4f\x68\x63\x49\x57','\x45\x38\x6f\x68\x6e\x43\x6b\x70\x74\x31\x78\x63\x49\x53\x6b\x33','\x42\x43\x6f\x63\x57\x51\x43\x5a\x6f\x6d\x6b\x4a\x70\x4b\x79','\x57\x34\x62\x55\x57\x36\x34\x73\x57\x51\x6d\x38\x64\x4a\x65','\x66\x6d\x6f\x6b\x57\x34\x6c\x63\x51\x53\x6b\x67','\x71\x63\x52\x64\x50\x73\x30','\x57\x51\x70\x64\x50\x43\x6f\x4f\x57\x52\x6a\x68\x68\x65\x79\x6c','\x79\x6d\x6b\x70\x7a\x43\x6b\x51\x57\x50\x42\x63\x55\x5a\x4f\x37\x57\x36\x4f\x75\x57\x37\x58\x46\x57\x50\x30','\x66\x6d\x6f\x67\x69\x6d\x6b\x54\x6e\x33\x74\x64\x48\x6d\x6f\x4f','\x57\x51\x52\x63\x4f\x6d\x6f\x6e\x6a\x77\x4b\x36\x57\x4f\x74\x64\x4e\x61','\x57\x37\x78\x64\x52\x4a\x46\x64\x4e\x57\x31\x4c\x57\x34\x4a\x63\x49\x61','\x57\x51\x35\x62\x57\x4f\x46\x63\x47\x61','\x45\x77\x65\x35\x77\x38\x6b\x49\x57\x51\x6e\x52\x57\x34\x71','\x57\x52\x4a\x64\x55\x43\x6b\x79\x6c\x38\x6f\x72\x57\x51\x34\x41','\x6a\x78\x4b\x49\x62\x43\x6f\x65\x57\x52\x75','\x6e\x32\x4f\x51\x68\x43\x6f\x65\x57\x52\x42\x64\x49\x61','\x79\x5a\x62\x4b\x57\x52\x52\x63\x4c\x71','\x57\x4f\x52\x64\x56\x43\x6b\x6f','\x57\x52\x4e\x64\x55\x31\x57\x77','\x57\x36\x69\x6c\x75\x6d\x6b\x2f\x65\x38\x6b\x74\x46\x38\x6f\x4f','\x57\x4f\x68\x64\x49\x53\x6b\x33\x64\x38\x6f\x64','\x75\x30\x4a\x64\x56\x75\x79\x38','\x57\x52\x6d\x2f\x57\x52\x68\x63\x55\x38\x6b\x77\x57\x34\x52\x64\x4d\x38\x6f\x44\x71\x62\x53','\x57\x37\x43\x62\x6c\x4c\x42\x64\x47\x47','\x6a\x77\x61\x78\x75\x6d\x6b\x41\x57\x34\x6c\x64\x4f\x38\x6f\x47','\x57\x36\x58\x4d\x57\x36\x33\x64\x4f\x6d\x6b\x4c\x57\x36\x56\x63\x52\x38\x6b\x63','\x6d\x53\x6f\x66\x69\x47','\x57\x50\x4a\x63\x55\x43\x6f\x77\x70\x30\x7a\x42\x76\x4b\x47','\x62\x43\x6f\x38\x57\x36\x33\x63\x52\x38\x6b\x63\x69\x43\x6b\x46','\x76\x5a\x68\x64\x4a\x63\x79\x6c\x74\x74\x4b\x30','\x57\x51\x2f\x64\x52\x38\x6f\x2b\x57\x37\x46\x64\x56\x47','\x6d\x6d\x6f\x78\x6a\x43\x6f\x35\x57\x34\x4e\x64\x4f\x78\x4f\x6a','\x57\x35\x31\x31\x57\x36\x4f\x41\x57\x52\x4b\x2b','\x57\x52\x71\x64\x74\x38\x6f\x53\x57\x36\x46\x64\x4c\x32\x4b\x47','\x63\x65\x6c\x64\x48\x6d\x6f\x63\x57\x35\x4b','\x41\x73\x54\x2f\x6c\x6d\x6b\x42\x57\x37\x74\x64\x49\x53\x6f\x6a','\x57\x52\x42\x63\x4d\x32\x43\x59\x57\x37\x58\x35','\x6b\x4d\x6e\x65\x57\x52\x68\x63\x4e\x6d\x6f\x6e\x57\x52\x74\x63\x53\x47','\x65\x63\x56\x64\x4d\x64\x6c\x64\x4c\x47','\x57\x36\x76\x6f\x61\x43\x6b\x5a\x6b\x43\x6b\x78\x65\x38\x6f\x41','\x57\x50\x42\x64\x47\x6d\x6b\x4b\x57\x37\x4e\x63\x4d\x53\x6b\x79\x57\x51\x47\x70','\x46\x75\x61\x36\x57\x37\x30\x51\x57\x52\x71\x56\x67\x61','\x57\x35\x58\x4b\x57\x36\x47\x73\x57\x52\x34\x52','\x57\x36\x2f\x64\x51\x72\x64\x64\x4c\x61\x39\x50\x57\x36\x70\x63\x4e\x47','\x63\x65\x6e\x67\x6d\x38\x6b\x61','\x46\x43\x6f\x72\x43\x6d\x6b\x43\x46\x4c\x46\x64\x4a\x38\x6b\x5a','\x77\x6d\x6f\x74\x78\x38\x6f\x63\x57\x35\x6e\x4c\x57\x52\x44\x4a','\x57\x51\x4a\x64\x4d\x53\x6f\x2b\x57\x52\x30\x69','\x57\x35\x6e\x54\x79\x43\x6b\x79\x66\x4d\x4f\x48','\x57\x51\x5a\x64\x55\x53\x6f\x73\x72\x38\x6f\x38\x57\x37\x74\x63\x55\x77\x69','\x57\x34\x34\x71\x6b\x67\x4e\x64\x50\x38\x6f\x6e\x57\x35\x33\x64\x48\x47','\x68\x38\x6b\x6c\x65\x53\x6b\x63\x57\x50\x53\x47\x57\x37\x30\x39','\x64\x74\x52\x64\x56\x57\x37\x64\x53\x53\x6b\x2b\x57\x36\x6a\x50','\x68\x78\x74\x64\x48\x53\x6f\x46\x57\x35\x4e\x64\x4f\x65\x30','\x75\x33\x70\x64\x47\x30\x75\x79\x7a\x74\x64\x64\x4d\x71','\x57\x50\x43\x38\x73\x53\x6f\x53\x57\x34\x30','\x57\x37\x52\x63\x49\x74\x58\x79\x65\x71\x48\x72\x61\x71','\x57\x52\x52\x63\x48\x32\x75\x57\x57\x36\x50\x34\x62\x4e\x38','\x57\x35\x30\x72\x6c\x57','\x57\x36\x54\x30\x57\x34\x4e\x64\x4f\x6d\x6b\x32\x57\x37\x52\x64\x4e\x43\x6f\x64','\x57\x36\x66\x43\x70\x57','\x57\x50\x2f\x63\x55\x6d\x6f\x70','\x69\x4e\x56\x64\x49\x43\x6f\x7a\x57\x35\x4f','\x68\x53\x6b\x64\x44\x43\x6f\x57\x68\x47\x54\x4b\x57\x50\x61','\x57\x4f\x69\x42\x44\x38\x6f\x6d\x42\x47','\x76\x74\x50\x4f\x6b\x53\x6b\x78\x57\x37\x74\x64\x49\x38\x6f\x61','\x57\x51\x6c\x64\x4f\x43\x6f\x41\x57\x51\x4f\x74','\x69\x59\x62\x73\x66\x58\x37\x64\x4b\x43\x6b\x44','\x57\x4f\x70\x63\x53\x53\x6f\x69\x6e\x76\x66\x6f\x72\x30\x4b','\x7a\x63\x35\x6d\x62\x38\x6b\x49','\x57\x37\x2f\x64\x55\x58\x74\x64\x55\x71\x53','\x66\x31\x76\x78\x57\x50\x37\x63\x50\x71','\x62\x6d\x6b\x6a\x68\x53\x6b\x6c\x57\x50\x38\x50\x57\x36\x34\x76','\x66\x53\x6b\x55\x69\x43\x6b\x39\x57\x50\x69','\x79\x73\x62\x71\x61\x74\x74\x64\x54\x43\x6b\x6e\x76\x71','\x68\x38\x6b\x6c\x61\x38\x6b\x66\x57\x50\x75\x4c\x57\x36\x79\x56','\x57\x52\x33\x64\x56\x53\x6f\x69\x71\x38\x6f\x39','\x69\x77\x39\x77\x6e\x6d\x6b\x49\x77\x58\x7a\x54','\x57\x35\x61\x76\x7a\x6d\x6f\x42\x41\x63\x61\x64','\x57\x36\x61\x72\x76\x72\x68\x63\x49\x30\x37\x64\x55\x53\x6f\x53','\x57\x50\x56\x63\x4e\x31\x75\x76\x57\x37\x6d','\x57\x36\x78\x64\x56\x64\x64\x63\x55\x6d\x6b\x38','\x44\x32\x65\x37\x77\x57','\x57\x34\x47\x73\x44\x6d\x6b\x68\x62\x47','\x75\x53\x6b\x78\x74\x43\x6f\x73\x57\x36\x4e\x64\x53\x53\x6f\x5a','\x57\x36\x4e\x64\x4e\x4a\x2f\x64\x4b\x59\x38','\x57\x37\x35\x75\x6e\x6d\x6b\x58\x67\x6d\x6b\x6b\x63\x6d\x6f\x74','\x57\x36\x44\x66\x65\x43\x6b\x50\x6e\x57','\x78\x58\x50\x49\x57\x50\x33\x63\x53\x57','\x57\x4f\x5a\x64\x4d\x43\x6f\x6b\x57\x34\x78\x64\x4b\x77\x76\x34\x57\x34\x38','\x62\x6d\x6b\x45\x65\x38\x6b\x5a\x57\x50\x65\x49\x57\x36\x57\x2f','\x57\x51\x68\x63\x47\x68\x75\x33\x57\x34\x62\x53\x62\x4e\x34','\x45\x6d\x6f\x71\x45\x53\x6b\x70\x71\x4b\x78\x64\x47\x38\x6b\x4b','\x70\x38\x6f\x48\x57\x37\x56\x63\x50\x43\x6b\x69\x6d\x6d\x6b\x6f','\x61\x6d\x6b\x6f\x62\x6d\x6b\x65','\x57\x34\x66\x37\x6d\x6d\x6b\x57\x6d\x61','\x64\x4b\x31\x49\x63\x47','\x72\x49\x33\x63\x53\x62\x39\x73\x42\x73\x33\x63\x56\x71','\x78\x63\x6c\x63\x55\x62\x76\x71\x44\x77\x70\x63\x56\x61','\x57\x36\x79\x66\x74\x58\x33\x64\x4e\x31\x42\x64\x48\x38\x6f\x48','\x6e\x6d\x6f\x38\x57\x37\x5a\x64\x51\x43\x6b\x75\x6e\x53\x6b\x7a\x45\x71','\x57\x36\x44\x2f\x57\x37\x68\x64\x50\x53\x6b\x4a\x57\x36\x42\x64\x56\x61','\x57\x35\x4a\x64\x51\x59\x64\x64\x54\x62\x79','\x79\x74\x31\x39\x64\x61\x6c\x64\x4f\x6d\x6b\x61\x45\x57','\x70\x6d\x6b\x73\x69\x38\x6f\x43\x65\x57\x4e\x64\x51\x6d\x6b\x76\x6a\x38\x6b\x37\x57\x34\x46\x63\x4a\x57','\x57\x50\x43\x33\x57\x37\x53\x35\x57\x50\x65\x74\x46\x5a\x53','\x57\x36\x6c\x64\x4e\x64\x6a\x54\x57\x51\x30\x4c\x75\x31\x4b\x68\x57\x52\x6c\x63\x4b\x63\x78\x63\x4d\x47','\x7a\x53\x6f\x66\x57\x51\x4f\x2b\x6f\x43\x6b\x55\x6e\x66\x53','\x57\x36\x42\x63\x4a\x74\x50\x79\x65\x47\x79','\x57\x52\x71\x6f\x57\x51\x31\x69\x6c\x53\x6f\x6b','\x46\x43\x6f\x46\x57\x52\x57\x38\x6a\x43\x6b\x2b\x6f\x65\x30','\x57\x36\x65\x68\x77\x62\x33\x63\x4a\x65\x74\x64\x54\x53\x6f\x31','\x57\x34\x54\x2f\x57\x36\x4a\x64\x48\x53\x6b\x39','\x62\x75\x39\x4b\x61\x53\x6f\x59\x42\x48\x53\x6b','\x57\x36\x2f\x64\x53\x48\x5a\x64\x4b\x57','\x57\x35\x6d\x4a\x76\x6d\x6b\x4c\x69\x71','\x57\x50\x33\x63\x4d\x53\x6f\x62\x66\x78\x53','\x67\x43\x6b\x62\x6d\x6d\x6b\x37\x57\x50\x4f','\x66\x38\x6f\x48\x6e\x6d\x6f\x73\x57\x36\x43','\x6e\x4d\x66\x58\x6a\x43\x6b\x33\x78\x71\x50\x5a','\x6c\x38\x6b\x69\x61\x53\x6b\x6c\x57\x50\x38\x50\x57\x36\x38\x2b','\x57\x52\x5a\x64\x53\x38\x6f\x50\x73\x38\x6f\x48','\x6b\x4d\x58\x76\x71\x38\x6f\x44','\x68\x78\x31\x68\x70\x43\x6b\x4a\x41\x57\x58\x58','\x46\x62\x58\x76\x65\x73\x57','\x6c\x53\x6f\x4e\x61\x6d\x6b\x50\x6d\x71','\x74\x53\x6f\x4a\x74\x72\x62\x79','\x6d\x6d\x6f\x7a\x70\x38\x6f\x56\x57\x35\x52\x64\x56\x68\x30\x74','\x57\x52\x71\x45\x57\x51\x39\x7a\x6b\x6d\x6f\x72\x42\x63\x34','\x63\x6d\x6f\x48\x61\x43\x6f\x4d\x6e\x71','\x77\x77\x68\x64\x54\x4c\x69\x6e\x41\x5a\x53','\x57\x36\x68\x63\x49\x59\x66\x77\x67\x57\x72\x7a\x6f\x57','\x57\x52\x54\x79\x41\x43\x6b\x48\x6c\x6d\x6b\x6c\x79\x6d\x6f\x61','\x57\x52\x6d\x6f\x74\x43\x6f\x7a\x57\x36\x38','\x62\x53\x6f\x79\x6e\x53\x6f\x46\x57\x35\x30','\x64\x57\x30\x64\x64\x77\x47','\x57\x4f\x78\x64\x54\x6d\x6b\x51\x57\x34\x4a\x63\x52\x47','\x71\x53\x6b\x73\x74\x38\x6f\x4a\x57\x36\x74\x64\x53\x43\x6f\x56\x62\x47','\x57\x51\x4f\x68\x73\x38\x6f\x4f\x57\x36\x2f\x64\x4b\x61','\x57\x37\x6a\x4f\x43\x38\x6b\x4a\x63\x61','\x6c\x68\x79\x6b\x62\x43\x6f\x6e\x57\x52\x37\x64\x48\x53\x6b\x50','\x6c\x59\x76\x71\x63\x58\x2f\x64\x51\x6d\x6b\x6c\x73\x57','\x43\x57\x66\x79\x57\x52\x64\x63\x51\x57','\x57\x52\x4a\x63\x48\x43\x6f\x5a\x66\x68\x43','\x66\x5a\x78\x64\x55\x47\x46\x64\x53\x38\x6b\x4a\x57\x52\x31\x37','\x57\x37\x42\x64\x51\x4c\x35\x62\x6c\x6d\x6f\x4c\x6a\x61','\x57\x52\x74\x63\x50\x53\x6f\x6a','\x6b\x32\x39\x68\x57\x51\x52\x63\x4e\x53\x6f\x65\x57\x36\x43','\x73\x49\x52\x64\x55\x71','\x57\x51\x6e\x2f\x57\x51\x46\x63\x53\x63\x37\x63\x48\x53\x6b\x63\x57\x36\x38','\x44\x64\x4c\x6c\x65\x62\x69','\x77\x47\x6e\x49\x57\x52\x52\x63\x4f\x61','\x57\x51\x4e\x64\x48\x53\x6f\x38\x57\x51\x4f\x67\x63\x30\x61\x78','\x6e\x32\x65\x75\x64\x53\x6f\x61\x57\x51\x65','\x57\x50\x70\x64\x52\x53\x6b\x78\x6c\x53\x6f\x74\x57\x51\x47\x43\x57\x4f\x57','\x57\x35\x31\x51\x57\x52\x47\x64\x57\x52\x69\x52\x76\x4a\x79','\x57\x37\x39\x73\x6b\x38\x6b\x53\x69\x53\x6b\x41','\x57\x34\x75\x70\x61\x32\x78\x64\x52\x71','\x57\x52\x4a\x64\x50\x38\x6f\x53\x57\x52\x61\x63\x68\x65\x69','\x57\x52\x42\x64\x55\x43\x6f\x6e\x77\x38\x6f\x54','\x57\x34\x71\x53\x7a\x53\x6b\x4c\x6c\x47','\x57\x35\x7a\x74\x77\x43\x6b\x56\x6c\x57','\x57\x35\x38\x38\x57\x36\x70\x64\x51\x71\x2f\x63\x47\x53\x6b\x37\x57\x36\x64\x64\x55\x58\x53','\x73\x49\x33\x64\x4c\x49\x47\x71\x71\x73\x38\x36','\x79\x33\x38\x32\x78\x53\x6b\x4a','\x57\x4f\x4a\x64\x51\x6d\x6b\x38\x57\x35\x4a\x63\x51\x61','\x63\x43\x6f\x57\x6a\x53\x6f\x4c\x65\x71\x47\x51\x57\x50\x30','\x57\x52\x5a\x64\x50\x53\x6f\x32\x57\x37\x52\x64\x4f\x61','\x57\x50\x62\x6c\x42\x43\x6b\x4a\x76\x47\x78\x64\x4e\x68\x4b','\x7a\x72\x6a\x6d\x57\x52\x52\x63\x52\x43\x6f\x76\x57\x35\x78\x63\x48\x47','\x75\x78\x38\x47\x73\x6d\x6b\x4f','\x61\x38\x6f\x76\x70\x43\x6b\x56\x6e\x33\x37\x64\x48\x6d\x6f\x6f','\x57\x4f\x2f\x64\x54\x38\x6f\x5a\x57\x36\x42\x64\x48\x71','\x6a\x75\x37\x64\x48\x43\x6f\x6c\x57\x34\x37\x64\x52\x65\x53','\x78\x4a\x74\x63\x4e\x57\x4c\x49','\x45\x64\x66\x56\x6b\x38\x6b\x62\x57\x36\x70\x64\x4b\x43\x6f\x61','\x7a\x77\x65\x55\x78\x53\x6b\x36\x57\x51\x69\x55\x57\x35\x69','\x67\x59\x56\x64\x55\x61\x6c\x64\x54\x6d\x6b\x79\x57\x52\x72\x4e','\x78\x63\x52\x63\x55\x72\x35\x66\x79\x63\x4f','\x57\x4f\x6d\x38\x57\x51\x4c\x30\x62\x61','\x65\x38\x6f\x6a\x57\x34\x52\x63\x4d\x38\x6b\x45','\x57\x37\x6c\x64\x56\x74\x4a\x63\x56\x43\x6b\x39\x6d\x6d\x6f\x53\x57\x4f\x6d','\x57\x51\x4f\x64\x74\x43\x6b\x65\x62\x53\x6b\x72\x46\x53\x6f\x37','\x65\x4e\x56\x64\x54\x48\x56\x64\x53\x53\x6b\x55\x57\x52\x76\x39','\x57\x51\x78\x64\x55\x4b\x54\x6f\x6e\x57','\x57\x36\x6a\x73\x6d\x43\x6b\x37\x6d\x38\x6b\x78\x63\x6d\x6f\x72','\x6c\x73\x6a\x72\x63\x6d\x6f\x44\x57\x50\x37\x63\x53\x38\x6f\x61\x44\x71\x54\x5a\x46\x32\x65','\x57\x50\x65\x61\x57\x50\x54\x53\x68\x57','\x57\x35\x61\x41\x6c\x65\x70\x64\x53\x6d\x6f\x6e\x57\x34\x42\x64\x48\x57','\x65\x38\x6b\x75\x70\x43\x6b\x4c\x43\x68\x74\x64\x48\x43\x6f\x75','\x57\x50\x46\x64\x4b\x43\x6b\x4b\x57\x36\x2f\x63\x4c\x38\x6b\x30\x57\x4f\x30\x64','\x57\x35\x6e\x77\x42\x43\x6b\x4d\x65\x47','\x57\x51\x33\x64\x4e\x43\x6b\x52\x57\x34\x52\x63\x4c\x57','\x57\x51\x6a\x6c\x57\x52\x39\x76\x6f\x6d\x6f\x71\x46\x67\x53','\x66\x43\x6f\x67\x6d\x53\x6f\x2b\x61\x47','\x57\x51\x52\x64\x51\x38\x6f\x6c\x76\x38\x6f\x36\x57\x35\x38','\x57\x35\x61\x41\x70\x61','\x61\x43\x6b\x49\x6c\x43\x6b\x6e\x57\x50\x4b','\x74\x4a\x44\x55\x67\x43\x6b\x4a','\x44\x32\x6c\x64\x53\x4b\x6d\x32','\x57\x35\x54\x42\x6c\x38\x6b\x44\x70\x71','\x71\x4d\x64\x64\x4d\x66\x69\x6d\x6a\x4d\x6c\x64\x49\x71','\x57\x4f\x6d\x38\x7a\x38\x6f\x6c\x41\x71','\x57\x51\x6c\x64\x4f\x66\x35\x63\x65\x43\x6f\x55\x41\x6d\x6f\x6b','\x57\x35\x76\x50\x74\x53\x6b\x6e\x66\x4d\x4f\x38\x57\x50\x69','\x57\x51\x71\x6b\x57\x52\x58\x42\x6c\x38\x6f\x6c\x43\x32\x43','\x6f\x6d\x6f\x38\x57\x36\x70\x63\x51\x6d\x6b\x72\x6b\x38\x6b\x65\x41\x47','\x42\x78\x4b\x77\x76\x6d\x6b\x58\x57\x34\x68\x64\x50\x43\x6f\x35','\x64\x73\x2f\x64\x55\x62\x4e\x64\x53\x53\x6b\x30\x57\x4f\x39\x48','\x45\x4c\x30\x49\x57\x37\x61\x5a\x57\x51\x38\x4c','\x57\x51\x70\x63\x50\x65\x4b\x75\x57\x34\x38','\x7a\x38\x6f\x6b\x57\x52\x4f','\x57\x52\x4b\x36\x44\x43\x6f\x69\x41\x61\x71\x2f','\x57\x36\x2f\x64\x54\x4a\x5a\x64\x47\x58\x44\x54\x57\x34\x4a\x63\x48\x61','\x78\x63\x7a\x4c\x6b\x59\x38','\x57\x4f\x52\x64\x55\x43\x6b\x41\x69\x6d\x6f\x62\x57\x51\x61','\x6f\x32\x44\x75\x57\x51\x68\x63\x4d\x6d\x6f\x68\x57\x36\x42\x63\x55\x71','\x57\x51\x52\x64\x55\x43\x6f\x76\x77\x38\x6f\x30\x57\x34\x6c\x63\x4f\x4d\x53','\x57\x52\x48\x32\x72\x43\x6b\x78\x71\x71','\x63\x65\x6c\x64\x4b\x6d\x6f\x67\x57\x37\x74\x64\x4f\x31\x50\x71','\x57\x35\x48\x51\x57\x34\x78\x64\x53\x43\x6b\x4f','\x57\x37\x7a\x31\x57\x36\x4a\x64\x52\x53\x6b\x32\x57\x37\x46\x64\x56\x43\x6f\x31','\x6e\x6d\x6f\x50\x57\x36\x33\x63\x4f\x43\x6b\x6f','\x69\x6d\x6f\x7a\x70\x38\x6f\x39\x57\x34\x6c\x64\x50\x33\x57\x6a','\x57\x51\x57\x4a\x41\x53\x6f\x34\x57\x35\x38','\x57\x34\x6c\x64\x52\x53\x6b\x6d\x7a\x47\x47\x70\x65\x67\x79\x56\x73\x4c\x6c\x64\x49\x59\x34','\x73\x6d\x6b\x6e\x41\x38\x6f\x6f\x57\x37\x52\x64\x56\x38\x6f\x35','\x57\x34\x62\x49\x57\x36\x4f\x77\x57\x52\x79\x51\x71\x68\x4b','\x57\x52\x78\x63\x56\x6d\x6f\x6b\x65\x71','\x73\x4a\x62\x65\x61\x47\x37\x64\x50\x6d\x6b\x43','\x57\x52\x6a\x41\x57\x4f\x4e\x63\x48\x71','\x75\x58\x58\x69\x66\x47\x4f','\x57\x50\x64\x63\x47\x4d\x69\x6c\x57\x37\x43','\x6b\x43\x6f\x64\x70\x53\x6f\x74\x57\x36\x6d','\x63\x62\x43\x57\x68\x47','\x64\x62\x65\x66\x6d\x33\x70\x63\x4a\x6d\x6b\x49','\x57\x34\x50\x37\x75\x53\x6b\x6d\x6f\x32\x4b\x33\x57\x4f\x6d','\x45\x53\x6f\x6c\x7a\x53\x6b\x66\x46\x4b\x78\x64\x48\x43\x6b\x2b','\x72\x6d\x6b\x67\x77\x53\x6f\x7a\x57\x36\x56\x64\x51\x53\x6f\x4c\x65\x47','\x77\x47\x7a\x76\x70\x4a\x65','\x57\x35\x44\x51\x6a\x38\x6b\x46\x70\x31\x35\x37\x43\x77\x4e\x63\x54\x58\x50\x74\x57\x50\x47','\x57\x4f\x76\x64\x6b\x66\x42\x64\x4b\x38\x6f\x31\x57\x36\x37\x64\x49\x47','\x57\x50\x69\x57\x71\x6d\x6f\x41\x46\x57\x34\x4c\x71\x57','\x65\x38\x6b\x51\x61\x6d\x6b\x6c\x57\x4f\x65','\x57\x36\x43\x78\x67\x58\x4e\x63\x4b\x76\x70\x63\x49\x43\x6f\x32','\x57\x50\x58\x4a\x57\x51\x64\x63\x55\x47\x78\x63\x47\x38\x6b\x69\x57\x37\x43','\x76\x43\x6b\x44\x79\x43\x6b\x4d\x71\x31\x58\x33\x57\x52\x6d\x52\x57\x35\x4a\x64\x4c\x75\x6a\x56','\x57\x52\x52\x63\x48\x4d\x48\x38\x57\x37\x62\x53\x65\x32\x6d','\x79\x49\x7a\x70\x57\x52\x74\x63\x49\x38\x6f\x62\x57\x37\x4e\x63\x51\x71','\x57\x37\x4f\x72\x76\x48\x52\x63\x4d\x4b\x75','\x57\x37\x70\x64\x52\x71\x78\x64\x4e\x57\x35\x4c\x57\x34\x42\x63\x49\x61','\x79\x4d\x4f\x50\x77\x6d\x6b\x37\x57\x52\x66\x52\x57\x36\x71','\x46\x4a\x39\x2f\x6f\x43\x6b\x78\x57\x36\x6d','\x57\x50\x7a\x76\x45\x53\x6b\x4d\x74\x47\x4a\x64\x47\x32\x38','\x70\x78\x72\x62\x57\x51\x52\x63\x4e\x6d\x6f\x6e','\x57\x50\x62\x4f\x46\x53\x6b\x4e\x74\x61','\x6f\x43\x6b\x41\x6a\x43\x6f\x43\x7a\x4d\x4e\x64\x56\x53\x6b\x4c\x66\x43\x6b\x33','\x68\x53\x6f\x64\x6a\x43\x6f\x39\x57\x35\x52\x64\x50\x32\x43\x45','\x69\x33\x50\x6c\x70\x53\x6b\x52','\x42\x63\x4a\x64\x4f\x73\x38\x4f','\x43\x49\x50\x4f\x6c\x6d\x6b\x43\x57\x37\x42\x64\x4b\x38\x6b\x66','\x57\x37\x42\x64\x50\x53\x6f\x6e\x6f\x4b\x71\x33\x57\x50\x78\x64\x4a\x57','\x57\x37\x62\x55\x57\x36\x42\x64\x50\x53\x6b\x4a','\x6d\x67\x44\x72\x6f\x53\x6b\x41\x77\x61\x66\x49','\x42\x75\x57\x48\x57\x37\x43\x64\x57\x52\x65\x4c\x68\x61','\x57\x37\x4f\x73\x74\x4a\x33\x63\x51\x47','\x57\x52\x74\x63\x53\x6d\x6f\x6f\x69\x76\x57','\x74\x6d\x6b\x46\x77\x47','\x57\x52\x57\x47\x76\x6d\x6b\x66\x62\x53\x6b\x4b\x77\x61','\x79\x4e\x76\x68\x65\x47\x74\x64\x51\x38\x6b\x44\x75\x61','\x42\x47\x46\x64\x4c\x74\x34\x75','\x74\x4a\x70\x63\x55\x31\x62\x69\x79\x5a\x52\x63\x55\x71','\x57\x52\x68\x64\x51\x6d\x6f\x74\x76\x43\x6f\x38\x57\x35\x38','\x57\x4f\x38\x45\x76\x53\x6f\x63\x57\x36\x69','\x69\x43\x6f\x46\x69\x53\x6f\x33\x57\x37\x68\x64\x4f\x4d\x30\x67','\x57\x34\x4c\x4b\x57\x37\x79\x77\x57\x36\x30','\x57\x4f\x69\x54\x45\x53\x6f\x69\x45\x73\x69\x4c\x72\x71','\x77\x74\x7a\x43\x64\x6d\x6b\x52','\x6e\x53\x6b\x49\x61\x6d\x6b\x54\x57\x52\x57','\x6f\x47\x30\x30\x6d\x77\x37\x63\x4e\x38\x6b\x56\x44\x61','\x63\x43\x6f\x7a\x6f\x43\x6b\x34\x70\x32\x46\x64\x4b\x38\x6b\x78','\x57\x35\x72\x4b\x57\x52\x47\x67\x57\x52\x4b\x39\x71\x63\x53','\x57\x36\x47\x77\x70\x31\x37\x64\x53\x61','\x57\x34\x75\x4f\x73\x38\x6b\x69\x6d\x47','\x57\x4f\x4f\x73\x41\x53\x6f\x52\x72\x47','\x77\x78\x2f\x64\x48\x31\x69\x71\x46\x63\x46\x63\x47\x61','\x44\x78\x43\x51\x77\x38\x6b\x34\x57\x52\x76\x52\x57\x50\x43','\x57\x35\x6c\x64\x53\x62\x74\x64\x4f\x62\x65','\x57\x37\x66\x4f\x57\x36\x33\x64\x56\x38\x6b\x30\x57\x37\x79','\x57\x34\x4e\x64\x4b\x38\x6f\x46\x57\x34\x74\x64\x48\x33\x6a\x34\x57\x4f\x53','\x57\x37\x33\x63\x55\x43\x6f\x64\x57\x4f\x38\x4f\x66\x31\x4b\x49','\x57\x37\x5a\x63\x4c\x49\x79','\x57\x51\x47\x43\x57\x51\x4c\x69\x42\x43\x6f\x65\x46\x4d\x43','\x57\x51\x50\x44\x57\x50\x6c\x63\x4a\x43\x6b\x41\x57\x50\x53\x48\x65\x71','\x57\x35\x4b\x6e\x6f\x33\x64\x64\x55\x53\x6f\x6e\x57\x35\x65','\x64\x53\x6f\x62\x6f\x38\x6f\x2b\x62\x47\x34\x57\x57\x50\x4b','\x57\x50\x4e\x63\x53\x53\x6f\x57\x67\x33\x47','\x57\x52\x66\x49\x57\x52\x52\x63\x54\x4a\x6c\x63\x53\x6d\x6b\x46\x57\x36\x47','\x42\x59\x7a\x35\x6f\x38\x6b\x61\x57\x37\x4e\x64\x4e\x53\x6f\x6a','\x45\x43\x6f\x76\x7a\x71','\x68\x4b\x72\x30\x61\x43\x6f\x52\x46\x62\x53\x51','\x57\x51\x56\x64\x49\x6d\x6f\x62\x57\x51\x71\x6a','\x69\x77\x30\x49\x62\x43\x6f\x66\x57\x50\x5a\x64\x48\x6d\x6b\x34','\x57\x34\x48\x54\x7a\x43\x6b\x34\x6d\x71','\x63\x38\x6f\x41\x6a\x53\x6b\x39\x70\x68\x74\x64\x4b\x53\x6f\x71','\x57\x52\x2f\x64\x4f\x53\x6f\x55\x57\x52\x61\x67\x65\x31\x4f','\x57\x35\x30\x7a\x6c\x4e\x47','\x57\x36\x66\x66\x6c\x38\x6b\x76\x65\x57','\x57\x4f\x44\x35\x57\x50\x56\x63\x55\x64\x33\x63\x48\x38\x6b\x2f\x57\x36\x47','\x45\x64\x66\x37\x6f\x38\x6b\x46\x57\x37\x6c\x64\x4b\x43\x6f\x72','\x45\x4b\x4b\x52\x57\x52\x57\x56\x57\x52\x34\x48\x62\x61','\x57\x51\x54\x6c\x57\x51\x39\x76\x6b\x43\x6f\x68\x46\x77\x38','\x57\x51\x75\x76\x77\x6d\x6f\x55\x57\x34\x75','\x57\x52\x71\x63\x57\x51\x54\x75\x6c\x6d\x6f\x6f\x42\x61','\x42\x59\x7a\x39\x6f\x38\x6b\x72\x57\x36\x70\x64\x4d\x53\x6f\x62','\x57\x35\x75\x67\x64\x78\x78\x64\x55\x38\x6f\x77\x57\x34\x64\x64\x4a\x71','\x57\x35\x78\x63\x4b\x43\x6f\x57\x57\x51\x78\x63\x52\x43\x6b\x6c\x57\x52\x4b\x73\x57\x52\x33\x64\x48\x47','\x57\x36\x76\x74\x6a\x6d\x6b\x32\x6d\x53\x6b\x41\x61\x53\x6f\x6d','\x41\x74\x39\x35\x6f\x38\x6b\x76\x57\x37\x4a\x64\x4a\x43\x6f\x43','\x45\x59\x62\x70\x62\x47\x37\x64\x54\x71','\x62\x75\x39\x50\x61\x43\x6f\x58\x41\x57\x4f\x43','\x79\x43\x6f\x6d\x45\x38\x6b\x62\x76\x31\x64\x64\x4e\x53\x6b\x33','\x64\x62\x65\x33\x6e\x67\x74\x63\x53\x53\x6b\x36\x42\x71','\x57\x50\x68\x64\x48\x53\x6b\x4d\x57\x37\x4a\x63\x4b\x6d\x6b\x30\x57\x37\x4f\x41','\x41\x38\x6b\x5a\x74\x53\x6f\x45\x57\x34\x30','\x70\x38\x6f\x76\x6c\x38\x6b\x2b\x6e\x77\x70\x64\x51\x43\x6f\x66','\x57\x52\x47\x6e\x43\x43\x6f\x4f\x44\x43\x6f\x67\x6a\x43\x6f\x34\x74\x77\x76\x4c\x44\x57','\x68\x59\x33\x64\x54\x47\x6c\x64\x4f\x53\x6f\x4e\x57\x52\x66\x4d','\x57\x37\x74\x64\x47\x58\x74\x63\x48\x43\x6b\x55','\x66\x30\x6a\x75\x63\x6d\x6b\x57','\x57\x37\x52\x63\x4a\x49\x7a\x77\x64\x47\x62\x70\x61\x71','\x57\x50\x54\x4b\x57\x51\x64\x63\x50\x63\x52\x63\x4e\x38\x6b\x63\x57\x37\x6d','\x57\x50\x6d\x59\x74\x6d\x6f\x41\x42\x62\x75\x53\x71\x71','\x73\x6d\x6b\x71\x72\x6d\x6f\x74\x57\x37\x37\x64\x56\x38\x6f\x30\x65\x57','\x65\x31\x68\x64\x4c\x6d\x6f\x78\x57\x35\x69','\x67\x33\x6a\x64\x63\x43\x6f\x51','\x44\x73\x6a\x44\x57\x52\x4a\x63\x4f\x61','\x57\x4f\x4e\x64\x53\x38\x6b\x6d\x6a\x6d\x6f\x76\x57\x51\x65\x68\x57\x51\x4b','\x46\x64\x50\x55\x61\x63\x69','\x57\x37\x30\x64\x75\x31\x78\x63\x4a\x76\x37\x64\x4d\x53\x6f\x55','\x67\x43\x6f\x57\x65\x53\x6f\x66\x57\x35\x38','\x57\x52\x75\x63\x57\x52\x39\x72\x65\x53\x6f\x77\x43\x67\x69','\x57\x34\x37\x64\x55\x72\x68\x63\x50\x43\x6b\x74','\x68\x4b\x35\x4c\x64\x38\x6f\x4c\x79\x58\x69\x71','\x57\x4f\x44\x4b\x57\x52\x33\x63\x56\x49\x5a\x63\x4a\x53\x6b\x7a\x57\x36\x71','\x57\x4f\x64\x63\x4d\x30\x34\x57\x57\x35\x71','\x57\x4f\x42\x63\x48\x6d\x6f\x77\x62\x78\x69','\x44\x32\x75\x53\x76\x43\x6b\x38','\x57\x51\x4e\x64\x53\x38\x6f\x35\x57\x52\x53\x65\x63\x30\x57\x43','\x6c\x61\x6e\x79\x57\x52\x64\x63\x52\x43\x6f\x64\x57\x50\x42\x63\x4a\x71','\x57\x52\x71\x64\x78\x53\x6f\x50\x57\x37\x46\x64\x55\x4b\x71\x50','\x66\x6d\x6b\x51\x61\x6d\x6b\x70\x57\x50\x43','\x57\x4f\x78\x64\x48\x6d\x6f\x75\x57\x34\x46\x64\x48\x4e\x4b','\x6e\x38\x6f\x57\x57\x36\x75','\x6d\x71\x4f\x48\x57\x37\x38\x30\x57\x52\x47\x54\x63\x57','\x70\x78\x35\x64\x57\x51\x68\x63\x4a\x38\x6f\x43\x57\x37\x33\x63\x52\x57','\x72\x53\x6b\x42\x72\x6d\x6f\x7a\x57\x52\x69','\x57\x52\x4c\x41\x67\x38\x6f\x63\x75\x6d\x6f\x77\x69\x6d\x6f\x75\x57\x50\x5a\x64\x49\x4d\x64\x63\x51\x73\x4f','\x45\x38\x6f\x6c\x43\x53\x6b\x61\x71\x66\x33\x64\x4d\x71','\x66\x6d\x6f\x6e\x6f\x43\x6b\x56','\x57\x50\x56\x64\x48\x6d\x6f\x6b\x57\x34\x68\x64\x4d\x32\x6d','\x45\x4c\x6d\x39\x57\x37\x61\x50\x57\x51\x4b\x50\x62\x71','\x57\x50\x5a\x64\x4c\x43\x6f\x42\x57\x35\x74\x64\x4d\x33\x35\x5a','\x57\x37\x70\x64\x52\x71\x68\x64\x4d\x72\x66\x34\x57\x34\x4e\x63\x47\x57','\x57\x51\x68\x63\x56\x38\x6f\x37\x64\x77\x6d','\x57\x4f\x4c\x37\x57\x50\x46\x63\x53\x53\x6f\x47','\x57\x50\x50\x6a\x42\x38\x6b\x49\x75\x31\x68\x63\x49\x61','\x6b\x6d\x6f\x38\x57\x37\x56\x63\x51\x6d\x6b\x6f\x6d\x61','\x6c\x78\x76\x66\x57\x52\x42\x63\x4f\x6d\x6f\x62\x57\x37\x4e\x63\x53\x61','\x6e\x6d\x6b\x6e\x6a\x53\x6b\x55\x57\x4f\x30','\x42\x6d\x6f\x65\x57\x52\x38\x33\x70\x53\x6f\x51\x70\x30\x30','\x67\x31\x56\x64\x4b\x38\x6f\x62\x57\x35\x69','\x57\x4f\x52\x64\x4f\x38\x6b\x4d\x57\x34\x78\x63\x51\x47','\x6b\x66\x6a\x5a\x57\x52\x6c\x63\x55\x71','\x57\x51\x5a\x63\x51\x6d\x6f\x6d\x6b\x76\x6d\x49','\x57\x51\x64\x64\x4d\x53\x6f\x76\x43\x38\x6f\x69','\x57\x4f\x43\x5a\x44\x53\x6f\x6b','\x6e\x32\x4f\x49\x64\x53\x6f\x67\x57\x52\x74\x64\x47\x38\x6b\x74','\x6c\x43\x6f\x59\x70\x53\x6b\x47\x6a\x57','\x6e\x77\x44\x68\x57\x51\x52\x63\x4d\x57','\x57\x34\x74\x64\x4a\x43\x6b\x53\x57\x37\x52\x63\x49\x38\x6f\x51\x57\x51\x47\x64','\x57\x35\x2f\x63\x49\x64\x50\x7a\x62\x47','\x57\x35\x68\x64\x4d\x57\x42\x64\x4e\x62\x71','\x71\x48\x70\x64\x4c\x61\x57\x6e','\x57\x4f\x44\x35\x57\x50\x78\x63\x55\x64\x74\x63\x48\x53\x6b\x7a\x57\x36\x71','\x57\x50\x37\x63\x55\x6d\x6f\x69\x64\x31\x72\x46\x76\x4b\x47','\x57\x50\x71\x58\x75\x38\x6b\x45\x66\x4d\x4f\x53\x57\x50\x69','\x57\x36\x66\x75\x6b\x71','\x63\x77\x38\x38\x6f\x43\x6f\x77','\x57\x51\x68\x64\x54\x6d\x6b\x76\x70\x6d\x6f\x65','\x72\x4a\x70\x64\x53\x64\x30\x66\x44\x59\x47\x6f','\x7a\x57\x72\x4c\x57\x52\x4a\x63\x4c\x71','\x61\x62\x4f\x30\x6c\x77\x37\x63\x4e\x38\x6b\x2b\x78\x47','\x7a\x43\x6f\x45\x57\x4f\x69\x6c\x61\x47','\x57\x4f\x42\x64\x55\x38\x6f\x39\x57\x52\x75\x54','\x57\x35\x4f\x33\x43\x48\x56\x63\x4e\x47'];_0x4ea3=function(){return _0xebcd30;};return _0x4ea3();}function _0x4bb275(_0x57ecec){const _0x1a40bf=_0x5283b3,_0x348b3d={'\x6a\x45\x55\x75\x51':'\x37\x7c\x33\x7c\x34\x7c\x38\x7c'+'\x32\x7c\x36\x7c\x30\x7c\x35\x7c'+'\x31','\x6e\x70\x41\x59\x50':function(_0x10801f,_0xf2c77e){return _0x10801f!==_0xf2c77e;},'\x4d\x46\x77\x6a\x77':_0x1a40bf(0x25b,'\x2a\x66\x6c\x38'),'\x4a\x77\x77\x50\x77':'\x4d\x75\x74\x61\x74\x69\x6f\x6e','\x58\x50\x6a\x74\x71':function(_0x16c68f,_0x240bdf){return _0x16c68f!==_0x240bdf;},'\x43\x59\x58\x4c\x78':'\x6f\x62\x6a\x65\x63\x74','\x4a\x71\x72\x68\x7a':function(_0x16d448,_0x298b39){return _0x16d448(_0x298b39);}},_0x31daeb=_0x348b3d[_0x1a40bf(0x2cf,'\x65\x25\x52\x26')][_0x1a40bf(0x293,'\x42\x50\x73\x74')]('\x7c');let _0x559ed5=-0x1869*0x1+-0x1ac7+0x138*0x2a;while(!![]){switch(_0x31daeb[_0x559ed5++]){case'\x30':if(!_0x57ecec[_0x1a40bf(0x329,'\x44\x6f\x37\x68')+_0x1a40bf(0x29c,'\x62\x58\x78\x48')]||_0x348b3d[_0x1a40bf(0x234,'\x44\x6f\x37\x68')](typeof _0x57ecec['\x65\x78\x70\x65\x63\x74\x65\x64'+_0x1a40bf(0x2c3,'\x49\x45\x5b\x4c')],_0x348b3d[_0x1a40bf(0x24e,'\x71\x4d\x62\x34')]))return![];continue;case'\x31':return!![];case'\x32':if(!Array[_0x1a40bf(0x271,'\x55\x5b\x47\x30')](_0x57ecec[_0x1a40bf(0x2cc,'\x4a\x25\x41\x23')+_0x1a40bf(0x320,'\x38\x39\x37\x4f')]))return![];continue;case'\x33':if(_0x348b3d['\x6e\x70\x41\x59\x50'](_0x57ecec[_0x1a40bf(0x1b5,'\x25\x62\x42\x5d')],_0x348b3d[_0x1a40bf(0x1d2,'\x4d\x64\x62\x50')]))return![];continue;case'\x34':if(!_0x57ecec['\x69\x64']||_0x348b3d[_0x1a40bf(0x22d,'\x62\x58\x78\x48')](typeof _0x57ecec['\x69\x64'],_0x348b3d[_0x1a40bf(0x1c8,'\x25\x62\x42\x5d')]))return![];continue;case'\x35':if(!_0x57ecec[_0x1a40bf(0x2f6,'\x4e\x6d\x7a\x6d')+'\x65\x6c']||!_0x3c8b88[_0x1a40bf(0x27f,'\x30\x53\x65\x55')](String(_0x57ecec[_0x1a40bf(0x2be,'\x34\x63\x58\x5a')+'\x65\x6c'])))return![];continue;case'\x36':if(!_0x57ecec[_0x1a40bf(0x1c4,'\x28\x4a\x70\x48')]||_0x348b3d[_0x1a40bf(0x215,'\x30\x53\x65\x55')](typeof _0x57ecec[_0x1a40bf(0x2eb,'\x44\x6f\x37\x68')],_0x348b3d[_0x1a40bf(0x1cc,'\x4c\x5e\x4d\x68')]))return![];continue;case'\x37':if(!_0x57ecec||_0x348b3d['\x6e\x70\x41\x59\x50'](typeof _0x57ecec,_0x348b3d['\x43\x59\x58\x4c\x78']))return![];continue;case'\x38':if(!_0x57ecec[_0x1a40bf(0x20e,'\x26\x6a\x76\x4c')]||!_0x56477e['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x348b3d[_0x1a40bf(0x1cb,'\x2a\x66\x6c\x38')](String,_0x57ecec[_0x1a40bf(0x225,'\x55\x5b\x47\x30')])))return![];continue;}break;}}function _0xb91ecf(_0x59d439){const _0x2e16cc=_0x5283b3,_0xbde84a={'\x66\x4b\x4d\x73\x71':function(_0x1f32a0,_0x2c6bda){return _0x1f32a0===_0x2c6bda;},'\x4e\x6d\x65\x56\x72':_0x2e16cc(0x2b2,'\x25\x5b\x58\x75'),'\x44\x76\x4d\x6d\x66':_0x2e16cc(0x2f0,'\x26\x6a\x76\x4c'),'\x4f\x53\x77\x5a\x5a':_0x2e16cc(0x20f,'\x52\x75\x37\x53'),'\x46\x49\x6a\x72\x61':function(_0x2fbf9d){return _0x2fbf9d();},'\x4a\x4d\x64\x62\x45':function(_0x5a58f3,_0x12865d){return _0x5a58f3(_0x12865d);},'\x6e\x6a\x53\x74\x74':function(_0x5ba329,_0x4e948e){return _0x5ba329(_0x4e948e);},'\x46\x4e\x44\x57\x4c':_0x2e16cc(0x23a,'\x69\x46\x58\x63'),'\x53\x4c\x4f\x48\x6b':function(_0x3a6702,_0x45f220){return _0x3a6702===_0x45f220;},'\x69\x6f\x4c\x64\x49':_0x2e16cc(0x218,'\x7a\x7a\x35\x57')+_0x2e16cc(0x27c,'\x48\x5a\x6d\x21')+'\x6c','\x70\x4d\x4f\x48\x50':function(_0x5f1f51,_0x553768){return _0x5f1f51(_0x553768);},'\x65\x4b\x6b\x66\x4d':function(_0x5b1864,_0x3d62a3){return _0x5b1864(_0x3d62a3);},'\x42\x73\x6e\x45\x78':_0x2e16cc(0x2b3,'\x78\x33\x75\x67')},_0x26c7a4=_0x59d439&&_0xbde84a[_0x2e16cc(0x1ea,'\x2a\x66\x6c\x38')](typeof _0x59d439,_0xbde84a[_0x2e16cc(0x30e,'\x4c\x5e\x4d\x68')])?_0x59d439:{},_0x2d593e={'\x74\x79\x70\x65':_0xbde84a['\x44\x76\x4d\x6d\x66'],'\x69\x64':typeof _0x26c7a4['\x69\x64']===_0xbde84a[_0x2e16cc(0x2de,'\x48\x5a\x6d\x21')]?_0x26c7a4['\x69\x64']:_0x2e16cc(0x2d9,'\x70\x62\x2a\x39')+_0xbde84a[_0x2e16cc(0x2d6,'\x48\x5a\x6d\x21')](_0xed07bb),'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x56477e[_0x2e16cc(0x228,'\x23\x53\x58\x58')](_0xbde84a[_0x2e16cc(0x333,'\x62\x6a\x5b\x35')](String,_0x26c7a4[_0x2e16cc(0x1ee,'\x7a\x7a\x35\x57')]))?_0xbde84a[_0x2e16cc(0x231,'\x38\x39\x37\x4f')](String,_0x26c7a4[_0x2e16cc(0x23c,'\x4e\x6d\x7a\x6d')]):_0xbde84a[_0x2e16cc(0x20d,'\x65\x6a\x35\x43')],'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0xf2847(_0x26c7a4[_0x2e16cc(0x237,'\x69\x46\x58\x63')+_0x2e16cc(0x328,'\x64\x42\x6e\x6c')]),'\x74\x61\x72\x67\x65\x74':_0xbde84a['\x53\x4c\x4f\x48\x6b'](typeof _0x26c7a4[_0x2e16cc(0x2ff,'\x25\x5b\x58\x75')],_0xbde84a[_0x2e16cc(0x1bb,'\x61\x68\x4d\x4f')])?_0x26c7a4['\x74\x61\x72\x67\x65\x74']:_0xbde84a[_0x2e16cc(0x1a0,'\x48\x5a\x6d\x21')],'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':typeof _0x26c7a4[_0x2e16cc(0x2dd,'\x62\x6a\x5b\x35')+'\x5f\x65\x66\x66\x65\x63\x74']===_0xbde84a[_0x2e16cc(0x236,'\x33\x6e\x51\x72')]?_0x26c7a4[_0x2e16cc(0x1aa,'\x38\x39\x37\x4f')+_0x2e16cc(0x1fc,'\x23\x38\x4f\x6f')]:_0xbde84a[_0x2e16cc(0x2c1,'\x23\x53\x58\x58')](_0x3873bb,_0x26c7a4['\x63\x61\x74\x65\x67\x6f\x72\x79']),'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x3c8b88[_0x2e16cc(0x260,'\x2a\x41\x77\x77')](_0xbde84a['\x65\x4b\x6b\x66\x4d'](String,_0x26c7a4[_0x2e16cc(0x1e4,'\x65\x25\x52\x26')+'\x65\x6c']))?_0xbde84a[_0x2e16cc(0x21b,'\x4e\x6d\x7a\x6d')](String,_0x26c7a4[_0x2e16cc(0x2e4,'\x61\x66\x33\x6a')+'\x65\x6c']):_0xbde84a[_0x2e16cc(0x1e3,'\x4c\x5e\x4d\x68')]};return _0x2d593e;}const _0x5744c0={};_0x5744c0[_0x5283b3(0x1bc,'\x2a\x25\x32\x69')]=_0x59f8de,_0x5744c0[_0x5283b3(0x31d,'\x4d\x64\x62\x50')+_0x5283b3(0x2f1,'\x4e\x6d\x7a\x6d')]=_0x9ba87,_0x5744c0[_0x5283b3(0x292,'\x39\x53\x54\x67')+_0x5283b3(0x1b8,'\x65\x6a\x35\x43')]=_0x4bb275,_0x5744c0[_0x5283b3(0x19f,'\x23\x38\x4f\x6f')+_0x5283b3(0x287,'\x38\x39\x37\x4f')+'\x6e']=_0xb91ecf,_0x5744c0[_0x5283b3(0x323,'\x61\x66\x33\x6a')+_0x5283b3(0x2c4,'\x4c\x5e\x4d\x68')+_0x5283b3(0x27b,'\x4d\x64\x62\x50')+'\x64']=_0x57a34e,_0x5744c0[_0x5283b3(0x22a,'\x4a\x25\x41\x23')+'\x73\x6b\x50\x65\x72\x73\x6f\x6e'+_0x5283b3(0x285,'\x48\x5a\x6d\x21')]=_0x5bc3cb,_0x5744c0[_0x5283b3(0x202,'\x43\x38\x46\x63')+_0x5283b3(0x23e,'\x54\x41\x34\x37')+_0x5283b3(0x241,'\x42\x50\x73\x74')]=_0x3f68ef,module[_0x5283b3(0x254,'\x4a\x25\x41\x23')]=_0x5744c0;
1
+ const { VALID_CATEGORIES, VALID_RISK_LEVELS } = require('./schemas/protocol');
2
+
3
+ function clamp01(x) {
4
+ const n = Number(x);
5
+ if (!Number.isFinite(n)) return 0;
6
+ return Math.max(0, Math.min(1, n));
7
+ }
8
+
9
+ function nowTsMs() {
10
+ return Date.now();
11
+ }
12
+
13
+ function uniqStrings(list) {
14
+ const out = [];
15
+ const seen = new Set();
16
+ for (const x of Array.isArray(list) ? list : []) {
17
+ const s = String(x || '').trim();
18
+ if (!s) continue;
19
+ if (seen.has(s)) continue;
20
+ seen.add(s);
21
+ out.push(s);
22
+ }
23
+ return out;
24
+ }
25
+
26
+ function hasErrorishSignal(signals) {
27
+ const list = Array.isArray(signals) ? signals.map(s => String(s || '')) : [];
28
+ if (list.includes('issue_already_resolved') || list.includes('openclaw_self_healed')) return false;
29
+ const ERROR_INDICATORS = ['log_error', 'error', 'exception', 'failed', 'unstable'];
30
+ for (const sig of list) {
31
+ const s = sig.toLowerCase();
32
+ if (ERROR_INDICATORS.some(ind => s === ind)) return true;
33
+ if (s.startsWith('errsig:') || s.startsWith('errsig_norm:')) return true;
34
+ }
35
+ return false;
36
+ }
37
+
38
+ // Opportunity signals that indicate a chance to innovate (not just fix).
39
+ var OPPORTUNITY_SIGNALS = [
40
+ 'user_feature_request',
41
+ 'user_improvement_suggestion',
42
+ 'perf_bottleneck',
43
+ 'capability_gap',
44
+ 'stable_success_plateau',
45
+ 'external_opportunity',
46
+ 'recurring_error',
47
+ 'unsupported_input_type',
48
+ 'evolution_stagnation_detected',
49
+ 'repair_loop_detected',
50
+ 'force_innovation_after_repair_loop',
51
+ 'tool_bypass',
52
+ 'curriculum_target',
53
+ 'issue_already_resolved',
54
+ 'openclaw_self_healed',
55
+ 'empty_cycle_loop_detected',
56
+ ];
57
+
58
+ function hasOpportunitySignal(signals) {
59
+ var list = Array.isArray(signals) ? signals.map(function (s) { return String(s || ''); }) : [];
60
+ for (var i = 0; i < OPPORTUNITY_SIGNALS.length; i++) {
61
+ var name = OPPORTUNITY_SIGNALS[i];
62
+ if (list.includes(name)) return true;
63
+ if (list.some(function (s) { return s.startsWith(name + ':'); })) return true;
64
+ }
65
+ return false;
66
+ }
67
+
68
+ function mutationCategoryFromContext({ signals, driftEnabled }) {
69
+ if (hasErrorishSignal(signals)) return 'repair';
70
+ if (driftEnabled) return 'innovate';
71
+ // Auto-innovate: opportunity signals present and no errors
72
+ if (hasOpportunitySignal(signals)) return 'innovate';
73
+ // Explore: saturated + explicit explore signal present
74
+ var sigList = Array.isArray(signals) ? signals : [];
75
+ if (sigList.includes('explore_opportunity')) return 'explore';
76
+ // Consult strategy preset: if the configured strategy favors innovation,
77
+ // default to innovate instead of optimize when there is nothing specific to do.
78
+ try {
79
+ var strategy = require('./strategy').resolveStrategy();
80
+ if (strategy && typeof strategy.innovate === 'number' && strategy.innovate >= 0.5) return 'innovate';
81
+ } catch (_) {}
82
+ return 'optimize';
83
+ }
84
+
85
+ function expectedEffectFromCategory(category) {
86
+ const c = String(category || '');
87
+ if (c === 'repair') return 'reduce runtime errors, increase stability, and lower failure rate';
88
+ if (c === 'optimize') return 'improve success rate and reduce repeated operational cost';
89
+ if (c === 'innovate') return 'explore new strategy combinations to escape local optimum';
90
+ if (c === 'explore') return 'proactively scan internal codebase and external knowledge sources to discover new evolution opportunities';
91
+ return 'improve robustness and success probability';
92
+ }
93
+
94
+ function targetFromGene(selectedGene) {
95
+ if (selectedGene && selectedGene.id) return `gene:${String(selectedGene.id)}`;
96
+ return 'behavior:protocol';
97
+ }
98
+
99
+ function isHighRiskPersonality(p) {
100
+ // Conservative definition: low rigor or high risk_tolerance is treated as high-risk personality.
101
+ const rigor = p && Number.isFinite(Number(p.rigor)) ? Number(p.rigor) : null;
102
+ const riskTol = p && Number.isFinite(Number(p.risk_tolerance)) ? Number(p.risk_tolerance) : null;
103
+ if (rigor != null && rigor < 0.5) return true;
104
+ if (riskTol != null && riskTol > 0.6) return true;
105
+ return false;
106
+ }
107
+
108
+ function isHighRiskMutationAllowed(personalityState) {
109
+ const rigor = personalityState && Number.isFinite(Number(personalityState.rigor)) ? Number(personalityState.rigor) : 0;
110
+ const riskTol =
111
+ personalityState && Number.isFinite(Number(personalityState.risk_tolerance))
112
+ ? Number(personalityState.risk_tolerance)
113
+ : 1;
114
+ return rigor >= 0.6 && riskTol <= 0.5;
115
+ }
116
+
117
+ function buildMutation({
118
+ signals,
119
+ selectedGene,
120
+ driftEnabled,
121
+ personalityState,
122
+ allowHighRisk = false,
123
+ target,
124
+ expected_effect,
125
+ } = {}) {
126
+ const ts = nowTsMs();
127
+ const category = mutationCategoryFromContext({ signals, driftEnabled: !!driftEnabled });
128
+ const triggerSignals = uniqStrings(signals);
129
+
130
+ const base = {
131
+ type: 'Mutation',
132
+ id: `mut_${ts}`,
133
+ category,
134
+ trigger_signals: triggerSignals,
135
+ target: String(target || targetFromGene(selectedGene)),
136
+ expected_effect: String(expected_effect || expectedEffectFromCategory(category)),
137
+ risk_level: 'low',
138
+ };
139
+
140
+ // Default risk assignment: innovate is medium; others low.
141
+ if (category === 'innovate') base.risk_level = 'medium';
142
+
143
+ // Optional high-risk escalation (rare, and guarded by strict safety constraints).
144
+ if (allowHighRisk && category === 'innovate') {
145
+ base.risk_level = 'high';
146
+ }
147
+
148
+ // Safety constraints (hard):
149
+ // - forbid innovate + high-risk personality (downgrade innovation to optimize)
150
+ // - forbid high-risk mutation unless personality satisfies constraints
151
+ const highRiskPersonality = isHighRiskPersonality(personalityState || null);
152
+ if (base.category === 'innovate' && highRiskPersonality) {
153
+ base.category = 'optimize';
154
+ base.expected_effect = 'safety downgrade: optimize under high-risk personality (avoid innovate+high-risk combo)';
155
+ base.risk_level = 'low';
156
+ base.trigger_signals = uniqStrings([...(base.trigger_signals || []), 'safety:avoid_innovate_with_high_risk_personality']);
157
+ }
158
+
159
+ if (base.risk_level === 'high' && !isHighRiskMutationAllowed(personalityState || null)) {
160
+ // Downgrade rather than emit illegal high-risk mutation.
161
+ base.risk_level = 'medium';
162
+ base.trigger_signals = uniqStrings([...(base.trigger_signals || []), 'safety:downgrade_high_risk']);
163
+ }
164
+
165
+ return base;
166
+ }
167
+
168
+ function isValidMutation(obj) {
169
+ if (!obj || typeof obj !== 'object') return false;
170
+ if (obj.type !== 'Mutation') return false;
171
+ if (!obj.id || typeof obj.id !== 'string') return false;
172
+ if (!obj.category || !VALID_CATEGORIES.includes(String(obj.category))) return false;
173
+ if (!Array.isArray(obj.trigger_signals)) return false;
174
+ if (!obj.target || typeof obj.target !== 'string') return false;
175
+ if (!obj.expected_effect || typeof obj.expected_effect !== 'string') return false;
176
+ if (!obj.risk_level || !VALID_RISK_LEVELS.includes(String(obj.risk_level))) return false;
177
+ return true;
178
+ }
179
+
180
+ function normalizeMutation(obj) {
181
+ const m = obj && typeof obj === 'object' ? obj : {};
182
+ const out = {
183
+ type: 'Mutation',
184
+ id: typeof m.id === 'string' ? m.id : `mut_${nowTsMs()}`,
185
+ category: VALID_CATEGORIES.includes(String(m.category)) ? String(m.category) : 'optimize',
186
+ trigger_signals: uniqStrings(m.trigger_signals),
187
+ target: typeof m.target === 'string' ? m.target : 'behavior:protocol',
188
+ expected_effect: typeof m.expected_effect === 'string' ? m.expected_effect : expectedEffectFromCategory(m.category),
189
+ risk_level: VALID_RISK_LEVELS.includes(String(m.risk_level)) ? String(m.risk_level) : 'low',
190
+ };
191
+ return out;
192
+ }
193
+
194
+ module.exports = {
195
+ clamp01,
196
+ buildMutation,
197
+ isValidMutation,
198
+ normalizeMutation,
199
+ isHighRiskMutationAllowed,
200
+ isHighRiskPersonality,
201
+ hasOpportunitySignal,
202
+ };
203
+