@evomap/evolver 1.89.3 → 1.89.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/.cursor/BUGBOT.md +182 -0
  2. package/.env.example +68 -0
  3. package/.git-commit-guard-token +1 -0
  4. package/.github/CODEOWNERS +63 -0
  5. package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
  6. package/.github/pull_request_template.md +45 -0
  7. package/.github/workflows/test.yml +75 -0
  8. package/CHANGELOG.md +1237 -0
  9. package/README.md +86 -528
  10. package/README.public.md +569 -0
  11. package/SECURITY.md +108 -0
  12. package/assets/gep/events.jsonl +3 -0
  13. package/examples/atp-consumer-quickstart.md +100 -0
  14. package/examples/hello-world.md +38 -0
  15. package/index.js +30 -1
  16. package/package.json +6 -17
  17. package/proxy-package.json +39 -0
  18. package/public.manifest.json +143 -0
  19. package/src/config.js +23 -0
  20. package/src/evolve/guards.js +721 -1
  21. package/src/evolve/pipeline/collect.js +1283 -1
  22. package/src/evolve/pipeline/dispatch.js +421 -1
  23. package/src/evolve/pipeline/enrich.js +440 -1
  24. package/src/evolve/pipeline/hub.js +319 -1
  25. package/src/evolve/pipeline/select.js +274 -1
  26. package/src/evolve/pipeline/signals.js +206 -1
  27. package/src/evolve/utils.js +264 -1
  28. package/src/evolve.js +350 -1
  29. package/src/experiment/agentRunner.js +229 -0
  30. package/src/experiment/cli.js +159 -0
  31. package/src/experiment/comparison.js +233 -0
  32. package/src/experiment/metrics.js +75 -0
  33. package/src/forceUpdate.js +147 -59
  34. package/src/gep/a2aProtocol.js +4455 -1
  35. package/src/gep/antiAbuseTelemetry.js +233 -0
  36. package/src/gep/autoDistillConv.js +205 -1
  37. package/src/gep/autoDistillLlm.js +315 -1
  38. package/src/gep/candidateEval.js +92 -1
  39. package/src/gep/candidates.js +198 -1
  40. package/src/gep/contentHash.js +30 -1
  41. package/src/gep/conversationSniffer.js +266 -1
  42. package/src/gep/crypto.js +89 -1
  43. package/src/gep/curriculum.js +163 -1
  44. package/src/gep/deviceId.js +218 -1
  45. package/src/gep/envFingerprint.js +118 -1
  46. package/src/gep/epigenetics.js +31 -1
  47. package/src/gep/execBridge.js +711 -1
  48. package/src/gep/explore.js +289 -1
  49. package/src/gep/hash.js +15 -1
  50. package/src/gep/hubFetch.js +359 -1
  51. package/src/gep/hubReview.js +207 -1
  52. package/src/gep/hubSearch.js +526 -1
  53. package/src/gep/hubVerify.js +306 -1
  54. package/src/gep/learningSignals.js +89 -1
  55. package/src/gep/memoryGraph.js +1374 -1
  56. package/src/gep/memoryGraphAdapter.js +203 -1
  57. package/src/gep/mutation.js +203 -1
  58. package/src/gep/narrativeMemory.js +108 -1
  59. package/src/gep/openPRRegistry.js +205 -1
  60. package/src/gep/personality.js +423 -1
  61. package/src/gep/policyCheck.js +599 -1
  62. package/src/gep/prompt.js +836 -1
  63. package/src/gep/recallInject.js +409 -1
  64. package/src/gep/recallVerifier.js +318 -1
  65. package/src/gep/reflection.js +177 -1
  66. package/src/gep/sanitize.js +9 -0
  67. package/src/gep/selector.js +602 -1
  68. package/src/gep/skillDistiller.js +1294 -1
  69. package/src/gep/solidify.js +1699 -1
  70. package/src/gep/strategy.js +136 -1
  71. package/src/gep/tokenSavings.js +88 -1
  72. package/src/gep/validator/sandboxExecutor.js +29 -1
  73. package/src/gep/workspaceKeychain.js +174 -1
  74. package/src/proxy/extensions/traceControl.js +99 -1
  75. package/src/proxy/index.js +10 -1
  76. package/src/proxy/inject.js +52 -1
  77. package/src/proxy/lifecycle/manager.js +19 -0
  78. package/src/proxy/mailbox/store.js +2 -1
  79. package/src/proxy/router/messages_route.js +5 -2
  80. package/src/proxy/trace/extractor.js +646 -1
  81. package/src/proxy/trace/usage.js +105 -1
  82. package/CONTRIBUTING.md +0 -19
  83. package/assets/cover.png +0 -0
  84. package/scripts/a2a_export.js +0 -63
  85. package/scripts/a2a_ingest.js +0 -79
  86. package/scripts/a2a_promote.js +0 -118
  87. package/scripts/analyze_by_skill.js +0 -121
  88. package/scripts/build_binaries.js +0 -479
  89. package/scripts/check-changelog.js +0 -166
  90. package/scripts/extract_log.js +0 -85
  91. package/scripts/generate_history.js +0 -75
  92. package/scripts/gep_append_event.js +0 -96
  93. package/scripts/gep_personality_report.js +0 -234
  94. package/scripts/human_report.js +0 -147
  95. package/scripts/recall-verify-report.js +0 -234
  96. package/scripts/recover_loop.js +0 -61
  97. package/scripts/refresh_stars_badge.js +0 -168
  98. package/scripts/seed-merchants.js +0 -91
  99. package/scripts/suggest_version.js +0 -89
  100. package/scripts/validate-modules.js +0 -38
  101. package/scripts/validate-suite.js +0 -78
  102. package/skills/index.json +0 -14
  103. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  104. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,92 @@
