@evomap/evolver 1.89.11 → 1.89.12

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 (100) 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 +1367 -0
  9. package/README.md +90 -537
  10. package/README.public.md +578 -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/package.json +6 -18
  16. package/proxy-package.json +39 -0
  17. package/public.manifest.json +145 -0
  18. package/src/evolve/guards.js +721 -1
  19. package/src/evolve/pipeline/collect.js +1283 -1
  20. package/src/evolve/pipeline/dispatch.js +421 -1
  21. package/src/evolve/pipeline/enrich.js +440 -1
  22. package/src/evolve/pipeline/hub.js +319 -1
  23. package/src/evolve/pipeline/select.js +274 -1
  24. package/src/evolve/pipeline/signals.js +206 -1
  25. package/src/evolve/utils.js +264 -1
  26. package/src/evolve.js +350 -1
  27. package/src/gep/a2aProtocol.js +4463 -1
  28. package/src/gep/antiAbuseTelemetry.js +233 -1
  29. package/src/gep/autoDistillConv.js +205 -1
  30. package/src/gep/autoDistillLlm.js +315 -1
  31. package/src/gep/candidateEval.js +92 -1
  32. package/src/gep/candidates.js +198 -1
  33. package/src/gep/contentHash.js +30 -1
  34. package/src/gep/conversationDistiller.js +270 -0
  35. package/src/gep/conversationSniffer.js +266 -1
  36. package/src/gep/crypto.js +89 -1
  37. package/src/gep/curriculum.js +163 -1
  38. package/src/gep/deviceId.js +218 -1
  39. package/src/gep/envFingerprint.js +118 -1
  40. package/src/gep/epigenetics.js +31 -1
  41. package/src/gep/execBridge.js +712 -1
  42. package/src/gep/explore.js +289 -1
  43. package/src/gep/hash.js +15 -1
  44. package/src/gep/hubFetch.js +608 -1
  45. package/src/gep/hubReview.js +207 -1
  46. package/src/gep/hubSearch.js +526 -1
  47. package/src/gep/hubVerify.js +306 -1
  48. package/src/gep/learningSignals.js +89 -1
  49. package/src/gep/memoryGraph.js +1449 -1
  50. package/src/gep/memoryGraphAdapter.js +203 -1
  51. package/src/gep/mutation.js +203 -1
  52. package/src/gep/narrativeMemory.js +108 -1
  53. package/src/gep/openPRRegistry.js +205 -1
  54. package/src/gep/personality.js +423 -1
  55. package/src/gep/policyCheck.js +599 -1
  56. package/src/gep/prompt.js +836 -1
  57. package/src/gep/questionGenerator.js +103 -0
  58. package/src/gep/recallInject.js +409 -1
  59. package/src/gep/recallVerifier.js +318 -1
  60. package/src/gep/reflection.js +177 -1
  61. package/src/gep/savingsCore.js +112 -1
  62. package/src/gep/selector.js +602 -1
  63. package/src/gep/skillDistiller.js +1294 -1
  64. package/src/gep/solidify.js +1699 -1
  65. package/src/gep/strategy.js +136 -1
  66. package/src/gep/tokenSavings.js +95 -1
  67. package/src/gep/workspaceKeychain.js +174 -1
  68. package/src/proxy/extensions/traceControl.js +109 -1
  69. package/src/proxy/inject.js +52 -1
  70. package/src/proxy/lifecycle/manager.js +108 -7
  71. package/src/proxy/server/routes.js +31 -0
  72. package/src/proxy/server/settings.js +6 -2
  73. package/src/proxy/sync/engine.js +31 -15
  74. package/src/proxy/sync/inbound.js +87 -9
  75. package/src/proxy/sync/outbound.js +57 -4
  76. package/src/proxy/trace/extractor.js +1403 -1
  77. package/src/proxy/trace/usage.js +105 -1
  78. package/CONTRIBUTING.md +0 -19
  79. package/assets/cover.png +0 -0
  80. package/scripts/a2a_export.js +0 -63
  81. package/scripts/a2a_ingest.js +0 -79
  82. package/scripts/a2a_promote.js +0 -118
  83. package/scripts/analyze_by_skill.js +0 -121
  84. package/scripts/build_binaries.js +0 -479
  85. package/scripts/check-changelog.js +0 -166
  86. package/scripts/extract_log.js +0 -85
  87. package/scripts/generate_history.js +0 -75
  88. package/scripts/gep_append_event.js +0 -96
  89. package/scripts/gep_personality_report.js +0 -234
  90. package/scripts/human_report.js +0 -147
  91. package/scripts/recall-verify-report.js +0 -234
  92. package/scripts/recover_loop.js +0 -61
  93. package/scripts/refresh_stars_badge.js +0 -168
  94. package/scripts/seed-merchants.js +0 -91
  95. package/scripts/suggest_version.js +0 -89
  96. package/scripts/validate-modules.js +0 -38
  97. package/scripts/validate-suite.js +0 -78
  98. package/skills/index.json +0 -14
  99. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  100. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,274 @@
