@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,207 @@
1
- const _0x13e9ba=_0x36b9;(function(_0x460f5a,_0x446fd4){const _0x3cc234=_0x36b9,_0x14b854=_0x460f5a();while(!![]){try{const _0x33d193=parseInt(_0x3cc234(0x2d7,'\x26\x39\x53\x24'))/(-0x2*-0xa41+0x1b1f+0x4*-0xbe8)*(-parseInt(_0x3cc234(0x1fe,'\x4e\x65\x4c\x6c'))/(0x6*-0x1a2+0x146e+0x22*-0x50))+-parseInt(_0x3cc234(0x29e,'\x68\x6d\x76\x36'))/(-0x1c04+-0x26aa+0x42b1)+parseInt(_0x3cc234(0x191,'\x45\x5b\x55\x7a'))/(-0x12f4+0x3e*-0xb+0x15a2)+parseInt(_0x3cc234(0x1b8,'\x73\x56\x23\x21'))/(-0x3a*0xa6+-0x1b02*0x1+0x40a3*0x1)*(-parseInt(_0x3cc234(0x1c6,'\x5a\x65\x6f\x35'))/(0x1b14*-0x1+-0x2bd*-0x3+-0x3c7*-0x5))+parseInt(_0x3cc234(0x1bb,'\x63\x71\x5a\x71'))/(0x1*0x1cea+0x1ba0+-0x3883)*(parseInt(_0x3cc234(0x26b,'\x67\x57\x64\x28'))/(-0x15c9+-0x2315+0x38e6))+-parseInt(_0x3cc234(0x1ad,'\x56\x29\x73\x25'))/(0xdae+0x1784+-0x2529)*(-parseInt(_0x3cc234(0x258,'\x40\x48\x48\x79'))/(-0x9bc+0x1f8b+-0x15c5))+parseInt(_0x3cc234(0x2c4,'\x73\x6b\x61\x21'))/(0xf61+0x202*-0x4+-0x74e);if(_0x33d193===_0x446fd4)break;else _0x14b854['push'](_0x14b854['shift']());}catch(_0x58d723){_0x14b854['push'](_0x14b854['shift']());}}}(_0xda3a,0x1*-0x2be25+0x74*-0xa55+0xb17fd));const _0x393f3d=(function(){const _0x572bdb=_0x36b9,_0x16aaf9={};_0x16aaf9[_0x572bdb(0x2b8,'\x67\x53\x55\x32')]=_0x572bdb(0x26c,'\x31\x76\x59\x46')+_0x572bdb(0x284,'\x47\x46\x68\x67')+'\x69\x64',_0x16aaf9[_0x572bdb(0x1ee,'\x4d\x56\x64\x37')]=function(_0x14af13,_0x546eef){return _0x14af13!==_0x546eef;},_0x16aaf9[_0x572bdb(0x252,'\x6d\x66\x52\x76')]=_0x572bdb(0x24c,'\x63\x71\x5a\x71');const _0x3f4472=_0x16aaf9;let _0x10c982=!![];return function(_0x53d873,_0xc8fde7){const _0x367215=_0x572bdb,_0x20342d={};_0x20342d[_0x367215(0x1c2,'\x56\x29\x73\x25')]=_0x3f4472[_0x367215(0x1fd,'\x29\x54\x78\x63')];const _0xc6740a=_0x20342d;if(_0x3f4472[_0x367215(0x198,'\x4a\x77\x75\x43')](_0x367215(0x263,'\x67\x53\x55\x32'),_0x3f4472[_0x367215(0x1ca,'\x5a\x65\x6f\x35')])){const _0x1ae56e=_0x10c982?function(){const _0x3b8fae=_0x367215;if(_0xc8fde7){const _0x2e4e79=_0xc8fde7[_0x3b8fae(0x22d,'\x50\x65\x6a\x51')](_0x53d873,arguments);return _0xc8fde7=null,_0x2e4e79;}}:function(){};return _0x10c982=![],_0x1ae56e;}else{const _0x352967={};return _0x352967[_0x367215(0x1a7,'\x50\x65\x6a\x51')+'\x64']=![],_0x352967[_0x367215(0x2e8,'\x5a\x65\x6f\x35')]=_0xc6740a[_0x367215(0x1a1,'\x31\x76\x59\x46')],_0x352967;}};}()),_0x1a7ea1=_0x393f3d(this,function(){const _0x14b89f=_0x36b9,_0x411a6c={};_0x411a6c['\x4e\x4d\x7a\x4e\x6c']='\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x14b89f(0x29b,'\x2a\x70\x5d\x31');const _0x1a9fe2=_0x411a6c;return _0x1a7ea1[_0x14b89f(0x216,'\x69\x34\x6a\x62')]()[_0x14b89f(0x1ba,'\x69\x34\x6a\x62')](_0x1a9fe2[_0x14b89f(0x261,'\x56\x29\x73\x25')])[_0x14b89f(0x287,'\x68\x6d\x76\x36')]()[_0x14b89f(0x206,'\x6d\x66\x52\x76')+_0x14b89f(0x21d,'\x2a\x44\x58\x74')](_0x1a7ea1)['\x73\x65\x61\x72\x63\x68'](_0x1a9fe2[_0x14b89f(0x20b,'\x26\x39\x53\x24')]);});function _0xda3a(){const _0x4c073c=['\x62\x6d\x6f\x4d\x57\x51\x78\x63\x4c\x48\x33\x63\x4e\x61','\x57\x36\x33\x64\x47\x43\x6b\x6a\x57\x52\x75\x74','\x79\x63\x79\x42\x57\x34\x65\x57','\x77\x53\x6f\x39\x6f\x71\x53\x54\x71\x72\x6e\x35','\x57\x35\x2f\x63\x51\x53\x6f\x6d\x57\x37\x53\x47','\x70\x4e\x38\x64\x57\x37\x43\x5a\x67\x61\x75\x71','\x42\x74\x53\x43\x57\x34\x53\x54','\x41\x43\x6b\x35\x64\x6d\x6f\x63\x64\x43\x6b\x49','\x57\x35\x37\x63\x4d\x73\x74\x64\x56\x57','\x44\x57\x69\x6e\x7a\x33\x53','\x57\x35\x78\x63\x4d\x74\x4a\x64\x54\x6d\x6f\x7a\x61\x43\x6b\x56\x69\x61','\x7a\x38\x6b\x55\x57\x4f\x50\x52\x57\x36\x6d','\x44\x43\x6b\x6e\x57\x50\x6e\x4d\x57\x34\x38','\x62\x72\x46\x63\x4e\x38\x6f\x71\x57\x36\x53','\x76\x43\x6b\x6a\x57\x50\x54\x72\x57\x37\x6d','\x57\x37\x76\x59\x57\x52\x7a\x36\x57\x34\x76\x67','\x57\x35\x37\x63\x47\x43\x6b\x42\x57\x50\x4b\x70','\x69\x6d\x6b\x34\x57\x36\x74\x63\x54\x43\x6f\x7a','\x67\x53\x6f\x2f\x57\x4f\x37\x64\x55\x53\x6f\x4a\x43\x73\x33\x64\x56\x57','\x6c\x38\x6f\x54\x57\x52\x6e\x4f\x45\x47','\x46\x43\x6b\x52\x57\x37\x6c\x63\x54\x67\x76\x68\x57\x4f\x46\x63\x4d\x71','\x57\x4f\x4c\x34\x77\x32\x46\x63\x50\x67\x33\x63\x55\x47\x75','\x57\x37\x70\x64\x47\x53\x6f\x34\x62\x6d\x6f\x41\x57\x35\x66\x77\x57\x50\x30','\x57\x52\x68\x63\x52\x66\x44\x32\x57\x37\x31\x6a','\x57\x37\x68\x63\x54\x6d\x6f\x6e\x78\x57','\x77\x73\x5a\x64\x47\x75\x6a\x71','\x41\x30\x68\x63\x4b\x38\x6f\x5a\x57\x50\x6d','\x72\x38\x6b\x70\x57\x36\x56\x63\x4d\x4c\x48\x66','\x57\x4f\x78\x63\x50\x4d\x4c\x55\x57\x4f\x30','\x57\x50\x70\x64\x4f\x63\x6d\x52\x43\x57','\x6c\x4e\x74\x63\x50\x61','\x57\x37\x78\x64\x55\x38\x6b\x70\x70\x53\x6b\x6d\x73\x43\x6b\x6d','\x57\x4f\x65\x37\x7a\x6d\x6f\x69\x46\x75\x64\x64\x47\x58\x71','\x74\x65\x46\x63\x4c\x38\x6f\x59\x57\x50\x37\x64\x47\x6d\x6b\x6a\x57\x4f\x34','\x57\x51\x74\x63\x4c\x65\x70\x63\x4c\x32\x79\x71\x69\x38\x6b\x69\x62\x63\x35\x62\x57\x34\x38','\x57\x36\x70\x64\x50\x38\x6b\x74\x64\x38\x6b\x65\x71\x61','\x57\x34\x57\x62\x63\x65\x6c\x64\x4e\x4b\x75','\x57\x37\x43\x31\x57\x36\x62\x47\x69\x6d\x6f\x52','\x75\x65\x50\x4c\x72\x33\x4a\x64\x4b\x4d\x79','\x62\x38\x6f\x44\x71\x78\x6c\x63\x52\x61','\x57\x35\x37\x64\x47\x63\x4e\x64\x4c\x63\x53','\x57\x36\x37\x63\x55\x78\x68\x63\x4c\x38\x6b\x50','\x57\x37\x6c\x63\x54\x6d\x6f\x44\x76\x62\x37\x64\x4a\x58\x65','\x44\x31\x7a\x47\x7a\x76\x30','\x57\x50\x54\x74\x57\x34\x64\x63\x52\x38\x6f\x2b\x74\x38\x6b\x4f\x6f\x57','\x57\x37\x46\x64\x48\x43\x6f\x5a\x68\x43\x6f\x77\x57\x36\x6e\x33\x57\x4f\x71','\x57\x34\x30\x75\x68\x76\x2f\x64\x48\x76\x65','\x57\x52\x70\x63\x4f\x76\x6a\x37\x57\x4f\x71','\x65\x6d\x6f\x32\x57\x52\x35\x34\x77\x43\x6b\x77\x42\x78\x43','\x67\x48\x4e\x63\x51\x6d\x6f\x41\x57\x37\x43','\x57\x34\x53\x50\x57\x36\x54\x57\x66\x61','\x57\x50\x46\x63\x53\x75\x42\x63\x48\x57\x2f\x63\x55\x47','\x6a\x77\x5a\x63\x4a\x67\x61\x63\x57\x37\x52\x64\x4b\x78\x34','\x44\x38\x6b\x56\x57\x51\x66\x37\x57\x35\x57','\x6b\x33\x74\x63\x4e\x4b\x47\x61','\x57\x35\x34\x78\x62\x4b\x74\x64\x4e\x57','\x57\x37\x70\x64\x47\x53\x6f\x34\x62\x6d\x6f\x41\x57\x35\x66\x51\x57\x4f\x30','\x45\x32\x37\x63\x50\x38\x6b\x48\x77\x76\x4a\x64\x52\x53\x6b\x67','\x74\x43\x6f\x64\x69\x78\x39\x75','\x57\x50\x68\x63\x56\x5a\x64\x64\x49\x53\x6b\x4b\x45\x31\x43','\x6c\x43\x6f\x58\x57\x37\x74\x64\x49\x53\x6f\x48','\x67\x38\x6f\x65\x57\x34\x2f\x64\x51\x6d\x6f\x2b\x43\x68\x4e\x64\x4b\x57','\x57\x4f\x56\x63\x4b\x6d\x6f\x6c\x57\x34\x6e\x67\x67\x6d\x6f\x43\x57\x51\x4f\x78\x78\x53\x6f\x5a\x41\x53\x6f\x4f','\x65\x6d\x6b\x52\x42\x66\x7a\x51\x66\x62\x50\x54\x57\x35\x75\x58\x6d\x38\x6f\x32','\x66\x68\x70\x63\x54\x4a\x69\x62\x57\x37\x78\x64\x47\x68\x34','\x75\x43\x6b\x59\x57\x52\x50\x63\x57\x36\x34','\x7a\x6d\x6b\x51\x62\x71','\x57\x52\x6d\x6c\x72\x43\x6f\x45\x45\x61','\x6b\x38\x6f\x5a\x57\x34\x56\x63\x55\x38\x6f\x52\x43\x68\x4e\x64\x52\x57','\x57\x36\x37\x64\x4f\x63\x71\x5a\x57\x51\x4f','\x63\x38\x6f\x59\x57\x34\x70\x64\x56\x53\x6f\x49\x79\x68\x4b','\x69\x43\x6f\x6a\x57\x4f\x70\x63\x56\x78\x4a\x64\x54\x61','\x57\x36\x4a\x63\x51\x4b\x64\x63\x47\x53\x6b\x32','\x57\x50\x37\x63\x4e\x67\x74\x64\x56\x38\x6b\x6f\x46\x71\x75\x61\x57\x52\x66\x43\x57\x35\x37\x63\x50\x38\x6b\x6f','\x57\x36\x64\x64\x4b\x43\x6b\x33\x6d\x43\x6b\x2f','\x76\x43\x6b\x67\x57\x36\x42\x63\x50\x66\x72\x6b','\x75\x43\x6b\x75\x57\x50\x4a\x63\x4c\x32\x5a\x63\x55\x78\x57\x57\x76\x57','\x57\x4f\x64\x64\x4d\x5a\x6d\x5a\x44\x71','\x57\x36\x2f\x64\x4c\x58\x4a\x64\x4a\x5a\x48\x77\x61\x38\x6b\x35','\x46\x49\x4f\x75\x57\x35\x43\x53\x6d\x47','\x57\x37\x61\x5a\x57\x37\x54\x4b','\x41\x38\x6f\x74\x70\x66\x72\x57\x57\x4f\x31\x43','\x57\x35\x44\x6d\x57\x4f\x4e\x63\x4f\x53\x6f\x52\x66\x38\x6b\x33\x45\x57','\x57\x37\x78\x64\x4a\x53\x6b\x62\x57\x4f\x69\x55','\x76\x6d\x6b\x67\x57\x37\x68\x63\x56\x31\x6a\x76\x57\x50\x74\x63\x4c\x61','\x57\x34\x39\x61\x46\x53\x6f\x50\x57\x35\x58\x51\x61\x6d\x6b\x30','\x57\x36\x4f\x54\x57\x36\x72\x48\x6b\x57','\x6c\x43\x6b\x67\x69\x53\x6f\x4c\x64\x38\x6b\x2b\x57\x34\x79','\x57\x4f\x46\x64\x55\x43\x6b\x66\x57\x34\x78\x63\x54\x53\x6f\x2f\x72\x6d\x6b\x4f','\x57\x35\x78\x63\x4b\x6d\x6f\x73\x74\x48\x34','\x57\x36\x53\x67\x67\x77\x42\x64\x52\x71','\x42\x43\x6b\x36\x6a\x43\x6f\x6c\x69\x61','\x6b\x6d\x6f\x4e\x45\x4d\x78\x63\x56\x75\x7a\x4f\x70\x71','\x57\x37\x68\x63\x4c\x6d\x6b\x70\x57\x50\x79\x4d','\x57\x34\x4b\x43\x62\x4c\x52\x64\x49\x4b\x69\x4a\x57\x4f\x53','\x6d\x32\x37\x63\x53\x68\x65\x63\x57\x36\x70\x64\x48\x57','\x43\x6d\x6b\x78\x57\x34\x52\x63\x53\x77\x71','\x57\x34\x4c\x71\x57\x34\x46\x63\x4f\x53\x6f\x32\x61\x53\x6b\x69\x41\x57','\x63\x6d\x6b\x57\x6c\x61\x30\x57\x76\x48\x47\x47','\x57\x50\x64\x63\x54\x67\x48\x37\x57\x50\x30\x6d\x57\x51\x37\x63\x4e\x61','\x74\x38\x6f\x39\x6b\x59\x53\x50\x73\x58\x66\x56','\x57\x36\x33\x63\x4d\x61\x6e\x6a\x76\x71','\x57\x34\x46\x63\x49\x73\x74\x64\x4f\x38\x6f\x69','\x66\x53\x6f\x34\x57\x51\x6e\x49','\x69\x38\x6f\x4b\x73\x75\x6c\x63\x51\x47','\x74\x43\x6f\x5a\x64\x62\x4b\x66','\x70\x68\x4a\x64\x53\x53\x6f\x32\x63\x61\x37\x64\x54\x38\x6b\x37\x67\x61\x33\x63\x48\x53\x6f\x79\x57\x51\x4f','\x6d\x43\x6f\x46\x57\x52\x6d\x65\x62\x61\x62\x54\x43\x71','\x57\x37\x61\x55\x57\x35\x72\x47\x6e\x53\x6f\x50\x75\x57','\x57\x36\x47\x4b\x57\x37\x58\x55\x6f\x53\x6f\x4b','\x6f\x38\x6f\x35\x73\x4d\x2f\x63\x56\x76\x54\x54\x6e\x57','\x57\x52\x65\x51\x46\x6d\x6f\x66\x45\x71','\x57\x36\x78\x64\x48\x43\x6f\x4f\x62\x53\x6f\x62','\x62\x38\x6f\x72\x57\x4f\x46\x63\x53\x71','\x69\x6d\x6f\x65\x57\x50\x37\x63\x54\x33\x6d','\x68\x53\x6f\x2b\x57\x52\x39\x49\x77\x6d\x6b\x4a\x79\x78\x75','\x57\x34\x6e\x49\x57\x52\x48\x36\x57\x36\x69','\x44\x65\x6a\x48\x45\x33\x57','\x69\x6d\x6f\x44\x57\x50\x78\x63\x55\x78\x2f\x64\x50\x38\x6b\x32\x72\x71','\x6e\x43\x6f\x6c\x57\x51\x47\x73\x65\x72\x44\x68\x76\x57','\x57\x35\x39\x43\x57\x35\x56\x63\x52\x43\x6f\x36\x63\x53\x6b\x2b','\x57\x34\x48\x62\x57\x35\x56\x63\x51\x53\x6f\x31\x61\x6d\x6b\x59\x44\x61','\x57\x50\x4e\x63\x52\x72\x37\x63\x4d\x43\x6b\x64\x46\x76\x53\x79','\x71\x43\x6b\x61\x57\x50\x58\x78','\x57\x37\x68\x64\x48\x6d\x6f\x6b\x57\x37\x4e\x64\x53\x38\x6f\x72\x70\x71','\x6e\x53\x6f\x50\x57\x50\x72\x78\x45\x47','\x57\x4f\x52\x63\x53\x59\x42\x64\x4a\x53\x6f\x4c\x45\x4c\x30\x67','\x67\x53\x6f\x72\x57\x35\x4a\x64\x4c\x38\x6f\x33','\x57\x4f\x69\x36\x6d\x6d\x6b\x64\x45\x33\x64\x64\x49\x65\x53','\x69\x6d\x6f\x68\x57\x4f\x78\x63\x4f\x61','\x57\x35\x31\x36\x74\x6d\x6f\x73\x57\x37\x71','\x57\x4f\x52\x63\x55\x61\x68\x64\x4c\x53\x6b\x6b','\x57\x37\x71\x47\x57\x36\x62\x36\x6b\x57','\x46\x65\x33\x63\x4c\x43\x6f\x56\x57\x4f\x5a\x64\x49\x53\x6b\x70\x57\x35\x47','\x57\x37\x68\x63\x50\x53\x6f\x51\x45\x74\x4f','\x57\x37\x6c\x63\x49\x53\x6b\x61\x57\x52\x38\x6d\x57\x52\x42\x63\x4c\x6d\x6f\x61','\x57\x36\x52\x64\x4d\x6d\x6f\x35','\x78\x4b\x5a\x63\x4e\x38\x6f\x55\x57\x4f\x56\x64\x51\x43\x6b\x69\x57\x34\x79','\x79\x63\x4f\x42\x57\x34\x6d\x33\x6e\x61','\x57\x35\x76\x43\x77\x53\x6f\x76\x57\x34\x57','\x57\x37\x4a\x64\x50\x53\x6b\x6a\x6e\x43\x6b\x6a\x62\x6d\x6b\x42\x57\x52\x38','\x46\x59\x61\x61\x57\x35\x79\x47\x6f\x72\x30\x56','\x74\x59\x6c\x63\x53\x6d\x6b\x6d\x57\x34\x6d','\x57\x52\x70\x63\x55\x6d\x6f\x71\x75\x5a\x52\x64\x56\x59\x61','\x76\x43\x6b\x78\x57\x37\x78\x63\x56\x31\x4c\x66\x57\x50\x4a\x63\x4c\x47','\x57\x36\x43\x4a\x57\x34\x44\x66\x6f\x61','\x76\x6d\x6b\x41\x57\x51\x4e\x63\x56\x65\x72\x6e\x57\x50\x38','\x67\x53\x6f\x4f\x57\x52\x79','\x57\x35\x74\x64\x49\x43\x6b\x6d\x57\x51\x71\x43\x77\x53\x6b\x6f\x57\x52\x79','\x57\x37\x4e\x64\x4d\x47\x37\x64\x4b\x64\x61','\x57\x35\x39\x75\x41\x6d\x6f\x4e\x57\x35\x30','\x57\x52\x6c\x64\x4d\x47\x38\x57\x41\x4d\x6c\x63\x4d\x78\x47','\x76\x6d\x6b\x67\x57\x37\x6c\x63\x50\x76\x6a\x67','\x43\x53\x6b\x50\x70\x43\x6f\x50\x64\x71','\x57\x51\x33\x64\x4e\x43\x6b\x52\x57\x35\x52\x63\x4c\x47','\x57\x35\x56\x63\x50\x38\x6b\x64\x57\x52\x71\x37\x57\x51\x74\x63\x48\x38\x6f\x6e','\x75\x77\x70\x63\x49\x53\x6f\x73\x57\x50\x6d','\x57\x4f\x37\x63\x56\x59\x6c\x64\x49\x53\x6b\x51\x43\x47','\x6a\x53\x6f\x67\x57\x51\x34\x45\x68\x48\x71','\x57\x34\x52\x64\x4f\x38\x6f\x34\x57\x34\x33\x64\x47\x61','\x57\x50\x37\x63\x47\x4c\x31\x57\x57\x4f\x6d','\x57\x37\x4a\x64\x53\x38\x6b\x36\x57\x50\x6d\x7a','\x57\x50\x74\x63\x52\x59\x68\x64\x50\x53\x6b\x33\x45\x75\x71\x44','\x57\x36\x52\x63\x4e\x64\x71\x58','\x57\x35\x7a\x75\x57\x35\x4b','\x6e\x53\x6f\x71\x57\x50\x37\x63\x50\x32\x6c\x64\x4f\x6d\x6b\x72\x77\x71','\x57\x35\x64\x64\x55\x6d\x6f\x6a\x70\x71','\x75\x53\x6b\x6d\x57\x35\x74\x63\x4f\x4b\x76\x6c\x57\x50\x2f\x63\x4c\x57','\x57\x37\x68\x64\x47\x61\x79','\x43\x59\x68\x64\x53\x30\x58\x67','\x57\x34\x54\x68\x44\x43\x6f\x57\x57\x35\x62\x79\x68\x43\x6b\x39','\x57\x34\x52\x63\x47\x61\x5a\x64\x52\x43\x6b\x4f\x42\x4b\x4f','\x57\x35\x72\x74\x45\x43\x6f\x68\x57\x37\x69','\x79\x62\x57\x65\x57\x34\x69\x47','\x57\x4f\x35\x49\x73\x57','\x57\x36\x68\x64\x54\x43\x6b\x50\x68\x53\x6b\x53','\x61\x53\x6f\x38\x57\x35\x70\x63\x54\x67\x57','\x74\x43\x6b\x33\x57\x37\x37\x63\x4e\x65\x38','\x57\x51\x37\x63\x54\x73\x4a\x64\x4d\x6d\x6b\x6c','\x64\x53\x6f\x6b\x57\x4f\x56\x63\x4d\x5a\x34','\x57\x36\x4a\x64\x47\x53\x6f\x34\x57\x36\x6d','\x77\x59\x74\x64\x55\x77\x58\x59','\x64\x6d\x6b\x66\x57\x36\x56\x64\x55\x6d\x6f\x71\x57\x36\x39\x47\x57\x4f\x43','\x73\x53\x6b\x67\x57\x36\x4e\x63\x53\x75\x6e\x6b','\x70\x43\x6b\x78\x57\x35\x68\x63\x55\x43\x6f\x35','\x42\x47\x79\x72\x64\x47','\x57\x52\x70\x64\x54\x38\x6b\x62\x57\x34\x78\x63\x47\x61','\x43\x43\x6b\x58\x57\x52\x39\x45\x57\x35\x30','\x57\x34\x46\x63\x4f\x38\x6b\x79\x57\x52\x47','\x57\x52\x52\x64\x4b\x62\x47\x57','\x57\x36\x68\x64\x48\x38\x6f\x51\x62\x43\x6f\x6b','\x57\x36\x70\x64\x54\x38\x6b\x43\x69\x38\x6b\x63\x73\x47','\x57\x50\x42\x63\x4a\x33\x33\x63\x4c\x62\x71','\x57\x4f\x33\x63\x54\x4d\x68\x63\x4d\x48\x74\x63\x4f\x6d\x6b\x61\x75\x71','\x64\x6d\x6f\x56\x57\x34\x2f\x64\x52\x38\x6f\x34\x7a\x47','\x57\x50\x74\x63\x4d\x63\x37\x64\x50\x38\x6f\x65\x6f\x38\x6b\x58\x7a\x61','\x68\x53\x6f\x45\x74\x33\x74\x63\x4e\x47','\x57\x4f\x68\x63\x52\x33\x62\x50\x57\x36\x4b','\x63\x72\x5a\x63\x47\x6d\x6f\x76\x57\x36\x4f','\x57\x37\x78\x64\x55\x38\x6b\x69\x69\x38\x6f\x78\x62\x61','\x57\x51\x2f\x64\x4d\x38\x6b\x57\x57\x34\x6c\x63\x55\x47','\x65\x6d\x6f\x6e\x57\x34\x5a\x63\x4f\x65\x46\x63\x56\x57','\x6a\x38\x6f\x43\x57\x50\x6c\x63\x53\x61','\x57\x34\x52\x64\x4b\x38\x6b\x6c\x57\x50\x6d','\x6e\x38\x6f\x2f\x57\x52\x70\x63\x54\x74\x69','\x65\x38\x6f\x69\x57\x35\x2f\x64\x56\x43\x6f\x55','\x57\x4f\x68\x63\x54\x31\x78\x63\x4e\x61\x47','\x57\x52\x4a\x64\x48\x49\x61\x58\x42\x68\x68\x63\x4c\x71','\x73\x38\x6b\x61\x57\x4f\x66\x62\x57\x37\x44\x54\x57\x50\x65','\x42\x75\x56\x63\x4b\x43\x6f\x56\x57\x50\x64\x64\x47\x47','\x57\x50\x46\x63\x4e\x57\x4a\x64\x54\x6d\x6b\x4f','\x57\x4f\x6c\x63\x48\x75\x48\x68\x57\x37\x4b','\x57\x50\x68\x63\x4f\x49\x65\x39','\x67\x53\x6b\x78\x57\x35\x4a\x63\x56\x6d\x6f\x39\x57\x36\x48\x44\x57\x34\x34','\x77\x53\x6b\x4e\x57\x52\x37\x63\x49\x47\x46\x63\x4d\x67\x43\x35','\x77\x43\x6f\x7a\x6f\x66\x39\x48\x57\x50\x75','\x62\x53\x6f\x70\x57\x37\x4a\x63\x55\x78\x57','\x57\x34\x33\x64\x54\x30\x62\x33\x57\x50\x64\x64\x48\x4e\x2f\x64\x54\x61','\x43\x61\x37\x63\x4b\x43\x6b\x38\x57\x4f\x5a\x64\x4d\x43\x6b\x7a\x57\x35\x43','\x57\x50\x64\x64\x50\x75\x70\x63\x4d\x48\x37\x64\x51\x43\x6b\x41\x77\x57','\x57\x35\x62\x71\x43\x53\x6f\x4a\x57\x34\x66\x32','\x6a\x6d\x6f\x48\x57\x35\x68\x63\x56\x30\x65','\x57\x34\x33\x64\x48\x74\x6c\x63\x54\x43\x6f\x63','\x74\x58\x64\x63\x51\x38\x6b\x55\x57\x37\x65','\x57\x35\x2f\x64\x54\x43\x6b\x62\x57\x50\x75\x78','\x57\x34\x4a\x64\x47\x38\x6b\x7a\x57\x4f\x47\x42\x71\x71','\x57\x51\x31\x51\x73\x65\x74\x63\x51\x47','\x57\x51\x46\x64\x4b\x59\x4b\x35\x78\x61','\x57\x36\x48\x58\x57\x35\x33\x63\x4a\x6d\x6f\x43','\x41\x43\x6b\x35\x64\x6d\x6f\x76\x6a\x6d\x6b\x4c\x57\x35\x6c\x64\x4b\x47','\x72\x53\x6f\x74\x6c\x63\x6d\x31','\x77\x6d\x6f\x54\x6c\x61\x79','\x41\x53\x6f\x39\x70\x48\x57\x36\x76\x4c\x30','\x57\x52\x75\x4e\x57\x51\x66\x41\x57\x35\x50\x53\x57\x4f\x70\x63\x51\x71','\x57\x36\x6c\x64\x50\x38\x6b\x46\x70\x43\x6b\x65\x75\x6d\x6b\x44\x57\x52\x38','\x57\x36\x4e\x64\x56\x31\x66\x42\x57\x50\x79','\x57\x35\x64\x64\x56\x72\x53\x6c\x57\x50\x53','\x71\x59\x68\x63\x50\x53\x6b\x4a\x41\x57','\x57\x52\x6d\x54\x79\x6d\x6f\x37\x75\x57','\x64\x6d\x6f\x55\x57\x34\x5a\x64\x54\x53\x6f\x4b\x79\x78\x4e\x64\x51\x71','\x57\x34\x33\x64\x55\x65\x7a\x37\x57\x50\x37\x64\x4a\x61','\x57\x50\x64\x64\x51\x53\x6b\x79\x57\x34\x30','\x57\x37\x74\x64\x51\x38\x6b\x63\x57\x52\x75\x79','\x41\x49\x52\x64\x51\x38\x6b\x4c\x76\x4c\x4a\x64\x52\x53\x6b\x62','\x57\x50\x56\x63\x4e\x43\x6b\x31\x72\x74\x53','\x57\x35\x6c\x64\x48\x38\x6f\x53\x6f\x6d\x6f\x35','\x67\x63\x68\x63\x55\x6d\x6f\x59\x57\x34\x4b','\x6d\x6d\x6f\x68\x57\x52\x58\x38\x79\x47','\x57\x37\x46\x64\x47\x61\x6d\x54\x57\x51\x37\x63\x4e\x71','\x77\x74\x79\x70\x57\x36\x65\x67','\x79\x53\x6b\x54\x67\x6d\x6f\x71\x6a\x47','\x57\x36\x6c\x64\x50\x53\x6b\x70\x6f\x43\x6b\x64\x71\x38\x6b\x61\x57\x52\x57','\x57\x35\x64\x64\x53\x72\x78\x64\x48\x30\x52\x63\x56\x53\x6b\x4a\x7a\x72\x76\x51\x74\x47','\x57\x36\x4f\x55\x57\x34\x31\x37\x6b\x38\x6f\x35\x72\x68\x4b','\x64\x53\x6f\x66\x57\x35\x53','\x57\x36\x42\x64\x4e\x53\x6f\x32\x64\x6d\x6f\x61','\x63\x65\x46\x64\x54\x53\x6f\x4f\x57\x51\x74\x63\x47\x57\x37\x63\x48\x74\x4e\x64\x47\x6d\x6b\x4e','\x57\x35\x5a\x64\x4e\x74\x6c\x63\x53\x53\x6f\x64\x70\x71','\x57\x4f\x6a\x6a\x42\x65\x46\x63\x4e\x71','\x57\x35\x76\x41\x43\x53\x6b\x52\x57\x35\x39\x54\x67\x38\x6b\x2f','\x57\x35\x53\x66\x62\x4e\x4e\x64\x4f\x61','\x57\x52\x4a\x64\x4c\x6d\x6f\x59\x57\x36\x4a\x64\x52\x43\x6f\x76\x41\x47','\x57\x34\x4e\x64\x47\x48\x71\x54\x57\x52\x71','\x57\x51\x74\x63\x4b\x4a\x78\x63\x55\x53\x6f\x38\x57\x51\x54\x44\x57\x36\x57','\x57\x52\x6c\x63\x49\x76\x72\x65\x57\x51\x61','\x57\x37\x6c\x64\x4d\x6d\x6f\x49\x57\x36\x75','\x57\x52\x68\x63\x55\x38\x6b\x6d\x72\x74\x69','\x7a\x43\x6b\x47\x57\x37\x42\x63\x54\x66\x47','\x57\x34\x4c\x62\x45\x53\x6b\x38','\x57\x36\x78\x64\x4f\x6d\x6f\x66\x70\x68\x76\x6c\x57\x37\x52\x63\x52\x53\x6f\x73\x57\x52\x6d\x5a\x57\x36\x4b','\x57\x4f\x37\x63\x56\x5a\x70\x64\x4c\x43\x6b\x4b\x46\x31\x43','\x68\x6d\x6f\x39\x79\x4e\x78\x63\x54\x47','\x70\x43\x6f\x4a\x57\x4f\x74\x63\x4d\x78\x57','\x72\x4c\x31\x35\x72\x4d\x2f\x64\x48\x66\x68\x63\x4d\x61','\x57\x51\x56\x63\x55\x76\x44\x56\x57\x34\x57','\x57\x52\x78\x64\x56\x71\x53\x7a\x45\x47','\x41\x5a\x37\x63\x50\x6d\x6b\x6c\x43\x57','\x57\x34\x4a\x64\x48\x66\x6e\x48\x57\x4f\x6c\x64\x48\x33\x6c\x64\x54\x61','\x57\x4f\x39\x35\x78\x5a\x69','\x57\x34\x54\x30\x43\x43\x6f\x70\x57\x35\x71','\x57\x50\x64\x64\x54\x38\x6b\x49\x57\x35\x74\x63\x4f\x38\x6f\x35\x77\x6d\x6b\x32','\x71\x5a\x42\x64\x49\x31\x66\x64\x7a\x71','\x70\x38\x6f\x31\x72\x67\x46\x63\x4d\x4b\x7a\x4f\x70\x71','\x57\x35\x42\x63\x48\x43\x6f\x33\x57\x34\x43','\x57\x36\x52\x64\x4b\x53\x6f\x51\x57\x37\x4a\x64\x52\x53\x6f\x45','\x57\x36\x70\x63\x4e\x59\x39\x31\x7a\x53\x6b\x51\x66\x30\x30','\x66\x30\x68\x63\x50\x31\x38\x46','\x57\x37\x74\x64\x47\x43\x6b\x65\x70\x53\x6b\x6f','\x46\x78\x5a\x63\x4c\x43\x6f\x51\x57\x50\x42\x64\x49\x43\x6b\x6e','\x6b\x43\x6f\x50\x57\x34\x2f\x63\x56\x31\x79','\x6c\x6d\x6f\x59\x73\x4e\x68\x63\x51\x61','\x57\x35\x48\x58\x44\x53\x6f\x6c\x57\x37\x43','\x76\x57\x70\x63\x49\x43\x6b\x39\x57\x37\x34','\x57\x37\x42\x64\x4b\x71\x6d\x51\x57\x52\x74\x63\x47\x61','\x57\x52\x37\x64\x47\x33\x76\x69\x72\x43\x6b\x4d\x64\x32\x64\x63\x4e\x47','\x57\x35\x57\x41\x64\x76\x6d','\x57\x36\x62\x39\x57\x35\x5a\x63\x4f\x43\x6f\x6a\x61\x53\x6b\x54\x45\x57','\x73\x64\x64\x63\x56\x43\x6b\x44\x57\x35\x53','\x57\x4f\x54\x4b\x41\x76\x56\x63\x56\x61','\x45\x74\x53\x74\x57\x50\x57','\x6a\x32\x7a\x45\x57\x4f\x61','\x57\x37\x4a\x64\x4b\x5a\x66\x57\x46\x6d\x6f\x53\x64\x76\x30','\x57\x36\x74\x63\x4e\x6d\x6f\x4c\x57\x35\x57\x42\x57\x4f\x4b\x4f\x57\x37\x71','\x57\x35\x5a\x63\x51\x38\x6f\x63\x57\x50\x4a\x64\x50\x6d\x6b\x47\x75\x43\x6b\x4d\x57\x51\x79\x46\x57\x50\x39\x33','\x57\x37\x34\x61\x68\x76\x37\x64\x48\x65\x71\x4a\x57\x50\x34','\x75\x59\x46\x63\x50\x38\x6f\x54','\x57\x36\x5a\x63\x56\x30\x7a\x50\x57\x37\x50\x6c\x75\x43\x6b\x39','\x6a\x43\x6f\x2b\x57\x52\x2f\x63\x4e\x61','\x41\x71\x75\x43\x71\x66\x30','\x79\x59\x56\x63\x50\x43\x6b\x4a\x74\x66\x71','\x57\x37\x66\x56\x45\x53\x6f\x50\x57\x37\x57','\x57\x36\x54\x34\x57\x52\x61','\x57\x50\x74\x64\x52\x43\x6b\x63\x57\x34\x47','\x57\x37\x33\x63\x4f\x62\x4e\x64\x56\x6d\x6f\x53','\x75\x53\x6f\x43\x70\x65\x35\x45','\x57\x34\x68\x63\x50\x38\x6b\x75\x57\x52\x4b\x37\x57\x51\x68\x63\x4b\x71','\x72\x49\x33\x64\x48\x4c\x62\x63\x46\x38\x6f\x6a\x76\x71','\x72\x38\x6b\x58\x57\x36\x6c\x64\x48\x30\x68\x64\x4a\x64\x47\x78\x44\x5a\x57\x65\x57\x52\x79\x47','\x57\x51\x42\x63\x56\x31\x66\x57\x57\x36\x65','\x6a\x6d\x6f\x54\x57\x51\x62\x71\x77\x47','\x41\x4a\x4e\x63\x4c\x6d\x6b\x53\x75\x75\x2f\x63\x55\x53\x6b\x44','\x57\x35\x68\x64\x55\x62\x5a\x64\x4a\x58\x47','\x57\x35\x68\x63\x4e\x72\x74\x64\x50\x43\x6f\x65\x6d\x38\x6b\x4a\x6b\x57','\x57\x34\x46\x63\x47\x38\x6f\x33\x57\x34\x4f\x42\x57\x37\x79\x5a\x57\x37\x65','\x76\x6d\x6b\x63\x57\x37\x70\x63\x56\x31\x4c\x66','\x57\x37\x46\x64\x47\x53\x6f\x2f\x57\x36\x4a\x64\x52\x53\x6f\x44\x69\x71\x34','\x73\x6d\x6b\x6b\x57\x4f\x7a\x54\x57\x37\x35\x2f\x57\x50\x42\x64\x49\x57','\x63\x6d\x6f\x6b\x57\x50\x6e\x62\x57\x36\x76\x56\x57\x4f\x64\x64\x4c\x57','\x70\x6d\x6f\x73\x57\x52\x47\x4f\x61\x48\x7a\x69\x79\x71','\x57\x51\x74\x63\x48\x43\x6b\x63\x78\x62\x75','\x76\x6d\x6b\x67\x57\x36\x74\x63\x4f\x30\x76\x72\x57\x50\x4a\x63\x48\x47','\x57\x35\x5a\x64\x49\x4a\x5a\x63\x54\x6d\x6f\x74','\x57\x4f\x4c\x6d\x57\x34\x46\x63\x50\x38\x6f\x41\x6a\x6d\x6b\x7a','\x65\x53\x6f\x62\x57\x50\x6d\x72\x68\x61','\x69\x53\x6f\x56\x57\x35\x70\x63\x4c\x31\x6d','\x57\x34\x64\x64\x48\x74\x52\x63\x4f\x53\x6f\x46\x6b\x66\x4b\x31','\x57\x37\x33\x64\x47\x6d\x6f\x77\x57\x51\x56\x64\x4b\x53\x6f\x66\x6a\x4a\x57','\x57\x4f\x6c\x64\x52\x31\x39\x49','\x57\x50\x33\x63\x53\x4e\x4c\x63\x57\x50\x4f\x66\x57\x37\x4a\x63\x4b\x61','\x57\x36\x4a\x64\x47\x38\x6b\x6e\x57\x4f\x47\x72\x64\x38\x6b\x62\x57\x4f\x79','\x57\x37\x2f\x64\x47\x63\x2f\x64\x52\x49\x43','\x57\x51\x56\x63\x47\x43\x6b\x59\x57\x52\x4e\x63\x53\x43\x6b\x63\x46\x72\x4a\x64\x56\x38\x6b\x7a\x77\x30\x5a\x64\x56\x57','\x57\x35\x6c\x64\x47\x38\x6b\x43\x57\x35\x53\x76\x78\x6d\x6b\x46\x57\x4f\x57','\x57\x4f\x48\x4f\x77\x4e\x2f\x63\x56\x32\x52\x63\x50\x58\x79','\x57\x35\x33\x64\x4a\x64\x6c\x63\x54\x43\x6f\x7a\x69\x61','\x41\x6d\x6b\x58\x57\x35\x42\x63\x47\x4d\x79','\x57\x37\x37\x64\x49\x53\x6b\x75\x68\x6d\x6b\x51','\x77\x6d\x6b\x5a\x61\x38\x6f\x66\x62\x38\x6b\x49\x57\x34\x52\x63\x4d\x47','\x57\x50\x6c\x63\x50\x32\x78\x63\x4e\x64\x75','\x57\x37\x56\x63\x4e\x5a\x2f\x64\x53\x53\x6f\x63\x6d\x38\x6b\x4a\x46\x47','\x68\x38\x6f\x2b\x57\x4f\x50\x66\x79\x61','\x57\x50\x64\x63\x53\x43\x6b\x79\x41\x78\x48\x43','\x57\x35\x4e\x63\x54\x38\x6b\x67\x57\x52\x75','\x57\x50\x46\x63\x4a\x5a\x4e\x64\x54\x38\x6b\x71','\x57\x35\x78\x64\x53\x62\x64\x64\x49\x4b\x6c\x64\x55\x53\x6f\x62\x7a\x62\x58\x57\x72\x38\x6b\x2b\x57\x35\x69','\x7a\x74\x57\x30\x57\x35\x79\x58\x70\x74\x61','\x57\x36\x64\x63\x48\x38\x6b\x56\x57\x51\x43\x7a','\x69\x6d\x6f\x53\x57\x51\x61\x58\x6d\x71','\x57\x36\x74\x63\x51\x53\x6f\x54\x71\x63\x65','\x57\x37\x2f\x64\x4b\x33\x64\x63\x55\x53\x6b\x47\x57\x36\x50\x44\x57\x36\x4f','\x6c\x72\x52\x64\x47\x38\x6b\x53\x57\x34\x4a\x63\x4d\x38\x6b\x30\x57\x37\x56\x63\x52\x6d\x6f\x7a\x57\x50\x31\x32','\x57\x34\x70\x63\x48\x38\x6f\x42\x57\x35\x57\x41\x57\x34\x53\x33\x57\x37\x57','\x57\x52\x56\x63\x53\x43\x6b\x79\x41\x5a\x79\x75','\x57\x4f\x68\x63\x56\x76\x46\x63\x4e\x61\x4a\x63\x56\x43\x6b\x68','\x57\x36\x46\x64\x55\x38\x6b\x73\x70\x6d\x6b\x6d\x75\x6d\x6b\x61\x57\x52\x75','\x68\x53\x6f\x52\x57\x35\x37\x64\x54\x38\x6f\x4b\x44\x4d\x5a\x64\x55\x61','\x57\x52\x64\x63\x52\x75\x6c\x64\x4b\x58\x5a\x63\x52\x6d\x6b\x61\x76\x57','\x57\x36\x52\x63\x50\x38\x6f\x54\x46\x4a\x38','\x57\x50\x56\x63\x47\x59\x64\x64\x49\x6d\x6b\x62','\x76\x43\x6b\x67\x57\x50\x31\x61\x57\x37\x6d'];_0xda3a=function(){return _0x4c073c;};return _0xda3a();}_0x1a7ea1();const _0x53bc07=require('\x66\x73'),_0x433271=require('\x70\x61\x74\x68'),{getNodeId:_0x9d026c,getHubNodeSecret:_0x5ae167}=require('\x2e\x2f\x61\x32\x61\x50\x72\x6f'+_0x13e9ba(0x189,'\x26\x39\x53\x24')),{hubFetch:_0x2b5adb}=require('\x2e\x2f\x68\x75\x62\x46\x65\x74'+'\x63\x68'),{logAssetCall:_0x1c42d1}=require(_0x13e9ba(0x2b6,'\x4f\x59\x72\x71')+_0x13e9ba(0x18a,'\x69\x34\x6a\x62')),_0x455e80=_0x433271['\x6a\x6f\x69\x6e'](require('\x2e\x2f\x70\x61\x74\x68\x73')[_0x13e9ba(0x1d3,'\x47\x73\x28\x33')+'\x74\x69\x6f\x6e\x44\x69\x72'](),_0x13e9ba(0x211,'\x37\x34\x74\x37')+_0x13e9ba(0x2af,'\x6e\x6a\x63\x46')+_0x13e9ba(0x201,'\x69\x34\x6a\x62')),_0x356e30=0xecf+0x77*0x36+-0x25f5;function _0x60fea5(){const _0x1d29eb=_0x13e9ba,_0x1b0ce8={};_0x1b0ce8[_0x1d29eb(0x2a8,'\x37\x4d\x48\x72')]=_0x1d29eb(0x228,'\x7a\x59\x38\x62');const _0x57af51=_0x1b0ce8;try{if(!_0x53bc07[_0x1d29eb(0x1da,'\x5b\x35\x75\x5b')+'\x6e\x63'](_0x455e80))return{};const _0x17cfba=_0x53bc07[_0x1d29eb(0x254,'\x5a\x65\x6f\x35')+_0x1d29eb(0x2a2,'\x54\x4c\x39\x32')](_0x455e80,_0x57af51[_0x1d29eb(0x2f2,'\x33\x64\x56\x5e')]);if(!_0x17cfba[_0x1d29eb(0x260,'\x68\x6d\x76\x36')]())return{};return JSON[_0x1d29eb(0x18b,'\x63\x48\x58\x68')](_0x17cfba);}catch{return{};}}function _0x55852f(_0xa0a83e){const _0x54cec5=_0x13e9ba,_0xf061b3={};_0xf061b3[_0x54cec5(0x2ec,'\x4f\x59\x72\x71')]=function(_0x269134,_0x5a56db){return _0x269134>_0x5a56db;},_0xf061b3[_0x54cec5(0x18c,'\x6d\x66\x52\x76')]=function(_0x517fbb,_0x1e838b){return _0x517fbb-_0x1e838b;},_0xf061b3[_0x54cec5(0x2d0,'\x37\x34\x74\x37')]=function(_0x40515f,_0x189d59){return _0x40515f+_0x189d59;},_0xf061b3[_0x54cec5(0x273,'\x25\x26\x76\x77')]=_0x54cec5(0x2a0,'\x37\x54\x58\x32'),_0xf061b3[_0x54cec5(0x21e,'\x39\x26\x5e\x6e')]=_0x54cec5(0x29a,'\x2a\x70\x5d\x31');const _0x44c097=_0xf061b3;try{const _0x1e2a0f=_0x433271[_0x54cec5(0x1e7,'\x28\x74\x4b\x39')](_0x455e80),_0x423d5b={};_0x423d5b[_0x54cec5(0x2c6,'\x2a\x44\x58\x74')+'\x65']=!![];if(!_0x53bc07[_0x54cec5(0x214,'\x71\x5d\x49\x67')+'\x6e\x63'](_0x1e2a0f))_0x53bc07[_0x54cec5(0x19f,'\x4b\x24\x58\x44')+'\x63'](_0x1e2a0f,_0x423d5b);const _0x5e2853=Object[_0x54cec5(0x22c,'\x6d\x66\x52\x76')](_0xa0a83e);if(_0x44c097[_0x54cec5(0x2bd,'\x63\x71\x5a\x71')](_0x5e2853[_0x54cec5(0x2d9,'\x67\x53\x55\x32')],_0x356e30)){const _0x3534ca=_0x5e2853[_0x54cec5(0x26d,'\x63\x71\x5a\x71')](_0x569c58=>({'\x6b':_0x569c58,'\x74':_0xa0a83e[_0x569c58]['\x61\x74']||0x1465+-0xca1+-0x8e*0xe}))[_0x54cec5(0x1f0,'\x71\x5d\x49\x67')]((_0x58b0b3,_0x1b340f)=>_0x58b0b3['\x74']-_0x1b340f['\x74']),_0x4f4526=_0x3534ca['\x73\x6c\x69\x63\x65'](-0x26f3+0x72b+0x1fc8,_0x44c097[_0x54cec5(0x210,'\x56\x29\x73\x25')](_0x5e2853[_0x54cec5(0x1dc,'\x31\x76\x59\x46')],_0x356e30));for(const _0x5378ef of _0x4f4526)delete _0xa0a83e[_0x5378ef['\x6b']];}const _0x159ace=_0x44c097['\x6b\x55\x7a\x4e\x55'](_0x455e80,_0x44c097[_0x54cec5(0x283,'\x6e\x6a\x63\x46')]);_0x53bc07[_0x54cec5(0x219,'\x29\x4c\x74\x5a')+_0x54cec5(0x28e,'\x39\x26\x5e\x6e')](_0x159ace,_0x44c097['\x6b\x55\x7a\x4e\x55'](JSON[_0x54cec5(0x1e8,'\x28\x74\x4b\x39')+'\x79'](_0xa0a83e,null,0x9e+0x1*0x701+-0x79d),'\x0a'),_0x44c097[_0x54cec5(0x1f5,'\x4e\x65\x4c\x6c')]),_0x53bc07['\x72\x65\x6e\x61\x6d\x65\x53\x79'+'\x6e\x63'](_0x159ace,_0x455e80);}catch{}}function _0x541179(_0x51636d){const _0xf5b0c7=_0x13e9ba,_0x5a74b6={'\x6b\x54\x79\x4a\x78':function(_0x43c6ce){return _0x43c6ce();}},_0x24ab22=_0x5a74b6[_0xf5b0c7(0x220,'\x69\x34\x6a\x62')](_0x60fea5);return!!_0x24ab22[_0x51636d];}function _0x18d4f3(_0x5e8e24,_0x4e45c0,_0x3d8265){const _0x5c5794=_0x13e9ba,_0x17ad7b={'\x48\x50\x57\x6f\x6d':function(_0x386410){return _0x386410();}},_0x598000=_0x17ad7b['\x48\x50\x57\x6f\x6d'](_0x60fea5);_0x598000[_0x5e8e24]={'\x61\x74':Date[_0x5c5794(0x18d,'\x57\x34\x5b\x4a')](),'\x72\x61\x74\x69\x6e\x67':_0x4e45c0,'\x73\x75\x63\x63\x65\x73\x73':_0x3d8265},_0x55852f(_0x598000);}function _0x2c7e69(_0xd8dbfc,_0x8d6bf1){const _0x51feec=_0x13e9ba,_0x423ab4={'\x43\x63\x59\x69\x70':_0x51feec(0x1ce,'\x57\x34\x5b\x4a'),'\x74\x4b\x7a\x46\x41':function(_0x345d18,_0x269d6c){return _0x345d18(_0x269d6c);}};if(_0xd8dbfc&&_0xd8dbfc[_0x51feec(0x294,'\x75\x75\x4c\x78')]===_0x423ab4[_0x51feec(0x218,'\x21\x4f\x55\x40')]){const _0x4b83f3=_0x423ab4[_0x51feec(0x2d4,'\x5b\x35\x75\x5b')](Number,_0xd8dbfc['\x73\x63\x6f\x72\x65'])||-0xbdd*-0x1+0x1*0x17bd+0x15*-0x1b2;return _0x4b83f3>=0x1*0xaab+0x2425+-0x2ed0+0.85?-0x868+-0xbb9*-0x1+-0x34c*0x1:0xaf7*-0x1+0x65*-0x29+0x1b28;}const _0x379ed9=_0x8d6bf1&&Array[_0x51feec(0x23e,'\x6d\x66\x52\x76')](_0x8d6bf1['\x76\x69\x6f\x6c\x61\x74\x69\x6f'+'\x6e\x73'])&&_0x8d6bf1[_0x51feec(0x1cd,'\x25\x26\x76\x77')+'\x6e\x73'][_0x51feec(0x2a4,'\x6e\x6a\x63\x46')]>-0x1e00+0x1a8c*0x1+-0x22*-0x1a;return _0x379ed9?-0x931*-0x1+0x2363+-0x2c93*0x1:-0x53*0x3a+-0x1*-0x1462+-0x192;}function _0x596652({outcome:_0x194586,gene:_0x31e303,signals:_0x1a34af,blast:_0x429c0f,sourceType:_0x4e30fb}){const _0x1ed936=_0x13e9ba,_0x5b6a7f={'\x65\x6b\x53\x77\x5a':function(_0x78bb98,_0x134fc9){return _0x78bb98(_0x134fc9);},'\x57\x6f\x70\x65\x51':function(_0xb8bc39,_0x2f2055){return _0xb8bc39>=_0x2f2055;},'\x61\x58\x78\x7a\x4a':_0x1ed936(0x285,'\x2a\x44\x58\x74'),'\x79\x71\x75\x61\x44':'\x75\x6e\x6b\x6e\x6f\x77\x6e','\x54\x73\x70\x50\x46':function(_0x33c9ae,_0x2cb0a8){return _0x33c9ae+_0x2cb0a8;},'\x66\x6f\x7a\x49\x70':_0x1ed936(0x2cc,'\x37\x4d\x48\x72')+'\x20','\x6e\x74\x6c\x41\x76':_0x1ed936(0x1d1,'\x47\x73\x28\x33')+'\x20','\x42\x41\x47\x69\x57':_0x1ed936(0x2c2,'\x56\x29\x73\x25')+_0x1ed936(0x243,'\x63\x48\x58\x68'),'\x4a\x4d\x64\x71\x70':function(_0x5a30da,_0xc135b1){return _0x5a30da+_0xc135b1;},'\x6b\x66\x53\x49\x44':function(_0x4746b0,_0x4b72ae){return _0x4746b0+_0x4b72ae;},'\x75\x55\x75\x41\x4a':function(_0x3ee9f6,_0x459f66){return _0x3ee9f6>_0x459f66;},'\x52\x6a\x5a\x51\x6c':function(_0x263c8e,_0x4f5975){return _0x263c8e!==_0x4f5975;},'\x53\x44\x74\x4f\x47':'\x58\x56\x7a\x4b\x78','\x6e\x62\x58\x72\x50':_0x1ed936(0x190,'\x26\x39\x53\x24')+'\x20','\x77\x57\x48\x70\x78':function(_0x5bf4df,_0x3150ef){return _0x5bf4df!==_0x3150ef;},'\x77\x41\x6d\x4b\x61':_0x1ed936(0x222,'\x54\x4c\x39\x32'),'\x74\x4f\x4a\x48\x51':function(_0x2e102f,_0x8977e9){return _0x2e102f+_0x8977e9;},'\x49\x45\x5a\x7a\x47':function(_0x4a1bc1,_0x5d5123){return _0x4a1bc1+_0x5d5123;},'\x4e\x52\x51\x54\x51':_0x1ed936(0x29d,'\x52\x5e\x76\x40')+_0x1ed936(0x236,'\x39\x26\x5e\x6e'),'\x6e\x6c\x76\x68\x65':_0x1ed936(0x19b,'\x28\x74\x4b\x39')+'\x2c\x20','\x56\x74\x4d\x67\x53':'\x20\x6c\x69\x6e\x65\x28\x73\x29','\x6f\x58\x69\x4c\x47':'\x73\x75\x63\x63\x65\x73\x73','\x63\x59\x47\x59\x65':function(_0x29da8d,_0x45ff3c){return _0x29da8d!==_0x45ff3c;},'\x63\x62\x55\x4c\x76':'\x6b\x63\x49\x70\x77','\x71\x43\x4a\x61\x52':_0x1ed936(0x2dd,'\x67\x57\x64\x28')+'\x68\x65\x64\x20\x61\x73\x73\x65'+_0x1ed936(0x24a,'\x67\x57\x64\x28')+_0x1ed936(0x1a8,'\x6e\x6a\x63\x46')+_0x1ed936(0x249,'\x26\x39\x53\x24')+_0x1ed936(0x1d2,'\x63\x48\x58\x68')+_0x1ed936(0x2ab,'\x21\x4f\x55\x40')+_0x1ed936(0x274,'\x73\x6b\x61\x21')},_0x56a2b5=[],_0x45a96d=_0x194586&&_0x194586[_0x1ed936(0x231,'\x4d\x56\x64\x37')]?_0x194586[_0x1ed936(0x1a2,'\x67\x57\x64\x28')]:_0x5b6a7f[_0x1ed936(0x269,'\x5a\x65\x6f\x35')],_0x49a09b=_0x194586&&Number[_0x1ed936(0x230,'\x67\x57\x64\x28')](_0x5b6a7f[_0x1ed936(0x247,'\x63\x71\x5a\x71')](Number,_0x194586[_0x1ed936(0x24e,'\x29\x54\x78\x63')]))?_0x5b6a7f[_0x1ed936(0x2d5,'\x4e\x65\x4c\x6c')](Number,_0x194586[_0x1ed936(0x1d5,'\x37\x4d\x48\x72')])[_0x1ed936(0x1db,'\x31\x76\x59\x46')](0x219e+-0x1e1a+-0x382):'\x3f';_0x56a2b5[_0x1ed936(0x223,'\x73\x6b\x61\x21')](_0x5b6a7f['\x54\x73\x70\x50\x46'](_0x5b6a7f[_0x1ed936(0x25d,'\x49\x6a\x65\x54')](_0x5b6a7f[_0x1ed936(0x19a,'\x4a\x6a\x38\x23')](_0x5b6a7f[_0x1ed936(0x279,'\x67\x53\x55\x32')]+_0x45a96d,_0x5b6a7f[_0x1ed936(0x1d7,'\x68\x42\x31\x43')]),_0x49a09b),'\x29')),_0x56a2b5[_0x1ed936(0x2f9,'\x4e\x65\x4c\x6c')](_0x5b6a7f[_0x1ed936(0x1c9,'\x25\x26\x76\x77')](_0x5b6a7f['\x42\x41\x47\x69\x57'],_0x4e30fb||_0x5b6a7f['\x79\x71\x75\x61\x44']));_0x31e303&&_0x31e303['\x69\x64']&&_0x56a2b5[_0x1ed936(0x23a,'\x56\x29\x73\x25')](_0x5b6a7f[_0x1ed936(0x196,'\x68\x42\x31\x43')](_0x5b6a7f[_0x1ed936(0x224,'\x21\x4f\x55\x40')](_0x5b6a7f[_0x1ed936(0x290,'\x63\x71\x5a\x71')](_0x1ed936(0x2ce,'\x67\x53\x55\x32'),_0x31e303['\x69\x64']),'\x20\x28'),_0x31e303[_0x1ed936(0x1c7,'\x68\x6d\x76\x36')]||'\x75\x6e\x6b\x6e\x6f\x77\x6e')+'\x29');if(Array[_0x1ed936(0x2d2,'\x2a\x70\x5d\x31')](_0x1a34af)&&_0x5b6a7f['\x75\x55\x75\x41\x4a'](_0x1a34af[_0x1ed936(0x226,'\x69\x34\x6a\x62')],0x17b*-0x9+0x13*-0x27+-0x6*-0x2b4)){if(_0x5b6a7f[_0x1ed936(0x1ab,'\x4d\x56\x64\x37')](_0x1ed936(0x1cc,'\x30\x2a\x42\x70'),_0x5b6a7f[_0x1ed936(0x253,'\x28\x74\x4b\x39')])){const _0x1e7f69={};return _0x1e7f69['\x73\x75\x62\x6d\x69\x74\x74\x65'+'\x64']=![],_0x1e7f69[_0x1ed936(0x250,'\x56\x29\x73\x25')]=_0x1ed936(0x248,'\x47\x46\x68\x67')+_0x1ed936(0x1c3,'\x69\x34\x6a\x62'),_0x1e7f69;}else _0x56a2b5[_0x1ed936(0x2cf,'\x30\x2a\x42\x70')](_0x5b6a7f['\x54\x73\x70\x50\x46'](_0x5b6a7f['\x6e\x62\x58\x72\x50'],_0x1a34af[_0x1ed936(0x1e1,'\x71\x5d\x49\x67')](0x15f7+-0x16ff*0x1+0x108,0x1d5*0x12+-0x1c6a+-0x48a)['\x6a\x6f\x69\x6e']('\x2c\x20')));}if(_0x429c0f){if(_0x5b6a7f[_0x1ed936(0x1b0,'\x4f\x59\x72\x71')]('\x68\x6d\x78\x6b\x67',_0x5b6a7f[_0x1ed936(0x286,'\x29\x4c\x74\x5a')]))_0x56a2b5[_0x1ed936(0x23a,'\x56\x29\x73\x25')](_0x5b6a7f[_0x1ed936(0x2de,'\x4e\x65\x4c\x6c')](_0x5b6a7f[_0x1ed936(0x235,'\x37\x54\x58\x32')](_0x5b6a7f[_0x1ed936(0x2d3,'\x30\x2a\x42\x70')](_0x5b6a7f[_0x1ed936(0x209,'\x68\x6d\x76\x36')](_0x5b6a7f[_0x1ed936(0x2c8,'\x69\x34\x6a\x62')],_0x429c0f[_0x1ed936(0x26e,'\x50\x65\x6a\x51')]||-0x2b*-0x2+-0xd1+0x3*0x29),_0x5b6a7f[_0x1ed936(0x1c5,'\x31\x76\x59\x46')]),_0x429c0f[_0x1ed936(0x2e3,'\x2a\x70\x5d\x31')]||0x812*-0x2+-0xb59+0x1f*0xe3),_0x5b6a7f[_0x1ed936(0x1cf,'\x69\x34\x6a\x62')]));else{const _0x44f11e=gaviJJ[_0x1ed936(0x1d8,'\x47\x73\x28\x33')](_0x53a376,_0x1fe3cd[_0x1ed936(0x2e0,'\x4f\x59\x72\x71')])||-0x4*0x4a3+0x1889+0x3*-0x1ff;return gaviJJ[_0x1ed936(0x229,'\x68\x6d\x76\x36')](_0x44f11e,-0x16a7+-0x6fc+0x1da3+0.85)?0xed+0x1979*0x1+0x1a61*-0x1:0xd1*-0xd+-0x1bae+0x264f;}}if(_0x45a96d===_0x5b6a7f[_0x1ed936(0x2c9,'\x39\x26\x5e\x6e')]){if(_0x5b6a7f[_0x1ed936(0x1b7,'\x4a\x77\x75\x43')](_0x5b6a7f[_0x1ed936(0x2c3,'\x45\x5b\x55\x7a')],_0x5b6a7f[_0x1ed936(0x200,'\x31\x76\x59\x46')])){if(!_0x2c6ee3['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x41a74a))return{};const _0x78bbd9=_0x1ebe96[_0x1ed936(0x289,'\x68\x42\x31\x43')+'\x53\x79\x6e\x63'](_0x2fb7a3,gaviJJ[_0x1ed936(0x21f,'\x63\x71\x5a\x71')]);if(!_0x78bbd9[_0x1ed936(0x1bf,'\x31\x76\x59\x46')]())return{};return _0x1fbb0b[_0x1ed936(0x1f3,'\x31\x76\x59\x46')](_0x78bbd9);}else _0x56a2b5[_0x1ed936(0x2a7,'\x68\x6d\x76\x36')](_0x1ed936(0x1b3,'\x4d\x56\x64\x37')+_0x1ed936(0x2c5,'\x56\x29\x73\x25')+_0x1ed936(0x2d6,'\x4a\x77\x75\x43')+_0x1ed936(0x1e2,'\x4b\x24\x58\x44')+_0x1ed936(0x1c1,'\x28\x74\x4b\x39')+_0x1ed936(0x2f3,'\x4d\x56\x64\x37')+_0x1ed936(0x28c,'\x40\x56\x40\x74')+'\x64\x2e');}else _0x56a2b5[_0x1ed936(0x28a,'\x52\x5e\x76\x40')](_0x5b6a7f[_0x1ed936(0x1b9,'\x39\x26\x5e\x6e')]);return _0x56a2b5[_0x1ed936(0x278,'\x73\x6b\x61\x21')]('\x0a')[_0x1ed936(0x2ef,'\x4f\x59\x72\x71')](-0xe*-0x1de+0x575+0x1f99*-0x1,0x1*-0x1f6f+0x1*-0x26ed+0x4e2c);}function _0x30d9b2(){const _0x1708ed=_0x13e9ba;return(process.env.A2A_HUB_URL||'')[_0x1708ed(0x27d,'\x37\x34\x74\x37')](/\/+$/,'');}function _0x36b9(_0x3b987b,_0x4d0965){_0x3b987b=_0x3b987b-(0xb73*0x3+-0x6a1*0x2+-0x1*0x138f);const _0x1ddd3e=_0xda3a();let _0x156b1b=_0x1ddd3e[_0x3b987b];if(_0x36b9['\x52\x4c\x66\x73\x48\x76']===undefined){var _0x462bd8=function(_0x40a611){const _0x134c56='\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 _0x57cdf5='',_0x565c0d='',_0x4c980e=_0x57cdf5+_0x462bd8,_0x478aee=(''+function(){return 0x1*0x1756+-0xb7a+0x8a*-0x16;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x1833+0x2686*-0x1+0xe54);for(let _0x375f14=-0x997+0x1a8+0x7ef,_0x555a9a,_0x2ffcc9,_0x11aafb=0x17a3*-0x1+0x1*-0x2699+0x3e3c;_0x2ffcc9=_0x40a611['\x63\x68\x61\x72\x41\x74'](_0x11aafb++);~_0x2ffcc9&&(_0x555a9a=_0x375f14%(0x8f8+0x123e+-0x1b32)?_0x555a9a*(-0x2ab+-0x8*-0x1d7+-0x35*0x39)+_0x2ffcc9:_0x2ffcc9,_0x375f14++%(-0x129a*0x2+-0x97*-0x29+0xd09))?_0x57cdf5+=_0x478aee||_0x4c980e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x11aafb+(0x1227+0x10d*0x8+0x1*-0x1a85))-(-0x5a*-0x49+-0x1c1b*0x1+-0x1*-0x27b)!==0x1216+0x13f3*-0x1+0x9f*0x3?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x12c+-0x14e*0x15+-0x1d*-0x105&_0x555a9a>>(-(-0x11e9+0x1e94+-0xca9)*_0x375f14&0x19*-0x8f+-0x104e+0x1e4b)):_0x375f14:0x3f*0x60+-0x2656+0xeb6){_0x2ffcc9=_0x134c56['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2ffcc9);}for(let _0x42198d=-0x3b2*0x4+-0xd*-0x11b+0x69,_0xd816fd=_0x57cdf5['\x6c\x65\x6e\x67\x74\x68'];_0x42198d<_0xd816fd;_0x42198d++){_0x565c0d+='\x25'+('\x30\x30'+_0x57cdf5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x42198d)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x3d0+0x150c+-0x112c))['\x73\x6c\x69\x63\x65'](-(-0x840+-0x6*0x1f+0x64*0x17));}return decodeURIComponent(_0x565c0d);};const _0x46fdf9=function(_0x186f1d,_0x503694){let _0x148522=[],_0x366d17=0x12db+0x1*-0xf71+-0x36a,_0x1f8e2c,_0x39a796='';_0x186f1d=_0x462bd8(_0x186f1d);let _0x4d7a04;for(_0x4d7a04=0xbf*0x1f+-0x645*0x4+0x1f3;_0x4d7a04<0x1f89+-0x217*0x4+-0x162d;_0x4d7a04++){_0x148522[_0x4d7a04]=_0x4d7a04;}for(_0x4d7a04=0xb09*0x3+0x6da+-0x27f5;_0x4d7a04<-0x7*0x473+-0x17*0x178+0x7*0x96b;_0x4d7a04++){_0x366d17=(_0x366d17+_0x148522[_0x4d7a04]+_0x503694['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4d7a04%_0x503694['\x6c\x65\x6e\x67\x74\x68']))%(0x4*0x13c+-0xa3*0x35+0x1dcf),_0x1f8e2c=_0x148522[_0x4d7a04],_0x148522[_0x4d7a04]=_0x148522[_0x366d17],_0x148522[_0x366d17]=_0x1f8e2c;}_0x4d7a04=-0x4f*0x11+0x5d*0x61+-0x1dfe,_0x366d17=-0x143c+-0x2357+0x3793;for(let _0x380dcc=-0x1*-0x19c7+0x111d+0x4c4*-0x9;_0x380dcc<_0x186f1d['\x6c\x65\x6e\x67\x74\x68'];_0x380dcc++){_0x4d7a04=(_0x4d7a04+(-0x1b1e+0x13df+0x740))%(-0x1bf2+0x1*-0xd69+-0x2a5b*-0x1),_0x366d17=(_0x366d17+_0x148522[_0x4d7a04])%(-0x1ea7+-0x25e7+0x458e),_0x1f8e2c=_0x148522[_0x4d7a04],_0x148522[_0x4d7a04]=_0x148522[_0x366d17],_0x148522[_0x366d17]=_0x1f8e2c,_0x39a796+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x186f1d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x380dcc)^_0x148522[(_0x148522[_0x4d7a04]+_0x148522[_0x366d17])%(0x20e1+0x5a1+-0x2582)]);}return _0x39a796;};_0x36b9['\x4f\x56\x74\x64\x61\x56']=_0x46fdf9,_0x36b9['\x6d\x45\x51\x53\x6f\x48']={},_0x36b9['\x52\x4c\x66\x73\x48\x76']=!![];}const _0x5e1562=_0x1ddd3e[0xceb*0x1+0x3*-0x5e7+0x1*0x4ca],_0x18fffc=_0x3b987b+_0x5e1562,_0x10b623=_0x36b9['\x6d\x45\x51\x53\x6f\x48'][_0x18fffc];if(!_0x10b623){if(_0x36b9['\x67\x4c\x41\x4d\x53\x4e']===undefined){const _0x4aef30=function(_0x127e17){this['\x75\x69\x4b\x6b\x4d\x71']=_0x127e17,this['\x65\x4f\x79\x42\x76\x6b']=[0x861+-0x320+-0x10*0x54,0x611*-0x6+0x65*-0x23+0x3235*0x1,0x12e*0x20+0x1206+-0x1*0x37c6],this['\x4b\x68\x45\x43\x45\x48']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x63\x4a\x78\x51\x49\x47']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x58\x63\x47\x4c\x75\x6f']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x4aef30['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x70\x4e\x79\x4e\x49\x67']=function(){const _0x547769=new RegExp(this['\x63\x4a\x78\x51\x49\x47']+this['\x58\x63\x47\x4c\x75\x6f']),_0xab7c4b=_0x547769['\x74\x65\x73\x74'](this['\x4b\x68\x45\x43\x45\x48']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x65\x4f\x79\x42\x76\x6b'][0x10cb+-0x2163+0x1099*0x1]:--this['\x65\x4f\x79\x42\x76\x6b'][-0x1dec+-0x159f+0x338b];return this['\x57\x6b\x73\x70\x71\x4e'](_0xab7c4b);},_0x4aef30['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x57\x6b\x73\x70\x71\x4e']=function(_0x115d2d){if(!Boolean(~_0x115d2d))return _0x115d2d;return this['\x66\x54\x63\x69\x70\x51'](this['\x75\x69\x4b\x6b\x4d\x71']);},_0x4aef30['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x66\x54\x63\x69\x70\x51']=function(_0x32e5fc){for(let _0x298d5a=-0xb74+-0x4b8+-0x17*-0xb4,_0x59b735=this['\x65\x4f\x79\x42\x76\x6b']['\x6c\x65\x6e\x67\x74\x68'];_0x298d5a<_0x59b735;_0x298d5a++){this['\x65\x4f\x79\x42\x76\x6b']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x59b735=this['\x65\x4f\x79\x42\x76\x6b']['\x6c\x65\x6e\x67\x74\x68'];}return _0x32e5fc(this['\x65\x4f\x79\x42\x76\x6b'][-0x8b7*-0x2+-0x12f7+0x189]);},(''+function(){return 0x244c+-0x1a0+-0x22ac;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0xa8d*-0x1+0x749+-0x11d5)&&new _0x4aef30(_0x36b9)['\x70\x4e\x79\x4e\x49\x67'](),_0x36b9['\x67\x4c\x41\x4d\x53\x4e']=!![];}_0x156b1b=_0x36b9['\x4f\x56\x74\x64\x61\x56'](_0x156b1b,_0x4d0965),_0x36b9['\x6d\x45\x51\x53\x6f\x48'][_0x18fffc]=_0x156b1b;}else _0x156b1b=_0x10b623;return _0x156b1b;}async function _0x3a32d5({reusedAssetId:_0x5dd0a6,sourceType:_0x3c9a56,outcome:_0x594e04,gene:_0x2f5a42,signals:_0x3cea6f,blast:_0x421f23,constraintCheck:_0x22d669,runId:_0x7344dd}){const _0x97106c=_0x13e9ba,_0x46fa6c={'\x53\x68\x61\x54\x59':_0x97106c(0x1af,'\x57\x34\x5b\x4a')+'\x68\x65\x64\x20\x61\x73\x73\x65'+_0x97106c(0x29c,'\x40\x56\x40\x74')+_0x97106c(0x1f4,'\x26\x39\x53\x24')+'\x6c\x79\x20\x61\x70\x70\x6c\x69'+_0x97106c(0x262,'\x6e\x6a\x63\x46')+_0x97106c(0x2be,'\x73\x56\x23\x21')+'\x64\x2e','\x46\x66\x49\x66\x6c':'\x68\x75\x62\x5f\x72\x65\x76\x69'+_0x97106c(0x2b1,'\x37\x4d\x48\x72')+'\x75\x74','\x55\x58\x79\x55\x5a':function(_0x51b29a,_0x35a50c){return _0x51b29a>_0x35a50c;},'\x64\x48\x6a\x5a\x64':function(_0x2b0354,_0x33f23d){return _0x2b0354-_0x33f23d;},'\x57\x67\x71\x4e\x67':function(_0x57fdff,_0x26568d){return _0x57fdff+_0x26568d;},'\x52\x54\x73\x46\x41':_0x97106c(0x2c0,'\x47\x46\x68\x67'),'\x57\x5a\x74\x4d\x78':_0x97106c(0x27b,'\x29\x4c\x74\x5a'),'\x51\x6d\x47\x76\x6a':function(_0x57609a,_0xfa9d3f){return _0x57609a===_0xfa9d3f;},'\x4c\x67\x76\x73\x75':_0x97106c(0x199,'\x4e\x65\x4c\x6c'),'\x77\x43\x6e\x44\x51':function(_0x36e7e9,_0x374470){return _0x36e7e9(_0x374470);},'\x61\x6b\x45\x58\x5a':function(_0x18308b,_0x1e4e38){return _0x18308b>=_0x1e4e38;},'\x72\x73\x41\x5a\x6a':function(_0x4a1d8c,_0x3bf2ed){return _0x4a1d8c===_0x3bf2ed;},'\x4c\x6f\x6d\x67\x53':_0x97106c(0x22a,'\x4f\x59\x72\x71'),'\x69\x69\x46\x51\x79':_0x97106c(0x1c8,'\x4e\x65\x4c\x6c'),'\x4d\x5a\x66\x6d\x49':function(_0x2039c7){return _0x2039c7();},'\x41\x53\x65\x43\x6a':function(_0x32cbac,_0x1dd6d9){return _0x32cbac===_0x1dd6d9;},'\x76\x62\x42\x6f\x4f':_0x97106c(0x25a,'\x47\x46\x68\x67'),'\x43\x43\x71\x62\x6f':'\x6e\x6f\x5f\x72\x65\x75\x73\x65'+_0x97106c(0x1ac,'\x4d\x56\x64\x37')+'\x69\x64','\x6e\x4b\x73\x4d\x6a':function(_0x28772a,_0x12191a){return _0x28772a!==_0x12191a;},'\x53\x4e\x6a\x77\x42':_0x97106c(0x207,'\x69\x34\x6a\x62'),'\x56\x74\x6c\x6e\x6c':_0x97106c(0x2e4,'\x47\x73\x28\x33')+'\x65','\x52\x6f\x6b\x61\x4e':_0x97106c(0x2ee,'\x37\x54\x58\x32'),'\x53\x4a\x51\x58\x4c':_0x97106c(0x203,'\x56\x29\x73\x25')+'\x73\x6f\x75\x72\x63\x65\x64','\x6c\x53\x71\x66\x63':function(_0x393ac8,_0x9f426d){return _0x393ac8(_0x9f426d);},'\x71\x69\x50\x51\x71':function(_0x1e71c7,_0x5e17a4){return _0x1e71c7===_0x5e17a4;},'\x72\x77\x6b\x76\x54':'\x6a\x48\x53\x74\x73','\x51\x4a\x53\x49\x4a':_0x97106c(0x227,'\x33\x64\x56\x5e'),'\x42\x62\x53\x76\x7a':_0x97106c(0x1e6,'\x5b\x35\x75\x5b')+_0x97106c(0x20a,'\x30\x2a\x42\x70'),'\x72\x4a\x5a\x67\x6e':function(_0x94de8f,_0x1851af,_0x254f13){return _0x94de8f(_0x1851af,_0x254f13);},'\x4f\x54\x54\x47\x51':function(_0x3e7aab,_0x32a743){return _0x3e7aab(_0x32a743);},'\x4b\x43\x41\x62\x6b':function(_0x408069,_0x1b1f1b){return _0x408069+_0x1b1f1b;},'\x44\x75\x6f\x73\x48':_0x97106c(0x276,'\x4a\x77\x75\x43')+'\x65\x74\x73\x2f','\x54\x55\x55\x75\x6d':_0x97106c(0x2a1,'\x52\x4b\x6a\x65'),'\x55\x79\x7a\x45\x45':_0x97106c(0x2dc,'\x4d\x56\x64\x37')+_0x97106c(0x272,'\x29\x4c\x74\x5a'),'\x74\x43\x79\x41\x4f':_0x97106c(0x2ae,'\x4b\x24\x58\x44'),'\x6b\x70\x4d\x61\x6a':_0x97106c(0x23b,'\x54\x4c\x39\x32'),'\x4a\x55\x78\x50\x55':_0x97106c(0x29f,'\x25\x26\x76\x77')+_0x97106c(0x2e7,'\x2a\x70\x5d\x31'),'\x51\x6e\x52\x70\x6b':_0x97106c(0x257,'\x47\x73\x28\x33'),'\x52\x70\x76\x51\x4a':function(_0x1e6f74,_0x44acf8,_0x5b26eb){return _0x1e6f74(_0x44acf8,_0x5b26eb);},'\x47\x4e\x4f\x59\x48':function(_0x3ff9d8,_0x3f886e,_0x22b0ba){return _0x3ff9d8(_0x3f886e,_0x22b0ba);},'\x64\x44\x6a\x4f\x42':function(_0x413dac,_0x3da677){return _0x413dac(_0x3da677);},'\x6b\x6f\x4d\x5a\x67':_0x97106c(0x2a9,'\x5a\x6e\x45\x55'),'\x79\x5a\x48\x54\x4f':'\x50\x7a\x52\x64\x71','\x79\x6d\x52\x74\x71':function(_0x3d631e,_0x525efd,_0x7c764b,_0x53860a){return _0x3d631e(_0x525efd,_0x7c764b,_0x53860a);},'\x6b\x45\x46\x6d\x6b':function(_0x3e1987,_0x138be6){return _0x3e1987+_0x138be6;},'\x69\x6e\x6b\x67\x66':function(_0x46ba9b,_0x34d733){return _0x46ba9b+_0x34d733;},'\x55\x50\x49\x66\x43':_0x97106c(0x1f6,'\x30\x2a\x42\x70')+_0x97106c(0x2bf,'\x73\x6b\x61\x21')+_0x97106c(0x1fb,'\x39\x26\x5e\x6e')+_0x97106c(0x1ed,'\x37\x34\x74\x37')+'\x20','\x6c\x70\x7a\x51\x72':'\x3a\x20\x72\x61\x74\x69\x6e\x67'+'\x3d','\x66\x4a\x56\x4b\x67':_0x97106c(0x245,'\x54\x4c\x39\x32')+'\x65\x3d','\x4b\x74\x4e\x46\x51':function(_0x54748a,_0x2e2cb7){return _0x54748a+_0x2e2cb7;},'\x68\x66\x65\x43\x47':_0x97106c(0x281,'\x52\x4b\x6a\x65'),'\x67\x59\x63\x71\x44':function(_0x5c30c4,_0x1a3c7){return _0x5c30c4+_0x1a3c7;},'\x69\x75\x50\x58\x6f':function(_0x28a3c7,_0x3ff0a5){return _0x28a3c7+_0x3ff0a5;},'\x52\x70\x69\x79\x51':_0x97106c(0x297,'\x28\x74\x4b\x39')+_0x97106c(0x225,'\x33\x64\x56\x5e')+'\x72\x65\x6a\x65\x63\x74\x65\x64'+_0x97106c(0x232,'\x37\x4d\x48\x72')+_0x97106c(0x212,'\x40\x56\x40\x74'),'\x6b\x45\x4b\x4d\x6d':function(_0x3baf9c,_0x20215c){return _0x3baf9c||_0x20215c;},'\x62\x63\x50\x54\x4b':function(_0x574137,_0x1fd981){return _0x574137===_0x1fd981;},'\x41\x48\x6b\x58\x6a':_0x97106c(0x18f,'\x49\x6a\x65\x54')+_0x97106c(0x1f7,'\x73\x6b\x61\x21'),'\x46\x70\x7a\x44\x71':_0x97106c(0x2f5,'\x69\x34\x6a\x62')+_0x97106c(0x1e9,'\x37\x34\x74\x37')+_0x97106c(0x1ef,'\x49\x6a\x65\x54')+'\x66\x61\x74\x61\x6c\x2c\x20','\x67\x4a\x62\x47\x4c':_0x97106c(0x1b1,'\x68\x42\x31\x43'),'\x61\x4f\x50\x56\x41':function(_0x4b26ce,_0x4fb22b){return _0x4b26ce||_0x4fb22b;},'\x6a\x65\x63\x71\x5a':'\x68\x75\x62\x5f\x72\x65\x76\x69'+_0x97106c(0x1cb,'\x68\x42\x31\x43')+'\x64'};var _0x3478f0=_0x46fa6c[_0x97106c(0x266,'\x4b\x24\x58\x44')](_0x30d9b2);const _0x234e6e={};_0x234e6e[_0x97106c(0x1c4,'\x29\x4c\x74\x5a')+'\x64']=![],_0x234e6e[_0x97106c(0x20c,'\x37\x34\x74\x37')]='\x6e\x6f\x5f\x68\x75\x62\x5f\x75'+'\x72\x6c';if(!_0x3478f0)return _0x234e6e;if(!_0x5dd0a6||typeof _0x5dd0a6!==_0x97106c(0x194,'\x31\x76\x59\x46')){if(_0x46fa6c['\x41\x53\x65\x43\x6a'](_0x46fa6c[_0x97106c(0x1f2,'\x37\x34\x74\x37')],_0x46fa6c[_0x97106c(0x2cb,'\x67\x57\x64\x28')])){const _0x17aea0={};return _0x17aea0[_0x97106c(0x1e5,'\x71\x5d\x49\x67')+'\x64']=![],_0x17aea0[_0x97106c(0x240,'\x26\x39\x53\x24')]=_0x46fa6c[_0x97106c(0x27a,'\x69\x34\x6a\x62')],_0x17aea0;}else{const _0x5429a1={};return _0x5429a1[_0x97106c(0x259,'\x39\x26\x5e\x6e')+'\x64']=![],_0x5429a1[_0x97106c(0x2f0,'\x40\x48\x48\x79')]=_0x97106c(0x2b5,'\x4f\x59\x72\x71')+_0x97106c(0x195,'\x4a\x6a\x38\x23'),_0x5429a1;}}if(_0x46fa6c[_0x97106c(0x27f,'\x71\x5d\x49\x67')](_0x3c9a56,_0x46fa6c[_0x97106c(0x233,'\x68\x42\x31\x43')])&&_0x46fa6c[_0x97106c(0x255,'\x47\x73\x28\x33')](_0x3c9a56,_0x46fa6c[_0x97106c(0x1de,'\x49\x6a\x65\x54')])){if(_0x97106c(0x271,'\x2a\x44\x58\x74')===_0x46fa6c[_0x97106c(0x221,'\x37\x34\x74\x37')]){const _0x49c8e0={};return _0x49c8e0[_0x97106c(0x25e,'\x4d\x56\x64\x37')+'\x64']=![],_0x49c8e0[_0x97106c(0x22e,'\x39\x26\x5e\x6e')]=_0x46fa6c['\x53\x4a\x51\x58\x4c'],_0x49c8e0;}else _0x10bd96[_0x97106c(0x256,'\x47\x73\x28\x33')](iEHApp[_0x97106c(0x2ed,'\x4f\x59\x72\x71')]);}if(_0x46fa6c[_0x97106c(0x23c,'\x4d\x56\x64\x37')](_0x541179,_0x5dd0a6)){if(_0x46fa6c['\x71\x69\x50\x51\x71'](_0x46fa6c[_0x97106c(0x2a3,'\x7a\x59\x38\x62')],_0x46fa6c[_0x97106c(0x1a4,'\x4f\x59\x72\x71')]))_0x2e98d0[_0x97106c(0x291,'\x68\x42\x31\x43')](_0x46fa6c[_0x97106c(0x2bc,'\x5b\x35\x75\x5b')]);else{const _0x2379b2={};return _0x2379b2['\x73\x75\x62\x6d\x69\x74\x74\x65'+'\x64']=![],_0x2379b2[_0x97106c(0x1be,'\x2a\x70\x5d\x31')]=_0x46fa6c[_0x97106c(0x197,'\x45\x5b\x55\x7a')],_0x2379b2;}}var _0x159c53=_0x46fa6c[_0x97106c(0x22f,'\x67\x57\x64\x28')](_0x2c7e69,_0x594e04,_0x22d669);const _0x505853={};_0x505853['\x6f\x75\x74\x63\x6f\x6d\x65']=_0x594e04,_0x505853[_0x97106c(0x1ea,'\x4f\x59\x72\x71')]=_0x2f5a42,_0x505853[_0x97106c(0x1c0,'\x5a\x6e\x45\x55')]=_0x3cea6f,_0x505853[_0x97106c(0x24d,'\x73\x56\x23\x21')]=_0x421f23,_0x505853[_0x97106c(0x1fc,'\x2a\x70\x5d\x31')+'\x70\x65']=_0x3c9a56;var _0x5a209a=_0x46fa6c['\x4f\x54\x54\x47\x51'](_0x596652,_0x505853),_0x2c5021=_0x46fa6c[_0x97106c(0x2a5,'\x29\x4c\x74\x5a')](_0x9d026c),_0x377f3a=_0x46fa6c[_0x97106c(0x251,'\x2a\x44\x58\x74')](_0x46fa6c['\x57\x67\x71\x4e\x67'](_0x46fa6c[_0x97106c(0x237,'\x68\x6d\x76\x36')](_0x3478f0,_0x46fa6c[_0x97106c(0x1e3,'\x40\x48\x48\x79')]),encodeURIComponent(_0x5dd0a6)),_0x46fa6c[_0x97106c(0x1b2,'\x49\x6a\x65\x54')]);const _0x818760={};_0x818760[_0x97106c(0x2ca,'\x5a\x65\x6f\x35')+_0x97106c(0x1e0,'\x71\x5d\x49\x67')]=_0x46fa6c[_0x97106c(0x1a9,'\x5a\x6e\x45\x55')],_0x818760[_0x97106c(0x246,'\x5a\x6e\x45\x55')]=_0x46fa6c[_0x97106c(0x268,'\x2a\x70\x5d\x31')];var _0xc25064=_0x818760,_0x42ec32=_0x46fa6c[_0x97106c(0x2b0,'\x45\x5b\x55\x7a')](_0x5ae167);if(_0x42ec32){if(_0x46fa6c[_0x97106c(0x27e,'\x68\x42\x31\x43')](_0x46fa6c[_0x97106c(0x298,'\x29\x54\x78\x63')],_0x46fa6c[_0x97106c(0x293,'\x29\x54\x78\x63')])){const _0x19ab64=_0xafe4b0[_0x97106c(0x18e,'\x39\x26\x5e\x6e')](_0x4beaa2),_0x57eec3={};_0x57eec3[_0x97106c(0x2b9,'\x69\x34\x6a\x62')+'\x65']=!![];if(!_0x111487[_0x97106c(0x280,'\x4a\x6a\x38\x23')+'\x6e\x63'](_0x19ab64))_0x427ff1['\x6d\x6b\x64\x69\x72\x53\x79\x6e'+'\x63'](_0x19ab64,_0x57eec3);const _0x3d55d6=_0x5124db[_0x97106c(0x1d6,'\x4b\x24\x58\x44')](_0x38ff55);if(iEHApp[_0x97106c(0x25b,'\x75\x75\x4c\x78')](_0x3d55d6[_0x97106c(0x24b,'\x29\x4c\x74\x5a')],_0x6a76c9)){const _0x52a275=_0x3d55d6[_0x97106c(0x213,'\x28\x74\x4b\x39')](_0x30cde3=>({'\x6b':_0x30cde3,'\x74':_0x233ba1[_0x30cde3]['\x61\x74']||-0xd4e+-0x7b*0x19+0x1951}))['\x73\x6f\x72\x74']((_0x3f8575,_0x5bbcd7)=>_0x3f8575['\x74']-_0x5bbcd7['\x74']),_0x5b771f=_0x52a275[_0x97106c(0x2ef,'\x4f\x59\x72\x71')](-0x1*0x90d+0x1*-0x241f+0x1*0x2d2c,iEHApp[_0x97106c(0x282,'\x6d\x66\x52\x76')](_0x3d55d6['\x6c\x65\x6e\x67\x74\x68'],_0x5aa7a2));for(const _0x4c322f of _0x5b771f)delete _0x9ad54c[_0x4c322f['\x6b']];}const _0x59f55f=iEHApp['\x57\x67\x71\x4e\x67'](_0x2db417,iEHApp[_0x97106c(0x20e,'\x73\x6b\x61\x21')]);_0x4930d9[_0x97106c(0x19c,'\x50\x65\x6a\x51')+_0x97106c(0x24f,'\x56\x29\x73\x25')](_0x59f55f,iEHApp[_0x97106c(0x1e4,'\x4a\x6a\x38\x23')](_0x9252f8[_0x97106c(0x26a,'\x39\x26\x5e\x6e')+'\x79'](_0x1e4754,null,-0x1006*-0x1+-0xbc3*-0x1+-0x223*0xd),'\x0a'),iEHApp[_0x97106c(0x28d,'\x57\x34\x5b\x4a')]),_0x5818b6[_0x97106c(0x1d0,'\x28\x74\x4b\x39')+'\x6e\x63'](_0x59f55f,_0x380c87);}else _0xc25064[_0x46fa6c['\x4a\x55\x78\x50\x55']]=_0x46fa6c[_0x97106c(0x2e2,'\x56\x29\x73\x25')](_0x46fa6c[_0x97106c(0x1bc,'\x6d\x66\x52\x76')],_0x42ec32);}const _0x1d223b={};_0x1d223b[_0x97106c(0x244,'\x33\x64\x56\x5e')+'\x64']=_0x2c5021,_0x1d223b[_0x97106c(0x1b6,'\x71\x5d\x49\x67')]=_0x159c53,_0x1d223b['\x63\x6f\x6e\x74\x65\x6e\x74']=_0x5a209a;var _0x26075d=JSON[_0x97106c(0x1ff,'\x69\x34\x6a\x62')+'\x79'](_0x1d223b);try{var _0x6a2efe=new AbortController(),_0x5a0b3a=_0x46fa6c[_0x97106c(0x264,'\x50\x65\x6a\x51')](setTimeout,function(){const _0x58bd80=_0x97106c;_0x6a2efe[_0x58bd80(0x1a6,'\x25\x26\x76\x77')](_0x46fa6c[_0x58bd80(0x19e,'\x63\x48\x58\x68')]);},-0x5c*0x11+0x17*0x2b6+-0x2*0x897);const _0x59f6b4={};_0x59f6b4['\x6d\x65\x74\x68\x6f\x64']=_0x97106c(0x215,'\x50\x65\x6a\x51'),_0x59f6b4[_0x97106c(0x2aa,'\x30\x2a\x42\x70')]=_0xc25064,_0x59f6b4['\x62\x6f\x64\x79']=_0x26075d,_0x59f6b4[_0x97106c(0x238,'\x63\x71\x5a\x71')]=_0x6a2efe['\x73\x69\x67\x6e\x61\x6c'];var _0x2c532c=await _0x46fa6c[_0x97106c(0x277,'\x63\x48\x58\x68')](_0x2b5adb,_0x377f3a,_0x59f6b4);_0x46fa6c[_0x97106c(0x292,'\x29\x4c\x74\x5a')](clearTimeout,_0x5a0b3a);if(_0x2c532c['\x6f\x6b']){if(_0x46fa6c[_0x97106c(0x1a5,'\x57\x34\x5b\x4a')]!==_0x46fa6c[_0x97106c(0x2e5,'\x52\x5e\x76\x40')]){_0x46fa6c['\x79\x6d\x52\x74\x71'](_0x18d4f3,_0x5dd0a6,_0x159c53,!![]),console[_0x97106c(0x2a6,'\x40\x48\x48\x79')](_0x46fa6c[_0x97106c(0x20f,'\x63\x48\x58\x68')](_0x46fa6c['\x69\x6e\x6b\x67\x66'](_0x46fa6c[_0x97106c(0x1b4,'\x75\x75\x4c\x78')](_0x46fa6c['\x55\x50\x49\x66\x43']+_0x5dd0a6+_0x46fa6c[_0x97106c(0x2ea,'\x7a\x59\x38\x62')],_0x159c53),_0x46fa6c['\x66\x4a\x56\x4b\x67']),_0x594e04&&_0x594e04[_0x97106c(0x270,'\x73\x56\x23\x21')]));const _0x455213={};_0x455213[_0x97106c(0x20d,'\x5b\x35\x75\x5b')]=_0x159c53,_0x455213[_0x97106c(0x2b4,'\x73\x6b\x61\x21')+_0x97106c(0x288,'\x21\x4f\x55\x40')]=_0x594e04&&_0x594e04[_0x97106c(0x231,'\x4d\x56\x64\x37')];const _0x44cb02={};_0x44cb02[_0x97106c(0x192,'\x39\x26\x5e\x6e')]=_0x7344dd||null,_0x44cb02[_0x97106c(0x25f,'\x47\x46\x68\x67')]=_0x97106c(0x2b7,'\x5b\x35\x75\x5b')+_0x97106c(0x2d8,'\x52\x5e\x76\x40')+_0x97106c(0x239,'\x71\x5d\x49\x67'),_0x44cb02[_0x97106c(0x2b2,'\x52\x5e\x76\x40')]=_0x5dd0a6,_0x44cb02[_0x97106c(0x204,'\x45\x5b\x55\x7a')]=_0x455213,_0x46fa6c[_0x97106c(0x21c,'\x2a\x70\x5d\x31')](_0x1c42d1,_0x44cb02);const _0x3aedf0={};return _0x3aedf0[_0x97106c(0x2f6,'\x2a\x44\x58\x74')+'\x64']=!![],_0x3aedf0[_0x97106c(0x2e1,'\x54\x4c\x39\x32')]=_0x159c53,_0x3aedf0[_0x97106c(0x2eb,'\x37\x4d\x48\x72')]=_0x5dd0a6,_0x3aedf0;}else{if(_0x2e3bc5&&iEHApp['\x51\x6d\x47\x76\x6a'](_0x9663fe[_0x97106c(0x193,'\x25\x26\x76\x77')],iEHApp[_0x97106c(0x275,'\x75\x75\x4c\x78')])){const _0x1138aa=iEHApp[_0x97106c(0x2f1,'\x30\x2a\x42\x70')](_0x519478,_0x352ec1[_0x97106c(0x2ba,'\x73\x56\x23\x21')])||0x437+0x8*0x22d+0x267*-0x9;return iEHApp[_0x97106c(0x1d4,'\x40\x56\x40\x74')](_0x1138aa,0x12e*-0x16+-0x5*0x419+0x2e71+0.85)?0x65*-0x46+-0x12b2+0x2e55:-0x5*0x71f+0x2e1+0x105f*0x2;}const _0x185260=_0x3fea97&&_0x4c789c[_0x97106c(0x1eb,'\x73\x6b\x61\x21')](_0x571d28[_0x97106c(0x2db,'\x39\x26\x5e\x6e')+'\x6e\x73'])&&_0x40b20e[_0x97106c(0x1dd,'\x68\x42\x31\x43')+'\x6e\x73'][_0x97106c(0x1f9,'\x2a\x70\x5d\x31')]>0x3*0x8c3+0x1*0xf17+-0x2960;return _0x185260?0x2*-0xc07+-0x18ed+0x30fc:-0x281+0x7*-0x2a2+0x14f1;}}var _0x1f2f52=await _0x2c532c[_0x97106c(0x2e9,'\x37\x4d\x48\x72')]()[_0x97106c(0x205,'\x29\x4c\x74\x5a')](function(){const _0x10f8f5=_0x97106c;return _0x46fa6c['\x72\x73\x41\x5a\x6a'](_0x46fa6c[_0x10f8f5(0x25c,'\x6e\x6a\x63\x46')],_0x46fa6c[_0x10f8f5(0x1fa,'\x29\x4c\x74\x5a')])?{}:{};}),_0x184a62=_0x1f2f52[_0x97106c(0x2ad,'\x52\x4b\x6a\x65')]||_0x1f2f52[_0x97106c(0x296,'\x25\x26\x76\x77')]||_0x46fa6c[_0x97106c(0x1ec,'\x4b\x24\x58\x44')](_0x46fa6c[_0x97106c(0x21b,'\x29\x4c\x74\x5a')],_0x2c532c['\x73\x74\x61\x74\x75\x73']);_0x46fa6c[_0x97106c(0x299,'\x2a\x44\x58\x74')](_0x184a62,_0x46fa6c[_0x97106c(0x234,'\x52\x4b\x6a\x65')])&&_0x18d4f3(_0x5dd0a6,_0x159c53,![]);console[_0x97106c(0x202,'\x54\x4c\x39\x32')](_0x46fa6c['\x67\x59\x63\x71\x44'](_0x46fa6c[_0x97106c(0x208,'\x5a\x65\x6f\x35')](_0x46fa6c[_0x97106c(0x2f4,'\x4b\x24\x58\x44')],_0x5dd0a6)+'\x3a\x20',_0x184a62));const _0x387b10={};_0x387b10[_0x97106c(0x2b3,'\x69\x34\x6a\x62')]=_0x159c53,_0x387b10[_0x97106c(0x265,'\x37\x54\x58\x32')]=_0x184a62,_0x46fa6c['\x4f\x54\x54\x47\x51'](_0x1c42d1,{'\x72\x75\x6e\x5f\x69\x64':_0x46fa6c[_0x97106c(0x241,'\x37\x34\x74\x37')](_0x7344dd,null),'\x61\x63\x74\x69\x6f\x6e':_0x97106c(0x2c1,'\x63\x48\x58\x68')+_0x97106c(0x1a3,'\x57\x34\x5b\x4a')+_0x97106c(0x217,'\x75\x75\x4c\x78'),'\x61\x73\x73\x65\x74\x5f\x69\x64':_0x5dd0a6,'\x65\x78\x74\x72\x61':_0x387b10});const _0x3abdc4={};return _0x3abdc4[_0x97106c(0x1bd,'\x45\x5b\x55\x7a')+'\x64']=![],_0x3abdc4[_0x97106c(0x2c7,'\x73\x56\x23\x21')]=_0x184a62,_0x3abdc4[_0x97106c(0x2f8,'\x52\x4b\x6a\x65')]=_0x159c53,_0x3abdc4;}catch(_0x525231){var _0x36197c=_0x46fa6c[_0x97106c(0x2cd,'\x4b\x24\x58\x44')](_0x525231[_0x97106c(0x22b,'\x30\x2a\x42\x70')],_0x97106c(0x1f8,'\x26\x39\x53\x24')+'\x6f\x72')?_0x97106c(0x1b5,'\x4d\x56\x64\x37'):_0x46fa6c[_0x97106c(0x242,'\x52\x4b\x6a\x65')];console['\x6c\x6f\x67'](_0x46fa6c[_0x97106c(0x188,'\x21\x4f\x55\x40')](_0x46fa6c[_0x97106c(0x2df,'\x37\x34\x74\x37')](_0x46fa6c['\x46\x70\x7a\x44\x71'],_0x36197c),_0x46fa6c[_0x97106c(0x1a0,'\x37\x54\x58\x32')])+_0x525231[_0x97106c(0x23f,'\x4f\x59\x72\x71')]);const _0x3d4fd2={};_0x3d4fd2[_0x97106c(0x19d,'\x25\x26\x76\x77')]=_0x159c53,_0x3d4fd2[_0x97106c(0x28b,'\x73\x6b\x61\x21')]=_0x36197c,_0x3d4fd2[_0x97106c(0x23d,'\x67\x57\x64\x28')]=_0x525231[_0x97106c(0x1aa,'\x37\x34\x74\x37')],_0x1c42d1({'\x72\x75\x6e\x5f\x69\x64':_0x46fa6c[_0x97106c(0x1f1,'\x29\x4c\x74\x5a')](_0x7344dd,null),'\x61\x63\x74\x69\x6f\x6e':_0x46fa6c['\x6a\x65\x63\x71\x5a'],'\x61\x73\x73\x65\x74\x5f\x69\x64':_0x5dd0a6,'\x65\x78\x74\x72\x61':_0x3d4fd2});const _0x534aaf={};return _0x534aaf[_0x97106c(0x25e,'\x4d\x56\x64\x37')+'\x64']=![],_0x534aaf[_0x97106c(0x267,'\x75\x75\x4c\x78')]=_0x36197c,_0x534aaf[_0x97106c(0x1df,'\x50\x65\x6a\x51')]=_0x525231['\x6d\x65\x73\x73\x61\x67\x65'],_0x534aaf;}}const _0x538390={};_0x538390[_0x13e9ba(0x2f7,'\x50\x65\x6a\x51')+_0x13e9ba(0x28f,'\x26\x39\x53\x24')]=_0x3a32d5,module[_0x13e9ba(0x2da,'\x67\x57\x64\x28')]=_0x538390;
1
+ // Hub Asset Review: submit usage-verified reviews after solidify.
2
+ //
3
+ // When an evolution cycle reuses a Hub asset (source_type = 'reused' or 'reference'),
4
+ // we submit a review to POST /a2a/assets/:assetId/reviews after solidify completes.
5
+ // Rating is derived from outcome: success -> 4-5, failure -> 1-2.
6
+ // Reviews are non-blocking; errors never affect the solidify result.
7
+ // Duplicate prevention: a local file tracks reviewed assetIds to avoid re-reviewing.
8
+
9
+ const fs = require('fs');
10
+ const path = require('path');
11
+ const { getNodeId, getHubNodeSecret } = require('./a2aProtocol');
12
+ const { hubFetch } = require('./hubFetch');
13
+ const { logAssetCall } = require('./assetCallLog');
14
+
15
+ const REVIEW_HISTORY_FILE = path.join(
16
+ require('./paths').getEvolutionDir(),
17
+ 'hub_review_history.json'
18
+ );
19
+
20
+ const REVIEW_HISTORY_MAX_ENTRIES = 500;
21
+
22
+ function _loadReviewHistory() {
23
+ try {
24
+ if (!fs.existsSync(REVIEW_HISTORY_FILE)) return {};
25
+ const raw = fs.readFileSync(REVIEW_HISTORY_FILE, 'utf8');
26
+ if (!raw.trim()) return {};
27
+ return JSON.parse(raw);
28
+ } catch {
29
+ return {};
30
+ }
31
+ }
32
+
33
+ function _saveReviewHistory(history) {
34
+ try {
35
+ const dir = path.dirname(REVIEW_HISTORY_FILE);
36
+ if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
37
+ const keys = Object.keys(history);
38
+ if (keys.length > REVIEW_HISTORY_MAX_ENTRIES) {
39
+ const sorted = keys
40
+ .map(k => ({ k, t: history[k].at || 0 }))
41
+ .sort((a, b) => a.t - b.t);
42
+ const toRemove = sorted.slice(0, keys.length - REVIEW_HISTORY_MAX_ENTRIES);
43
+ for (const entry of toRemove) delete history[entry.k];
44
+ }
45
+ const tmp = REVIEW_HISTORY_FILE + '.tmp';
46
+ fs.writeFileSync(tmp, JSON.stringify(history, null, 2) + '\n', 'utf8');
47
+ fs.renameSync(tmp, REVIEW_HISTORY_FILE);
48
+ } catch {}
49
+ }
50
+
51
+ function _alreadyReviewed(assetId) {
52
+ const history = _loadReviewHistory();
53
+ return !!history[assetId];
54
+ }
55
+
56
+ function _markReviewed(assetId, rating, success) {
57
+ const history = _loadReviewHistory();
58
+ history[assetId] = { at: Date.now(), rating, success };
59
+ _saveReviewHistory(history);
60
+ }
61
+
62
+ function _deriveRating(outcome, constraintCheck) {
63
+ if (outcome && outcome.status === 'success') {
64
+ const score = Number(outcome.score) || 0;
65
+ return score >= 0.85 ? 5 : 4;
66
+ }
67
+ const hasConstraintViolation =
68
+ constraintCheck &&
69
+ Array.isArray(constraintCheck.violations) &&
70
+ constraintCheck.violations.length > 0;
71
+ return hasConstraintViolation ? 1 : 2;
72
+ }
73
+
74
+ function _buildReviewContent({ outcome, gene, signals, blast, sourceType }) {
75
+ const parts = [];
76
+ const status = outcome && outcome.status ? outcome.status : 'unknown';
77
+ const score = outcome && Number.isFinite(Number(outcome.score))
78
+ ? Number(outcome.score).toFixed(2) : '?';
79
+
80
+ parts.push('Outcome: ' + status + ' (score: ' + score + ')');
81
+ parts.push('Reuse mode: ' + (sourceType || 'unknown'));
82
+
83
+ if (gene && gene.id) {
84
+ parts.push('Gene: ' + gene.id + ' (' + (gene.category || 'unknown') + ')');
85
+ }
86
+
87
+ if (Array.isArray(signals) && signals.length > 0) {
88
+ parts.push('Signals: ' + signals.slice(0, 6).join(', '));
89
+ }
90
+
91
+ if (blast) {
92
+ parts.push('Blast radius: ' + (blast.files || 0) + ' file(s), ' + (blast.lines || 0) + ' line(s)');
93
+ }
94
+
95
+ if (status === 'success') {
96
+ parts.push('The fetched asset was successfully applied and solidified.');
97
+ } else {
98
+ parts.push('The fetched asset did not lead to a successful evolution cycle.');
99
+ }
100
+
101
+ return parts.join('\n').slice(0, 2000);
102
+ }
103
+
104
+ function getHubUrl() {
105
+ return (process.env.A2A_HUB_URL || '').replace(/\/+$/, '');
106
+ }
107
+
108
+ async function submitHubReview({
109
+ reusedAssetId,
110
+ sourceType,
111
+ outcome,
112
+ gene,
113
+ signals,
114
+ blast,
115
+ constraintCheck,
116
+ runId,
117
+ }) {
118
+ var hubUrl = getHubUrl();
119
+ if (!hubUrl) return { submitted: false, reason: 'no_hub_url' };
120
+
121
+ if (!reusedAssetId || typeof reusedAssetId !== 'string') {
122
+ return { submitted: false, reason: 'no_reused_asset_id' };
123
+ }
124
+
125
+ if (sourceType !== 'reused' && sourceType !== 'reference') {
126
+ return { submitted: false, reason: 'not_hub_sourced' };
127
+ }
128
+
129
+ if (_alreadyReviewed(reusedAssetId)) {
130
+ return { submitted: false, reason: 'already_reviewed' };
131
+ }
132
+
133
+ var rating = _deriveRating(outcome, constraintCheck);
134
+ var content = _buildReviewContent({ outcome, gene, signals, blast, sourceType });
135
+ var senderId = getNodeId();
136
+
137
+ var endpoint = hubUrl + '/a2a/assets/' + encodeURIComponent(reusedAssetId) + '/reviews';
138
+
139
+ var headers = { 'Content-Type': 'application/json', 'Accept': 'application/json' };
140
+ var secret = getHubNodeSecret();
141
+ if (secret) {
142
+ headers['Authorization'] = 'Bearer ' + secret;
143
+ }
144
+
145
+ var body = JSON.stringify({
146
+ sender_id: senderId,
147
+ rating: rating,
148
+ content: content,
149
+ });
150
+
151
+ try {
152
+ var controller = new AbortController();
153
+ var timer = setTimeout(function () { controller.abort('hub_review_timeout'); }, 10000);
154
+
155
+ var res = await hubFetch(endpoint, {
156
+ method: 'POST',
157
+ headers: headers,
158
+ body: body,
159
+ signal: controller.signal,
160
+ });
161
+ clearTimeout(timer);
162
+
163
+ if (res.ok) {
164
+ _markReviewed(reusedAssetId, rating, true);
165
+ console.log(
166
+ '[HubReview] Submitted review for ' + reusedAssetId + ': rating=' + rating + ', outcome=' + (outcome && outcome.status)
167
+ );
168
+ logAssetCall({
169
+ run_id: runId || null,
170
+ action: 'hub_review_submitted',
171
+ asset_id: reusedAssetId,
172
+ extra: { rating: rating, outcome_status: outcome && outcome.status },
173
+ });
174
+ return { submitted: true, rating: rating, asset_id: reusedAssetId };
175
+ }
176
+
177
+ var errData = await res.json().catch(function () { return {}; });
178
+ var errCode = errData.error || errData.code || ('http_' + res.status);
179
+
180
+ if (errCode === 'already_reviewed') {
181
+ _markReviewed(reusedAssetId, rating, false);
182
+ }
183
+
184
+ console.log('[HubReview] Hub rejected review for ' + reusedAssetId + ': ' + errCode);
185
+ logAssetCall({
186
+ run_id: runId || null,
187
+ action: 'hub_review_rejected',
188
+ asset_id: reusedAssetId,
189
+ extra: { rating: rating, error: errCode },
190
+ });
191
+ return { submitted: false, reason: errCode, rating: rating };
192
+ } catch (err) {
193
+ var reason = err.name === 'AbortError' ? 'timeout' : 'fetch_error';
194
+ console.log('[HubReview] Failed (non-fatal, ' + reason + '): ' + err.message);
195
+ logAssetCall({
196
+ run_id: runId || null,
197
+ action: 'hub_review_failed',
198
+ asset_id: reusedAssetId,
199
+ extra: { rating: rating, reason: reason, error: err.message },
200
+ });
201
+ return { submitted: false, reason: reason, error: err.message };
202
+ }
203
+ }
204
+
205
+ module.exports = {
206
+ submitHubReview,
207
+ };