@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,318 @@
1
- const _0x4e42d2=_0x4abb;(function(_0x33b742,_0x32becb){const _0x2ae6de=_0x4abb,_0x2da6b3=_0x33b742();while(!![]){try{const _0x1a24dd=-parseInt(_0x2ae6de(0x2eb,'\x64\x6a\x75\x5d'))/(-0x6e5*-0x2+0xe6b+-0x1c34)+-parseInt(_0x2ae6de(0x300,'\x68\x4a\x24\x37'))/(-0x15f7+-0x158d+0x2b86)*(-parseInt(_0x2ae6de(0x28a,'\x76\x4f\x50\x6d'))/(-0x1*-0x2533+-0x83b+0x423*-0x7))+parseInt(_0x2ae6de(0x34a,'\x68\x4a\x24\x37'))/(-0x6*-0x214+-0x1655+-0x1*-0x9e1)*(parseInt(_0x2ae6de(0x2e2,'\x44\x74\x35\x67'))/(-0x92e+0x2*0x158+0x683))+-parseInt(_0x2ae6de(0x250,'\x53\x30\x63\x5e'))/(-0x149*-0x1+0x19fe+-0x1b41)*(parseInt(_0x2ae6de(0x207,'\x40\x28\x30\x66'))/(0x149f+-0x137b+0x1*-0x11d))+-parseInt(_0x2ae6de(0x1bd,'\x6c\x6d\x63\x44'))/(0x15d0+0x1c38+-0x3200)*(-parseInt(_0x2ae6de(0x1fc,'\x45\x6a\x52\x35'))/(0x7c2+0xef7+0x3*-0x790))+-parseInt(_0x2ae6de(0x27d,'\x28\x23\x75\x4a'))/(0x2*0xf33+0xcaf*0x1+-0x2b0b)*(parseInt(_0x2ae6de(0x276,'\x62\x5a\x71\x63'))/(-0x501*-0x6+0x1961+-0x375c))+parseInt(_0x2ae6de(0x2ed,'\x53\x30\x63\x5e'))/(-0x11*0x40+-0x1be5*-0x1+-0x1799);if(_0x1a24dd===_0x32becb)break;else _0x2da6b3['push'](_0x2da6b3['shift']());}catch(_0x29d10c){_0x2da6b3['push'](_0x2da6b3['shift']());}}}(_0x8c2d,-0x118fd*0x5+0x5d7cf+0x6*0x10407));const _0x48b61b=(function(){const _0x4e98f4=_0x4abb,_0x3a81b3={};_0x3a81b3[_0x4e98f4(0x298,'\x47\x56\x37\x73')]=_0x4e98f4(0x242,'\x24\x70\x47\x25'),_0x3a81b3[_0x4e98f4(0x354,'\x56\x2a\x40\x48')]=_0x4e98f4(0x328,'\x39\x79\x71\x26'),_0x3a81b3[_0x4e98f4(0x1d2,'\x5d\x41\x4c\x35')]=function(_0x446ede,_0x3a3c3c){return _0x446ede!==_0x3a3c3c;},_0x3a81b3[_0x4e98f4(0x30c,'\x73\x73\x4f\x68')]='\x59\x5a\x62\x57\x54';const _0x63ee7d=_0x3a81b3;let _0x1b0ac4=!![];return function(_0x4545b1,_0x4ff7ae){const _0x10ab04=_0x4e98f4,_0x2df591={'\x6d\x44\x4f\x49\x53':function(_0x1168e0,_0xb750b1){return _0x1168e0(_0xb750b1);}};if(_0x63ee7d[_0x10ab04(0x1fe,'\x6c\x6d\x63\x44')](_0x63ee7d[_0x10ab04(0x1e1,'\x2a\x65\x61\x38')],_0x63ee7d[_0x10ab04(0x2c2,'\x44\x74\x35\x67')]))return _0x4fdd87[_0x10ab04(0x1be,'\x64\x6a\x75\x5d')];else{const _0x21487f=_0x1b0ac4?function(){const _0x50b8be=_0x10ab04,_0x80ad3e={};_0x80ad3e[_0x50b8be(0x348,'\x76\x4f\x50\x6d')]=_0x50b8be(0x30e,'\x64\x6a\x75\x5d')+_0x50b8be(0x2fe,'\x24\x70\x47\x25')+'\x70\x70\x65\x64';const _0x362a74=_0x80ad3e;if(_0x63ee7d[_0x50b8be(0x234,'\x75\x74\x40\x4b')]===_0x63ee7d[_0x50b8be(0x2d2,'\x29\x34\x4e\x75')]){if(_0x4ff7ae){if(_0x63ee7d['\x5a\x76\x55\x70\x74']==='\x7a\x57\x73\x72\x45')_0x5b6a25=_0x2df591[_0x50b8be(0x33a,'\x51\x50\x36\x41')](_0x4f42ea,_0x328044);else{const _0x4945c0=_0x4ff7ae[_0x50b8be(0x305,'\x5b\x37\x6d\x23')](_0x4545b1,arguments);return _0x4ff7ae=null,_0x4945c0;}}}else return{'\x6f\x75\x74\x63\x6f\x6d\x65':_0x362a74[_0x50b8be(0x284,'\x73\x73\x4f\x68')],'\x72\x65\x61\x73\x6f\x6e':_0x50b8be(0x208,'\x76\x4f\x50\x6d')+_0x50b8be(0x2c4,'\x56\x2a\x40\x48')+_0x50b8be(0x21d,'\x6c\x6d\x63\x44'),'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0x2493f8,'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':null,'\x65\x72\x72\x6f\x72':_0x422156&&_0x2fc813[_0x50b8be(0x2d9,'\x53\x30\x63\x5e')]||_0x46d820(_0x20be1e)};}:function(){};return _0x1b0ac4=![],_0x21487f;}};}()),_0x3e148a=_0x48b61b(this,function(){const _0x544fc4=_0x4abb,_0x4b6946={};_0x4b6946['\x6c\x43\x62\x54\x6c']='\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x544fc4(0x2fd,'\x32\x39\x56\x51');const _0x3b865e=_0x4b6946;return _0x3e148a[_0x544fc4(0x31a,'\x26\x55\x58\x75')]()[_0x544fc4(0x25a,'\x29\x34\x4e\x75')](_0x3b865e[_0x544fc4(0x260,'\x48\x40\x58\x6b')])[_0x544fc4(0x2dc,'\x74\x71\x68\x55')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x544fc4(0x2bd,'\x64\x6a\x75\x5d')](_0x3e148a)[_0x544fc4(0x2cb,'\x72\x56\x34\x50')](_0x3b865e[_0x544fc4(0x1ee,'\x40\x28\x30\x66')]);});_0x3e148a();'use strict';const {envInt:_0x55c358,envFloat:_0x24d25d}=require('\x2e\x2e\x2f\x63\x6f\x6e\x66\x69'+'\x67'),{fetchAssetById:_0x526057}=require(_0x4e42d2(0x209,'\x29\x34\x50\x2a')+_0x4e42d2(0x24c,'\x45\x6a\x52\x35')),{computeAssetId:_0x238972}=require(_0x4e42d2(0x22f,'\x76\x4f\x50\x6d')+_0x4e42d2(0x2e4,'\x5b\x37\x6d\x23')),{writeMemoryGraphEvent:_0x5b4976}=require(_0x4e42d2(0x2ee,'\x2a\x65\x61\x38')+'\x47\x72\x61\x70\x68');let _0x15b8bd=[];const _0x4f57a8=new Set();function _0x4abb(_0x1dbbfd,_0x328ae6){_0x1dbbfd=_0x1dbbfd-(0x6*-0x158+-0xe75+0x183b);const _0x3594ea=_0x8c2d();let _0x26bc95=_0x3594ea[_0x1dbbfd];if(_0x4abb['\x43\x46\x67\x66\x51\x64']===undefined){var _0x162cf3=function(_0x16f10b){const _0x2da792='\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 _0x362f0e='',_0x545bcf='',_0x27a028=_0x362f0e+_0x162cf3,_0x34285c=(''+function(){return 0x1628+0x4e*0x2+0x3e*-0x5e;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x1c51+0x9b8*-0x1+-0x38*0x55);for(let _0x4317cd=-0x2*-0x13a+-0x1*-0x14b+-0x3bf,_0x1e2466,_0x591883,_0x2b28d3=0x11*0x187+-0x7*0x27e+-0x885*0x1;_0x591883=_0x16f10b['\x63\x68\x61\x72\x41\x74'](_0x2b28d3++);~_0x591883&&(_0x1e2466=_0x4317cd%(0x1a23*0x1+0x1*0x2042+-0x3a61)?_0x1e2466*(-0x1c13*-0x1+0x1*-0x1639+-0x59a)+_0x591883:_0x591883,_0x4317cd++%(-0x1*0x1d3+-0x1b61+0x1d38))?_0x362f0e+=_0x34285c||_0x27a028['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2b28d3+(-0x1258+-0x5f*-0x34+-0x75*0x2))-(-0x1*0x324+0x2173*-0x1+0x24a1)!==-0x1450+0x158+0x8*0x25f?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x2*-0x423+0xd9e+-0x14e5&_0x1e2466>>(-(0x11c0+-0x2*0xf1+0xa*-0x196)*_0x4317cd&-0x1477+-0x5*-0x65+0x1284)):_0x4317cd:0x1295+-0x18d8+0x643){_0x591883=_0x2da792['\x69\x6e\x64\x65\x78\x4f\x66'](_0x591883);}for(let _0x11a491=-0x95b+-0x1*0x188f+0x21ea,_0x55bfb4=_0x362f0e['\x6c\x65\x6e\x67\x74\x68'];_0x11a491<_0x55bfb4;_0x11a491++){_0x545bcf+='\x25'+('\x30\x30'+_0x362f0e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x11a491)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x26ff+0x67*0x3d+-0x3f7a))['\x73\x6c\x69\x63\x65'](-(0xbeb*0x1+-0x479*-0x7+-0x2b38));}return decodeURIComponent(_0x545bcf);};const _0x56de72=function(_0xfb95b3,_0x45b48d){let _0x5bbda3=[],_0x36ab24=0x3*-0x439+0x2185+-0x14da,_0xd53cf0,_0x1be955='';_0xfb95b3=_0x162cf3(_0xfb95b3);let _0x2a120c;for(_0x2a120c=0x1f73+0x2c*-0x56+0x10ab*-0x1;_0x2a120c<-0x2c6+-0xd06+0x10cc;_0x2a120c++){_0x5bbda3[_0x2a120c]=_0x2a120c;}for(_0x2a120c=-0x12af+-0x27*0x54+0x1*0x1f7b;_0x2a120c<-0x2*0x13d+-0x8*0x497+-0x62*-0x69;_0x2a120c++){_0x36ab24=(_0x36ab24+_0x5bbda3[_0x2a120c]+_0x45b48d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2a120c%_0x45b48d['\x6c\x65\x6e\x67\x74\x68']))%(0x1882+-0x1e2c+0x6aa),_0xd53cf0=_0x5bbda3[_0x2a120c],_0x5bbda3[_0x2a120c]=_0x5bbda3[_0x36ab24],_0x5bbda3[_0x36ab24]=_0xd53cf0;}_0x2a120c=-0x2b+0xcd7*0x1+0x2*-0x656,_0x36ab24=-0xb5*0x35+-0xf70+0x285*0x15;for(let _0x5b74a0=-0x1*0x395+-0xd*-0x21d+-0x17e4;_0x5b74a0<_0xfb95b3['\x6c\x65\x6e\x67\x74\x68'];_0x5b74a0++){_0x2a120c=(_0x2a120c+(0x101+-0x93c+0x83c*0x1))%(0x2*0xcef+0x24e+-0x1b2c),_0x36ab24=(_0x36ab24+_0x5bbda3[_0x2a120c])%(0x1*-0x1fd8+-0x5*0x1d2+0x1a*0x19d),_0xd53cf0=_0x5bbda3[_0x2a120c],_0x5bbda3[_0x2a120c]=_0x5bbda3[_0x36ab24],_0x5bbda3[_0x36ab24]=_0xd53cf0,_0x1be955+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0xfb95b3['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5b74a0)^_0x5bbda3[(_0x5bbda3[_0x2a120c]+_0x5bbda3[_0x36ab24])%(-0x2f*-0x3f+0x7*-0xb5+-0x59e)]);}return _0x1be955;};_0x4abb['\x4b\x67\x50\x44\x62\x7a']=_0x56de72,_0x4abb['\x49\x51\x42\x65\x4d\x61']={},_0x4abb['\x43\x46\x67\x66\x51\x64']=!![];}const _0x17a929=_0x3594ea[0xaef+0x6*0x44a+0x1bf*-0x15],_0x1c2d65=_0x1dbbfd+_0x17a929,_0x5a8159=_0x4abb['\x49\x51\x42\x65\x4d\x61'][_0x1c2d65];if(!_0x5a8159){if(_0x4abb['\x6c\x72\x6d\x51\x4a\x43']===undefined){const _0x42e897=function(_0x4f87ad){this['\x67\x4e\x59\x47\x4f\x62']=_0x4f87ad,this['\x54\x61\x51\x65\x47\x79']=[0xb*-0x1ac+0x1*0x1a5+0x10c0*0x1,0x13*0x29+0x2aa+-0x1*0x5b5,0x251c+-0xed4+-0x1648],this['\x65\x63\x4e\x57\x78\x5a']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x43\x46\x70\x63\x55\x74']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x71\x4c\x67\x44\x5a\x45']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x42e897['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4d\x4c\x66\x6c\x54\x58']=function(){const _0x312c83=new RegExp(this['\x43\x46\x70\x63\x55\x74']+this['\x71\x4c\x67\x44\x5a\x45']),_0x437d8f=_0x312c83['\x74\x65\x73\x74'](this['\x65\x63\x4e\x57\x78\x5a']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x54\x61\x51\x65\x47\x79'][0x3*-0x251+-0x4a7*0x3+0x35*0x65]:--this['\x54\x61\x51\x65\x47\x79'][0x26c7+0x4*-0x8ef+-0x30b];return this['\x6f\x52\x67\x56\x51\x44'](_0x437d8f);},_0x42e897['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6f\x52\x67\x56\x51\x44']=function(_0x5fce1c){if(!Boolean(~_0x5fce1c))return _0x5fce1c;return this['\x47\x4b\x6a\x65\x4d\x73'](this['\x67\x4e\x59\x47\x4f\x62']);},_0x42e897['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x47\x4b\x6a\x65\x4d\x73']=function(_0x5445dd){for(let _0x4c0396=0x2159+0x1d5c*-0x1+-0x3fd,_0x5b3f2d=this['\x54\x61\x51\x65\x47\x79']['\x6c\x65\x6e\x67\x74\x68'];_0x4c0396<_0x5b3f2d;_0x4c0396++){this['\x54\x61\x51\x65\x47\x79']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x5b3f2d=this['\x54\x61\x51\x65\x47\x79']['\x6c\x65\x6e\x67\x74\x68'];}return _0x5445dd(this['\x54\x61\x51\x65\x47\x79'][-0x361*-0xa+0x167e+-0x1*0x3848]);},(''+function(){return-0x1*-0xfed+-0x1*0xce8+0x1*-0x305;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x88a*-0x2+0x1cab+-0x926*0x5)&&new _0x42e897(_0x4abb)['\x4d\x4c\x66\x6c\x54\x58'](),_0x4abb['\x6c\x72\x6d\x51\x4a\x43']=!![];}_0x26bc95=_0x4abb['\x4b\x67\x50\x44\x62\x7a'](_0x26bc95,_0x328ae6),_0x4abb['\x49\x51\x42\x65\x4d\x61'][_0x1c2d65]=_0x26bc95;}else _0x26bc95=_0x5a8159;return _0x26bc95;}let _0x24c390=![],_0x2eb6f8=null;const _0xc380ec={};_0xc380ec['\x6f\x6b']=0x0,_0xc380ec[_0x4e42d2(0x34d,'\x53\x40\x21\x7a')]=0x0,_0xc380ec[_0x4e42d2(0x2ba,'\x75\x74\x40\x4b')]=0x0,_0xc380ec[_0x4e42d2(0x2cd,'\x53\x30\x63\x5e')]=0x0;let _0xc52bc0=_0xc380ec;const _0x403e8a=[-0x1375+0x5*0x5d4+0x9d9,0x3c1f+0x4002*-0x1+-0xc7f*-0x5,0x3dd*-0x1d+0x33*0xd6+0xffd*0x13];function _0x2f2aa6(){const _0x18f340=_0x4e42d2,_0x44bea1={};_0x44bea1[_0x18f340(0x330,'\x72\x56\x34\x50')]=function(_0x1109e0,_0x467f61){return _0x1109e0===_0x467f61;};const _0x4881ad=_0x44bea1;return _0x4881ad[_0x18f340(0x2bf,'\x70\x23\x29\x47')](String(process.env.EVOLVE_RECALL_VERIFY||'\x30'),'\x31');}function _0x79dac7(){const _0x448d09=_0x4e42d2,_0x17c4c8={};_0x17c4c8[_0x448d09(0x23b,'\x5d\x41\x4c\x35')]=_0x448d09(0x24f,'\x64\x6a\x75\x5d')+_0x448d09(0x239,'\x30\x32\x46\x21')+'\x52\x49\x46\x59\x5f\x53\x41\x4d'+_0x448d09(0x1d7,'\x51\x26\x78\x6c');const _0x142a61=_0x17c4c8,_0x2882cc=_0x24d25d(_0x142a61[_0x448d09(0x1f0,'\x48\x40\x58\x6b')],-0x1ce5*-0x1+0x1455+-0x3139);if(!Number[_0x448d09(0x2d4,'\x48\x40\x58\x6b')](_0x2882cc)||_0x2882cc<-0xd7d+0x18e1*0x1+-0x144*0x9||_0x2882cc>-0x44d*-0x7+0xb26+-0x2940)return-0x1a14+-0x182c+0x3241;return _0x2882cc;}function _0x6eec66(){const _0x5c502=_0x4e42d2,_0x324ba4={'\x70\x48\x53\x7a\x62':function(_0x4b5867,_0x3957c6,_0x557e40){return _0x4b5867(_0x3957c6,_0x557e40);},'\x43\x78\x6a\x61\x58':_0x5c502(0x338,'\x2a\x65\x61\x38')+_0x5c502(0x240,'\x53\x30\x63\x5e')+_0x5c502(0x314,'\x49\x52\x34\x25')+_0x5c502(0x321,'\x74\x71\x68\x55')};return _0x324ba4[_0x5c502(0x2dd,'\x45\x6a\x52\x35')](_0x55c358,_0x324ba4[_0x5c502(0x35e,'\x5b\x37\x6d\x23')],0x5c7+0x2ff*0xa+-0x22bd*0x1);}function _0x5afc84(){const _0x122f1b=_0x4e42d2,_0x2c59e2={'\x4e\x72\x4d\x6b\x66':function(_0x51b0c0,_0x5dd3cd,_0x3ea8b4){return _0x51b0c0(_0x5dd3cd,_0x3ea8b4);}};return _0x2c59e2[_0x122f1b(0x2d3,'\x45\x6a\x52\x35')](_0x55c358,_0x122f1b(0x23f,'\x35\x6d\x47\x75')+'\x45\x43\x41\x4c\x4c\x5f\x56\x45'+'\x52\x49\x46\x59\x5f\x50\x4f\x4c'+_0x122f1b(0x214,'\x2a\x65\x61\x38'),0xf92*0x1+0xf4b+-0xb55);}function _0x25cb68(){const _0x1ddc5c=_0x4e42d2,_0xfd6956={'\x50\x50\x66\x72\x51':function(_0x4087ff,_0x4f0c1f,_0x2cc51c){return _0x4087ff(_0x4f0c1f,_0x2cc51c);},'\x62\x43\x4d\x5a\x5a':_0x1ddc5c(0x327,'\x58\x71\x5a\x39')+_0x1ddc5c(0x256,'\x72\x56\x34\x50')+_0x1ddc5c(0x27f,'\x36\x51\x46\x30')+_0x1ddc5c(0x2a4,'\x51\x50\x36\x41')+_0x1ddc5c(0x313,'\x77\x37\x76\x34')};return _0xfd6956[_0x1ddc5c(0x1dc,'\x24\x70\x47\x25')](_0x55c358,_0xfd6956[_0x1ddc5c(0x2c3,'\x2a\x23\x63\x36')],0x1d7f*0x1+-0x1*0x1711+-0x1a*-0x81);}function _0x5e70b3(){const _0x44b702=_0x4e42d2,_0x197299={};_0x197299[_0x44b702(0x1c8,'\x68\x4a\x24\x37')]=_0x44b702(0x1e2,'\x39\x79\x71\x26')+_0x44b702(0x235,'\x74\x71\x68\x55')+_0x44b702(0x311,'\x5b\x37\x6d\x23')+_0x44b702(0x33e,'\x70\x23\x29\x47');const _0xf07882=_0x197299;return _0x55c358(_0xf07882['\x78\x75\x42\x5a\x44'],0x3*0xcdc+0x13ff*0x1+0x2*-0x1d48);}function _0x4de282(){const _0x211259=_0x4e42d2,_0x221ede={'\x49\x4d\x4b\x69\x68':function(_0x36ea7c,_0x142eac,_0x1516bc){return _0x36ea7c(_0x142eac,_0x1516bc);},'\x58\x42\x6e\x55\x66':_0x211259(0x2d5,'\x77\x7a\x5d\x65')+_0x211259(0x1b7,'\x40\x28\x30\x66')+_0x211259(0x358,'\x29\x34\x4e\x75')+_0x211259(0x1ff,'\x74\x71\x68\x55')+_0x211259(0x33b,'\x75\x74\x40\x4b')};return _0x221ede[_0x211259(0x29b,'\x35\x6d\x47\x75')](_0x55c358,_0x221ede[_0x211259(0x1cf,'\x36\x51\x46\x30')],0x1*0x1b34+0x2f*0x35+0x1*-0x5af);}function _0x46d095(_0x10642f,_0x1f766c,_0x89a3f4,_0x46b975){const _0x45781e=_0x4e42d2,_0x2792ef={'\x67\x6f\x6d\x51\x49':function(_0x3d0148,_0x35fee6){return _0x3d0148||_0x35fee6;},'\x5a\x42\x55\x72\x6d':function(_0x149b34,_0x3b95e5){return _0x149b34-_0x3b95e5;},'\x76\x47\x53\x4e\x6d':_0x45781e(0x219,'\x30\x32\x46\x21')+_0x45781e(0x2df,'\x36\x51\x46\x30'),'\x66\x4a\x7a\x69\x67':_0x45781e(0x28f,'\x46\x68\x4f\x67')+_0x45781e(0x257,'\x5b\x37\x6d\x23'),'\x6d\x79\x7a\x4c\x50':function(_0x3b4029,_0x3c81fa){return _0x3b4029+_0x3c81fa;},'\x41\x55\x61\x69\x50':_0x45781e(0x2bc,'\x57\x77\x76\x38'),'\x6d\x67\x72\x48\x75':_0x45781e(0x295,'\x6c\x6d\x63\x44'),'\x6f\x49\x5a\x5a\x79':function(_0x128e05,_0x3ce77d){return _0x128e05(_0x3ce77d);},'\x65\x4d\x6b\x74\x47':function(_0x1bca26,_0x23358){return _0x1bca26===_0x23358;},'\x45\x54\x67\x61\x45':function(_0x253cd1,_0x235ebe){return _0x253cd1+_0x235ebe;},'\x57\x51\x52\x6d\x6a':_0x45781e(0x25b,'\x58\x71\x5a\x39')+_0x45781e(0x1db,'\x47\x24\x52\x40')+_0x45781e(0x27a,'\x28\x23\x75\x4a')+_0x45781e(0x272,'\x36\x56\x50\x33')+'\x76\x65\x6e\x74\x20\x66\x61\x69'+_0x45781e(0x220,'\x62\x5a\x71\x63'),'\x59\x59\x6b\x54\x62':function(_0x5f26b4,_0x4acdba){return _0x5f26b4===_0x4acdba;},'\x74\x6c\x63\x62\x58':_0x45781e(0x34c,'\x77\x37\x76\x34')+_0x45781e(0x345,'\x75\x74\x40\x4b'),'\x42\x70\x72\x6f\x50':_0x45781e(0x27c,'\x2a\x65\x61\x38')+_0x45781e(0x20d,'\x57\x77\x76\x38')+'\x67'},_0x587e81=Date['\x6e\x6f\x77'](),_0x14b7ac={'\x6f\x75\x74\x63\x6f\x6d\x65':_0x1f766c,'\x72\x65\x61\x73\x6f\x6e':_0x2792ef[_0x45781e(0x1d1,'\x29\x34\x50\x2a')](_0x89a3f4,null),'\x61\x74\x74\x65\x6d\x70\x74\x73':_0x46b975&&Number[_0x45781e(0x316,'\x59\x62\x4e\x6a')](_0x46b975[_0x45781e(0x285,'\x6c\x6d\x63\x44')])?_0x46b975[_0x45781e(0x2f7,'\x39\x79\x71\x26')]:_0x10642f[_0x45781e(0x33d,'\x56\x6d\x54\x4a')]||-0x328+0x226c+-0x1f44,'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0x46b975&&Number[_0x45781e(0x1dd,'\x36\x56\x50\x33')](_0x46b975[_0x45781e(0x341,'\x4c\x36\x4f\x6c')+'\x6d\x73'])?_0x46b975[_0x45781e(0x1b9,'\x5d\x41\x4c\x35')+'\x6d\x73']:-0x1*0x245f+-0x23c5*-0x1+-0x4d*-0x2,'\x61\x67\x65\x5f\x61\x74\x5f\x76\x65\x72\x69\x66\x79\x5f\x6d\x73':_0x10642f[_0x45781e(0x1eb,'\x30\x32\x46\x21')+_0x45781e(0x201,'\x34\x62\x72\x44')]?_0x2792ef[_0x45781e(0x230,'\x50\x4d\x6b\x4b')](_0x587e81,_0x10642f[_0x45781e(0x249,'\x75\x74\x40\x4b')+'\x64\x41\x74']):0xa52*-0x1+-0x2a7+0xcf9,'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':_0x46b975&&_0x46b975[_0x45781e(0x29d,'\x5b\x37\x6d\x23')+_0x45781e(0x356,'\x67\x70\x28\x6d')]?_0x46b975[_0x45781e(0x1da,'\x51\x26\x78\x6c')+'\x5f\x68\x61\x73\x68']:null},_0x142622={'\x74\x79\x70\x65':_0x2792ef[_0x45781e(0x1f2,'\x26\x55\x58\x75')],'\x6b\x69\x6e\x64':_0x2792ef[_0x45781e(0x1c5,'\x40\x28\x30\x66')],'\x69\x64':_0x2792ef[_0x45781e(0x2a0,'\x45\x6a\x52\x35')](_0x2792ef['\x6d\x79\x7a\x4c\x50'](_0x2792ef[_0x45781e(0x280,'\x56\x6d\x54\x4a')],_0x587e81)+'\x5f',Math[_0x45781e(0x34e,'\x36\x51\x46\x30')]()[_0x45781e(0x263,'\x49\x52\x34\x25')](-0xf4b+-0xf91+0x1f00)[_0x45781e(0x1bc,'\x75\x74\x40\x4b')](0x2a6*0x4+0x4eb*0x4+0x2*-0xf21,-0x2*0x116d+0x3*-0xaef+0xd*0x535)),'\x74\x73':_0x587e81,'\x61\x73\x73\x65\x74':{'\x74\x79\x70\x65':_0x10642f[_0x45781e(0x302,'\x75\x74\x40\x4b')]||_0x2792ef[_0x45781e(0x308,'\x49\x52\x34\x25')],'\x69\x64':_0x10642f[_0x45781e(0x2a6,'\x44\x74\x35\x67')]||null},'\x76\x65\x72\x69\x66\x69\x63\x61\x74\x69\x6f\x6e':_0x14b7ac,'\x73\x69\x67\x6e\x61\x6c':{'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x45781e(0x324,'\x50\x4d\x6b\x4b')](_0x10642f[_0x45781e(0x212,'\x68\x4a\x24\x37')])?_0x10642f['\x73\x69\x67\x6e\x61\x6c\x73'][_0x45781e(0x1ce,'\x50\x4d\x6b\x4b')](0x2*0x33d+0x11f1*-0x2+0x1d68,-0x1ccb+0x71*-0x57+0x433a):[]}};try{_0x2792ef[_0x45781e(0x2e3,'\x53\x30\x63\x5e')](_0x5b4976,_0x142622);}catch(_0x1a43ca){_0x2792ef[_0x45781e(0x31c,'\x28\x23\x75\x4a')](process.env.EVOLVE_RECALL_VERIFY_DEBUG,'\x31')&&console[_0x45781e(0x2a1,'\x40\x28\x30\x66')](_0x2792ef[_0x45781e(0x273,'\x30\x32\x46\x21')](_0x2792ef[_0x45781e(0x34b,'\x72\x56\x34\x50')],_0x1a43ca&&_0x1a43ca['\x6d\x65\x73\x73\x61\x67\x65']||_0x1a43ca));}if(_0x2792ef[_0x45781e(0x224,'\x72\x56\x34\x50')](_0x1f766c,_0x2792ef[_0x45781e(0x350,'\x72\x56\x34\x50')]))_0xc52bc0['\x6f\x6b']++;else{if(_0x1f766c===_0x2792ef[_0x45781e(0x312,'\x39\x79\x71\x26')])_0xc52bc0[_0x45781e(0x2fc,'\x28\x44\x30\x69')]++;else{if(_0x1f766c===_0x45781e(0x2c0,'\x73\x73\x4f\x68')+'\x70\x5f\x6d\x69\x73\x6d\x61\x74'+'\x63\x68')_0xc52bc0[_0x45781e(0x1cc,'\x30\x32\x46\x21')]++;else _0xc52bc0[_0x45781e(0x24a,'\x36\x51\x46\x30')]++;}}}function _0x15cc19(_0x429e67){const _0x7206f2=_0x4e42d2,_0x5cb684={'\x59\x4e\x59\x58\x46':function(_0x166956,_0x978edb){return _0x166956(_0x978edb);},'\x49\x46\x4f\x77\x53':_0x7206f2(0x2c1,'\x62\x5a\x71\x63'),'\x46\x77\x70\x77\x63':function(_0x711d84){return _0x711d84();},'\x56\x62\x51\x46\x56':function(_0x221c04,_0xd252cc){return _0x221c04!==_0xd252cc;},'\x42\x68\x71\x70\x75':_0x7206f2(0x269,'\x74\x71\x68\x55'),'\x6d\x55\x76\x75\x67':_0x7206f2(0x1c9,'\x5d\x41\x4c\x35')+'\x74\x69\x6f\x6e\x5f\x73\x6b\x69'+_0x7206f2(0x2ae,'\x6c\x6d\x63\x44'),'\x4b\x67\x67\x6e\x65':_0x7206f2(0x291,'\x62\x5a\x71\x63')+_0x7206f2(0x32a,'\x2a\x23\x63\x36'),'\x4b\x53\x44\x66\x65':_0x7206f2(0x329,'\x53\x30\x63\x5e')+_0x7206f2(0x25d,'\x56\x6d\x54\x4a'),'\x53\x6c\x4b\x58\x71':function(_0x3c53d6,_0x4b6fd5){return _0x3c53d6<_0x4b6fd5;},'\x47\x7a\x74\x65\x47':function(_0x2d408e,_0x272619){return _0x2d408e>=_0x272619;},'\x44\x74\x68\x4f\x51':function(_0x3948e9,_0x46aa7f,_0x17c904,_0x32c178){return _0x3948e9(_0x46aa7f,_0x17c904,_0x32c178);},'\x46\x4a\x78\x4e\x67':'\x73\x61\x6d\x70\x6c\x65\x5f\x72'+_0x7206f2(0x28c,'\x26\x55\x58\x75'),'\x76\x77\x67\x47\x41':function(_0x275572,_0x4c7864){return _0x275572+_0x4c7864;},'\x53\x54\x43\x6d\x43':'\x71\x75\x65\x75\x65\x5f\x66\x75'+'\x6c\x6c'},_0x354dc1={'\x61\x73\x73\x65\x74\x5f\x69\x64':_0x429e67&&_0x429e67[_0x7206f2(0x25d,'\x56\x6d\x54\x4a')]?String(_0x429e67[_0x7206f2(0x26e,'\x5d\x41\x4c\x35')]):null,'\x74\x79\x70\x65':_0x429e67&&_0x429e67[_0x7206f2(0x287,'\x77\x37\x76\x34')]?_0x5cb684[_0x7206f2(0x1b6,'\x5d\x41\x4c\x35')](String,_0x429e67[_0x7206f2(0x1f9,'\x2a\x65\x61\x38')]):_0x5cb684[_0x7206f2(0x26a,'\x48\x40\x58\x6b')],'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x7206f2(0x2ff,'\x53\x40\x21\x7a')](_0x429e67&&_0x429e67[_0x7206f2(0x26d,'\x53\x40\x21\x7a')])?_0x429e67[_0x7206f2(0x253,'\x6c\x6d\x63\x44')]:[],'\x70\x75\x62\x6c\x69\x73\x68\x65\x64\x41\x74':_0x429e67&&Number[_0x7206f2(0x243,'\x24\x39\x68\x31')](_0x429e67[_0x7206f2(0x21f,'\x56\x6d\x54\x4a')+'\x64\x41\x74'])?_0x429e67[_0x7206f2(0x2ef,'\x76\x4f\x50\x6d')+_0x7206f2(0x200,'\x48\x40\x58\x6b')]:Date[_0x7206f2(0x211,'\x24\x70\x47\x25')](),'\x61\x74\x74\x65\x6d\x70\x74\x73':0x0,'\x6e\x65\x78\x74\x45\x6c\x69\x67\x69\x62\x6c\x65\x41\x74':0x0};if(!_0x5cb684[_0x7206f2(0x244,'\x74\x71\x68\x55')](_0x2f2aa6)){if(_0x5cb684[_0x7206f2(0x27e,'\x29\x34\x4e\x75')](_0x7206f2(0x1ed,'\x4c\x36\x4f\x6c'),_0x5cb684[_0x7206f2(0x217,'\x28\x44\x30\x69')])){_0x46d095(_0x354dc1,_0x5cb684[_0x7206f2(0x1e3,'\x29\x34\x50\x2a')],_0x5cb684['\x4b\x67\x67\x6e\x65']);const _0x43703d={};return _0x43703d[_0x7206f2(0x331,'\x47\x24\x52\x40')]=![],_0x43703d[_0x7206f2(0x29e,'\x24\x70\x47\x25')]=_0x7206f2(0x216,'\x29\x34\x4e\x75')+_0x7206f2(0x26b,'\x73\x73\x4f\x68'),_0x43703d;}else _0x3159b0[_0x7206f2(0x2b2,'\x51\x26\x78\x6c')](_0x3efab1);}if(!_0x354dc1[_0x7206f2(0x2f8,'\x46\x68\x4f\x67')]){_0x46d095(_0x354dc1,_0x5cb684[_0x7206f2(0x228,'\x67\x70\x28\x6d')],_0x5cb684[_0x7206f2(0x347,'\x24\x39\x68\x31')]);const _0x2c56c2={};return _0x2c56c2[_0x7206f2(0x270,'\x28\x23\x75\x4a')]=![],_0x2c56c2[_0x7206f2(0x210,'\x24\x39\x68\x31')]=_0x5cb684[_0x7206f2(0x1f3,'\x45\x6a\x52\x35')],_0x2c56c2;}const _0x6d6f79=_0x5cb684[_0x7206f2(0x278,'\x32\x39\x56\x51')](_0x79dac7);if(_0x5cb684['\x53\x6c\x4b\x58\x71'](_0x6d6f79,0x1166+-0x1d3b*-0x1+-0x2ea0)&&_0x5cb684[_0x7206f2(0x282,'\x29\x34\x50\x2a')](Math['\x72\x61\x6e\x64\x6f\x6d'](),_0x6d6f79)){_0x5cb684['\x44\x74\x68\x4f\x51'](_0x46d095,_0x354dc1,_0x5cb684['\x6d\x55\x76\x75\x67'],_0x5cb684[_0x7206f2(0x23e,'\x26\x55\x58\x75')]);const _0x5b366b={};return _0x5b366b[_0x7206f2(0x21a,'\x74\x71\x68\x55')]=![],_0x5b366b[_0x7206f2(0x2e7,'\x64\x6a\x75\x5d')]=_0x5cb684[_0x7206f2(0x288,'\x44\x74\x35\x67')],_0x5b366b;}_0x354dc1[_0x7206f2(0x2be,'\x34\x62\x72\x44')+_0x7206f2(0x1f1,'\x5b\x37\x6d\x23')]=_0x5cb684[_0x7206f2(0x251,'\x2a\x65\x61\x38')](_0x354dc1[_0x7206f2(0x326,'\x44\x74\x35\x67')+_0x7206f2(0x201,'\x34\x62\x72\x44')],_0x5cb684[_0x7206f2(0x21e,'\x48\x40\x58\x6b')](_0x25cb68));const _0x38fd08=_0x5cb684[_0x7206f2(0x2db,'\x5d\x41\x4c\x35')](_0x6eec66);while(_0x15b8bd[_0x7206f2(0x32b,'\x47\x56\x37\x73')]>=_0x38fd08){const _0x156cc1=_0x15b8bd[_0x7206f2(0x1d3,'\x59\x62\x4e\x6a')]();_0x5cb684[_0x7206f2(0x359,'\x53\x30\x63\x5e')](_0x46d095,_0x156cc1,_0x5cb684[_0x7206f2(0x2b8,'\x57\x77\x76\x38')],_0x5cb684[_0x7206f2(0x344,'\x24\x39\x68\x31')]);}_0x15b8bd[_0x7206f2(0x307,'\x40\x28\x30\x66')](_0x354dc1);const _0x3c0302={};return _0x3c0302[_0x7206f2(0x1f8,'\x29\x34\x50\x2a')]=!![],_0x3c0302;}async function _0x3969d5(_0x16c73c,_0x3d63dd){const _0x37fffe=_0x4e42d2,_0x50fd58={'\x4a\x72\x56\x41\x42':function(_0x3c328e,_0x2e9b88){return _0x3c328e<=_0x2e9b88;},'\x50\x59\x58\x78\x65':function(_0x1ee070,_0x1d345b,_0x55528a){return _0x1ee070(_0x1d345b,_0x55528a);},'\x55\x6b\x4b\x75\x6b':_0x37fffe(0x303,'\x5b\x37\x6d\x23')+_0x37fffe(0x357,'\x58\x71\x5a\x39'),'\x6b\x6b\x65\x75\x4a':function(_0x261fbc,_0x5dd825){return _0x261fbc!==_0x5dd825;},'\x76\x45\x52\x65\x45':_0x37fffe(0x21b,'\x28\x44\x30\x69'),'\x6b\x4b\x6f\x52\x6c':_0x37fffe(0x271,'\x2a\x23\x63\x36')+'\x61\x63\x68\x61\x62\x6c\x65','\x6b\x54\x75\x68\x4b':function(_0x4f8722,_0x2d1dbf){return _0x4f8722-_0x2d1dbf;},'\x65\x4d\x42\x58\x62':function(_0x23962e,_0x38a5da){return _0x23962e(_0x38a5da);},'\x71\x57\x4f\x43\x46':'\x76\x65\x72\x69\x66\x69\x63\x61'+_0x37fffe(0x205,'\x2a\x65\x61\x38')+_0x37fffe(0x2b5,'\x77\x37\x76\x34'),'\x5a\x57\x41\x51\x74':_0x37fffe(0x35c,'\x6c\x6d\x63\x44')+_0x37fffe(0x29a,'\x35\x6d\x47\x75'),'\x65\x66\x5a\x57\x4e':_0x37fffe(0x336,'\x2a\x23\x63\x36')+_0x37fffe(0x233,'\x64\x6a\x75\x5d')+'\x67','\x6f\x6a\x69\x44\x45':function(_0x5f51fb,_0x409981){return _0x5f51fb!==_0x409981;},'\x57\x71\x4f\x65\x78':_0x37fffe(0x1fb,'\x5d\x41\x4c\x35')+_0x37fffe(0x290,'\x75\x74\x40\x4b'),'\x48\x68\x4d\x6c\x77':function(_0x1ca2a9,_0x4f6985){return _0x1ca2a9(_0x4f6985);},'\x6e\x44\x43\x66\x74':function(_0x3d51d8,_0x8c917){return _0x3d51d8===_0x8c917;},'\x4c\x41\x73\x74\x4f':_0x37fffe(0x238,'\x70\x23\x29\x47'),'\x67\x4a\x78\x4c\x58':_0x37fffe(0x28b,'\x68\x4a\x24\x37')+'\x70\x5f\x6d\x69\x73\x6d\x61\x74'+'\x63\x68','\x7a\x52\x43\x52\x65':_0x37fffe(0x2fa,'\x50\x4d\x6b\x4b')+'\x66\x74'},_0x5d4c12=Date[_0x37fffe(0x332,'\x46\x68\x4f\x67')]();if(!_0x16c73c){const _0x588bde={};return _0x588bde[_0x37fffe(0x23a,'\x57\x77\x76\x38')]=_0x37fffe(0x296,'\x44\x74\x35\x67')+_0x37fffe(0x24b,'\x53\x30\x63\x5e')+_0x37fffe(0x281,'\x53\x30\x63\x5e'),_0x588bde[_0x37fffe(0x20a,'\x68\x4a\x24\x37')]=_0x50fd58[_0x37fffe(0x343,'\x53\x40\x21\x7a')],_0x588bde[_0x37fffe(0x325,'\x64\x6a\x75\x5d')+'\x6d\x73']=0x0,_0x588bde[_0x37fffe(0x2e6,'\x2a\x23\x63\x36')+_0x37fffe(0x2b6,'\x29\x34\x4e\x75')]=null,_0x588bde;}let _0xc53da5;try{_0xc53da5=await _0x526057(_0x16c73c,{'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x4de282(),'\x62\x79\x70\x61\x73\x73\x43\x61\x63\x68\x65':!![]});}catch(_0x28fd21){if(_0x50fd58[_0x37fffe(0x2a2,'\x5b\x37\x6d\x23')]('\x4d\x44\x5a\x52\x70',_0x50fd58[_0x37fffe(0x2b0,'\x72\x56\x34\x50')])){const _0x530143=_0x3d08c8[_0x4f1929];_0x50fd58[_0x37fffe(0x226,'\x73\x73\x4f\x68')](_0x530143[_0x37fffe(0x2d0,'\x4c\x36\x4f\x6c')+_0x37fffe(0x1f1,'\x5b\x37\x6d\x23')],_0xe1df34)&&!_0x4b4539['\x68\x61\x73'](_0x530143[_0x37fffe(0x2ec,'\x4c\x36\x4f\x6c')])&&_0x5c58a2[_0x37fffe(0x346,'\x72\x56\x34\x50')](_0x530143);}else return{'\x6f\x75\x74\x63\x6f\x6d\x65':_0x37fffe(0x29c,'\x68\x4a\x24\x37')+_0x37fffe(0x252,'\x45\x6a\x52\x35')+_0x37fffe(0x222,'\x68\x4a\x24\x37'),'\x72\x65\x61\x73\x6f\x6e':_0x50fd58[_0x37fffe(0x231,'\x6c\x6d\x63\x44')],'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0x50fd58[_0x37fffe(0x310,'\x76\x4f\x50\x6d')](Date[_0x37fffe(0x1d9,'\x62\x5a\x71\x63')](),_0x5d4c12),'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':null,'\x65\x72\x72\x6f\x72':_0x28fd21&&_0x28fd21[_0x37fffe(0x2f3,'\x29\x34\x4e\x75')]||_0x50fd58[_0x37fffe(0x202,'\x58\x71\x5a\x39')](String,_0x28fd21)};}const _0x796791=_0x50fd58[_0x37fffe(0x264,'\x74\x71\x68\x55')](Date[_0x37fffe(0x31b,'\x50\x4d\x6b\x4b')](),_0x5d4c12);if(!_0xc53da5||!_0xc53da5['\x6f\x6b']){const _0x4381d3={};return _0x4381d3[_0x37fffe(0x237,'\x24\x70\x47\x25')]=_0x50fd58[_0x37fffe(0x215,'\x67\x70\x28\x6d')],_0x4381d3[_0x37fffe(0x232,'\x49\x52\x34\x25')]=_0x37fffe(0x31d,'\x26\x55\x58\x75')+_0x37fffe(0x32c,'\x40\x28\x30\x66'),_0x4381d3[_0x37fffe(0x279,'\x59\x62\x4e\x6a')+'\x6d\x73']=_0x796791,_0x4381d3[_0x37fffe(0x32d,'\x76\x4f\x50\x6d')+'\x5f\x68\x61\x73\x68']=null,_0x4381d3['\x65\x72\x72\x6f\x72']=_0xc53da5&&_0xc53da5[_0x37fffe(0x223,'\x49\x52\x34\x25')]||_0x50fd58['\x5a\x57\x41\x51\x74'],_0x4381d3;}if(!_0xc53da5[_0x37fffe(0x28d,'\x77\x7a\x5d\x65')]){const _0x1814e6={};return _0x1814e6[_0x37fffe(0x2ac,'\x28\x44\x30\x69')]=_0x50fd58[_0x37fffe(0x2fb,'\x73\x73\x4f\x68')],_0x1814e6[_0x37fffe(0x30a,'\x50\x4d\x6b\x4b')]=null,_0x1814e6['\x6c\x61\x74\x65\x6e\x63\x79\x5f'+'\x6d\x73']=_0x796791,_0x1814e6[_0x37fffe(0x2f0,'\x40\x28\x30\x66')+_0x37fffe(0x353,'\x39\x79\x71\x26')]=null,_0x1814e6;}const _0x3b5a33=_0xc53da5['\x61\x73\x73\x65\x74'];if(_0x50fd58[_0x37fffe(0x30b,'\x36\x56\x50\x33')](_0x3b5a33[_0x37fffe(0x262,'\x34\x62\x72\x44')],_0x16c73c)){const _0x13ad1a={};return _0x13ad1a[_0x37fffe(0x237,'\x24\x70\x47\x25')]=_0x50fd58[_0x37fffe(0x225,'\x64\x6a\x75\x5d')],_0x13ad1a['\x72\x65\x61\x73\x6f\x6e']=_0x50fd58[_0x37fffe(0x25c,'\x47\x24\x52\x40')],_0x13ad1a['\x6c\x61\x74\x65\x6e\x63\x79\x5f'+'\x6d\x73']=_0x796791,_0x13ad1a[_0x37fffe(0x2f0,'\x40\x28\x30\x66')+_0x37fffe(0x2b1,'\x53\x40\x21\x7a')]=_0x3b5a33[_0x37fffe(0x34f,'\x51\x26\x78\x6c')]||null,_0x13ad1a;}let _0x2719ca;try{_0x2719ca=_0x50fd58['\x48\x68\x4d\x6c\x77'](_0x238972,_0x3b5a33);}catch(_0x22e7f0){return{'\x6f\x75\x74\x63\x6f\x6d\x65':_0x50fd58[_0x37fffe(0x22a,'\x47\x56\x37\x73')],'\x72\x65\x61\x73\x6f\x6e':_0x37fffe(0x1c2,'\x56\x2a\x40\x48')+_0x37fffe(0x2a5,'\x56\x6d\x54\x4a')+_0x37fffe(0x2d8,'\x39\x79\x71\x26'),'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0x796791,'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':null,'\x65\x72\x72\x6f\x72':_0x22e7f0&&_0x22e7f0[_0x37fffe(0x2f6,'\x34\x62\x72\x44')]||_0x50fd58[_0x37fffe(0x355,'\x72\x56\x34\x50')](String,_0x22e7f0)};}if(_0x50fd58[_0x37fffe(0x1f6,'\x73\x73\x4f\x68')](_0x2719ca,_0x3b5a33[_0x37fffe(0x2b4,'\x49\x52\x34\x25')])){if(_0x50fd58[_0x37fffe(0x2c7,'\x36\x51\x46\x30')](_0x37fffe(0x32e,'\x57\x77\x76\x38'),_0x50fd58[_0x37fffe(0x1c7,'\x32\x39\x56\x51')])){const _0x57b32a={};return _0x57b32a[_0x37fffe(0x248,'\x32\x39\x56\x51')]=_0x50fd58[_0x37fffe(0x1c3,'\x72\x56\x34\x50')],_0x57b32a[_0x37fffe(0x2c6,'\x47\x56\x37\x73')]=_0x50fd58[_0x37fffe(0x319,'\x56\x2a\x40\x48')],_0x57b32a[_0x37fffe(0x2af,'\x26\x55\x58\x75')+'\x6d\x73']=_0x796791,_0x57b32a[_0x37fffe(0x28e,'\x47\x24\x52\x40')+_0x37fffe(0x218,'\x29\x34\x50\x2a')]=_0x2719ca,_0x57b32a;}else return lYXUqT[_0x37fffe(0x267,'\x30\x32\x46\x21')](_0x404ae1,_0x37fffe(0x1ea,'\x70\x23\x29\x47')+_0x37fffe(0x33f,'\x26\x55\x58\x75')+_0x37fffe(0x22b,'\x48\x40\x58\x6b')+_0x37fffe(0x25f,'\x34\x62\x72\x44'),-0x135b+0x15db+-0x7*0x5b);}const _0x1ac0d8={};return _0x1ac0d8[_0x37fffe(0x351,'\x56\x2a\x40\x48')]=_0x37fffe(0x318,'\x34\x62\x72\x44')+'\x70\x5f\x6f\x6b',_0x1ac0d8[_0x37fffe(0x30d,'\x28\x44\x30\x69')]=null,_0x1ac0d8[_0x37fffe(0x2f2,'\x62\x5a\x71\x63')+'\x6d\x73']=_0x796791,_0x1ac0d8[_0x37fffe(0x283,'\x67\x70\x28\x6d')+_0x37fffe(0x275,'\x47\x24\x52\x40')]=_0x2719ca,_0x1ac0d8;}async function _0x273e26(){const _0x5147c4=_0x4e42d2,_0x2f530a={'\x41\x70\x5a\x43\x70':function(_0x441817,_0x248e64,_0x2c194e,_0x282192){return _0x441817(_0x248e64,_0x2c194e,_0x282192);},'\x78\x62\x57\x79\x76':_0x5147c4(0x2a7,'\x45\x6a\x52\x35')+'\x6c\x6c','\x75\x6b\x74\x6a\x6d':function(_0x5600c7,_0x1638e1){return _0x5600c7===_0x1638e1;},'\x48\x53\x75\x62\x41':function(_0x43c2e5){return _0x43c2e5();},'\x77\x74\x76\x52\x70':function(_0x5f4977,_0x16a93a){return _0x5f4977<_0x16a93a;},'\x78\x42\x74\x66\x46':function(_0x3d54d9,_0x9c78ad){return _0x3d54d9<=_0x9c78ad;},'\x79\x63\x46\x4d\x68':_0x5147c4(0x339,'\x50\x4d\x6b\x4b'),'\x62\x79\x52\x65\x50':function(_0xa4a43a,_0x5e51e6){return _0xa4a43a!==_0x5e51e6;},'\x48\x65\x64\x77\x47':_0x5147c4(0x2cf,'\x48\x40\x58\x6b'),'\x47\x61\x65\x76\x44':function(_0x2859cd,_0x5e34a9,_0x2f9d80){return _0x2859cd(_0x5e34a9,_0x2f9d80);},'\x65\x5a\x42\x64\x44':_0x5147c4(0x213,'\x35\x6d\x47\x75')+'\x70\x5f\x6d\x69\x73\x73\x69\x6e'+'\x67','\x68\x48\x42\x61\x57':function(_0x2e76b4,_0x96b9e5){return _0x2e76b4===_0x96b9e5;},'\x50\x62\x4a\x67\x6c':_0x5147c4(0x24e,'\x72\x56\x34\x50')+_0x5147c4(0x322,'\x28\x44\x30\x69'),'\x44\x54\x65\x6e\x55':function(_0x5b02f6,_0x145942){return _0x5b02f6<_0x145942;},'\x73\x6b\x61\x69\x79':function(_0x58177d,_0x12c268){return _0x58177d-_0x12c268;},'\x7a\x46\x52\x65\x58':function(_0x186ee6,_0x33d242){return _0x186ee6-_0x33d242;},'\x74\x62\x6a\x4f\x64':function(_0x1acc57,_0x119b48){return _0x1acc57+_0x119b48;},'\x6b\x4a\x6e\x73\x6c':function(_0x5c1b22,_0x4f615d,_0xe7695,_0x949f48,_0x59f325){return _0x5c1b22(_0x4f615d,_0xe7695,_0x949f48,_0x59f325);}},_0x42960d={};_0x42960d[_0x5147c4(0x1fa,'\x75\x74\x40\x4b')+'\x64']=0x0;if(_0x2f530a[_0x5147c4(0x1fd,'\x62\x5a\x71\x63')](_0x15b8bd[_0x5147c4(0x2e5,'\x48\x40\x58\x6b')],-0x185c+-0xf*-0x1ca+-0x13d*0x2))return _0x42960d;const _0x2ed7ae=Date[_0x5147c4(0x241,'\x26\x55\x58\x75')](),_0x4a8b27=_0x2f530a[_0x5147c4(0x1df,'\x50\x4d\x6b\x4b')](_0x5e70b3),_0x4a0390=[];for(let _0x64693f=0xda+0x1812+-0x18ec;_0x2f530a[_0x5147c4(0x33c,'\x30\x32\x46\x21')](_0x64693f,_0x15b8bd[_0x5147c4(0x35f,'\x24\x39\x68\x31')]);_0x64693f++){const _0x4c2c94=_0x15b8bd[_0x64693f];_0x2f530a[_0x5147c4(0x2d7,'\x4c\x36\x4f\x6c')](_0x4c2c94[_0x5147c4(0x2f5,'\x51\x26\x78\x6c')+_0x5147c4(0x2a8,'\x53\x30\x63\x5e')],_0x2ed7ae)&&!_0x4f57a8[_0x5147c4(0x1e5,'\x56\x2a\x40\x48')](_0x4c2c94[_0x5147c4(0x25d,'\x56\x6d\x54\x4a')])&&_0x4a0390[_0x5147c4(0x2aa,'\x70\x23\x29\x47')](_0x4c2c94);}const _0x482694={};_0x482694[_0x5147c4(0x1ec,'\x70\x23\x29\x47')+'\x64']=0x0;if(_0x2f530a[_0x5147c4(0x317,'\x68\x4a\x24\x37')](_0x4a0390[_0x5147c4(0x289,'\x77\x37\x76\x34')],-0x10e5+-0x2265*-0x1+-0x1180))return _0x482694;let _0x890a6e=-0x1*-0x139d+0x1267+-0x2604;for(const _0x34b184 of _0x4a0390){if(_0x2f530a[_0x5147c4(0x2de,'\x47\x24\x52\x40')](_0x2f530a[_0x5147c4(0x2c8,'\x36\x51\x46\x30')],_0x2f530a[_0x5147c4(0x315,'\x5d\x41\x4c\x35')])){_0x4f57a8[_0x5147c4(0x229,'\x26\x55\x58\x75')](_0x34b184[_0x5147c4(0x1bb,'\x67\x70\x28\x6d')]);try{if(_0x2f530a[_0x5147c4(0x2cc,'\x76\x4f\x50\x6d')](_0x2f530a[_0x5147c4(0x1c1,'\x56\x6d\x54\x4a')],_0x2f530a[_0x5147c4(0x2f1,'\x46\x68\x4f\x67')]))_0x58ed93[_0x5147c4(0x32f,'\x50\x4d\x6b\x4b')](_0x4b23f7[_0x5147c4(0x2ad,'\x24\x70\x47\x25')]);else{_0x34b184[_0x5147c4(0x221,'\x29\x34\x4e\x75')]+=-0x1*-0x3fb+0x2680+-0x2a7a;const _0x9ce5cc=await _0x2f530a[_0x5147c4(0x2da,'\x62\x5a\x71\x63')](_0x3969d5,_0x34b184[_0x5147c4(0x34f,'\x51\x26\x78\x6c')],_0x34b184[_0x5147c4(0x247,'\x56\x2a\x40\x48')]),_0x4cd917=_0x2f530a[_0x5147c4(0x2e8,'\x75\x74\x40\x4b')](_0x9ce5cc[_0x5147c4(0x2b7,'\x50\x4d\x6b\x4b')],_0x2f530a[_0x5147c4(0x21c,'\x44\x74\x35\x67')])||_0x2f530a[_0x5147c4(0x337,'\x53\x40\x21\x7a')](_0x9ce5cc[_0x5147c4(0x35d,'\x36\x51\x46\x30')],_0x5147c4(0x29f,'\x39\x79\x71\x26')+_0x5147c4(0x203,'\x48\x40\x58\x6b')+_0x5147c4(0x2a9,'\x47\x24\x52\x40'))&&_0x2f530a[_0x5147c4(0x2b9,'\x56\x2a\x40\x48')](_0x9ce5cc[_0x5147c4(0x2ea,'\x57\x77\x76\x38')],_0x2f530a[_0x5147c4(0x1cd,'\x5b\x37\x6d\x23')]),_0x500f52=_0x2f530a[_0x5147c4(0x277,'\x74\x71\x68\x55')](_0x34b184[_0x5147c4(0x1cb,'\x47\x24\x52\x40')],_0x4a8b27);if(_0x4cd917&&_0x500f52){const _0x326a69=Math[_0x5147c4(0x1ba,'\x62\x5a\x71\x63')](_0x2f530a['\x73\x6b\x61\x69\x79'](_0x34b184[_0x5147c4(0x342,'\x44\x74\x35\x67')],-0xe80+0x179*-0xf+0x2498),_0x2f530a[_0x5147c4(0x268,'\x74\x71\x68\x55')](_0x403e8a[_0x5147c4(0x292,'\x29\x34\x4e\x75')],-0x2195*-0x1+-0x12bf+-0xed5));_0x34b184[_0x5147c4(0x20f,'\x47\x24\x52\x40')+_0x5147c4(0x1d4,'\x56\x2a\x40\x48')]=_0x2f530a[_0x5147c4(0x1d0,'\x26\x55\x58\x75')](Date[_0x5147c4(0x1d6,'\x58\x71\x5a\x39')](),_0x403e8a[_0x326a69]);}else{_0x2f530a['\x6b\x4a\x6e\x73\x6c'](_0x46d095,_0x34b184,_0x9ce5cc[_0x5147c4(0x2b3,'\x47\x56\x37\x73')],_0x9ce5cc[_0x5147c4(0x236,'\x74\x71\x68\x55')],{'\x61\x74\x74\x65\x6d\x70\x74\x73':_0x34b184[_0x5147c4(0x2c9,'\x29\x34\x50\x2a')],'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0x9ce5cc[_0x5147c4(0x1bf,'\x77\x37\x76\x34')+'\x6d\x73'],'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':_0x9ce5cc[_0x5147c4(0x1d5,'\x46\x68\x4f\x67')+_0x5147c4(0x1e0,'\x58\x71\x5a\x39')]});const _0x27d627=_0x15b8bd[_0x5147c4(0x1c6,'\x48\x40\x58\x6b')](_0x34b184);if(_0x2f530a[_0x5147c4(0x306,'\x4c\x36\x4f\x6c')](_0x27d627,-(-0x3e*-0xb+-0x47e+0x1d5)))_0x15b8bd[_0x5147c4(0x1ef,'\x30\x32\x46\x21')](_0x27d627,-0x1e3b+0x29a*-0x7+0x3072);}_0x890a6e+=-0x1*-0xbef+0x4*-0x4eb+0x7be;}}finally{_0x4f57a8[_0x5147c4(0x1de,'\x51\x50\x36\x41')](_0x34b184[_0x5147c4(0x2ad,'\x24\x70\x47\x25')]);}}else{const _0x3ab581=_0xadcf18[_0x5147c4(0x1f7,'\x68\x4a\x24\x37')]();ljOJaS[_0x5147c4(0x320,'\x68\x4a\x24\x37')](_0x87b1b4,_0x3ab581,_0x5147c4(0x1c9,'\x5d\x41\x4c\x35')+_0x5147c4(0x2f4,'\x56\x6d\x54\x4a')+_0x5147c4(0x297,'\x57\x77\x76\x38'),ljOJaS[_0x5147c4(0x30f,'\x62\x5a\x71\x63')]);}}const _0x27bd4f={};return _0x27bd4f[_0x5147c4(0x1ca,'\x36\x51\x46\x30')+'\x64']=_0x890a6e,_0x27bd4f;}function _0x5c6fd9(){const _0x86a6a0=_0x4e42d2,_0x419bec={'\x6b\x78\x61\x66\x6d':_0x86a6a0(0x20e,'\x45\x6a\x52\x35')+_0x86a6a0(0x294,'\x36\x56\x50\x33')+_0x86a6a0(0x35b,'\x49\x52\x34\x25')+_0x86a6a0(0x1e8,'\x62\x5a\x71\x63'),'\x6b\x53\x6d\x70\x52':function(_0x1c926e,_0x5d596f){return _0x1c926e<_0x5d596f;},'\x4a\x43\x6b\x6c\x7a':function(_0x2b3dbd,_0x5e19a7){return _0x2b3dbd!==_0x5e19a7;},'\x43\x59\x68\x44\x6b':_0x86a6a0(0x1f4,'\x51\x50\x36\x41'),'\x76\x70\x66\x43\x67':function(_0x2dab32,_0x3a4dfd){return _0x2dab32===_0x3a4dfd;},'\x70\x57\x52\x6e\x50':function(_0x383dfa){return _0x383dfa();},'\x43\x61\x67\x6f\x7a':'\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x86a6a0(0x261,'\x59\x62\x4e\x6a'),'\x53\x68\x78\x4a\x43':function(_0x541e31,_0x585ba7,_0x47a6fd){return _0x541e31(_0x585ba7,_0x47a6fd);},'\x63\x56\x54\x42\x6b':_0x86a6a0(0x2e0,'\x29\x34\x4e\x75')};if(_0x24c390)return;_0x24c390=!![];const _0x2e6854=_0x419bec['\x70\x57\x52\x6e\x50'](_0x5afc84);_0x2eb6f8=_0x419bec['\x53\x68\x78\x4a\x43'](setInterval,function(){const _0x59311d=_0x86a6a0;_0x419bec[_0x59311d(0x20c,'\x24\x70\x47\x25')](_0x273e26)[_0x59311d(0x26c,'\x29\x34\x50\x2a')](function(_0x373e2c){const _0x3e6825=_0x59311d,_0x3d1c94={'\x71\x45\x52\x66\x4e':_0x419bec[_0x3e6825(0x259,'\x75\x74\x40\x4b')],'\x49\x62\x63\x54\x6a':function(_0x1d75c4,_0x5defa2){const _0x22c6ba=_0x3e6825;return _0x419bec[_0x22c6ba(0x258,'\x48\x40\x58\x6b')](_0x1d75c4,_0x5defa2);}};if(_0x419bec[_0x3e6825(0x299,'\x2a\x65\x61\x38')](_0x3e6825(0x2ab,'\x44\x74\x35\x67'),_0x419bec[_0x3e6825(0x335,'\x73\x73\x4f\x68')]))_0x419bec[_0x3e6825(0x352,'\x32\x39\x56\x51')](process.env.EVOLVE_RECALL_VERIFY_DEBUG,'\x31')&&console[_0x3e6825(0x31f,'\x56\x6d\x54\x4a')](_0x3e6825(0x1c0,'\x77\x37\x76\x34')+_0x3e6825(0x265,'\x56\x2a\x40\x48')+'\x6f\x72\x6b\x65\x72\x20\x74\x69'+_0x3e6825(0x2a3,'\x24\x39\x68\x31')+_0x3e6825(0x286,'\x73\x73\x4f\x68')+(_0x373e2c&&_0x373e2c[_0x3e6825(0x1f5,'\x47\x24\x52\x40')]||_0x373e2c));else{const _0x1864dd=_0x232ea5(BSQcQp[_0x3e6825(0x1e6,'\x5d\x41\x4c\x35')],0x25*0x3b+0x1d4a+-0x25d0);if(!_0x557464[_0x3e6825(0x340,'\x5b\x37\x6d\x23')](_0x1864dd)||BSQcQp[_0x3e6825(0x323,'\x53\x30\x63\x5e')](_0x1864dd,0xe3f+-0xe*0x49+0x1*-0xa41)||_0x1864dd>-0x10af*-0x1+-0xc01*0x2+-0x1d5*-0x4)return 0x5*0x206+0x6cc+-0x10e9;return _0x1864dd;}});},_0x2e6854);if(_0x2eb6f8&&_0x419bec[_0x86a6a0(0x1d8,'\x34\x62\x72\x44')](typeof _0x2eb6f8[_0x86a6a0(0x2ce,'\x77\x37\x76\x34')],_0x86a6a0(0x360,'\x74\x71\x68\x55'))){if(_0x419bec[_0x86a6a0(0x23d,'\x47\x24\x52\x40')](_0x86a6a0(0x20b,'\x72\x56\x34\x50'),_0x419bec['\x63\x56\x54\x42\x6b']))return _0xbd88f8[_0x86a6a0(0x2d6,'\x77\x7a\x5d\x65')]()[_0x86a6a0(0x333,'\x45\x6a\x52\x35')](QlchnM[_0x86a6a0(0x1b8,'\x64\x6a\x75\x5d')])[_0x86a6a0(0x31a,'\x26\x55\x58\x75')]()[_0x86a6a0(0x293,'\x29\x34\x4e\x75')+_0x86a6a0(0x274,'\x35\x6d\x47\x75')](_0x4ae8b2)[_0x86a6a0(0x334,'\x32\x39\x56\x51')](QlchnM[_0x86a6a0(0x301,'\x56\x2a\x40\x48')]);else _0x2eb6f8[_0x86a6a0(0x304,'\x73\x73\x4f\x68')]();}}function _0x468c10(){const _0x2222cc=_0x4e42d2,_0x19eed1={'\x63\x41\x50\x6a\x67':function(_0x5ec789,_0x281021){return _0x5ec789(_0x281021);}};_0x2eb6f8&&(_0x19eed1[_0x2222cc(0x35a,'\x76\x4f\x50\x6d')](clearInterval,_0x2eb6f8),_0x2eb6f8=null),_0x24c390=![];}function _0x466f3a(){const _0x5eff7b=_0x4e42d2;return Object[_0x5eff7b(0x2e1,'\x74\x71\x68\x55')]({},_0xc52bc0);}function _0x3baf26(){const _0x17a848=_0x4e42d2,_0x73a459={'\x6d\x6a\x76\x43\x56':function(_0x715cf6){return _0x715cf6();}};_0x73a459[_0x17a848(0x25e,'\x62\x5a\x71\x63')](_0x468c10),_0x15b8bd=[],_0x4f57a8['\x63\x6c\x65\x61\x72']();const _0x6030bf={};_0x6030bf['\x6f\x6b']=0x0,_0x6030bf[_0x17a848(0x2f9,'\x36\x51\x46\x30')]=0x0,_0x6030bf[_0x17a848(0x204,'\x29\x34\x4e\x75')]=0x0,_0x6030bf[_0x17a848(0x1e4,'\x24\x39\x68\x31')]=0x0,_0xc52bc0=_0x6030bf;}function _0x5ec872(){const _0x41cd57=_0x4e42d2;return _0x15b8bd[_0x41cd57(0x292,'\x29\x34\x4e\x75')];}function _0x8c2d(){const _0x5028bc=['\x78\x38\x6f\x47\x63\x62\x34','\x65\x6d\x6b\x64\x63\x43\x6f\x5a\x42\x71','\x57\x52\x33\x63\x4e\x78\x38\x76\x73\x53\x6b\x2f\x57\x4f\x5a\x64\x50\x57','\x45\x61\x62\x37\x57\x35\x4e\x63\x52\x57','\x57\x37\x4a\x63\x53\x6d\x6f\x5a\x76\x43\x6f\x59\x79\x65\x33\x63\x47\x71','\x44\x31\x34\x41','\x6a\x49\x61\x78\x57\x52\x53','\x57\x50\x33\x64\x51\x43\x6f\x39\x44\x6d\x6f\x58','\x70\x4a\x57\x6a\x57\x52\x4e\x63\x4e\x77\x69','\x57\x52\x71\x31\x57\x50\x70\x63\x52\x4a\x65\x45\x74\x43\x6b\x56\x57\x36\x4f','\x44\x48\x46\x64\x4a\x4b\x5a\x64\x56\x64\x6e\x79\x6a\x71','\x57\x35\x4a\x63\x50\x47\x30','\x57\x52\x74\x64\x53\x6d\x6b\x2b\x57\x51\x4f\x33','\x57\x4f\x6c\x64\x56\x58\x30\x57\x57\x4f\x75\x77\x57\x34\x69\x6b','\x69\x43\x6f\x48\x57\x52\x4a\x64\x51\x4a\x50\x78\x57\x50\x56\x63\x4d\x57','\x57\x34\x48\x46\x75\x61','\x72\x53\x6b\x47\x57\x36\x4c\x36\x79\x43\x6f\x50\x57\x52\x65\x41','\x75\x53\x6f\x32\x41\x6d\x6b\x39\x57\x51\x37\x64\x48\x47','\x78\x43\x6f\x38\x41\x6d\x6b\x50\x57\x51\x37\x64\x4e\x62\x57\x34','\x57\x51\x6c\x64\x50\x43\x6f\x76\x66\x6d\x6f\x34\x57\x51\x54\x6f\x57\x36\x38','\x57\x34\x5a\x63\x51\x53\x6f\x53\x78\x53\x6f\x57\x7a\x31\x43','\x57\x51\x33\x64\x48\x53\x6f\x33\x75\x38\x6f\x57\x61\x31\x35\x35','\x57\x37\x6a\x43\x43\x53\x6f\x35','\x70\x53\x6b\x63\x67\x62\x4a\x63\x47\x71','\x6a\x53\x6b\x59\x57\x4f\x38\x75\x66\x61','\x67\x74\x46\x64\x56\x43\x6b\x75','\x6a\x63\x78\x64\x4d\x43\x6b\x77\x57\x34\x69','\x43\x48\x33\x64\x49\x75\x56\x64\x56\x49\x35\x6a\x6c\x71','\x57\x52\x5a\x64\x4e\x38\x6b\x65\x75\x59\x56\x63\x4b\x53\x6f\x6e\x57\x50\x47','\x57\x36\x70\x63\x4c\x6d\x6f\x4e\x65\x73\x48\x58','\x57\x34\x74\x63\x49\x57\x53\x39\x57\x34\x54\x68\x57\x35\x5a\x63\x48\x47','\x74\x6d\x6b\x43\x57\x50\x38\x6a\x71\x61','\x74\x6d\x6f\x44\x57\x52\x2f\x64\x54\x57','\x57\x51\x78\x64\x4b\x43\x6b\x63\x72\x57\x30','\x57\x52\x2f\x64\x47\x38\x6b\x46\x57\x35\x4e\x63\x4f\x75\x4e\x64\x48\x65\x47','\x57\x52\x4e\x63\x4d\x43\x6b\x38\x57\x51\x70\x64\x48\x38\x6f\x36\x7a\x6d\x6f\x43','\x79\x73\x78\x64\x4f\x53\x6f\x31\x57\x34\x30\x4b\x6b\x74\x61','\x57\x52\x52\x64\x4b\x6d\x6f\x32\x78\x38\x6f\x49\x6e\x76\x72\x38','\x75\x6d\x6b\x71\x57\x4f\x61\x57\x44\x77\x4a\x63\x4c\x6d\x6b\x6e','\x72\x53\x6f\x59\x61\x72\x39\x6a\x79\x61','\x57\x4f\x64\x64\x51\x48\x53\x31','\x75\x65\x4e\x63\x47\x6d\x6b\x71','\x57\x50\x70\x64\x53\x38\x6f\x6a\x45\x38\x6f\x56','\x57\x52\x57\x77\x7a\x53\x6f\x6a\x6a\x65\x54\x58','\x57\x37\x64\x63\x47\x53\x6f\x31\x62\x5a\x6e\x61\x6e\x38\x6f\x58','\x57\x36\x4e\x63\x54\x6d\x6f\x49\x76\x61','\x57\x35\x78\x63\x53\x58\x57\x48\x71\x74\x30\x76\x78\x47','\x66\x68\x37\x63\x49\x75\x44\x4a','\x78\x53\x6b\x64\x57\x52\x6c\x64\x4c\x43\x6b\x33','\x57\x52\x47\x47\x57\x52\x39\x41','\x67\x53\x6b\x49\x69\x62\x6c\x63\x50\x6d\x6b\x34\x57\x51\x34','\x57\x34\x39\x76\x57\x4f\x64\x64\x4f\x43\x6b\x51\x57\x36\x6d\x39\x65\x47','\x69\x49\x4b\x63\x57\x52\x4f','\x79\x43\x6f\x37\x7a\x38\x6b\x50\x57\x52\x69','\x57\x52\x4e\x63\x53\x6d\x6b\x66\x71\x73\x31\x7a\x57\x52\x34','\x57\x36\x39\x35\x79\x43\x6f\x4f\x57\x34\x79','\x57\x35\x42\x64\x56\x33\x57\x75\x57\x34\x38','\x57\x35\x7a\x74\x76\x5a\x34\x45\x57\x51\x46\x64\x56\x6d\x6f\x54','\x79\x74\x56\x63\x49\x53\x6f\x31\x57\x34\x35\x46\x57\x35\x4a\x64\x4a\x47','\x57\x36\x39\x6c\x43\x53\x6f\x63','\x57\x35\x30\x4f\x43\x71','\x74\x58\x34\x67\x57\x4f\x46\x63\x51\x31\x65\x35\x6d\x57','\x44\x4e\x33\x63\x47\x6d\x6b\x44\x45\x71','\x79\x71\x54\x70\x57\x34\x6c\x63\x4f\x48\x37\x63\x4c\x38\x6f\x67','\x44\x43\x6b\x52\x57\x36\x6e\x47\x45\x38\x6f\x53\x57\x52\x4f','\x57\x52\x52\x64\x4b\x6d\x6f\x78\x78\x6d\x6f\x33','\x79\x78\x5a\x64\x4c\x38\x6b\x38\x57\x50\x69','\x57\x35\x68\x64\x4d\x4b\x34\x61\x57\x36\x58\x58\x57\x51\x68\x64\x4a\x61','\x57\x4f\x2f\x63\x47\x71\x54\x62\x57\x51\x61\x4c\x57\x51\x37\x64\x48\x58\x74\x63\x52\x38\x6f\x70\x73\x47','\x62\x38\x6b\x59\x6e\x71\x6c\x63\x50\x6d\x6b\x37','\x57\x50\x33\x63\x50\x43\x6f\x6d\x75\x43\x6b\x76','\x57\x4f\x52\x63\x47\x53\x6f\x6a\x45\x53\x6b\x6a','\x6e\x53\x6b\x6e\x63\x43\x6f\x5a\x72\x38\x6b\x59\x57\x4f\x78\x64\x52\x61','\x44\x57\x5a\x64\x4c\x66\x6c\x64\x4a\x59\x48\x79\x6a\x57','\x65\x76\x37\x63\x55\x4c\x62\x66\x69\x57','\x57\x36\x44\x34\x57\x37\x42\x63\x51\x49\x4f','\x78\x6d\x6f\x37\x62\x61\x50\x34\x43\x43\x6b\x38','\x6a\x5a\x43\x76\x57\x52\x56\x63\x4a\x57','\x57\x52\x42\x63\x56\x53\x6f\x30\x45\x66\x4b','\x6d\x6d\x6b\x33\x57\x35\x68\x64\x4a\x33\x61\x39\x57\x36\x70\x64\x56\x71','\x57\x4f\x2f\x63\x4b\x58\x47\x77\x7a\x47\x43\x47','\x44\x43\x6f\x67\x73\x53\x6b\x5a\x57\x50\x61','\x42\x38\x6b\x78\x57\x51\x47\x55\x44\x47','\x57\x50\x56\x63\x52\x53\x6f\x44\x45\x78\x33\x63\x4f\x49\x37\x63\x53\x71','\x57\x50\x64\x64\x4c\x43\x6b\x63\x57\x4f\x6d\x76\x76\x38\x6b\x31\x57\x36\x4f','\x57\x51\x68\x64\x52\x6d\x6b\x45\x57\x52\x53\x58\x45\x38\x6b\x65\x57\x35\x38','\x6a\x53\x6b\x71\x57\x35\x33\x64\x4e\x78\x6d','\x57\x35\x70\x63\x48\x58\x75\x58\x57\x34\x4b','\x71\x53\x6f\x31\x68\x47\x4c\x50\x43\x38\x6b\x39','\x7a\x38\x6b\x4b\x57\x36\x31\x34\x75\x61','\x45\x64\x37\x63\x4e\x38\x6f\x58\x57\x34\x47','\x65\x6d\x6f\x53\x45\x4a\x4c\x44\x57\x51\x53\x2f\x63\x57','\x75\x43\x6b\x54\x57\x52\x79\x2f\x43\x47','\x57\x4f\x78\x64\x53\x71\x4f\x37\x57\x4f\x71','\x57\x50\x6c\x63\x4b\x43\x6f\x4e\x43\x53\x6b\x78\x57\x35\x74\x64\x56\x48\x53','\x73\x6d\x6f\x44\x75\x38\x6b\x55\x57\x52\x79','\x62\x43\x6f\x57\x77\x49\x72\x69\x57\x51\x57','\x57\x36\x37\x63\x4b\x38\x6f\x31\x71\x53\x6f\x53\x6f\x4c\x50\x56','\x71\x6d\x6f\x7a\x6e\x59\x62\x58','\x57\x52\x52\x64\x53\x53\x6b\x67\x71\x73\x38','\x57\x50\x37\x63\x55\x6d\x6f\x31\x44\x32\x46\x63\x4f\x57','\x43\x76\x52\x64\x55\x43\x6b\x68\x57\x51\x74\x64\x48\x4e\x74\x64\x4e\x61','\x57\x35\x53\x49\x79\x53\x6f\x62\x70\x75\x30','\x57\x34\x35\x72\x75\x64\x4b\x73','\x46\x31\x56\x63\x4c\x53\x6b\x6d\x79\x67\x54\x51\x57\x36\x34','\x57\x37\x62\x6a\x44\x53\x6f\x55\x57\x34\x37\x64\x52\x61','\x57\x50\x48\x58\x6e\x53\x6b\x67\x41\x48\x69\x6e\x43\x73\x33\x63\x48\x43\x6f\x48\x57\x34\x69','\x70\x38\x6b\x48\x57\x35\x52\x64\x4e\x4b\x65\x6f\x57\x36\x70\x64\x56\x47','\x67\x43\x6b\x4b\x77\x65\x69\x37\x6a\x6d\x6f\x53\x72\x43\x6f\x37\x6a\x6d\x6b\x6c\x57\x52\x47\x33','\x71\x53\x6f\x45\x57\x4f\x4b\x44\x61\x31\x74\x63\x49\x59\x69','\x57\x37\x76\x30\x57\x34\x42\x63\x4f\x58\x6d\x75\x73\x53\x6b\x36','\x73\x43\x6f\x7a\x57\x51\x37\x64\x55\x65\x6d\x6a\x71\x6d\x6f\x66','\x67\x38\x6f\x48\x57\x52\x2f\x64\x56\x62\x65','\x74\x6d\x6b\x4b\x57\x37\x58\x52\x45\x53\x6f\x34\x57\x51\x30\x41','\x75\x38\x6f\x32\x44\x43\x6b\x50\x57\x52\x56\x64\x49\x71\x57','\x45\x49\x68\x64\x56\x43\x6f\x55\x57\x36\x79\x59\x68\x74\x38','\x57\x51\x79\x57\x57\x52\x72\x67\x57\x37\x5a\x64\x49\x6d\x6f\x59\x73\x71','\x74\x62\x34\x6e\x57\x4f\x64\x63\x4a\x31\x4f\x31','\x57\x35\x70\x63\x4d\x47\x30\x58\x57\x34\x62\x45\x57\x34\x56\x63\x4c\x61','\x6d\x53\x6f\x33\x57\x51\x4a\x64\x52\x49\x6a\x4b\x57\x51\x33\x63\x49\x71','\x57\x50\x37\x63\x49\x6d\x6f\x38\x72\x6d\x6b\x69\x57\x35\x2f\x64\x54\x57','\x57\x52\x37\x63\x50\x6d\x6b\x63\x73\x48\x31\x71\x57\x51\x4e\x64\x52\x71','\x44\x47\x6a\x47\x57\x37\x56\x63\x49\x61','\x57\x52\x34\x6b\x79\x43\x6f\x7a\x69\x4b\x48\x5a','\x62\x4c\x53\x4a\x57\x50\x6d','\x57\x36\x78\x63\x4d\x6d\x6f\x50\x64\x62\x48\x53\x6e\x43\x6f\x38','\x41\x6d\x6b\x79\x57\x50\x6c\x64\x4c\x6d\x6b\x54\x68\x6d\x6b\x32','\x6d\x4b\x52\x63\x4a\x48\x64\x64\x4c\x73\x58\x69\x62\x63\x34\x71','\x57\x37\x33\x64\x4c\x4c\x4b\x41\x57\x36\x69','\x57\x34\x39\x64\x76\x64\x79','\x57\x51\x70\x64\x4b\x38\x6b\x75\x71\x73\x37\x63\x4b\x6d\x6f\x70\x57\x51\x6d','\x7a\x47\x50\x69\x57\x34\x4e\x63\x4f\x61','\x57\x51\x2f\x64\x49\x53\x6b\x78\x78\x4a\x34','\x70\x6d\x6b\x52\x57\x37\x56\x64\x4e\x4d\x75','\x73\x38\x6f\x6a\x57\x52\x37\x64\x53\x71','\x57\x34\x6e\x62\x57\x4f\x68\x64\x4a\x6d\x6b\x52','\x76\x6d\x6b\x68\x57\x4f\x4b\x53\x79\x31\x2f\x63\x4c\x38\x6b\x43','\x57\x51\x74\x63\x4f\x6d\x6b\x71\x75\x73\x31\x41','\x57\x4f\x4a\x64\x4a\x6d\x6f\x39\x68\x6d\x6f\x58','\x43\x48\x44\x4f\x57\x34\x52\x63\x50\x57','\x57\x51\x65\x67\x43\x38\x6f\x7a\x6a\x65\x47','\x57\x35\x38\x49\x43\x43\x6f\x42\x6e\x65\x4f\x2b\x46\x71','\x77\x6d\x6b\x4e\x57\x35\x39\x33\x79\x47','\x57\x36\x35\x76\x57\x35\x68\x63\x50\x5a\x65','\x57\x50\x5a\x64\x53\x38\x6b\x48\x41\x58\x4a\x63\x56\x38\x6f\x38\x57\x51\x47','\x57\x37\x64\x63\x4e\x47\x53\x37\x57\x37\x30','\x62\x47\x79\x51\x57\x4f\x30','\x57\x37\x58\x56\x57\x52\x78\x64\x4e\x43\x6b\x62\x57\x36\x30\x62\x6d\x57','\x72\x59\x52\x63\x51\x43\x6f\x6c\x57\x34\x6d','\x57\x35\x35\x56\x63\x76\x33\x64\x4a\x4b\x65\x54\x57\x50\x75','\x43\x72\x70\x64\x4a\x30\x4a\x64\x54\x71','\x75\x58\x71\x6c\x57\x50\x33\x63\x49\x4b\x4b\x49\x70\x71','\x57\x34\x74\x64\x50\x78\x30\x4e\x57\x37\x30','\x57\x34\x33\x63\x56\x74\x53\x57\x78\x74\x43\x63\x7a\x47','\x57\x52\x4a\x63\x51\x53\x6b\x67','\x57\x51\x31\x68\x6d\x53\x6b\x36\x69\x61','\x57\x35\x68\x63\x50\x57\x4f\x42\x77\x4a\x61\x45\x7a\x61','\x57\x35\x4a\x63\x54\x38\x6f\x30\x76\x43\x6f\x52','\x45\x73\x4e\x64\x4f\x6d\x6f\x55','\x72\x71\x4a\x64\x4f\x77\x68\x64\x51\x61','\x6d\x43\x6f\x67\x44\x47\x62\x55\x57\x50\x4f','\x57\x52\x69\x61\x45\x53\x6f\x6c\x6b\x75\x50\x58','\x7a\x53\x6f\x59\x64\x49\x35\x49','\x57\x52\x2f\x63\x54\x53\x6b\x57\x75\x64\x62\x76\x57\x51\x69','\x57\x34\x75\x4d\x44\x38\x6f\x78\x70\x65\x61\x4b\x71\x57','\x57\x51\x56\x64\x4c\x53\x6f\x4e\x76\x53\x6f\x2f\x67\x76\x76\x39','\x57\x51\x4c\x76\x6f\x58\x58\x61\x43\x74\x37\x64\x47\x61','\x57\x35\x4e\x63\x50\x64\x61\x41\x57\x37\x71','\x71\x53\x6f\x35\x68\x47\x4c\x48\x45\x53\x6b\x2f\x46\x57','\x7a\x31\x42\x64\x51\x43\x6b\x68\x57\x51\x52\x64\x48\x4e\x74\x64\x4e\x61','\x67\x43\x6b\x59\x6f\x48\x42\x63\x56\x38\x6b\x39','\x77\x53\x6f\x46\x57\x51\x78\x64\x55\x65\x30\x6a\x71\x61','\x57\x37\x44\x4b\x57\x34\x46\x63\x52\x48\x79\x6c\x72\x38\x6b\x37','\x57\x36\x54\x65\x45\x6d\x6f\x6d\x57\x36\x4f','\x57\x52\x6c\x63\x4f\x6d\x6b\x44\x72\x5a\x7a\x72','\x6e\x68\x52\x63\x51\x65\x44\x55','\x57\x50\x78\x64\x54\x61\x38\x4b\x57\x4f\x57\x70\x57\x34\x69\x6b','\x70\x43\x6f\x52\x57\x51\x57','\x75\x53\x6b\x61\x57\x4f\x71\x33\x43\x31\x38','\x78\x48\x44\x50\x57\x34\x76\x31\x42\x71','\x75\x64\x31\x73\x57\x36\x4a\x63\x52\x71','\x43\x76\x64\x64\x52\x38\x6b\x69\x57\x51\x5a\x64\x4e\x4d\x70\x64\x4b\x71','\x44\x6d\x6b\x61\x57\x51\x46\x64\x4a\x6d\x6b\x59','\x6b\x43\x6b\x4e\x57\x51\x53\x30\x6f\x68\x37\x63\x50\x47\x4b','\x57\x52\x56\x63\x54\x53\x6b\x71\x44\x72\x4f','\x57\x4f\x64\x63\x4c\x6d\x6b\x59\x57\x51\x42\x64\x49\x57','\x57\x36\x35\x55\x45\x58\x34\x53','\x73\x63\x54\x74\x67\x72\x34','\x42\x5a\x5a\x64\x50\x53\x6f\x4c\x57\x35\x71\x58\x61\x49\x75','\x7a\x78\x68\x63\x4f\x38\x6b\x53\x79\x47','\x57\x37\x5a\x63\x4b\x73\x4b\x69\x79\x57\x65\x36\x72\x61','\x57\x51\x46\x64\x49\x43\x6b\x48\x77\x59\x4e\x63\x4c\x38\x6f\x43\x57\x50\x4b','\x6d\x53\x6b\x5a\x57\x35\x33\x64\x4e\x4c\x53\x59\x57\x37\x70\x64\x48\x71','\x57\x52\x52\x64\x4c\x38\x6f\x58\x78\x38\x6f\x37\x67\x4b\x4c\x52','\x76\x6d\x6b\x61\x57\x50\x4a\x64\x4b\x38\x6b\x30','\x57\x4f\x2f\x64\x56\x6d\x6f\x38\x57\x35\x6c\x63\x47\x57','\x57\x34\x54\x4c\x73\x5a\x47','\x65\x4b\x37\x63\x51\x65\x4f','\x57\x50\x46\x64\x55\x38\x6f\x37\x57\x35\x4e\x63\x50\x71','\x57\x36\x35\x4c\x57\x36\x78\x63\x55\x48\x6d','\x57\x52\x35\x56\x6b\x38\x6b\x4e\x61\x43\x6b\x43\x57\x35\x4f\x73','\x6e\x75\x64\x63\x49\x72\x6c\x63\x52\x68\x39\x42\x61\x63\x69\x54\x57\x50\x78\x63\x47\x47','\x6e\x77\x52\x63\x49\x75\x39\x6d','\x69\x64\x79\x73\x57\x52\x64\x63\x4a\x78\x34\x6e\x57\x51\x75','\x42\x6d\x6b\x63\x57\x51\x64\x64\x4c\x43\x6b\x32\x65\x38\x6b\x4f','\x57\x4f\x68\x63\x47\x6d\x6f\x48\x75\x38\x6b\x6f\x57\x35\x57','\x57\x51\x4b\x4d\x57\x52\x39\x78\x57\x34\x33\x64\x55\x38\x6f\x59\x73\x47','\x66\x4c\x46\x63\x55\x65\x62\x2b','\x57\x35\x68\x64\x47\x4b\x4f\x77\x57\x37\x44\x35\x57\x50\x53','\x77\x57\x6a\x55\x57\x37\x72\x58','\x57\x36\x33\x63\x48\x48\x47\x4e\x57\x34\x75','\x57\x36\x74\x64\x47\x77\x53\x66\x57\x36\x57','\x62\x33\x42\x63\x4d\x78\x50\x65','\x57\x50\x64\x63\x4b\x68\x30\x68\x74\x47','\x57\x4f\x31\x57\x62\x5a\x76\x49\x41\x57\x4a\x64\x54\x47','\x42\x6d\x6f\x41\x71\x6d\x6b\x64\x57\x4f\x78\x64\x51\x63\x57\x70','\x41\x38\x6f\x4b\x62\x74\x76\x7a','\x57\x36\x7a\x61\x57\x37\x74\x63\x50\x72\x30','\x57\x37\x58\x56\x57\x52\x78\x64\x4e\x43\x6b\x62\x57\x36\x38\x76\x6f\x57','\x57\x37\x2f\x63\x4f\x43\x6f\x5a\x75\x38\x6f\x33\x74\x31\x46\x63\x4e\x71','\x57\x50\x5a\x63\x4c\x6d\x6f\x37\x76\x6d\x6b\x6f\x57\x35\x5a\x64\x54\x71','\x57\x4f\x33\x64\x47\x53\x6b\x6e\x75\x58\x38','\x57\x52\x64\x64\x4a\x43\x6f\x72\x57\x35\x4a\x63\x54\x65\x47','\x61\x53\x6f\x32\x72\x59\x35\x42\x57\x51\x53\x2b\x61\x47','\x7a\x57\x46\x63\x54\x53\x6f\x45\x57\x36\x30','\x46\x53\x6f\x2f\x57\x4f\x5a\x64\x4c\x77\x6d\x36\x43\x38\x6f\x4b','\x57\x36\x4f\x4d\x7a\x6d\x6f\x44\x6b\x61','\x75\x49\x4a\x63\x4d\x38\x6f\x4a\x57\x34\x76\x69\x57\x36\x46\x64\x56\x47','\x74\x43\x6b\x53\x57\x36\x79','\x57\x51\x37\x63\x49\x32\x38\x72\x75\x53\x6b\x6d\x57\x4f\x64\x64\x50\x57','\x57\x34\x48\x77\x74\x74\x61\x41','\x57\x51\x33\x64\x56\x43\x6b\x58\x79\x43\x6f\x6e\x76\x66\x37\x63\x4e\x43\x6b\x4e','\x57\x34\x75\x49\x42\x43\x6f\x76\x6a\x4b\x53','\x70\x4a\x47\x74\x57\x52\x56\x63\x48\x32\x4b\x67\x57\x50\x6d','\x63\x71\x53\x63\x57\x52\x33\x63\x49\x67\x79\x74\x57\x50\x4f','\x72\x49\x33\x64\x54\x53\x6f\x33\x57\x37\x34','\x57\x35\x42\x64\x4c\x4b\x30\x44\x57\x34\x44\x4d\x57\x50\x56\x64\x49\x71','\x62\x78\x68\x63\x4f\x32\x35\x2b','\x76\x6d\x6f\x62\x57\x35\x7a\x70\x78\x33\x2f\x63\x4e\x58\x35\x49\x65\x43\x6b\x52','\x78\x43\x6f\x32\x57\x52\x46\x64\x53\x65\x47','\x57\x50\x56\x63\x53\x38\x6f\x2f\x44\x77\x56\x63\x48\x64\x57','\x79\x74\x6e\x37\x57\x34\x6e\x7a','\x46\x61\x33\x64\x55\x78\x4a\x64\x4e\x61','\x73\x63\x5a\x63\x4e\x43\x6f\x56\x57\x34\x31\x63\x57\x37\x33\x64\x47\x61','\x57\x4f\x70\x63\x4b\x38\x6f\x47\x76\x6d\x6b\x65\x57\x34\x6c\x64\x4f\x57\x4f','\x57\x50\x68\x64\x52\x47\x4f\x30\x57\x4f\x71\x6b\x57\x35\x6d\x44','\x75\x4a\x7a\x77\x6a\x47\x2f\x63\x4e\x4a\x33\x64\x53\x71','\x57\x50\x37\x64\x4d\x6d\x6b\x54\x76\x73\x53','\x57\x51\x78\x63\x51\x43\x6b\x79\x71\x73\x43','\x57\x51\x56\x63\x4f\x38\x6f\x48\x79\x53\x6b\x68','\x57\x34\x33\x63\x53\x61\x69\x6c\x73\x57','\x6d\x6d\x6b\x77\x65\x6d\x6f\x68\x79\x57','\x43\x64\x33\x63\x4d\x6d\x6f\x45\x57\x36\x79','\x57\x34\x72\x30\x6a\x4c\x6c\x64\x4c\x61','\x57\x35\x46\x64\x4c\x76\x69\x71\x57\x35\x4c\x47','\x69\x43\x6f\x48\x57\x52\x4a\x64\x51\x4a\x50\x78\x57\x51\x68\x63\x49\x71','\x57\x4f\x6a\x53\x61\x57','\x57\x50\x47\x7a\x57\x4f\x4c\x54\x57\x36\x56\x64\x50\x43\x6f\x70\x41\x57','\x76\x57\x53\x79\x57\x52\x64\x63\x49\x71','\x74\x53\x6b\x51\x57\x37\x38','\x57\x52\x4f\x57\x57\x51\x39\x74\x57\x35\x78\x64\x49\x6d\x6f\x2b\x73\x47','\x57\x50\x78\x64\x51\x62\x43\x33\x57\x50\x61\x4e\x57\x4f\x43\x7a','\x57\x34\x68\x63\x4f\x43\x6f\x47\x65\x62\x79','\x57\x4f\x37\x64\x4c\x43\x6f\x73\x6d\x43\x6f\x41\x57\x50\x31\x53\x57\x34\x38','\x57\x4f\x4e\x63\x54\x43\x6b\x72\x57\x4f\x52\x64\x52\x6d\x6f\x69','\x57\x50\x37\x63\x4c\x53\x6b\x65\x71\x61\x6d','\x57\x52\x6e\x52\x66\x73\x6e\x2b','\x64\x43\x6b\x63\x57\x52\x79\x45\x64\x57','\x57\x37\x46\x63\x55\x64\x79\x79\x57\x37\x54\x52\x57\x36\x64\x63\x54\x71','\x6f\x53\x6b\x53\x63\x38\x6f\x4a\x74\x71','\x57\x51\x2f\x64\x47\x38\x6f\x77\x57\x34\x2f\x63\x53\x65\x78\x64\x4a\x61','\x57\x35\x42\x64\x4c\x4b\x30','\x74\x57\x5a\x63\x56\x43\x6f\x47\x57\x36\x75','\x57\x4f\x70\x64\x4d\x4b\x34\x31\x57\x36\x7a\x78\x57\x35\x64\x63\x4c\x38\x6b\x4f','\x43\x6d\x6b\x6a\x57\x34\x31\x72\x72\x53\x6f\x41\x57\x4f\x61\x61','\x79\x77\x39\x78\x57\x36\x37\x64\x4d\x4a\x31\x70\x57\x51\x76\x70\x45\x30\x37\x64\x4b\x4d\x4f','\x7a\x77\x52\x63\x56\x6d\x6b\x30\x7a\x31\x54\x71\x57\x34\x4b','\x74\x59\x50\x68\x6a\x57\x46\x63\x4d\x74\x42\x64\x56\x61','\x75\x65\x37\x63\x4e\x6d\x6b\x42\x76\x67\x31\x38\x57\x37\x34','\x67\x38\x6b\x45\x57\x34\x46\x64\x4a\x78\x38','\x76\x38\x6f\x2f\x57\x51\x2f\x64\x4a\x75\x6d','\x74\x63\x39\x6a\x69\x47\x33\x63\x4a\x57','\x57\x51\x6c\x63\x49\x6d\x6f\x6b\x71\x75\x69','\x57\x51\x46\x64\x4d\x6d\x6b\x6c\x76\x57\x42\x63\x49\x47','\x57\x34\x2f\x63\x4c\x74\x53\x6b\x71\x47','\x41\x53\x6b\x32\x57\x51\x65\x4a\x44\x71','\x57\x4f\x5a\x63\x4d\x6d\x6b\x5a\x57\x4f\x5a\x64\x4d\x71','\x57\x50\x33\x64\x56\x57\x30\x49\x57\x4f\x47\x44\x57\x34\x69','\x45\x61\x39\x46\x57\x35\x4e\x63\x4a\x61','\x44\x58\x64\x64\x4b\x4b\x74\x64\x52\x61','\x6d\x53\x6b\x78\x64\x6d\x6f\x4a\x74\x38\x6b\x33\x57\x50\x74\x64\x55\x57','\x67\x6d\x6b\x69\x57\x50\x71\x44','\x57\x34\x54\x69\x73\x5a\x61\x41\x57\x51\x64\x64\x52\x6d\x6f\x47','\x73\x74\x56\x63\x47\x6d\x6f\x4f\x57\x34\x58\x30\x57\x37\x2f\x64\x4b\x47','\x67\x43\x6f\x76\x57\x35\x44\x59\x69\x78\x70\x63\x4c\x6d\x6b\x39\x57\x4f\x72\x74\x57\x34\x57','\x76\x43\x6b\x55\x57\x37\x58\x4b\x45\x71','\x57\x35\x46\x63\x53\x6d\x6f\x57\x41\x6d\x6f\x73','\x6a\x38\x6f\x6c\x44\x48\x4c\x4d\x57\x4f\x38\x75\x69\x57','\x57\x50\x42\x63\x4e\x6d\x6f\x56','\x72\x74\x4f\x6b','\x57\x4f\x4c\x6f\x6e\x47\x48\x30','\x57\x4f\x42\x63\x54\x6d\x6f\x30\x46\x4b\x5a\x63\x55\x64\x68\x63\x56\x71','\x75\x38\x6f\x36\x44\x43\x6b\x33\x57\x52\x56\x64\x4d\x47\x4f\x5a','\x67\x6d\x6b\x79\x57\x4f\x53\x77\x6d\x75\x4a\x63\x4b\x4a\x69','\x57\x36\x4a\x63\x4b\x43\x6b\x6a\x57\x36\x37\x63\x4b\x4d\x74\x64\x4a\x30\x6c\x63\x4e\x57','\x63\x43\x6b\x6c\x57\x37\x37\x63\x4f\x72\x48\x75\x65\x6d\x6f\x5a\x57\x34\x6a\x76\x57\x50\x4a\x63\x54\x78\x57','\x57\x36\x31\x47\x57\x35\x46\x63\x50\x59\x75\x76\x72\x38\x6b\x38','\x45\x43\x6f\x77\x66\x43\x6f\x4a\x73\x6d\x6b\x72\x57\x50\x74\x64\x56\x47','\x44\x48\x33\x64\x4d\x4c\x68\x64\x54\x59\x4b','\x66\x68\x78\x63\x4a\x4c\x7a\x6b','\x57\x36\x68\x63\x50\x53\x6f\x75\x64\x62\x43','\x57\x37\x6a\x5a\x45\x53\x6f\x30\x57\x35\x6c\x64\x53\x72\x58\x6f','\x7a\x6d\x6b\x5a\x57\x51\x4f\x6a\x72\x4e\x6c\x63\x52\x43\x6b\x51','\x57\x50\x37\x64\x56\x57\x79\x4c\x57\x51\x57\x77\x57\x34\x34\x6a','\x57\x51\x37\x64\x4a\x43\x6f\x45\x57\x34\x5a\x63\x52\x30\x34','\x57\x37\x2f\x63\x4e\x53\x6f\x58','\x44\x58\x68\x64\x4e\x65\x5a\x64\x55\x73\x54\x7a','\x68\x57\x46\x64\x50\x38\x6b\x72\x57\x34\x35\x75\x57\x51\x46\x64\x4c\x61','\x69\x6d\x6b\x55\x57\x51\x4b\x52','\x57\x52\x37\x63\x52\x31\x6d\x33\x79\x61','\x77\x6d\x6f\x32\x7a\x38\x6b\x55\x57\x51\x2f\x64\x4e\x61\x57\x65','\x57\x50\x65\x6c\x79\x38\x6f\x41\x70\x47','\x63\x6d\x6b\x72\x68\x6d\x6f\x4c\x71\x47','\x43\x4a\x50\x69\x6a\x62\x5a\x63\x4b\x58\x4e\x64\x51\x57','\x61\x43\x6f\x54\x77\x64\x48\x6b\x57\x52\x43\x30\x63\x61','\x57\x50\x34\x4e\x73\x6d\x6f\x34\x6f\x57','\x57\x52\x37\x64\x55\x43\x6f\x68\x78\x53\x6f\x73','\x57\x37\x4a\x63\x52\x43\x6f\x52\x76\x43\x6f\x37','\x57\x52\x74\x63\x51\x53\x6f\x52\x7a\x33\x61','\x46\x4a\x33\x64\x53\x6d\x6f\x53\x57\x35\x61\x59\x68\x4a\x6d','\x74\x6d\x6b\x47\x57\x36\x57\x30\x6e\x61','\x78\x38\x6f\x4e\x43\x53\x6b\x2f\x57\x52\x46\x64\x4e\x48\x30\x4f','\x44\x61\x4a\x64\x4e\x4b\x79','\x57\x34\x54\x75\x57\x4f\x68\x64\x51\x38\x6b\x53','\x6f\x32\x6c\x63\x53\x68\x7a\x65','\x57\x34\x57\x48\x77\x43\x6f\x4c\x68\x61','\x77\x72\x7a\x53\x57\x36\x33\x63\x48\x61','\x6d\x43\x6b\x47\x57\x37\x33\x64\x4e\x4b\x79\x4c\x57\x36\x70\x64\x54\x61','\x57\x51\x6c\x63\x52\x77\x4f\x62\x71\x71','\x57\x35\x4a\x63\x54\x47\x57','\x62\x6d\x6b\x61\x67\x5a\x6c\x63\x4a\x71','\x57\x51\x64\x63\x4c\x6d\x6f\x44\x73\x75\x5a\x63\x49\x47\x37\x63\x47\x61','\x57\x4f\x4a\x63\x4e\x6d\x6b\x79\x57\x4f\x68\x64\x56\x38\x6f\x7a\x74\x43\x6f\x74','\x6e\x5a\x43\x77\x57\x51\x56\x63\x4a\x68\x38\x41\x57\x50\x57','\x6f\x38\x6b\x47\x57\x36\x42\x64\x4c\x76\x79\x30','\x57\x51\x53\x55\x57\x34\x46\x63\x4f\x62\x71\x74\x72\x38\x6b\x58','\x57\x4f\x5a\x63\x48\x38\x6b\x4b\x75\x63\x38','\x57\x37\x6c\x63\x4a\x38\x6f\x4f\x79\x53\x6f\x5a','\x57\x35\x58\x64\x57\x50\x6c\x64\x54\x38\x6b\x58\x57\x35\x69','\x57\x35\x4b\x79\x42\x53\x6f\x42\x69\x76\x61\x30\x43\x47','\x57\x37\x62\x56\x41\x64\x4f\x31','\x69\x43\x6f\x61\x41\x61\x66\x4a\x57\x50\x30\x68\x6b\x71','\x66\x53\x6f\x4d\x73\x64\x35\x61\x57\x51\x57','\x57\x37\x37\x63\x48\x6d\x6f\x59\x61\x73\x48\x59\x6f\x57','\x73\x76\x74\x63\x4e\x6d\x6b\x50\x45\x47','\x45\x48\x58\x4b\x62\x59\x6c\x63\x54\x71\x4a\x64\x4e\x61','\x57\x36\x31\x7a\x79\x38\x6f\x2b\x57\x34\x37\x64\x52\x58\x61','\x42\x48\x5a\x63\x56\x53\x6f\x78\x57\x37\x4f','\x65\x38\x6f\x73\x57\x35\x7a\x39\x6a\x57\x42\x64\x48\x38\x6b\x51\x57\x4f\x54\x44\x57\x37\x58\x74\x42\x47','\x57\x52\x52\x64\x4d\x72\x75\x39\x57\x50\x6d','\x57\x37\x2f\x63\x4d\x62\x61\x6b\x73\x61','\x6b\x64\x37\x64\x4e\x43\x6b\x5a\x57\x37\x58\x4c\x57\x4f\x52\x64\x52\x57','\x41\x53\x6f\x74\x6c\x64\x7a\x65\x73\x38\x6b\x6f\x7a\x71','\x57\x35\x46\x63\x56\x72\x38','\x57\x37\x56\x63\x55\x38\x6f\x4a\x6e\x59\x71','\x57\x52\x78\x64\x4d\x38\x6f\x35\x57\x35\x42\x63\x52\x4b\x4e\x64\x4e\x65\x47','\x69\x53\x6f\x30\x77\x74\x50\x6d','\x57\x35\x5a\x63\x51\x48\x47\x52\x78\x73\x4f\x46','\x61\x43\x6f\x5a\x72\x4a\x39\x42','\x57\x34\x52\x64\x4a\x4b\x34\x71','\x71\x47\x44\x38\x57\x35\x72\x35\x41\x66\x4b','\x57\x34\x54\x70\x72\x4a\x38\x77\x57\x51\x64\x64\x54\x38\x6f\x47','\x57\x4f\x64\x63\x49\x53\x6f\x4d\x72\x38\x6b\x72\x57\x35\x74\x64\x54\x61','\x77\x38\x6f\x35\x61\x48\x72\x78\x7a\x38\x6b\x5a\x73\x71','\x75\x38\x6b\x67\x57\x4f\x30','\x66\x47\x4a\x64\x48\x53\x6f\x61\x61\x49\x34\x37\x57\x37\x37\x63\x4b\x65\x33\x64\x4d\x78\x58\x38','\x63\x4b\x37\x63\x55\x78\x31\x74\x6a\x71\x46\x63\x50\x47','\x57\x36\x57\x72\x74\x6d\x6f\x2b\x62\x67\x79\x63\x74\x47','\x67\x43\x6f\x72\x68\x73\x48\x62\x74\x43\x6b\x75','\x67\x53\x6b\x67\x57\x4f\x6d\x2f\x6c\x57','\x76\x43\x6b\x6d\x57\x4f\x4f\x52\x74\x30\x74\x63\x4d\x43\x6b\x72','\x57\x36\x52\x63\x52\x43\x6f\x47\x78\x53\x6f\x2b\x46\x65\x4f','\x63\x6d\x6b\x48\x6d\x38\x6f\x4f\x57\x50\x46\x64\x48\x71\x53\x74\x75\x43\x6f\x44','\x57\x52\x43\x5a\x57\x35\x42\x63\x49\x74\x34\x51\x45\x6d\x6b\x42','\x6a\x33\x4a\x63\x4d\x4d\x35\x51\x66\x63\x70\x63\x48\x47','\x57\x51\x56\x64\x49\x6d\x6b\x6f\x76\x64\x34','\x57\x50\x4e\x63\x4a\x53\x6f\x32\x79\x65\x65','\x57\x35\x62\x63\x72\x74\x75\x73','\x74\x43\x6f\x32\x7a\x38\x6b\x4f\x57\x52\x4e\x64\x48\x47','\x57\x52\x44\x72\x65\x74\x6e\x33\x77\x61\x33\x64\x48\x61','\x57\x51\x46\x64\x51\x5a\x65\x30\x57\x50\x65','\x42\x5a\x56\x64\x4f\x43\x6f\x4c\x57\x34\x30\x45\x68\x5a\x69','\x74\x43\x6b\x56\x57\x37\x35\x6e\x71\x47','\x7a\x64\x79\x55\x57\x51\x46\x63\x56\x71','\x57\x50\x37\x63\x4e\x53\x6f\x35\x72\x68\x38','\x57\x50\x57\x31\x7a\x62\x61','\x71\x61\x47\x6e\x57\x50\x42\x63\x4d\x4d\x69\x35\x6d\x61','\x57\x35\x50\x6a\x57\x51\x64\x64\x53\x6d\x6b\x53\x57\x35\x75\x36\x65\x71','\x64\x38\x6f\x78\x78\x63\x76\x4b','\x57\x35\x56\x64\x48\x76\x43\x74\x57\x36\x66\x6a\x57\x35\x37\x64\x4e\x71','\x57\x52\x37\x64\x50\x53\x6b\x2f','\x42\x57\x7a\x39\x6d\x57\x53','\x68\x53\x6f\x66\x45\x59\x48\x33','\x62\x53\x6f\x4b\x71\x58\x54\x55','\x57\x52\x56\x63\x4d\x38\x6f\x75\x7a\x30\x61','\x44\x57\x31\x6a\x57\x34\x33\x63\x50\x61\x42\x63\x47\x6d\x6f\x6c','\x6e\x6d\x6b\x79\x63\x43\x6f\x31\x71\x47','\x43\x53\x6b\x63\x57\x52\x74\x64\x49\x6d\x6b\x2b\x65\x43\x6b\x38','\x78\x5a\x52\x63\x4e\x6d\x6f\x4a\x57\x35\x39\x30\x57\x37\x46\x64\x48\x71','\x57\x35\x6c\x63\x4c\x53\x6f\x4b\x69\x6d\x6f\x6f\x57\x51\x72\x2f\x57\x35\x30','\x57\x51\x31\x4b\x6b\x6d\x6b\x37\x61\x53\x6b\x71\x57\x37\x61\x79','\x41\x30\x52\x64\x55\x6d\x6b\x35\x57\x52\x33\x64\x48\x67\x70\x64\x4e\x71','\x57\x50\x78\x64\x4e\x38\x6f\x74\x6b\x53\x6f\x76\x57\x4f\x72\x57\x57\x36\x38','\x45\x47\x54\x63\x6b\x49\x53','\x67\x71\x46\x64\x4f\x61','\x57\x51\x2f\x64\x53\x48\x38\x49\x57\x4f\x65','\x65\x53\x6f\x33\x57\x37\x50\x69\x75\x6d\x6f\x77\x57\x4f\x34\x62','\x69\x6d\x6f\x78\x74\x63\x6e\x36','\x41\x57\x76\x34\x57\x34\x62\x31','\x57\x35\x54\x39\x6f\x31\x68\x64\x4a\x4b\x53\x47\x57\x51\x38','\x57\x52\x50\x4a\x6c\x43\x6b\x52\x6b\x53\x6b\x61\x57\x37\x47\x74','\x44\x49\x5a\x64\x4e\x4c\x68\x64\x52\x63\x35\x65\x6b\x57','\x68\x53\x6b\x45\x57\x50\x65\x77\x63\x4b\x2f\x63\x49\x5a\x69','\x57\x37\x53\x38\x41\x43\x6f\x2b\x76\x6d\x6f\x73\x57\x51\x75\x76\x57\x52\x61\x57\x57\x35\x39\x65\x6a\x57','\x41\x6d\x6f\x58\x76\x38\x6b\x43\x57\x4f\x57','\x57\x51\x68\x63\x51\x6d\x6f\x6a\x42\x53\x6b\x2b\x57\x37\x4a\x64\x4e\x49\x79','\x74\x58\x33\x64\x53\x38\x6f\x50\x57\x36\x4b'];_0x8c2d=function(){return _0x5028bc;};return _0x8c2d();}const _0x57cbbc={};_0x57cbbc[_0x4e42d2(0x22d,'\x77\x37\x76\x34')+_0x4e42d2(0x309,'\x45\x6a\x52\x35')+_0x4e42d2(0x31e,'\x6c\x6d\x63\x44')]=_0x15cc19,_0x57cbbc[_0x4e42d2(0x349,'\x28\x23\x75\x4a')+'\x63\x65']=_0x3969d5,_0x57cbbc['\x73\x74\x61\x72\x74\x57\x6f\x72'+_0x4e42d2(0x266,'\x77\x7a\x5d\x65')]=_0x5c6fd9,_0x57cbbc[_0x4e42d2(0x2ca,'\x68\x4a\x24\x37')+'\x65\x72']=_0x468c10,_0x57cbbc['\x67\x65\x74\x4c\x61\x73\x74\x52'+_0x4e42d2(0x246,'\x74\x71\x68\x55')]=_0x466f3a,_0x57cbbc['\x5f\x72\x75\x6e\x57\x6f\x72\x6b'+_0x4e42d2(0x22e,'\x4c\x36\x4f\x6c')]=_0x273e26,_0x57cbbc[_0x4e42d2(0x2bb,'\x5d\x41\x4c\x35')+_0x4e42d2(0x27b,'\x68\x4a\x24\x37')]=_0x3baf26,_0x57cbbc[_0x4e42d2(0x2e9,'\x70\x23\x29\x47')+_0x4e42d2(0x22c,'\x51\x50\x36\x41')+_0x4e42d2(0x227,'\x4c\x36\x4f\x6c')+'\x67']=_0x5ec872,module[_0x4e42d2(0x245,'\x26\x55\x58\x75')]=_0x57cbbc;
1
+ 'use strict';
2
+
3
+ // ---------------------------------------------------------------------------
4
+ // recallVerifier — confirm that assets we publish to Hub can actually be
5
+ // recalled later. After a successful publish (capsule bundle, anti-pattern,
6
+ // or skill bundle), enqueue the asset_id; a background worker uses Hub's
7
+ // Phase 2 deterministic lookup to verify the asset round-trips, with
8
+ // exponential backoff to absorb Hub indexing latency. Outcomes land as
9
+ // MemoryGraphEvents of kind 'recall_verify' so a report script can compute
10
+ // per-asset-type success rates and gate releases.
11
+ //
12
+ // Scope: only assets with a content-hash asset_id are verified. MemoryGraph
13
+ // events themselves go through a different transport (POST /a2a/memory/event,
14
+ // not the asset store) and produce no asset_id, so they cannot be subject to
15
+ // roundtrip verification. This naturally terminates any recursion of
16
+ // recall_verify events that would otherwise mirror to Hub.
17
+ //
18
+ // Graceful degradation: if fetchAssetById fails for any reason (network,
19
+ // auth, schema), the worker emits 'verification_skipped' rather than
20
+ // throwing. Verification must NEVER block the daemon cycle.
21
+ // ---------------------------------------------------------------------------
22
+
23
+ const { envInt, envFloat } = require('../config');
24
+ const { fetchAssetById } = require('./hubSearch');
25
+ const { computeAssetId } = require('./contentHash');
26
+ const { writeMemoryGraphEvent } = require('./memoryGraph');
27
+
28
+ // --- Module state (per-process lifetime, bounded) ---
29
+
30
+ let _queue = [];
31
+ const _inflightAssetIds = new Set();
32
+ let _workerStarted = false;
33
+ let _workerTimer = null;
34
+ let _lastReport = { ok: 0, missing: 0, mismatch: 0, skipped: 0 };
35
+
36
+ // Backoff schedule between attempts. attempt 1 fires INITIAL_WAIT_MS after
37
+ // publish; if it returns missing, retries fire after these intervals.
38
+ const BACKOFF_MS = [5000, 15000, 60000];
39
+
40
+ // --- Env getters (read at call time, never module-load) ---
41
+
42
+ function _isFeatureEnabled() {
43
+ // Default OFF: Hub /a2a/fetch contract is strict (unknown asset_id → empty
44
+ // results, 0 cost) so client-side round-trip verification is redundant as a
45
+ // default safety net. Operators who want end-to-end SLA observability can
46
+ // opt in with EVOLVE_RECALL_VERIFY=1; events still emit locally and (once
47
+ // Hub-side schema lands, see EvoMap/evomap-hub#670) optionally to Hub.
48
+ return String(process.env.EVOLVE_RECALL_VERIFY || '0') === '1';
49
+ }
50
+
51
+ function _getSampleRate() {
52
+ // Clamp to [0, 1] to match the startup banner in index.js. A negative
53
+ // env value would otherwise make the gate `Math.random() >= rate`
54
+ // always true → every verify silently skipped, while the banner
55
+ // (which does its own range clamp) still shows 1.0. Operators need
56
+ // the implementation and the banner to agree. (Bugbot review on PR #53.)
57
+ const raw = envFloat('EVOLVE_RECALL_VERIFY_SAMPLE_RATE', 1.0);
58
+ if (!Number.isFinite(raw) || raw < 0 || raw > 1) return 1.0;
59
+ return raw;
60
+ }
61
+
62
+ function _getQueueMax() {
63
+ return envInt('EVOLVE_RECALL_VERIFY_QUEUE_MAX', 256);
64
+ }
65
+
66
+ function _getPollMs() {
67
+ return envInt('EVOLVE_RECALL_VERIFY_POLL_MS', 5000);
68
+ }
69
+
70
+ function _getInitialWaitMs() {
71
+ return envInt('EVOLVE_RECALL_VERIFY_INITIAL_WAIT_MS', 5000);
72
+ }
73
+
74
+ function _getMaxAttempts() {
75
+ return envInt('EVOLVE_RECALL_VERIFY_ATTEMPTS', 3);
76
+ }
77
+
78
+ function _getFetchTimeoutMs() {
79
+ return envInt('EVOLVE_RECALL_VERIFY_FETCH_TIMEOUT_MS', 8000);
80
+ }
81
+
82
+ // --- Event emission ---
83
+
84
+ function _emitEvent(entry, outcome, reason, extras) {
85
+ const ts = Date.now();
86
+ const verification = {
87
+ outcome,
88
+ reason: reason || null,
89
+ attempts: extras && Number.isFinite(extras.attempts) ? extras.attempts : (entry.attempts || 0),
90
+ latency_ms: extras && Number.isFinite(extras.latency_ms) ? extras.latency_ms : 0,
91
+ age_at_verify_ms: entry.publishedAt ? (ts - entry.publishedAt) : 0,
92
+ recalled_hash: extras && extras.recalled_hash ? extras.recalled_hash : null,
93
+ };
94
+ const ev = {
95
+ type: 'MemoryGraphEvent',
96
+ kind: 'recall_verify',
97
+ id: 'mge_' + ts + '_' + Math.random().toString(36).slice(2, 10),
98
+ ts,
99
+ asset: {
100
+ type: entry.type || 'Unknown',
101
+ id: entry.asset_id || null,
102
+ },
103
+ verification,
104
+ signal: { signals: Array.isArray(entry.signals) ? entry.signals.slice(0, 8) : [] },
105
+ };
106
+ try {
107
+ writeMemoryGraphEvent(ev);
108
+ } catch (writeErr) {
109
+ if (process.env.EVOLVE_RECALL_VERIFY_DEBUG === '1') {
110
+ console.warn('[RecallVerify] writeMemoryGraphEvent failed: ' + (writeErr && writeErr.message || writeErr));
111
+ }
112
+ }
113
+ if (outcome === 'roundtrip_ok') _lastReport.ok++;
114
+ else if (outcome === 'roundtrip_missing') _lastReport.missing++;
115
+ else if (outcome === 'roundtrip_mismatch') _lastReport.mismatch++;
116
+ else _lastReport.skipped++;
117
+ }
118
+
119
+ // --- Public API ---
120
+
121
+ function enqueuePublishedAsset(input) {
122
+ const entry = {
123
+ asset_id: input && input.asset_id ? String(input.asset_id) : null,
124
+ type: input && input.type ? String(input.type) : 'Unknown',
125
+ signals: Array.isArray(input && input.signals) ? input.signals : [],
126
+ publishedAt: input && Number.isFinite(input.publishedAt) ? input.publishedAt : Date.now(),
127
+ attempts: 0,
128
+ nextEligibleAt: 0,
129
+ };
130
+
131
+ if (!_isFeatureEnabled()) {
132
+ _emitEvent(entry, 'verification_skipped', 'feature_disabled');
133
+ return { enqueued: false, reason: 'feature_disabled' };
134
+ }
135
+
136
+ if (!entry.asset_id) {
137
+ _emitEvent(entry, 'verification_skipped', 'missing_asset_id');
138
+ return { enqueued: false, reason: 'missing_asset_id' };
139
+ }
140
+
141
+ const sampleRate = _getSampleRate();
142
+ if (sampleRate < 1.0 && Math.random() >= sampleRate) {
143
+ _emitEvent(entry, 'verification_skipped', 'sample_rate');
144
+ return { enqueued: false, reason: 'sample_rate' };
145
+ }
146
+
147
+ entry.nextEligibleAt = entry.publishedAt + _getInitialWaitMs();
148
+
149
+ const queueMax = _getQueueMax();
150
+ while (_queue.length >= queueMax) {
151
+ const dropped = _queue.shift();
152
+ _emitEvent(dropped, 'verification_skipped', 'queue_full');
153
+ }
154
+
155
+ _queue.push(entry);
156
+ return { enqueued: true };
157
+ }
158
+
159
+ // Single-asset verification. Returns one of the four outcomes.
160
+ // outcome ∈ { roundtrip_ok | roundtrip_missing | roundtrip_mismatch | verification_skipped }
161
+ async function verifyOnce(assetId, assetType) {
162
+ const t0 = Date.now();
163
+ if (!assetId) {
164
+ return { outcome: 'verification_skipped', reason: 'missing_asset_id', latency_ms: 0, recalled_hash: null };
165
+ }
166
+ let result;
167
+ try {
168
+ result = await fetchAssetById(assetId, { timeoutMs: _getFetchTimeoutMs(), bypassCache: true });
169
+ } catch (err) {
170
+ return {
171
+ outcome: 'verification_skipped',
172
+ reason: 'hub_unreachable',
173
+ latency_ms: Date.now() - t0,
174
+ recalled_hash: null,
175
+ error: err && err.message || String(err),
176
+ };
177
+ }
178
+
179
+ const latency = Date.now() - t0;
180
+
181
+ if (!result || !result.ok) {
182
+ return {
183
+ outcome: 'verification_skipped',
184
+ reason: 'hub_unreachable',
185
+ latency_ms: latency,
186
+ recalled_hash: null,
187
+ error: (result && result.error) || 'fetch_not_ok',
188
+ };
189
+ }
190
+
191
+ if (!result.asset) {
192
+ return { outcome: 'roundtrip_missing', reason: null, latency_ms: latency, recalled_hash: null };
193
+ }
194
+
195
+ const recalled = result.asset;
196
+ if (recalled.asset_id !== assetId) {
197
+ return { outcome: 'roundtrip_missing', reason: 'wrong_asset', latency_ms: latency, recalled_hash: recalled.asset_id || null };
198
+ }
199
+
200
+ // Recompute the asset_id from the recalled body. If it doesn't match what
201
+ // the recalled asset claims its asset_id is, the Hub re-encoded or
202
+ // corrupted the asset between publish and fetch.
203
+ let recomputed;
204
+ try {
205
+ recomputed = computeAssetId(recalled);
206
+ } catch (hashErr) {
207
+ return {
208
+ outcome: 'verification_skipped',
209
+ reason: 'hash_recompute_failed',
210
+ latency_ms: latency,
211
+ recalled_hash: null,
212
+ error: hashErr && hashErr.message || String(hashErr),
213
+ };
214
+ }
215
+
216
+ if (recomputed !== recalled.asset_id) {
217
+ return { outcome: 'roundtrip_mismatch', reason: 'hash_drift', latency_ms: latency, recalled_hash: recomputed };
218
+ }
219
+
220
+ return { outcome: 'roundtrip_ok', reason: null, latency_ms: latency, recalled_hash: recomputed };
221
+ }
222
+
223
+ // Drain the queue once. Public + idempotent so tests can drive it
224
+ // synchronously without waiting on setInterval.
225
+ async function _runWorkerOnce() {
226
+ if (_queue.length === 0) return { processed: 0 };
227
+ const now = Date.now();
228
+ const maxAttempts = _getMaxAttempts();
229
+ const ready = [];
230
+ for (let i = 0; i < _queue.length; i++) {
231
+ const entry = _queue[i];
232
+ if (entry.nextEligibleAt <= now && !_inflightAssetIds.has(entry.asset_id)) {
233
+ ready.push(entry);
234
+ }
235
+ }
236
+ if (ready.length === 0) return { processed: 0 };
237
+
238
+ let processed = 0;
239
+ for (const entry of ready) {
240
+ _inflightAssetIds.add(entry.asset_id);
241
+ try {
242
+ entry.attempts += 1;
243
+ const verifyResult = await verifyOnce(entry.asset_id, entry.type);
244
+
245
+ const isRetryable = (verifyResult.outcome === 'roundtrip_missing' ||
246
+ (verifyResult.outcome === 'verification_skipped' && verifyResult.reason === 'hub_unreachable'));
247
+ const hasAttemptsLeft = entry.attempts < maxAttempts;
248
+
249
+ if (isRetryable && hasAttemptsLeft) {
250
+ const backoffIdx = Math.min(entry.attempts - 1, BACKOFF_MS.length - 1);
251
+ entry.nextEligibleAt = Date.now() + BACKOFF_MS[backoffIdx];
252
+ } else {
253
+ _emitEvent(entry, verifyResult.outcome, verifyResult.reason, {
254
+ attempts: entry.attempts,
255
+ latency_ms: verifyResult.latency_ms,
256
+ recalled_hash: verifyResult.recalled_hash,
257
+ });
258
+ const idx = _queue.indexOf(entry);
259
+ if (idx !== -1) _queue.splice(idx, 1);
260
+ }
261
+ processed += 1;
262
+ } finally {
263
+ // Always release inflight (including on retry) — next poll re-adds.
264
+ _inflightAssetIds.delete(entry.asset_id);
265
+ }
266
+ }
267
+ return { processed };
268
+ }
269
+
270
+ function startWorker() {
271
+ if (_workerStarted) return;
272
+ _workerStarted = true;
273
+ const pollMs = _getPollMs();
274
+ _workerTimer = setInterval(function () {
275
+ _runWorkerOnce().catch(function (err) {
276
+ if (process.env.EVOLVE_RECALL_VERIFY_DEBUG === '1') {
277
+ console.warn('[RecallVerify] worker tick failed: ' + (err && err.message || err));
278
+ }
279
+ });
280
+ }, pollMs);
281
+ if (_workerTimer && typeof _workerTimer.unref === 'function') {
282
+ _workerTimer.unref();
283
+ }
284
+ }
285
+
286
+ function stopWorker() {
287
+ if (_workerTimer) {
288
+ clearInterval(_workerTimer);
289
+ _workerTimer = null;
290
+ }
291
+ _workerStarted = false;
292
+ }
293
+
294
+ function getLastReport() {
295
+ return Object.assign({}, _lastReport);
296
+ }
297
+
298
+ function _resetForTesting() {
299
+ stopWorker();
300
+ _queue = [];
301
+ _inflightAssetIds.clear();
302
+ _lastReport = { ok: 0, missing: 0, mismatch: 0, skipped: 0 };
303
+ }
304
+
305
+ function _getQueueLengthForTesting() {
306
+ return _queue.length;
307
+ }
308
+
309
+ module.exports = {
310
+ enqueuePublishedAsset,
311
+ verifyOnce,
312
+ startWorker,
313
+ stopWorker,
314
+ getLastReport,
315
+ _runWorkerOnce,
316
+ _resetForTesting,
317
+ _getQueueLengthForTesting,
318
+ };