1
- const _0x3bf632=_0x3a5d;(function(_0x18b32b,_0x33c918){const _0x1d7aeb=_0x3a5d,_0x5f0020=_0x18b32b();while(!![]){try{const _0x29e555=parseInt(_0x1d7aeb(0x148,'\x54\x64\x4a\x48'))/(0x12*-0x4e+0xcc+0x4b1)+parseInt(_0x1d7aeb(0x1a3,'\x6b\x50\x23\x55'))/(-0x1400+0xaf*-0x4+0x16be)*(parseInt(_0x1d7aeb(0x1a5,'\x54\x64\x4a\x48'))/(-0x18d1+0x1d*0x10c+0xc*-0x76))+-parseInt(_0x1d7aeb(0x1b8,'\x56\x29\x2a\x65'))/(-0x20af+0x1902+0x7b1)*(parseInt(_0x1d7aeb(0x149,'\x24\x21\x79\x63'))/(0x1fed+-0x44*-0x39+-0xbc3*0x4))+-parseInt(_0x1d7aeb(0x1d5,'\x66\x44\x47\x7a'))/(0x5ff+-0x3*0x9c7+0x175c)+-parseInt(_0x1d7aeb(0x14e,'\x6d\x37\x37\x36'))/(0x154+0x2*-0x9de+-0x1ad*-0xb)*(-parseInt(_0x1d7aeb(0x1c0,'\x35\x4f\x50\x48'))/(0x30*-0x4+0x2*-0x1ee+-0xc*-0x63))+-parseInt(_0x1d7aeb(0x1ec,'\x6b\x50\x23\x55'))/(-0x9d6+0x1afe+0x3*-0x5b5)+parseInt(_0x1d7aeb(0x16d,'\x72\x39\x34\x34'))/(0x1571*-0x1+-0xf08*-0x1+0x673);if(_0x29e555===_0x33c918)break;else _0x5f0020['push'](_0x5f0020['shift']());}catch(_0x47a668){_0x5f0020['push'](_0x5f0020['shift']());}}}(_0x227b,0x595d7*0x2+0x2b*0x357b+0x39b*-0x35e));const _0x5f1b76=(function(){const _0x1bcb45=_0x3a5d,_0x4f2cc1={'\x70\x44\x47\x4e\x76':function(_0x49e356,_0x13cf27){return _0x49e356===_0x13cf27;},'\x41\x64\x46\x6d\x54':_0x1bcb45(0x15a,'\x56\x29\x2a\x65'),'\x71\x49\x73\x44\x4a':function(_0x13de17,_0x295e07){return _0x13de17(_0x295e07);},'\x54\x73\x59\x49\x76':'\x55\x48\x63\x70\x52'};let _0x1a0f4d=!![];return function(_0x2363f7,_0x10cfa6){const _0x4bfecf=_0x1bcb45,_0x498ef5={'\x50\x74\x79\x44\x50':function(_0x186158,_0x1c6cec){const _0x4ee624=_0x3a5d;return _0x4f2cc1[_0x4ee624(0x1c8,'\x30\x6d\x36\x78')](_0x186158,_0x1c6cec);}};if(_0x4f2cc1[_0x4bfecf(0x1e0,'\x43\x50\x78\x6b')]!==_0x4f2cc1[_0x4bfecf(0x1e0,'\x43\x50\x78\x6b')])_0x9628c2='\x60\x60\x60\x6a\x73\x6f\x6e\x0a'+_0x58b7ad['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79']([..._0x6e9a3c[_0x4bfecf(0x153,'\x65\x37\x50\x72')](_0x4680fb=>({'\x74\x79\x70\x65':_0x4680fb[_0x4bfecf(0x15e,'\x37\x6f\x79\x73')],'\x69\x64':_0x4680fb['\x69\x64'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x4680fb[_0x4bfecf(0x1ce,'\x63\x5e\x76\x6d')]||null,'\x73\x69\x67\x6e\x61\x6c\x73\x5f\x6d\x61\x74\x63\x68':_0x4680fb[_0x4bfecf(0x13a,'\x6d\x37\x37\x36')+_0x4bfecf(0x1ae,'\x40\x6f\x62\x68')]||[],'\x61\x32\x61':_0x4680fb[_0x4bfecf(0x15d,'\x21\x46\x2a\x24')]||null})),..._0x2b1c39[_0x4bfecf(0x140,'\x61\x73\x44\x28')](_0x11fd75=>({'\x74\x79\x70\x65':_0x11fd75[_0x4bfecf(0x1a7,'\x40\x6f\x62\x68')],'\x69\x64':_0x11fd75['\x69\x64'],'\x74\x72\x69\x67\x67\x65\x72':_0x11fd75[_0x4bfecf(0x154,'\x21\x33\x45\x7a')],'\x67\x65\x6e\x65':_0x11fd75[_0x4bfecf(0x1c1,'\x61\x73\x44\x28')],'\x73\x75\x6d\x6d\x61\x72\x79':_0x11fd75[_0x4bfecf(0x137,'\x4c\x43\x48\x33')],'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0x11fd75[_0x4bfecf(0x1e2,'\x70\x74\x35\x39')+'\x63\x65'],'\x62\x6c\x61\x73\x74\x5f\x72\x61\x64\x69\x75\x73':_0x11fd75[_0x4bfecf(0x189,'\x4d\x31\x61\x7a')+_0x4bfecf(0x1b2,'\x43\x50\x78\x6b')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65':_0x11fd75['\x6f\x75\x74\x63\x6f\x6d\x65']||null,'\x73\x75\x63\x63\x65\x73\x73\x5f\x73\x74\x72\x65\x61\x6b':_0x11fd75[_0x4bfecf(0x161,'\x4c\x43\x48\x33')+_0x4bfecf(0x169,'\x40\x5d\x75\x79')]||null,'\x61\x32\x61':_0x11fd75[_0x4bfecf(0x178,'\x6d\x37\x37\x36')]||null}))],null,-0x3*0x269+0x2248+-0x3dd*0x7)+_0x4bfecf(0x17e,'\x24\x31\x66\x53');else{const _0x1c416f=_0x1a0f4d?function(){const _0x1d2bd4=_0x4bfecf;if(_0x10cfa6){if(_0x4f2cc1[_0x1d2bd4(0x162,'\x61\x25\x6f\x79')](_0x4f2cc1['\x41\x64\x46\x6d\x54'],_0x1d2bd4(0x1af,'\x58\x72\x4d\x4d'))){const _0x33bc2b=_0x10cfa6[_0x1d2bd4(0x1da,'\x70\x74\x35\x39')](_0x2363f7,arguments);return _0x10cfa6=null,_0x33bc2b;}else _0x498ef5[_0x1d2bd4(0x174,'\x65\x37\x50\x72')](_0x3b8471,_0xd600eb);}}:function(){};return _0x1a0f4d=![],_0x1c416f;}};}()),_0x3d246a=_0x5f1b76(this,function(){const _0x3c20b6=_0x3a5d,_0x38a2b4={};_0x38a2b4[_0x3c20b6(0x1e4,'\x4a\x50\x67\x23')]=_0x3c20b6(0x18b,'\x21\x33\x45\x7a')+'\x2b\x29\x2b\x24';const _0x2523da=_0x38a2b4;return _0x3d246a[_0x3c20b6(0x1dc,'\x7a\x42\x5a\x4a')]()['\x73\x65\x61\x72\x63\x68'](_0x2523da[_0x3c20b6(0x1d0,'\x70\x64\x69\x30')])[_0x3c20b6(0x19c,'\x31\x78\x25\x41')]()[_0x3c20b6(0x1bb,'\x37\x28\x53\x41')+_0x3c20b6(0x1a1,'\x54\x64\x4a\x48')](_0x3d246a)[_0x3c20b6(0x19e,'\x21\x46\x2a\x24')](_0x2523da[_0x3c20b6(0x158,'\x4f\x44\x21\x5d')]);});function _0x3a5d(_0x679dbf,_0x3a0cd0){_0x679dbf=_0x679dbf-(-0x1*0x1f61+-0x7fb+0x2890);const _0x174255=_0x227b();let _0x52f972=_0x174255[_0x679dbf];if(_0x3a5d['\x7a\x68\x55\x64\x68\x73']===undefined){var _0x5c13f9=function(_0x4fd16a){const _0x1cd0c4='\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 _0x4f3e1e='',_0x2bcd81='',_0x123292=_0x4f3e1e+_0x5c13f9,_0x1dfec3=(''+function(){return-0x1*0x2415+-0x1*0x3fb+0x2810;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x76e*-0x4+0x7*0x11f+0xaf*0x20);for(let _0x3ecd6e=-0x841*-0x1+-0x2b0+-0x591,_0x213f48,_0x364f56,_0x405def=0x3*0x579+0xd0d+0xebc*-0x2;_0x364f56=_0x4fd16a['\x63\x68\x61\x72\x41\x74'](_0x405def++);~_0x364f56&&(_0x213f48=_0x3ecd6e%(0x44e+0x1cf6+-0x2140)?_0x213f48*(0x8e3+-0xd02+0x1*0x45f)+_0x364f56:_0x364f56,_0x3ecd6e++%(-0x2270+0x10ff+-0x1*-0x1175))?_0x4f3e1e+=_0x1dfec3||_0x123292['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x405def+(-0xc5e+-0x1779+0x5*0x72d))-(0x2599+0xa7b+-0x300a)!==0x1ea9+-0x10fc+-0xdad*0x1?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x2250+-0x1365+-0xdec&_0x213f48>>(-(0x1929+0xb35+-0x245c)*_0x3ecd6e&0xea9*0x2+0x38b*-0x6+-0x80a)):_0x3ecd6e:0x1742+0x10be*-0x2+0x51d*0x2){_0x364f56=_0x1cd0c4['\x69\x6e\x64\x65\x78\x4f\x66'](_0x364f56);}for(let _0x56077c=-0xa26*-0x1+0x7e0+-0x1206,_0x180ff0=_0x4f3e1e['\x6c\x65\x6e\x67\x74\x68'];_0x56077c<_0x180ff0;_0x56077c++){_0x2bcd81+='\x25'+('\x30\x30'+_0x4f3e1e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x56077c)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x13f0+-0x151*0xd+-0x251d*-0x1))['\x73\x6c\x69\x63\x65'](-(-0xcde+-0x217*-0x11+-0x16a7));}return decodeURIComponent(_0x2bcd81);};const _0x2cc938=function(_0x32ebf1,_0x5330e0){let _0x225900=[],_0x5cbbe7=-0xdf6+0x1*0xf15+-0x11f,_0x3eb101,_0x26c335='';_0x32ebf1=_0x5c13f9(_0x32ebf1);let _0x31c1f7;for(_0x31c1f7=-0x116d+0x1816+-0x6a9;_0x31c1f7<0x2694+0x19fb*0x1+-0x3f8f*0x1;_0x31c1f7++){_0x225900[_0x31c1f7]=_0x31c1f7;}for(_0x31c1f7=0x1951+-0x91d*-0x3+0x151*-0x28;_0x31c1f7<0x264a+-0x45d*-0x1+-0x29a7*0x1;_0x31c1f7++){_0x5cbbe7=(_0x5cbbe7+_0x225900[_0x31c1f7]+_0x5330e0['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x31c1f7%_0x5330e0['\x6c\x65\x6e\x67\x74\x68']))%(-0x3c0+0x1a8+0x318),_0x3eb101=_0x225900[_0x31c1f7],_0x225900[_0x31c1f7]=_0x225900[_0x5cbbe7],_0x225900[_0x5cbbe7]=_0x3eb101;}_0x31c1f7=0x363+-0x89*0x3d+0x1d42,_0x5cbbe7=0xb7*-0x35+-0x1252+0x3835;for(let _0x286e67=-0x1302+-0x1*0x506+0x1808;_0x286e67<_0x32ebf1['\x6c\x65\x6e\x67\x74\x68'];_0x286e67++){_0x31c1f7=(_0x31c1f7+(0x6de*0x4+-0x997*0x1+-0x11e0))%(0x1*0x19b5+0x7a4+-0x2059),_0x5cbbe7=(_0x5cbbe7+_0x225900[_0x31c1f7])%(-0x1f49*0x1+-0x2*0xbf+-0x21c7*-0x1),_0x3eb101=_0x225900[_0x31c1f7],_0x225900[_0x31c1f7]=_0x225900[_0x5cbbe7],_0x225900[_0x5cbbe7]=_0x3eb101,_0x26c335+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x32ebf1['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x286e67)^_0x225900[(_0x225900[_0x31c1f7]+_0x225900[_0x5cbbe7])%(-0x12a9+0x2*-0x47+0x19*0xcf)]);}return _0x26c335;};_0x3a5d['\x6b\x59\x72\x77\x55\x46']=_0x2cc938,_0x3a5d['\x76\x41\x44\x54\x62\x49']={},_0x3a5d['\x7a\x68\x55\x64\x68\x73']=!![];}const _0x4966c5=_0x174255[0x2585+0x2224+-0x47a9],_0x171842=_0x679dbf+_0x4966c5,_0x5e9548=_0x3a5d['\x76\x41\x44\x54\x62\x49'][_0x171842];if(!_0x5e9548){if(_0x3a5d['\x51\x51\x47\x72\x7a\x4d']===undefined){const _0x61cc75=function(_0x208729){this['\x47\x6e\x67\x62\x56\x6e']=_0x208729,this['\x70\x68\x77\x6c\x73\x53']=[0x86*-0x27+0x1*0x178d+-0x322*0x1,0x151b+-0x1629+0x10e,-0x1ee+0xb+0x1e3],this['\x66\x59\x56\x47\x61\x7a']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x6d\x65\x4a\x75\x41\x64']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x72\x4e\x64\x65\x74\x54']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x61cc75['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4c\x46\x77\x63\x6c\x71']=function(){const _0x1dd6f8=new RegExp(this['\x6d\x65\x4a\x75\x41\x64']+this['\x72\x4e\x64\x65\x74\x54']),_0x18593f=_0x1dd6f8['\x74\x65\x73\x74'](this['\x66\x59\x56\x47\x61\x7a']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x70\x68\x77\x6c\x73\x53'][-0x2315+-0x239*-0x1+0xb3*0x2f]:--this['\x70\x68\x77\x6c\x73\x53'][0x6c*-0x5a+0x1f6c+0x68c];return this['\x66\x6e\x42\x41\x63\x59'](_0x18593f);},_0x61cc75['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x66\x6e\x42\x41\x63\x59']=function(_0xeb3947){if(!Boolean(~_0xeb3947))return _0xeb3947;return this['\x64\x72\x44\x6c\x66\x6e'](this['\x47\x6e\x67\x62\x56\x6e']);},_0x61cc75['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x64\x72\x44\x6c\x66\x6e']=function(_0x542f74){for(let _0x3141e5=0x1797+0x5e*-0x1a+-0xe0b,_0x109be5=this['\x70\x68\x77\x6c\x73\x53']['\x6c\x65\x6e\x67\x74\x68'];_0x3141e5<_0x109be5;_0x3141e5++){this['\x70\x68\x77\x6c\x73\x53']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x109be5=this['\x70\x68\x77\x6c\x73\x53']['\x6c\x65\x6e\x67\x74\x68'];}return _0x542f74(this['\x70\x68\x77\x6c\x73\x53'][-0x35*-0x64+0x1*0xdf+-0x1593]);},(''+function(){return-0x120a+-0x68f+0x1899;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x1*-0x496+0xa50+0x1*-0xee5)&&new _0x61cc75(_0x3a5d)['\x4c\x46\x77\x63\x6c\x71'](),_0x3a5d['\x51\x51\x47\x72\x7a\x4d']=!![];}_0x52f972=_0x3a5d['\x6b\x59\x72\x77\x55\x46'](_0x52f972,_0x3a0cd0),_0x3a5d['\x76\x41\x44\x54\x62\x49'][_0x171842]=_0x52f972;}else _0x52f972=_0x5e9548;return _0x52f972;}_0x3d246a();const {readRecentCandidates:_0x174e45,readRecentExternalCandidates:_0x1c266a,readRecentFailedCapsules:_0x1d0d2b,appendCandidateJsonl:_0x1bc44b}=require(_0x3bf632(0x176,'\x26\x6c\x2a\x74')+_0x3bf632(0x147,'\x6d\x37\x37\x36')),{extractCapabilityCandidates:_0x4aac4a,renderCandidatesPreview:_0x24810f}=require(_0x3bf632(0x143,'\x6b\x50\x23\x55')+'\x61\x74\x65\x73'),{matchPatternToSignals:_0x7a32da}=require(_0x3bf632(0x19d,'\x36\x67\x42\x30')+'\x6f\x72');function _0x227b(){const _0x569b5b=['\x57\x37\x6d\x6d\x57\x51\x4a\x64\x52\x43\x6b\x53\x6d\x73\x56\x63\x4b\x71','\x63\x43\x6b\x54\x68\x57','\x57\x35\x2f\x63\x49\x67\x4e\x64\x52\x76\x75\x37\x57\x36\x61\x71','\x74\x43\x6b\x49\x57\x51\x62\x78\x57\x37\x52\x63\x4b\x6d\x6b\x44\x6f\x71','\x45\x64\x61\x6d\x75\x38\x6f\x49\x57\x35\x52\x63\x4e\x43\x6f\x4d','\x6a\x65\x52\x63\x4e\x4d\x72\x6f\x57\x51\x64\x64\x4e\x43\x6f\x70\x72\x4c\x7a\x4d\x66\x57','\x57\x50\x37\x64\x4d\x63\x62\x56\x57\x35\x5a\x63\x54\x59\x34','\x43\x4c\x42\x64\x56\x38\x6f\x30\x68\x47','\x57\x35\x6c\x63\x55\x49\x30\x6a','\x65\x71\x78\x64\x4d\x43\x6f\x74\x57\x51\x78\x64\x47\x76\x74\x64\x4b\x57\x4a\x63\x4b\x38\x6b\x35\x57\x50\x47','\x57\x4f\x34\x75\x57\x37\x33\x63\x48\x43\x6b\x42\x57\x50\x4a\x64\x4d\x71','\x64\x53\x6f\x74\x78\x38\x6f\x6e','\x6f\x4a\x4f\x31\x57\x51\x6c\x63\x51\x38\x6f\x38\x57\x50\x38\x54\x71\x62\x4b','\x63\x38\x6f\x76\x57\x37\x4c\x44\x57\x52\x4f','\x45\x4b\x2f\x64\x51\x53\x6b\x4d\x57\x36\x6a\x48\x41\x53\x6b\x30','\x57\x50\x74\x64\x50\x77\x54\x79\x57\x36\x74\x64\x47\x48\x6c\x64\x4c\x77\x42\x63\x55\x57','\x7a\x48\x65\x36\x61\x75\x71','\x76\x75\x52\x64\x52\x6d\x6b\x39\x57\x37\x38','\x57\x52\x46\x64\x51\x78\x4b\x30\x57\x37\x66\x43\x79\x38\x6f\x34','\x57\x50\x6e\x79\x62\x4c\x56\x64\x56\x74\x4b','\x57\x4f\x4f\x33\x42\x47','\x57\x51\x70\x63\x50\x30\x46\x64\x47\x4c\x53\x65\x57\x52\x4f','\x57\x35\x44\x56\x66\x73\x6c\x64\x49\x53\x6f\x6e\x74\x31\x79','\x65\x6d\x6b\x61\x64\x38\x6f\x64\x57\x4f\x43\x38\x57\x4f\x44\x66','\x57\x4f\x5a\x63\x4c\x43\x6b\x65\x79\x4c\x2f\x63\x49\x6d\x6f\x45','\x57\x50\x7a\x53\x79\x4c\x4e\x63\x4a\x47','\x43\x62\x4a\x64\x4d\x74\x69\x78','\x6f\x38\x6b\x2b\x57\x37\x37\x63\x4e\x38\x6b\x2b','\x65\x53\x6b\x76\x68\x53\x6f\x76\x57\x52\x61\x48\x57\x50\x62\x6b','\x57\x37\x31\x4d\x61\x57','\x57\x35\x76\x4b\x57\x50\x34','\x67\x65\x2f\x64\x55\x63\x57','\x57\x37\x7a\x55\x61\x38\x6f\x45\x57\x37\x37\x63\x52\x38\x6b\x5a\x6a\x47','\x57\x34\x66\x31\x69\x4a\x37\x64\x4a\x53\x6f\x78\x76\x77\x57','\x73\x6d\x6f\x39\x42\x53\x6f\x64\x70\x43\x6b\x52\x57\x34\x4b\x4a','\x57\x4f\x56\x64\x50\x62\x44\x6f\x57\x35\x47','\x68\x30\x6c\x64\x55\x49\x5a\x63\x49\x73\x38','\x57\x50\x42\x64\x47\x73\x61','\x69\x43\x6f\x46\x72\x71','\x72\x64\x4f\x32\x6c\x57','\x57\x34\x47\x58\x57\x36\x2f\x63\x53\x43\x6b\x6e\x57\x51\x5a\x64\x53\x61\x79','\x63\x4a\x58\x48\x57\x4f\x4f\x4a\x79\x73\x4b','\x57\x37\x44\x51\x57\x4f\x4c\x47\x57\x35\x74\x63\x55\x47','\x6a\x6d\x6b\x6b\x57\x4f\x57\x37\x61\x43\x6b\x55','\x57\x4f\x4a\x64\x4a\x59\x6a\x30','\x7a\x63\x35\x46\x63\x38\x6b\x36\x57\x4f\x4a\x63\x54\x38\x6f\x66\x57\x36\x37\x64\x4d\x48\x6d\x4a','\x6f\x4d\x79\x35\x57\x52\x70\x63\x4e\x49\x56\x63\x48\x6d\x6b\x57\x66\x30\x38\x76\x62\x76\x6d\x74','\x6d\x38\x6b\x4f\x57\x35\x68\x63\x4d\x53\x6b\x32\x57\x52\x6d\x37','\x57\x34\x66\x52\x57\x34\x43\x50\x57\x36\x30\x4b\x41\x61','\x57\x35\x6c\x63\x52\x63\x38\x6a','\x6c\x43\x6f\x76\x57\x34\x72\x46','\x57\x4f\x66\x64\x61\x30\x4a\x64\x56\x59\x37\x64\x4e\x61','\x57\x37\x35\x55\x61\x71\x52\x64\x55\x57','\x57\x52\x43\x49\x7a\x38\x6f\x53\x57\x36\x79','\x57\x35\x78\x63\x48\x73\x78\x64\x56\x31\x65\x47','\x65\x72\x64\x64\x55\x43\x6f\x56\x62\x6d\x6b\x7a\x71\x77\x34','\x73\x5a\x79\x53','\x57\x34\x46\x64\x50\x5a\x34','\x74\x43\x6f\x4d\x57\x4f\x76\x57\x68\x57','\x44\x43\x6b\x61\x57\x4f\x66\x41\x57\x36\x65','\x73\x6d\x6b\x31\x57\x50\x61','\x64\x66\x46\x64\x56\x43\x6f\x31\x68\x71','\x57\x35\x6d\x5a\x57\x50\x65\x57','\x65\x4b\x70\x64\x51\x38\x6b\x31','\x75\x53\x6f\x54\x45\x47','\x6d\x43\x6b\x6b\x57\x4f\x79\x52','\x57\x36\x46\x63\x4f\x6d\x6f\x43','\x70\x53\x6f\x44\x57\x34\x6e\x63','\x57\x37\x79\x6d\x57\x51\x52\x64\x54\x6d\x6f\x54\x70\x59\x33\x63\x50\x57','\x57\x34\x47\x4f\x57\x36\x78\x63\x53\x43\x6b\x6e','\x57\x50\x74\x63\x54\x65\x64\x64\x47\x76\x75\x66\x57\x51\x4e\x63\x4f\x57','\x57\x52\x52\x63\x54\x66\x34','\x7a\x6d\x6b\x67\x57\x51\x61\x32','\x57\x34\x6e\x67\x57\x52\x42\x64\x4c\x67\x69','\x6c\x68\x4e\x64\x55\x6d\x6f\x31\x61\x38\x6f\x74\x67\x64\x53','\x6c\x65\x4e\x63\x4e\x67\x72\x69\x57\x51\x64\x63\x51\x6d\x6b\x42\x42\x65\x6a\x53\x62\x53\x6f\x74\x57\x35\x57','\x57\x37\x2f\x64\x56\x71\x42\x63\x49\x58\x44\x69\x57\x36\x70\x64\x56\x47','\x57\x37\x7a\x55\x62\x38\x6f\x41\x57\x37\x56\x63\x51\x43\x6b\x54\x6e\x47','\x57\x52\x50\x6b\x57\x52\x2f\x64\x4c\x57','\x6f\x38\x6b\x6f\x57\x50\x57\x54\x63\x47','\x65\x47\x42\x64\x4d\x53\x6f\x79\x57\x51\x56\x63\x48\x4e\x74\x64\x4f\x47\x78\x63\x4b\x38\x6b\x73','\x57\x4f\x42\x63\x4c\x53\x6b\x7a\x7a\x65\x46\x63\x4c\x47','\x41\x53\x6b\x6f\x44\x53\x6f\x77','\x57\x4f\x56\x63\x49\x43\x6b\x65','\x6f\x38\x6f\x50\x57\x37\x65','\x45\x4d\x39\x4c\x57\x36\x70\x63\x56\x53\x6f\x44','\x57\x36\x2f\x63\x51\x43\x6f\x69\x57\x52\x76\x78\x57\x50\x4c\x46\x75\x47','\x57\x52\x74\x63\x54\x66\x37\x64\x4c\x4b\x4b\x6e\x57\x51\x30','\x57\x51\x6a\x64\x71\x4c\x2f\x63\x52\x6d\x6b\x6b','\x6a\x78\x79\x69\x78\x6d\x6f\x54\x57\x35\x6c\x63\x48\x38\x6f\x44','\x6e\x59\x30\x6f','\x6f\x38\x6b\x6f\x57\x50\x47','\x57\x36\x70\x63\x52\x6d\x6f\x6d\x57\x37\x39\x71\x57\x50\x4b\x72\x6b\x61','\x70\x43\x6f\x7a\x79\x53\x6f\x43\x73\x71\x37\x63\x4a\x71\x38','\x57\x50\x34\x66\x57\x51\x5a\x64\x4b\x4d\x56\x64\x48\x4a\x4a\x64\x55\x61','\x57\x34\x43\x5a\x57\x50\x34\x4e\x57\x50\x78\x64\x47\x71','\x57\x35\x42\x64\x4f\x53\x6f\x44\x69\x47','\x57\x52\x62\x74\x78\x4b\x34','\x76\x31\x56\x63\x4d\x57','\x57\x36\x61\x68\x57\x36\x33\x63\x56\x6d\x6b\x6d\x57\x52\x42\x64\x50\x5a\x47','\x7a\x65\x34\x44\x77\x43\x6f\x39\x57\x36\x2f\x63\x4f\x57','\x6c\x67\x64\x64\x53\x6d\x6f\x51\x65\x38\x6f\x70\x63\x5a\x71','\x67\x47\x46\x64\x4d\x53\x6f\x46\x57\x51\x6c\x64\x4a\x4c\x6c\x64\x53\x63\x2f\x63\x54\x38\x6b\x55\x57\x50\x34','\x6e\x53\x6b\x2b\x57\x37\x37\x63\x4a\x38\x6b\x57\x57\x52\x4f','\x57\x36\x66\x32\x62\x38\x6f\x45','\x43\x65\x52\x64\x56\x57','\x76\x30\x33\x63\x4d\x43\x6b\x70','\x45\x63\x6e\x52\x57\x36\x78\x64\x4a\x67\x68\x64\x48\x38\x6f\x46','\x6b\x6d\x6f\x72\x57\x35\x6a\x65\x57\x52\x53\x30','\x57\x36\x58\x55\x57\x51\x6d\x71\x57\x51\x38','\x57\x51\x64\x63\x4f\x64\x79\x30\x57\x37\x39\x45\x70\x43\x6f\x62','\x57\x37\x48\x55\x61\x38\x6f\x79\x57\x37\x65','\x57\x35\x39\x55\x57\x37\x52\x64\x4a\x6d\x6f\x61','\x61\x53\x6b\x61\x67\x6d\x6f\x7a\x57\x52\x4b\x50\x57\x4f\x54\x76','\x57\x35\x2f\x63\x49\x73\x46\x64\x52\x65\x61\x36','\x66\x43\x6b\x44\x68\x38\x6f\x64','\x45\x53\x6b\x64\x61\x43\x6b\x46\x63\x31\x37\x64\x4b\x5a\x39\x30\x57\x52\x46\x64\x53\x43\x6b\x52\x57\x36\x53','\x57\x4f\x65\x2f\x43\x53\x6f\x43\x57\x35\x6d\x43','\x6f\x53\x6f\x46\x76\x53\x6f\x67\x77\x47\x56\x63\x4b\x64\x43','\x71\x43\x6b\x52\x57\x52\x7a\x4e\x57\x36\x2f\x63\x4f\x43\x6b\x6c\x6d\x71','\x74\x4c\x78\x63\x4d\x71','\x79\x53\x6f\x52\x57\x51\x64\x64\x4e\x6d\x6f\x33\x57\x36\x71\x34\x57\x37\x4e\x63\x51\x63\x4f\x57\x57\x34\x47','\x73\x64\x44\x34\x57\x37\x78\x64\x4e\x68\x37\x64\x4b\x71','\x57\x51\x64\x63\x51\x4a\x34\x4f\x57\x37\x53','\x57\x34\x44\x50\x68\x64\x2f\x64\x4e\x38\x6f\x74\x73\x77\x4f','\x57\x34\x7a\x38\x6e\x61\x78\x64\x49\x47','\x57\x37\x62\x53\x57\x50\x6a\x49\x57\x35\x6c\x63\x54\x65\x53','\x65\x43\x6f\x73\x42\x53\x6b\x45\x57\x50\x6a\x70\x57\x51\x38','\x57\x35\x62\x2f\x61\x49\x4b','\x57\x52\x37\x64\x55\x38\x6b\x42\x57\x36\x30\x43\x57\x4f\x44\x73\x6c\x49\x6a\x62\x57\x37\x43','\x61\x38\x6b\x50\x61\x43\x6f\x76','\x57\x35\x31\x6f\x57\x50\x43\x50\x57\x4f\x44\x54\x57\x37\x4c\x46','\x57\x34\x5a\x64\x56\x53\x6f\x55\x6a\x67\x53\x78\x72\x47','\x57\x37\x58\x38\x6e\x53\x6f\x6a\x57\x36\x56\x63\x4f\x43\x6b\x34','\x57\x36\x6c\x63\x51\x6d\x6f\x43\x57\x52\x58\x6d','\x44\x75\x42\x64\x55\x6d\x6b\x4d\x57\x37\x44\x7a\x46\x71','\x62\x72\x43\x2b\x57\x52\x42\x64\x4b\x61','\x7a\x76\x74\x63\x4f\x65\x57\x6e','\x61\x53\x6b\x4c\x61\x38\x6f\x65\x41\x4c\x65','\x75\x6d\x6b\x4b\x57\x52\x48\x4d\x57\x37\x34','\x57\x35\x37\x63\x4a\x74\x4b','\x57\x35\x42\x64\x52\x53\x6f\x61\x6a\x68\x57','\x46\x48\x4a\x64\x4e\x73\x69\x6b\x57\x37\x78\x64\x56\x71','\x57\x36\x79\x65\x57\x52\x4e\x64\x56\x38\x6f\x52\x70\x63\x5a\x63\x47\x71','\x57\x35\x6e\x55\x57\x36\x46\x64\x49\x6d\x6f\x42\x57\x34\x56\x64\x56\x57','\x43\x72\x4b\x75\x6f\x68\x61','\x57\x34\x4a\x63\x55\x53\x6f\x4c\x57\x52\x6a\x6b','\x57\x50\x6d\x5a\x42\x43\x6f\x31\x57\x50\x79\x4f\x70\x6d\x6f\x4a','\x57\x34\x2f\x63\x50\x48\x34\x45\x57\x36\x64\x64\x50\x57\x6d','\x57\x34\x6e\x6a\x57\x52\x64\x64\x48\x77\x69','\x57\x52\x4b\x36\x41\x63\x6e\x50\x64\x53\x6b\x6a\x57\x4f\x4e\x64\x4b\x33\x52\x63\x53\x38\x6b\x66\x57\x52\x57','\x57\x35\x48\x64\x57\x51\x53','\x57\x37\x62\x4e\x57\x4f\x54\x47','\x7a\x4a\x44\x34','\x57\x34\x7a\x7a\x69\x43\x6f\x35\x57\x37\x57','\x73\x6d\x6f\x33\x57\x4f\x66\x35\x66\x71','\x68\x31\x2f\x64\x52\x59\x46\x63\x49\x73\x47\x51\x57\x4f\x47','\x76\x38\x6b\x4f\x57\x4f\x72\x47\x57\x36\x4e\x63\x4c\x38\x6b\x78\x6e\x57','\x63\x6d\x6f\x67\x72\x38\x6b\x4d\x57\x51\x34','\x46\x68\x6e\x58\x57\x37\x6d','\x42\x38\x6f\x6c\x57\x4f\x4c\x61\x6b\x61','\x6a\x43\x6b\x68\x6d\x38\x6f\x35\x57\x51\x65','\x42\x53\x6b\x6d\x41\x38\x6f\x6b\x57\x34\x57','\x73\x53\x6f\x4f\x57\x50\x39\x5a\x62\x76\x62\x63\x57\x50\x57','\x57\x37\x5a\x63\x50\x43\x6f\x62\x57\x52\x58\x62','\x57\x36\x52\x63\x51\x6d\x6f\x36\x57\x4f\x6c\x64\x4b\x57','\x62\x71\x43\x39\x57\x50\x68\x64\x55\x71','\x61\x74\x62\x2b\x57\x4f\x30\x4e\x44\x61','\x57\x35\x70\x63\x4a\x63\x4e\x64\x4f\x75\x43\x39\x57\x36\x6a\x2f','\x57\x36\x7a\x36\x67\x53\x6f\x77\x57\x37\x4a\x63\x53\x53\x6b\x34','\x45\x78\x5a\x63\x50\x32\x53\x56','\x57\x35\x68\x63\x4e\x43\x6f\x33\x57\x4f\x6c\x64\x50\x48\x57\x66','\x68\x31\x52\x64\x4f\x73\x52\x63\x4a\x71','\x79\x63\x35\x46\x61\x43\x6b\x38\x57\x4f\x37\x64\x4a\x6d\x6f\x79\x57\x36\x70\x64\x4b\x61\x43\x64\x57\x4f\x53','\x66\x63\x58\x2f\x57\x50\x71\x4a\x44\x64\x75','\x57\x37\x2f\x63\x55\x30\x68\x64\x49\x31\x4c\x69','\x6b\x43\x6f\x61\x57\x34\x72\x75\x57\x52\x4b\x36','\x57\x37\x4c\x51\x67\x43\x6f\x43\x57\x36\x33\x63\x51\x61','\x73\x6d\x6f\x52\x79\x53\x6f\x73\x70\x71','\x69\x38\x6f\x4e\x57\x50\x66\x31','\x57\x37\x56\x63\x55\x38\x6f\x62\x57\x52\x48\x64\x57\x50\x6e\x64','\x57\x37\x4c\x55\x57\x37\x52\x64\x4e\x47','\x71\x47\x42\x63\x49\x61','\x62\x64\x4f\x31\x57\x4f\x74\x64\x50\x77\x78\x63\x51\x53\x6f\x7a','\x44\x6d\x6b\x44\x57\x52\x57\x49\x57\x52\x33\x63\x56\x59\x75','\x76\x33\x5a\x63\x4f\x33\x53\x59\x41\x77\x30','\x61\x53\x6b\x78\x62\x43\x6f\x63\x57\x52\x69','\x42\x66\x68\x64\x4f\x53\x6b\x59\x57\x37\x66\x42\x41\x47','\x73\x6d\x6f\x39\x79\x6d\x6f\x6e\x6f\x43\x6b\x51\x57\x34\x6d','\x57\x37\x66\x36\x78\x33\x5a\x63\x55\x53\x6b\x2f\x71\x47','\x73\x6d\x6f\x5a\x57\x50\x62\x35\x72\x71\x34','\x57\x35\x78\x63\x56\x64\x47\x63\x57\x37\x70\x64\x51\x47\x4e\x64\x50\x71','\x57\x35\x78\x63\x4f\x43\x6f\x42\x57\x50\x4c\x30','\x71\x6d\x6b\x4f\x57\x52\x4c\x59\x57\x37\x6c\x63\x4d\x53\x6b\x43\x70\x47','\x6f\x43\x6b\x30\x57\x37\x37\x63\x4a\x53\x6b\x54\x57\x52\x79\x4e\x57\x37\x38','\x66\x43\x6b\x44\x64\x53\x6f\x72\x57\x51\x6d\x52\x57\x52\x6a\x62'];_0x227b=function(){return _0x569b5b;};return _0x227b();}function _0x1e9d36({signals:_0x255398,recentSessionTranscript:_0x2b5030}){const _0x46c8a0=_0x3bf632,_0xa6615a={'\x5a\x68\x73\x46\x50':function(_0x18945c,_0x327018){return _0x18945c(_0x327018);},'\x53\x56\x56\x42\x65':function(_0x5a064d,_0x38ed1c){return _0x5a064d===_0x38ed1c;},'\x45\x4e\x62\x4b\x73':_0x46c8a0(0x1d1,'\x35\x4f\x50\x48'),'\x56\x47\x56\x4e\x7a':_0x46c8a0(0x1dd,'\x53\x61\x6f\x21'),'\x4d\x69\x67\x68\x69':_0x46c8a0(0x1a2,'\x24\x21\x79\x63')+_0x46c8a0(0x1d2,'\x65\x37\x50\x72')+_0x46c8a0(0x19b,'\x35\x4f\x50\x48')+'\x65\x72\x73\x69\x73\x74\x20\x63'+_0x46c8a0(0x1c2,'\x2a\x73\x38\x6a')+'\x3a','\x5a\x78\x70\x61\x79':function(_0x478e3d,_0x49ff59){return _0x478e3d(_0x49ff59);},'\x51\x56\x5a\x6b\x72':function(_0x9e304e,_0xef3c33,_0x4d24b0){return _0x9e304e(_0xef3c33,_0x4d24b0);},'\x42\x42\x64\x73\x6a':_0x46c8a0(0x1ee,'\x21\x33\x45\x7a'),'\x62\x7a\x46\x49\x61':function(_0x4142e4,_0x48bbf1){return _0x4142e4!==_0x48bbf1;},'\x46\x4c\x78\x55\x44':_0x46c8a0(0x1f6,'\x4f\x5a\x68\x6f')+'\x6c\x43\x61\x6e\x64\x69\x64\x61'+'\x74\x65\x73\x5d\x20\x50\x72\x65'+_0x46c8a0(0x13f,'\x63\x5e\x76\x6d')+_0x46c8a0(0x141,'\x33\x42\x72\x65')+_0x46c8a0(0x151,'\x54\x5d\x38\x4b')+_0x46c8a0(0x139,'\x70\x74\x35\x39')},_0xf289da=_0xa6615a[_0x46c8a0(0x173,'\x37\x28\x53\x41')](_0x4aac4a,{'\x72\x65\x63\x65\x6e\x74\x53\x65\x73\x73\x69\x6f\x6e\x54\x72\x61\x6e\x73\x63\x72\x69\x70\x74':_0x2b5030||'','\x73\x69\x67\x6e\x61\x6c\x73':_0x255398,'\x72\x65\x63\x65\x6e\x74\x46\x61\x69\x6c\x65\x64\x43\x61\x70\x73\x75\x6c\x65\x73':_0x1d0d2b(0xd03*0x1+-0x542*-0x1+-0x295*0x7)});for(const _0x216870 of _0xf289da){try{_0x1bc44b(_0x216870);}catch(_0x4098a9){console['\x77\x61\x72\x6e'](_0xa6615a[_0x46c8a0(0x150,'\x24\x31\x66\x53')],_0x4098a9&&_0x4098a9[_0x46c8a0(0x1cf,'\x58\x72\x4d\x4d')]||_0x4098a9);}}const _0x572ccd=_0xa6615a[_0x46c8a0(0x1e5,'\x4f\x5a\x68\x6f')](_0x174e45,-0x2219+0xc1*0x31+0x2*-0x162),_0x583b37=_0xa6615a['\x51\x56\x5a\x6b\x72'](_0x24810f,_0x572ccd[_0x46c8a0(0x188,'\x36\x67\x42\x30')](-(-0x1*-0x1189+0xba1+-0x1d22)),0x1744+-0x13fd+-0x1*-0x2f9);let _0x44ec00=_0xa6615a[_0x46c8a0(0x17c,'\x4d\x31\x61\x7a')];try{const _0x765e24=_0xa6615a[_0x46c8a0(0x1c7,'\x4f\x5a\x68\x6f')](_0x1c266a,0x13eb*0x1+0x1*0x1989+-0x2d42),_0x45a763=Array[_0x46c8a0(0x1c4,'\x40\x6f\x62\x68')](_0x765e24)?_0x765e24:[],_0x58d9e4=_0x45a763['\x66\x69\x6c\x74\x65\x72'](_0xea867a=>_0xea867a&&_0xea867a[_0x46c8a0(0x170,'\x6d\x37\x37\x36')]===_0x46c8a0(0x1b9,'\x72\x39\x34\x34')),_0x486fb6=_0x45a763['\x66\x69\x6c\x74\x65\x72'](_0x1aa2e9=>_0x1aa2e9&&_0x1aa2e9[_0x46c8a0(0x1d7,'\x40\x5d\x75\x79')]===_0x46c8a0(0x1f4,'\x58\x72\x4d\x4d')),_0x3bcb92=_0x486fb6[_0x46c8a0(0x19a,'\x68\x76\x6f\x70')](_0x4089cb=>{const _0x558a44=_0x46c8a0;if(_0xa6615a[_0x558a44(0x1d9,'\x40\x6f\x62\x68')](_0xa6615a[_0x558a44(0x14f,'\x70\x64\x69\x30')],_0xa6615a[_0x558a44(0x17a,'\x7a\x42\x5a\x4a')])){const _0x21c0df=_0xa6615a[_0x558a44(0x13b,'\x35\x4f\x50\x48')](_0x27301a,-0x2ba+0x14c5+0x1*-0x11d9),_0x5895c0=_0x20977e[_0x558a44(0x1ea,'\x4a\x50\x67\x23')](_0x21c0df)?_0x21c0df:[],_0x23cc55=_0x5895c0[_0x558a44(0x152,'\x21\x4b\x6b\x53')](_0xe4f49a=>_0xe4f49a&&_0xe4f49a[_0x558a44(0x1de,'\x76\x7a\x65\x56')]===_0x558a44(0x134,'\x30\x6d\x36\x78')),_0x5593ec=_0x5895c0[_0x558a44(0x1b4,'\x65\x37\x50\x72')](_0x38f049=>_0x38f049&&_0x38f049[_0x558a44(0x1bf,'\x37\x28\x53\x41')]===_0x558a44(0x14a,'\x31\x78\x25\x41')),_0x42e803=_0x5593ec[_0x558a44(0x1d8,'\x72\x39\x34\x34')](_0x5a7460=>{const _0xc08192=_0x558a44,_0x2d1b5b=_0x21d55e[_0xc08192(0x1d3,'\x6d\x37\x37\x36')](_0x5a7460[_0xc08192(0x1ad,'\x54\x5d\x38\x4b')+_0xc08192(0x1e9,'\x30\x6d\x36\x78')])?_0x5a7460[_0xc08192(0x183,'\x63\x5e\x76\x6d')+_0xc08192(0x159,'\x30\x6f\x36\x44')]:[],_0x351a62=_0x2d1b5b[_0xc08192(0x1ab,'\x70\x73\x59\x4c')]((_0x10c4ee,_0x100f6f)=>_0x1af52c(_0x100f6f,_0xffeb97)?_0x10c4ee+(-0xd94+-0x461*0x6+-0x219*-0x13):_0x10c4ee,-0x7*0x3fb+0x4b0+0x15d*0x11),_0x461233={};return _0x461233['\x67\x65\x6e\x65']=_0x5a7460,_0x461233[_0xc08192(0x15c,'\x40\x6f\x62\x68')]=_0x351a62,_0x461233;})[_0x558a44(0x175,'\x33\x42\x72\x65')](_0x18a47f=>_0x18a47f[_0x558a44(0x1d6,'\x36\x67\x42\x30')]>-0x5ac+0x48a+0x91*0x2)['\x73\x6f\x72\x74']((_0x1f4900,_0xfe1b4f)=>_0xfe1b4f[_0x558a44(0x181,'\x35\x4f\x50\x48')]-_0x1f4900[_0x558a44(0x177,'\x70\x64\x69\x30')])[_0x558a44(0x1eb,'\x37\x6f\x79\x73')](0x23dd+-0x9aa+0x1*-0x1a33,0x337*-0xa+0x15f6+0xa33)[_0x558a44(0x1cb,'\x33\x42\x72\x65')](_0x3b745a=>_0x3b745a['\x67\x65\x6e\x65']),_0x25e2a8=_0x23cc55[_0x558a44(0x1d8,'\x72\x39\x34\x34')](_0x265548=>{const _0x236aed=_0x558a44,_0x3f7f7c=_0x106d25[_0x236aed(0x16e,'\x56\x29\x2a\x65')](_0x265548[_0x236aed(0x1f7,'\x6b\x61\x77\x70')])?_0x265548['\x74\x72\x69\x67\x67\x65\x72']:[],_0x221ef2=_0x3f7f7c[_0x236aed(0x194,'\x76\x7a\x65\x56')]((_0x3a14c0,_0x2ff0e2)=>_0x5991d9(_0x2ff0e2,_0x1803e9)?_0x3a14c0+(-0x13c1+-0x18ca+-0x1646*-0x2):_0x3a14c0,-0x1070+0x5*-0x66b+0x102d*0x3),_0x2bea68={};return _0x2bea68[_0x236aed(0x196,'\x21\x33\x45\x7a')]=_0x265548,_0x2bea68[_0x236aed(0x1e1,'\x67\x43\x4a\x41')]=_0x221ef2,_0x2bea68;})[_0x558a44(0x1c9,'\x61\x73\x44\x28')](_0x2e662a=>_0x2e662a[_0x558a44(0x1ca,'\x7a\x42\x5a\x4a')]>-0x18e9+-0x1f73+0x385c)[_0x558a44(0x19f,'\x61\x46\x62\x67')]((_0x4a056d,_0x3eda65)=>_0x3eda65[_0x558a44(0x1ba,'\x54\x5d\x38\x4b')]-_0x4a056d[_0x558a44(0x1f1,'\x4c\x43\x48\x33')])['\x73\x6c\x69\x63\x65'](-0x157*-0x15+-0x248c+0x869*0x1,0x1686+-0xcc7*0x3+0xfd2)[_0x558a44(0x1b7,'\x54\x64\x4a\x48')](_0x7213ee=>_0x7213ee[_0x558a44(0x1be,'\x53\x61\x6f\x21')]);(_0x42e803[_0x558a44(0x1f0,'\x40\x6f\x62\x68')]||_0x25e2a8[_0x558a44(0x1b1,'\x33\x42\x72\x65')])&&(_0x2a463c=_0x558a44(0x195,'\x35\x4f\x50\x48')+_0x2cbfdf['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79']([..._0x42e803[_0x558a44(0x164,'\x61\x25\x6f\x79')](_0x48b9de=>({'\x74\x79\x70\x65':_0x48b9de[_0x558a44(0x1a0,'\x4f\x44\x21\x5d')],'\x69\x64':_0x48b9de['\x69\x64'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x48b9de[_0x558a44(0x15f,'\x40\x6f\x62\x68')]||null,'\x73\x69\x67\x6e\x61\x6c\x73\x5f\x6d\x61\x74\x63\x68':_0x48b9de[_0x558a44(0x155,'\x37\x28\x53\x41')+'\x6d\x61\x74\x63\x68']||[],'\x61\x32\x61':_0x48b9de[_0x558a44(0x17b,'\x70\x74\x35\x39')]||null})),..._0x25e2a8['\x6d\x61\x70'](_0x6d1629=>({'\x74\x79\x70\x65':_0x6d1629[_0x558a44(0x1a9,'\x54\x64\x4a\x48')],'\x69\x64':_0x6d1629['\x69\x64'],'\x74\x72\x69\x67\x67\x65\x72':_0x6d1629[_0x558a44(0x172,'\x21\x4b\x6b\x53')],'\x67\x65\x6e\x65':_0x6d1629[_0x558a44(0x180,'\x68\x76\x6f\x70')],'\x73\x75\x6d\x6d\x61\x72\x79':_0x6d1629[_0x558a44(0x1ed,'\x4d\x45\x4e\x63')],'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0x6d1629[_0x558a44(0x13c,'\x7a\x42\x5a\x4a')+'\x63\x65'],'\x62\x6c\x61\x73\x74\x5f\x72\x61\x64\x69\x75\x73':_0x6d1629[_0x558a44(0x14d,'\x24\x31\x66\x53')+_0x558a44(0x182,'\x70\x73\x59\x4c')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65':_0x6d1629['\x6f\x75\x74\x63\x6f\x6d\x65']||null,'\x73\x75\x63\x63\x65\x73\x73\x5f\x73\x74\x72\x65\x61\x6b':_0x6d1629[_0x558a44(0x1aa,'\x72\x39\x34\x34')+_0x558a44(0x1ef,'\x70\x73\x59\x4c')]||null,'\x61\x32\x61':_0x6d1629[_0x558a44(0x199,'\x6b\x50\x23\x55')]||null}))],null,-0x17b1*0x1+0x1*0x4b5+0x12fe)+_0x558a44(0x1f2,'\x70\x74\x35\x39'));}else{const _0x184f33=Array[_0x558a44(0x16f,'\x76\x4f\x5d\x37')](_0x4089cb[_0x558a44(0x1b5,'\x31\x78\x25\x41')+_0x558a44(0x18e,'\x68\x76\x6f\x70')])?_0x4089cb[_0x558a44(0x198,'\x6b\x50\x23\x55')+_0x558a44(0x1c5,'\x35\x4f\x50\x48')]:[],_0x555154=_0x184f33[_0x558a44(0x16a,'\x68\x76\x6f\x70')]((_0x3aca1a,_0x47467b)=>_0x7a32da(_0x47467b,_0x255398)?_0x3aca1a+(-0x6af*-0x4+-0x355*-0x5+-0x2b64):_0x3aca1a,0x3*0x7f7+-0x1*-0xbf+-0x18a4),_0x3859cf={};return _0x3859cf['\x67\x65\x6e\x65']=_0x4089cb,_0x3859cf[_0x558a44(0x177,'\x70\x64\x69\x30')]=_0x555154,_0x3859cf;}})[_0x46c8a0(0x197,'\x4f\x44\x21\x5d')](_0x14f59d=>_0x14f59d[_0x46c8a0(0x192,'\x76\x52\x49\x4a')]>-0x5*0x2dd+-0xc*0x11+0xf1d)[_0x46c8a0(0x16b,'\x61\x25\x6f\x79')]((_0x4bc485,_0x33dba3)=>_0x33dba3[_0x46c8a0(0x165,'\x31\x78\x25\x41')]-_0x4bc485[_0x46c8a0(0x1a8,'\x24\x31\x66\x53')])[_0x46c8a0(0x1e3,'\x35\x4f\x50\x48')](0x44*-0x72+-0x1fb3+-0x29*-0x183,-0x53*-0x67+0x1a*-0x13e+-0x116)[_0x46c8a0(0x186,'\x21\x33\x45\x7a')](_0x99d4af=>_0x99d4af[_0x46c8a0(0x166,'\x70\x64\x69\x30')]),_0x4f380b=_0x58d9e4[_0x46c8a0(0x140,'\x61\x73\x44\x28')](_0x23f3c6=>{const _0xe582da=_0x46c8a0,_0x567286=Array[_0xe582da(0x1c3,'\x61\x46\x62\x67')](_0x23f3c6[_0xe582da(0x136,'\x24\x31\x66\x53')])?_0x23f3c6[_0xe582da(0x1f3,'\x35\x4f\x50\x48')]:[],_0x46b4b2=_0x567286['\x72\x65\x64\x75\x63\x65']((_0x445513,_0x581797)=>_0x7a32da(_0x581797,_0x255398)?_0x445513+(0x22b4*-0x1+-0xd3*-0xf+0x1658):_0x445513,0x11*-0xb9+0x206e+-0x1425),_0x5323bc={};return _0x5323bc['\x63\x61\x70\x73\x75\x6c\x65']=_0x23f3c6,_0x5323bc[_0xe582da(0x1cc,'\x61\x46\x62\x67')]=_0x46b4b2,_0x5323bc;})[_0x46c8a0(0x1e6,'\x4d\x45\x4e\x63')](_0x5f3822=>_0x5f3822[_0x46c8a0(0x1d4,'\x36\x67\x42\x30')]>-0x1ac+0x16df*-0x1+0x188b*0x1)['\x73\x6f\x72\x74']((_0x3a19c2,_0x39afe3)=>_0x39afe3['\x73\x63\x6f\x72\x65']-_0x3a19c2[_0x46c8a0(0x135,'\x43\x50\x78\x6b')])[_0x46c8a0(0x184,'\x24\x21\x79\x63')](-0x1f2c+-0x1923+0x5d*0x9b,-0x5*-0x42b+0x14f*0x17+-0x1*0x32ed)['\x6d\x61\x70'](_0x21f067=>_0x21f067[_0x46c8a0(0x1cd,'\x30\x6f\x36\x44')]);(_0x3bcb92[_0x46c8a0(0x1f0,'\x40\x6f\x62\x68')]||_0x4f380b[_0x46c8a0(0x1a6,'\x56\x29\x2a\x65')])&&(_0x44ec00=_0x46c8a0(0x1e7,'\x33\x42\x72\x65')+JSON[_0x46c8a0(0x1b0,'\x43\x50\x78\x6b')+'\x79']([..._0x3bcb92['\x6d\x61\x70'](_0x4c5e0b=>({'\x74\x79\x70\x65':_0x4c5e0b[_0x46c8a0(0x15e,'\x37\x6f\x79\x73')],'\x69\x64':_0x4c5e0b['\x69\x64'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x4c5e0b[_0x46c8a0(0x15b,'\x43\x50\x78\x6b')]||null,'\x73\x69\x67\x6e\x61\x6c\x73\x5f\x6d\x61\x74\x63\x68':_0x4c5e0b[_0x46c8a0(0x1db,'\x37\x6f\x79\x73')+'\x6d\x61\x74\x63\x68']||[],'\x61\x32\x61':_0x4c5e0b[_0x46c8a0(0x1f5,'\x54\x64\x4a\x48')]||null})),..._0x4f380b[_0x46c8a0(0x1cb,'\x33\x42\x72\x65')](_0x3f0fff=>({'\x74\x79\x70\x65':_0x3f0fff['\x74\x79\x70\x65'],'\x69\x64':_0x3f0fff['\x69\x64'],'\x74\x72\x69\x67\x67\x65\x72':_0x3f0fff[_0x46c8a0(0x1bd,'\x40\x5d\x75\x79')],'\x67\x65\x6e\x65':_0x3f0fff[_0x46c8a0(0x17d,'\x21\x46\x2a\x24')],'\x73\x75\x6d\x6d\x61\x72\x79':_0x3f0fff[_0x46c8a0(0x1e8,'\x40\x6f\x62\x68')],'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0x3f0fff[_0x46c8a0(0x13d,'\x56\x29\x2a\x65')+'\x63\x65'],'\x62\x6c\x61\x73\x74\x5f\x72\x61\x64\x69\x75\x73':_0x3f0fff[_0x46c8a0(0x1b6,'\x7a\x42\x5a\x4a')+_0x46c8a0(0x187,'\x6b\x61\x77\x70')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65':_0x3f0fff[_0x46c8a0(0x157,'\x76\x52\x49\x4a')]||null,'\x73\x75\x63\x63\x65\x73\x73\x5f\x73\x74\x72\x65\x61\x6b':_0x3f0fff[_0x46c8a0(0x167,'\x24\x21\x79\x63')+_0x46c8a0(0x163,'\x37\x6f\x79\x73')]||null,'\x61\x32\x61':_0x3f0fff[_0x46c8a0(0x193,'\x56\x29\x2a\x65')]||null}))],null,-0x3ad+-0x459+0x808)+_0x46c8a0(0x18d,'\x36\x67\x42\x30'));}catch(_0x43507b){_0xa6615a[_0x46c8a0(0x1bc,'\x37\x28\x53\x41')](_0x46c8a0(0x1ac,'\x2a\x73\x38\x6a'),_0x46c8a0(0x14c,'\x70\x73\x59\x4c'))?console[_0x46c8a0(0x171,'\x70\x73\x59\x4c')](_0xa6615a[_0x46c8a0(0x1df,'\x70\x74\x35\x39')],_0x43507b&&_0x43507b[_0x46c8a0(0x1c6,'\x24\x31\x66\x53')]||_0x43507b):_0x13b0ac[_0x46c8a0(0x191,'\x67\x43\x4a\x41')](_0xa6615a[_0x46c8a0(0x146,'\x26\x6c\x2a\x74')],_0x74680&&_0x25181f[_0x46c8a0(0x168,'\x4d\x45\x4e\x63')]||_0x3a8939);}const _0x427f4d={};return _0x427f4d[_0x46c8a0(0x18c,'\x40\x6f\x62\x68')+'\x74\x79\x43\x61\x6e\x64\x69\x64'+_0x46c8a0(0x156,'\x43\x50\x78\x6b')+_0x46c8a0(0x17f,'\x4c\x43\x48\x33')]=_0x583b37,_0x427f4d['\x65\x78\x74\x65\x72\x6e\x61\x6c'+_0x46c8a0(0x185,'\x21\x33\x45\x7a')+_0x46c8a0(0x160,'\x37\x28\x53\x41')+'\x77']=_0x44ec00,_0x427f4d[_0x46c8a0(0x142,'\x7a\x42\x5a\x4a')+_0x46c8a0(0x179,'\x70\x74\x35\x39')]=_0xf289da,_0x427f4d;}const _0x1ecd91={};_0x1ecd91[_0x3bf632(0x1a4,'\x4d\x31\x61\x7a')+_0x3bf632(0x13e,'\x43\x50\x78\x6b')+_0x3bf632(0x190,'\x76\x52\x49\x4a')]=_0x1e9d36,module[_0x3bf632(0x145,'\x61\x25\x6f\x79')]=_0x1ecd91;
1
+ // Candidate evaluation logic extracted from evolve.js for maintainability.
2
+ // Handles capability candidate extraction, persistence, and preview building.
3
+
4
+ const {
5
+ readRecentCandidates,
6
+ readRecentExternalCandidates,
7
+ readRecentFailedCapsules,
8
+ appendCandidateJsonl,
9
+ } = require('./assetStore');
10
+ const { extractCapabilityCandidates, renderCandidatesPreview } = require('./candidates');
11
+ const { matchPatternToSignals } = require('./selector');
12
+
13
+ function buildCandidatePreviews({ signals, recentSessionTranscript }) {
14
+ const newCandidates = extractCapabilityCandidates({
15
+ recentSessionTranscript: recentSessionTranscript || '',
16
+ signals,
17
+ recentFailedCapsules: readRecentFailedCapsules(50),
18
+ });
19
+ for (const c of newCandidates) {
20
+ try {
21
+ appendCandidateJsonl(c);
22
+ } catch (e) {
23
+ console.warn('[Candidates] Failed to persist candidate:', e && e.message || e);
24
+ }
25
+ }
26
+ const recentCandidates = readRecentCandidates(20);
27
+ const capabilityCandidatesPreview = renderCandidatesPreview(recentCandidates.slice(-8), 1600);
28
+
29
+ let externalCandidatesPreview = '(none)';
30
+ try {
31
+ const external = readRecentExternalCandidates(50);
32
+ const list = Array.isArray(external) ? external : [];
33
+ const capsulesOnly = list.filter(x => x && x.type === 'Capsule');
34
+ const genesOnly = list.filter(x => x && x.type === 'Gene');
35
+
36
+ const matchedExternalGenes = genesOnly
37
+ .map(g => {
38
+ const pats = Array.isArray(g.signals_match) ? g.signals_match : [];
39
+ const hit = pats.reduce((acc, p) => (matchPatternToSignals(p, signals) ? acc + 1 : acc), 0);
40
+ return { gene: g, hit };
41
+ })
42
+ .filter(x => x.hit > 0)
43
+ .sort((a, b) => b.hit - a.hit)
44
+ .slice(0, 3)
45
+ .map(x => x.gene);
46
+
47
+ const matchedExternalCapsules = capsulesOnly
48
+ .map(c => {
49
+ const triggers = Array.isArray(c.trigger) ? c.trigger : [];
50
+ const score = triggers.reduce((acc, t) => (matchPatternToSignals(t, signals) ? acc + 1 : acc), 0);
51
+ return { capsule: c, score };
52
+ })
53
+ .filter(x => x.score > 0)
54
+ .sort((a, b) => b.score - a.score)
55
+ .slice(0, 3)
56
+ .map(x => x.capsule);
57
+
58
+ if (matchedExternalGenes.length || matchedExternalCapsules.length) {
59
+ externalCandidatesPreview = `\`\`\`json\n${JSON.stringify(
60
+ [
61
+ ...matchedExternalGenes.map(g => ({
62
+ type: g.type,
63
+ id: g.id,
64
+ category: g.category || null,
65
+ signals_match: g.signals_match || [],
66
+ a2a: g.a2a || null,
67
+ })),
68
+ ...matchedExternalCapsules.map(c => ({
69
+ type: c.type,
70
+ id: c.id,
71
+ trigger: c.trigger,
72
+ gene: c.gene,
73
+ summary: c.summary,
74
+ confidence: c.confidence,
75
+ blast_radius: c.blast_radius || null,
76
+ outcome: c.outcome || null,
77
+ success_streak: c.success_streak || null,
78
+ a2a: c.a2a || null,
79
+ })),
80
+ ],
81
+ null,
82
+ 2
83
+ )}\n\`\`\``;
84
+ }
85
+ } catch (e) {
86
+ console.warn('[ExternalCandidates] Preview build failed (non-fatal):', e && e.message || e);
87
+ }
88
+
89
+ return { capabilityCandidatesPreview, externalCandidatesPreview, newCandidates };
90
+ }
91
+
92
+ module.exports = { buildCandidatePreviews };
@@ -1 +1,198 @@
1
- const _0x436943=_0x3983;(function(_0x197c14,_0x2854f3){const _0x1fddfb=_0x3983,_0x37b32a=_0x197c14();while(!![]){try{const _0x6005e2=parseInt(_0x1fddfb(0x225,'\x74\x35\x32\x4a'))/(-0x24a*0x6+0x7d0*-0x2+0x1d5d)+-parseInt(_0x1fddfb(0x325,'\x25\x57\x65\x35'))/(-0x1ce9+0x1*0x10e1+0xc0a)*(-parseInt(_0x1fddfb(0x30d,'\x73\x6f\x37\x58'))/(-0x15e2+0xe0f*-0x2+0x3203))+parseInt(_0x1fddfb(0x233,'\x5e\x68\x4d\x42'))/(-0xcb*0x3+0x1*0x14ca+-0x1265)*(-parseInt(_0x1fddfb(0x2ae,'\x43\x7a\x43\x7a'))/(-0x585+-0x53*-0x6b+-0x1d27))+parseInt(_0x1fddfb(0x1f1,'\x78\x44\x21\x25'))/(0x288*0x9+0x2209*0x1+0x81d*-0x7)*(-parseInt(_0x1fddfb(0x280,'\x37\x76\x72\x62'))/(-0x5*-0x3e1+-0xa9*0x11+-0x5*0x1a1))+parseInt(_0x1fddfb(0x35c,'\x30\x45\x38\x72'))/(0xc8f+-0x1d7d+-0x87b*-0x2)*(parseInt(_0x1fddfb(0x38c,'\x26\x6e\x21\x52'))/(-0xc1d+-0xe17*0x1+0x1a3d))+parseInt(_0x1fddfb(0x349,'\x57\x28\x29\x5b'))/(0x12d1+0x248*-0x2+-0x3*0x4bd)+-parseInt(_0x1fddfb(0x204,'\x65\x6d\x59\x70'))/(-0x829*0x1+-0xc44+-0x8*-0x28f)*(-parseInt(_0x1fddfb(0x28a,'\x75\x54\x4c\x5e'))/(0x1*-0x83c+-0x235e+-0x2*-0x15d3));if(_0x6005e2===_0x2854f3)break;else _0x37b32a['push'](_0x37b32a['shift']());}catch(_0x1c53fa){_0x37b32a['push'](_0x37b32a['shift']());}}}(_0x394b,0x50c6f+0xba90*0x5+-0x4ffd7));const _0x546773=(function(){const _0x528377=_0x3983,_0x16fa57={};_0x16fa57['\x44\x50\x69\x42\x67']=function(_0x1af9d0,_0x5beac9){return _0x1af9d0+_0x5beac9;},_0x16fa57[_0x528377(0x236,'\x78\x44\x21\x25')]=function(_0x573d8a,_0x3f65c7){return _0x573d8a!==_0x3f65c7;},_0x16fa57[_0x528377(0x2cd,'\x2a\x76\x29\x48')]=_0x528377(0x1ec,'\x23\x59\x66\x59');const _0x3dce3c=_0x16fa57;let _0x35db77=!![];return function(_0x2d3520,_0x5e8bc6){const _0x923ac7=_0x528377;if(_0x3dce3c[_0x923ac7(0x278,'\x6f\x46\x35\x25')](_0x3dce3c[_0x923ac7(0x220,'\x74\x35\x32\x4a')],_0x3dce3c[_0x923ac7(0x21e,'\x23\x59\x66\x59')])){const _0xf9d9cc=new _0x309996();for(const _0x1fea65 of _0x19b1e6)_0xf9d9cc[_0x923ac7(0x2b7,'\x2a\x76\x29\x48')](_0x1fea65,_0x3dce3c[_0x923ac7(0x346,'\x6b\x6b\x78\x63')](_0xf9d9cc[_0x923ac7(0x227,'\x5e\x68\x4d\x42')](_0x1fea65)||0xca4*-0x1+0x1b3e+-0xe*0x10b,0x5*0x2e6+-0x1*0x25f+-0xc1e));return _0xf9d9cc;}else{const _0x364759=_0x35db77?function(){const _0x37870c=_0x923ac7;if(_0x5e8bc6){const _0xca0453=_0x5e8bc6[_0x37870c(0x21d,'\x65\x6d\x59\x70')](_0x2d3520,arguments);return _0x5e8bc6=null,_0xca0453;}}:function(){};return _0x35db77=![],_0x364759;}};}()),_0x3165f8=_0x546773(this,function(){const _0x4b8af7=_0x3983,_0x2391d1={};_0x2391d1[_0x4b8af7(0x391,'\x40\x7a\x73\x79')]=_0x4b8af7(0x39d,'\x40\x7a\x73\x79')+_0x4b8af7(0x2bb,'\x4d\x37\x70\x30');const _0x2b8479=_0x2391d1;return _0x3165f8[_0x4b8af7(0x395,'\x73\x6f\x37\x58')]()[_0x4b8af7(0x317,'\x6b\x6b\x78\x63')](_0x2b8479[_0x4b8af7(0x2a4,'\x26\x6e\x21\x52')])[_0x4b8af7(0x25f,'\x46\x68\x56\x5a')]()[_0x4b8af7(0x35e,'\x30\x45\x38\x72')+_0x4b8af7(0x39e,'\x38\x61\x34\x23')](_0x3165f8)[_0x4b8af7(0x2fb,'\x39\x36\x38\x74')](_0x2b8479[_0x4b8af7(0x266,'\x5d\x5a\x59\x70')]);});_0x3165f8();function _0x3983(_0x2dd94e,_0x2555d4){_0x2dd94e=_0x2dd94e-(-0x3*-0x9a2+0x1748+0x1*-0x325d);const _0x16942c=_0x394b();let _0x10de33=_0x16942c[_0x2dd94e];if(_0x3983['\x77\x66\x59\x67\x51\x78']===undefined){var _0x5bea2d=function(_0x4043a9){const _0x5bde62='\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 _0xd2cd7d='',_0x3b2f49='',_0x300562=_0xd2cd7d+_0x5bea2d,_0x5f553e=(''+function(){return 0x13e8+0x3e4+-0x5f3*0x4;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x208f+0x1fe1*0x1+-0x23*-0x5);for(let _0x32e97d=0x1dc*-0x4+-0x1*0x132a+-0x1c6*-0xf,_0x5c10c3,_0x3f365e,_0x455210=-0x20ca+-0x241c+0x44e6;_0x3f365e=_0x4043a9['\x63\x68\x61\x72\x41\x74'](_0x455210++);~_0x3f365e&&(_0x5c10c3=_0x32e97d%(-0x1d2e+0x1a3c+0x2f6)?_0x5c10c3*(0x1131+-0x2495+0x13a4)+_0x3f365e:_0x3f365e,_0x32e97d++%(-0x230e+-0x9f7*-0x2+0xf24))?_0xd2cd7d+=_0x5f553e||_0x300562['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x455210+(-0x25e0+-0x114*0x9+-0x35*-0xe6))-(-0x1042+-0x10d7+-0x1*-0x2123)!==-0x31d+-0x201e+0x1d*0x137?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1ac4+-0x106b+0xae*0x41&_0x5c10c3>>(-(0x4c*0x58+-0xc5*-0x1f+0x31f9*-0x1)*_0x32e97d&-0x1*-0x25e2+0x88*0x33+-0x4*0x103d)):_0x32e97d:-0x10*0xf1+0xc46*-0x1+0x1b56){_0x3f365e=_0x5bde62['\x69\x6e\x64\x65\x78\x4f\x66'](_0x3f365e);}for(let _0xea7d19=0x12fd*0x2+0x14a1*0x1+-0x3a9b,_0x89d102=_0xd2cd7d['\x6c\x65\x6e\x67\x74\x68'];_0xea7d19<_0x89d102;_0xea7d19++){_0x3b2f49+='\x25'+('\x30\x30'+_0xd2cd7d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xea7d19)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x3*-0x129+-0x34d*0x3+0xd72))['\x73\x6c\x69\x63\x65'](-(-0x1*0xf24+-0x1*0x2c6+-0x47b*-0x4));}return decodeURIComponent(_0x3b2f49);};const _0x3d396a=function(_0x699042,_0x24d41b){let _0x2ac4cc=[],_0xf9baf6=-0x5d*0x2a+-0x1887+0x7f5*0x5,_0x741bbd,_0x27b5ac='';_0x699042=_0x5bea2d(_0x699042);let _0x5bbaac;for(_0x5bbaac=0x9*0x324+0x1453*0x1+0x3097*-0x1;_0x5bbaac<0x1cab*-0x1+-0x504*0x5+0x36bf;_0x5bbaac++){_0x2ac4cc[_0x5bbaac]=_0x5bbaac;}for(_0x5bbaac=-0x2543+-0x4d2+-0x85*-0x51;_0x5bbaac<0x62*0x56+-0x3*-0x827+-0x3861;_0x5bbaac++){_0xf9baf6=(_0xf9baf6+_0x2ac4cc[_0x5bbaac]+_0x24d41b['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5bbaac%_0x24d41b['\x6c\x65\x6e\x67\x74\x68']))%(-0x11ef+0x2656+-0x1*0x1367),_0x741bbd=_0x2ac4cc[_0x5bbaac],_0x2ac4cc[_0x5bbaac]=_0x2ac4cc[_0xf9baf6],_0x2ac4cc[_0xf9baf6]=_0x741bbd;}_0x5bbaac=0x153f+-0x7*0x579+0x444*0x4,_0xf9baf6=0xb9*0x13+0xf81+-0x1d3c;for(let _0x1b293f=-0x504+-0x26de+0x2be2;_0x1b293f<_0x699042['\x6c\x65\x6e\x67\x74\x68'];_0x1b293f++){_0x5bbaac=(_0x5bbaac+(-0x163*-0x12+-0x4ad+-0x1448))%(0x1*0x26b3+0x15e0+-0x3b93),_0xf9baf6=(_0xf9baf6+_0x2ac4cc[_0x5bbaac])%(0x117f+-0xfd3*0x2+0xf27),_0x741bbd=_0x2ac4cc[_0x5bbaac],_0x2ac4cc[_0x5bbaac]=_0x2ac4cc[_0xf9baf6],_0x2ac4cc[_0xf9baf6]=_0x741bbd,_0x27b5ac+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x699042['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1b293f)^_0x2ac4cc[(_0x2ac4cc[_0x5bbaac]+_0x2ac4cc[_0xf9baf6])%(-0xdb0+-0x2e*0x74+-0xbd8*-0x3)]);}return _0x27b5ac;};_0x3983['\x53\x4a\x65\x70\x63\x5a']=_0x3d396a,_0x3983['\x6d\x64\x67\x56\x7a\x6f']={},_0x3983['\x77\x66\x59\x67\x51\x78']=!![];}const _0x4a120d=_0x16942c[-0x4f2+-0xd*0x185+0x18b3*0x1],_0x4bdbeb=_0x2dd94e+_0x4a120d,_0x336157=_0x3983['\x6d\x64\x67\x56\x7a\x6f'][_0x4bdbeb];if(!_0x336157){if(_0x3983['\x51\x48\x6f\x68\x4b\x4c']===undefined){const _0x2c4abb=function(_0x2ec2cb){this['\x47\x53\x4e\x44\x57\x48']=_0x2ec2cb,this['\x4d\x47\x7a\x51\x74\x51']=[0x2*-0x38b+0xb0d+0x3*-0x152,-0xc1*-0x16+0x6*-0x133+-0x964,-0xab6+-0xed4+0x198a],this['\x6a\x72\x67\x63\x71\x63']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x68\x59\x69\x75\x41\x4c']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x67\x5a\x5a\x63\x77\x4c']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x2c4abb['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x69\x50\x65\x43\x7a\x41']=function(){const _0x414561=new RegExp(this['\x68\x59\x69\x75\x41\x4c']+this['\x67\x5a\x5a\x63\x77\x4c']),_0x1dd3cb=_0x414561['\x74\x65\x73\x74'](this['\x6a\x72\x67\x63\x71\x63']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x4d\x47\x7a\x51\x74\x51'][0x2*-0x831+-0x1a*-0xd+-0xcb*-0x13]:--this['\x4d\x47\x7a\x51\x74\x51'][0xc1b+-0x14e2+0x3*0x2ed];return this['\x48\x57\x67\x45\x61\x5a'](_0x1dd3cb);},_0x2c4abb['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x48\x57\x67\x45\x61\x5a']=function(_0x4ebd79){if(!Boolean(~_0x4ebd79))return _0x4ebd79;return this['\x76\x6a\x6f\x43\x6f\x70'](this['\x47\x53\x4e\x44\x57\x48']);},_0x2c4abb['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x76\x6a\x6f\x43\x6f\x70']=function(_0x3fbadc){for(let _0x412013=-0x56*0x47+0x6b*-0x7+0x1ac7,_0x4e1a92=this['\x4d\x47\x7a\x51\x74\x51']['\x6c\x65\x6e\x67\x74\x68'];_0x412013<_0x4e1a92;_0x412013++){this['\x4d\x47\x7a\x51\x74\x51']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x4e1a92=this['\x4d\x47\x7a\x51\x74\x51']['\x6c\x65\x6e\x67\x74\x68'];}return _0x3fbadc(this['\x4d\x47\x7a\x51\x74\x51'][0x1*0x1eee+0x2073+-0x3f61]);},(''+function(){return 0x2f9*-0x1+0x266*0x2+-0x1d3;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0xb*0x5e+-0x2de+0x6e9)&&new _0x2c4abb(_0x3983)['\x69\x50\x65\x43\x7a\x41'](),_0x3983['\x51\x48\x6f\x68\x4b\x4c']=!![];}_0x10de33=_0x3983['\x53\x4a\x65\x70\x63\x5a'](_0x10de33,_0x2555d4),_0x3983['\x6d\x64\x67\x56\x7a\x6f'][_0x4bdbeb]=_0x10de33;}else _0x10de33=_0x336157;return _0x10de33;}const {expandSignals:_0x2198cc}=require(_0x436943(0x38b,'\x23\x59\x66\x59')+_0x436943(0x303,'\x58\x32\x50\x6a')+'\x73'),{stableHash:_0x22f620}=require(_0x436943(0x38e,'\x49\x63\x2a\x23'));function _0x31ae6c(_0x495b87,_0x522db0){const _0x2978a7=_0x436943,_0x465fa5={};_0x465fa5[_0x2978a7(0x250,'\x49\x63\x2a\x23')]=function(_0x4b2984,_0x478f15){return _0x4b2984<=_0x478f15;},_0x465fa5[_0x2978a7(0x2fe,'\x29\x28\x4d\x38')]=function(_0x2d5655,_0x407e3a){return _0x2d5655+_0x407e3a;},_0x465fa5[_0x2978a7(0x224,'\x65\x6d\x59\x70')]=function(_0x35a631,_0x3a44f5){return _0x35a631-_0x3a44f5;},_0x465fa5['\x44\x48\x49\x73\x49']=_0x2978a7(0x34d,'\x35\x54\x36\x68')+'\x4e\x43\x41\x54\x45\x44\x5d';const _0x2c4389=_0x465fa5,_0x5e2737=String(_0x495b87||'');if(!_0x522db0||_0x2c4389[_0x2978a7(0x364,'\x2a\x69\x4e\x56')](_0x5e2737[_0x2978a7(0x1f9,'\x7a\x4d\x6e\x73')],_0x522db0))return _0x5e2737;return _0x2c4389[_0x2978a7(0x244,'\x42\x4c\x6c\x54')](_0x5e2737[_0x2978a7(0x29c,'\x30\x45\x38\x72')](-0xdbf+-0x1980+-0x11*-0x24f,Math[_0x2978a7(0x33c,'\x37\x41\x6c\x40')](0x21*0x1+-0x2*0x28a+-0xb5*-0x7,_0x2c4389[_0x2978a7(0x2f5,'\x5a\x6d\x46\x55')](_0x522db0,0x1f12+0x3*0x3b+-0x1*0x1faf))),_0x2c4389[_0x2978a7(0x294,'\x28\x6d\x35\x43')]);}function _0x496c01(_0x4d479d){const _0x448412=_0x436943,_0xd718ec={'\x54\x72\x69\x69\x78':function(_0x4a5194,_0x5835cb){return _0x4a5194(_0x5835cb);},'\x52\x68\x4f\x41\x55':function(_0x5b1ee7,_0x569ab8){return _0x5b1ee7||_0x569ab8;}};return _0xd718ec[_0x448412(0x344,'\x48\x21\x25\x25')](String,_0xd718ec['\x52\x68\x4f\x41\x55'](_0x4d479d,''))[_0x448412(0x28d,'\x34\x30\x25\x24')]('\x0a')[_0x448412(0x308,'\x78\x68\x67\x30')](_0x7fefc0=>_0x7fefc0[_0x448412(0x396,'\x40\x7a\x73\x79')]())[_0x448412(0x323,'\x25\x57\x65\x35')](Boolean);}function _0x49e48d(_0x4ecd1f){const _0x36dc48=_0x436943,_0x48a347={'\x52\x58\x71\x76\x47':function(_0x5723a1,_0x37b542){return _0x5723a1(_0x37b542);}},_0x3e625b=_0x48a347[_0x36dc48(0x1e0,'\x6f\x46\x35\x25')](_0x496c01,_0x4ecd1f),_0x1721b3=[];for(const _0x4d4f77 of _0x3e625b){const _0x23a26c=_0x4d4f77['\x6d\x61\x74\x63\x68'](/\[TOOL:\s*([^\]]+)\]/i);if(_0x23a26c&&_0x23a26c[-0x963+0x16b5+-0xd51]){_0x1721b3[_0x36dc48(0x246,'\x40\x7a\x73\x79')](_0x23a26c[0x5*-0x5c4+-0x48a+0x1*0x215f][_0x36dc48(0x25d,'\x4d\x37\x70\x30')]());continue;}const _0xfeb16e=_0x4d4f77[_0x36dc48(0x2a7,'\x31\x25\x66\x21')](/\[Tool call\]\s+(\S+)/i);if(_0xfeb16e&&_0xfeb16e[-0x19*0x15a+0xaf*-0x2f+0x20f6*0x2])_0x1721b3[_0x36dc48(0x2ea,'\x6f\x46\x35\x25')](_0xfeb16e[-0x1*0x119+0x8*0x266+-0x1216][_0x36dc48(0x33a,'\x73\x6f\x37\x58')]());}return _0x1721b3;}function _0x44b813(_0x1bdd4c){const _0x1fc8f1=_0x436943,_0x47bb13=new Map();for(const _0x2929ae of _0x1bdd4c)_0x47bb13[_0x1fc8f1(0x29d,'\x42\x4c\x6c\x54')](_0x2929ae,(_0x47bb13[_0x1fc8f1(0x2f7,'\x78\x68\x67\x30')](_0x2929ae)||0x1*0x1150+-0x740+-0x2*0x508)+(0x1be+-0x156b+0x13ae));return _0x47bb13;}function _0x1defcc({title:_0x128265,signals:_0x34d57a,evidence:_0x3d471e}){const _0x104425=_0x436943,_0x51a2b2={};_0x51a2b2[_0x104425(0x35a,'\x74\x31\x45\x71')]=_0x104425(0x20d,'\x65\x35\x23\x5b')+_0x104425(0x2c5,'\x28\x6d\x35\x43')+_0x104425(0x3a7,'\x31\x25\x66\x21')+_0x104425(0x366,'\x37\x76\x72\x62')+_0x104425(0x1d5,'\x31\x50\x6d\x56')+'\x65\x74\x73\x20\x2b\x20\x75\x73'+_0x104425(0x1e6,'\x4d\x37\x70\x30')+_0x104425(0x258,'\x46\x39\x59\x29'),_0x51a2b2[_0x104425(0x279,'\x6f\x46\x35\x25')]=_0x104425(0x270,'\x28\x6d\x35\x43')+_0x104425(0x38a,'\x61\x73\x77\x49')+_0x104425(0x363,'\x7a\x4d\x6e\x73')+_0x104425(0x1fd,'\x28\x6d\x35\x43')+'\x68\x20\x67\x75\x69\x64\x65\x64'+'\x20\x62\x79\x20\x47\x45\x50\x20'+_0x104425(0x283,'\x31\x50\x6d\x56'),_0x51a2b2[_0x104425(0x208,'\x6f\x46\x35\x25')]=_0x104425(0x240,'\x48\x21\x25\x25')+_0x104425(0x371,'\x25\x57\x65\x35')+_0x104425(0x298,'\x26\x6e\x21\x52')+_0x104425(0x22c,'\x39\x36\x38\x74')+_0x104425(0x376,'\x61\x73\x77\x49')+_0x104425(0x2ec,'\x58\x64\x69\x64')+_0x104425(0x276,'\x5d\x5a\x59\x70')+_0x104425(0x201,'\x5e\x68\x4d\x42')+_0x104425(0x350,'\x58\x32\x50\x6a'),_0x51a2b2[_0x104425(0x34c,'\x75\x54\x4c\x5e')]=_0x104425(0x1f4,'\x74\x31\x45\x71')+_0x104425(0x1e5,'\x35\x54\x36\x68')+_0x104425(0x237,'\x57\x28\x29\x5b')+_0x104425(0x393,'\x31\x50\x6d\x56')+_0x104425(0x306,'\x6b\x6b\x78\x63')+'\x70\x70\x65\x64\x20\x76\x61\x6c'+_0x104425(0x28b,'\x63\x55\x5b\x57')+_0x104425(0x329,'\x58\x64\x69\x64')+_0x104425(0x22f,'\x63\x55\x5b\x57')+_0x104425(0x390,'\x63\x55\x5b\x57')+_0x104425(0x27d,'\x42\x4c\x6c\x54')+'\x6e',_0x51a2b2[_0x104425(0x378,'\x6f\x46\x35\x25')]=function(_0x866f5,_0x16a2ce){return _0x866f5||_0x16a2ce;},_0x51a2b2[_0x104425(0x29e,'\x74\x35\x32\x4a')]=_0x104425(0x2ba,'\x58\x64\x69\x64')+_0x104425(0x243,'\x43\x7a\x43\x7a');const _0x4e6376=_0x51a2b2,_0x4d9d2f=_0x4e6376[_0x104425(0x1ea,'\x63\x55\x5b\x57')],_0x59f349=_0x4e6376[_0x104425(0x398,'\x58\x75\x62\x4c')],_0x927229=_0x4e6376[_0x104425(0x272,'\x74\x35\x32\x4a')],_0x4f6b40=(_0x104425(0x247,'\x26\x6e\x21\x52')+'\x20'+(Array[_0x104425(0x2b5,'\x65\x35\x23\x5b')](_0x34d57a)?_0x34d57a[_0x104425(0x26c,'\x42\x4c\x6c\x54')]('\x2c\x20'):''))['\x74\x72\x69\x6d'](),_0x47f54d=_0x4e6376[_0x104425(0x223,'\x23\x59\x66\x59')];return{'\x74\x69\x74\x6c\x65':String(_0x128265||'')[_0x104425(0x2be,'\x43\x7a\x43\x7a')](0x206a*0x1+-0x466+-0x1c04,-0x1*-0xb48+-0x12e+-0x9a2*0x1),'\x69\x6e\x70\x75\x74':_0x4d9d2f,'\x6f\x75\x74\x70\x75\x74':_0x59f349,'\x69\x6e\x76\x61\x72\x69\x61\x6e\x74\x73':_0x927229,'\x70\x61\x72\x61\x6d\x73':_0x4e6376[_0x104425(0x21c,'\x78\x68\x67\x30')](_0x4f6b40,_0x4e6376[_0x104425(0x2d8,'\x49\x63\x2a\x23')]),'\x66\x61\x69\x6c\x75\x72\x65\x5f\x70\x6f\x69\x6e\x74\x73':_0x47f54d,'\x65\x76\x69\x64\x65\x6e\x63\x65':_0x31ae6c(_0x3d471e,0x90f+-0x5*0x194+0x3b*-0x1)};}function _0x4bf682({recentSessionTranscript:_0x39360a,signals:_0x35a508,recentFailedCapsules:_0x356f73}){const _0xb00742=_0x436943,_0x193b22={'\x7a\x74\x6c\x4b\x6b':function(_0x476e6e,_0x40abe7){return _0x476e6e(_0x40abe7);},'\x51\x67\x79\x5a\x56':function(_0x128644,_0x97b50){return _0x128644||_0x97b50;},'\x6c\x49\x4b\x6e\x70':function(_0x57e8d1,_0x55924b){return _0x57e8d1+_0x55924b;},'\x4f\x51\x78\x53\x73':function(_0x1eff0e,_0x497438){return _0x1eff0e-_0x497438;},'\x42\x4b\x45\x59\x54':_0xb00742(0x2ef,'\x75\x54\x4c\x5e')+_0xb00742(0x2de,'\x46\x39\x59\x29'),'\x50\x4f\x4f\x55\x5a':function(_0x1a92b9,_0x2b2a3d){return _0x1a92b9===_0x2b2a3d;},'\x54\x72\x4b\x59\x67':_0xb00742(0x2c7,'\x37\x76\x72\x62'),'\x58\x67\x4c\x76\x44':function(_0x5d7201,_0x150750){return _0x5d7201===_0x150750;},'\x46\x69\x71\x51\x53':_0xb00742(0x379,'\x37\x76\x72\x62'),'\x72\x77\x41\x48\x66':function(_0x174318,_0x171f48){return _0x174318===_0x171f48;},'\x62\x69\x6d\x70\x7a':_0xb00742(0x318,'\x65\x35\x23\x5b'),'\x6a\x52\x50\x63\x42':'\x61\x63\x74\x69\x6f\x6e\x3a','\x6b\x69\x53\x70\x41':function(_0x2f14ca,_0x1169aa){return _0x2f14ca===_0x1169aa;},'\x54\x44\x42\x4b\x64':_0xb00742(0x358,'\x35\x54\x36\x68'),'\x67\x6c\x67\x43\x61':function(_0x15f696,_0x3a72c9){return _0x15f696===_0x3a72c9;},'\x78\x4b\x46\x68\x41':'\x33\x7c\x30\x7c\x35\x7c\x34\x7c'+_0xb00742(0x387,'\x38\x61\x34\x23'),'\x59\x64\x52\x6d\x77':_0xb00742(0x2a3,'\x75\x54\x4c\x5e')+'\x74\x79\x43\x61\x6e\x64\x69\x64'+_0xb00742(0x36a,'\x38\x61\x34\x23'),'\x71\x56\x74\x4f\x47':function(_0x2a54d6,_0x3409dc){return _0x2a54d6(_0x3409dc);},'\x70\x4a\x55\x75\x6e':_0xb00742(0x2f6,'\x50\x75\x4e\x53'),'\x73\x6d\x71\x46\x61':function(_0x2fe19a,_0x2b8459){return _0x2fe19a+_0x2b8459;},'\x75\x55\x74\x47\x53':_0xb00742(0x20b,'\x46\x68\x56\x5a')+'\x20','\x56\x61\x4e\x53\x44':_0xb00742(0x1f8,'\x5e\x68\x4d\x42')+_0xb00742(0x24d,'\x38\x61\x34\x23')+'\x76\x6f\x6c\x75\x74\x69\x6f\x6e'+_0xb00742(0x2d1,'\x35\x54\x36\x68')+_0xb00742(0x31d,'\x78\x44\x21\x25')+_0xb00742(0x2b8,'\x37\x76\x72\x62')+_0xb00742(0x2a1,'\x63\x55\x5b\x57'),'\x77\x64\x4c\x45\x62':_0xb00742(0x202,'\x38\x61\x34\x23')+_0xb00742(0x1fb,'\x58\x32\x50\x6a'),'\x4f\x46\x57\x54\x65':function(_0x377d7f,_0x4b3b9c,_0x15895d){return _0x377d7f(_0x4b3b9c,_0x15895d);},'\x77\x6d\x6b\x47\x43':function(_0xfdd919,_0x4bab78){return _0xfdd919!==_0x4bab78;},'\x77\x71\x58\x66\x4b':'\x70\x72\x6f\x62\x6c\x65\x6d\x3a'+_0xb00742(0x36f,'\x2a\x76\x29\x48')+_0xb00742(0x335,'\x38\x61\x34\x23'),'\x4e\x77\x6c\x50\x68':_0xb00742(0x383,'\x40\x7a\x73\x79')+_0xb00742(0x32a,'\x5d\x5a\x59\x70')+_0xb00742(0x30e,'\x28\x6d\x35\x43')+_0xb00742(0x30a,'\x25\x57\x65\x35')+_0xb00742(0x218,'\x41\x25\x74\x58')+'\x73','\x64\x64\x7a\x76\x45':_0xb00742(0x1e4,'\x5d\x5a\x59\x70')+_0xb00742(0x2cc,'\x43\x7a\x43\x7a'),'\x44\x78\x65\x65\x75':_0xb00742(0x1f6,'\x57\x28\x29\x5b')+_0xb00742(0x290,'\x65\x35\x23\x5b')+_0xb00742(0x1dc,'\x37\x41\x6c\x40')+'\x6f\x6c\x20\x61\x6e\x64\x20\x76'+'\x61\x6c\x69\x64\x61\x74\x69\x6f'+_0xb00742(0x285,'\x28\x6d\x35\x43')+'\x73\x69\x6f\x6e\x73','\x56\x52\x71\x45\x47':_0xb00742(0x2a5,'\x2a\x69\x4e\x56')+_0xb00742(0x30c,'\x6f\x46\x35\x25')+_0xb00742(0x3a0,'\x75\x54\x4c\x5e'),'\x78\x53\x5a\x62\x62':function(_0xe9f3e6,_0x440def){return _0xe9f3e6!==_0x440def;},'\x76\x6f\x74\x70\x49':_0xb00742(0x28e,'\x37\x41\x6c\x40')+_0xb00742(0x23b,'\x37\x41\x6c\x40')+_0xb00742(0x2c2,'\x75\x54\x4c\x5e')+_0xb00742(0x385,'\x63\x55\x5b\x57')+_0xb00742(0x359,'\x46\x68\x56\x5a')+_0xb00742(0x352,'\x5e\x68\x4d\x42')+_0xb00742(0x27b,'\x50\x75\x4e\x53'),'\x74\x53\x4a\x69\x73':_0xb00742(0x215,'\x5a\x6d\x46\x55')+_0xb00742(0x2c1,'\x6b\x6b\x78\x63')+'\x6f\x6e','\x4b\x45\x46\x56\x7a':_0xb00742(0x333,'\x26\x6e\x21\x52')+_0xb00742(0x248,'\x5e\x68\x4d\x42')+_0xb00742(0x1da,'\x41\x25\x74\x58')+_0xb00742(0x2a8,'\x2a\x76\x29\x48')+'\x20\x62\x65\x68\x61\x76\x69\x6f'+'\x72','\x64\x4c\x6b\x72\x4a':'\x4c\x65\x61\x72\x6e\x20\x66\x72'+_0xb00742(0x259,'\x41\x25\x74\x58')+_0xb00742(0x26d,'\x30\x45\x38\x72')+_0xb00742(0x2dd,'\x37\x41\x6c\x40')+'\x75\x74\x69\x6f\x6e\x20\x70\x61'+'\x74\x68\x73','\x71\x66\x4b\x6f\x73':function(_0x4897ea,_0x4d6d65){return _0x4897ea(_0x4d6d65);},'\x59\x43\x47\x4d\x6c':function(_0x3164ec,_0x4b23a2){return _0x3164ec<_0x4b23a2;},'\x4d\x6f\x41\x6a\x77':function(_0x1ce30b,_0x47c765){return _0x1ce30b(_0x47c765);},'\x51\x42\x4a\x58\x71':_0xb00742(0x355,'\x78\x68\x67\x30')+'\x70\x74','\x6e\x44\x73\x6e\x67':_0xb00742(0x361,'\x34\x75\x71\x45')+'\x72','\x64\x54\x53\x6b\x4a':_0xb00742(0x24f,'\x61\x73\x77\x49')+_0xb00742(0x1e9,'\x78\x33\x37\x36')+_0xb00742(0x263,'\x78\x33\x37\x36')+_0xb00742(0x2a6,'\x48\x21\x25\x25'),'\x6b\x49\x48\x6d\x6c':_0xb00742(0x32c,'\x42\x4c\x6c\x54')+_0xb00742(0x1f3,'\x5e\x6a\x58\x53')+'\x20\x64\x72\x69\x66\x74\x20\x61'+_0xb00742(0x315,'\x40\x7a\x73\x79')+'\x63\x65\x20\x61\x75\x64\x69\x74'+_0xb00742(0x2e5,'\x46\x39\x59\x29')+_0xb00742(0x2b0,'\x65\x35\x23\x5b'),'\x68\x43\x6f\x75\x7a':_0xb00742(0x1eb,'\x74\x35\x32\x4a')+_0xb00742(0x30f,'\x30\x45\x38\x72')+_0xb00742(0x2bd,'\x78\x44\x21\x25')+'\x6c\x65','\x6e\x43\x59\x67\x43':_0xb00742(0x252,'\x6f\x46\x35\x25')+_0xb00742(0x394,'\x46\x68\x56\x5a')+_0xb00742(0x336,'\x2a\x69\x4e\x56'),'\x58\x74\x48\x78\x63':_0xb00742(0x211,'\x37\x76\x72\x62')+_0xb00742(0x354,'\x2a\x69\x4e\x56')+_0xb00742(0x3a4,'\x31\x50\x6d\x56')+_0xb00742(0x239,'\x78\x68\x67\x30')+'\x20\x66\x61\x6c\x6c\x62\x61\x63'+_0xb00742(0x320,'\x73\x6f\x37\x58')+'\x6f\x72','\x53\x48\x49\x76\x52':_0xb00742(0x1f0,'\x46\x68\x56\x5a')+'\x74\x75\x72\x65\x5f\x72\x65\x71'+'\x75\x65\x73\x74','\x6f\x72\x4b\x59\x79':_0xb00742(0x2e1,'\x28\x6d\x35\x43')+_0xb00742(0x253,'\x37\x76\x72\x62')+_0xb00742(0x2d6,'\x58\x32\x50\x6a')+_0xb00742(0x249,'\x35\x54\x36\x68'),'\x6d\x62\x76\x79\x59':_0xb00742(0x2e2,'\x30\x45\x38\x72')+_0xb00742(0x2b3,'\x5d\x5a\x59\x70')+_0xb00742(0x324,'\x39\x36\x38\x74')+_0xb00742(0x23c,'\x46\x68\x56\x5a'),'\x75\x53\x41\x54\x62':'\x41\x70\x70\x6c\x79\x20\x75\x73'+_0xb00742(0x353,'\x46\x39\x59\x29')+_0xb00742(0x24b,'\x28\x6d\x35\x43')+_0xb00742(0x20e,'\x30\x45\x38\x72')+'\x6e','\x74\x62\x52\x78\x69':_0xb00742(0x295,'\x23\x59\x66\x59')+_0xb00742(0x2e9,'\x49\x63\x2a\x23'),'\x58\x44\x73\x6f\x57':_0xb00742(0x1fa,'\x39\x36\x38\x74')+_0xb00742(0x382,'\x38\x61\x34\x23')+_0xb00742(0x33b,'\x63\x55\x5b\x57')+_0xb00742(0x2c8,'\x78\x68\x67\x30'),'\x46\x52\x70\x4d\x77':'\x46\x69\x6c\x6c\x20\x63\x61\x70'+_0xb00742(0x2e6,'\x7a\x4d\x6e\x73')+_0xb00742(0x345,'\x6b\x6b\x78\x63'),'\x74\x7a\x77\x61\x42':_0xb00742(0x348,'\x38\x61\x34\x23')+_0xb00742(0x24c,'\x57\x28\x29\x5b')+'\x6c\x61\x74\x65\x61\x75','\x6f\x54\x59\x41\x47':_0xb00742(0x39f,'\x61\x73\x77\x49')+_0xb00742(0x256,'\x58\x32\x50\x6a')+_0xb00742(0x2f3,'\x65\x35\x23\x5b')+_0xb00742(0x274,'\x25\x57\x65\x35')+_0xb00742(0x332,'\x74\x31\x45\x71')+'\x70\x6c\x61\x74\x65\x61\x75','\x65\x57\x47\x63\x7a':_0xb00742(0x2ac,'\x58\x75\x62\x4c')+_0xb00742(0x380,'\x37\x41\x6c\x40')+_0xb00742(0x22d,'\x6f\x46\x35\x25'),'\x68\x68\x67\x72\x71':_0xb00742(0x2f9,'\x58\x75\x62\x4c')+_0xb00742(0x37d,'\x7a\x4d\x6e\x73')+_0xb00742(0x1ee,'\x2a\x69\x4e\x56')+_0xb00742(0x268,'\x78\x44\x21\x25')+_0xb00742(0x2a2,'\x29\x28\x4d\x38')+'\x6f\x70\x74\x69\x6f\x6e','\x42\x47\x69\x42\x53':_0xb00742(0x260,'\x23\x59\x66\x59'),'\x61\x64\x6f\x4a\x41':_0xb00742(0x2eb,'\x78\x44\x21\x25'),'\x62\x56\x48\x79\x64':function(_0x3c54f9,_0x36c2c4){return _0x3c54f9(_0x36c2c4);},'\x6b\x48\x74\x7a\x52':_0xb00742(0x27e,'\x50\x75\x4e\x53')+_0xb00742(0x305,'\x40\x7a\x73\x79')+'\x74\x79','\x49\x6a\x59\x65\x4d':_0xb00742(0x319,'\x23\x59\x66\x59'),'\x74\x77\x74\x70\x50':function(_0x1f8a77,_0x5ae120){return _0x1f8a77===_0x5ae120;},'\x48\x79\x6b\x43\x6b':_0xb00742(0x245,'\x73\x6f\x37\x58'),'\x59\x56\x6a\x4c\x4b':function(_0x49e009,_0x3b3382,_0x57358e){return _0x49e009(_0x3b3382,_0x57358e);},'\x43\x66\x54\x6d\x5a':function(_0x27137b,_0x1ba4dd){return _0x27137b===_0x1ba4dd;}},_0x57be17=[],_0x28d3a3=Array[_0xb00742(0x219,'\x2a\x76\x29\x48')](_0x35a508)?_0x35a508:[],_0x437201=_0x193b22[_0xb00742(0x357,'\x58\x32\x50\x6a')](_0x2198cc,_0x28d3a3,_0x39360a),_0x316e13=_0x193b22[_0xb00742(0x2c6,'\x49\x63\x2a\x23')](_0x49e48d,_0x39360a),_0x3281c0=_0x44b813(_0x316e13);for(const [_0x3b7e57,_0x5cc610]of _0x3281c0['\x65\x6e\x74\x72\x69\x65\x73']()){if(_0x193b22[_0xb00742(0x255,'\x78\x44\x21\x25')](_0x5cc610,-0x2d*-0xd+-0xdab*-0x1+-0xff1))continue;const _0x4b6db7=_0xb00742(0x2b4,'\x65\x35\x23\x5b')+'\x20\x74\x6f\x6f\x6c\x20\x75\x73'+_0xb00742(0x1d9,'\x31\x50\x6d\x56')+_0x3b7e57,_0x36113e=_0xb00742(0x301,'\x6f\x46\x35\x25')+'\x20'+_0x5cc610+(_0xb00742(0x27f,'\x78\x33\x37\x36')+_0xb00742(0x338,'\x6f\x46\x35\x25')+_0xb00742(0x2fd,'\x40\x7a\x73\x79')+'\x6c\x20\x6d\x61\x72\x6b\x65\x72'+_0xb00742(0x238,'\x5a\x6d\x46\x55'))+_0x3b7e57+'\x2e',_0x34c003={};_0x34c003[_0xb00742(0x1d6,'\x74\x31\x45\x71')]=_0x4b6db7,_0x34c003[_0xb00742(0x375,'\x6b\x6b\x78\x63')]=_0x35a508,_0x34c003[_0xb00742(0x3a2,'\x25\x57\x65\x35')]=_0x36113e;const _0x5cf1fa=_0x193b22[_0xb00742(0x302,'\x31\x25\x66\x21')](_0x1defcc,_0x34c003);_0x57be17[_0xb00742(0x37a,'\x30\x45\x38\x72')]({'\x74\x79\x70\x65':_0x193b22[_0xb00742(0x342,'\x49\x63\x2a\x23')],'\x69\x64':_0xb00742(0x311,'\x65\x35\x23\x5b')+_0x193b22[_0xb00742(0x1f7,'\x57\x28\x29\x5b')](_0x22f620,_0x4b6db7),'\x74\x69\x74\x6c\x65':_0x4b6db7,'\x73\x6f\x75\x72\x63\x65':_0x193b22[_0xb00742(0x21b,'\x65\x35\x23\x5b')],'\x63\x72\x65\x61\x74\x65\x64\x5f\x61\x74':new Date()[_0xb00742(0x287,'\x65\x35\x23\x5b')+_0xb00742(0x292,'\x28\x6d\x35\x43')](),'\x73\x69\x67\x6e\x61\x6c\x73':_0x28d3a3,'\x74\x61\x67\x73':_0x437201,'\x73\x68\x61\x70\x65':_0x5cf1fa});}const _0x1f8383={};_0x1f8383[_0xb00742(0x231,'\x5e\x6a\x58\x53')]=_0x193b22['\x6e\x44\x73\x6e\x67'],_0x1f8383['\x74\x69\x74\x6c\x65']=_0x193b22[_0xb00742(0x269,'\x37\x41\x6c\x40')];const _0x2d72b6={};_0x2d72b6[_0xb00742(0x23d,'\x43\x7a\x43\x7a')]=_0xb00742(0x34a,'\x29\x28\x4d\x38')+_0xb00742(0x2b6,'\x39\x36\x38\x74'),_0x2d72b6[_0xb00742(0x221,'\x37\x41\x6c\x40')]=_0x193b22['\x6b\x49\x48\x6d\x6c'];const _0xd0404={};_0xd0404[_0xb00742(0x32d,'\x5e\x68\x4d\x42')]=_0x193b22[_0xb00742(0x362,'\x39\x36\x38\x74')],_0xd0404[_0xb00742(0x36c,'\x7a\x4d\x6e\x73')]=_0xb00742(0x26e,'\x28\x6d\x35\x43')+_0xb00742(0x23a,'\x5e\x68\x4d\x42')+_0xb00742(0x281,'\x49\x63\x2a\x23')+_0xb00742(0x1db,'\x31\x50\x6d\x56')+_0xb00742(0x2b1,'\x37\x41\x6c\x40')+_0xb00742(0x37f,'\x2a\x69\x4e\x56')+_0xb00742(0x27a,'\x5d\x5a\x59\x70')+_0xb00742(0x210,'\x46\x39\x59\x29')+'\x29';const _0x505a6a={};_0x505a6a[_0xb00742(0x277,'\x30\x45\x38\x72')]=_0x193b22[_0xb00742(0x205,'\x31\x25\x66\x21')],_0x505a6a[_0xb00742(0x289,'\x41\x25\x74\x58')]=_0x193b22[_0xb00742(0x343,'\x31\x25\x66\x21')];const _0x144f72={};_0x144f72['\x73\x69\x67\x6e\x61\x6c']=_0x193b22[_0xb00742(0x293,'\x63\x55\x5b\x57')],_0x144f72['\x74\x69\x74\x6c\x65']=_0x193b22['\x6f\x72\x4b\x59\x79'];const _0x40aa03={};_0x40aa03[_0xb00742(0x1f2,'\x58\x75\x62\x4c')]=_0x193b22['\x6d\x62\x76\x79\x59'],_0x40aa03[_0xb00742(0x28f,'\x63\x55\x5b\x57')]=_0x193b22['\x75\x53\x41\x54\x62'];const _0x3c3ac3={};_0x3c3ac3[_0xb00742(0x296,'\x50\x75\x4e\x53')]=_0x193b22['\x74\x62\x52\x78\x69'],_0x3c3ac3[_0xb00742(0x2e8,'\x37\x31\x35\x44')]=_0x193b22[_0xb00742(0x322,'\x61\x73\x77\x49')];const _0x1d2efc={};_0x1d2efc[_0xb00742(0x1e2,'\x46\x68\x56\x5a')]=_0xb00742(0x370,'\x61\x73\x77\x49')+'\x74\x79\x5f\x67\x61\x70',_0x1d2efc[_0xb00742(0x2ed,'\x23\x59\x66\x59')]=_0x193b22[_0xb00742(0x313,'\x46\x68\x56\x5a')];const _0x3ade1d={};_0x3ade1d[_0xb00742(0x1de,'\x74\x31\x45\x71')]=_0x193b22[_0xb00742(0x23e,'\x34\x75\x71\x45')],_0x3ade1d[_0xb00742(0x2a9,'\x75\x54\x4c\x5e')]=_0x193b22[_0xb00742(0x26a,'\x5e\x68\x4d\x42')];const _0x112786={};_0x112786[_0xb00742(0x2b2,'\x41\x25\x74\x58')]=_0x193b22[_0xb00742(0x2db,'\x34\x30\x25\x24')],_0x112786[_0xb00742(0x328,'\x65\x6d\x59\x70')]=_0x193b22[_0xb00742(0x271,'\x34\x75\x71\x45')];const _0x2f32db=[_0x1f8383,_0x2d72b6,_0xd0404,_0x505a6a,_0x144f72,_0x40aa03,_0x3c3ac3,_0x1d2efc,_0x3ade1d,_0x112786];for(const _0xb9a426 of _0x2f32db){if(_0x193b22[_0xb00742(0x217,'\x25\x57\x65\x35')]!==_0x193b22[_0xb00742(0x365,'\x34\x75\x71\x45')]){if(!_0x28d3a3[_0xb00742(0x275,'\x2a\x69\x4e\x56')](_0x217239=>_0x217239===_0xb9a426[_0xb00742(0x1e1,'\x23\x59\x66\x59')]||_0x217239[_0xb00742(0x226,'\x37\x31\x35\x44')+'\x74\x68'](_0xb9a426[_0xb00742(0x23d,'\x43\x7a\x43\x7a')]+'\x3a')))continue;const _0x2871='\x53\x69\x67\x6e\x61\x6c\x20\x70'+_0xb00742(0x2ad,'\x37\x76\x72\x62')+_0xb9a426[_0xb00742(0x216,'\x7a\x4d\x6e\x73')],_0x107510={};_0x107510[_0xb00742(0x20f,'\x58\x64\x69\x64')]=_0xb9a426[_0xb00742(0x282,'\x5e\x68\x4d\x42')],_0x107510[_0xb00742(0x25a,'\x78\x68\x67\x30')]=_0x35a508,_0x107510[_0xb00742(0x2dc,'\x49\x63\x2a\x23')]=_0x2871;const _0x2789ff=_0x1defcc(_0x107510);_0x57be17[_0xb00742(0x337,'\x46\x39\x59\x29')]({'\x74\x79\x70\x65':_0x193b22[_0xb00742(0x388,'\x37\x41\x6c\x40')],'\x69\x64':_0xb00742(0x22a,'\x48\x21\x25\x25')+_0x193b22[_0xb00742(0x222,'\x2a\x69\x4e\x56')](_0x22f620,_0xb9a426[_0xb00742(0x207,'\x61\x73\x77\x49')]),'\x74\x69\x74\x6c\x65':_0xb9a426[_0xb00742(0x1d3,'\x35\x54\x36\x68')],'\x73\x6f\x75\x72\x63\x65':'\x73\x69\x67\x6e\x61\x6c\x73','\x63\x72\x65\x61\x74\x65\x64\x5f\x61\x74':new Date()[_0xb00742(0x287,'\x65\x35\x23\x5b')+_0xb00742(0x373,'\x61\x73\x77\x49')](),'\x73\x69\x67\x6e\x61\x6c\x73':_0x28d3a3,'\x74\x61\x67\x73':_0x437201,'\x73\x68\x61\x70\x65':_0x2789ff});}else{const _0x9b40fa=QWLDLG['\x7a\x74\x6c\x4b\x6b'](_0x586901,QWLDLG[_0xb00742(0x339,'\x61\x73\x77\x49')](_0x5cf33c,''));if(!_0x2b3798||_0x9b40fa['\x6c\x65\x6e\x67\x74\x68']<=_0x4aec08)return _0x9b40fa;return QWLDLG[_0xb00742(0x27c,'\x28\x6d\x35\x43')](_0x9b40fa[_0xb00742(0x30b,'\x78\x44\x21\x25')](-0x169a*0x1+-0xa97*0x1+-0x125*-0x1d,_0x11ff4b[_0xb00742(0x24a,'\x38\x61\x34\x23')](-0x2*-0x8cb+-0x514+0x1*-0xc82,QWLDLG[_0xb00742(0x25e,'\x57\x28\x29\x5b')](_0x7aaf0f,-0x1*-0x517+-0x5*-0x79+0x760*-0x1))),QWLDLG[_0xb00742(0x38f,'\x2a\x76\x29\x48')]);}}var _0x164d66=Array[_0xb00742(0x31f,'\x37\x76\x72\x62')](_0x356f73)?_0x356f73:[],_0x367fc1={},_0x1850b4=[_0x193b22[_0xb00742(0x367,'\x2a\x69\x4e\x56')],'\x70\x72\x6f\x62\x6c\x65\x6d\x3a'+_0xb00742(0x2ab,'\x38\x61\x34\x23'),_0x193b22[_0xb00742(0x3a5,'\x41\x25\x74\x58')],_0xb00742(0x33e,'\x7a\x4d\x6e\x73')+_0xb00742(0x334,'\x73\x6f\x37\x58')+'\x6f\x6e',_0x193b22[_0xb00742(0x228,'\x58\x64\x69\x64')]];for(var _0x2a80f1=-0x1*0x1e2f+-0x127a+0x30a9;_0x193b22[_0xb00742(0x1f5,'\x6f\x46\x35\x25')](_0x2a80f1,_0x164d66[_0xb00742(0x1f9,'\x7a\x4d\x6e\x73')]);_0x2a80f1++){if(_0x193b22['\x78\x53\x5a\x62\x62'](_0x193b22[_0xb00742(0x2d2,'\x63\x55\x5b\x57')],_0xb00742(0x347,'\x30\x45\x38\x72'))){var _0x36d797=_0x164d66[_0x2a80f1];if(!_0x36d797||_0x36d797[_0xb00742(0x2fc,'\x38\x61\x34\x23')]&&_0x193b22[_0xb00742(0x34f,'\x61\x73\x77\x49')](_0x36d797[_0xb00742(0x31a,'\x5e\x6a\x58\x53')]['\x73\x74\x61\x74\x75\x73'],_0x193b22[_0xb00742(0x37e,'\x75\x54\x4c\x5e')]))continue;var _0x4ee0f7=String(_0x36d797[_0xb00742(0x200,'\x37\x41\x6c\x40')+'\x72\x65\x61\x73\x6f\x6e']||'')[_0xb00742(0x20c,'\x78\x44\x21\x25')](),_0x593002=_0x193b22[_0xb00742(0x35f,'\x74\x31\x45\x71')](_0x2198cc,(_0x36d797[_0xb00742(0x284,'\x41\x25\x74\x58')]||[])['\x63\x6f\x6e\x63\x61\x74'](_0x28d3a3),_0x4ee0f7)[_0xb00742(0x1ff,'\x6f\x46\x35\x25')](function(_0x279d9d){const _0x1840df=_0xb00742;return _0x193b22[_0x1840df(0x3a9,'\x58\x64\x69\x64')](_0x279d9d[_0x1840df(0x392,'\x78\x33\x37\x36')](_0x193b22[_0x1840df(0x312,'\x5a\x6d\x46\x55')]),0xbb0*0x3+-0xce2+0x162e*-0x1)||_0x193b22[_0x1840df(0x374,'\x78\x68\x67\x30')](_0x279d9d[_0x1840df(0x29a,'\x63\x55\x5b\x57')](_0x193b22['\x46\x69\x71\x51\x53']),0x266*0x1+-0x1ee+-0x78)||_0x193b22[_0x1840df(0x2d5,'\x5a\x6d\x46\x55')](_0x279d9d[_0x1840df(0x38d,'\x29\x28\x4d\x38')](_0x193b22[_0x1840df(0x1d7,'\x42\x4c\x6c\x54')]),-0x3a9+0x42*0x53+-0x13*0xef)||_0x279d9d[_0x1840df(0x2fa,'\x30\x45\x38\x72')](_0x193b22[_0x1840df(0x1e3,'\x50\x75\x4e\x53')])===0x25c4+-0x3*0xa3+-0x23db*0x1;});if(_0x193b22[_0xb00742(0x2f1,'\x5e\x68\x4d\x42')](_0x593002['\x6c\x65\x6e\x67\x74\x68'],0x3d*0x77+-0x9*0x1f7+0xaac*-0x1))continue;var _0x49f4f6=null;for(var _0x11d199=0x25f4+-0x437+-0x21bd;_0x193b22[_0xb00742(0x1fc,'\x63\x55\x5b\x57')](_0x11d199,_0x1850b4[_0xb00742(0x22e,'\x4d\x37\x70\x30')]);_0x11d199++){if(_0x193b22[_0xb00742(0x1df,'\x4d\x37\x70\x30')](_0x593002[_0xb00742(0x29a,'\x63\x55\x5b\x57')](_0x1850b4[_0x11d199]),-(-0x1e77+-0x16df+0x5*0xaab))){_0x49f4f6=_0x1850b4[_0x11d199];break;}}var _0x45c33e=_0x49f4f6?[_0x49f4f6]:_0x593002[_0xb00742(0x24e,'\x48\x21\x25\x25')](function(_0x199ef6){const _0x3b54a0=_0xb00742,_0xfb71a5={};_0xfb71a5[_0x3b54a0(0x369,'\x61\x73\x77\x49')]=_0x3b54a0(0x372,'\x78\x68\x67\x30')+_0x3b54a0(0x381,'\x37\x41\x6c\x40');const _0x2949c6=_0xfb71a5;return _0x193b22[_0x3b54a0(0x26f,'\x75\x54\x4c\x5e')](_0x193b22[_0x3b54a0(0x330,'\x48\x21\x25\x25')],'\x6d\x64\x44\x70\x57')?_0xadf3a5[_0x3b54a0(0x2af,'\x30\x45\x38\x72')]()[_0x3b54a0(0x35b,'\x5e\x68\x4d\x42')](VuEIQW[_0x3b54a0(0x261,'\x43\x7a\x43\x7a')])[_0x3b54a0(0x23f,'\x26\x6e\x21\x52')]()[_0x3b54a0(0x267,'\x43\x7a\x43\x7a')+_0x3b54a0(0x1dd,'\x26\x6e\x21\x52')](_0x3a6f46)[_0x3b54a0(0x317,'\x6b\x6b\x78\x63')](_0x3b54a0(0x2bf,'\x35\x54\x36\x68')+_0x3b54a0(0x264,'\x37\x31\x35\x44')):_0x193b22[_0x3b54a0(0x37c,'\x42\x4c\x6c\x54')](_0x199ef6[_0x3b54a0(0x1ed,'\x40\x7a\x73\x79')](_0x193b22[_0x3b54a0(0x21f,'\x65\x35\x23\x5b')]),0x16ed*0x1+0x1912+0x2fff*-0x1)||_0x199ef6[_0x3b54a0(0x3a8,'\x50\x75\x4e\x53')](_0x193b22[_0x3b54a0(0x1fe,'\x58\x32\x50\x6a')])===-0x8*0x1e6+-0xef5+0x1*0x1e25;})[_0xb00742(0x286,'\x42\x4c\x6c\x54')](-0x228b+-0x3*-0x652+0xf95,-0xcab+-0x301*-0x2+-0x2*-0x355),_0x1ae1e0=_0x45c33e[_0xb00742(0x309,'\x4d\x37\x70\x30')]('\x7c');const _0xf981e={};_0xf981e[_0xb00742(0x310,'\x6f\x46\x35\x25')]=0x0,_0xf981e['\x74\x61\x67\x73']=_0x593002,_0xf981e['\x72\x65\x61\x73\x6f\x6e\x73']=[],_0xf981e[_0xb00742(0x2e7,'\x49\x63\x2a\x23')]=_0x36d797[_0xb00742(0x29f,'\x78\x68\x67\x30')]||null;if(!_0x367fc1[_0x1ae1e0])_0x367fc1[_0x1ae1e0]=_0xf981e;_0x367fc1[_0x1ae1e0][_0xb00742(0x399,'\x35\x54\x36\x68')]+=-0x1fa8+-0x16dd+0x3686*0x1;if(_0x4ee0f7)_0x367fc1[_0x1ae1e0][_0xb00742(0x314,'\x50\x75\x4e\x53')][_0xb00742(0x229,'\x38\x61\x34\x23')](_0x4ee0f7);}else return _0x193b22[_0xb00742(0x2c0,'\x38\x61\x34\x23')](_0x4a8445['\x69\x6e\x64\x65\x78\x4f\x66'](_0xb00742(0x209,'\x78\x33\x37\x36')),-0x34d+0x216d+-0x1e20*0x1)||_0x193b22[_0xb00742(0x2d5,'\x5a\x6d\x46\x55')](_0x4f9297[_0xb00742(0x368,'\x58\x64\x69\x64')](_0x193b22['\x46\x69\x71\x51\x53']),0x1580+0x14b*-0xc+-0x17f*0x4);}Object[_0xb00742(0x265,'\x2a\x69\x4e\x56')](_0x367fc1)[_0xb00742(0x39c,'\x46\x68\x56\x5a')](function(_0x51b986){const _0x401d0a=_0xb00742,_0x860cf6=_0x193b22['\x78\x4b\x46\x68\x41'][_0x401d0a(0x2ff,'\x58\x64\x69\x64')]('\x7c');let _0x41e0f7=0x1723*0x1+0x1*0x2222+-0x3*0x1317;while(!![]){switch(_0x860cf6[_0x41e0f7++]){case'\x30':if(!_0x36fddd||_0x36fddd[_0x401d0a(0x206,'\x5a\x6d\x46\x55')]<-0x92e+0x1*0x15a9+0x1f*-0x67)return;continue;case'\x31':_0x57be17[_0x401d0a(0x32e,'\x78\x44\x21\x25')]({'\x74\x79\x70\x65':_0x193b22[_0x401d0a(0x341,'\x34\x30\x25\x24')],'\x69\x64':_0x193b22['\x6c\x49\x4b\x6e\x70'](_0x401d0a(0x34b,'\x37\x76\x72\x62'),_0x193b22['\x71\x56\x74\x4f\x47'](_0x22f620,_0x193b22[_0x401d0a(0x2e3,'\x46\x39\x59\x29')](_0x193b22['\x70\x4a\x55\x75\x6e'],_0x51b986))),'\x74\x69\x74\x6c\x65':_0x31ad5e,'\x73\x6f\x75\x72\x63\x65':_0x401d0a(0x273,'\x6b\x6b\x78\x63')+'\x61\x70\x73\x75\x6c\x65\x73','\x63\x72\x65\x61\x74\x65\x64\x5f\x61\x74':new Date()[_0x401d0a(0x36d,'\x5e\x6a\x58\x53')+_0x401d0a(0x397,'\x63\x55\x5b\x57')](),'\x73\x69\x67\x6e\x61\x6c\x73':_0x28d3a3,'\x74\x61\x67\x73':_0x36fddd['\x74\x61\x67\x73'],'\x73\x68\x61\x70\x65':_0x193b22[_0x401d0a(0x254,'\x78\x44\x21\x25')](_0x1defcc,{'\x74\x69\x74\x6c\x65':_0x31ad5e,'\x73\x69\x67\x6e\x61\x6c\x73':_0x28d3a3,'\x65\x76\x69\x64\x65\x6e\x63\x65':_0x51d365})});continue;case'\x32':var _0x51d365=_0x193b22[_0x401d0a(0x360,'\x46\x68\x56\x5a')](_0x193b22['\x6c\x49\x4b\x6e\x70'](_0x193b22[_0x401d0a(0x39b,'\x30\x45\x38\x72')](_0x193b22[_0x401d0a(0x2e0,'\x37\x31\x35\x44')],_0x36fddd[_0x401d0a(0x288,'\x2a\x69\x4e\x56')]),_0x193b22[_0x401d0a(0x2ce,'\x46\x68\x56\x5a')]),_0x36fddd[_0x401d0a(0x2c9,'\x39\x36\x38\x74')][0x545+0x1a26+0x17f*-0x15]?_0x193b22[_0x401d0a(0x297,'\x34\x30\x25\x24')](_0x193b22[_0x401d0a(0x291,'\x39\x36\x38\x74')],_0x193b22[_0x401d0a(0x22b,'\x23\x59\x66\x59')](_0x31ae6c,_0x36fddd[_0x401d0a(0x33f,'\x25\x57\x65\x35')][-0x4c7+-0x882+0xd49],0x1de3+-0x1*0x142f+-0x900)):'');continue;case'\x33':var _0x36fddd=_0x367fc1[_0x51b986];continue;case'\x34':if(_0x193b22[_0x401d0a(0x203,'\x65\x35\x23\x5b')](_0x36fddd[_0x401d0a(0x356,'\x46\x39\x59\x29')]['\x69\x6e\x64\x65\x78\x4f\x66'](_0x193b22[_0x401d0a(0x304,'\x31\x50\x6d\x56')]),-(-0x2021+0xbe6+0x143c)))_0x31ad5e=_0x193b22[_0x401d0a(0x2bc,'\x34\x75\x71\x45')];else{if(_0x36fddd[_0x401d0a(0x2da,'\x30\x45\x38\x72')][_0x401d0a(0x1ed,'\x40\x7a\x73\x79')](_0x193b22[_0x401d0a(0x234,'\x37\x41\x6c\x40')])!==-(0x1*-0x2248+-0x1*0x20e7+0x433*0x10))_0x31ad5e=_0x193b22[_0x401d0a(0x29b,'\x31\x25\x66\x21')];else{if(_0x36fddd[_0x401d0a(0x307,'\x63\x55\x5b\x57')][_0x401d0a(0x25c,'\x43\x7a\x43\x7a')](_0x193b22[_0x401d0a(0x2ca,'\x34\x30\x25\x24')])!==-(0x214+0x7*-0x4eb+0x205a))_0x31ad5e=_0x401d0a(0x26b,'\x46\x68\x56\x5a')+_0x401d0a(0x2d4,'\x57\x28\x29\x5b')+_0x401d0a(0x31e,'\x41\x25\x74\x58')+_0x401d0a(0x327,'\x5d\x5a\x59\x70')+_0x401d0a(0x2f0,'\x61\x73\x77\x49');else{if(_0x193b22['\x78\x53\x5a\x62\x62'](_0x36fddd['\x74\x61\x67\x73'][_0x401d0a(0x39a,'\x78\x68\x67\x30')](_0x401d0a(0x2ee,'\x5e\x6a\x58\x53')+_0x401d0a(0x300,'\x35\x54\x36\x68')+'\x6f\x6e'),-(-0x6ee+0x23fc+-0x1*0x1d0d)))_0x31ad5e=_0x193b22[_0x401d0a(0x28c,'\x49\x63\x2a\x23')];else{if(_0x36fddd[_0x401d0a(0x235,'\x58\x32\x50\x6a')]['\x69\x6e\x64\x65\x78\x4f\x66'](_0x193b22[_0x401d0a(0x2c3,'\x50\x75\x4e\x53')])!==-(0x208e+-0x1375+-0x4*0x346))_0x31ad5e=_0x193b22[_0x401d0a(0x31b,'\x5d\x5a\x59\x70')];}}}}continue;case'\x35':var _0x31ad5e=_0x193b22[_0x401d0a(0x389,'\x5d\x5a\x59\x70')];continue;}break;}});const _0x6aa581=new Set();return _0x57be17[_0xb00742(0x31c,'\x37\x41\x6c\x40')](_0x406a9f=>{const _0x3eaa8f=_0xb00742;if(!_0x406a9f||!_0x406a9f['\x69\x64'])return![];if(_0x6aa581[_0x3eaa8f(0x32f,'\x78\x68\x67\x30')](_0x406a9f['\x69\x64']))return![];return _0x6aa581[_0x3eaa8f(0x2d3,'\x26\x6e\x21\x52')](_0x406a9f['\x69\x64']),!![];});}function _0x5c7de2(_0x5b822e,_0x3f4f3c=0x2*-0x5bf+0x1714+0x1b*-0x3a){const _0x5d8d91=_0x436943,_0xab6bb0={'\x64\x47\x4e\x77\x72':function(_0x31260f,_0xe99eb,_0x1722a3){return _0x31260f(_0xe99eb,_0x1722a3);}},_0x38d07e=Array[_0x5d8d91(0x2cb,'\x78\x44\x21\x25')](_0x5b822e)?_0x5b822e:[],_0x282daf=[];for(const _0x25d31f of _0x38d07e){const _0x4303c6=_0x25d31f&&_0x25d31f[_0x5d8d91(0x2a0,'\x65\x6d\x59\x70')]?_0x25d31f[_0x5d8d91(0x2d0,'\x46\x39\x59\x29')]:{};_0x282daf[_0x5d8d91(0x21a,'\x49\x63\x2a\x23')]('\x2d\x20'+_0x25d31f['\x69\x64']+'\x3a\x20'+_0x25d31f[_0x5d8d91(0x20a,'\x5e\x6a\x58\x53')]),_0x282daf[_0x5d8d91(0x1d4,'\x50\x75\x4e\x53')](_0x5d8d91(0x316,'\x34\x30\x25\x24')+_0x5d8d91(0x2b9,'\x61\x73\x77\x49')+(_0x4303c6[_0x5d8d91(0x232,'\x28\x6d\x35\x43')]||'')),_0x282daf[_0x5d8d91(0x25b,'\x58\x64\x69\x64')](_0x5d8d91(0x3a1,'\x28\x6d\x35\x43')+'\x75\x74\x3a\x20'+(_0x4303c6[_0x5d8d91(0x1ef,'\x31\x50\x6d\x56')]||'')),_0x282daf[_0x5d8d91(0x1d8,'\x31\x25\x66\x21')](_0x5d8d91(0x35d,'\x2a\x76\x29\x48')+_0x5d8d91(0x326,'\x42\x4c\x6c\x54')+(_0x4303c6[_0x5d8d91(0x2f8,'\x41\x25\x74\x58')+'\x74\x73']||'')),_0x282daf[_0x5d8d91(0x351,'\x4d\x37\x70\x30')](_0x5d8d91(0x33d,'\x7a\x4d\x6e\x73')+_0x5d8d91(0x2c4,'\x28\x6d\x35\x43')+(_0x4303c6[_0x5d8d91(0x386,'\x5e\x6a\x58\x53')]||'')),_0x282daf[_0x5d8d91(0x257,'\x65\x35\x23\x5b')](_0x5d8d91(0x3a6,'\x5e\x68\x4d\x42')+_0x5d8d91(0x32b,'\x61\x73\x77\x49')+_0x5d8d91(0x262,'\x78\x44\x21\x25')+(_0x4303c6[_0x5d8d91(0x36b,'\x78\x68\x67\x30')+_0x5d8d91(0x384,'\x41\x25\x74\x58')]||''));if(_0x4303c6[_0x5d8d91(0x2e4,'\x34\x30\x25\x24')])_0x282daf[_0x5d8d91(0x25b,'\x58\x64\x69\x64')](_0x5d8d91(0x331,'\x5a\x6d\x46\x55')+_0x5d8d91(0x1d1,'\x34\x30\x25\x24')+_0x4303c6[_0x5d8d91(0x241,'\x65\x35\x23\x5b')]);}return _0xab6bb0[_0x5d8d91(0x340,'\x58\x32\x50\x6a')](_0x31ae6c,_0x282daf[_0x5d8d91(0x2f4,'\x41\x25\x74\x58')]('\x0a'),_0x3f4f3c);}const _0x41e7c9={};_0x41e7c9[_0x436943(0x214,'\x29\x28\x4d\x38')+_0x436943(0x2f2,'\x43\x7a\x43\x7a')+_0x436943(0x3a3,'\x58\x64\x69\x64')+_0x436943(0x230,'\x35\x54\x36\x68')]=_0x4bf682,_0x41e7c9[_0x436943(0x213,'\x78\x33\x37\x36')+_0x436943(0x299,'\x5a\x6d\x46\x55')+_0x436943(0x2aa,'\x5e\x68\x4d\x42')]=_0x5c7de2,_0x41e7c9[_0x436943(0x37b,'\x26\x6e\x21\x52')+_0x436943(0x1e7,'\x39\x36\x38\x74')]=_0x2198cc,module[_0x436943(0x2df,'\x4d\x37\x70\x30')]=_0x41e7c9;function _0x394b(){const _0x5089e2=['\x57\x37\x43\x35\x57\x50\x53\x66\x57\x52\x6d','\x42\x53\x6b\x4e\x57\x4f\x6a\x6b\x57\x4f\x30','\x6f\x38\x6b\x48\x45\x30\x4c\x32\x57\x36\x66\x53\x62\x61','\x57\x34\x43\x41\x57\x50\x30\x70\x71\x43\x6f\x4a\x57\x51\x39\x56','\x57\x52\x31\x31\x43\x38\x6f\x79','\x41\x43\x6b\x6d\x57\x52\x62\x4f\x6c\x61','\x72\x43\x6f\x39\x72\x58\x68\x64\x4a\x6d\x6f\x45\x6b\x61','\x67\x4c\x38\x2f','\x57\x52\x35\x30\x42\x6d\x6f\x78\x57\x36\x54\x65\x57\x51\x70\x63\x4f\x47','\x57\x51\x34\x6c\x57\x35\x33\x63\x51\x43\x6b\x5a\x66\x5a\x4a\x63\x48\x71','\x76\x68\x72\x69\x57\x52\x4c\x2f\x57\x4f\x78\x63\x4d\x57','\x57\x52\x62\x55\x73\x64\x4e\x63\x56\x38\x6f\x72','\x57\x50\x71\x6e\x57\x50\x34\x54\x57\x37\x33\x63\x4a\x76\x71','\x78\x43\x6f\x75\x57\x35\x52\x63\x56\x47\x37\x63\x53\x5a\x4a\x64\x4e\x47','\x57\x51\x6c\x64\x47\x38\x6b\x47\x57\x52\x61\x4b','\x77\x38\x6f\x68\x57\x4f\x50\x59\x6a\x47','\x72\x74\x65\x30\x57\x52\x72\x64\x57\x52\x4e\x63\x52\x38\x6b\x4b','\x76\x4a\x65\x35\x57\x34\x57\x4a\x65\x38\x6f\x42\x57\x52\x53','\x57\x37\x75\x4e\x76\x5a\x46\x63\x48\x61','\x57\x34\x4c\x56\x74\x6d\x6b\x62\x57\x36\x68\x63\x49\x38\x6b\x61\x64\x71','\x57\x34\x65\x4e\x67\x73\x58\x57','\x73\x53\x6f\x41\x57\x34\x78\x63\x53\x30\x5a\x63\x55\x74\x78\x64\x4d\x57','\x57\x36\x33\x64\x4e\x65\x6c\x63\x50\x6d\x6f\x54\x65\x77\x68\x63\x4c\x47','\x57\x35\x37\x64\x53\x30\x78\x64\x55\x47','\x65\x66\x53\x37','\x57\x51\x78\x64\x4e\x38\x6b\x77\x65\x47','\x73\x6d\x6b\x6b\x45\x6d\x6b\x79\x65\x6d\x6b\x42\x57\x52\x72\x66','\x76\x38\x6b\x4d\x57\x4f\x39\x42\x57\x35\x38','\x41\x5a\x79\x4d\x57\x34\x61\x57\x62\x38\x6f\x78\x57\x52\x6d','\x79\x43\x6b\x36\x57\x51\x70\x63\x53\x66\x39\x4f\x57\x35\x78\x64\x4b\x76\x6c\x63\x4e\x71','\x78\x38\x6f\x41\x6f\x53\x6b\x37\x57\x52\x48\x44\x6c\x53\x6b\x4a','\x74\x4e\x6a\x6a\x57\x52\x62\x52\x57\x50\x78\x63\x4c\x66\x57','\x45\x4a\x57\x2f\x57\x34\x43\x4c','\x57\x35\x61\x45\x57\x50\x71\x63\x45\x57','\x44\x53\x6b\x69\x57\x52\x4c\x5a\x68\x47','\x77\x75\x61\x46\x57\x50\x43\x65','\x75\x43\x6f\x35\x74\x57\x37\x64\x48\x53\x6f\x75\x79\x71','\x72\x38\x6f\x46\x57\x50\x78\x63\x54\x30\x64\x63\x54\x4a\x42\x64\x47\x61','\x74\x66\x30\x37\x57\x52\x53\x45\x66\x4e\x71\x72','\x57\x37\x4e\x64\x4e\x66\x64\x64\x55\x53\x6b\x55\x63\x47','\x57\x35\x69\x6e\x57\x50\x38\x68\x68\x47','\x57\x34\x50\x75\x57\x51\x5a\x63\x52\x58\x4f','\x72\x53\x6f\x55\x57\x37\x74\x64\x51\x43\x6b\x65\x57\x37\x65\x2f','\x57\x52\x72\x72\x57\x35\x52\x63\x4b\x4a\x79','\x57\x51\x34\x53\x57\x35\x42\x63\x51\x4e\x2f\x64\x55\x61','\x74\x43\x6b\x4e\x57\x4f\x39\x75\x57\x35\x53\x78\x57\x52\x74\x64\x4f\x61','\x57\x37\x44\x4f\x46\x38\x6f\x41\x57\x37\x62\x6d\x57\x51\x64\x63\x50\x71','\x57\x51\x46\x64\x50\x4c\x5a\x63\x52\x5a\x70\x64\x50\x43\x6f\x31','\x6f\x38\x6b\x49\x57\x37\x6c\x64\x50\x4e\x66\x58\x57\x37\x52\x64\x4a\x71','\x62\x33\x43\x44\x57\x50\x39\x2b\x57\x4f\x68\x63\x4a\x38\x6b\x48','\x57\x34\x6d\x69\x57\x50\x4f\x70\x57\x50\x43','\x71\x38\x6b\x63\x45\x53\x6b\x70\x65\x6d\x6f\x6a','\x57\x50\x58\x34\x78\x63\x5a\x63\x55\x38\x6f\x43\x6f\x6d\x6b\x37','\x65\x6d\x6f\x44\x6a\x6d\x6b\x34\x62\x43\x6f\x73\x57\x52\x62\x66\x57\x36\x61','\x6b\x67\x74\x64\x50\x49\x53\x63\x57\x36\x42\x63\x4a\x38\x6f\x75','\x57\x50\x6e\x39\x57\x36\x4a\x63\x56\x77\x57\x78\x66\x33\x4f','\x57\x37\x35\x69\x57\x4f\x42\x64\x55\x43\x6b\x37','\x63\x6d\x6f\x41\x57\x4f\x39\x4f\x69\x74\x71\x52\x57\x51\x75','\x57\x4f\x31\x58\x57\x37\x2f\x63\x53\x74\x34\x64\x68\x33\x30','\x57\x36\x34\x2b\x57\x4f\x57\x2f\x57\x52\x61\x67\x57\x4f\x74\x63\x53\x57','\x63\x4e\x2f\x64\x4f\x4a\x6d\x74\x57\x37\x56\x64\x47\x43\x6f\x75','\x78\x53\x6b\x4f\x57\x52\x66\x6a\x57\x52\x79\x64','\x76\x6d\x6b\x2f\x57\x50\x76\x71','\x66\x76\x53\x34','\x65\x30\x64\x63\x54\x38\x6b\x51\x57\x35\x71','\x61\x53\x6f\x41\x57\x35\x38\x6b\x68\x6d\x6f\x76\x57\x52\x4c\x52','\x57\x50\x6a\x68\x57\x4f\x44\x69\x73\x4b\x69\x55\x46\x47','\x44\x6d\x6b\x64\x70\x6d\x6f\x2b\x6f\x38\x6b\x57\x62\x4e\x6d','\x69\x38\x6f\x32\x57\x37\x68\x64\x50\x68\x44\x58\x57\x37\x4a\x64\x4a\x71','\x57\x50\x75\x42\x57\x4f\x38','\x71\x68\x4e\x63\x4a\x53\x6f\x38','\x57\x37\x31\x75\x57\x52\x6c\x63\x47\x57','\x44\x5a\x61\x56\x57\x35\x50\x58\x63\x53\x6f\x79\x57\x37\x38','\x57\x34\x4f\x52\x57\x50\x61\x36\x57\x50\x79','\x6a\x6d\x6f\x57\x57\x37\x4e\x64\x52\x47','\x57\x34\x74\x64\x53\x75\x46\x63\x51\x43\x6b\x79\x71\x73\x64\x64\x50\x47','\x57\x51\x75\x4b\x57\x34\x69','\x76\x32\x74\x63\x47\x43\x6f\x44\x41\x38\x6b\x72\x75\x43\x6f\x41','\x62\x5a\x42\x64\x47\x38\x6b\x46\x44\x38\x6b\x76\x74\x53\x6b\x62','\x76\x38\x6b\x6f\x44\x38\x6b\x69\x67\x53\x6f\x76\x57\x52\x75','\x57\x34\x6e\x70\x75\x43\x6b\x46\x57\x37\x71','\x6e\x72\x4c\x65\x57\x37\x79\x61','\x71\x6d\x6f\x53\x57\x51\x30\x38\x57\x50\x38','\x57\x35\x57\x66\x41\x57\x64\x63\x4f\x61','\x65\x33\x42\x63\x4e\x6d\x6b\x69\x57\x34\x47','\x57\x36\x33\x64\x4d\x65\x65','\x57\x34\x37\x64\x51\x76\x4a\x64\x49\x53\x6b\x51','\x44\x76\x44\x48\x57\x52\x31\x75','\x57\x4f\x47\x6d\x57\x4f\x53\x53\x57\x37\x37\x63\x48\x77\x35\x49','\x66\x38\x6f\x45\x57\x50\x57\x52\x6d\x75\x54\x33\x57\x50\x6c\x63\x47\x48\x66\x4d\x57\x37\x79','\x57\x52\x78\x64\x55\x53\x6b\x4b\x57\x51\x4b\x50\x43\x59\x68\x64\x51\x71','\x57\x51\x33\x64\x54\x68\x70\x63\x55\x72\x34','\x73\x62\x34\x35\x57\x36\x70\x63\x49\x61','\x66\x4d\x54\x37\x57\x37\x31\x32\x57\x4f\x5a\x63\x49\x43\x6b\x79','\x57\x37\x31\x5a\x57\x4f\x4a\x63\x4e\x77\x52\x64\x4f\x5a\x38\x4f\x57\x4f\x4b','\x57\x36\x38\x37\x57\x50\x30\x71\x57\x50\x61','\x57\x35\x34\x4f\x45\x53\x6b\x45\x57\x36\x70\x63\x49\x38\x6b\x76\x65\x47','\x57\x52\x2f\x64\x48\x43\x6b\x6d\x66\x61','\x73\x6d\x6b\x32\x57\x37\x7a\x75\x57\x51\x6d\x44\x73\x43\x6b\x64','\x57\x36\x48\x74\x57\x36\x68\x63\x47\x4b\x69\x78\x6b\x38\x6f\x33','\x76\x4d\x70\x63\x4b\x38\x6f\x59\x57\x37\x4c\x43\x57\x4f\x4e\x63\x49\x61','\x63\x75\x47\x51\x79\x6d\x6b\x30\x76\x30\x4e\x64\x50\x71','\x57\x37\x4c\x61\x57\x51\x42\x63\x4d\x61','\x57\x36\x48\x6f\x73\x6d\x6b\x38\x57\x36\x6d','\x78\x61\x6d\x59\x57\x51\x76\x43','\x41\x68\x53\x42\x57\x52\x6a\x74\x71\x38\x6f\x4b\x64\x47','\x57\x52\x4c\x47\x57\x51\x39\x43\x79\x47','\x78\x53\x6b\x4b\x57\x52\x44\x76\x57\x52\x71\x68','\x64\x49\x4f\x7a\x57\x36\x50\x4b\x57\x50\x6c\x63\x49\x65\x52\x64\x4e\x32\x75','\x57\x36\x31\x54\x74\x31\x76\x37\x57\x51\x50\x66\x57\x35\x30','\x78\x4e\x76\x63\x57\x51\x39\x5a\x57\x52\x4a\x63\x49\x66\x65','\x57\x51\x50\x5a\x57\x4f\x72\x4f\x41\x61','\x42\x68\x38\x45\x57\x50\x57\x73','\x6e\x43\x6f\x77\x70\x43\x6b\x43\x57\x4f\x34\x6f\x6e\x4d\x4f','\x57\x51\x54\x69\x72\x4a\x37\x63\x50\x47','\x65\x4d\x74\x64\x49\x43\x6b\x6c\x44\x6d\x6b\x43\x76\x53\x6f\x70','\x43\x66\x33\x63\x4f\x43\x6f\x52\x57\x36\x34','\x6f\x6d\x6f\x44\x6e\x43\x6b\x6a\x57\x51\x4f','\x57\x52\x52\x63\x54\x74\x42\x64\x56\x73\x5a\x64\x4f\x43\x6f\x48\x57\x34\x38','\x72\x67\x68\x63\x55\x6d\x6f\x39\x57\x35\x30','\x71\x43\x6f\x7a\x57\x4f\x6a\x2b\x6b\x48\x69\x4a','\x57\x37\x34\x79\x57\x50\x65\x77\x57\x52\x4b','\x57\x50\x4f\x6d\x57\x4f\x38','\x67\x31\x53\x49\x79\x53\x6b\x59\x72\x4c\x37\x64\x4b\x57','\x61\x59\x33\x64\x4d\x6d\x6b\x72\x46\x47','\x78\x43\x6f\x30\x57\x34\x4e\x64\x4d\x43\x6b\x4b\x57\x34\x38\x55\x62\x71','\x57\x52\x38\x75\x57\x37\x70\x64\x4b\x48\x44\x78\x6b\x53\x6f\x6b\x6f\x38\x6f\x65\x57\x51\x37\x63\x56\x71','\x57\x52\x30\x4f\x65\x62\x6e\x39\x57\x52\x7a\x45\x57\x35\x30','\x57\x37\x47\x54\x57\x50\x4b\x62\x57\x51\x69\x61\x57\x4f\x68\x63\x54\x61','\x62\x43\x6b\x65\x7a\x6d\x6b\x46\x65\x6d\x6f\x6a\x57\x36\x4f\x61','\x76\x72\x6a\x4a\x69\x6d\x6f\x53\x68\x72\x64\x63\x50\x71','\x57\x37\x69\x49\x57\x4f\x34','\x6a\x76\x30\x68\x45\x6d\x6b\x64','\x57\x37\x4e\x64\x4b\x66\x42\x64\x50\x53\x6b\x53\x64\x4e\x4b','\x57\x52\x53\x38\x57\x4f\x47\x75\x57\x51\x6d\x62\x57\x4f\x4a\x63\x52\x47','\x57\x34\x50\x61\x57\x35\x4c\x39\x57\x35\x74\x63\x4d\x67\x48\x4b\x6b\x6d\x6f\x72','\x78\x58\x61\x66\x57\x37\x65\x61','\x57\x52\x5a\x64\x56\x67\x37\x63\x54\x4e\x53','\x74\x77\x39\x46\x57\x52\x71','\x71\x53\x6b\x70\x6c\x43\x6f\x39\x70\x6d\x6b\x34\x70\x67\x61','\x6b\x68\x52\x64\x48\x47\x30\x71','\x76\x59\x68\x64\x4c\x6d\x6b\x6a\x46\x53\x6b\x63\x74\x43\x6f\x41','\x72\x72\x75\x6b\x57\x37\x52\x63\x52\x61','\x71\x64\x64\x64\x49\x6d\x6f\x6d\x57\x37\x39\x43\x57\x34\x33\x63\x49\x57','\x57\x50\x43\x51\x57\x34\x52\x63\x52\x4e\x78\x64\x55\x64\x30\x34','\x57\x36\x6e\x53\x57\x50\x68\x64\x55\x47','\x57\x4f\x53\x44\x57\x50\x47\x4f\x57\x37\x33\x63\x4b\x4c\x58\x57','\x45\x38\x6f\x45\x57\x34\x42\x63\x56\x75\x6c\x63\x50\x4a\x5a\x63\x4b\x47','\x57\x51\x44\x31\x43\x38\x6f\x79\x57\x36\x31\x45','\x57\x34\x74\x63\x53\x4b\x37\x64\x50\x53\x6b\x76\x78\x49\x46\x63\x53\x47','\x77\x43\x6f\x36\x57\x37\x6c\x64\x51\x38\x6b\x67\x57\x36\x38','\x57\x34\x4b\x65\x57\x35\x53','\x57\x50\x65\x48\x57\x36\x4a\x63\x53\x32\x30','\x57\x50\x54\x79\x57\x37\x46\x63\x54\x47\x79','\x57\x37\x4f\x35\x57\x4f\x30\x6a\x57\x52\x71\x69\x57\x4f\x2f\x63\x53\x71','\x57\x52\x69\x69\x57\x50\x46\x63\x4b\x47\x33\x63\x56\x6d\x6b\x50\x46\x47','\x66\x6d\x6f\x63\x42\x6d\x6b\x4c\x65\x6d\x6b\x42\x63\x68\x68\x64\x53\x68\x38','\x57\x51\x5a\x64\x50\x53\x6b\x56\x57\x52\x47\x2b\x78\x59\x47','\x6e\x38\x6b\x4e\x57\x50\x43\x57\x57\x50\x53\x31','\x57\x4f\x38\x67\x6a\x59\x58\x67','\x57\x34\x33\x64\x54\x57\x6c\x64\x55\x53\x6b\x76\x71\x4a\x33\x64\x54\x47','\x75\x43\x6f\x73\x57\x35\x68\x63\x50\x68\x43','\x57\x50\x70\x63\x55\x53\x6b\x6a\x43\x32\x2f\x64\x51\x43\x6f\x6b','\x57\x35\x4b\x33\x6a\x77\x50\x79\x65\x53\x6b\x53\x57\x4f\x34','\x43\x33\x30\x69\x57\x51\x4b\x53\x74\x38\x6b\x54\x65\x57','\x6a\x6d\x6f\x54\x57\x34\x70\x64\x54\x32\x54\x35\x57\x36\x6c\x64\x47\x57','\x78\x43\x6f\x6a\x57\x35\x5a\x63\x56\x32\x56\x63\x56\x4a\x30','\x57\x34\x70\x64\x56\x65\x75','\x57\x50\x34\x78\x57\x35\x74\x63\x50\x6d\x6b\x6f','\x76\x73\x4f\x47\x57\x52\x31\x7a','\x66\x66\x71\x56\x41\x38\x6b\x2f\x45\x31\x30','\x75\x76\x6e\x4e\x57\x52\x6a\x33','\x45\x78\x30\x44\x57\x50\x38\x73\x71\x43\x6b\x53','\x61\x43\x6b\x74\x57\x50\x33\x64\x56\x61\x78\x64\x55\x78\x6c\x63\x4d\x57','\x57\x4f\x38\x78\x57\x50\x47','\x57\x35\x34\x30\x57\x50\x4b\x6d\x57\x51\x38\x42\x57\x4f\x4a\x64\x56\x71','\x7a\x62\x47\x79','\x67\x6d\x6f\x41\x7a\x38\x6f\x2b\x57\x51\x76\x6f\x6e\x43\x6b\x48','\x71\x6d\x6b\x44\x46\x38\x6b\x46\x65\x6d\x6f\x76\x57\x51\x76\x66','\x75\x43\x6f\x30\x57\x4f\x44\x31\x6e\x4a\x71\x48\x57\x51\x6d','\x57\x35\x4b\x58\x79\x73\x35\x45\x64\x53\x6b\x4f\x57\x4f\x6d','\x57\x4f\x66\x69\x41\x38\x6f\x5a\x57\x35\x34','\x64\x43\x6f\x48\x57\x37\x53\x68\x57\x52\x65\x6f\x71\x43\x6b\x42','\x57\x37\x79\x71\x74\x71\x56\x63\x4f\x6d\x6b\x35\x62\x6d\x6b\x78','\x73\x53\x6f\x59\x73\x48\x4a\x64\x4b\x43\x6f\x31\x44\x61','\x45\x6d\x6f\x34\x57\x51\x4c\x6f\x63\x61','\x63\x72\x6e\x31\x57\x37\x35\x6e\x77\x61','\x6b\x59\x44\x77\x57\x36\x35\x68\x45\x6d\x6b\x30\x62\x4b\x52\x64\x4d\x6d\x6f\x30','\x71\x49\x57\x48\x57\x52\x39\x69','\x75\x38\x6f\x50\x78\x72\x75','\x57\x34\x71\x56\x79\x74\x4c\x76\x65\x38\x6b\x39\x57\x50\x61','\x57\x4f\x44\x6d\x57\x50\x50\x69\x72\x47','\x6f\x67\x74\x64\x51\x4a\x75\x6d','\x57\x37\x71\x65\x75\x62\x61','\x57\x35\x43\x58\x6a\x68\x61\x42','\x57\x52\x4c\x2b\x6f\x53\x6f\x7a\x57\x36\x54\x6f\x57\x51\x52\x63\x51\x71','\x57\x34\x75\x2b\x6a\x63\x7a\x78\x77\x53\x6b\x53\x57\x50\x6d','\x57\x51\x39\x4c\x57\x34\x52\x63\x52\x68\x78\x64\x56\x49\x79\x55','\x75\x38\x6b\x79\x6c\x57','\x57\x4f\x62\x6d\x57\x4f\x4c\x6b\x71\x4c\x4f','\x57\x52\x46\x64\x4f\x38\x6b\x4c\x68\x4a\x79','\x73\x57\x53\x37\x57\x35\x38\x77','\x57\x36\x39\x6f\x57\x50\x5a\x63\x4d\x71\x33\x63\x4f\x47','\x42\x68\x53\x69\x57\x52\x71\x73\x74\x47','\x73\x43\x6f\x6f\x46\x48\x37\x64\x51\x57','\x57\x4f\x39\x4d\x57\x37\x70\x63\x50\x49\x61\x75\x67\x59\x4b','\x72\x73\x57\x59\x57\x52\x31\x6d\x57\x52\x74\x63\x51\x6d\x6f\x48','\x57\x51\x52\x64\x47\x53\x6f\x46\x66\x74\x52\x63\x4a\x43\x6f\x50\x76\x47','\x57\x51\x72\x4c\x73\x63\x46\x63\x52\x57','\x41\x53\x6b\x6a\x42\x38\x6f\x31\x57\x4f\x47\x4b\x6d\x78\x30\x52\x57\x36\x47','\x57\x50\x2f\x63\x54\x38\x6b\x79\x7a\x67\x78\x64\x4a\x38\x6f\x63\x68\x61','\x57\x36\x64\x64\x4c\x32\x70\x64\x53\x43\x6b\x37','\x57\x35\x70\x63\x4a\x4a\x6e\x4f\x57\x50\x69\x6c\x6a\x43\x6b\x70','\x57\x37\x39\x75\x57\x51\x70\x63\x4a\x73\x6d','\x71\x6d\x6f\x76\x57\x35\x68\x63\x54\x31\x42\x63\x4e\x5a\x38','\x78\x5a\x64\x63\x4f\x43\x6b\x50\x57\x35\x43\x73\x57\x34\x4a\x63\x4c\x57','\x57\x35\x4b\x4a\x6e\x74\x50\x6f\x64\x47','\x41\x4d\x65\x6b\x57\x51\x47\x53\x72\x6d\x6b\x48\x61\x71','\x65\x38\x6f\x59\x57\x35\x69\x6b\x57\x4f\x54\x44\x57\x35\x4a\x64\x56\x6d\x6f\x48\x44\x6d\x6f\x71\x64\x71','\x57\x50\x47\x75\x57\x35\x56\x63\x51\x38\x6b\x4e\x67\x47','\x77\x43\x6f\x50\x57\x36\x2f\x64\x56\x53\x6b\x65\x57\x37\x38\x31\x67\x57','\x57\x52\x35\x6d\x57\x50\x31\x78\x73\x4c\x47\x57\x46\x47','\x71\x62\x61\x6e\x57\x36\x71\x39','\x44\x43\x6b\x7a\x57\x34\x54\x4b\x42\x62\x76\x57\x57\x36\x61','\x41\x6d\x6b\x65\x57\x36\x39\x34\x46\x47','\x64\x43\x6b\x5a\x57\x52\x6e\x65\x57\x52\x69\x62\x78\x6d\x6f\x78','\x67\x59\x68\x64\x47\x53\x6b\x41\x42\x38\x6b\x79','\x57\x50\x66\x55\x77\x49\x74\x63\x53\x6d\x6f\x70\x6c\x53\x6f\x56','\x57\x34\x6a\x50\x42\x6d\x6b\x68\x57\x36\x4a\x64\x4e\x38\x6f\x62','\x57\x37\x70\x64\x4b\x77\x78\x64\x48\x6d\x6b\x77','\x75\x43\x6b\x76\x6a\x6d\x6f\x2b\x57\x52\x50\x41\x6e\x43\x6b\x59','\x57\x36\x66\x48\x42\x53\x6b\x35\x57\x35\x75','\x46\x5a\x4f\x4d\x57\x35\x30\x30\x66\x57','\x57\x51\x34\x4b\x57\x35\x70\x63\x53\x4d\x2f\x64\x55\x63\x57\x73','\x78\x43\x6b\x4b\x57\x52\x48\x64\x57\x37\x4f\x61\x72\x53\x6b\x42','\x57\x52\x43\x7a\x57\x50\x34\x52\x57\x36\x68\x63\x4c\x62\x66\x4a','\x57\x34\x71\x73\x57\x50\x65\x48\x7a\x57','\x57\x52\x38\x77\x57\x34\x74\x63\x50\x38\x6f\x52\x57\x35\x43\x68\x6f\x78\x2f\x64\x48\x38\x6f\x64\x64\x59\x79','\x57\x36\x4f\x59\x45\x48\x2f\x63\x47\x61','\x71\x43\x6b\x76\x57\x4f\x44\x65\x64\x71','\x57\x36\x47\x4c\x57\x4f\x34\x6f\x57\x51\x65\x66','\x43\x64\x43\x55\x57\x34\x30\x36','\x57\x50\x56\x63\x50\x53\x6b\x69\x44\x59\x30','\x78\x43\x6f\x59\x57\x37\x74\x64\x50\x53\x6b\x6f','\x75\x68\x61\x43\x57\x52\x38\x62\x76\x6d\x6b\x48\x62\x61','\x75\x6d\x6b\x34\x57\x4f\x39\x76','\x57\x36\x65\x41\x57\x50\x4b\x64\x73\x53\x6f\x4b\x57\x51\x39\x34','\x73\x68\x31\x6c\x57\x52\x4c\x30\x57\x52\x37\x63\x4c\x66\x30','\x78\x6d\x6f\x45\x57\x50\x6a\x33\x6e\x57','\x57\x37\x4c\x69\x57\x51\x70\x63\x47\x4b\x6d\x6f\x6c\x43\x6f\x48','\x57\x4f\x42\x64\x54\x67\x2f\x63\x55\x73\x74\x64\x51\x53\x6b\x53\x57\x35\x6d','\x57\x37\x52\x64\x4d\x43\x6b\x30\x62\x72\x37\x63\x48\x6d\x6f\x37','\x57\x4f\x4a\x63\x53\x43\x6b\x64\x43\x4e\x6c\x64\x4c\x6d\x6f\x56\x67\x47','\x57\x51\x64\x64\x53\x6d\x6b\x2f\x57\x51\x38\x4e\x43\x5a\x52\x64\x48\x47','\x71\x38\x6b\x69\x57\x50\x44\x6c\x71\x38\x6f\x6d\x57\x51\x6a\x53','\x62\x63\x33\x64\x49\x38\x6b\x74\x45\x53\x6b\x43','\x7a\x38\x6b\x53\x46\x38\x6b\x35\x6a\x47','\x57\x52\x62\x4f\x46\x38\x6f\x66\x57\x36\x50\x65\x57\x51\x33\x63\x4f\x47','\x57\x51\x71\x2b\x69\x57\x44\x47\x57\x51\x76\x6b','\x41\x43\x6f\x39\x57\x4f\x57\x35','\x57\x36\x69\x39\x57\x52\x61\x2b\x76\x71','\x6f\x33\x4b\x65\x76\x53\x6b\x77','\x57\x36\x54\x72\x57\x4f\x6c\x64\x55\x43\x6b\x4e','\x57\x37\x6a\x6d\x57\x4f\x6c\x63\x47\x47\x65','\x57\x35\x65\x77\x57\x50\x43\x77\x78\x47','\x57\x34\x52\x63\x4a\x63\x72\x35\x57\x50\x61','\x57\x52\x57\x53\x57\x34\x37\x63\x53\x4e\x38','\x75\x75\x42\x63\x51\x6d\x6f\x49\x57\x37\x69','\x57\x35\x4c\x76\x57\x51\x70\x63\x52\x73\x6d','\x57\x34\x66\x78\x57\x52\x64\x64\x4c\x38\x6b\x6c','\x57\x50\x64\x64\x4b\x4d\x71\x34\x57\x34\x4b\x4d\x6a\x53\x6b\x32\x44\x4d\x7a\x76','\x7a\x43\x6b\x6a\x45\x43\x6f\x44\x57\x50\x39\x51\x57\x36\x30\x46','\x73\x53\x6b\x4b\x57\x51\x69','\x71\x38\x6f\x2f\x57\x50\x6a\x48\x61\x61','\x57\x4f\x53\x6e\x57\x50\x4b\x4d','\x6a\x67\x78\x63\x4d\x38\x6b\x66\x57\x36\x38','\x57\x35\x6e\x48\x57\x51\x5a\x63\x4f\x57\x4b','\x57\x52\x76\x55\x77\x5a\x4a\x63\x54\x43\x6f\x42\x6a\x38\x6b\x51','\x44\x5a\x4f\x2b\x57\x35\x61','\x57\x51\x70\x64\x4c\x43\x6b\x72\x67\x59\x64\x63\x4c\x47','\x57\x4f\x52\x64\x55\x75\x5a\x64\x50\x53\x6b\x6e\x71\x4a\x68\x64\x54\x47','\x71\x49\x61\x4d','\x77\x53\x6f\x59\x57\x36\x46\x64\x50\x6d\x6b\x6b\x57\x37\x61','\x75\x43\x6b\x75\x6f\x53\x6b\x52\x57\x52\x34','\x68\x6d\x6f\x57\x57\x36\x71\x46\x57\x36\x7a\x45\x68\x53\x6b\x38\x74\x43\x6b\x79\x57\x50\x58\x4d\x57\x36\x57','\x57\x51\x57\x48\x57\x34\x64\x63\x51\x66\x38','\x57\x35\x6e\x50\x45\x6d\x6b\x42','\x42\x6d\x6b\x46\x57\x50\x66\x61\x57\x34\x6d','\x62\x43\x6b\x65\x57\x35\x48\x33\x45\x31\x7a\x4d\x57\x52\x69','\x61\x53\x6b\x43\x57\x50\x31\x79\x77\x71','\x63\x76\x6d\x4b\x79\x6d\x6f\x4e\x76\x76\x78\x64\x51\x61','\x74\x6d\x6b\x31\x57\x52\x62\x69\x57\x51\x75\x63\x62\x43\x6b\x65','\x57\x52\x47\x47\x57\x35\x56\x63\x51\x4e\x2f\x64\x52\x4d\x4b\x2b','\x44\x4e\x30\x62','\x6b\x43\x6b\x34\x46\x75\x76\x2b\x57\x36\x65','\x6c\x43\x6f\x64\x6c\x43\x6b\x49\x57\x51\x4b','\x75\x38\x6b\x79\x64\x53\x6f\x4f\x69\x6d\x6b\x31\x61\x77\x34','\x66\x33\x42\x63\x4d\x53\x6b\x76\x57\x35\x39\x52\x7a\x68\x43','\x57\x35\x79\x6a\x57\x50\x6d\x63\x71\x43\x6f\x2b\x57\x36\x58\x55','\x57\x34\x50\x6a\x57\x35\x48\x32\x57\x51\x70\x64\x4b\x71\x44\x41\x6a\x38\x6f\x2f\x76\x4b\x52\x63\x4d\x57','\x45\x53\x6f\x35\x44\x65\x72\x58\x57\x36\x47\x53','\x70\x75\x42\x64\x52\x63\x47\x75','\x69\x38\x6f\x33\x57\x37\x70\x64\x4f\x68\x58\x4a\x57\x37\x38','\x77\x43\x6f\x6f\x57\x34\x42\x63\x55\x47','\x44\x6d\x6b\x45\x6f\x53\x6f\x59\x6d\x38\x6b\x57\x68\x64\x6d','\x73\x6d\x6f\x48\x57\x51\x6a\x67\x57\x51\x71\x65\x63\x6d\x6b\x77','\x66\x49\x6d\x57\x57\x52\x6a\x7a\x57\x51\x33\x63\x51\x43\x6b\x4f','\x57\x50\x79\x7a\x57\x50\x69','\x74\x53\x6b\x46\x6a\x38\x6b\x37\x57\x51\x72\x70\x79\x43\x6b\x49','\x75\x6d\x6b\x69\x57\x34\x31\x33\x45\x47\x48\x42\x57\x52\x61','\x57\x50\x30\x7a\x57\x4f\x6d\x49\x57\x37\x46\x63\x48\x62\x66\x30','\x69\x77\x33\x63\x4d\x43\x6b\x76\x57\x35\x76\x36','\x57\x34\x4b\x50\x57\x50\x4b\x62\x57\x51\x4b\x42\x57\x34\x33\x63\x52\x57','\x77\x53\x6f\x66\x57\x52\x34\x48\x57\x50\x61','\x57\x34\x57\x48\x57\x51\x33\x64\x56\x71\x34\x32\x65\x77\x54\x35\x57\x4f\x57','\x41\x4a\x79\x35\x57\x35\x4f\x34\x63\x53\x6f\x71\x57\x4f\x61','\x57\x52\x52\x63\x54\x77\x4a\x63\x52\x49\x74\x64\x54\x53\x6b\x48\x57\x35\x69','\x78\x53\x6b\x2b\x57\x4f\x50\x5a\x57\x35\x65','\x46\x43\x6b\x6a\x57\x51\x66\x31\x57\x35\x79','\x57\x34\x4c\x54\x41\x6d\x6f\x69\x57\x37\x78\x63\x4b\x43\x6b\x74\x61\x61','\x57\x34\x6d\x6b\x57\x4f\x4b\x6f','\x57\x37\x48\x63\x57\x52\x78\x63\x47\x4b\x61\x6a\x6b\x47','\x57\x52\x48\x33\x6f\x53\x6f\x65\x57\x37\x58\x6f\x57\x52\x46\x63\x56\x47','\x64\x4c\x6d\x53\x79\x6d\x6b\x4d\x77\x65\x47','\x77\x6d\x6f\x63\x57\x50\x76\x5a','\x6d\x38\x6b\x2f\x46\x4b\x35\x4e\x57\x34\x6a\x4a','\x57\x52\x56\x64\x47\x53\x6b\x77\x65\x71','\x41\x53\x6b\x36\x57\x35\x7a\x62\x45\x47','\x41\x33\x30\x38\x57\x51\x34\x62\x73\x38\x6b\x51\x62\x57','\x57\x37\x50\x6b\x57\x50\x6c\x63\x50\x48\x53','\x70\x38\x6b\x66\x79\x4c\x31\x4d','\x75\x6d\x6b\x35\x57\x35\x57\x79','\x57\x35\x52\x63\x50\x53\x6b\x79\x45\x67\x70\x64\x4a\x38\x6f\x62\x68\x47','\x70\x43\x6f\x75\x6d\x38\x6b\x6c','\x77\x68\x78\x63\x4d\x43\x6f\x4f','\x57\x4f\x44\x39\x57\x37\x4a\x63\x53\x48\x75','\x6f\x43\x6b\x2b\x44\x66\x48\x52\x57\x37\x39\x57\x65\x57','\x76\x38\x6b\x56\x57\x50\x69\x79\x57\x35\x57\x6b\x57\x36\x42\x63\x52\x61','\x57\x51\x57\x72\x57\x36\x4e\x63\x54\x76\x61','\x71\x53\x6b\x76\x57\x4f\x39\x4d\x57\x50\x61','\x74\x78\x43\x46\x57\x52\x53\x41\x75\x6d\x6f\x4b\x65\x47','\x6d\x67\x6c\x64\x52\x49\x53','\x74\x33\x6e\x63\x57\x52\x53\x4e\x57\x51\x5a\x63\x4e\x66\x53','\x45\x43\x6b\x6d\x6a\x43\x6b\x33\x57\x51\x34\x42\x6d\x43\x6b\x39','\x7a\x47\x75\x59\x57\x34\x4e\x63\x48\x47','\x45\x43\x6f\x41\x6f\x43\x6b\x2f\x57\x51\x58\x45\x42\x43\x6f\x58','\x6d\x43\x6f\x72\x70\x43\x6b\x58\x57\x50\x4f','\x57\x34\x33\x63\x47\x5a\x4c\x4f\x57\x50\x79','\x57\x36\x5a\x64\x4d\x66\x4a\x64\x50\x6d\x6b\x4f\x62\x4c\x78\x63\x4e\x61','\x75\x6d\x6b\x7a\x46\x38\x6b\x76\x65\x53\x6b\x42\x57\x52\x76\x75','\x71\x68\x2f\x63\x4a\x43\x6f\x2b','\x57\x4f\x54\x39\x57\x37\x70\x63\x51\x4d\x62\x72\x66\x32\x6d','\x74\x4e\x6e\x6c\x57\x52\x6a\x4d\x57\x51\x79','\x75\x71\x79\x39\x57\x35\x65\x4f','\x42\x64\x4b\x49\x57\x34\x47\x7a','\x57\x4f\x48\x4e\x57\x52\x5a\x63\x50\x59\x6d\x43\x62\x4e\x69','\x72\x53\x6f\x37\x76\x57','\x76\x6d\x6b\x5a\x61\x43\x6b\x57\x57\x52\x4f','\x6d\x32\x56\x64\x52\x49\x79\x78\x57\x36\x68\x64\x4e\x6d\x6b\x42','\x75\x38\x6f\x55\x71\x72\x2f\x64\x48\x43\x6f\x46\x46\x57\x71','\x57\x35\x52\x63\x55\x38\x6b\x6f\x44\x77\x6c\x64\x4c\x6d\x6f\x45\x68\x47','\x57\x37\x5a\x63\x50\x68\x70\x63\x4b\x71\x4a\x64\x52\x38\x6f\x67\x57\x36\x30','\x41\x43\x6f\x54\x57\x50\x57\x34\x57\x4f\x34\x30\x57\x37\x57\x54','\x77\x43\x6b\x4f\x57\x51\x6a\x6c\x57\x52\x69','\x57\x35\x43\x4c\x6d\x49\x39\x70\x63\x71','\x57\x51\x6e\x4f\x43\x38\x6f\x72\x57\x37\x35\x69\x57\x52\x61','\x76\x53\x6f\x41\x6f\x6d\x6b\x37\x57\x51\x31\x6a\x6a\x6d\x6b\x49','\x6b\x77\x68\x64\x52\x49\x79\x74','\x57\x34\x43\x71\x57\x52\x6d\x31\x41\x38\x6f\x64\x57\x37\x54\x35','\x75\x68\x2f\x63\x4c\x43\x6f\x31\x57\x36\x69','\x57\x51\x6e\x5a\x42\x53\x6f\x41\x57\x37\x57','\x70\x66\x34\x50\x57\x37\x78\x63\x4c\x62\x7a\x59\x62\x61','\x57\x34\x70\x64\x54\x4b\x70\x64\x56\x43\x6b\x74\x71\x74\x52\x63\x56\x47','\x42\x38\x6f\x4e\x57\x4f\x53\x48\x57\x51\x65','\x68\x57\x31\x36\x57\x37\x69\x64','\x57\x4f\x4f\x33\x57\x35\x2f\x63\x56\x33\x68\x63\x51\x4a\x53\x4f','\x57\x35\x37\x64\x55\x31\x42\x64\x50\x43\x6b\x46','\x57\x34\x65\x41\x57\x50\x4b\x74\x76\x53\x6f\x49\x57\x36\x7a\x4c','\x57\x52\x72\x56\x7a\x71\x37\x63\x56\x47','\x75\x43\x6b\x75\x6c\x71','\x57\x37\x4e\x64\x4d\x4d\x56\x64\x56\x38\x6b\x4f','\x46\x6d\x6b\x59\x61\x38\x6b\x54\x57\x4f\x6d','\x57\x36\x58\x63\x57\x4f\x4e\x63\x4b\x74\x70\x63\x52\x6d\x6b\x4f\x79\x57','\x75\x6d\x6f\x31\x73\x72\x70\x64\x49\x6d\x6f\x77','\x68\x58\x62\x4e\x57\x35\x30\x77','\x76\x6d\x6b\x41\x70\x6d\x6f\x57\x70\x53\x6f\x38\x68\x77\x57','\x74\x6d\x6b\x45\x57\x50\x54\x6f\x67\x6d\x6f\x78\x57\x52\x76\x38','\x57\x34\x70\x64\x56\x65\x42\x64\x52\x6d\x6b\x63\x79\x74\x69','\x57\x34\x61\x6a\x72\x48\x33\x63\x54\x47','\x74\x4e\x7a\x66\x57\x52\x39\x49','\x6b\x77\x4a\x64\x53\x57','\x57\x34\x33\x63\x50\x63\x31\x6a\x57\x50\x4b','\x67\x4c\x38\x4c\x41\x57','\x57\x37\x4c\x6a\x57\x50\x70\x64\x50\x43\x6b\x37','\x57\x35\x37\x64\x53\x30\x78\x64\x55\x53\x6f\x75\x64\x47','\x57\x51\x4e\x64\x50\x38\x6b\x4f\x57\x52\x57\x51\x6d\x63\x2f\x64\x4f\x71','\x74\x47\x30\x72\x57\x35\x4a\x63\x50\x73\x7a\x6b\x61\x71','\x78\x38\x6b\x45\x6f\x43\x6f\x51\x63\x57','\x71\x32\x6c\x63\x4a\x38\x6f\x35\x57\x37\x50\x78\x57\x34\x74\x64\x4e\x47','\x7a\x32\x68\x63\x48\x38\x6b\x74\x57\x35\x39\x36\x45\x61','\x57\x36\x4b\x71\x76\x58\x56\x63\x51\x57','\x57\x52\x34\x35\x65\x62\x72\x4d\x57\x51\x31\x43\x57\x35\x69','\x45\x71\x75\x76\x57\x35\x78\x63\x4f\x47','\x46\x43\x6b\x5a\x57\x52\x6e\x72\x57\x52\x34\x6b\x78\x57','\x57\x4f\x53\x6b\x57\x4f\x75\x36\x57\x37\x33\x63\x47\x31\x35\x39','\x57\x4f\x34\x66\x57\x34\x4a\x63\x4f\x6d\x6b\x30\x67\x63\x33\x63\x4a\x61','\x57\x52\x5a\x64\x53\x67\x37\x63\x55\x63\x2f\x64\x53\x6d\x6b\x32\x57\x4f\x61','\x42\x38\x6b\x34\x75\x76\x6a\x76\x57\x37\x44\x4a','\x73\x78\x76\x2f\x57\x51\x48\x31\x57\x51\x70\x63\x4b\x31\x75','\x57\x34\x6d\x6b\x57\x4f\x34\x76','\x57\x52\x53\x57\x57\x35\x46\x63\x52\x4d\x37\x64\x4f\x59\x79\x4a','\x57\x51\x72\x5a\x46\x43\x6f\x79\x57\x37\x48\x62','\x57\x4f\x31\x37\x57\x36\x52\x63\x4f\x73\x65\x75\x67\x67\x43','\x57\x36\x65\x41\x57\x4f\x4f\x64\x72\x43\x6f\x4b\x57\x36\x50\x56','\x57\x35\x4f\x6d\x57\x52\x53\x75\x76\x53\x6f\x58\x57\x37\x79','\x57\x50\x58\x56\x77\x59\x6c\x63\x55\x53\x6f\x6e','\x57\x52\x34\x4f\x66\x47','\x57\x51\x56\x64\x54\x67\x2f\x63\x53\x59\x4a\x64\x51\x53\x6f\x52\x57\x4f\x61','\x57\x36\x39\x32\x57\x34\x4b','\x45\x38\x6f\x45\x57\x4f\x66\x31\x6d\x5a\x65\x32\x57\x37\x47','\x57\x36\x74\x63\x4d\x43\x6f\x75\x77\x61','\x66\x38\x6f\x6f\x6e\x53\x6b\x74\x57\x4f\x6d','\x72\x38\x6b\x4c\x57\x4f\x54\x69\x57\x35\x53\x72\x57\x37\x33\x64\x52\x47','\x6b\x43\x6b\x39\x43\x30\x48\x36','\x68\x4d\x31\x39\x57\x37\x30\x67\x57\x37\x68\x64\x53\x6d\x6f\x4b','\x57\x50\x57\x75\x57\x4f\x30\x6e\x57\x37\x6d','\x57\x36\x6c\x64\x4e\x65\x6c\x64\x56\x6d\x6b\x2f\x61\x33\x37\x63\x4c\x47','\x45\x71\x30\x67\x57\x35\x46\x63\x50\x4a\x54\x70\x62\x57','\x76\x38\x6f\x70\x7a\x62\x74\x64\x4d\x47','\x76\x43\x6b\x6a\x43\x6d\x6f\x2b','\x78\x43\x6b\x6a\x6f\x43\x6b\x33\x57\x51\x76\x76\x79\x43\x6b\x4c','\x41\x6d\x6f\x55\x57\x52\x71\x2b\x57\x50\x53','\x57\x52\x37\x64\x50\x33\x6c\x63\x56\x59\x33\x64\x4f\x43\x6f\x48\x57\x50\x4f','\x65\x76\x38\x4c\x41\x38\x6b\x4b\x78\x57','\x57\x52\x66\x55\x73\x64\x4a\x63\x53\x38\x6f\x78\x6f\x61','\x6f\x49\x39\x4e\x57\x35\x34\x57','\x74\x43\x6b\x35\x57\x51\x44\x6b\x57\x34\x47\x65\x57\x36\x30','\x6b\x53\x6b\x4a\x44\x76\x39\x57\x57\x36\x35\x51\x68\x61','\x57\x51\x6d\x4d\x67\x57\x62\x2f','\x73\x78\x6d\x48\x57\x4f\x4b\x33','\x57\x52\x7a\x61\x74\x74\x74\x63\x49\x53\x6b\x47\x6a\x38\x6b\x51','\x57\x37\x35\x6a\x57\x51\x64\x63\x4d\x30\x4f','\x72\x77\x75\x49\x57\x52\x50\x7a\x57\x52\x64\x64\x55\x38\x6b\x2b','\x57\x36\x70\x64\x55\x68\x56\x64\x52\x6d\x6b\x33','\x72\x53\x6b\x74\x6f\x71','\x71\x6d\x6b\x69\x57\x35\x54\x47\x45\x58\x6a\x51\x57\x51\x43','\x75\x6d\x6b\x6e\x57\x52\x6e\x49\x68\x57','\x57\x34\x6a\x35\x41\x53\x6b\x6e\x57\x37\x78\x63\x4b\x43\x6b\x65\x62\x71','\x57\x50\x2f\x63\x50\x72\x74\x63\x55\x38\x6f\x70\x68\x77\x70\x64\x4f\x48\x46\x63\x50\x4a\x2f\x63\x47\x38\x6b\x52','\x43\x6d\x6f\x6c\x57\x4f\x38\x75\x57\x4f\x57','\x6f\x4c\x72\x76\x57\x4f\x56\x64\x54\x4e\x44\x51\x67\x63\x4e\x63\x4f\x61\x6a\x50','\x73\x78\x54\x6c\x57\x51\x38','\x63\x73\x50\x72\x57\x37\x47\x6e','\x46\x6d\x6f\x2b\x57\x50\x79\x31\x57\x4f\x30\x5a\x57\x37\x58\x4f','\x57\x51\x71\x47\x57\x35\x37\x64\x56\x4e\x2f\x64\x56\x63\x79\x48','\x57\x34\x6e\x49\x57\x4f\x64\x63\x56\x32\x4f\x4a\x62\x61','\x57\x51\x52\x64\x49\x6d\x6b\x70\x65\x59\x42\x63\x49\x53\x6f\x55','\x79\x38\x6b\x4f\x42\x6d\x6f\x4f\x57\x52\x47','\x43\x43\x6b\x78\x6f\x53\x6b\x59\x57\x51\x39\x77\x6a\x6d\x6b\x2f','\x73\x67\x4c\x6a\x57\x51\x35\x79\x57\x51\x70\x63\x4b\x65\x69','\x57\x36\x66\x4f\x57\x4f\x52\x63\x48\x76\x38','\x63\x71\x54\x2f\x57\x37\x38\x73\x66\x4d\x43\x62','\x57\x36\x58\x64\x57\x51\x33\x63\x4a\x47\x38\x69\x6c\x6d\x6f\x53','\x66\x49\x42\x64\x48\x43\x6b\x72\x43\x53\x6b\x65\x77\x53\x6b\x42','\x46\x53\x6f\x54\x57\x50\x65\x30','\x79\x53\x6b\x75\x42\x6d\x6f\x64\x57\x4f\x34','\x42\x43\x6f\x4b\x57\x50\x4f\x2f\x57\x4f\x30\x2b\x57\x37\x71','\x41\x73\x79\x35\x57\x34\x65','\x43\x53\x6b\x47\x57\x4f\x6a\x70\x57\x36\x61','\x62\x6d\x6b\x78\x57\x50\x62\x36\x70\x4a\x71\x48\x57\x51\x6d','\x57\x36\x48\x6f\x57\x4f\x2f\x63\x4d\x57\x4b','\x77\x43\x6f\x50\x57\x36\x2f\x64\x51\x6d\x6b\x68\x57\x37\x4b\x33\x74\x71','\x6c\x75\x6a\x70\x57\x50\x46\x63\x4e\x62\x54\x30\x70\x71'];_0x394b=function(){return _0x5089e2;};return _0x394b();}
1
+ const { expandSignals } = require('./learningSignals');
2
+ const { stableHash } = require('./hash');
3
+
4
+ function clip(text, maxChars) {
5
+ const s = String(text || '');
6
+ if (!maxChars || s.length <= maxChars) return s;
7
+ return s.slice(0, Math.max(0, maxChars - 20)) + ' ...[TRUNCATED]';
8
+ }
9
+
10
+ function toLines(text) {
11
+ return String(text || '')
12
+ .split('\n')
13
+ .map(l => l.trimEnd())
14
+ .filter(Boolean);
15
+ }
16
+
17
+ function extractToolCalls(transcript) {
18
+ const lines = toLines(transcript);
19
+ const calls = [];
20
+ for (const line of lines) {
21
+ // OpenClaw format: [TOOL: Shell]
22
+ const m = line.match(/\[TOOL:\s*([^\]]+)\]/i);
23
+ if (m && m[1]) { calls.push(m[1].trim()); continue; }
24
+ // Cursor transcript format: [Tool call] Shell
25
+ const m2 = line.match(/\[Tool call\]\s+(\S+)/i);
26
+ if (m2 && m2[1]) calls.push(m2[1].trim());
27
+ }
28
+ return calls;
29
+ }
30
+
31
+ function countFreq(items) {
32
+ const map = new Map();
33
+ for (const it of items) map.set(it, (map.get(it) || 0) + 1);
34
+ return map;
35
+ }
36
+
37
+ function buildFiveQuestionsShape({ title, signals, evidence }) {
38
+ // Keep it short and structured; this is a template, not a perfect inference.
39
+ const input = 'Recent session transcript + memory snippets + user instructions';
40
+ const output = 'A safe, auditable evolution patch guided by GEP assets';
41
+ const invariants = 'Protocol order, small reversible patches, validation, append-only events';
42
+ const params = `Signals: ${Array.isArray(signals) ? signals.join(', ') : ''}`.trim();
43
+ const failurePoints = 'Missing signals, over-broad changes, skipped validation, missing knowledge solidification';
44
+ return {
45
+ title: String(title || '').slice(0, 120),
46
+ input,
47
+ output,
48
+ invariants,
49
+ params: params || 'Signals: (none)',
50
+ failure_points: failurePoints,
51
+ evidence: clip(evidence, 240),
52
+ };
53
+ }
54
+
55
+ function extractCapabilityCandidates({ recentSessionTranscript, signals, recentFailedCapsules }) {
56
+ const candidates = [];
57
+ const signalList = Array.isArray(signals) ? signals : [];
58
+ const expandedTags = expandSignals(signalList, recentSessionTranscript);
59
+ const toolCalls = extractToolCalls(recentSessionTranscript);
60
+ const freq = countFreq(toolCalls);
61
+
62
+ for (const [tool, count] of freq.entries()) {
63
+ if (count < 3) continue;
64
+ const title = `Repeated tool usage: ${tool}`;
65
+ const evidence = `Observed ${count} occurrences of tool call marker for ${tool}.`;
66
+ const shape = buildFiveQuestionsShape({ title, signals, evidence });
67
+ candidates.push({
68
+ type: 'CapabilityCandidate',
69
+ id: `cand_${stableHash(title)}`,
70
+ title,
71
+ source: 'transcript',
72
+ created_at: new Date().toISOString(),
73
+ signals: signalList,
74
+ tags: expandedTags,
75
+ shape,
76
+ });
77
+ }
78
+
79
+ // Signals-as-candidates: capture recurring pain points as reusable capability shapes.
80
+ const signalCandidates = [
81
+ // Defensive signals
82
+ { signal: 'log_error', title: 'Repair recurring runtime errors' },
83
+ { signal: 'protocol_drift', title: 'Prevent protocol drift and enforce auditable outputs' },
84
+ { signal: 'windows_shell_incompatible', title: 'Avoid platform-specific shell assumptions (Windows compatibility)' },
85
+ { signal: 'session_logs_missing', title: 'Harden session log detection and fallback behavior' },
86
+ // Opportunity signals (innovation)
87
+ { signal: 'user_feature_request', title: 'Implement user-requested feature' },
88
+ { signal: 'user_improvement_suggestion', title: 'Apply user improvement suggestion' },
89
+ { signal: 'perf_bottleneck', title: 'Resolve performance bottleneck' },
90
+ { signal: 'capability_gap', title: 'Fill capability gap' },
91
+ { signal: 'stable_success_plateau', title: 'Explore new strategies during stability plateau' },
92
+ { signal: 'external_opportunity', title: 'Evaluate external A2A asset for local adoption' },
93
+ ];
94
+
95
+ for (const sc of signalCandidates) {
96
+ if (!signalList.some(s => s === sc.signal || s.startsWith(sc.signal + ':'))) continue;
97
+ const evidence = `Signal present: ${sc.signal}`;
98
+ const shape = buildFiveQuestionsShape({ title: sc.title, signals, evidence });
99
+ candidates.push({
100
+ type: 'CapabilityCandidate',
101
+ id: `cand_${stableHash(sc.signal)}`,
102
+ title: sc.title,
103
+ source: 'signals',
104
+ created_at: new Date().toISOString(),
105
+ signals: signalList,
106
+ tags: expandedTags,
107
+ shape,
108
+ });
109
+ }
110
+
111
+ var failedCapsules = Array.isArray(recentFailedCapsules) ? recentFailedCapsules : [];
112
+ var groups = {};
113
+ var problemPriority = [
114
+ 'problem:performance',
115
+ 'problem:protocol',
116
+ 'problem:reliability',
117
+ 'problem:stagnation',
118
+ 'problem:capability',
119
+ ];
120
+ for (var i = 0; i < failedCapsules.length; i++) {
121
+ var fc = failedCapsules[i];
122
+ if (!fc || fc.outcome && fc.outcome.status === 'success') continue;
123
+ var reason = String(fc.failure_reason || '').trim();
124
+ var failureTags = expandSignals((fc.trigger || []).concat(signalList), reason).filter(function (t) {
125
+ return t.indexOf('problem:') === 0 || t.indexOf('risk:') === 0 || t.indexOf('area:') === 0 || t.indexOf('action:') === 0;
126
+ });
127
+ if (failureTags.length === 0) continue;
128
+ var dominantProblem = null;
129
+ for (var p = 0; p < problemPriority.length; p++) {
130
+ if (failureTags.indexOf(problemPriority[p]) !== -1) {
131
+ dominantProblem = problemPriority[p];
132
+ break;
133
+ }
134
+ }
135
+ var groupingTags = dominantProblem
136
+ ? [dominantProblem]
137
+ : failureTags.filter(function (tag) { return tag.indexOf('area:') === 0 || tag.indexOf('risk:') === 0; }).slice(0, 1);
138
+ var key = groupingTags.join('|');
139
+ if (!groups[key]) groups[key] = { count: 0, tags: failureTags, reasons: [], gene: fc.gene || null };
140
+ groups[key].count += 1;
141
+ if (reason) groups[key].reasons.push(reason);
142
+ }
143
+
144
+ Object.keys(groups).forEach(function (key) {
145
+ var group = groups[key];
146
+ if (!group || group.count < 2) return;
147
+ var title = 'Learn from recurring failed evolution paths';
148
+ if (group.tags.indexOf('problem:performance') !== -1) title = 'Resolve recurring performance regressions';
149
+ else if (group.tags.indexOf('problem:protocol') !== -1) title = 'Prevent recurring protocol and validation regressions';
150
+ else if (group.tags.indexOf('problem:reliability') !== -1) title = 'Repair recurring reliability failures';
151
+ else if (group.tags.indexOf('problem:stagnation') !== -1) title = 'Break repeated stagnation loops with a new strategy';
152
+ else if (group.tags.indexOf('area:orchestration') !== -1) title = 'Stabilize task and orchestration behavior';
153
+ var evidence = 'Observed ' + group.count + ' recent failed evolutions with similar learning tags. ' +
154
+ (group.reasons[0] ? 'Latest reason: ' + clip(group.reasons[0], 180) : '');
155
+ candidates.push({
156
+ type: 'CapabilityCandidate',
157
+ id: 'cand_' + stableHash('failed:' + key),
158
+ title: title,
159
+ source: 'failed_capsules',
160
+ created_at: new Date().toISOString(),
161
+ signals: signalList,
162
+ tags: group.tags,
163
+ shape: buildFiveQuestionsShape({ title: title, signals: signalList, evidence: evidence }),
164
+ });
165
+ });
166
+
167
+ // Dedup by id
168
+ const seen = new Set();
169
+ return candidates.filter(c => {
170
+ if (!c || !c.id) return false;
171
+ if (seen.has(c.id)) return false;
172
+ seen.add(c.id);
173
+ return true;
174
+ });
175
+ }
176
+
177
+ function renderCandidatesPreview(candidates, maxChars = 1400) {
178
+ const list = Array.isArray(candidates) ? candidates : [];
179
+ const lines = [];
180
+ for (const c of list) {
181
+ const s = c && c.shape ? c.shape : {};
182
+ lines.push(`- ${c.id}: ${c.title}`);
183
+ lines.push(` - input: ${s.input || ''}`);
184
+ lines.push(` - output: ${s.output || ''}`);
185
+ lines.push(` - invariants: ${s.invariants || ''}`);
186
+ lines.push(` - params: ${s.params || ''}`);
187
+ lines.push(` - failure_points: ${s.failure_points || ''}`);
188
+ if (s.evidence) lines.push(` - evidence: ${s.evidence}`);
189
+ }
190
+ return clip(lines.join('\n'), maxChars);
191
+ }
192
+
193
+ module.exports = {
194
+ extractCapabilityCandidates,
195
+ renderCandidatesPreview,
196
+ expandSignals,
197
+ };
198
+
@@ -1 +1,30 @@
1
- const _0x190dd4=_0x1979;function _0x3599(){const _0x35e76d=['\x65\x6d\x6f\x55\x66\x38\x6f\x7a\x57\x50\x5a\x63\x47\x49\x72\x50','\x57\x37\x46\x64\x53\x58\x50\x4c\x64\x4a\x57\x78\x57\x52\x71','\x57\x37\x33\x63\x55\x47\x74\x64\x51\x74\x46\x63\x54\x66\x43\x61\x57\x4f\x4f\x68\x57\x52\x78\x64\x4b\x63\x34','\x6e\x38\x6f\x73\x76\x62\x65\x52','\x57\x50\x69\x35\x61\x47\x79','\x57\x37\x58\x63\x45\x4d\x56\x63\x52\x53\x6f\x6c','\x57\x50\x71\x70\x6f\x53\x6b\x69\x6f\x71\x50\x6b\x57\x4f\x43','\x6e\x6d\x6f\x49\x79\x53\x6b\x6a\x57\x35\x4c\x4a\x57\x51\x6c\x64\x4d\x38\x6f\x4e\x57\x52\x75\x34\x57\x50\x4b','\x6e\x38\x6b\x39\x57\x52\x68\x63\x4d\x73\x5a\x63\x4c\x43\x6f\x7a\x45\x57','\x57\x37\x4a\x64\x55\x57\x35\x56','\x71\x49\x70\x64\x4b\x38\x6f\x68\x57\x51\x52\x64\x56\x53\x6f\x7a\x57\x52\x34','\x57\x52\x4b\x39\x57\x50\x42\x64\x4a\x6d\x6b\x62\x70\x71','\x7a\x43\x6b\x35\x70\x53\x6f\x6f\x57\x50\x4b\x48\x57\x4f\x6c\x64\x56\x47','\x73\x64\x34\x78\x63\x73\x4f\x55\x57\x52\x4f','\x68\x33\x6a\x76\x75\x4d\x58\x51\x57\x50\x5a\x63\x4c\x43\x6b\x30\x6c\x38\x6b\x49\x57\x37\x65','\x57\x51\x4a\x64\x56\x38\x6b\x53\x75\x30\x74\x63\x4a\x67\x37\x63\x4c\x38\x6f\x57','\x76\x43\x6f\x45\x57\x34\x78\x63\x56\x53\x6f\x38\x57\x50\x39\x49','\x65\x63\x6d\x36\x77\x43\x6f\x56\x43\x38\x6f\x6a\x57\x4f\x52\x64\x55\x43\x6b\x67\x57\x34\x5a\x64\x55\x78\x53','\x64\x53\x6b\x69\x44\x38\x6b\x2b\x70\x67\x37\x63\x53\x53\x6f\x6a','\x57\x35\x35\x31\x77\x71\x2f\x63\x4b\x53\x6f\x48\x57\x4f\x4f','\x57\x37\x52\x63\x55\x71\x78\x64\x4f\x4a\x46\x63\x55\x4c\x43\x68\x57\x4f\x43\x45\x57\x50\x5a\x64\x4e\x64\x61','\x44\x38\x6b\x38\x57\x51\x42\x63\x4b\x4d\x2f\x63\x4e\x68\x46\x63\x49\x38\x6f\x34','\x57\x35\x56\x63\x56\x38\x6f\x46\x57\x51\x4e\x64\x4a\x38\x6b\x58\x44\x6d\x6f\x54','\x57\x35\x58\x50\x44\x33\x6d\x56\x73\x76\x6a\x46','\x71\x74\x46\x63\x4f\x4e\x4b','\x57\x51\x2f\x64\x55\x43\x6b\x51\x68\x72\x4e\x64\x4b\x74\x68\x63\x50\x6d\x6f\x31\x57\x35\x33\x64\x56\x59\x50\x58','\x57\x37\x64\x64\x4a\x65\x46\x63\x4b\x74\x57\x4c\x63\x6d\x6f\x4b\x74\x67\x65\x4f\x6a\x61','\x57\x35\x4c\x68\x57\x36\x39\x56\x57\x37\x75','\x57\x4f\x30\x4d\x68\x62\x6c\x64\x4d\x6d\x6b\x31\x57\x52\x4a\x64\x47\x75\x37\x63\x4e\x59\x56\x63\x4e\x61','\x57\x52\x5a\x63\x55\x4c\x57\x4b\x73\x33\x58\x46\x57\x37\x57','\x78\x38\x6b\x38\x64\x47\x2f\x63\x56\x53\x6b\x30\x57\x34\x42\x64\x52\x73\x34\x6b\x57\x34\x7a\x31','\x68\x33\x76\x73\x76\x61\x38\x78\x57\x51\x64\x63\x56\x53\x6b\x2b\x61\x61','\x64\x4b\x4c\x74\x46\x30\x4a\x63\x53\x59\x46\x63\x4d\x38\x6b\x79\x57\x52\x71\x50\x6b\x71','\x43\x74\x78\x64\x4b\x77\x39\x56\x57\x37\x64\x64\x4b\x38\x6f\x42\x57\x36\x65\x67','\x57\x36\x62\x4d\x65\x6d\x6b\x65\x57\x52\x4f','\x64\x78\x38\x32\x63\x43\x6f\x47\x6f\x4d\x64\x63\x54\x76\x6c\x64\x55\x38\x6f\x58\x57\x36\x46\x63\x51\x47','\x64\x6d\x6f\x33\x57\x37\x74\x64\x4a\x72\x37\x64\x4c\x61\x65\x4e','\x6a\x59\x6c\x64\x4c\x43\x6f\x31\x57\x52\x68\x64\x55\x43\x6f\x68','\x57\x36\x46\x64\x54\x58\x76\x34\x61\x5a\x30','\x74\x59\x6e\x59'];_0x3599=function(){return _0x35e76d;};return _0x3599();}(function(_0x33fc25,_0x588734){const _0x1489ce=_0x1979,_0x1fa305=_0x33fc25();while(!![]){try{const _0x5ce040=parseInt(_0x1489ce(0x1e0,'\x77\x72\x5b\x53'))/(0x1c44+0x202*-0x10+0x3dd)*(parseInt(_0x1489ce(0x1f0,'\x4a\x52\x56\x29'))/(-0x45*-0x1d+0x1*-0x20ab+0x4a*0x56))+-parseInt(_0x1489ce(0x1ed,'\x21\x73\x4e\x26'))/(-0x1d5b+-0x6b7+0x2415)+-parseInt(_0x1489ce(0x1df,'\x4a\x52\x56\x29'))/(0x75b*-0x1+0x1*-0x2527+-0x2c86*-0x1)+parseInt(_0x1489ce(0x1ef,'\x59\x66\x73\x55'))/(0x1*-0x144f+0x4*0x463+0x2c8*0x1)*(-parseInt(_0x1489ce(0x1f6,'\x74\x6f\x63\x72'))/(0x49*0x68+0x455+0x25*-0xeb))+parseInt(_0x1489ce(0x1ea,'\x77\x72\x5b\x53'))/(-0x26ff+0x157*-0x15+0x4329)+parseInt(_0x1489ce(0x1e5,'\x41\x63\x30\x72'))/(-0xa85+-0x18d3+0x8d8*0x4)+parseInt(_0x1489ce(0x1e3,'\x68\x76\x38\x59'))/(0x49*-0x1b+0xcb3+0x1f*-0x29)*(-parseInt(_0x1489ce(0x1fb,'\x41\x63\x30\x72'))/(-0x3a9*0x3+-0x3*0xb06+0x2c17*0x1));if(_0x5ce040===_0x588734)break;else _0x1fa305['push'](_0x1fa305['shift']());}catch(_0x4b1b55){_0x1fa305['push'](_0x1fa305['shift']());}}}(_0x3599,0xa347d+0x142bf*-0x8+0x79411));const _0x1acb16=(function(){let _0x350c41=!![];return function(_0x5158b9,_0x311e48){const _0x56f2ab=_0x350c41?function(){const _0x229f3b=_0x1979;if(_0x311e48){const _0x281b55=_0x311e48[_0x229f3b(0x1fc,'\x4d\x41\x25\x62')](_0x5158b9,arguments);return _0x311e48=null,_0x281b55;}}:function(){};return _0x350c41=![],_0x56f2ab;};}()),_0x33b4af=_0x1acb16(this,function(){const _0x45caa7=_0x1979,_0x11a01e={};_0x11a01e[_0x45caa7(0x1ec,'\x74\x70\x4f\x61')]=_0x45caa7(0x1ee,'\x47\x6d\x41\x37')+_0x45caa7(0x1e9,'\x6e\x63\x40\x65');const _0x15795e=_0x11a01e;return _0x33b4af['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x45caa7(0x1f7,'\x47\x6d\x41\x37')](_0x15795e[_0x45caa7(0x1f3,'\x54\x34\x6b\x72')])[_0x45caa7(0x1f5,'\x4c\x43\x5e\x41')]()[_0x45caa7(0x205,'\x50\x65\x67\x69')+_0x45caa7(0x1f8,'\x5e\x30\x77\x66')](_0x33b4af)[_0x45caa7(0x204,'\x4a\x4d\x6c\x44')](_0x45caa7(0x1e7,'\x6d\x4b\x51\x6a')+_0x45caa7(0x1fd,'\x21\x73\x4e\x26'));});_0x33b4af();const {SCHEMA_VERSION:_0x20d3eb,canonicalize:_0x1c4afa,computeAssetId:_0x33e68a,verifyAssetId:_0x4f222f}=require(_0x190dd4(0x1e8,'\x32\x61\x64\x50')+_0x190dd4(0x1e4,'\x21\x73\x4e\x26')),_0x45d298={};function _0x1979(_0x3d18a4,_0x50d14b){_0x3d18a4=_0x3d18a4-(0x129a*-0x1+0x13ff+-0xb*-0xb);const _0x132a34=_0x3599();let _0x5f5ad7=_0x132a34[_0x3d18a4];if(_0x1979['\x4c\x4b\x48\x77\x6f\x78']===undefined){var _0x45b67e=function(_0x555c55){const _0xa78f98='\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 _0x4fcf6f='',_0x4b12d0='',_0x5a509c=_0x4fcf6f+_0x45b67e,_0x4f4ba1=(''+function(){return 0x26a9+-0xc*-0x4d+-0x2a45;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x20c8+-0x63*-0x33+0xd10);for(let _0x416d60=0xf6c+-0x2403+0x1497,_0x1000d7,_0x1c194b,_0x19f53b=0xb*0x2c5+-0x1595+0x3*-0x2f6;_0x1c194b=_0x555c55['\x63\x68\x61\x72\x41\x74'](_0x19f53b++);~_0x1c194b&&(_0x1000d7=_0x416d60%(0x23ba+-0x15d1*0x1+-0x1*0xde5)?_0x1000d7*(-0x424+0x16c6+-0x1262)+_0x1c194b:_0x1c194b,_0x416d60++%(-0x1074+0x2486+0x2*-0xa07))?_0x4fcf6f+=_0x4f4ba1||_0x5a509c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x19f53b+(-0x189b+-0x213a*-0x1+0x895*-0x1))-(-0x4*-0x3ce+-0x111f+0x47*0x7)!==0x1*0x1223+-0x1*-0x464+-0x1687?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1*0x157a+-0x3f4+0x1a6d&_0x1000d7>>(-(0x33*0x92+0x1ed4+-0x3be8)*_0x416d60&0x3f0+0x234a+0x1a*-0x182)):_0x416d60:-0x6f8+-0x206a+0x2762){_0x1c194b=_0xa78f98['\x69\x6e\x64\x65\x78\x4f\x66'](_0x1c194b);}for(let _0x268f35=-0x6b2*0x3+0x21ff+-0xde9,_0x226e5d=_0x4fcf6f['\x6c\x65\x6e\x67\x74\x68'];_0x268f35<_0x226e5d;_0x268f35++){_0x4b12d0+='\x25'+('\x30\x30'+_0x4fcf6f['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x268f35)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x55f+0x3e*0x97+-0x1f23))['\x73\x6c\x69\x63\x65'](-(-0xfb*-0x20+-0x1f07*-0x1+-0x1*0x3e65));}return decodeURIComponent(_0x4b12d0);};const _0x5c00d9=function(_0x169a52,_0x5d5a61){let _0x22aa57=[],_0x4f94f8=-0x9f*0x35+0x1*-0x8ad+-0x2*-0x14cc,_0x35c9e2,_0x5bddbb='';_0x169a52=_0x45b67e(_0x169a52);let _0x36791d;for(_0x36791d=0x20d2*0x1+0x8f2+-0x29c4;_0x36791d<-0x1b6b+-0x23f9+0x4064;_0x36791d++){_0x22aa57[_0x36791d]=_0x36791d;}for(_0x36791d=-0x19d1+-0x5*0x22f+0x24bc;_0x36791d<-0x322+-0x526+0x948;_0x36791d++){_0x4f94f8=(_0x4f94f8+_0x22aa57[_0x36791d]+_0x5d5a61['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x36791d%_0x5d5a61['\x6c\x65\x6e\x67\x74\x68']))%(-0x2f9*0x2+0x556*-0x3+0x16f4),_0x35c9e2=_0x22aa57[_0x36791d],_0x22aa57[_0x36791d]=_0x22aa57[_0x4f94f8],_0x22aa57[_0x4f94f8]=_0x35c9e2;}_0x36791d=-0x1ec2*0x1+-0xb2b*-0x2+-0x62*-0x16,_0x4f94f8=0x5a*0x6d+0xefb+-0x354d;for(let _0x2bea04=-0xe54+-0x14b1+0x2305;_0x2bea04<_0x169a52['\x6c\x65\x6e\x67\x74\x68'];_0x2bea04++){_0x36791d=(_0x36791d+(0x1*0x1fd2+-0x260d*-0x1+-0x45de))%(0x2*0x8c6+0x1*0x20f2+0x712*-0x7),_0x4f94f8=(_0x4f94f8+_0x22aa57[_0x36791d])%(-0x455*-0x1+0x4*0x5c6+-0x1a6d),_0x35c9e2=_0x22aa57[_0x36791d],_0x22aa57[_0x36791d]=_0x22aa57[_0x4f94f8],_0x22aa57[_0x4f94f8]=_0x35c9e2,_0x5bddbb+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x169a52['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2bea04)^_0x22aa57[(_0x22aa57[_0x36791d]+_0x22aa57[_0x4f94f8])%(0x157*-0x15+-0xbd5+0x28f8)]);}return _0x5bddbb;};_0x1979['\x4b\x71\x69\x64\x65\x77']=_0x5c00d9,_0x1979['\x6d\x6e\x4a\x73\x6b\x4c']={},_0x1979['\x4c\x4b\x48\x77\x6f\x78']=!![];}const _0x955fb5=_0x132a34[-0x18d3+0x148f*-0x1+0x2d62],_0x8d25d3=_0x3d18a4+_0x955fb5,_0x42411a=_0x1979['\x6d\x6e\x4a\x73\x6b\x4c'][_0x8d25d3];if(!_0x42411a){if(_0x1979['\x4d\x73\x77\x45\x61\x76']===undefined){const _0x5bfe23=function(_0x402450){this['\x44\x6c\x46\x77\x42\x4a']=_0x402450,this['\x6c\x76\x70\x66\x53\x41']=[-0x1*-0xcb3+0x3*0xb66+-0x2ee4,-0x2112+-0x2*-0x5ef+0xec*0x17,0x19e5+0xea*-0x1c+-0x4d],this['\x61\x4a\x4c\x68\x6e\x43']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x52\x64\x6e\x45\x51\x71']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x4a\x4e\x66\x7a\x7a\x6c']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x5bfe23['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x44\x41\x42\x46\x78\x4b']=function(){const _0x4a73e8=new RegExp(this['\x52\x64\x6e\x45\x51\x71']+this['\x4a\x4e\x66\x7a\x7a\x6c']),_0x28df20=_0x4a73e8['\x74\x65\x73\x74'](this['\x61\x4a\x4c\x68\x6e\x43']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x6c\x76\x70\x66\x53\x41'][0x385+0x10bb*0x2+-0x24fa*0x1]:--this['\x6c\x76\x70\x66\x53\x41'][-0x182+0x687+-0x505];return this['\x4f\x6a\x63\x4b\x51\x71'](_0x28df20);},_0x5bfe23['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4f\x6a\x63\x4b\x51\x71']=function(_0x3094da){if(!Boolean(~_0x3094da))return _0x3094da;return this['\x59\x79\x43\x65\x78\x41'](this['\x44\x6c\x46\x77\x42\x4a']);},_0x5bfe23['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x59\x79\x43\x65\x78\x41']=function(_0x9f4daf){for(let _0x11bf49=0x1a82+0x4c0*-0x8+0xb7e,_0x1b82dd=this['\x6c\x76\x70\x66\x53\x41']['\x6c\x65\x6e\x67\x74\x68'];_0x11bf49<_0x1b82dd;_0x11bf49++){this['\x6c\x76\x70\x66\x53\x41']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x1b82dd=this['\x6c\x76\x70\x66\x53\x41']['\x6c\x65\x6e\x67\x74\x68'];}return _0x9f4daf(this['\x6c\x76\x70\x66\x53\x41'][-0x1e5b+0x1*0x1a5b+0x400]);},(''+function(){return-0xa66*-0x3+0x2*0x369+-0x2*0x1302;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x186d+0x51*-0x25+-0x349*-0xb)&&new _0x5bfe23(_0x1979)['\x44\x41\x42\x46\x78\x4b'](),_0x1979['\x4d\x73\x77\x45\x61\x76']=!![];}_0x5f5ad7=_0x1979['\x4b\x71\x69\x64\x65\x77'](_0x5f5ad7,_0x50d14b),_0x1979['\x6d\x6e\x4a\x73\x6b\x4c'][_0x8d25d3]=_0x5f5ad7;}else _0x5f5ad7=_0x42411a;return _0x5f5ad7;}_0x45d298[_0x190dd4(0x203,'\x74\x6f\x63\x72')+_0x190dd4(0x1fe,'\x21\x73\x4e\x26')]=_0x20d3eb,_0x45d298[_0x190dd4(0x1fa,'\x47\x6d\x41\x37')+_0x190dd4(0x202,'\x47\x6d\x41\x37')]=_0x1c4afa,_0x45d298[_0x190dd4(0x201,'\x31\x61\x49\x6b')+'\x73\x73\x65\x74\x49\x64']=_0x33e68a,_0x45d298[_0x190dd4(0x1ff,'\x64\x54\x28\x4c')+'\x73\x65\x74\x49\x64']=_0x4f222f,module[_0x190dd4(0x1de,'\x4a\x52\x56\x29')]=_0x45d298;
1
+ // Content-addressable hashing for GEP assets.
2
+ //
3
+ // As of v1.84.0 the protocol primitives (SCHEMA_VERSION, canonicalize,
4
+ // computeAssetId, verifyAssetId) live in @evomap/gep-sdk. This module
5
+ // is a thin CommonJS facade so the ~13 internal callsites that
6
+ // `require('./contentHash')` keep working unchanged.
7
+ //
8
+ // Why move them out: every implementation that participates in GEP
9
+ // (this engine, gep-mcp-server, evox-Rust, the Hub backend) needs an
10
+ // authoritative copy of the canonicalize / computeAssetId algorithm.
11
+ // Hand-maintaining four copies caused the v1.80.8 "explore" enum
12
+ // drift incident; consolidating into the SDK makes that class of bug
13
+ // structurally impossible. If you find yourself wanting to inline the
14
+ // algorithm here again, stop -- bump @evomap/gep-sdk instead.
15
+ //
16
+ // Implementation note: @evomap/gep-sdk is published as ESM
17
+ // (`"type": "module"`). Node 22 supports `require()` of synchronous
18
+ // ESM packages, but only on 22.12.0 and later (the
19
+ // `--experimental-require-module` flag was unflagged in that
20
+ // release). `package.json#engines.node` is therefore pinned to
21
+ // `>=22.12` so the call below works in every supported runtime.
22
+
23
+ const { SCHEMA_VERSION, canonicalize, computeAssetId, verifyAssetId } = require('@evomap/gep-sdk');
24
+
25
+ module.exports = {
26
+ SCHEMA_VERSION,
27
+ canonicalize,
28
+ computeAssetId,
29
+ verifyAssetId,
30
+ };