1
- function _0x1678(){const _0x3ea993=['\x57\x51\x4e\x64\x4b\x38\x6b\x54\x57\x50\x6c\x63\x4e\x6d\x6b\x76\x72\x57','\x57\x36\x58\x7a\x57\x51\x74\x64\x4f\x73\x56\x63\x4a\x77\x69','\x57\x4f\x5a\x63\x50\x30\x42\x63\x4e\x43\x6f\x33','\x57\x51\x57\x68\x57\x35\x2f\x64\x4c\x38\x6b\x64','\x69\x53\x6f\x6f\x6b\x53\x6f\x35\x57\x52\x4b','\x77\x68\x64\x63\x56\x53\x6b\x4a\x57\x35\x44\x65\x57\x37\x35\x4f','\x57\x50\x4e\x63\x4d\x62\x4a\x63\x4f\x38\x6f\x69\x57\x36\x6e\x66\x66\x47','\x57\x36\x42\x63\x4c\x6d\x6b\x2b\x43\x53\x6b\x41\x57\x35\x52\x63\x54\x71','\x73\x61\x42\x63\x4a\x53\x6b\x37','\x6e\x53\x6f\x47\x57\x34\x6a\x47\x70\x71','\x57\x35\x37\x63\x47\x74\x4b\x70\x57\x4f\x47\x62\x57\x4f\x56\x63\x4b\x71','\x68\x43\x6f\x6c\x62\x38\x6b\x4a\x74\x38\x6f\x76\x72\x38\x6b\x78','\x57\x37\x4b\x64\x57\x4f\x64\x63\x4f\x43\x6b\x58\x57\x35\x56\x64\x54\x72\x72\x4d\x67\x43\x6f\x43\x6e\x57','\x71\x77\x39\x67\x66\x6d\x6b\x42\x57\x50\x4a\x64\x51\x57','\x44\x33\x4e\x63\x47\x4a\x46\x64\x4b\x4a\x33\x64\x4e\x47','\x57\x51\x68\x63\x51\x43\x6b\x74\x76\x43\x6b\x47','\x57\x52\x61\x41\x75\x64\x70\x64\x52\x57','\x57\x50\x75\x79\x57\x36\x74\x64\x4b\x67\x69','\x57\x37\x42\x63\x48\x59\x35\x6f\x57\x52\x65','\x57\x37\x50\x44\x57\x36\x65\x41\x57\x34\x65\x6f\x72\x6d\x6b\x67','\x63\x62\x30\x33\x57\x51\x42\x64\x51\x71\x30','\x57\x52\x47\x35\x57\x34\x4e\x64\x50\x47','\x57\x35\x56\x64\x47\x76\x61\x4d\x57\x36\x6d','\x6c\x38\x6f\x31\x69\x38\x6b\x38\x75\x53\x6f\x67\x72\x57','\x73\x53\x6b\x4f\x57\x35\x52\x63\x55\x38\x6f\x4d\x57\x50\x75\x6a\x45\x71','\x65\x6d\x6f\x34\x57\x36\x4b\x6d\x62\x57','\x65\x75\x71\x70\x57\x34\x69\x50','\x63\x4d\x4b\x31\x57\x34\x79\x57\x70\x6d\x6f\x41\x57\x52\x61','\x64\x4e\x44\x74\x64\x38\x6b\x59\x57\x50\x5a\x64\x4f\x48\x4b','\x57\x50\x70\x64\x51\x53\x6b\x50\x57\x50\x70\x64\x4d\x53\x6f\x44\x68\x53\x6b\x34','\x57\x51\x69\x70\x57\x50\x42\x64\x52\x74\x70\x64\x4e\x65\x75','\x57\x51\x78\x63\x56\x6d\x6b\x4d','\x74\x4a\x64\x63\x4f\x6d\x6b\x4c\x57\x35\x6e\x2f\x57\x37\x35\x56','\x77\x6d\x6f\x6a\x76\x5a\x71\x78\x57\x52\x6c\x64\x4e\x47','\x6c\x4e\x7a\x4e\x74\x30\x52\x63\x53\x76\x4e\x64\x51\x61','\x65\x43\x6b\x76\x57\x34\x54\x64\x6c\x6d\x6f\x7a\x57\x51\x79','\x6b\x53\x6f\x42\x57\x37\x7a\x59','\x57\x36\x33\x64\x55\x6d\x6b\x4c\x57\x35\x65','\x69\x53\x6f\x50\x77\x4a\x47\x78','\x57\x35\x68\x64\x50\x78\x64\x63\x49\x65\x68\x63\x4f\x4c\x47\x76','\x61\x43\x6f\x31\x6d\x6d\x6f\x2b\x57\x4f\x33\x63\x56\x6d\x6b\x32\x57\x37\x53','\x57\x51\x4b\x32\x57\x34\x70\x64\x53\x6d\x6b\x75','\x62\x6d\x6f\x62\x74\x63\x79\x72\x57\x4f\x70\x64\x52\x71','\x57\x4f\x66\x73\x75\x65\x6d','\x41\x74\x4c\x4a\x57\x52\x58\x67\x57\x35\x70\x63\x4e\x6d\x6b\x56','\x57\x50\x46\x63\x56\x4c\x78\x64\x50\x6d\x6b\x43\x57\x35\x44\x46\x70\x47','\x57\x51\x66\x62\x57\x37\x46\x64\x56\x43\x6f\x53\x57\x4f\x6c\x64\x4b\x5a\x57','\x57\x51\x74\x64\x49\x68\x76\x6a\x57\x35\x33\x63\x50\x67\x2f\x64\x4e\x57','\x45\x43\x6b\x4d\x6d\x63\x72\x79','\x57\x37\x68\x63\x53\x6d\x6b\x31\x75\x53\x6b\x65\x57\x35\x4e\x63\x52\x71\x79','\x57\x34\x2f\x64\x4a\x75\x61\x54\x57\x35\x66\x41\x44\x78\x57','\x75\x43\x6b\x2b\x57\x37\x4a\x63\x52\x6d\x6f\x36\x57\x4f\x62\x71','\x44\x4d\x78\x63\x48\x64\x4f','\x68\x38\x6f\x31\x6c\x38\x6f\x4f\x57\x4f\x2f\x63\x52\x38\x6b\x38','\x57\x52\x56\x64\x49\x68\x30\x77\x57\x50\x34','\x57\x52\x64\x63\x56\x68\x5a\x64\x53\x38\x6f\x77\x64\x53\x6b\x53\x57\x36\x38','\x62\x53\x6f\x49\x6b\x43\x6f\x2b\x57\x34\x37\x64\x4f\x6d\x6b\x51\x57\x36\x4f','\x43\x63\x48\x2b\x57\x4f\x62\x30','\x57\x35\x64\x64\x4c\x66\x75\x38','\x57\x50\x47\x72\x57\x34\x6c\x64\x56\x77\x43','\x65\x6d\x6b\x71\x45\x38\x6f\x62\x63\x57','\x6d\x43\x6b\x71\x45\x38\x6f\x37\x6a\x67\x4c\x43','\x57\x35\x48\x32\x61\x43\x6b\x42\x75\x53\x6b\x6f\x6c\x53\x6f\x4b','\x44\x38\x6f\x2b\x57\x52\x30','\x69\x63\x62\x62\x57\x4f\x66\x6b\x57\x35\x42\x63\x49\x43\x6b\x58','\x71\x62\x6c\x64\x47\x6d\x6b\x37\x57\x37\x68\x64\x4f\x38\x6f\x74\x57\x4f\x30','\x6d\x6d\x6f\x4c\x57\x36\x50\x4d\x69\x57','\x57\x51\x54\x63\x57\x52\x2f\x64\x52\x63\x68\x64\x49\x71','\x6e\x6d\x6b\x2b\x77\x4e\x69\x6f\x46\x43\x6b\x51\x57\x35\x75','\x57\x35\x42\x64\x51\x75\x52\x63\x55\x77\x57','\x57\x52\x70\x64\x4a\x67\x4c\x79\x57\x35\x46\x63\x50\x4b\x56\x64\x4f\x47','\x45\x33\x72\x38\x70\x38\x6b\x31','\x57\x51\x34\x64\x46\x49\x68\x64\x52\x57','\x57\x52\x66\x68\x75\x66\x78\x63\x4b\x43\x6f\x4c\x57\x4f\x70\x63\x49\x57','\x57\x35\x4e\x64\x53\x43\x6b\x49\x57\x35\x44\x30','\x57\x52\x52\x64\x48\x67\x6e\x6a\x57\x50\x61','\x65\x48\x53\x34\x57\x51\x64\x64\x50\x57','\x77\x6d\x6f\x58\x62\x4a\x4b\x61\x69\x43\x6b\x35\x57\x34\x69','\x78\x68\x54\x63\x68\x38\x6b\x50\x57\x35\x78\x64\x4e\x62\x4b','\x6b\x71\x75\x47\x57\x51\x5a\x64\x55\x47','\x74\x32\x4c\x78','\x67\x6d\x6b\x33\x57\x4f\x50\x69\x57\x34\x6a\x70','\x77\x38\x6b\x37\x6d\x63\x58\x44\x70\x6d\x6b\x6d\x62\x61','\x74\x33\x6c\x63\x4e\x64\x64\x64\x49\x73\x6c\x64\x52\x43\x6f\x75','\x57\x35\x54\x50\x61\x38\x6b\x51\x7a\x38\x6b\x55\x66\x6d\x6f\x49','\x67\x53\x6b\x66\x57\x34\x58\x64\x6d\x43\x6f\x44\x57\x52\x6e\x54','\x6d\x6d\x6f\x36\x57\x37\x6d\x59\x6f\x53\x6f\x33\x57\x4f\x54\x4b','\x57\x4f\x65\x59\x57\x34\x47','\x72\x32\x4c\x5a\x62\x43\x6b\x67\x57\x50\x74\x64\x54\x57','\x57\x51\x4e\x64\x49\x43\x6b\x34\x57\x50\x46\x64\x51\x53\x6f\x46\x62\x53\x6b\x6c','\x68\x6d\x6f\x6b\x74\x64\x30\x7a\x57\x4f\x6c\x64\x56\x61','\x76\x43\x6b\x53\x57\x34\x33\x63\x56\x43\x6f\x47','\x57\x34\x74\x64\x56\x6d\x6b\x4d\x57\x35\x65','\x57\x34\x78\x64\x52\x32\x74\x63\x4a\x4c\x42\x63\x4d\x76\x6d\x46','\x57\x34\x52\x64\x50\x66\x52\x63\x55\x6d\x6f\x74\x57\x50\x58\x72\x6c\x47','\x57\x4f\x33\x63\x4b\x61\x74\x63\x56\x38\x6f\x57\x57\x52\x65','\x57\x52\x4c\x41\x57\x37\x34\x42\x57\x35\x43\x68\x41\x6d\x6b\x52','\x57\x4f\x33\x63\x48\x5a\x71\x46\x57\x50\x47\x75\x57\x4f\x6c\x64\x4c\x71','\x57\x52\x57\x38\x57\x34\x64\x64\x54\x53\x6b\x75\x57\x50\x30','\x57\x35\x37\x63\x48\x64\x43\x69\x57\x50\x47\x66\x57\x51\x37\x64\x4e\x57','\x6a\x4e\x35\x33\x74\x30\x75','\x67\x43\x6b\x6c\x74\x5a\x61\x63\x57\x50\x46\x64\x50\x38\x6f\x63','\x57\x50\x30\x38\x57\x4f\x37\x64\x53\x43\x6b\x5a\x63\x53\x6f\x34\x57\x37\x30','\x66\x53\x6f\x44\x57\x36\x62\x42\x63\x43\x6f\x32\x57\x51\x58\x6f','\x74\x33\x72\x71\x6e\x6d\x6b\x41','\x57\x35\x4a\x64\x49\x4c\x4a\x64\x56\x53\x6b\x54\x57\x37\x69\x39\x66\x6d\x6f\x2b\x57\x34\x79\x46\x57\x34\x4c\x62','\x66\x48\x30\x50\x57\x51\x57','\x44\x4d\x62\x54\x57\x52\x48\x67','\x44\x53\x6f\x36\x57\x52\x34','\x57\x4f\x52\x63\x48\x59\x4f\x75\x57\x4f\x47','\x6b\x6d\x6f\x48\x6d\x43\x6b\x4e\x72\x38\x6f\x6a\x78\x38\x6b\x38','\x65\x53\x6b\x66\x57\x35\x66\x68\x6e\x38\x6f\x43','\x57\x52\x30\x39\x57\x37\x37\x64\x51\x38\x6b\x63\x57\x4f\x71\x4d','\x65\x68\x75\x4b\x57\x34\x69','\x76\x53\x6f\x39\x57\x52\x78\x64\x47\x53\x6b\x67','\x57\x34\x4b\x58\x76\x38\x6f\x31\x57\x35\x53','\x65\x6d\x6b\x69\x57\x37\x7a\x47\x62\x38\x6f\x49\x57\x50\x58\x63','\x79\x61\x46\x64\x55\x53\x6f\x79\x57\x37\x6d','\x57\x34\x56\x64\x4a\x65\x30\x74\x57\x35\x7a\x68\x45\x32\x79','\x46\x53\x6f\x63\x57\x35\x64\x63\x48\x43\x6b\x34\x72\x58\x44\x79','\x57\x34\x4c\x79\x57\x52\x68\x64\x4b\x4a\x65','\x41\x32\x70\x63\x49\x61\x64\x64\x49\x63\x2f\x64\x49\x38\x6f\x73','\x78\x57\x46\x64\x4c\x38\x6f\x2b\x57\x36\x4a\x64\x50\x43\x6f\x2f\x57\x4f\x38','\x57\x37\x4e\x64\x54\x76\x65\x48\x57\x34\x50\x62\x79\x31\x75','\x67\x6d\x6b\x33\x57\x4f\x50\x45\x57\x35\x54\x7a\x67\x4d\x47','\x78\x48\x48\x59\x57\x4f\x76\x37','\x45\x30\x2f\x63\x48\x53\x6b\x30\x57\x34\x69','\x72\x53\x6b\x4b\x69\x4a\x6e\x4e','\x6a\x4e\x50\x4d\x78\x47\x4e\x63\x53\x31\x4e\x64\x56\x57','\x42\x53\x6f\x54\x57\x52\x4a\x64\x48\x47','\x57\x36\x4e\x64\x4f\x53\x6f\x4d\x66\x53\x6f\x6f\x57\x4f\x64\x63\x49\x78\x68\x64\x54\x38\x6f\x70\x57\x37\x46\x63\x55\x57','\x57\x4f\x4f\x31\x79\x71\x46\x64\x54\x53\x6b\x70\x57\x34\x53','\x6f\x6d\x6f\x6e\x57\x37\x31\x5a','\x63\x6d\x6f\x44\x66\x38\x6f\x33\x57\x52\x56\x64\x49\x38\x6f\x49','\x43\x30\x37\x63\x47\x38\x6b\x6b\x57\x36\x53','\x73\x53\x6b\x30\x57\x4f\x71','\x74\x6d\x6b\x4b\x57\x35\x42\x63\x53\x61','\x57\x50\x52\x63\x53\x4b\x42\x63\x47\x38\x6f\x4e\x69\x57\x65\x72','\x69\x38\x6b\x71\x43\x6d\x6f\x47\x6e\x32\x61\x70\x57\x37\x61','\x57\x37\x56\x64\x51\x64\x4b\x77\x72\x61','\x65\x53\x6f\x6a\x57\x36\x44\x31\x61\x61','\x45\x38\x6f\x53\x57\x37\x64\x63\x4e\x43\x6b\x74','\x57\x52\x64\x63\x54\x65\x5a\x63\x47\x43\x6f\x63\x62\x75\x47\x77','\x63\x6d\x6f\x73\x75\x64\x57\x75\x57\x34\x74\x64\x55\x53\x6f\x6a','\x6e\x6d\x6f\x48\x57\x36\x34\x65','\x57\x51\x7a\x65\x71\x33\x64\x64\x47\x47','\x43\x77\x39\x38\x57\x51\x6e\x78\x57\x35\x78\x63\x51\x43\x6b\x6f','\x62\x43\x6b\x52\x77\x33\x7a\x41\x41\x38\x6b\x35\x57\x35\x34','\x57\x52\x64\x63\x55\x53\x6b\x34\x71\x53\x6b\x74\x57\x4f\x6c\x64\x4f\x71','\x57\x50\x37\x63\x53\x65\x5a\x63\x49\x6d\x6f\x52\x42\x75\x47','\x76\x78\x4e\x63\x49\x38\x6b\x49\x57\x35\x34','\x77\x49\x33\x63\x47\x53\x6b\x61\x68\x61','\x63\x6d\x6f\x73\x65\x53\x6f\x59\x57\x4f\x53','\x67\x6d\x6b\x51\x57\x4f\x58\x73\x57\x35\x7a\x71\x6e\x47','\x78\x6d\x6b\x6b\x57\x35\x5a\x63\x53\x6d\x6f\x54\x57\x51\x48\x6e','\x6b\x6d\x6f\x30\x69\x43\x6b\x7a\x43\x71','\x57\x51\x78\x64\x4a\x67\x4c\x65\x57\x36\x70\x64\x53\x68\x5a\x64\x4c\x61','\x77\x75\x2f\x64\x51\x47','\x68\x6d\x6f\x75\x68\x5a\x6d\x72\x57\x4f\x33\x64\x50\x6d\x6f\x6a','\x57\x52\x5a\x64\x49\x6d\x6b\x46\x57\x4f\x52\x64\x48\x38\x6f\x67\x63\x43\x6b\x79','\x57\x35\x54\x4a\x63\x53\x6b\x73\x44\x53\x6b\x30','\x57\x36\x7a\x75\x57\x51\x64\x64\x52\x74\x42\x63\x4c\x68\x71','\x74\x49\x46\x63\x4f\x6d\x6b\x53\x68\x64\x39\x61\x66\x47','\x74\x32\x50\x63\x67\x38\x6b\x6e','\x57\x35\x6a\x30\x66\x53\x6b\x41\x43\x61','\x64\x38\x6b\x43\x75\x53\x6f\x77\x6d\x61','\x68\x43\x6f\x4d\x70\x43\x6f\x56\x57\x4f\x46\x63\x50\x38\x6b\x33','\x57\x51\x52\x63\x47\x59\x4f\x44\x57\x50\x34\x75\x57\x35\x33\x63\x4b\x71','\x69\x32\x58\x43\x74\x47','\x57\x52\x6c\x64\x4c\x78\x6a\x79\x57\x37\x75','\x7a\x6d\x6b\x64\x64\x61\x31\x42','\x43\x38\x6f\x52\x57\x52\x74\x64\x53\x6d\x6b\x57\x57\x51\x4a\x64\x55\x6d\x6b\x33','\x57\x50\x44\x30\x64\x43\x6b\x67\x41\x43\x6f\x48','\x57\x37\x62\x74\x57\x37\x38','\x57\x51\x43\x49\x57\x52\x33\x64\x51\x58\x4b','\x43\x53\x6b\x46\x6a\x49\x50\x54\x6f\x53\x6b\x41\x6c\x57','\x57\x52\x52\x64\x49\x67\x50\x46\x57\x35\x2f\x63\x54\x30\x53','\x57\x35\x4a\x63\x55\x73\x6c\x63\x56\x62\x6a\x4d','\x6d\x53\x6f\x68\x57\x37\x44\x5a','\x41\x77\x72\x50\x57\x51\x50\x67\x57\x34\x2f\x63\x56\x53\x6b\x79','\x7a\x4e\x6c\x63\x47\x4a\x5a\x64\x49\x74\x6c\x64\x4d\x53\x6f\x73','\x66\x65\x78\x64\x50\x77\x2f\x63\x50\x66\x50\x53\x57\x52\x65','\x57\x4f\x57\x5a\x78\x61\x61','\x57\x52\x56\x64\x4a\x53\x6b\x52\x57\x50\x64\x64\x4c\x6d\x6f\x64\x66\x61','\x42\x33\x6c\x63\x4e\x64\x64\x64\x49\x73\x6c\x63\x48\x6d\x6b\x67','\x57\x37\x4a\x63\x53\x5a\x5a\x63\x50\x48\x35\x58\x41\x53\x6f\x2b','\x57\x34\x6d\x35\x62\x6d\x6b\x32','\x57\x34\x68\x64\x4d\x75\x61\x50\x57\x34\x6a\x43\x41\x67\x53','\x79\x43\x6b\x34\x57\x35\x42\x63\x52\x53\x6f\x4c','\x57\x50\x46\x63\x52\x58\x4e\x64\x53\x38\x6b\x45\x57\x34\x44\x74\x6c\x57','\x57\x34\x2f\x64\x4d\x75\x71','\x57\x37\x37\x63\x53\x61\x4c\x56\x57\x51\x71','\x57\x52\x47\x53\x57\x51\x4a\x64\x4a\x59\x61','\x70\x38\x6f\x76\x44\x49\x61\x58','\x6b\x43\x6b\x53\x71\x68\x62\x61\x42\x38\x6b\x59\x57\x35\x71','\x57\x4f\x33\x63\x56\x47\x5a\x64\x49\x43\x6b\x77\x57\x35\x31\x7a\x70\x61','\x6b\x68\x54\x4b\x57\x51\x31\x65\x57\x36\x56\x63\x4d\x47','\x57\x52\x79\x66\x57\x50\x70\x64\x4b\x62\x30','\x63\x43\x6f\x32\x62\x38\x6b\x47\x43\x6d\x6f\x31\x68\x53\x6b\x34','\x41\x77\x6e\x2f\x57\x51\x71','\x63\x6d\x6b\x53\x57\x4f\x76\x70\x57\x34\x6e\x6f\x6d\x68\x47','\x70\x43\x6f\x70\x57\x35\x4e\x63\x54\x53\x6b\x37\x78\x5a\x62\x62','\x57\x37\x31\x59\x62\x43\x6b\x4c\x44\x57','\x6f\x38\x6b\x6f\x7a\x4c\x31\x33','\x6d\x6d\x6b\x71\x41\x6d\x6f\x57\x7a\x77\x6e\x6f\x57\x36\x4f','\x43\x67\x76\x66\x57\x51\x47','\x46\x53\x6f\x62\x57\x35\x56\x63\x51\x43\x6b\x47\x77\x48\x4c\x62','\x57\x37\x76\x4a\x57\x50\x74\x64\x53\x74\x71','\x46\x78\x37\x63\x56\x6d\x6b\x5a\x57\x34\x44\x48\x57\x37\x76\x70','\x61\x38\x6b\x54\x77\x33\x6a\x61\x45\x53\x6f\x2b\x57\x35\x71','\x63\x6d\x6f\x75\x74\x5a\x4b\x6a','\x57\x4f\x4a\x63\x4d\x62\x4a\x63\x55\x6d\x6f\x47\x57\x51\x39\x48\x65\x71','\x67\x38\x6b\x36\x77\x4d\x72\x70\x41\x43\x6b\x37','\x57\x4f\x4a\x63\x52\x58\x74\x64\x50\x6d\x6b\x74\x57\x35\x50\x79\x6c\x61','\x6b\x38\x6f\x4e\x65\x47','\x57\x50\x54\x54\x75\x75\x2f\x64\x50\x57','\x57\x4f\x61\x4b\x57\x4f\x68\x64\x50\x73\x61','\x78\x65\x47\x35\x57\x51\x78\x64\x55\x62\x52\x63\x4f\x4b\x53','\x77\x32\x33\x63\x52\x43\x6b\x55\x57\x35\x66\x4f','\x78\x53\x6b\x4b\x57\x35\x78\x63\x51\x53\x6f\x54\x57\x50\x6d','\x78\x43\x6f\x5a\x57\x50\x31\x57\x57\x37\x72\x6d\x66\x31\x65','\x6e\x72\x47\x73\x57\x51\x37\x64\x55\x61','\x57\x36\x48\x48\x57\x50\x5a\x63\x54\x6d\x6f\x67\x57\x35\x4c\x49\x69\x49\x57\x2b\x42\x6d\x6f\x43','\x57\x34\x70\x64\x52\x53\x6b\x63\x57\x35\x61','\x64\x58\x53\x42\x57\x52\x42\x64\x56\x48\x37\x63\x56\x61','\x6a\x6d\x6b\x77\x42\x53\x6f\x32\x69\x65\x58\x62\x57\x36\x30','\x43\x53\x6b\x50\x57\x35\x5a\x63\x4e\x6d\x6f\x52','\x75\x53\x6b\x45\x76\x43\x6b\x4e\x57\x36\x42\x63\x4b\x53\x6b\x33\x76\x67\x69\x69\x46\x67\x6c\x63\x4a\x47','\x57\x51\x66\x43\x57\x34\x78\x64\x53\x43\x6f\x53\x57\x50\x38','\x69\x4e\x2f\x63\x4d\x64\x4a\x64\x4b\x33\x56\x64\x4d\x6d\x6f\x70','\x57\x34\x72\x54\x72\x6d\x6b\x74\x42\x43\x6b\x55\x72\x53\x6f\x55','\x66\x4e\x71\x79\x57\x36\x57\x73\x62\x43\x6f\x4c\x75\x47','\x57\x36\x54\x66\x57\x52\x42\x64\x54\x4e\x37\x64\x47\x68\x46\x64\x47\x61','\x77\x65\x2f\x63\x4f\x38\x6b\x4f\x57\x37\x38','\x6b\x6d\x6b\x37\x75\x38\x6f\x4e\x6c\x71','\x57\x34\x37\x64\x4d\x53\x6b\x55\x57\x35\x50\x30\x45\x47\x57','\x75\x73\x70\x63\x53\x53\x6b\x51\x62\x47','\x57\x36\x4b\x74\x57\x37\x57\x43\x57\x34\x61\x64\x76\x43\x6b\x53','\x67\x43\x6b\x4d\x57\x4f\x39\x6a\x57\x35\x72\x7a','\x64\x53\x6f\x70\x57\x35\x6a\x66\x6c\x53\x6f\x42\x57\x52\x66\x47','\x69\x4d\x7a\x4c\x72\x76\x33\x63\x52\x76\x78\x64\x52\x71','\x74\x53\x6f\x77\x57\x52\x52\x64\x4a\x6d\x6b\x30','\x57\x36\x74\x63\x53\x59\x64\x63\x53\x47\x76\x33','\x57\x37\x64\x64\x4e\x4d\x75\x51\x57\x37\x38','\x6b\x53\x6f\x4e\x57\x36\x30\x70\x70\x53\x6f\x33\x57\x50\x31\x79','\x63\x38\x6f\x43\x57\x35\x62\x57\x6d\x47','\x6b\x38\x6f\x52\x57\x37\x4f\x61\x6e\x53\x6f\x50','\x57\x35\x6c\x64\x56\x67\x46\x63\x4d\x76\x30','\x6b\x68\x6e\x57\x63\x4b\x52\x63\x52\x76\x68\x64\x53\x61','\x7a\x38\x6f\x53\x57\x37\x56\x63\x53\x38\x6b\x58','\x57\x52\x69\x56\x57\x37\x74\x64\x4f\x6d\x6b\x7a','\x6b\x53\x6b\x50\x57\x34\x48\x70\x6d\x57','\x57\x50\x64\x63\x55\x49\x6c\x64\x48\x43\x6b\x4c','\x6e\x6d\x6f\x4e\x65\x53\x6b\x4d\x46\x43\x6b\x68\x42\x6d\x6b\x31','\x57\x50\x75\x49\x57\x34\x37\x64\x4f\x76\x6d\x47\x75\x78\x47','\x45\x78\x52\x63\x4f\x53\x6b\x4c\x57\x50\x6a\x2b\x57\x37\x76\x51','\x75\x49\x46\x63\x4a\x38\x6b\x54\x68\x71','\x57\x52\x71\x69\x57\x4f\x78\x64\x53\x61','\x70\x43\x6f\x66\x74\x74\x69\x76\x57\x50\x64\x63\x53\x53\x6b\x6d','\x62\x53\x6b\x35\x57\x4f\x44\x56\x57\x36\x69','\x65\x6d\x6f\x58\x6d\x53\x6f\x31\x57\x4f\x56\x63\x52\x6d\x6b\x45\x57\x36\x57','\x57\x4f\x42\x63\x50\x59\x47\x54\x57\x51\x4b','\x57\x35\x78\x64\x51\x32\x5a\x63\x48\x75\x68\x63\x4a\x33\x65\x45','\x57\x36\x4a\x64\x48\x6d\x6b\x54\x57\x4f\x56\x64\x48\x53\x6f\x6f\x63\x38\x6f\x46','\x75\x6d\x6b\x53\x57\x34\x4f','\x57\x52\x47\x74\x57\x4f\x6c\x64\x4a\x4a\x70\x64\x49\x68\x61\x32','\x57\x52\x4a\x63\x4a\x78\x58\x41\x57\x35\x68\x63\x56\x66\x4a\x64\x4c\x61','\x57\x50\x34\x65\x57\x36\x74\x64\x4a\x38\x6b\x6c','\x57\x36\x52\x63\x50\x58\x53\x64\x57\x35\x57','\x57\x50\x75\x4a\x7a\x49\x52\x64\x4d\x57','\x67\x6d\x6b\x6a\x57\x35\x6e\x75\x6a\x53\x6f\x67','\x57\x35\x4e\x64\x4f\x68\x79\x4b\x42\x4e\x70\x63\x49\x4d\x71','\x57\x34\x30\x36\x57\x50\x33\x64\x53\x53\x6b\x56\x65\x43\x6f\x31\x57\x37\x71','\x57\x35\x75\x34\x75\x53\x6f\x5a\x57\x34\x68\x64\x54\x6d\x6b\x71\x57\x34\x43','\x75\x33\x74\x63\x48\x6d\x6b\x70\x57\x37\x4b','\x6e\x43\x6f\x4c\x64\x43\x6b\x38\x72\x71','\x6d\x43\x6b\x36\x72\x33\x69','\x57\x50\x4a\x63\x49\x72\x79\x7a\x57\x4f\x6d','\x66\x38\x6f\x2b\x6b\x6d\x6f\x4f','\x57\x4f\x33\x63\x4a\x4a\x65\x7a\x57\x50\x34','\x78\x4e\x39\x61\x62\x6d\x6b\x42\x57\x50\x56\x64\x52\x58\x61','\x57\x52\x64\x63\x54\x61\x33\x63\x50\x53\x6f\x36\x57\x52\x66\x39\x6a\x71','\x57\x4f\x56\x63\x4f\x76\x56\x63\x47\x43\x6f\x48','\x57\x50\x6d\x49\x57\x34\x6c\x64\x54\x4b\x75','\x78\x49\x39\x65\x57\x51\x54\x73\x74\x43\x6b\x49\x71\x57','\x57\x52\x75\x4a\x57\x34\x33\x64\x54\x53\x6b\x75\x57\x34\x39\x30\x67\x57','\x6c\x43\x6f\x4e\x57\x36\x75\x70','\x75\x32\x52\x63\x55\x6d\x6b\x48\x57\x34\x7a\x4b\x57\x37\x39\x4f','\x70\x38\x6f\x56\x57\x36\x6d\x6e\x6b\x53\x6f\x50\x57\x4f\x54\x75','\x44\x4a\x7a\x50\x57\x52\x50\x6d\x57\x35\x68\x63\x55\x53\x6b\x79','\x64\x67\x71\x32','\x6e\x53\x6b\x77\x42\x6d\x6f\x72\x6c\x57','\x57\x52\x6c\x63\x4f\x77\x46\x63\x52\x6d\x6f\x4e','\x57\x50\x70\x63\x48\x59\x53\x6a\x57\x50\x4f\x68\x57\x4f\x69','\x70\x38\x6f\x4f\x64\x6d\x6f\x56\x57\x52\x38','\x57\x36\x33\x64\x55\x5a\x74\x63\x53\x38\x6b\x7a\x74\x43\x6b\x34','\x57\x4f\x61\x59\x7a\x57\x56\x64\x51\x57','\x7a\x57\x2f\x63\x4f\x38\x6b\x4b\x61\x74\x39\x43\x6e\x71','\x65\x78\x75\x50\x57\x34\x57\x4e\x69\x6d\x6f\x41\x57\x51\x43','\x57\x37\x78\x63\x50\x58\x35\x6c\x57\x50\x38\x4e','\x64\x38\x6b\x69\x57\x4f\x4c\x69\x57\x37\x79','\x57\x34\x56\x64\x4f\x74\x42\x63\x55\x71','\x75\x5a\x39\x73\x57\x52\x69\x43\x73\x6d\x6f\x55\x76\x47','\x62\x33\x6d\x58\x57\x34\x79\x32','\x57\x4f\x56\x63\x51\x61\x42\x64\x53\x38\x6b\x70\x57\x34\x76\x78\x70\x57','\x57\x50\x66\x7a\x75\x65\x74\x64\x48\x6d\x6f\x34\x57\x4f\x74\x63\x49\x47','\x77\x4c\x33\x63\x54\x43\x6f\x39','\x57\x50\x6c\x63\x53\x76\x33\x63\x4a\x53\x6f\x4d\x70\x47\x43\x71','\x57\x35\x56\x63\x53\x59\x6c\x63\x53\x62\x6a\x52\x42\x53\x6f\x32','\x74\x61\x5a\x64\x47\x6d\x6f\x59\x57\x35\x4e\x64\x4f\x43\x6f\x42\x57\x4f\x30','\x57\x52\x37\x63\x54\x6d\x6b\x58\x74\x38\x6b\x57','\x57\x52\x4e\x63\x4e\x61\x56\x63\x52\x53\x6f\x37\x57\x52\x43\x4b\x62\x61','\x57\x4f\x33\x63\x48\x5a\x4b\x69\x57\x50\x47\x69','\x41\x57\x68\x64\x4b\x43\x6f\x62\x57\x37\x34','\x69\x30\x69\x76\x57\x37\x38\x4c','\x57\x50\x4e\x63\x51\x32\x33\x63\x50\x53\x6f\x47','\x62\x38\x6f\x5a\x70\x38\x6f\x2b\x57\x50\x33\x63\x55\x38\x6b\x67\x57\x37\x4b','\x76\x4e\x7a\x4c\x62\x43\x6b\x78','\x68\x53\x6f\x52\x57\x36\x71\x65','\x57\x52\x5a\x64\x51\x4b\x48\x44\x57\x35\x30','\x76\x59\x39\x64\x57\x51\x66\x74\x72\x38\x6f\x4e','\x73\x53\x6b\x48\x42\x53\x6b\x51\x57\x35\x46\x64\x53\x6d\x6b\x72\x57\x35\x37\x63\x4c\x4b\x56\x63\x53\x53\x6f\x7a','\x79\x53\x6b\x41\x64\x61\x7a\x62','\x57\x37\x62\x70\x57\x35\x61\x42\x57\x34\x79\x64\x77\x61','\x73\x72\x46\x63\x4f\x6d\x6b\x39\x69\x57','\x57\x37\x74\x63\x50\x58\x58\x43\x57\x50\x69\x37\x67\x61\x57','\x57\x34\x56\x63\x4c\x61\x46\x63\x52\x38\x6f\x57\x57\x37\x34','\x57\x4f\x33\x63\x4a\x74\x75\x46','\x78\x43\x6b\x78\x63\x4d\x31\x63\x57\x35\x70\x63\x56\x6d\x6f\x4f\x45\x43\x6f\x32\x57\x35\x5a\x64\x54\x49\x69','\x73\x4a\x54\x68\x57\x51\x50\x48\x63\x53\x6f\x6b\x74\x47','\x57\x37\x6e\x6a\x57\x51\x6c\x64\x53\x73\x56\x63\x4a\x4d\x42\x64\x4e\x47','\x64\x57\x79\x35\x57\x51\x4a\x64\x55\x72\x56\x63\x4f\x66\x43','\x57\x52\x4c\x73\x57\x37\x61\x65\x57\x35\x66\x46','\x57\x36\x68\x63\x50\x71\x4a\x63\x56\x62\x39\x32\x46\x38\x6f\x33','\x43\x6d\x6f\x42\x57\x34\x68\x63\x55\x38\x6b\x47\x71\x72\x44\x67','\x73\x6d\x6b\x38\x6a\x59\x35\x4d\x6b\x43\x6b\x78\x64\x71','\x6e\x43\x6b\x67\x57\x50\x33\x64\x54\x6d\x6f\x2f\x61\x76\x6d\x62','\x57\x34\x78\x64\x4e\x72\x4f','\x6c\x38\x6f\x4f\x61\x43\x6b\x49\x76\x43\x6f\x64\x77\x38\x6b\x4a','\x64\x57\x43\x30\x57\x52\x43','\x6d\x38\x6f\x48\x57\x36\x6d\x70','\x62\x43\x6f\x6c\x77\x61\x4f\x76\x57\x50\x42\x64\x55\x53\x6f\x64','\x6c\x73\x75\x2f\x57\x51\x4e\x64\x51\x57','\x76\x30\x46\x64\x53\x77\x37\x63\x55\x76\x58\x32\x57\x52\x43','\x57\x52\x43\x38\x57\x34\x69','\x57\x37\x6e\x77\x57\x50\x46\x64\x53\x62\x6d','\x57\x34\x56\x63\x50\x5a\x66\x36\x57\x4f\x4b','\x57\x37\x2f\x64\x55\x59\x68\x64\x53\x53\x6b\x78\x75\x43\x6b\x2f\x57\x36\x6d','\x6f\x6d\x6f\x4e\x57\x36\x79\x65\x6f\x38\x6b\x37\x57\x4f\x39\x33','\x72\x38\x6f\x62\x64\x43\x6f\x36\x57\x52\x56\x64\x4b\x6d\x6f\x4d\x42\x47','\x71\x71\x70\x64\x47\x6d\x6f\x2b\x57\x36\x46\x64\x50\x61','\x57\x34\x2f\x63\x53\x59\x64\x63\x53\x61','\x6a\x43\x6b\x72\x72\x66\x62\x39','\x62\x53\x6f\x43\x61\x53\x6f\x34\x57\x37\x33\x63\x4e\x6d\x6b\x4e','\x57\x35\x66\x5a\x66\x38\x6b\x43\x42\x6d\x6b\x37\x72\x53\x6f\x35','\x57\x50\x52\x64\x47\x53\x6b\x52\x57\x50\x46\x64\x48\x53\x6f\x42\x66\x43\x6b\x67','\x62\x43\x6f\x4e\x63\x38\x6b\x42\x45\x71','\x73\x4d\x48\x42\x65\x43\x6b\x61\x57\x52\x64\x64\x4f\x62\x30','\x63\x78\x35\x38\x46\x33\x61','\x71\x38\x6b\x39\x6b\x49\x4b','\x6b\x53\x6b\x71\x45\x38\x6f\x39\x66\x32\x58\x43\x57\x36\x47','\x78\x43\x6f\x54\x57\x35\x2f\x63\x56\x38\x6f\x48\x57\x4f\x31\x6d\x45\x57','\x68\x4e\x37\x63\x4f\x53\x6b\x4b\x57\x50\x6a\x39\x57\x36\x6a\x4a','\x57\x52\x4a\x63\x56\x6d\x6b\x36','\x77\x75\x70\x64\x51\x78\x78\x63\x4f\x4b\x4f\x54\x57\x36\x71','\x6e\x43\x6f\x4a\x64\x53\x6b\x52\x71\x38\x6f\x74\x77\x38\x6b\x30','\x57\x50\x71\x55\x57\x34\x42\x64\x4f\x75\x34\x43\x45\x67\x30','\x6c\x43\x6b\x70\x46\x43\x6f\x48\x69\x61','\x57\x35\x33\x64\x51\x49\x71\x54\x44\x71','\x57\x34\x47\x63\x74\x43\x6f\x33\x57\x35\x42\x64\x54\x43\x6b\x6e\x57\x35\x71','\x57\x34\x6c\x63\x49\x5a\x44\x58\x57\x4f\x4b','\x57\x52\x71\x36\x57\x35\x52\x64\x4f\x38\x6b\x66\x57\x4f\x4f\x4d','\x57\x34\x37\x64\x52\x38\x6b\x49\x57\x35\x6a\x4c\x44\x47\x42\x63\x56\x47','\x57\x35\x6c\x63\x47\x57\x44\x51\x57\x50\x4b','\x57\x51\x30\x6e\x57\x51\x62\x79\x57\x4f\x72\x71\x65\x53\x6b\x30\x57\x50\x78\x64\x55\x6d\x6b\x49\x44\x32\x6d','\x57\x34\x5a\x64\x56\x74\x53\x59\x43\x5a\x2f\x63\x4d\x67\x75','\x61\x53\x6f\x49\x6f\x43\x6f\x39\x57\x4f\x56\x63\x55\x53\x6b\x52\x57\x36\x57','\x66\x61\x4b\x55\x57\x51\x68\x64\x51\x57\x42\x64\x50\x76\x43','\x46\x66\x6a\x35\x6e\x53\x6b\x41','\x66\x38\x6f\x69\x65\x53\x6b\x70\x44\x57','\x68\x43\x6f\x65\x57\x37\x7a\x59','\x45\x6d\x6f\x39\x57\x35\x4e\x63\x55\x6d\x6b\x7a','\x57\x37\x56\x64\x4e\x38\x6b\x70\x57\x36\x58\x74','\x57\x35\x70\x64\x54\x58\x33\x63\x4e\x53\x6b\x6e','\x79\x57\x58\x73\x57\x52\x62\x45\x72\x43\x6f\x58\x75\x47','\x57\x4f\x57\x4b\x57\x34\x70\x64\x4f\x31\x71\x37','\x57\x51\x68\x63\x4f\x43\x6b\x58\x71\x43\x6b\x73\x57\x34\x52\x63\x53\x30\x6d','\x57\x50\x78\x63\x4e\x48\x46\x64\x53\x6d\x6b\x58','\x77\x48\x6c\x63\x51\x43\x6b\x48\x69\x57','\x45\x6d\x6f\x4a\x57\x35\x52\x63\x56\x53\x6b\x58\x66\x71','\x64\x6d\x6f\x77\x74\x74\x4f\x63','\x6b\x6d\x6b\x77\x44\x43\x6f\x37','\x61\x38\x6f\x6e\x65\x6d\x6f\x33\x57\x51\x42\x64\x4a\x38\x6f\x33\x42\x47','\x70\x43\x6f\x4c\x6c\x38\x6f\x31\x57\x51\x71','\x63\x38\x6f\x4a\x64\x38\x6b\x48\x75\x53\x6f\x45\x45\x43\x6b\x49','\x64\x58\x57\x4a\x57\x50\x46\x64\x55\x62\x37\x63\x53\x75\x65','\x61\x66\x62\x4e\x77\x65\x30','\x57\x52\x4e\x63\x51\x53\x6b\x4b\x73\x6d\x6b\x64\x57\x35\x64\x63\x50\x66\x75','\x62\x53\x6b\x51\x77\x4e\x38','\x6b\x53\x6f\x4e\x61\x6d\x6b\x52\x74\x61','\x57\x50\x46\x63\x4f\x58\x6c\x64\x55\x6d\x6b\x43\x57\x35\x39\x66','\x45\x43\x6f\x54\x57\x36\x53\x75\x6c\x6d\x6f\x36\x57\x4f\x69\x4e','\x57\x37\x39\x74\x57\x36\x6d\x6b\x57\x35\x65\x52\x74\x38\x6b\x52','\x57\x37\x2f\x64\x51\x4a\x43\x59\x42\x31\x37\x63\x49\x33\x79','\x72\x62\x68\x64\x54\x43\x6f\x50\x57\x37\x74\x64\x53\x6d\x6f\x64','\x71\x66\x4e\x63\x4c\x62\x33\x64\x4f\x57','\x57\x51\x56\x63\x4c\x58\x57\x55\x57\x51\x65','\x42\x75\x42\x63\x4a\x53\x6b\x65\x57\x34\x6d','\x57\x50\x65\x56\x46\x47\x68\x64\x54\x38\x6b\x54\x57\x35\x48\x43','\x6f\x53\x6f\x4f\x57\x52\x2f\x64\x49\x53\x6b\x57\x57\x51\x5a\x63\x52\x6d\x6b\x30','\x57\x34\x70\x64\x4f\x32\x5a\x63\x4a\x61\x74\x63\x4d\x76\x6d\x6c','\x57\x4f\x42\x64\x55\x67\x4c\x69\x57\x34\x71','\x67\x38\x6b\x73\x57\x34\x31\x70\x6d\x71','\x63\x62\x57\x50','\x57\x52\x47\x69\x57\x4f\x78\x63\x4f\x5a\x37\x64\x4e\x31\x4b\x30','\x57\x36\x6e\x72\x65\x38\x6b\x72\x41\x47','\x43\x63\x64\x63\x56\x53\x6b\x4f\x6c\x61','\x57\x51\x69\x64\x57\x50\x33\x64\x50\x4a\x68\x64\x48\x66\x4b\x54','\x78\x47\x46\x64\x4d\x6d\x6f\x2b\x57\x36\x78\x64\x50\x43\x6f\x46\x57\x50\x30','\x6d\x6d\x6f\x52\x72\x5a\x47\x72','\x61\x4b\x48\x59\x57\x51\x52\x64\x4f\x58\x68\x64\x51\x65\x69','\x78\x53\x6b\x78\x57\x35\x7a\x75\x6b\x38\x6f\x42\x57\x52\x7a\x54','\x57\x50\x48\x74\x57\x36\x68\x64\x48\x6d\x6f\x77','\x7a\x4e\x42\x63\x55\x57\x4a\x64\x4e\x57','\x57\x4f\x79\x59\x75\x6d\x6b\x59\x75\x53\x6b\x33\x6c\x38\x6f\x61\x78\x61','\x65\x78\x75\x50\x57\x34\x57\x4e\x69\x6d\x6f\x71\x57\x52\x65','\x57\x52\x52\x64\x4c\x33\x76\x2f\x57\x36\x53','\x64\x33\x38\x48\x57\x34\x57','\x66\x6d\x6f\x62\x62\x6d\x6f\x36\x57\x52\x78\x64\x49\x53\x6f\x30\x72\x71','\x57\x36\x42\x64\x4f\x75\x5a\x63\x47\x4d\x47','\x57\x35\x50\x4a\x63\x43\x6b\x41\x43\x6d\x6b\x4c\x73\x6d\x6b\x54','\x57\x35\x70\x64\x4f\x68\x56\x63\x4b\x4b\x65','\x57\x36\x4c\x6f\x57\x37\x34\x69\x57\x35\x43\x6b\x64\x57','\x77\x6d\x6b\x6b\x64\x5a\x44\x53','\x57\x52\x4e\x63\x53\x73\x70\x63\x49\x53\x6f\x37','\x57\x51\x4e\x64\x4c\x38\x6b\x4b\x57\x35\x37\x64\x54\x6d\x6f\x42\x65\x38\x6b\x41','\x57\x52\x52\x64\x47\x4e\x31\x6a','\x57\x36\x68\x63\x4f\x4a\x46\x63\x49\x47\x6a\x52\x41\x53\x6f\x4d','\x65\x38\x6f\x61\x62\x53\x6f\x4e\x57\x52\x33\x64\x4c\x43\x6b\x4e\x42\x71','\x57\x35\x42\x64\x54\x59\x61\x4a\x43\x33\x42\x63\x47\x68\x4b','\x57\x36\x58\x71\x61\x43\x6b\x68\x79\x6d\x6b\x5a\x66\x43\x6f\x4f','\x57\x4f\x6c\x63\x4f\x58\x4e\x64\x4f\x53\x6b\x79\x57\x34\x65','\x71\x67\x35\x62','\x74\x68\x42\x63\x55\x6d\x6b\x4c\x57\x50\x6a\x52\x57\x37\x66\x56','\x57\x35\x35\x59\x68\x43\x6b\x51\x43\x43\x6b\x4f\x62\x38\x6f\x35','\x45\x38\x6b\x4c\x66\x48\x35\x64','\x57\x37\x6a\x2b\x61\x43\x6b\x77\x44\x38\x6b\x4f\x64\x38\x6f\x49','\x61\x53\x6b\x57\x57\x51\x50\x6f\x57\x34\x76\x44\x70\x61','\x57\x35\x35\x59\x61\x43\x6f\x76\x7a\x6d\x6b\x39\x64\x38\x6f\x48','\x57\x34\x46\x64\x54\x53\x6b\x64\x57\x37\x54\x41','\x70\x38\x6f\x31\x6d\x43\x6f\x30\x57\x50\x5a\x63\x53\x43\x6f\x35\x57\x36\x47','\x6b\x78\x62\x34\x77\x4c\x5a\x63\x53\x76\x78\x64\x4e\x57','\x57\x4f\x65\x6a\x57\x51\x4e\x64\x4c\x62\x38','\x57\x51\x74\x64\x49\x68\x76\x6a\x57\x35\x33\x63\x50\x65\x56\x64\x4c\x71','\x6d\x43\x6b\x7a\x57\x37\x35\x58\x63\x47','\x57\x50\x4a\x63\x4e\x61\x74\x63\x52\x53\x6f\x32\x57\x52\x44\x48\x62\x47','\x57\x4f\x53\x41\x79\x73\x56\x64\x4a\x57','\x74\x62\x6c\x64\x4e\x6d\x6b\x37\x57\x34\x37\x64\x51\x6d\x6f\x6b\x57\x50\x79','\x57\x50\x4a\x64\x4d\x71\x42\x63\x51\x53\x6f\x4e\x57\x52\x66\x52\x66\x71','\x66\x75\x47\x35\x57\x52\x33\x64\x52\x58\x70\x63\x4f\x62\x34','\x57\x52\x4e\x64\x49\x66\x62\x69\x57\x34\x30','\x57\x4f\x34\x32\x57\x50\x6c\x64\x53\x43\x6b\x4f\x66\x53\x6f\x34\x57\x37\x47','\x57\x35\x33\x64\x4e\x4d\x2f\x63\x4b\x4b\x47','\x74\x6d\x6b\x4f\x57\x35\x52\x63\x51\x53\x6f\x54\x57\x4f\x75\x73\x70\x57','\x67\x6d\x6f\x4e\x6d\x43\x6f\x69\x57\x4f\x43','\x72\x48\x53\x2f\x57\x51\x4a\x64\x51\x72\x5a\x63\x53\x75\x53','\x73\x53\x6b\x4f\x57\x35\x52\x63\x55\x38\x6f\x4d\x57\x50\x76\x53\x41\x71','\x6c\x53\x6b\x43\x43\x53\x6f\x59\x6d\x77\x30','\x42\x78\x4c\x61\x57\x51\x6e\x75\x57\x35\x4a\x63\x56\x53\x6b\x2b','\x57\x35\x68\x64\x54\x49\x69\x58\x70\x74\x38','\x6a\x6d\x6f\x70\x6f\x38\x6f\x7a\x57\x4f\x65','\x57\x52\x66\x70\x71\x76\x71','\x57\x36\x42\x63\x53\x57\x46\x63\x53\x71\x69','\x57\x37\x42\x63\x50\x57\x31\x6b\x57\x50\x6d\x48\x70\x62\x79','\x57\x35\x71\x34\x78\x38\x6f\x4c\x57\x34\x33\x64\x52\x47','\x57\x4f\x62\x47\x74\x78\x74\x64\x4c\x61','\x57\x50\x56\x63\x54\x4b\x64\x63\x49\x43\x6f\x4d\x65\x47\x79\x46','\x57\x52\x47\x76\x57\x52\x46\x64\x51\x4a\x5a\x64\x4d\x75\x69\x36','\x57\x4f\x6d\x31\x75\x43\x6f\x6e\x6d\x6d\x6f\x52\x75\x53\x6f\x6a\x79\x58\x4e\x64\x50\x61\x66\x4e','\x6e\x38\x6b\x6a\x70\x6d\x6f\x5a\x6a\x67\x58\x64\x57\x36\x79','\x57\x52\x6d\x36\x57\x34\x6c\x64\x53\x71','\x57\x35\x42\x63\x4a\x64\x43\x75\x57\x50\x35\x6a','\x43\x53\x6f\x43\x57\x35\x64\x64\x50\x57','\x57\x34\x74\x64\x4f\x32\x78\x63\x48\x75\x78\x63\x48\x30\x75\x4b','\x57\x37\x31\x77\x57\x36\x47\x71\x57\x35\x65','\x57\x50\x5a\x63\x47\x5a\x79\x75\x57\x50\x34\x65\x57\x51\x64\x64\x4c\x61','\x68\x43\x6f\x4a\x43\x4e\x79\x59\x45\x53\x6f\x71\x67\x43\x6b\x34\x63\x53\x6f\x4c\x66\x38\x6f\x7a','\x57\x51\x58\x63\x75\x65\x68\x64\x54\x71','\x57\x51\x46\x64\x49\x67\x54\x46\x57\x35\x68\x63\x56\x4b\x2f\x64\x4e\x71','\x57\x35\x42\x64\x55\x75\x37\x63\x4f\x68\x6d','\x57\x50\x42\x63\x54\x4e\x4c\x53\x6b\x74\x64\x63\x49\x68\x69','\x57\x51\x69\x64\x57\x50\x33\x64\x50\x4a\x68\x64\x48\x66\x6d\x37','\x57\x35\x50\x4a\x63\x43\x6b\x41\x43\x6d\x6b\x4c\x6f\x43\x6f\x51','\x57\x51\x46\x63\x47\x4d\x50\x79\x57\x34\x5a\x63\x53\x76\x52\x64\x4c\x61','\x57\x50\x5a\x63\x54\x53\x6b\x35\x73\x6d\x6b\x66\x57\x34\x68\x64\x4f\x75\x43','\x73\x57\x70\x64\x4e\x43\x6f\x33\x57\x36\x70\x64\x54\x71','\x41\x6d\x6b\x36\x57\x52\x34\x4d\x64\x38\x6f\x57\x57\x51\x44\x6b\x57\x51\x4f','\x57\x36\x39\x6a\x57\x51\x6d','\x57\x52\x7a\x6e\x76\x66\x74\x64\x48\x43\x6f\x45\x57\x4f\x5a\x63\x47\x71','\x57\x37\x69\x37\x57\x34\x70\x64\x52\x6d\x6b\x75\x57\x34\x79','\x6a\x53\x6b\x70\x44\x43\x6f\x32\x69\x64\x38\x70\x57\x37\x6d','\x57\x34\x5a\x63\x50\x48\x50\x37\x57\x50\x38','\x57\x37\x54\x44\x57\x37\x38\x68\x57\x35\x65\x67\x7a\x53\x6b\x47','\x57\x35\x56\x64\x4c\x78\x69\x6a\x57\x35\x79','\x7a\x30\x74\x63\x4e\x74\x33\x64\x54\x47','\x57\x52\x4c\x65\x72\x4c\x74\x64\x4b\x6d\x6f\x52\x57\x4f\x47','\x57\x34\x70\x64\x55\x67\x46\x63\x49\x4b\x38','\x75\x43\x6b\x58\x6a\x49\x66\x67','\x57\x52\x56\x64\x49\x65\x4c\x49\x57\x37\x38','\x57\x37\x46\x64\x49\x33\x7a\x45\x57\x50\x37\x63\x50\x65\x42\x64\x4d\x61','\x72\x43\x6b\x33\x6c\x73\x62\x32\x69\x61','\x42\x58\x52\x64\x55\x43\x6f\x6e\x57\x36\x61','\x57\x36\x62\x45\x57\x52\x78\x64\x4f\x5a\x64\x63\x49\x78\x68\x64\x4d\x57','\x74\x48\x46\x63\x54\x6d\x6b\x6c\x61\x61','\x57\x34\x47\x56\x57\x34\x6c\x64\x51\x4b\x76\x36','\x57\x4f\x4b\x59\x57\x36\x56\x64\x52\x75\x34\x36\x45\x4d\x30','\x75\x33\x37\x63\x54\x61','\x57\x34\x2f\x64\x4e\x75\x43\x2f\x57\x34\x72\x75\x46\x57','\x76\x74\x54\x68','\x46\x38\x6b\x4f\x57\x35\x46\x63\x55\x57','\x57\x36\x62\x6e\x57\x51\x78\x64\x54\x49\x33\x63\x4a\x33\x6c\x64\x47\x71','\x57\x51\x78\x63\x54\x53\x6b\x35\x76\x38\x6b\x64\x57\x50\x4a\x63\x54\x4c\x71','\x57\x52\x56\x64\x47\x67\x54\x48\x57\x35\x79','\x57\x34\x33\x63\x4e\x47\x6c\x63\x4f\x4a\x75','\x57\x35\x68\x64\x4a\x66\x75\x55\x57\x34\x4c\x77\x72\x77\x65','\x57\x52\x75\x4a\x57\x34\x33\x64\x54\x53\x6b\x75','\x6b\x53\x6f\x4e\x57\x36\x30\x70\x70\x53\x6f\x33\x57\x50\x30','\x57\x37\x54\x58\x57\x36\x75\x2f\x57\x34\x34','\x76\x53\x6b\x49\x57\x34\x2f\x63\x56\x38\x6f\x38\x57\x4f\x48\x67\x43\x71','\x65\x53\x6b\x79\x74\x68\x4c\x6c\x72\x38\x6b\x36','\x57\x35\x72\x4e\x66\x6d\x6b\x67\x44\x38\x6b\x57\x61\x38\x6f\x2b','\x74\x62\x6c\x64\x48\x6d\x6f\x33\x57\x37\x38','\x57\x36\x7a\x70\x57\x51\x74\x64\x51\x59\x56\x63\x4a\x4a\x33\x63\x4b\x47','\x57\x36\x64\x63\x54\x5a\x5a\x63\x53\x71','\x78\x74\x6c\x63\x52\x53\x6f\x50\x6c\x5a\x4c\x72\x66\x57','\x57\x52\x50\x74\x57\x34\x68\x64\x56\x6d\x6f\x46\x57\x34\x56\x64\x50\x49\x30','\x57\x52\x68\x63\x49\x64\x61\x42\x57\x4f\x4f','\x57\x50\x2f\x63\x4b\x74\x30','\x57\x34\x35\x39\x57\x50\x2f\x64\x49\x62\x30','\x57\x51\x72\x78\x57\x35\x2f\x64\x53\x38\x6f\x32\x57\x4f\x6d','\x57\x34\x4a\x64\x54\x59\x69\x51\x79\x4d\x5a\x63\x48\x4d\x71','\x61\x43\x6f\x4a\x64\x6d\x6b\x52','\x57\x34\x6c\x64\x50\x67\x4e\x63\x48\x75\x56\x63\x4e\x66\x47','\x57\x37\x6c\x64\x56\x59\x68\x63\x4b\x6d\x6b\x71','\x77\x53\x6b\x78\x64\x32\x62\x69\x57\x35\x78\x63\x53\x43\x6f\x41\x41\x38\x6f\x5a\x57\x34\x4a\x64\x47\x5a\x61','\x6f\x77\x54\x30\x78\x4c\x5a\x63\x54\x47','\x57\x52\x43\x74\x57\x4f\x6c\x64\x51\x4a\x5a\x64\x4c\x58\x79\x52','\x67\x38\x6b\x4d\x57\x4f\x50\x69\x57\x35\x35\x73\x69\x4a\x53','\x57\x4f\x5a\x63\x4a\x4a\x4b\x6b','\x57\x34\x4e\x64\x52\x38\x6b\x55\x57\x35\x76\x4c\x77\x48\x37\x63\x54\x47','\x57\x50\x61\x58\x57\x34\x4e\x64\x47\x6d\x6b\x73','\x74\x6d\x6b\x47\x6d\x73\x48\x57','\x57\x4f\x53\x34\x57\x50\x64\x64\x53\x43\x6b\x35\x72\x6d\x6b\x58','\x57\x37\x52\x63\x47\x58\x4a\x63\x4e\x58\x71','\x75\x63\x46\x63\x51\x6d\x6b\x55\x67\x49\x75','\x73\x62\x64\x63\x4c\x6d\x6f\x50\x57\x36\x70\x64\x4f\x43\x6f\x46\x57\x50\x47','\x72\x65\x4a\x64\x4f\x33\x37\x63\x4c\x71','\x71\x71\x46\x64\x4d\x53\x6f\x38\x57\x37\x6c\x64\x55\x71','\x57\x37\x78\x64\x49\x72\x4b\x69\x78\x47','\x57\x52\x38\x2f\x57\x51\x33\x64\x50\x6d\x6b\x67','\x57\x52\x4a\x64\x4d\x67\x31\x70\x57\x35\x68\x63\x56\x75\x53','\x69\x43\x6b\x79\x42\x6d\x6f\x4d\x6d\x67\x4c\x6b\x57\x37\x61','\x7a\x38\x6b\x4c\x57\x35\x64\x63\x52\x43\x6f\x38\x57\x4f\x35\x42\x7a\x47','\x67\x77\x54\x4e\x73\x31\x33\x63\x4f\x66\x46\x64\x50\x57','\x57\x4f\x69\x37\x57\x4f\x2f\x64\x50\x38\x6b\x55\x65\x53\x6f\x34\x57\x36\x75','\x57\x4f\x71\x54\x57\x50\x4e\x63\x4f\x53\x6b\x36\x62\x43\x6f\x57\x57\x37\x30','\x57\x37\x6d\x64\x57\x51\x70\x64\x50\x59\x4a\x63\x48\x77\x74\x64\x48\x47','\x68\x38\x6b\x58\x73\x4e\x54\x42\x41\x53\x6b\x37\x57\x35\x71','\x65\x4d\x4f\x63\x57\x35\x53\x74','\x57\x34\x5a\x64\x4d\x48\x4a\x63\x4e\x6d\x6b\x77','\x62\x33\x50\x34\x72\x76\x56\x63\x56\x68\x46\x64\x52\x61','\x57\x4f\x33\x63\x4c\x5a\x53\x7a\x57\x50\x34\x74\x57\x50\x71','\x6a\x63\x79\x2f\x57\x4f\x42\x64\x4c\x61','\x67\x38\x6b\x51\x78\x78\x7a\x41\x7a\x38\x6b\x58\x57\x34\x4b','\x64\x43\x6f\x6a\x57\x36\x6e\x2b\x71\x38\x6f\x39\x57\x4f\x39\x6c','\x57\x34\x6d\x6f\x75\x53\x6f\x30\x57\x36\x38','\x57\x37\x66\x55\x57\x37\x47\x41\x57\x35\x38','\x68\x64\x78\x63\x52\x38\x6b\x39\x62\x49\x6a\x71\x62\x47','\x57\x50\x70\x63\x4e\x43\x6b\x58\x7a\x43\x6b\x56','\x79\x53\x6b\x6a\x43\x38\x6f\x35\x6c\x67\x7a\x77\x57\x52\x4b','\x57\x50\x61\x46\x57\x52\x5a\x64\x48\x61\x79','\x62\x53\x6b\x38\x77\x4c\x4c\x53','\x57\x51\x64\x63\x4e\x43\x6b\x59\x43\x6d\x6b\x74','\x57\x36\x61\x59\x74\x6d\x6f\x31\x57\x34\x46\x63\x4f\x6d\x6b\x6d\x57\x34\x65','\x77\x38\x6b\x5a\x6d\x59\x39\x46\x41\x6d\x6b\x58\x64\x71','\x6b\x53\x6b\x61\x42\x6d\x6f\x36\x6d\x77\x31\x6b\x57\x37\x61','\x57\x52\x57\x78\x57\x36\x4e\x64\x48\x43\x6b\x32','\x57\x36\x4e\x63\x55\x49\x46\x63\x4f\x71\x47','\x6b\x58\x30\x55\x57\x51\x78\x64\x55\x62\x42\x63\x51\x4b\x4f','\x73\x63\x33\x63\x47\x6d\x6b\x47\x66\x49\x48\x62','\x57\x50\x64\x63\x50\x74\x4f\x71\x57\x4f\x47','\x57\x35\x62\x49\x57\x52\x33\x64\x48\x72\x43','\x6c\x43\x6f\x46\x57\x34\x7a\x70\x6b\x71','\x57\x35\x68\x64\x52\x33\x64\x64\x49\x31\x46\x63\x48\x4c\x43\x78','\x57\x52\x74\x63\x4b\x71\x68\x63\x55\x6d\x6f\x48\x57\x51\x58\x32\x67\x57','\x67\x38\x6f\x4a\x66\x43\x6f\x2f','\x57\x36\x33\x64\x54\x5a\x2f\x63\x55\x6d\x6b\x42\x76\x43\x6b\x55\x57\x36\x34','\x57\x34\x72\x56\x61\x38\x6b\x42\x79\x38\x6b\x57\x66\x71','\x6e\x38\x6f\x56\x57\x36\x43\x65','\x67\x59\x57\x65\x72\x6d\x6f\x67\x57\x34\x68\x63\x56\x4a\x6c\x64\x4d\x38\x6b\x36\x6b\x71\x37\x64\x54\x47','\x57\x4f\x52\x63\x4b\x64\x30\x42\x57\x50\x62\x61\x57\x4f\x70\x64\x4c\x61','\x57\x4f\x4e\x63\x52\x57\x42\x64\x50\x43\x6b\x43\x57\x35\x72\x74','\x66\x66\x68\x64\x54\x4e\x70\x63\x50\x66\x79\x4a\x57\x51\x69','\x57\x36\x33\x64\x50\x5a\x64\x63\x56\x53\x6b\x44\x75\x53\x6b\x34','\x6f\x78\x72\x54\x57\x51\x6a\x6e\x57\x35\x4a\x63\x51\x6d\x6f\x61','\x57\x4f\x57\x55\x44\x47\x4a\x64\x52\x6d\x6b\x67\x57\x34\x54\x6b','\x69\x6d\x6b\x76\x46\x43\x6f\x4d\x6d\x76\x44\x6f\x57\x36\x43','\x57\x34\x35\x50\x70\x4b\x61','\x63\x6d\x6f\x69\x75\x5a\x4f\x68\x57\x51\x5a\x64\x4f\x43\x6f\x6c','\x6b\x43\x6b\x37\x74\x67\x6e\x6c\x42\x43\x6b\x51\x57\x34\x69','\x64\x6d\x6b\x62\x57\x34\x39\x69\x68\x53\x6b\x75\x57\x4f\x54\x47','\x57\x35\x46\x64\x52\x73\x69\x48\x41\x68\x6c\x63\x49\x47','\x57\x52\x70\x64\x4e\x33\x62\x6b\x57\x34\x52\x63\x4c\x75\x64\x64\x4b\x61','\x57\x34\x75\x4e\x43\x61\x52\x64\x56\x6d\x6f\x63\x57\x34\x44\x6b','\x57\x37\x56\x64\x4f\x63\x68\x63\x53\x53\x6b\x6b','\x77\x43\x6b\x39\x57\x35\x68\x64\x56\x53\x6f\x61\x57\x50\x48\x7a\x43\x61','\x41\x32\x74\x63\x53\x63\x33\x64\x49\x74\x52\x64\x4b\x57','\x57\x35\x78\x64\x55\x30\x74\x63\x4f\x38\x6f\x6f\x57\x4f\x6e\x4b\x62\x4b\x30\x75\x57\x35\x42\x64\x4c\x61','\x57\x36\x56\x63\x50\x57\x58\x6b\x57\x50\x30\x4f\x6f\x61','\x57\x36\x68\x64\x49\x53\x6b\x55\x57\x37\x39\x36','\x57\x4f\x56\x63\x52\x65\x5a\x63\x4e\x6d\x6f\x37\x6a\x65\x47\x6a','\x57\x51\x72\x78\x57\x35\x64\x64\x50\x53\x6f\x53\x57\x4f\x6c\x64\x49\x74\x34','\x67\x66\x44\x45\x41\x30\x43','\x73\x4e\x64\x63\x47\x6d\x6b\x56\x57\x34\x76\x4f\x57\x36\x6a\x66','\x57\x52\x61\x5a\x43\x61\x61','\x57\x35\x52\x64\x54\x64\x6d\x4d','\x44\x4e\x4a\x63\x54\x5a\x42\x64\x47\x5a\x37\x64\x4a\x47','\x46\x65\x2f\x64\x53\x63\x43','\x57\x35\x52\x64\x55\x4e\x42\x64\x49\x31\x70\x63\x4d\x76\x38\x70','\x57\x4f\x57\x4b\x57\x34\x5a\x64\x54\x4b\x34\x36\x79\x67\x38','\x57\x36\x2f\x63\x54\x47\x7a\x4d\x57\x4f\x38\x37\x70\x61\x34','\x61\x30\x5a\x63\x4d\x38\x6b\x31\x57\x51\x4a\x63\x56\x53\x6f\x44\x57\x50\x57','\x72\x38\x6b\x6b\x65\x68\x54\x45\x57\x34\x56\x64\x52\x38\x6f\x6a','\x57\x37\x70\x64\x53\x59\x56\x63\x47\x53\x6b\x45\x73\x6d\x6b\x4e\x57\x36\x38','\x64\x53\x6f\x42\x69\x53\x6f\x4d\x57\x51\x42\x64\x48\x38\x6f\x2b','\x57\x4f\x6c\x63\x49\x49\x68\x63\x52\x57','\x78\x75\x4a\x64\x53\x64\x52\x63\x56\x66\x58\x53\x57\x51\x38','\x57\x51\x42\x63\x53\x72\x50\x76\x57\x50\x4b\x53\x6b\x72\x38','\x78\x76\x78\x64\x48\x77\x4a\x63\x4f\x4c\x6a\x36','\x61\x6d\x6f\x78\x46\x49\x43\x63\x57\x4f\x78\x64\x53\x71','\x68\x63\x64\x63\x50\x38\x6b\x4e\x61\x63\x48\x62\x74\x57','\x41\x43\x6f\x36\x57\x51\x68\x64\x48\x53\x6b\x4e\x57\x52\x33\x64\x51\x43\x6b\x32','\x74\x4c\x68\x64\x52\x68\x37\x63\x4b\x47','\x57\x4f\x75\x56\x57\x35\x4e\x64\x54\x57','\x6c\x49\x4f\x78\x57\x51\x37\x64\x4e\x61','\x57\x4f\x4b\x75\x57\x4f\x4e\x64\x54\x53\x6b\x39\x65\x6d\x6f\x38'];_0x1678=function(){return _0x3ea993;};return _0x1678();}const _0x51a8b9=_0x2d1b;(function(_0x48a685,_0x1904df){const _0x1a3e85=_0x2d1b,_0x5547dd=_0x48a685();while(!![]){try{const _0x463977=-parseInt(_0x1a3e85(0x22a,'\x47\x58\x4b\x39'))/(-0x1ad7*-0x1+0x1f4b*-0x1+0x475*0x1)*(-parseInt(_0x1a3e85(0x2a7,'\x6f\x46\x67\x33'))/(-0x1a5*-0x17+-0x215*0xd+-0xac0))+-parseInt(_0x1a3e85(0x2dc,'\x4c\x4a\x71\x74'))/(-0x3ad+-0xd97+-0x1147*-0x1)+-parseInt(_0x1a3e85(0x244,'\x69\x67\x46\x28'))/(-0x75e+-0x1d5b+0x24bd)*(parseInt(_0x1a3e85(0x242,'\x26\x48\x71\x4f'))/(0x1a11+-0x1d0d+-0x1*-0x301))+parseInt(_0x1a3e85(0x2ae,'\x57\x40\x48\x42'))/(-0x1165*0x1+-0x25c5+0x3730)*(-parseInt(_0x1a3e85(0x16d,'\x6a\x2a\x37\x33'))/(0xa71+0x23*0xe5+-0xb*0x3cb))+parseInt(_0x1a3e85(0x137,'\x69\x66\x25\x77'))/(-0x1ba2+-0x349+-0x13*-0x1a1)+-parseInt(_0x1a3e85(0x30e,'\x44\x24\x76\x41'))/(0x1627+0x27a+-0xc4c*0x2)*(-parseInt(_0x1a3e85(0x172,'\x4d\x54\x36\x30'))/(-0x6*-0x261+0x17*-0xfd+0x87f))+-parseInt(_0x1a3e85(0x1cf,'\x45\x59\x75\x54'))/(-0x7b9*0x5+0x971+0x1d37)*(-parseInt(_0x1a3e85(0x1a6,'\x47\x58\x4b\x39'))/(-0x11f7*-0x1+-0x1315+-0x12a*-0x1));if(_0x463977===_0x1904df)break;else _0x5547dd['push'](_0x5547dd['shift']());}catch(_0x32a9f7){_0x5547dd['push'](_0x5547dd['shift']());}}}(_0x1678,0x65*0x2285+-0xfa733+-0x1a5*-0x962));const _0x1a2e19=(function(){const _0x5f059e=_0x2d1b,_0x1ca497={'\x48\x72\x49\x42\x48':function(_0x36a861,_0x25ef4d){return _0x36a861(_0x25ef4d);},'\x6e\x7a\x67\x45\x6e':function(_0x24aa2e,_0x5dca32){return _0x24aa2e+_0x5dca32;},'\x43\x67\x58\x4d\x55':function(_0x406a47,_0x10ee8f){return _0x406a47+_0x10ee8f;},'\x62\x4d\x74\x56\x7a':function(_0x59c341,_0x12c911){return _0x59c341+_0x12c911;},'\x72\x43\x4b\x41\x68':function(_0x3fe925,_0x47d5b2){return _0x3fe925+_0x47d5b2;},'\x71\x58\x4c\x70\x6e':_0x5f059e(0x1a9,'\x58\x5b\x67\x63'),'\x74\x70\x57\x53\x58':_0x5f059e(0x13c,'\x47\x58\x4b\x39')+'\x5b','\x41\x52\x50\x56\x61':function(_0x4bfb07,_0x2a9f75){return _0x4bfb07!==_0x2a9f75;},'\x6f\x52\x4b\x43\x69':_0x5f059e(0x1fd,'\x28\x38\x34\x45')};let _0x3f1486=!![];return function(_0x295162,_0x215365){const _0x5041b5=_0x5f059e,_0x502b4e={'\x51\x4e\x70\x41\x57':function(_0x1226ec,_0x5c3e4e){const _0x480b6b=_0x2d1b;return _0x1ca497[_0x480b6b(0x19f,'\x65\x36\x61\x79')](_0x1226ec,_0x5c3e4e);},'\x78\x58\x7a\x75\x4d':function(_0xeefe80,_0x492ee2){return _0x1ca497['\x6e\x7a\x67\x45\x6e'](_0xeefe80,_0x492ee2);},'\x6a\x54\x6d\x79\x6c':function(_0x306120,_0x42fe92){const _0x5d8f69=_0x2d1b;return _0x1ca497[_0x5d8f69(0xb6,'\x5a\x30\x7a\x42')](_0x306120,_0x42fe92);},'\x51\x55\x70\x64\x7a':function(_0x32c5ba,_0x13553a){const _0x22a945=_0x2d1b;return _0x1ca497[_0x22a945(0xef,'\x4c\x4a\x71\x74')](_0x32c5ba,_0x13553a);},'\x45\x66\x49\x6d\x6d':function(_0x2398d1,_0x5aacd6){return _0x1ca497['\x72\x43\x4b\x41\x68'](_0x2398d1,_0x5aacd6);},'\x70\x6e\x67\x64\x45':_0x5041b5(0xce,'\x6a\x2a\x37\x33')+_0x5041b5(0xd4,'\x77\x25\x23\x77')+_0x5041b5(0x1c3,'\x21\x49\x38\x24')+'\x3d','\x45\x48\x4c\x77\x44':_0x1ca497[_0x5041b5(0x91,'\x55\x6e\x55\x59')],'\x50\x74\x73\x63\x5a':_0x1ca497[_0x5041b5(0x262,'\x4f\x76\x70\x38')]};if(_0x1ca497[_0x5041b5(0x2a0,'\x48\x4b\x50\x5d')](_0x1ca497['\x6f\x52\x4b\x43\x69'],_0x5041b5(0x2a1,'\x76\x53\x4c\x51')))_0x502b4e[_0x5041b5(0x2e1,'\x64\x50\x51\x24')](_0x110fef,_0x502b4e['\x78\x58\x7a\x75\x4d'](_0x502b4e[_0x5041b5(0xae,'\x21\x49\x38\x24')](_0x502b4e[_0x5041b5(0x301,'\x4c\x26\x61\x59')](_0x502b4e[_0x5041b5(0x16a,'\x5a\x30\x7a\x42')](_0x502b4e[_0x5041b5(0x10c,'\x63\x2a\x45\x33')],_0x1d775b[_0x5041b5(0x2e8,'\x6a\x2a\x37\x33')+_0x5041b5(0xf1,'\x76\x59\x79\x67')]||_0x502b4e[_0x5041b5(0xeb,'\x4c\x77\x40\x5b')]),_0x502b4e[_0x5041b5(0x196,'\x55\x6e\x55\x59')]),_0x3eeb83[_0x5041b5(0x15f,'\x57\x40\x48\x42')](_0x1e7658[_0x5041b5(0xc5,'\x51\x40\x54\x25')+_0x5041b5(0xb8,'\x4c\x77\x40\x5b')])?_0x232242[_0x5041b5(0x26c,'\x21\x49\x38\x24')+_0x5041b5(0x266,'\x28\x38\x34\x45')][_0x5041b5(0x2ba,'\x43\x36\x71\x53')]('\x2c'):''),'\x5d'));else{const _0x25ce10=_0x3f1486?function(){const _0x277c32=_0x5041b5;if(_0x215365){const _0x52876d=_0x215365[_0x277c32(0x209,'\x69\x66\x25\x77')](_0x295162,arguments);return _0x215365=null,_0x52876d;}}:function(){};return _0x3f1486=![],_0x25ce10;}};}()),_0x214a63=_0x1a2e19(this,function(){const _0x73ef4a=_0x2d1b,_0x151489={};_0x151489[_0x73ef4a(0x2e3,'\x7a\x38\x21\x47')]=_0x73ef4a(0x2b6,'\x7a\x38\x21\x47')+_0x73ef4a(0x13f,'\x32\x48\x42\x32');const _0x187059=_0x151489;return _0x214a63['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x73ef4a(0x29e,'\x51\x40\x54\x25')](_0x187059[_0x73ef4a(0xd8,'\x57\x54\x73\x5b')])[_0x73ef4a(0x205,'\x39\x40\x77\x55')]()[_0x73ef4a(0x22e,'\x26\x48\x71\x4f')+_0x73ef4a(0x185,'\x6a\x2a\x37\x33')](_0x214a63)[_0x73ef4a(0x291,'\x7a\x4b\x62\x6a')](_0x187059[_0x73ef4a(0x11f,'\x6b\x63\x44\x70')]);});_0x214a63();'use strict';const {selectGeneAndCapsule:_0x42cee0}=require(_0x51a8b9(0x24d,'\x65\x36\x61\x79')+_0x51a8b9(0x116,'\x58\x5b\x67\x63')+'\x6f\x72'),{buildMutation:_0x2d7bc4,isHighRiskMutationAllowed:_0x1f5fb1}=require(_0x51a8b9(0x157,'\x47\x4a\x26\x50')+_0x51a8b9(0x253,'\x4c\x4a\x71\x74')+'\x6f\x6e'),{selectPersonalityForRun:_0x2f7c38}=require(_0x51a8b9(0x158,'\x57\x40\x48\x42')+_0x51a8b9(0x1cb,'\x57\x40\x48\x42')+_0x51a8b9(0x12b,'\x4c\x77\x40\x5b')),_0x3467fd=require(_0x51a8b9(0x1c4,'\x4f\x76\x70\x38')+_0x51a8b9(0x255,'\x61\x25\x4b\x37')+_0x51a8b9(0x2f9,'\x69\x31\x74\x45')+'\x70\x74\x65\x72'),{recordHypothesis:_0xfbddf7,recordAttempt:_0x565591,memoryGraphPath:_0x30dbaf}=_0x3467fd,{expandSignals:_0x1b3655}=require(_0x51a8b9(0xca,'\x69\x31\x74\x45')+_0x51a8b9(0x186,'\x6a\x45\x42\x38')+_0x51a8b9(0x1d4,'\x64\x50\x51\x24')+'\x73'),{resolveStrategy:_0x595225}=require(_0x51a8b9(0x19d,'\x75\x68\x7a\x39')+_0x51a8b9(0xcd,'\x4c\x26\x61\x59')+'\x67\x79');function _0x5d05c9(..._0x108469){const _0x5cc1f5=_0x51a8b9,_0x190d6e={'\x59\x75\x6f\x70\x6d':function(_0x2e1519,_0x12c5af){return _0x2e1519!==_0x12c5af;},'\x6e\x5a\x74\x4f\x56':function(_0xd3e9d6,_0x453880){return _0xd3e9d6(_0x453880);},'\x64\x4b\x62\x74\x41':_0x5cc1f5(0x1e7,'\x68\x48\x51\x62')};if(_0x190d6e[_0x5cc1f5(0x222,'\x38\x50\x46\x46')](_0x190d6e[_0x5cc1f5(0xa8,'\x32\x48\x42\x32')](String,process.env.EVOLVER_VERBOSE||'')[_0x5cc1f5(0x14f,'\x6a\x45\x42\x38')+_0x5cc1f5(0xf9,'\x51\x40\x54\x25')](),_0x190d6e[_0x5cc1f5(0x292,'\x26\x48\x71\x4f')]))return;_0x108469[_0x5cc1f5(0x174,'\x57\x54\x73\x5b')](_0x5cc1f5(0x98,'\x44\x24\x76\x41')+'\x5d'),console['\x6c\x6f\x67'][_0x5cc1f5(0x238,'\x57\x40\x48\x42')](console,_0x108469);}function _0x2d1b(_0x54fa16,_0x24f836){_0x54fa16=_0x54fa16-(-0xe0a+0x1385+-0x4f1);const _0x36cb3a=_0x1678();let _0x5454c9=_0x36cb3a[_0x54fa16];if(_0x2d1b['\x46\x78\x67\x70\x43\x61']===undefined){var _0x5d9a3d=function(_0x743b22){const _0x8eff0b='\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 _0x3cf025='',_0x118ed8='',_0x881207=_0x3cf025+_0x5d9a3d,_0x423963=(''+function(){return-0x14aa+-0x21d+-0x77*-0x31;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x3e5*0x1+-0x3ec+0x7d2);for(let _0x3db61d=-0x27d*-0xe+-0x20b+-0x20cb,_0x4ac897,_0x30986d,_0x348b05=-0x2*0x38b+0x1*0xbc3+-0x4ad;_0x30986d=_0x743b22['\x63\x68\x61\x72\x41\x74'](_0x348b05++);~_0x30986d&&(_0x4ac897=_0x3db61d%(0x8c8*-0x1+-0x8ea+-0x1*-0x11b6)?_0x4ac897*(0x53b+-0x1*0x24ac+0x1fb1)+_0x30986d:_0x30986d,_0x3db61d++%(0xc1*-0x13+0x1*-0xb57+-0x13*-0x15a))?_0x3cf025+=_0x423963||_0x881207['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x348b05+(-0x6e3+0x15ed*-0x1+-0x3*-0x99e))-(-0x177f+0x6d*0x1f+0xa56)!==-0xdab*-0x1+0x6d7+-0x1e*0xaf?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0xa49+0xe11*0x1+-0x17*0x1f&_0x4ac897>>(-(-0x6a3+-0x254c+0x2bf1)*_0x3db61d&-0xc7*0x13+-0x34e+0x1219)):_0x3db61d:-0x1*-0x237b+-0x794+0x1*-0x1be7){_0x30986d=_0x8eff0b['\x69\x6e\x64\x65\x78\x4f\x66'](_0x30986d);}for(let _0x251b82=0x21d*0x1+0xf95+-0x5*0x38a,_0x551168=_0x3cf025['\x6c\x65\x6e\x67\x74\x68'];_0x251b82<_0x551168;_0x251b82++){_0x118ed8+='\x25'+('\x30\x30'+_0x3cf025['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x251b82)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x1b0f+-0x73+0x1b92))['\x73\x6c\x69\x63\x65'](-(-0x24d*0xb+0xb77+0x9*0x18a));}return decodeURIComponent(_0x118ed8);};const _0x588a2a=function(_0xa78994,_0x23e9c0){let _0x4742de=[],_0x3206e8=0x2389+0x4*0x605+-0x13df*0x3,_0x2d7dec,_0x345f16='';_0xa78994=_0x5d9a3d(_0xa78994);let _0x2e00f7;for(_0x2e00f7=-0x1d85+0x1*-0x679+0x23fe;_0x2e00f7<0x12c+-0x88*0x2d+0x17bc;_0x2e00f7++){_0x4742de[_0x2e00f7]=_0x2e00f7;}for(_0x2e00f7=-0xd*0x2eb+0x24e1+-0xa*-0x1b;_0x2e00f7<0x426*0x7+-0xae1*0x1+-0x1129;_0x2e00f7++){_0x3206e8=(_0x3206e8+_0x4742de[_0x2e00f7]+_0x23e9c0['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2e00f7%_0x23e9c0['\x6c\x65\x6e\x67\x74\x68']))%(0x130e+-0xc6c+-0x2*0x2d1),_0x2d7dec=_0x4742de[_0x2e00f7],_0x4742de[_0x2e00f7]=_0x4742de[_0x3206e8],_0x4742de[_0x3206e8]=_0x2d7dec;}_0x2e00f7=-0x8*0x351+0x1d23*0x1+0x17*-0x1d,_0x3206e8=0x21e5+-0x14c1+-0xd24;for(let _0xac7f30=-0x1e7*0xd+0x1029+0x892;_0xac7f30<_0xa78994['\x6c\x65\x6e\x67\x74\x68'];_0xac7f30++){_0x2e00f7=(_0x2e00f7+(0x1a*0x2a+-0xcf5*-0x1+-0x1d*0x98))%(0x37d+0x92e+-0x1*0xbab),_0x3206e8=(_0x3206e8+_0x4742de[_0x2e00f7])%(0x49e+0x8fc+-0xc9a),_0x2d7dec=_0x4742de[_0x2e00f7],_0x4742de[_0x2e00f7]=_0x4742de[_0x3206e8],_0x4742de[_0x3206e8]=_0x2d7dec,_0x345f16+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0xa78994['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xac7f30)^_0x4742de[(_0x4742de[_0x2e00f7]+_0x4742de[_0x3206e8])%(0x2392+0x19*-0x135+-0x465)]);}return _0x345f16;};_0x2d1b['\x58\x74\x78\x6c\x47\x78']=_0x588a2a,_0x2d1b['\x7a\x78\x4a\x54\x43\x51']={},_0x2d1b['\x46\x78\x67\x70\x43\x61']=!![];}const _0x1ed750=_0x36cb3a[-0xd*-0x29+-0x1d*0x7b+0xbda],_0x48c46c=_0x54fa16+_0x1ed750,_0xa502cd=_0x2d1b['\x7a\x78\x4a\x54\x43\x51'][_0x48c46c];if(!_0xa502cd){if(_0x2d1b['\x6e\x59\x74\x67\x75\x75']===undefined){const _0x2b3f29=function(_0x14ebb1){this['\x7a\x61\x5a\x6f\x4d\x79']=_0x14ebb1,this['\x4f\x59\x42\x49\x6b\x5a']=[0x1a20+0x1993*-0x1+0x1c*-0x5,0x9e8*0x1+-0x1*-0x198d+0x1d*-0x139,-0x6d3*0x1+-0x1*-0x7d+0x1*0x656],this['\x54\x6f\x45\x73\x52\x4a']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x6b\x7a\x62\x75\x66\x73']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x49\x58\x59\x63\x71\x6a']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x2b3f29['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x43\x79\x68\x6b\x74\x6e']=function(){const _0x1e9fb1=new RegExp(this['\x6b\x7a\x62\x75\x66\x73']+this['\x49\x58\x59\x63\x71\x6a']),_0x11b680=_0x1e9fb1['\x74\x65\x73\x74'](this['\x54\x6f\x45\x73\x52\x4a']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x4f\x59\x42\x49\x6b\x5a'][-0x2*-0x656+0xc04+-0x47*0x59]:--this['\x4f\x59\x42\x49\x6b\x5a'][0xf*-0x1bd+-0x1*-0x4c4+0x154f*0x1];return this['\x69\x41\x41\x67\x55\x4b'](_0x11b680);},_0x2b3f29['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x69\x41\x41\x67\x55\x4b']=function(_0x108d47){if(!Boolean(~_0x108d47))return _0x108d47;return this['\x43\x45\x6f\x58\x74\x62'](this['\x7a\x61\x5a\x6f\x4d\x79']);},_0x2b3f29['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x43\x45\x6f\x58\x74\x62']=function(_0x1a2546){for(let _0x50ef05=-0x1c9*0x7+-0x716+0x1395,_0x4d6713=this['\x4f\x59\x42\x49\x6b\x5a']['\x6c\x65\x6e\x67\x74\x68'];_0x50ef05<_0x4d6713;_0x50ef05++){this['\x4f\x59\x42\x49\x6b\x5a']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x4d6713=this['\x4f\x59\x42\x49\x6b\x5a']['\x6c\x65\x6e\x67\x74\x68'];}return _0x1a2546(this['\x4f\x59\x42\x49\x6b\x5a'][-0x10ca+-0x2ce+0x1398]);},(''+function(){return 0x870+-0x2*-0x7db+0xc13*-0x2;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x486+0x15*0x18b+-0x24ec)&&new _0x2b3f29(_0x2d1b)['\x43\x79\x68\x6b\x74\x6e'](),_0x2d1b['\x6e\x59\x74\x67\x75\x75']=!![];}_0x5454c9=_0x2d1b['\x58\x74\x78\x6c\x47\x78'](_0x5454c9,_0x24f836),_0x2d1b['\x7a\x78\x4a\x54\x43\x51'][_0x48c46c]=_0x5454c9;}else _0x5454c9=_0xa502cd;return _0x5454c9;}function _0x294631(_0x4ed07b){const _0x22754c=_0x51a8b9,_0x3a7515={'\x53\x55\x54\x57\x72':function(_0x8b5a89){return _0x8b5a89();},'\x43\x61\x69\x55\x59':function(_0x2a3236,_0x23c636){return _0x2a3236(_0x23c636);},'\x6a\x42\x4f\x72\x68':function(_0x26534f,_0x36bcda){return _0x26534f===_0x36bcda;},'\x4c\x62\x78\x61\x42':_0x22754c(0xf5,'\x4c\x77\x40\x5b'),'\x52\x77\x55\x59\x41':function(_0x3d0c87,_0x2ffcb1){return _0x3d0c87!==_0x2ffcb1;},'\x6b\x47\x51\x71\x63':function(_0x3ab602,_0x54a909){return _0x3ab602===_0x54a909;},'\x4f\x6d\x7a\x68\x76':_0x22754c(0x13b,'\x75\x68\x7a\x39'),'\x69\x4a\x59\x4c\x72':function(_0x507190,_0x2d97cd){return _0x507190-_0x2d97cd;},'\x59\x4f\x78\x6d\x61':function(_0xdcf041,_0x320cec){return _0xdcf041>=_0x320cec;},'\x6e\x47\x62\x6a\x73':_0x22754c(0x1a2,'\x77\x25\x23\x77'),'\x42\x78\x4d\x56\x66':function(_0x4abf95,_0x375877){return _0x4abf95===_0x375877;},'\x4f\x75\x73\x6e\x4a':_0x22754c(0x25c,'\x43\x36\x71\x53'),'\x46\x63\x65\x5a\x78':function(_0x3afdeb,_0x4f4a7c){return _0x3afdeb-_0x4f4a7c;},'\x70\x7a\x47\x72\x57':function(_0x17863c,_0x4f09d7){return _0x17863c>=_0x4f09d7;},'\x55\x6e\x4e\x48\x41':function(_0x243240,_0x23e2da){return _0x243240===_0x23e2da;},'\x41\x79\x4d\x47\x54':_0x22754c(0xcf,'\x47\x4a\x26\x50'),'\x74\x73\x62\x64\x6b':_0x22754c(0x1e2,'\x26\x48\x71\x4f')+_0x22754c(0x264,'\x56\x31\x48\x45')+_0x22754c(0x2c4,'\x47\x4a\x26\x50'),'\x65\x78\x6b\x74\x4b':_0x22754c(0x2bb,'\x57\x40\x48\x42')+'\x72','\x4d\x51\x4f\x4a\x59':function(_0x5c075a,_0x24375a){return _0x5c075a+_0x24375a;},'\x45\x50\x4a\x74\x70':_0x22754c(0x1aa,'\x76\x59\x79\x67')+_0x22754c(0x1fb,'\x76\x53\x4c\x51'),'\x61\x73\x4c\x4b\x57':_0x22754c(0x29a,'\x4c\x77\x40\x5b')+_0x22754c(0x145,'\x32\x48\x42\x32')+_0x22754c(0x24b,'\x57\x54\x73\x5b')+_0x22754c(0x24c,'\x44\x24\x76\x41')+_0x22754c(0x237,'\x76\x59\x79\x67')+'\x69\x67\x6e\x61\x6c\x73\x3b\x20'+_0x22754c(0x294,'\x65\x36\x61\x79')+_0x22754c(0x193,'\x4f\x76\x70\x38')+_0x22754c(0xaa,'\x45\x59\x75\x54')+_0x22754c(0x2d0,'\x6a\x45\x42\x38')+_0x22754c(0x131,'\x21\x49\x38\x24')+_0x22754c(0x1e6,'\x4a\x42\x6d\x67')+_0x22754c(0x25e,'\x4a\x42\x6d\x67')+_0x22754c(0x2b7,'\x65\x72\x37\x76'),'\x50\x61\x50\x50\x54':function(_0x374674,_0x305c61){return _0x374674>=_0x305c61;},'\x53\x70\x48\x6a\x74':'\x54\x61\x72\x67\x65\x74\x20\x6d'+_0x22754c(0x275,'\x69\x31\x74\x45')+_0x22754c(0xdd,'\x4c\x26\x61\x59')+_0x22754c(0xab,'\x56\x35\x50\x46')+'\x20'},_0x489808=Array[_0x22754c(0x15a,'\x5a\x30\x7a\x42')](_0x4ed07b&&_0x4ed07b['\x72\x65\x63\x65\x6e\x74\x45\x76'+_0x22754c(0x163,'\x56\x31\x48\x45')])?_0x4ed07b[_0x22754c(0x1e0,'\x47\x4a\x26\x50')+_0x22754c(0xb7,'\x29\x5a\x39\x34')]:[],_0x33d567=_0x4ed07b&&_0x4ed07b[_0x22754c(0x308,'\x47\x4a\x26\x50')+'\x47\x65\x6e\x65']?_0x4ed07b[_0x22754c(0x290,'\x48\x4b\x50\x5d')+_0x22754c(0xe7,'\x38\x50\x46\x46')]:null,_0x44243a=Array[_0x22754c(0x2fa,'\x47\x4a\x26\x50')](_0x4ed07b&&_0x4ed07b[_0x22754c(0x184,'\x4a\x7a\x74\x68')])?_0x4ed07b['\x73\x69\x67\x6e\x61\x6c\x73']:[],_0x1d768e={};_0x1d768e[_0x22754c(0x1a3,'\x77\x25\x23\x77')]=_0x44243a;const _0x1704b8=_0x595225(_0x1d768e),_0x3e5e6e=_0x489808[_0x22754c(0x1b0,'\x7a\x6b\x29\x33')](-(0x19*0x3b+-0x1a3*0xb+0xc46));let _0x43e73b=0x1855*-0x1+-0xda0+-0x7b*-0x4f;for(let _0x1adff7=_0x3a7515[_0x22754c(0x226,'\x4a\x7a\x74\x68')](_0x3e5e6e[_0x22754c(0xde,'\x55\x6e\x55\x59')],0x501*0x1+0xbce+-0x6*0x2cd);_0x3a7515[_0x22754c(0x309,'\x57\x40\x48\x42')](_0x1adff7,0x2d8+-0x3d+-0x29b);_0x1adff7--){if(_0x3a7515[_0x22754c(0x9d,'\x55\x6e\x55\x59')](_0x3a7515[_0x22754c(0x12e,'\x51\x40\x54\x25')],'\x4e\x52\x47\x52\x59')){if(_0x3e5e6e[_0x1adff7]&&_0x3a7515[_0x22754c(0xdf,'\x47\x4a\x26\x50')](_0x3e5e6e[_0x1adff7][_0x22754c(0x24a,'\x4d\x54\x36\x30')],_0x3a7515[_0x22754c(0x2ef,'\x6f\x46\x67\x33')]))_0x43e73b++;else break;}else{_0x386671[_0x22754c(0x28e,'\x32\x48\x42\x32')](_0x22754c(0x27f,'\x45\x59\x75\x54')+_0x22754c(0x2af,'\x65\x36\x61\x79')+_0x22754c(0xfc,'\x69\x31\x74\x45')+_0x22754c(0x13a,'\x63\x2a\x45\x33')+_0x22754c(0x1fa,'\x6a\x2a\x37\x33')+_0x257690[_0x22754c(0x216,'\x4c\x26\x61\x59')]),_0xea9d9e[_0x22754c(0x2d6,'\x69\x31\x74\x45')](_0x22754c(0x215,'\x55\x6e\x55\x59')+_0x22754c(0x263,'\x64\x50\x51\x24')+_0x22754c(0x2c8,'\x44\x24\x76\x41')+'\x6f\x20\x65\x76\x6f\x6c\x76\x65'+_0x22754c(0x121,'\x28\x38\x34\x45')+_0x22754c(0x170,'\x51\x40\x54\x25')+_0x22754c(0x2d2,'\x63\x2a\x45\x33')+_0x22754c(0x20d,'\x51\x40\x54\x25')+_0x3a7515['\x53\x55\x54\x57\x72'](_0x2f23e3));throw new _0x1350a1(_0x22754c(0x1b9,'\x57\x54\x73\x5b')+_0x22754c(0x147,'\x38\x50\x46\x46')+_0x22754c(0x96,'\x5a\x30\x7a\x42')+_0x22754c(0x232,'\x77\x25\x23\x77')+_0x22754c(0x272,'\x7a\x4b\x62\x6a')+_0x18dec4['\x6d\x65\x73\x73\x61\x67\x65']);}}let _0x46fa7b=-0x1cba*0x1+0x19f7+0x2c3*0x1;for(let _0x1035c7=_0x3a7515[_0x22754c(0x29f,'\x47\x4a\x26\x50')](_0x3e5e6e[_0x22754c(0x10d,'\x47\x4a\x26\x50')],-0x1f9d*0x1+0x278*-0xb+0x2*0x1d63);_0x3a7515[_0x22754c(0x2bf,'\x58\x5b\x67\x63')](_0x1035c7,-0x8*0x4d3+-0x411*-0x2+0x7*0x45a);_0x1035c7--){if(_0x3e5e6e[_0x1035c7]&&_0x3e5e6e[_0x1035c7][_0x22754c(0x1e9,'\x32\x48\x42\x32')]&&_0x3a7515[_0x22754c(0x1ad,'\x69\x66\x25\x77')](_0x3e5e6e[_0x1035c7][_0x22754c(0x167,'\x58\x5b\x67\x63')][_0x22754c(0x101,'\x4a\x42\x6d\x67')],_0x3a7515[_0x22754c(0x124,'\x4a\x7a\x74\x68')]))_0x46fa7b++;else break;}const _0x259f5b=_0x33d567&&Array[_0x22754c(0x17d,'\x64\x50\x51\x24')](_0x33d567[_0x22754c(0x29b,'\x47\x4a\x26\x50')+_0x22754c(0x280,'\x76\x53\x4c\x51')])?_0x33d567[_0x22754c(0x1bf,'\x39\x40\x77\x55')+_0x22754c(0x1d3,'\x51\x40\x54\x25')][_0x22754c(0x27d,'\x51\x40\x54\x25')](-(-0xffb+-0x93c+0x193c)):[],_0x2feea2=_0x33d567&&Array[_0x22754c(0x9f,'\x26\x48\x71\x4f')](_0x33d567[_0x22754c(0x23b,'\x4f\x76\x70\x38')+_0x22754c(0x132,'\x45\x59\x75\x54')])?_0x33d567[_0x22754c(0x155,'\x56\x31\x48\x45')+_0x22754c(0x112,'\x38\x50\x46\x46')][_0x22754c(0x27d,'\x51\x40\x54\x25')](-(-0x8*0x3e1+-0x16*-0xbb+-0x3bf*-0x4)):[],_0x4602f1=new Set(_0x1b3655(_0x44243a,'')),_0x1b0ecf=_0x259f5b[_0x22754c(0x1c5,'\x45\x59\x75\x54')](function(_0x27e098){const _0x400f8b=_0x22754c;return _0x27e098&&Array[_0x400f8b(0x2fa,'\x47\x4a\x26\x50')](_0x27e098[_0x400f8b(0x14d,'\x4d\x54\x36\x30')+_0x400f8b(0x228,'\x76\x59\x79\x67')])&&_0x27e098['\x6c\x65\x61\x72\x6e\x69\x6e\x67'+'\x5f\x73\x69\x67\x6e\x61\x6c\x73'][_0x400f8b(0x2ad,'\x51\x40\x54\x25')](function(_0x46adf7){const _0x1698ce=_0x400f8b;return _0x4602f1[_0x1698ce(0x26e,'\x38\x50\x46\x46')](_0x3a7515[_0x1698ce(0x2ca,'\x64\x50\x51\x24')](String,_0x46adf7));});}),_0x2e630f=_0x1b0ecf[_0x22754c(0x274,'\x61\x25\x4b\x37')](function(_0x385e89){const _0x1f8a37=_0x22754c;return _0x385e89&&_0x3a7515[_0x1f8a37(0x250,'\x77\x25\x23\x77')](_0x385e89[_0x1f8a37(0x94,'\x4c\x26\x61\x59')],_0x3a7515[_0x1f8a37(0x1d8,'\x68\x48\x51\x62')]);})[_0x22754c(0x258,'\x4c\x77\x40\x5b')],_0x4ae66f=_0x1b0ecf[_0x22754c(0x241,'\x38\x50\x46\x46')](function(_0x2f8e04){const _0xe5c211=_0x22754c;return _0x2f8e04&&_0x3a7515[_0xe5c211(0x130,'\x4a\x77\x32\x4e')](_0x2f8e04[_0xe5c211(0x8b,'\x48\x4b\x50\x5d')],_0x3a7515[_0xe5c211(0x306,'\x28\x38\x34\x45')]);})[_0x22754c(0xfb,'\x4d\x54\x36\x30')],_0x41c4d8=_0x2feea2[_0x22754c(0x99,'\x4f\x76\x70\x38')](function(_0x59bfde){const _0x1493c4=_0x22754c;return _0x59bfde&&_0x3a7515[_0x1493c4(0x2a5,'\x4c\x26\x61\x59')](_0x59bfde[_0x1493c4(0x1eb,'\x5a\x30\x7a\x42')],_0x3a7515[_0x1493c4(0x1b5,'\x56\x35\x50\x46')]);})[_0x22754c(0x1d5,'\x61\x25\x4b\x37')],_0x1ed702=_0x44243a[_0x22754c(0x2b8,'\x64\x50\x51\x24')](_0x3a7515[_0x22754c(0x1b2,'\x56\x35\x50\x46')])||_0x44243a[_0x22754c(0x13d,'\x32\x48\x42\x32')](_0x22754c(0x1ef,'\x76\x53\x4c\x51')+_0x22754c(0x2d7,'\x6b\x63\x44\x70')+_0x22754c(0x284,'\x43\x36\x71\x53'))||_0x44243a[_0x22754c(0x117,'\x76\x59\x79\x67')]('\x65\x6d\x70\x74\x79\x5f\x63\x79'+_0x22754c(0x1dd,'\x7a\x38\x21\x47')+_0x22754c(0x141,'\x76\x59\x79\x67')+'\x64')||_0x46fa7b>=-0x2*-0x1339+-0x8*0x1be+0x1*-0x187f||_0x3a7515[_0x22754c(0x118,'\x48\x4b\x50\x5d')](_0x43e73b,0x12e9*-0x1+-0x1*0x11c3+0x24af*0x1),_0x192ec2=_0x1ed702&&!_0x44243a['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x3a7515[_0x22754c(0x20f,'\x4c\x26\x61\x59')]),_0x299212=_0x3a7515[_0x22754c(0x175,'\x6a\x2a\x37\x33')](_0x2e630f,-0x16d6+0x1838+0x161*-0x1)||_0x4ae66f>=0x6aa+-0x7*-0x165+-0x106b&&_0x41c4d8===-0x752+-0x13ac+-0x5*-0x566,_0x4ec491=_0x299212||_0x46fa7b>=0x1087+-0x1*-0x8d3+-0x1958;let _0x52d771=_0x33d567&&_0x33d567[_0x22754c(0xad,'\x44\x21\x40\x2a')+_0x22754c(0x9a,'\x69\x66\x25\x77')]&&Number[_0x22754c(0xe3,'\x56\x31\x48\x45')](_0x3a7515[_0x22754c(0x2cc,'\x4a\x42\x6d\x67')](Number,_0x33d567['\x63\x6f\x6e\x73\x74\x72\x61\x69'+_0x22754c(0x303,'\x56\x35\x50\x46')]['\x6d\x61\x78\x5f\x66\x69\x6c\x65'+'\x73']))?_0x3a7515['\x43\x61\x69\x55\x59'](Number,_0x33d567[_0x22754c(0x234,'\x7a\x38\x21\x47')+_0x22754c(0x288,'\x48\x4b\x50\x5d')][_0x22754c(0x159,'\x75\x68\x7a\x39')+'\x73']):0x91*0x16+0x2182+-0x2dec;if(_0x4ec491)_0x52d771=Math[_0x22754c(0xe4,'\x6a\x45\x42\x38')](0x1*-0x17e+0xbc8+0x178*-0x7,Math[_0x22754c(0x2be,'\x69\x67\x46\x28')](_0x52d771,-0xada+0x1e7d+-0x139d*0x1));else{if(_0x192ec2)_0x52d771=Math['\x6d\x61\x78'](-0x1825+0x1f11+0x6e9*-0x1,Math[_0x22754c(0x203,'\x63\x2a\x45\x33')](_0x52d771,-0x1f*-0x12d+0x38*0x1f+-0x2b31));}const _0x2f2245=[];_0x2f2245[_0x22754c(0x1d0,'\x56\x35\x50\x46')](_0x3a7515[_0x22754c(0xfa,'\x58\x5b\x67\x63')](_0x3a7515[_0x22754c(0x10e,'\x69\x31\x74\x45')](_0x3a7515[_0x22754c(0x231,'\x76\x59\x79\x67')](_0x3a7515[_0x22754c(0x1e4,'\x6a\x45\x42\x38')],_0x1704b8[_0x22754c(0x1ca,'\x4a\x42\x6d\x67')]),'\x20\x28')+_0x1704b8[_0x22754c(0x2ee,'\x5a\x30\x7a\x42')+_0x22754c(0x213,'\x4c\x4a\x71\x74')],'\x29'));if(_0x192ec2)_0x2f2245[_0x22754c(0x22d,'\x47\x58\x4b\x39')](_0x22754c(0x127,'\x6b\x63\x44\x70')+_0x22754c(0x2df,'\x56\x35\x50\x46')+_0x22754c(0x24e,'\x58\x5b\x67\x63')+_0x22754c(0x1af,'\x29\x5a\x39\x34')+_0x22754c(0x283,'\x69\x67\x46\x28')+_0x22754c(0x10b,'\x47\x4a\x26\x50')+_0x22754c(0x300,'\x21\x49\x38\x24')+_0x22754c(0x2c1,'\x75\x68\x7a\x39')+_0x22754c(0x1b1,'\x4c\x26\x61\x59'));if(_0x299212)_0x2f2245[_0x22754c(0x2f4,'\x76\x59\x79\x67')](_0x3a7515[_0x22754c(0xc9,'\x21\x49\x38\x24')]);if(_0x3a7515[_0x22754c(0x30c,'\x4d\x54\x36\x30')](_0x46fa7b,-0x13*-0x108+-0x15+-0x1*0x1381))_0x2f2245[_0x22754c(0x1d0,'\x56\x35\x50\x46')](_0x22754c(0x29d,'\x45\x59\x75\x54')+_0x22754c(0x1f0,'\x77\x25\x23\x77')+_0x22754c(0x138,'\x51\x40\x54\x25')+_0x22754c(0xaf,'\x38\x50\x46\x46')+_0x22754c(0x1f5,'\x57\x40\x48\x42')+_0x22754c(0x103,'\x26\x48\x71\x4f')+_0x22754c(0x17e,'\x38\x50\x46\x46')+_0x22754c(0x2c2,'\x43\x36\x71\x53')+_0x22754c(0x90,'\x4c\x4a\x71\x74'));_0x2f2245['\x70\x75\x73\x68'](_0x3a7515[_0x22754c(0x210,'\x55\x6e\x55\x59')](_0x3a7515[_0x22754c(0x1ec,'\x6a\x45\x42\x38')](_0x3a7515[_0x22754c(0x243,'\x56\x35\x50\x46')],_0x52d771),'\x2e'));const _0x3dd562={};return _0x3dd562[_0x22754c(0x1c2,'\x7a\x6b\x29\x33')]=_0x1704b8['\x6e\x61\x6d\x65'],_0x3dd562['\x6c\x61\x62\x65\x6c']=_0x1704b8[_0x22754c(0x2f5,'\x64\x50\x51\x24')],_0x3dd562[_0x22754c(0x1bb,'\x61\x25\x4b\x37')+'\x69\x6f\x6e']=_0x1704b8[_0x22754c(0x21a,'\x57\x54\x73\x5b')+_0x22754c(0x2d1,'\x6a\x2a\x37\x33')],_0x3dd562[_0x22754c(0x247,'\x77\x25\x23\x77')+_0x22754c(0xed,'\x69\x67\x46\x28')]=_0x192ec2,_0x3dd562[_0x22754c(0xe8,'\x58\x5b\x67\x63')+_0x22754c(0x9e,'\x44\x24\x76\x41')+'\x6e']=_0x4ec491,_0x3dd562[_0x22754c(0x2ce,'\x77\x25\x23\x77')+_0x22754c(0x2c5,'\x4c\x77\x40\x5b')]=_0x299212,_0x3dd562['\x72\x65\x70\x61\x69\x72\x53\x74'+_0x22754c(0x1d7,'\x48\x4b\x50\x5d')]=_0x43e73b,_0x3dd562[_0x22754c(0x286,'\x43\x36\x71\x53')+_0x22754c(0xda,'\x21\x49\x38\x24')]=_0x46fa7b,_0x3dd562[_0x22754c(0x13e,'\x77\x25\x23\x77')+_0x22754c(0x26f,'\x4a\x7a\x74\x68')+_0x22754c(0x1d2,'\x68\x48\x51\x62')]=_0x52d771,_0x3dd562[_0x22754c(0x188,'\x4a\x42\x6d\x67')+'\x65\x73']=_0x2f2245,_0x3dd562;}async function _0x316ad6(_0x5373e6){const _0x3dc84e=_0x51a8b9,_0x533da8={'\x6d\x6b\x48\x4f\x4b':function(_0x4caf75,_0x3176de){return _0x4caf75(_0x3176de);},'\x6c\x6d\x72\x4d\x68':function(_0x1779fd,_0x60a05a){return _0x1779fd+_0x60a05a;},'\x64\x6a\x79\x79\x65':function(_0x3bfe49){return _0x3bfe49();},'\x52\x48\x4b\x41\x6e':function(_0x430698,_0x442998){return _0x430698!==_0x442998;},'\x54\x41\x78\x53\x65':_0x3dc84e(0x19a,'\x57\x54\x73\x5b'),'\x72\x65\x76\x57\x73':_0x3dc84e(0x2e6,'\x65\x36\x61\x79')+'\x5d','\x61\x6e\x62\x43\x6e':function(_0x567926,_0x502cda){return _0x567926+_0x502cda;},'\x70\x4c\x73\x69\x6e':function(_0x76d39e,_0x1ad89){return _0x76d39e+_0x1ad89;},'\x42\x4e\x65\x42\x58':function(_0x459392,_0x1030c5){return _0x459392+_0x1030c5;},'\x54\x49\x77\x6f\x70':function(_0x49e241,_0x3f1c80){return _0x49e241(_0x3f1c80);},'\x52\x66\x51\x66\x5a':function(_0x45c0fd,_0x56ec50){return _0x45c0fd+_0x56ec50;},'\x53\x4e\x6d\x47\x53':'\x4f\x70\x65\x6e\x50\x52\x20\x68'+_0x3dc84e(0xb5,'\x69\x31\x74\x45'),'\x72\x55\x72\x42\x6e':function(_0xd6c674,_0x307b4e){return _0xd6c674+_0x307b4e;},'\x4a\x74\x61\x50\x75':function(_0x3b057a,_0x13448a){return _0x3b057a+_0x13448a;},'\x4d\x65\x4e\x43\x75':function(_0x4f94e8,_0x14102d){return _0x4f94e8(_0x14102d);},'\x4d\x78\x50\x74\x51':'\x73\x65\x6c\x65\x63\x74\x6f\x72','\x7a\x42\x4e\x69\x65':function(_0x1b5a0d,_0x15d5b7){return _0x1b5a0d+_0x15d5b7;},'\x74\x74\x43\x66\x5a':function(_0x51c230,_0x5982aa){return _0x51c230+_0x5982aa;},'\x66\x50\x6f\x68\x4d':function(_0x4c9b38,_0x14d6cd){return _0x4c9b38+_0x14d6cd;},'\x6d\x7a\x6c\x53\x55':function(_0xaeaa7d,_0x130fd9){return _0xaeaa7d+_0x130fd9;},'\x4b\x4d\x65\x6d\x67':_0x3dc84e(0xe2,'\x56\x31\x48\x45'),'\x66\x6b\x4e\x63\x78':_0x3dc84e(0x276,'\x44\x21\x40\x2a')+'\x3d','\x66\x42\x45\x47\x47':function(_0x3949b3,_0x340728){return _0x3949b3||_0x340728;},'\x51\x42\x70\x66\x72':_0x3dc84e(0x15d,'\x7a\x4b\x62\x6a')+_0x3dc84e(0x298,'\x6a\x45\x42\x38'),'\x75\x59\x49\x54\x42':_0x3dc84e(0xb1,'\x56\x35\x50\x46')+'\x72\x3d','\x68\x7a\x58\x62\x68':function(_0x23e774,_0x74875c){return _0x23e774+_0x74875c;},'\x50\x6f\x58\x57\x4d':function(_0x58bbfc,_0x44e80f){return _0x58bbfc+_0x44e80f;},'\x6b\x66\x47\x62\x6c':_0x3dc84e(0x113,'\x4a\x42\x6d\x67')+_0x3dc84e(0x123,'\x77\x25\x23\x77')+_0x3dc84e(0x2b2,'\x4c\x4a\x71\x74'),'\x78\x45\x70\x57\x52':_0x3dc84e(0x1c6,'\x4c\x4a\x71\x74')+_0x3dc84e(0x2d9,'\x69\x67\x46\x28'),'\x71\x54\x62\x66\x4c':function(_0x1c1daf,_0x15b2f6){return _0x1c1daf+_0x15b2f6;},'\x6e\x72\x43\x57\x51':function(_0x54abc7,_0x53cbb0){return _0x54abc7+_0x53cbb0;},'\x49\x76\x63\x6d\x58':_0x3dc84e(0xa2,'\x6f\x46\x67\x33')+'\x64\x76\x69\x63\x65\x3a\x20\x70'+_0x3dc84e(0x208,'\x28\x38\x34\x45')+'\x3d','\x77\x56\x79\x50\x6f':_0x3dc84e(0x160,'\x28\x38\x34\x45')+'\x5b','\x79\x6d\x46\x45\x73':function(_0x3ecce7,_0x345905){return _0x3ecce7/_0x345905;},'\x4b\x43\x6b\x45\x76':function(_0x204bc1,_0x4687d9){return _0x204bc1&&_0x4687d9;},'\x4f\x4d\x79\x70\x4b':function(_0x5a82f3,_0x1cb55b){return _0x5a82f3>=_0x1cb55b;},'\x76\x44\x4c\x68\x4b':function(_0x481f1a,_0x943aa4){return _0x481f1a===_0x943aa4;},'\x72\x55\x56\x4a\x65':_0x3dc84e(0xec,'\x65\x72\x37\x76')+_0x3dc84e(0x2a2,'\x6f\x46\x67\x33')+'\x6c\x61\x74\x65\x61\x75','\x76\x4f\x44\x73\x70':function(_0x51e9e,_0x3e97bf){return _0x51e9e&&_0x3e97bf;},'\x4b\x57\x65\x4b\x6b':function(_0xf6773d,_0xb6b31c){return _0xf6773d(_0xb6b31c);},'\x73\x54\x4a\x6b\x6d':_0x3dc84e(0x1ba,'\x44\x24\x76\x41')+'\x72','\x4a\x64\x65\x42\x63':function(_0x13b143,_0x3ab60a){return _0x13b143(_0x3ab60a);},'\x7a\x77\x68\x64\x42':function(_0x10ec5b,_0x2fb18b){return _0x10ec5b+_0x2fb18b;},'\x4f\x79\x41\x51\x49':function(_0x335e42,_0x38c9f8){return _0x335e42+_0x38c9f8;},'\x78\x6c\x57\x72\x63':function(_0x55e372,_0x1a36a6){return _0x55e372+_0x1a36a6;},'\x53\x59\x42\x44\x71':function(_0x427e0a,_0x276a07){return _0x427e0a+_0x276a07;},'\x78\x6e\x6e\x50\x41':function(_0x3230f2,_0x32cb6e){return _0x3230f2+_0x32cb6e;},'\x51\x6b\x4e\x69\x4c':_0x3dc84e(0x212,'\x44\x24\x76\x41'),'\x4c\x43\x6b\x46\x64':_0x3dc84e(0x2c3,'\x5a\x30\x7a\x42')+_0x3dc84e(0x2eb,'\x7a\x38\x21\x47'),'\x74\x6f\x70\x44\x6a':_0x3dc84e(0x1c9,'\x51\x40\x54\x25')+_0x3dc84e(0xf0,'\x38\x50\x46\x46')+'\x3d','\x64\x61\x4a\x57\x64':_0x3dc84e(0x22f,'\x7a\x38\x21\x47')+_0x3dc84e(0x1d6,'\x69\x67\x46\x28'),'\x51\x42\x44\x58\x42':function(_0x27007a,_0x534529){return _0x27007a+_0x534529;},'\x67\x63\x62\x53\x4f':'\x48\x75\x62\x3a\x20\x68\x75\x62'+_0x3dc84e(0x153,'\x63\x2a\x45\x33'),'\x42\x7a\x72\x6b\x4d':function(_0x31f12a,_0x3f07e8){return _0x31f12a+_0x3f07e8;},'\x70\x45\x51\x77\x4d':_0x3dc84e(0x19e,'\x6f\x46\x67\x33')+_0x3dc84e(0xc2,'\x7a\x38\x21\x47'),'\x76\x52\x73\x55\x72':_0x3dc84e(0x2ac,'\x45\x59\x75\x54'),'\x4f\x4c\x64\x68\x56':function(_0x9febc6,_0x2771b4){return _0x9febc6+_0x2771b4;},'\x49\x48\x51\x76\x55':_0x3dc84e(0x108,'\x44\x21\x40\x2a'),'\x6b\x4f\x72\x66\x61':_0x3dc84e(0xfe,'\x21\x49\x38\x24'),'\x78\x63\x65\x66\x44':_0x3dc84e(0x2d8,'\x7a\x4b\x62\x6a'),'\x43\x70\x6f\x54\x43':_0x3dc84e(0x271,'\x69\x67\x46\x28'),'\x48\x42\x4d\x6a\x50':function(_0x10902f){return _0x10902f();},'\x6f\x67\x65\x68\x47':_0x3dc84e(0x17c,'\x65\x72\x37\x76'),'\x54\x57\x77\x64\x68':'\x4b\x71\x49\x6f\x56','\x64\x6c\x54\x61\x4d':function(_0x372735,_0x260b43){return _0x372735!==_0x260b43;},'\x61\x63\x48\x52\x48':function(_0x37497d,_0x5de3b0){return _0x37497d===_0x5de3b0;},'\x55\x5a\x45\x57\x76':_0x3dc84e(0x2fc,'\x51\x40\x54\x25'),'\x4a\x4f\x72\x72\x64':_0x3dc84e(0x126,'\x6a\x2a\x37\x33'),'\x78\x50\x6f\x79\x47':_0x3dc84e(0x1b3,'\x76\x59\x79\x67')+_0x3dc84e(0x192,'\x47\x58\x4b\x39')+_0x3dc84e(0x2c9,'\x39\x40\x77\x55'),'\x6c\x65\x50\x4e\x41':function(_0x26381b,_0x2d74ad){return _0x26381b(_0x2d74ad);},'\x4f\x6a\x68\x61\x71':function(_0x76bad0,_0x528e8a){return _0x76bad0>_0x528e8a;},'\x70\x63\x73\x4e\x42':function(_0x10e26c,_0xa1812f){return _0x10e26c(_0xa1812f);},'\x56\x71\x49\x75\x41':function(_0x3b486a,_0x4528a0){return _0x3b486a!==_0x4528a0;},'\x78\x72\x76\x56\x58':_0x3dc84e(0x2a8,'\x55\x6e\x55\x59'),'\x6a\x77\x6d\x53\x69':function(_0x20d7d8,_0x524a94){return _0x20d7d8+_0x524a94;}},{genes:_0x318c70,capsules:_0x36b5d0,signals:_0x3de4f1,recentEvents:_0x572fae,memoryAdvice:_0x1f30a9,recentFailedCapsules:_0x49fb1d,heartbeatCapGaps:_0x308581,heartbeatNovelty:_0x57ff27,plateauOverride:_0x1792a1,observations:_0x31f0c5,IS_RANDOM_DRIFT:_0x149f26,hubHit:_0x1c4ec9}=_0x5373e6,{selectedGene:_0x2fdcc0,capsuleCandidates:_0x244bd6,selector:_0x9eca7e}=_0x533da8[_0x3dc84e(0x20b,'\x77\x25\x23\x77')](_0x42cee0,{'\x67\x65\x6e\x65\x73':_0x318c70,'\x63\x61\x70\x73\x75\x6c\x65\x73':_0x36b5d0,'\x73\x69\x67\x6e\x61\x6c\x73':_0x3de4f1,'\x6d\x65\x6d\x6f\x72\x79\x41\x64\x76\x69\x63\x65':_0x1f30a9,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':_0x149f26,'\x66\x61\x69\x6c\x65\x64\x43\x61\x70\x73\x75\x6c\x65\x73':_0x49fb1d,'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':_0x308581,'\x6e\x6f\x76\x65\x6c\x74\x79\x53\x63\x6f\x72\x65':_0x57ff27&&Number[_0x3dc84e(0x194,'\x4d\x54\x36\x30')](_0x57ff27[_0x3dc84e(0x281,'\x56\x31\x48\x45')])?_0x57ff27[_0x3dc84e(0x18f,'\x69\x67\x46\x28')]:null,'\x70\x6c\x61\x74\x65\x61\x75\x4f\x76\x65\x72\x72\x69\x64\x65':_0x1792a1}),_0x2c0d91=_0x1f30a9&&_0x1f30a9[_0x3dc84e(0x2de,'\x6f\x46\x67\x33')+_0x3dc84e(0x200,'\x38\x50\x46\x46')]?_0x3dc84e(0xcc,'\x44\x24\x76\x41')+_0x3dc84e(0x11e,'\x4a\x77\x32\x4e')+_0x3dc84e(0x295,'\x48\x4b\x50\x5d'):_0x533da8[_0x3dc84e(0x28c,'\x6f\x46\x67\x33')],_0x291769=Array[_0x3dc84e(0x246,'\x56\x35\x50\x46')](_0x244bd6)?_0x244bd6[_0x3dc84e(0x23c,'\x64\x50\x51\x24')](_0x30296b=>_0x30296b&&_0x30296b['\x69\x64']?String(_0x30296b['\x69\x64']):null)[_0x3dc84e(0x1c5,'\x45\x59\x75\x54')](Boolean):[],_0x5e10ea=_0x291769['\x6c\x65\x6e\x67\x74\x68']?_0x291769[0x9b*0x3a+0x1*0xdb0+-0x1*0x30ce]:null,_0x35ad84={};_0x35ad84[_0x3dc84e(0xb2,'\x38\x50\x46\x46')+_0x3dc84e(0x27c,'\x6f\x46\x67\x33')]=_0x572fae,_0x35ad84[_0x3dc84e(0x223,'\x4f\x76\x70\x38')+_0x3dc84e(0x1ea,'\x4a\x77\x32\x4e')]=_0x2fdcc0,_0x35ad84[_0x3dc84e(0x21d,'\x39\x40\x77\x55')]=_0x3de4f1;const _0x289069=_0x533da8[_0x3dc84e(0x28a,'\x76\x53\x4c\x51')](_0x294631,_0x35ad84);_0x533da8[_0x3dc84e(0x257,'\x68\x48\x51\x62')](_0x5d05c9,_0x533da8[_0x3dc84e(0x122,'\x6a\x2a\x37\x33')](_0x533da8[_0x3dc84e(0x1fe,'\x6f\x46\x67\x33')](_0x533da8[_0x3dc84e(0x25b,'\x4a\x77\x32\x4e')](_0x533da8[_0x3dc84e(0x24f,'\x6a\x45\x42\x38')](_0x533da8[_0x3dc84e(0x8a,'\x4c\x26\x61\x59')](_0x3dc84e(0x265,'\x6a\x45\x42\x38')+_0x3dc84e(0xf4,'\x58\x5b\x67\x63')+'\x67\x65\x6e\x65\x3d',_0x2fdcc0?_0x2fdcc0['\x69\x64']:_0x533da8[_0x3dc84e(0x2bc,'\x56\x35\x50\x46')])+_0x533da8[_0x3dc84e(0x27b,'\x51\x40\x54\x25')],_0x533da8[_0x3dc84e(0x12a,'\x69\x67\x46\x28')](_0x5e10ea,_0x533da8[_0x3dc84e(0x18c,'\x57\x40\x48\x42')])),_0x533da8[_0x3dc84e(0x23e,'\x4a\x7a\x74\x68')]),_0x2c0d91)+_0x533da8[_0x3dc84e(0x177,'\x56\x31\x48\x45')],_0x533da8[_0x3dc84e(0x1e3,'\x65\x36\x61\x79')](_0x9eca7e,_0x3dc84e(0xc1,'\x51\x40\x54\x25')))),_0x5d05c9(_0x533da8[_0x3dc84e(0x260,'\x69\x67\x46\x28')](_0x533da8[_0x3dc84e(0xa4,'\x4a\x7a\x74\x68')](_0x533da8[_0x3dc84e(0x1de,'\x58\x5b\x67\x63')](_0x533da8[_0x3dc84e(0x1fc,'\x6a\x45\x42\x38')]+_0x289069[_0x3dc84e(0x136,'\x43\x36\x71\x53')],_0x533da8[_0x3dc84e(0x26b,'\x51\x40\x54\x25')])+_0x289069[_0x3dc84e(0x16b,'\x6a\x45\x42\x38')+_0x3dc84e(0x2d5,'\x77\x25\x23\x77')]+(_0x3dc84e(0x21b,'\x63\x2a\x45\x33')+'\x73\x3d'),_0x289069[_0x3dc84e(0x2bd,'\x63\x2a\x45\x33')+_0x3dc84e(0x297,'\x29\x5a\x39\x34')+'\x6e']),_0x3dc84e(0x182,'\x69\x66\x25\x77')+'\x73\x3d')+_0x289069[_0x3dc84e(0xd2,'\x29\x5a\x39\x34')+_0x3dc84e(0x1cd,'\x4a\x77\x32\x4e')+_0x3dc84e(0xd1,'\x58\x5b\x67\x63')]);_0x1f30a9&&_0x5d05c9(_0x533da8[_0x3dc84e(0x2e9,'\x4f\x76\x70\x38')](_0x533da8[_0x3dc84e(0x201,'\x64\x50\x51\x24')](_0x533da8[_0x3dc84e(0x2ea,'\x28\x38\x34\x45')](_0x533da8[_0x3dc84e(0x17f,'\x43\x36\x71\x53')]+(_0x1f30a9[_0x3dc84e(0x219,'\x47\x58\x4b\x39')+_0x3dc84e(0x251,'\x7a\x6b\x29\x33')]||_0x3dc84e(0xd3,'\x69\x67\x46\x28')),_0x533da8['\x77\x56\x79\x50\x6f']),Array[_0x3dc84e(0x148,'\x57\x54\x73\x5b')](_0x1f30a9[_0x3dc84e(0x26a,'\x6f\x46\x67\x33')+_0x3dc84e(0xac,'\x4c\x26\x61\x59')])?_0x1f30a9[_0x3dc84e(0xd6,'\x4c\x4a\x71\x74')+'\x6e\x65\x49\x64\x73'][_0x3dc84e(0x2ed,'\x77\x25\x23\x77')]('\x2c'):''),'\x5d'));const _0x4f854b={};_0x4f854b[_0x3dc84e(0x2da,'\x7a\x6b\x29\x33')+_0x3dc84e(0x151,'\x69\x31\x74\x45')]=_0x149f26,_0x4f854b[_0x3dc84e(0x135,'\x44\x24\x76\x41')]=_0x3de4f1,_0x4f854b[_0x3dc84e(0x2ab,'\x7a\x4b\x62\x6a')+_0x3dc84e(0x267,'\x4a\x7a\x74\x68')]=_0x572fae;const _0x2fdf50=_0x533da8[_0x3dc84e(0x2e5,'\x75\x68\x7a\x39')](_0x2f7c38,_0x4f854b),_0x12763f=_0x2fdf50&&_0x2fdf50[_0x3dc84e(0xb9,'\x7a\x4b\x62\x6a')+_0x3dc84e(0x1dc,'\x65\x72\x37\x76')+'\x65']?_0x2fdf50['\x70\x65\x72\x73\x6f\x6e\x61\x6c'+_0x3dc84e(0x9c,'\x44\x24\x76\x41')+'\x65']:null,_0xb010fd=Array[_0x3dc84e(0x1be,'\x69\x66\x25\x77')](_0x572fae)?_0x572fae['\x73\x6c\x69\x63\x65'](-(-0xb90+-0x382+0xf18)):[],_0x1d1628=_0xb010fd[_0x3dc84e(0x224,'\x65\x72\x37\x76')](_0x48619c=>_0x48619c&&_0x48619c[_0x3dc84e(0x143,'\x69\x31\x74\x45')]&&_0x48619c[_0x3dc84e(0x173,'\x69\x66\x25\x77')]['\x73\x74\x61\x74\x75\x73']?String(_0x48619c[_0x3dc84e(0x189,'\x61\x25\x4b\x37')][_0x3dc84e(0x1b7,'\x26\x48\x71\x4f')]):null)[_0x3dc84e(0x1c8,'\x69\x67\x46\x28')](Boolean),_0x48e5e2=_0x1d1628['\x6c\x65\x6e\x67\x74\x68']>=-0xdbd*-0x1+0x17d7+0x1fa*-0x13&&_0x1d1628[_0x3dc84e(0x25d,'\x21\x49\x38\x24')](_0x3f93c1=>_0x3f93c1===_0x3dc84e(0x11b,'\x51\x40\x54\x25')),_0xf36288=_0xb010fd[_0x3dc84e(0x10a,'\x28\x38\x34\x45')]>-0xa1b+0x1f03+-0xdf*0x18?_0x533da8[_0x3dc84e(0xd7,'\x65\x72\x37\x76')](_0xb010fd[_0x3dc84e(0x254,'\x26\x48\x71\x4f')]((_0x13d69d,_0x217754)=>_0x13d69d+(_0x217754&&_0x217754[_0x3dc84e(0x143,'\x69\x31\x74\x45')]&&Number[_0x3dc84e(0x2b3,'\x4c\x77\x40\x5b')](Number(_0x217754[_0x3dc84e(0x2a6,'\x65\x36\x61\x79')][_0x3dc84e(0x168,'\x76\x53\x4c\x51')]))?Number(_0x217754[_0x3dc84e(0x110,'\x4c\x26\x61\x59')][_0x3dc84e(0x279,'\x64\x50\x51\x24')]):0x1282*0x1+-0x1d2a+0xaa8),-0xd86+0xad*-0x5+-0x10e7*-0x1),_0xb010fd[_0x3dc84e(0xb3,'\x77\x25\x23\x77')]):-0xbf*-0x12+-0x1*0x6f1+0xb*-0x97,_0x3bb11d=_0x533da8[_0x3dc84e(0x1ae,'\x32\x48\x42\x32')](!_0x149f26,_0x12763f)&&Number[_0x3dc84e(0xbd,'\x4a\x7a\x74\x68')](Number(_0x12763f[_0x3dc84e(0xe0,'\x58\x5b\x67\x63')+'\x74\x79']))&&_0x533da8[_0x3dc84e(0x1a8,'\x4a\x77\x32\x4e')](_0x533da8[_0x3dc84e(0x261,'\x61\x25\x4b\x37')](Number,_0x12763f[_0x3dc84e(0x105,'\x7a\x6b\x29\x33')+'\x74\x79']),0x30*-0x8+-0x3fe+0x57e+0.75)&&_0x48e5e2&&_0xf36288>=-0xac1+-0x1b2f+-0x10*-0x25f+0.7,_0x48cb61=_0x533da8[_0x3dc84e(0x214,'\x4a\x7a\x74\x68')](String(process.env.FORCE_INNOVATION||process.env.EVOLVE_FORCE_INNOVATION||'')['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x3dc84e(0x1bd,'\x56\x31\x48\x45')](),_0x533da8[_0x3dc84e(0x2db,'\x7a\x4b\x62\x6a')]),_0xd95dd5=_0x533da8[_0x3dc84e(0x1f3,'\x7a\x38\x21\x47')](!!_0x149f26,!!_0x3bb11d)||!!_0x48cb61||!!_0x289069['\x66\x6f\x72\x63\x65\x49\x6e\x6e'+_0x3dc84e(0x1d1,'\x47\x58\x4b\x39')],_0x2aa3d9=_0x3bb11d?[...Array[_0x3dc84e(0x2a9,'\x4c\x4a\x71\x74')](_0x3de4f1)?_0x3de4f1:[],_0x533da8[_0x3dc84e(0x109,'\x4c\x77\x40\x5b')]]:_0x3de4f1,_0x380917=_0x48cb61||_0x289069[_0x3dc84e(0x2f8,'\x4c\x4a\x71\x74')+_0x3dc84e(0x1e5,'\x55\x6e\x55\x59')]?[...Array[_0x3dc84e(0x15e,'\x63\x2a\x45\x33')](_0x2aa3d9)?_0x2aa3d9:[],'\x66\x6f\x72\x63\x65\x5f\x69\x6e'+_0x3dc84e(0x97,'\x69\x31\x74\x45')]:_0x2aa3d9,_0x4c76db=_0x533da8[_0x3dc84e(0x235,'\x58\x5b\x67\x63')](!!_0x149f26,!!_0x2fdf50)&&!!_0x2fdf50[_0x3dc84e(0x21f,'\x4c\x77\x40\x5b')+_0x3dc84e(0x229,'\x4f\x76\x70\x38')+'\x6e']&&_0x12763f&&_0x533da8[_0x3dc84e(0x14b,'\x7a\x6b\x29\x33')](_0x1f5fb1,_0x12763f)&&Number(_0x12763f['\x72\x69\x67\x6f\x72'])>=-0x1e62+0x2557+0xd*-0x89+0.8&&Number(_0x12763f[_0x3dc84e(0x1b8,'\x55\x6e\x55\x59')+_0x3dc84e(0x240,'\x6a\x45\x42\x38')])<=-0x491*-0x5+-0x1*-0x39a+-0x1*0x1a6f+0.3&&!(Array[_0x3dc84e(0x17d,'\x64\x50\x51\x24')](_0x3de4f1)&&_0x3de4f1[_0x3dc84e(0x2b1,'\x56\x35\x50\x46')](_0x533da8[_0x3dc84e(0x180,'\x48\x4b\x50\x5d')])),_0x2ed250={};_0x2ed250[_0x3dc84e(0xee,'\x43\x36\x71\x53')]=_0x380917,_0x2ed250[_0x3dc84e(0x2d3,'\x64\x50\x51\x24')+_0x3dc84e(0xfd,'\x64\x50\x51\x24')]=_0x2fdcc0,_0x2ed250[_0x3dc84e(0xbc,'\x76\x53\x4c\x51')+'\x62\x6c\x65\x64']=_0xd95dd5,_0x2ed250[_0x3dc84e(0xc8,'\x4c\x26\x61\x59')+_0x3dc84e(0x2f1,'\x56\x35\x50\x46')]=_0x12763f,_0x2ed250[_0x3dc84e(0x140,'\x57\x40\x48\x42')+_0x3dc84e(0x120,'\x4c\x4a\x71\x74')]=_0x4c76db;const _0x4beb2b=_0x533da8[_0x3dc84e(0x248,'\x38\x50\x46\x46')](_0x2d7bc4,_0x2ed250);_0x5d05c9(_0x533da8['\x68\x7a\x58\x62\x68'](_0x533da8[_0x3dc84e(0x162,'\x63\x2a\x45\x33')](_0x533da8[_0x3dc84e(0xa6,'\x61\x25\x4b\x37')](_0x533da8[_0x3dc84e(0x10f,'\x44\x21\x40\x2a')](_0x533da8[_0x3dc84e(0x2a3,'\x69\x66\x25\x77')](_0x533da8[_0x3dc84e(0x24f,'\x6a\x45\x42\x38')](_0x533da8[_0x3dc84e(0x2fd,'\x6a\x45\x42\x38')](_0x533da8['\x78\x6e\x6e\x50\x41'](_0x533da8[_0x3dc84e(0x269,'\x26\x48\x71\x4f')](_0x3dc84e(0x12c,'\x56\x35\x50\x46')+_0x3dc84e(0x23f,'\x56\x35\x50\x46')+_0x3dc84e(0x1ed,'\x38\x50\x46\x46'),_0x4beb2b&&_0x4beb2b[_0x3dc84e(0x221,'\x65\x72\x37\x76')]||'\x3f'),_0x533da8[_0x3dc84e(0x8d,'\x21\x49\x38\x24')]),_0x4beb2b&&_0x4beb2b['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c']||'\x3f'),_0x533da8['\x4c\x43\x6b\x46\x64']),_0xd95dd5),_0x533da8[_0x3dc84e(0x289,'\x77\x25\x23\x77')]),_0x48cb61),_0x533da8[_0x3dc84e(0x30d,'\x57\x54\x73\x5b')]),_0x4c76db)),_0x533da8[_0x3dc84e(0x1db,'\x47\x4a\x26\x50')](_0x5d05c9,_0x533da8[_0x3dc84e(0x2e4,'\x7a\x6b\x29\x33')](_0x533da8[_0x3dc84e(0x22b,'\x4a\x7a\x74\x68')],_0x1c4ec9&&_0x1c4ec9['\x68\x69\x74']?_0x533da8[_0x3dc84e(0x11c,'\x56\x35\x50\x46')](_0x533da8['\x42\x7a\x72\x6b\x4d'](_0x533da8[_0x3dc84e(0x25f,'\x7a\x38\x21\x47')](_0x533da8[_0x3dc84e(0x178,'\x7a\x4b\x62\x6a')],_0x1c4ec9['\x73\x63\x6f\x72\x65']),_0x533da8[_0x3dc84e(0x169,'\x69\x67\x46\x28')]),_0x1c4ec9[_0x3dc84e(0x1f6,'\x43\x36\x71\x53')])+'\x29':_0x533da8[_0x3dc84e(0x23d,'\x29\x5a\x39\x34')](_0x533da8[_0x3dc84e(0x16f,'\x4a\x77\x32\x4e')]+(_0x1c4ec9&&_0x1c4ec9[_0x3dc84e(0xba,'\x6b\x63\x44\x70')]||_0x533da8['\x6b\x4f\x72\x66\x61']),'\x29')));let _0x8aa795=null;try{if(_0x533da8[_0x3dc84e(0x119,'\x75\x68\x7a\x39')](_0x533da8[_0x3dc84e(0xdb,'\x55\x6e\x55\x59')],_0x533da8[_0x3dc84e(0xc7,'\x29\x5a\x39\x34')]))_0x533da8[_0x3dc84e(0x278,'\x6a\x45\x42\x38')](_0x33f201,_0x533da8[_0x3dc84e(0xff,'\x75\x68\x7a\x39')](_0x3dc84e(0x22c,'\x64\x50\x51\x24')+_0x3dc84e(0x304,'\x4a\x7a\x74\x68')+_0x3dc84e(0x204,'\x57\x40\x48\x42')+'\x64\x20\x28\x6e\x6f\x6e\x2d\x66'+_0x3dc84e(0x166,'\x39\x40\x77\x55'),_0x3ae48a&&_0xc75ec0[_0x3dc84e(0x139,'\x4f\x76\x70\x38')]?_0x13e3a0[_0x3dc84e(0x14a,'\x7a\x4b\x62\x6a')]:_0x405985));else{const _0x1d34c3={};_0x1d34c3[_0x3dc84e(0x21d,'\x39\x40\x77\x55')]=_0x3de4f1,_0x1d34c3[_0x3dc84e(0x285,'\x6a\x45\x42\x38')]=_0x4beb2b,_0x1d34c3[_0x3dc84e(0x2b0,'\x58\x5b\x67\x63')+_0x3dc84e(0x1df,'\x57\x54\x73\x5b')+'\x65']=_0x12763f,_0x1d34c3[_0x3dc84e(0x134,'\x75\x68\x7a\x39')+_0x3dc84e(0xe7,'\x38\x50\x46\x46')]=_0x2fdcc0,_0x1d34c3[_0x3dc84e(0x30f,'\x48\x4b\x50\x5d')]=_0x9eca7e,_0x1d34c3[_0x3dc84e(0x2cb,'\x69\x66\x25\x77')+'\x62\x6c\x65\x64']=_0xd95dd5,_0x1d34c3[_0x3dc84e(0x1c7,'\x51\x40\x54\x25')+'\x42\x79']=_0x2c0d91,_0x1d34c3['\x63\x61\x70\x73\x75\x6c\x65\x73'+_0x3dc84e(0x150,'\x32\x48\x42\x32')]=_0x291769,_0x1d34c3['\x6f\x62\x73\x65\x72\x76\x61\x74'+_0x3dc84e(0xc0,'\x69\x67\x46\x28')]=_0x31f0c5;const _0x3a9af8=_0x533da8[_0x3dc84e(0x106,'\x69\x67\x46\x28')](_0xfbddf7,_0x1d34c3);_0x8aa795=_0x3a9af8&&_0x3a9af8[_0x3dc84e(0x181,'\x48\x4b\x50\x5d')+_0x3dc84e(0x15b,'\x45\x59\x75\x54')]?_0x3a9af8[_0x3dc84e(0x256,'\x4a\x42\x6d\x67')+_0x3dc84e(0x245,'\x7a\x6b\x29\x33')]:null;}}catch(_0x4aa404){if(_0x533da8[_0x3dc84e(0x2e0,'\x69\x66\x25\x77')](_0x533da8[_0x3dc84e(0x1f1,'\x69\x31\x74\x45')],'\x4c\x5a\x72\x76\x57')){console[_0x3dc84e(0x2ec,'\x57\x40\x48\x42')](_0x3dc84e(0x28f,'\x28\x38\x34\x45')+_0x3dc84e(0x142,'\x61\x25\x4b\x37')+'\x70\x6f\x74\x68\x65\x73\x69\x73'+_0x3dc84e(0x2ff,'\x68\x48\x51\x62')+'\x61\x69\x6c\x65\x64\x3a\x20'+_0x4aa404[_0x3dc84e(0x190,'\x57\x40\x48\x42')]),console[_0x3dc84e(0x107,'\x55\x6e\x55\x59')](_0x3dc84e(0x183,'\x39\x40\x77\x55')+_0x3dc84e(0x1b4,'\x69\x66\x25\x77')+_0x3dc84e(0x102,'\x4a\x7a\x74\x68')+_0x3dc84e(0x270,'\x4c\x26\x61\x59')+'\x20\x77\x69\x74\x68\x6f\x75\x74'+_0x3dc84e(0x2f7,'\x43\x36\x71\x53')+'\x6d\x65\x6d\x6f\x72\x79\x2e\x20'+'\x54\x61\x72\x67\x65\x74\x3a\x20'+_0x533da8[_0x3dc84e(0x164,'\x56\x35\x50\x46')](_0x30dbaf));throw new Error(_0x3dc84e(0x11a,'\x4a\x42\x6d\x67')+_0x3dc84e(0xa9,'\x47\x4a\x26\x50')+_0x3dc84e(0x14c,'\x76\x53\x4c\x51')+_0x3dc84e(0x9b,'\x6a\x45\x42\x38')+_0x3dc84e(0x19c,'\x4c\x26\x61\x59')+_0x4aa404[_0x3dc84e(0xe5,'\x65\x72\x37\x76')]);}else{_0x5cb316[_0x3dc84e(0x20a,'\x44\x24\x76\x41')](_0x3dc84e(0x1e1,'\x65\x72\x37\x76')+_0x3dc84e(0x16c,'\x45\x59\x75\x54')+_0x3dc84e(0x2dd,'\x69\x31\x74\x45')+_0x3dc84e(0x115,'\x44\x21\x40\x2a')+_0x3dc84e(0x16e,'\x47\x4a\x26\x50')+_0x595490[_0x3dc84e(0x23a,'\x76\x59\x79\x67')]),_0x2153b6[_0x3dc84e(0x146,'\x75\x68\x7a\x39')](_0x3dc84e(0x171,'\x64\x50\x51\x24')+_0x3dc84e(0x202,'\x4c\x26\x61\x59')+_0x3dc84e(0x282,'\x65\x36\x61\x79')+_0x3dc84e(0x1da,'\x4a\x77\x32\x4e')+_0x3dc84e(0x30b,'\x61\x25\x4b\x37')+_0x3dc84e(0x26d,'\x39\x40\x77\x55')+_0x3dc84e(0x8e,'\x44\x24\x76\x41')+_0x3dc84e(0x268,'\x57\x40\x48\x42')+_0x533da8[_0x3dc84e(0x8f,'\x21\x49\x38\x24')](_0x1c5250));throw new _0x5dede1(_0x3dc84e(0x2f0,'\x64\x50\x51\x24')+_0x3dc84e(0xf6,'\x28\x38\x34\x45')+_0x3dc84e(0x1a7,'\x47\x4a\x26\x50')+'\x65\x20\x66\x61\x69\x6c\x65\x64'+'\x3a\x20'+_0x1cabbc[_0x3dc84e(0x19b,'\x6f\x46\x67\x33')]);}}try{if(_0x533da8[_0x3dc84e(0x92,'\x45\x59\x75\x54')](_0x533da8[_0x3dc84e(0x29c,'\x6a\x2a\x37\x33')],_0x533da8[_0x3dc84e(0x305,'\x44\x24\x76\x41')])){const _0x3a37d6={};_0x3a37d6[_0x3dc84e(0x2f6,'\x4f\x76\x70\x38')]=_0x3de4f1,_0x3a37d6[_0x3dc84e(0x198,'\x65\x72\x37\x76')]=_0x4beb2b,_0x3a37d6[_0x3dc84e(0x1cc,'\x44\x21\x40\x2a')+_0x3dc84e(0x95,'\x4c\x77\x40\x5b')+'\x65']=_0x12763f,_0x3a37d6['\x73\x65\x6c\x65\x63\x74\x65\x64'+_0x3dc84e(0x27a,'\x76\x59\x79\x67')]=_0x2fdcc0,_0x3a37d6[_0x3dc84e(0x277,'\x6b\x63\x44\x70')]=_0x9eca7e,_0x3a37d6[_0x3dc84e(0x144,'\x4c\x26\x61\x59')+_0x3dc84e(0x2e2,'\x4a\x77\x32\x4e')]=_0xd95dd5,_0x3a37d6['\x73\x65\x6c\x65\x63\x74\x65\x64'+'\x42\x79']=_0x2c0d91,_0x3a37d6['\x68\x79\x70\x6f\x74\x68\x65\x73'+_0x3dc84e(0x233,'\x47\x58\x4b\x39')]=_0x8aa795,_0x3a37d6[_0x3dc84e(0x239,'\x45\x59\x75\x54')+_0x3dc84e(0x191,'\x29\x5a\x39\x34')]=_0x291769,_0x3a37d6[_0x3dc84e(0x296,'\x4f\x76\x70\x38')+_0x3dc84e(0x2b9,'\x56\x35\x50\x46')]=_0x31f0c5,_0x533da8[_0x3dc84e(0xd5,'\x7a\x4b\x62\x6a')](_0x565591,_0x3a37d6);}else{if(vtiLab[_0x3dc84e(0x14e,'\x4a\x42\x6d\x67')](vtiLab[_0x3dc84e(0xa1,'\x7a\x6b\x29\x33')](_0x270a63,_0x3e0af7.env.EVOLVER_VERBOSE||'')[_0x3dc84e(0xb4,'\x47\x58\x4b\x39')+_0x3dc84e(0x1b6,'\x69\x66\x25\x77')](),vtiLab[_0x3dc84e(0xbb,'\x29\x5a\x39\x34')]))return;_0x5e8d62[_0x3dc84e(0x1c0,'\x57\x40\x48\x42')](vtiLab[_0x3dc84e(0x1f7,'\x29\x5a\x39\x34')]),_0x1e43b5['\x6c\x6f\x67'][_0x3dc84e(0xf3,'\x47\x4a\x26\x50')](_0x329db3,_0x342570);}}catch(_0x47032e){console[_0x3dc84e(0x302,'\x61\x25\x4b\x37')]('\x5b\x4d\x65\x6d\x6f\x72\x79\x47'+_0x3dc84e(0xf7,'\x4d\x54\x36\x30')+_0x3dc84e(0xe9,'\x6a\x2a\x37\x33')+_0x3dc84e(0xa0,'\x44\x24\x76\x41')+_0x3dc84e(0x220,'\x6b\x63\x44\x70')+_0x47032e['\x6d\x65\x73\x73\x61\x67\x65']),console['\x65\x72\x72\x6f\x72'](_0x3dc84e(0x171,'\x64\x50\x51\x24')+_0x3dc84e(0x128,'\x55\x6e\x55\x59')+_0x3dc84e(0x2c8,'\x44\x24\x76\x41')+_0x3dc84e(0x287,'\x47\x58\x4b\x39')+'\x20\x77\x69\x74\x68\x6f\x75\x74'+_0x3dc84e(0x197,'\x6a\x2a\x37\x33')+_0x3dc84e(0x21e,'\x57\x54\x73\x5b')+'\x54\x61\x72\x67\x65\x74\x3a\x20'+_0x533da8[_0x3dc84e(0xc4,'\x4c\x4a\x71\x74')](_0x30dbaf));throw new Error('\x4d\x65\x6d\x6f\x72\x79\x47\x72'+_0x3dc84e(0x93,'\x39\x40\x77\x55')+_0x3dc84e(0x154,'\x21\x49\x38\x24')+_0x3dc84e(0x2cf,'\x38\x50\x46\x46')+'\x3a\x20'+_0x47032e[_0x3dc84e(0x28b,'\x51\x40\x54\x25')]);}let _0x13f5e5=[];if(_0x533da8['\x64\x6c\x54\x61\x4d'](process.env.EVOLVE_OPEN_PR_DEDUP,'\x30'))try{if(_0x533da8[_0x3dc84e(0x1ab,'\x21\x49\x38\x24')](_0x533da8[_0x3dc84e(0x176,'\x32\x48\x42\x32')],_0x533da8[_0x3dc84e(0x2f2,'\x4a\x42\x6d\x67')]))_0x533da8['\x54\x49\x77\x6f\x70'](_0x5bc15c,_0x533da8[_0x3dc84e(0x259,'\x65\x72\x37\x76')](_0x533da8[_0x3dc84e(0x12f,'\x58\x5b\x67\x63')],_0x1745b3[_0x3dc84e(0x1a5,'\x68\x48\x51\x62')](function(_0x30abb1){const _0x4aa54a=_0x3dc84e;return _0x533da8[_0x4aa54a(0xea,'\x4c\x26\x61\x59')](_0x533da8[_0x4aa54a(0x1ce,'\x69\x66\x25\x77')](_0x533da8['\x70\x4c\x73\x69\x6e'](_0x533da8[_0x4aa54a(0x2fb,'\x57\x54\x73\x5b')]('\x23',_0x30abb1[_0x4aa54a(0x17a,'\x56\x35\x50\x46')]),'\x20\x28'),_0x30abb1[_0x4aa54a(0x2fe,'\x32\x48\x42\x32')+_0x4aa54a(0x1a0,'\x65\x72\x37\x76')][_0x4aa54a(0x152,'\x57\x54\x73\x5b')](-0x1c09+-0x1ecb*0x1+-0x1d6b*-0x2)),'\x29');})['\x6a\x6f\x69\x6e']('\x2c\x20')));else{const {findSignalHints:_0x4f003b}=require(_0x533da8[_0x3dc84e(0x1a1,'\x56\x31\x48\x45')]),_0x54fb83=_0x2fdcc0&&Array[_0x3dc84e(0x199,'\x38\x50\x46\x46')](_0x2fdcc0[_0x3dc84e(0x8c,'\x5a\x30\x7a\x42')+_0x3dc84e(0x1c1,'\x38\x50\x46\x46')])&&_0x2fdcc0[_0x3dc84e(0xc3,'\x21\x49\x38\x24')+_0x3dc84e(0x252,'\x28\x38\x34\x45')][_0x3dc84e(0x2e7,'\x56\x31\x48\x45')]>0x1a18+0x12b3+-0x2ccb*0x1?_0x2fdcc0[_0x3dc84e(0x25a,'\x43\x36\x71\x53')+_0x3dc84e(0x1f2,'\x4a\x77\x32\x4e')]:_0x3de4f1,_0x5ba994={};_0x5ba994[_0x3dc84e(0x1ff,'\x26\x48\x71\x4f')]=_0x54fb83,_0x13f5e5=_0x533da8[_0x3dc84e(0xdc,'\x4c\x26\x61\x59')](_0x4f003b,_0x5ba994),_0x533da8[_0x3dc84e(0xf8,'\x51\x40\x54\x25')](_0x13f5e5[_0x3dc84e(0x206,'\x44\x24\x76\x41')],-0x1aa+-0x4*-0x15a+0x3be*-0x1)&&_0x533da8[_0x3dc84e(0x273,'\x32\x48\x42\x32')](_0x5d05c9,_0x533da8[_0x3dc84e(0x2c6,'\x76\x59\x79\x67')]+_0x13f5e5[_0x3dc84e(0xe6,'\x65\x36\x61\x79')](function(_0xdd25d7){const _0x188b47=_0x3dc84e;return _0x533da8['\x42\x4e\x65\x42\x58'](_0x533da8[_0x188b47(0xe1,'\x28\x38\x34\x45')](_0x533da8['\x52\x66\x51\x66\x5a'](_0x533da8[_0x188b47(0x230,'\x44\x24\x76\x41')]('\x23',_0xdd25d7['\x6e\x75\x6d\x62\x65\x72']),'\x20\x28'),_0xdd25d7[_0x188b47(0x2d4,'\x56\x31\x48\x45')+_0x188b47(0x104,'\x51\x40\x54\x25')][_0x188b47(0x12d,'\x28\x38\x34\x45')](-0x1078+0x2*0x16+-0x827*-0x2)),'\x29');})[_0x3dc84e(0x2cd,'\x55\x6e\x55\x59')]('\x2c\x20'));}}catch(_0x518fb4){if(_0x533da8[_0x3dc84e(0x227,'\x57\x40\x48\x42')](_0x533da8[_0x3dc84e(0x225,'\x7a\x4b\x62\x6a')],_0x3dc84e(0x2aa,'\x28\x38\x34\x45')))_0x533da8[_0x3dc84e(0x125,'\x76\x59\x79\x67')](_0x5d05c9,_0x533da8[_0x3dc84e(0xb0,'\x6f\x46\x67\x33')](_0x3dc84e(0x1f4,'\x76\x53\x4c\x51')+_0x3dc84e(0x15c,'\x63\x2a\x45\x33')+_0x3dc84e(0xbf,'\x77\x25\x23\x77')+_0x3dc84e(0x30a,'\x56\x35\x50\x46')+_0x3dc84e(0x2c7,'\x5a\x30\x7a\x42'),_0x518fb4&&_0x518fb4[_0x3dc84e(0x28b,'\x51\x40\x54\x25')]?_0x518fb4[_0x3dc84e(0xd9,'\x29\x5a\x39\x34')]:_0x518fb4));else{const _0x549eda={};_0x549eda[_0x3dc84e(0x28d,'\x75\x68\x7a\x39')]=_0x2ba7d2,_0x549eda[_0x3dc84e(0x11d,'\x76\x59\x79\x67')]=_0x468408,_0x549eda['\x70\x65\x72\x73\x6f\x6e\x61\x6c'+_0x3dc84e(0x156,'\x7a\x4b\x62\x6a')+'\x65']=_0xfce03d,_0x549eda[_0x3dc84e(0xa5,'\x4c\x26\x61\x59')+_0x3dc84e(0x2a4,'\x43\x36\x71\x53')]=_0x808054,_0x549eda[_0x3dc84e(0x307,'\x4a\x7a\x74\x68')]=_0x205bf9,_0x549eda[_0x3dc84e(0x2cb,'\x69\x66\x25\x77')+_0x3dc84e(0x17b,'\x69\x67\x46\x28')]=_0x5afeb8,_0x549eda[_0x3dc84e(0x161,'\x68\x48\x51\x62')+'\x42\x79']=_0x267012,_0x549eda[_0x3dc84e(0xf2,'\x44\x24\x76\x41')+_0x3dc84e(0x18a,'\x4a\x77\x32\x4e')]=_0x5c139f,_0x549eda[_0x3dc84e(0x114,'\x44\x21\x40\x2a')+'\x69\x6f\x6e\x73']=_0x242a71;const _0x68d762=_0x533da8[_0x3dc84e(0x2c0,'\x7a\x4b\x62\x6a')](_0x1da935,_0x549eda);_0x348c7c=_0x68d762&&_0x68d762[_0x3dc84e(0x2f3,'\x6a\x2a\x37\x33')+_0x3dc84e(0x21c,'\x32\x48\x42\x32')]?_0x68d762[_0x3dc84e(0x129,'\x77\x25\x23\x77')+_0x3dc84e(0x133,'\x6f\x46\x67\x33')]:null;}}const _0x3aaeb3={..._0x5373e6};return _0x3aaeb3[_0x3dc84e(0xcb,'\x4a\x7a\x74\x68')+_0x3dc84e(0x18b,'\x7a\x6b\x29\x33')]=_0x2fdcc0,_0x3aaeb3[_0x3dc84e(0x179,'\x4c\x4a\x71\x74')+_0x3dc84e(0x2b5,'\x55\x6e\x55\x59')+'\x73']=_0x244bd6,_0x3aaeb3[_0x3dc84e(0x18e,'\x6f\x46\x67\x33')]=_0x9eca7e,_0x3aaeb3[_0x3dc84e(0xa7,'\x45\x59\x75\x54')+'\x42\x79']=_0x2c0d91,_0x3aaeb3[_0x3dc84e(0x111,'\x77\x25\x23\x77')+_0x3dc84e(0x293,'\x75\x68\x7a\x39')]=_0x291769,_0x3aaeb3['\x73\x65\x6c\x65\x63\x74\x65\x64'+_0x3dc84e(0x236,'\x6a\x45\x42\x38')+'\x64']=_0x5e10ea,_0x3aaeb3[_0x3dc84e(0x1f9,'\x76\x59\x79\x67')+_0x3dc84e(0x217,'\x4c\x77\x40\x5b')]=_0x289069,_0x3aaeb3[_0x3dc84e(0x1cc,'\x44\x21\x40\x2a')+_0x3dc84e(0x1bc,'\x43\x36\x71\x53')+_0x3dc84e(0x1ee,'\x38\x50\x46\x46')]=_0x2fdf50,_0x3aaeb3[_0x3dc84e(0x27e,'\x69\x66\x25\x77')+_0x3dc84e(0x211,'\x68\x48\x51\x62')]=_0x12763f,_0x3aaeb3[_0x3dc84e(0x2b4,'\x7a\x38\x21\x47')]=_0x4beb2b,_0x3aaeb3[_0x3dc84e(0x299,'\x76\x53\x4c\x51')+'\x49\x6e\x6e\x6f\x76\x61\x74\x65'+_0x3dc84e(0x218,'\x4a\x77\x32\x4e')]=_0xd95dd5,_0x3aaeb3[_0x3dc84e(0x18d,'\x21\x49\x38\x24')+_0x3dc84e(0x20c,'\x6f\x46\x67\x33')]=_0x48cb61,_0x3aaeb3[_0x3dc84e(0x1f8,'\x47\x58\x4b\x39')+_0x3dc84e(0x20e,'\x4a\x42\x6d\x67')]=_0x8aa795,_0x3aaeb3[_0x3dc84e(0x1a4,'\x44\x24\x76\x41')+'\x6e\x74\x73']=_0x13f5e5,_0x3aaeb3;}const _0x23d911={};_0x23d911[_0x51a8b9(0x195,'\x4c\x26\x61\x59')+_0x51a8b9(0x165,'\x44\x21\x40\x2a')]=_0x316ad6,_0x23d911[_0x51a8b9(0xa3,'\x4a\x42\x6d\x67')+_0x51a8b9(0x1ac,'\x4c\x26\x61\x59')+'\x74\x72\x61\x74\x65\x67\x79\x50'+_0x51a8b9(0x1d9,'\x6b\x63\x44\x70')]=_0x294631,module[_0x51a8b9(0x207,'\x58\x5b\x67\x63')]=_0x23d911;
1
+ 'use strict';
2
+
3
+ const { selectGeneAndCapsule } = require('../../gep/selector');
4
+ const { buildMutation, isHighRiskMutationAllowed } = require('../../gep/mutation');
5
+ const { selectPersonalityForRun } = require('../../gep/personality');
6
+ const memoryAdapter = require('../../gep/memoryGraphAdapter');
7
+ const { recordHypothesis, recordAttempt, memoryGraphPath } = memoryAdapter;
8
+ const { expandSignals } = require('../../gep/learningSignals');
9
+ const { resolveStrategy } = require('../../gep/strategy');
10
+
11
+ function _verbose(...args) {
12
+ if (String(process.env.EVOLVER_VERBOSE || '').toLowerCase() !== 'true') return;
13
+ args.unshift('[Verbose]');
14
+ console.log.apply(console, args);
15
+ }
16
+
17
+ // ---------------------------------------------------------------------------
18
+ // computeAdaptiveStrategyPolicy
19
+ // ---------------------------------------------------------------------------
20
+
21
+ function computeAdaptiveStrategyPolicy(opts) {
22
+ const recentEvents = Array.isArray(opts && opts.recentEvents) ? opts.recentEvents : [];
23
+ const selectedGene = opts && opts.selectedGene ? opts.selectedGene : null;
24
+ const signals = Array.isArray(opts && opts.signals) ? opts.signals : [];
25
+ const baseStrategy = resolveStrategy({ signals: signals });
26
+
27
+ const tail = recentEvents.slice(-8);
28
+ let repairStreak = 0;
29
+ for (let i = tail.length - 1; i >= 0; i--) {
30
+ if (tail[i] && tail[i].intent === 'repair') repairStreak++;
31
+ else break;
32
+ }
33
+ let failureStreak = 0;
34
+ for (let i = tail.length - 1; i >= 0; i--) {
35
+ if (tail[i] && tail[i].outcome && tail[i].outcome.status === 'failed') failureStreak++;
36
+ else break;
37
+ }
38
+
39
+ const antiPatterns = selectedGene && Array.isArray(selectedGene.anti_patterns) ? selectedGene.anti_patterns.slice(-5) : [];
40
+ const learningHistory = selectedGene && Array.isArray(selectedGene.learning_history) ? selectedGene.learning_history.slice(-6) : [];
41
+ const signalTags = new Set(expandSignals(signals, ''));
42
+ const overlappingAntiPatterns = antiPatterns.filter(function (ap) {
43
+ return ap && Array.isArray(ap.learning_signals) && ap.learning_signals.some(function (tag) {
44
+ return signalTags.has(String(tag));
45
+ });
46
+ });
47
+ const hardFailures = overlappingAntiPatterns.filter(function (ap) { return ap && ap.mode === 'hard'; }).length;
48
+ const softFailures = overlappingAntiPatterns.filter(function (ap) { return ap && ap.mode !== 'hard'; }).length;
49
+ const recentSuccesses = learningHistory.filter(function (x) { return x && x.outcome === 'success'; }).length;
50
+
51
+ const stagnation = signals.includes('stable_success_plateau') ||
52
+ signals.includes('evolution_saturation') ||
53
+ signals.includes('empty_cycle_loop_detected') ||
54
+ failureStreak >= 3 ||
55
+ repairStreak >= 3;
56
+
57
+ const forceInnovate = stagnation && !signals.includes('log_error');
58
+ const highRiskGene = hardFailures >= 1 || (softFailures >= 2 && recentSuccesses === 0);
59
+ const cautiousExecution = highRiskGene || failureStreak >= 2;
60
+
61
+ let blastRadiusMaxFiles = selectedGene && selectedGene.constraints && Number.isFinite(Number(selectedGene.constraints.max_files))
62
+ ? Number(selectedGene.constraints.max_files)
63
+ : 12;
64
+ if (cautiousExecution) blastRadiusMaxFiles = Math.max(2, Math.min(blastRadiusMaxFiles, 6));
65
+ else if (forceInnovate) blastRadiusMaxFiles = Math.max(3, Math.min(blastRadiusMaxFiles, 10));
66
+
67
+ const directives = [];
68
+ directives.push('Base strategy: ' + baseStrategy.label + ' (' + baseStrategy.description + ')');
69
+ if (forceInnovate) directives.push('Force strategy shift: prefer innovate over repeating repair/optimize.');
70
+ if (highRiskGene) directives.push('Selected gene is high risk for current signals; keep blast radius narrow and prefer smallest viable change.');
71
+ if (failureStreak >= 2) directives.push('Recent failure streak detected; avoid repeating recent failed approach.');
72
+ directives.push('Target max files for this cycle: ' + blastRadiusMaxFiles + '.');
73
+
74
+ return {
75
+ name: baseStrategy.name,
76
+ label: baseStrategy.label,
77
+ description: baseStrategy.description,
78
+ forceInnovate: forceInnovate,
79
+ cautiousExecution: cautiousExecution,
80
+ highRiskGene: highRiskGene,
81
+ repairStreak: repairStreak,
82
+ failureStreak: failureStreak,
83
+ blastRadiusMaxFiles: blastRadiusMaxFiles,
84
+ directives: directives,
85
+ };
86
+ }
87
+
88
+ // ---------------------------------------------------------------------------
89
+ // Stage 6 — Selection & Mutation
90
+ // ---------------------------------------------------------------------------
91
+ // Input ctx fields: genes, capsules, signals, recentEvents, memoryAdvice,
92
+ // recentFailedCapsules, heartbeatCapGaps, heartbeatNovelty, plateauOverride,
93
+ // observations, IS_RANDOM_DRIFT, hubHit (optional, for verbose only)
94
+ // Output ctx additions: selectedGene, capsuleCandidates, selector, selectedBy,
95
+ // capsulesUsed, selectedCapsuleId, strategyPolicy, personalitySelection,
96
+ // personalityState, mutation, mutationInnovateMode, hypothesisId
97
+
98
+ async function selectAndMutate(ctx) {
99
+ const {
100
+ genes, capsules, signals, recentEvents,
101
+ memoryAdvice, recentFailedCapsules,
102
+ heartbeatCapGaps, heartbeatNovelty,
103
+ plateauOverride, observations,
104
+ IS_RANDOM_DRIFT,
105
+ hubHit,
106
+ } = ctx;
107
+
108
+ const { selectedGene, capsuleCandidates, selector } = selectGeneAndCapsule({
109
+ genes,
110
+ capsules,
111
+ signals,
112
+ memoryAdvice,
113
+ driftEnabled: IS_RANDOM_DRIFT,
114
+ failedCapsules: recentFailedCapsules,
115
+ capabilityGaps: heartbeatCapGaps,
116
+ noveltyScore: heartbeatNovelty && Number.isFinite(heartbeatNovelty.score) ? heartbeatNovelty.score : null,
117
+ plateauOverride,
118
+ });
119
+
120
+ const selectedBy = memoryAdvice && memoryAdvice.preferredGeneId ? 'memory_graph+selector' : 'selector';
121
+ const capsulesUsed = Array.isArray(capsuleCandidates)
122
+ ? capsuleCandidates.map(c => (c && c.id ? String(c.id) : null)).filter(Boolean)
123
+ : [];
124
+ const selectedCapsuleId = capsulesUsed.length ? capsulesUsed[0] : null;
125
+ const strategyPolicy = computeAdaptiveStrategyPolicy({
126
+ recentEvents,
127
+ selectedGene,
128
+ signals,
129
+ });
130
+
131
+ _verbose('Gene selection: gene=' + (selectedGene ? selectedGene.id : '(none)') + ' capsule=' + (selectedCapsuleId || '(none)') + ' selectedBy=' + selectedBy + ' selector=' + (selector || '(none)'));
132
+ _verbose('Strategy policy: name=' + strategyPolicy.name + ' forceInnovate=' + strategyPolicy.forceInnovate + ' cautious=' + strategyPolicy.cautiousExecution + ' maxFiles=' + strategyPolicy.blastRadiusMaxFiles);
133
+ if (memoryAdvice) {
134
+ _verbose('Memory advice: preferred=' + (memoryAdvice.preferredGeneId || '(none)') + ' banned=[' + (Array.isArray(memoryAdvice.bannedGeneIds) ? memoryAdvice.bannedGeneIds.join(',') : '') + ']');
135
+ }
136
+
137
+ // Personality selection (natural selection + small mutation when triggered).
138
+ // This state is persisted in MEMORY_DIR and is treated as an evolution control surface (not role-play).
139
+ const personalitySelection = selectPersonalityForRun({
140
+ driftEnabled: IS_RANDOM_DRIFT,
141
+ signals,
142
+ recentEvents,
143
+ });
144
+ const personalityState = personalitySelection && personalitySelection.personality_state ? personalitySelection.personality_state : null;
145
+
146
+ // Mutation object is mandatory for every evolution run.
147
+ const tail = Array.isArray(recentEvents) ? recentEvents.slice(-6) : [];
148
+ const tailOutcomes = tail
149
+ .map(e => (e && e.outcome && e.outcome.status ? String(e.outcome.status) : null))
150
+ .filter(Boolean);
151
+ const stableSuccess = tailOutcomes.length >= 6 && tailOutcomes.every(s => s === 'success');
152
+ const tailAvgScore =
153
+ tail.length > 0
154
+ ? tail.reduce((acc, e) => acc + (e && e.outcome && Number.isFinite(Number(e.outcome.score)) ? Number(e.outcome.score) : 0), 0) /
155
+ tail.length
156
+ : 0;
157
+ const innovationPressure =
158
+ !IS_RANDOM_DRIFT &&
159
+ personalityState &&
160
+ Number.isFinite(Number(personalityState.creativity)) &&
161
+ Number(personalityState.creativity) >= 0.75 &&
162
+ stableSuccess &&
163
+ tailAvgScore >= 0.7;
164
+ const forceInnovation =
165
+ String(process.env.FORCE_INNOVATION || process.env.EVOLVE_FORCE_INNOVATION || '').toLowerCase() === 'true';
166
+ const mutationInnovateMode = !!IS_RANDOM_DRIFT || !!innovationPressure || !!forceInnovation || !!strategyPolicy.forceInnovate;
167
+ const mutationSignals = innovationPressure ? [...(Array.isArray(signals) ? signals : []), 'stable_success_plateau'] : signals;
168
+ const mutationSignalsEffective = (forceInnovation || strategyPolicy.forceInnovate)
169
+ ? [...(Array.isArray(mutationSignals) ? mutationSignals : []), 'force_innovation']
170
+ : mutationSignals;
171
+
172
+ const allowHighRisk =
173
+ !!IS_RANDOM_DRIFT &&
174
+ !!personalitySelection &&
175
+ !!personalitySelection.personality_known &&
176
+ personalityState &&
177
+ isHighRiskMutationAllowed(personalityState) &&
178
+ Number(personalityState.rigor) >= 0.8 &&
179
+ Number(personalityState.risk_tolerance) <= 0.3 &&
180
+ !(Array.isArray(signals) && signals.includes('log_error'));
181
+ const mutation = buildMutation({
182
+ signals: mutationSignalsEffective,
183
+ selectedGene,
184
+ driftEnabled: mutationInnovateMode,
185
+ personalityState,
186
+ allowHighRisk,
187
+ });
188
+
189
+ _verbose('Mutation: category=' + (mutation && mutation.category || '?') + ' risk=' + (mutation && mutation.risk_level || '?') + ' innovateMode=' + mutationInnovateMode + ' forceInnovation=' + forceInnovation + ' allowHighRisk=' + allowHighRisk);
190
+ _verbose('Hub: hubHit=' + (hubHit && hubHit.hit ? 'true (score=' + hubHit.score + ' mode=' + hubHit.mode + ')' : 'false (' + (hubHit && hubHit.reason || 'unknown') + ')'));
191
+
192
+ // Memory Graph: record hypothesis bridging Signal -> Action. If this fails, refuse to evolve.
193
+ let hypothesisId = null;
194
+ try {
195
+ const hyp = recordHypothesis({
196
+ signals,
197
+ mutation,
198
+ personality_state: personalityState,
199
+ selectedGene,
200
+ selector,
201
+ driftEnabled: mutationInnovateMode,
202
+ selectedBy,
203
+ capsulesUsed,
204
+ observations,
205
+ });
206
+ hypothesisId = hyp && hyp.hypothesisId ? hyp.hypothesisId : null;
207
+ } catch (e) {
208
+ console.error(`[MemoryGraph] Hypothesis write failed: ${e.message}`);
209
+ console.error(`[MemoryGraph] Refusing to evolve without causal memory. Target: ${memoryGraphPath()}`);
210
+ throw new Error(`MemoryGraph Hypothesis write failed: ${e.message}`);
211
+ }
212
+
213
+ // Memory Graph: record the chosen causal path for this run. If this fails, refuse to output a mutation prompt.
214
+ try {
215
+ recordAttempt({
216
+ signals,
217
+ mutation,
218
+ personality_state: personalityState,
219
+ selectedGene,
220
+ selector,
221
+ driftEnabled: mutationInnovateMode,
222
+ selectedBy,
223
+ hypothesisId,
224
+ capsulesUsed,
225
+ observations,
226
+ });
227
+ } catch (e) {
228
+ console.error(`[MemoryGraph] Attempt write failed: ${e.message}`);
229
+ console.error(`[MemoryGraph] Refusing to evolve without causal memory. Target: ${memoryGraphPath()}`);
230
+ throw new Error(`MemoryGraph Attempt write failed: ${e.message}`);
231
+ }
232
+
233
+ // Open-PR hints: weak token-overlap signal between selected gene and any
234
+ // open PR. Hint-only — does not block this cycle. dispatch.js will inject
235
+ // it into the LLM prompt so a thinking model can choose to defer if its
236
+ // planned changes look suspicious. The hard guard is in solidify.js, where
237
+ // file-level overlap triggers a rollback.
238
+ let openPRHints = [];
239
+ if (process.env.EVOLVE_OPEN_PR_DEDUP !== '0') {
240
+ try {
241
+ const { findSignalHints } = require('../../gep/openPRRegistry');
242
+ const sigPool = (selectedGene && Array.isArray(selectedGene.signals_match) && selectedGene.signals_match.length > 0)
243
+ ? selectedGene.signals_match
244
+ : signals;
245
+ openPRHints = findSignalHints({ signals: sigPool });
246
+ if (openPRHints.length > 0) {
247
+ _verbose('OpenPR hints: ' + openPRHints.map(function (h) { return '#' + h.number + ' (' + h.tokenOverlap.toFixed(2) + ')'; }).join(', '));
248
+ }
249
+ } catch (e) {
250
+ // Hints must never block selection.
251
+ _verbose('OpenPR hint lookup failed (non-fatal): ' + (e && e.message ? e.message : e));
252
+ }
253
+ }
254
+
255
+ return {
256
+ ...ctx,
257
+ selectedGene,
258
+ capsuleCandidates,
259
+ selector,
260
+ selectedBy,
261
+ capsulesUsed,
262
+ selectedCapsuleId,
263
+ strategyPolicy,
264
+ personalitySelection,
265
+ personalityState,
266
+ mutation,
267
+ mutationInnovateMode,
268
+ forceInnovation,
269
+ hypothesisId,
270
+ openPRHints,
271
+ };
272
+ }
273
+
274
+ module.exports = { selectAndMutate, computeAdaptiveStrategyPolicy };