@evomap/evolver 1.89.10 → 1.89.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursor/BUGBOT.md +182 -0
- package/.env.example +68 -0
- package/.git-commit-guard-token +1 -0
- package/.github/CODEOWNERS +63 -0
- package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
- package/.github/pull_request_template.md +45 -0
- package/.github/workflows/test.yml +75 -0
- package/CHANGELOG.md +1367 -0
- package/README.ja-JP.md +1 -1
- package/README.ko-KR.md +1 -1
- package/README.md +90 -536
- package/README.public.md +578 -0
- package/README.zh-CN.md +1 -1
- package/SECURITY.md +108 -0
- package/assets/gep/events.jsonl +3 -0
- package/examples/atp-consumer-quickstart.md +100 -0
- package/examples/hello-world.md +38 -0
- package/index.js +5 -3
- package/package.json +6 -18
- package/proxy-package.json +39 -0
- package/public.manifest.json +145 -0
- package/src/adapters/scripts/evolver-session-end.js +18 -37
- package/src/atp/atpExecute.js +27 -71
- package/src/atp/serviceHelper.js +28 -36
- package/src/config.js +17 -0
- package/src/evolve/guards.js +721 -1
- package/src/evolve/pipeline/collect.js +1283 -1
- package/src/evolve/pipeline/dispatch.js +421 -1
- package/src/evolve/pipeline/enrich.js +440 -1
- package/src/evolve/pipeline/hub.js +319 -1
- package/src/evolve/pipeline/select.js +274 -1
- package/src/evolve/pipeline/signals.js +206 -1
- package/src/evolve/utils.js +264 -1
- package/src/evolve.js +350 -1
- package/src/gep/a2aProtocol.js +4463 -1
- package/src/gep/antiAbuseTelemetry.js +233 -1
- package/src/gep/autoDistillConv.js +205 -1
- package/src/gep/autoDistillLlm.js +315 -1
- package/src/gep/candidateEval.js +92 -1
- package/src/gep/candidates.js +198 -1
- package/src/gep/contentHash.js +30 -1
- package/src/gep/conversationDistiller.js +270 -0
- package/src/gep/conversationSniffer.js +266 -1
- package/src/gep/crypto.js +89 -1
- package/src/gep/curriculum.js +163 -1
- package/src/gep/deviceId.js +218 -1
- package/src/gep/envFingerprint.js +118 -1
- package/src/gep/epigenetics.js +31 -1
- package/src/gep/execBridge.js +712 -1
- package/src/gep/explore.js +289 -1
- package/src/gep/hash.js +15 -1
- package/src/gep/hubFetch.js +608 -1
- package/src/gep/hubReview.js +207 -1
- package/src/gep/hubSearch.js +526 -1
- package/src/gep/hubVerify.js +306 -1
- package/src/gep/learningSignals.js +89 -1
- package/src/gep/memoryGraph.js +1449 -1
- package/src/gep/memoryGraphAdapter.js +203 -1
- package/src/gep/mutation.js +203 -1
- package/src/gep/narrativeMemory.js +108 -1
- package/src/gep/oauthLogin.js +9 -3
- package/src/gep/openPRRegistry.js +205 -1
- package/src/gep/personality.js +423 -1
- package/src/gep/policyCheck.js +599 -1
- package/src/gep/privacyClient.js +10 -9
- package/src/gep/prompt.js +836 -1
- package/src/gep/questionGenerator.js +103 -0
- package/src/gep/recallInject.js +409 -1
- package/src/gep/recallVerifier.js +318 -1
- package/src/gep/reflection.js +177 -1
- package/src/gep/savingsCore.js +112 -1
- package/src/gep/selector.js +602 -1
- package/src/gep/signals.js +85 -17
- package/src/gep/skillDistiller.js +1294 -1
- package/src/gep/solidify.js +1699 -1
- package/src/gep/strategy.js +136 -1
- package/src/gep/tokenSavings.js +95 -1
- package/src/gep/workspaceKeychain.js +174 -1
- package/src/proxy/extensions/traceControl.js +109 -1
- package/src/proxy/index.js +100 -3
- package/src/proxy/inject.js +52 -1
- package/src/proxy/lifecycle/manager.js +108 -7
- package/src/proxy/server/routes.js +41 -7
- package/src/proxy/server/settings.js +6 -2
- package/src/proxy/sync/engine.js +31 -15
- package/src/proxy/sync/inbound.js +87 -9
- package/src/proxy/sync/outbound.js +57 -4
- package/src/proxy/trace/extractor.js +1403 -1
- package/src/proxy/trace/usage.js +105 -1
- package/CONTRIBUTING.md +0 -19
- package/assets/cover.png +0 -0
- package/scripts/a2a_export.js +0 -63
- package/scripts/a2a_ingest.js +0 -79
- package/scripts/a2a_promote.js +0 -118
- package/scripts/analyze_by_skill.js +0 -121
- package/scripts/build_binaries.js +0 -479
- package/scripts/check-changelog.js +0 -166
- package/scripts/extract_log.js +0 -85
- package/scripts/generate_history.js +0 -75
- package/scripts/gep_append_event.js +0 -96
- package/scripts/gep_personality_report.js +0 -234
- package/scripts/human_report.js +0 -147
- package/scripts/recall-verify-report.js +0 -234
- package/scripts/recover_loop.js +0 -61
- package/scripts/refresh_stars_badge.js +0 -168
- package/scripts/seed-merchants.js +0 -91
- package/scripts/suggest_version.js +0 -89
- package/scripts/validate-modules.js +0 -38
- package/scripts/validate-suite.js +0 -78
- package/skills/index.json +0 -14
- /package/assets/gep/{genes.seed.json → genes.json} +0 -0
- /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
|
@@ -1 +1,206 @@
|
|
|
1
|
-
const _0x50364c=_0x33d0;function _0x33d0(_0x15e104,_0x5d93e8){_0x15e104=_0x15e104-(0x392*-0x3+0x15*-0x1b+-0xe23*-0x1);const _0xd1901b=_0x4723();let _0x41a421=_0xd1901b[_0x15e104];if(_0x33d0['\x59\x6e\x67\x73\x57\x4d']===undefined){var _0x5b025e=function(_0x47ba61){const _0x359b27='\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 _0x3f4f43='',_0x4a64cd='',_0x1a643b=_0x3f4f43+_0x5b025e,_0x184b43=(''+function(){return 0xc*-0x2ff+-0x1*0xdd5+0x31c9;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x2*0x470+-0x2016+0x1737);for(let _0x32b225=0x23*-0x31+-0xb*-0x277+-0x27*0x86,_0x12649c,_0x520106,_0x2a11a2=-0x22b3+0x1b8f*0x1+0x724;_0x520106=_0x47ba61['\x63\x68\x61\x72\x41\x74'](_0x2a11a2++);~_0x520106&&(_0x12649c=_0x32b225%(0xacb+-0x139d+-0x46b*-0x2)?_0x12649c*(0x3*-0xd4+0x41*0x6+0x5*0x3e)+_0x520106:_0x520106,_0x32b225++%(0x815+0x5*0x35f+-0x18ec))?_0x3f4f43+=_0x184b43||_0x1a643b['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2a11a2+(0x5*-0x7c3+-0x8ba+0x2f93))-(-0xb8f*-0x3+-0x19c0+-0x8e3)!==0x1890+0x33*-0xa5+-0x2c5*-0x3?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x951*-0x4+0x63*0x11+-0x10*-0x1fb&_0x12649c>>(-(0x4bc+0x1*0x725+-0xbdf)*_0x32b225&0x182+-0x1*0x1fca+0x1e4e)):_0x32b225:-0x1ba7+-0x23ad*0x1+0x3f54){_0x520106=_0x359b27['\x69\x6e\x64\x65\x78\x4f\x66'](_0x520106);}for(let _0x3ea464=-0xf5*0x7+-0x1*0x90e+0xfc1,_0x5dd0a6=_0x3f4f43['\x6c\x65\x6e\x67\x74\x68'];_0x3ea464<_0x5dd0a6;_0x3ea464++){_0x4a64cd+='\x25'+('\x30\x30'+_0x3f4f43['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3ea464)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x21cc+0x4d5+-0x2691))['\x73\x6c\x69\x63\x65'](-(0x4e4*0x1+0xe*-0xb2+0x45*0x12));}return decodeURIComponent(_0x4a64cd);};const _0x2d0d9d=function(_0x26482f,_0x4d3b48){let _0x12c098=[],_0x54a560=-0x1*0x5bf+-0x2*-0x9f5+-0xe2b,_0x285b01,_0x131825='';_0x26482f=_0x5b025e(_0x26482f);let _0x40914b;for(_0x40914b=0x2c0+0x128a+-0x5*0x442;_0x40914b<-0x5d5+-0x2524+0x1*0x2bf9;_0x40914b++){_0x12c098[_0x40914b]=_0x40914b;}for(_0x40914b=-0x1b90+0x1097*0x1+-0x1*-0xaf9;_0x40914b<-0x845*-0x3+0x1*-0x667+-0x1168;_0x40914b++){_0x54a560=(_0x54a560+_0x12c098[_0x40914b]+_0x4d3b48['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x40914b%_0x4d3b48['\x6c\x65\x6e\x67\x74\x68']))%(0x48*-0x12+0x1a58+-0x4*0x512),_0x285b01=_0x12c098[_0x40914b],_0x12c098[_0x40914b]=_0x12c098[_0x54a560],_0x12c098[_0x54a560]=_0x285b01;}_0x40914b=0x5*0x6f1+-0x22ca*0x1+0x7*0x3,_0x54a560=0xb5*-0x37+-0xc1d+-0xcc0*-0x4;for(let _0x4692fc=-0xca1*0x1+-0xf26*0x1+-0x1bc7*-0x1;_0x4692fc<_0x26482f['\x6c\x65\x6e\x67\x74\x68'];_0x4692fc++){_0x40914b=(_0x40914b+(-0x24e7+0x5c*0x2b+0x1574))%(-0x163*0x3+0x5e7*-0x5+0x22ac),_0x54a560=(_0x54a560+_0x12c098[_0x40914b])%(-0x2*0x10cb+-0x10d*-0x23+-0x231),_0x285b01=_0x12c098[_0x40914b],_0x12c098[_0x40914b]=_0x12c098[_0x54a560],_0x12c098[_0x54a560]=_0x285b01,_0x131825+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x26482f['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4692fc)^_0x12c098[(_0x12c098[_0x40914b]+_0x12c098[_0x54a560])%(-0x718+-0x4fb+0xd13)]);}return _0x131825;};_0x33d0['\x50\x77\x57\x44\x59\x72']=_0x2d0d9d,_0x33d0['\x44\x62\x72\x54\x50\x51']={},_0x33d0['\x59\x6e\x67\x73\x57\x4d']=!![];}const _0x509fa0=_0xd1901b[0x26e8+-0x827+0x1ec1*-0x1],_0x3eda39=_0x15e104+_0x509fa0,_0x2a9a21=_0x33d0['\x44\x62\x72\x54\x50\x51'][_0x3eda39];if(!_0x2a9a21){if(_0x33d0['\x71\x56\x78\x67\x59\x76']===undefined){const _0x56240f=function(_0x41b0e9){this['\x68\x65\x5a\x51\x4d\x67']=_0x41b0e9,this['\x66\x46\x68\x52\x74\x5a']=[0x1e09+0x112f+-0x4f*0x99,-0xe44+0xb*0x31b+0x13e5*-0x1,-0x135c+-0x78b*0x2+0x2272],this['\x53\x54\x70\x45\x4e\x74']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x43\x6d\x46\x49\x43\x6e']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x6e\x41\x65\x4a\x52\x63']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x56240f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x61\x65\x52\x68\x51\x76']=function(){const _0x15ab75=new RegExp(this['\x43\x6d\x46\x49\x43\x6e']+this['\x6e\x41\x65\x4a\x52\x63']),_0x54e067=_0x15ab75['\x74\x65\x73\x74'](this['\x53\x54\x70\x45\x4e\x74']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x66\x46\x68\x52\x74\x5a'][-0xb22+0x9c6+0x15d]:--this['\x66\x46\x68\x52\x74\x5a'][0x174*-0x13+0x1*0x3c3+-0x197*-0xf];return this['\x4d\x4a\x6e\x5a\x51\x4c'](_0x54e067);},_0x56240f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4d\x4a\x6e\x5a\x51\x4c']=function(_0x25dd71){if(!Boolean(~_0x25dd71))return _0x25dd71;return this['\x4b\x69\x74\x67\x44\x6a'](this['\x68\x65\x5a\x51\x4d\x67']);},_0x56240f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4b\x69\x74\x67\x44\x6a']=function(_0x17692a){for(let _0x1afa5d=-0x4f*-0x6d+0x714*0x5+-0x4507*0x1,_0x581415=this['\x66\x46\x68\x52\x74\x5a']['\x6c\x65\x6e\x67\x74\x68'];_0x1afa5d<_0x581415;_0x1afa5d++){this['\x66\x46\x68\x52\x74\x5a']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x581415=this['\x66\x46\x68\x52\x74\x5a']['\x6c\x65\x6e\x67\x74\x68'];}return _0x17692a(this['\x66\x46\x68\x52\x74\x5a'][-0xc1*-0x2a+-0x1ad1+-0x11*0x49]);},(''+function(){return-0x1*0xcbf+-0xd3*-0xb+-0x1*-0x3ae;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x237a+0x13*0x209+-0x4a24)&&new _0x56240f(_0x33d0)['\x61\x65\x52\x68\x51\x76'](),_0x33d0['\x71\x56\x78\x67\x59\x76']=!![];}_0x41a421=_0x33d0['\x50\x77\x57\x44\x59\x72'](_0x41a421,_0x5d93e8),_0x33d0['\x44\x62\x72\x54\x50\x51'][_0x3eda39]=_0x41a421;}else _0x41a421=_0x2a9a21;return _0x41a421;}(function(_0x59c73f,_0x1b4425){const _0x2dc096=_0x33d0,_0x25d217=_0x59c73f();while(!![]){try{const _0x3318fa=-parseInt(_0x2dc096(0x1f1,'\x6d\x4f\x4a\x6e'))/(0x1d1f+-0x6*0x59f+0x49c)+-parseInt(_0x2dc096(0x253,'\x53\x76\x57\x59'))/(-0x450*-0x4+-0x37*0x51+0x29)+-parseInt(_0x2dc096(0x186,'\x54\x79\x6c\x47'))/(0x6*-0x6b+-0xef+0xd*0x44)*(-parseInt(_0x2dc096(0x255,'\x61\x5a\x57\x29'))/(-0x3*0x599+-0x98b*0x1+0x1a5a*0x1))+parseInt(_0x2dc096(0x24a,'\x2a\x6e\x74\x7a'))/(0x254f+0xc1*0x1+0x1*-0x260b)*(parseInt(_0x2dc096(0x2e0,'\x76\x78\x48\x4c'))/(0xbf*0x2e+-0x1*-0x20d3+-0x431f))+-parseInt(_0x2dc096(0x15b,'\x40\x26\x46\x54'))/(0x3*0x37c+-0xc50+0x1e3)+parseInt(_0x2dc096(0x339,'\x67\x6c\x6e\x34'))/(-0x4c*-0x6d+0x5b*-0x4+0x7ba*-0x4)*(parseInt(_0x2dc096(0x341,'\x28\x78\x73\x6c'))/(-0x1*-0xc83+-0xa73*-0x1+-0x1*0x16ed))+parseInt(_0x2dc096(0x136,'\x68\x30\x4c\x43'))/(-0x7fa*-0x3+0x26ab+-0x3e8f)*(parseInt(_0x2dc096(0x298,'\x78\x25\x6a\x28'))/(0x9f1*-0x3+-0x2351+0x412f));if(_0x3318fa===_0x1b4425)break;else _0x25d217['push'](_0x25d217['shift']());}catch(_0x1d7738){_0x25d217['push'](_0x25d217['shift']());}}}(_0x4723,-0x2225f+-0x17edd*-0x2+-0x65*-0x185c));const _0x46c83c=(function(){const _0x77e70d=_0x33d0,_0x2c2961={};_0x2c2961[_0x77e70d(0x299,'\x28\x78\x73\x6c')]=function(_0x812964,_0x1c67fc){return _0x812964===_0x1c67fc;},_0x2c2961[_0x77e70d(0x327,'\x77\x50\x75\x44')]=_0x77e70d(0x313,'\x63\x58\x4c\x2a'),_0x2c2961[_0x77e70d(0x312,'\x23\x47\x56\x28')]=_0x77e70d(0x1da,'\x64\x4b\x74\x25'),_0x2c2961[_0x77e70d(0x190,'\x57\x33\x67\x29')]=function(_0x2f1c5d,_0x19f074){return _0x2f1c5d===_0x19f074;};const _0x36fe70=_0x2c2961;let _0x2a221a=!![];return function(_0x28def5,_0xb9832){const _0x1b56f6=_0x77e70d,_0x3ecbac={'\x6a\x79\x58\x66\x6b':function(_0x2a73af,_0x793a9c){return _0x36fe70['\x4c\x66\x79\x53\x7a'](_0x2a73af,_0x793a9c);},'\x56\x43\x57\x68\x5a':_0x36fe70['\x57\x58\x72\x71\x67'],'\x78\x73\x72\x53\x48':_0x36fe70[_0x1b56f6(0x14e,'\x4b\x78\x73\x25')]};if(_0x36fe70[_0x1b56f6(0x335,'\x32\x67\x43\x49')](_0x1b56f6(0x1ed,'\x28\x59\x40\x74'),_0x1b56f6(0x2eb,'\x5b\x71\x77\x6a'))){const _0x343b38=_0x2a221a?function(){const _0x29db6d=_0x1b56f6;if(_0xb9832){if(_0x3ecbac[_0x29db6d(0x282,'\x61\x5a\x57\x29')](_0x3ecbac[_0x29db6d(0x177,'\x4d\x36\x6a\x40')],_0x3ecbac[_0x29db6d(0x2ce,'\x66\x47\x61\x5b')]))_0x2aa2ce['\x70\x75\x73\x68'](_0x4eb019[_0x19cb19]);else{const _0x467afc=_0xb9832[_0x29db6d(0x1e8,'\x28\x59\x40\x74')](_0x28def5,arguments);return _0xb9832=null,_0x467afc;}}}:function(){};return _0x2a221a=![],_0x343b38;}else return[];};}()),_0x1b010e=_0x46c83c(this,function(){const _0x43e013=_0x33d0,_0x314091={};_0x314091[_0x43e013(0x23b,'\x40\x26\x46\x54')]=_0x43e013(0x2a6,'\x23\x47\x56\x28')+'\x2b\x29\x2b\x24';const _0x28d550=_0x314091;return _0x1b010e[_0x43e013(0x243,'\x38\x56\x59\x44')]()[_0x43e013(0x23c,'\x74\x26\x68\x55')](_0x28d550[_0x43e013(0x2a5,'\x79\x38\x31\x37')])[_0x43e013(0x1c5,'\x4b\x78\x73\x25')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+'\x74\x6f\x72'](_0x1b010e)[_0x43e013(0x1bc,'\x63\x58\x4c\x2a')](_0x28d550[_0x43e013(0x1d8,'\x74\x26\x68\x55')]);});_0x1b010e();function _0x4723(){const _0x1974ff=['\x65\x4b\x61\x6e\x57\x52\x46\x63\x52\x38\x6b\x76\x57\x4f\x5a\x64\x53\x61','\x79\x53\x6f\x52\x41\x4e\x6d\x42\x79\x61\x47\x58','\x75\x6d\x6f\x6c\x57\x52\x34\x45\x73\x71\x68\x64\x48\x4c\x75','\x57\x4f\x33\x63\x4f\x62\x76\x68\x57\x35\x4b','\x6c\x43\x6f\x49\x46\x4d\x4b\x6f\x44\x78\x35\x2f','\x57\x4f\x39\x73\x78\x77\x76\x30','\x76\x48\x66\x68\x78\x53\x6b\x77\x57\x51\x35\x36\x73\x47','\x70\x43\x6b\x75\x57\x50\x64\x64\x4b\x6d\x6b\x56','\x42\x4a\x4f\x39\x69\x6d\x6f\x49','\x57\x50\x2f\x64\x56\x64\x52\x64\x49\x63\x53','\x6c\x53\x6b\x45\x57\x51\x33\x64\x52\x6d\x6b\x79','\x57\x51\x46\x63\x47\x53\x6b\x38\x57\x50\x2f\x64\x52\x61','\x57\x35\x30\x59\x6f\x53\x6b\x4f\x57\x50\x7a\x6a\x68\x43\x6f\x39','\x63\x6d\x6f\x33\x57\x50\x44\x30\x57\x36\x62\x76\x57\x51\x4f','\x79\x43\x6f\x4f\x42\x64\x31\x68\x44\x5a\x47\x52','\x57\x35\x42\x63\x52\x4b\x71','\x57\x50\x69\x39\x6d\x47','\x57\x4f\x39\x6c\x57\x34\x2f\x63\x4d\x4e\x54\x74\x57\x35\x37\x64\x54\x47','\x57\x52\x57\x4a\x67\x38\x6b\x57\x57\x50\x38','\x57\x52\x69\x64\x76\x4c\x2f\x64\x54\x43\x6f\x50\x46\x53\x6f\x38','\x57\x52\x71\x65\x71\x4b\x74\x64\x50\x6d\x6f\x31\x79\x47','\x46\x33\x64\x64\x4b\x38\x6b\x46\x75\x57','\x57\x4f\x37\x63\x49\x71\x39\x65\x57\x37\x65','\x57\x4f\x33\x63\x50\x43\x6f\x6d\x63\x4a\x4f','\x57\x4f\x35\x56\x42\x78\x72\x67','\x67\x43\x6f\x33\x57\x4f\x58\x32','\x57\x50\x74\x64\x50\x49\x64\x64\x50\x57\x30','\x57\x34\x56\x64\x52\x6d\x6f\x4a\x7a\x38\x6f\x48','\x78\x38\x6f\x72\x57\x4f\x79\x54\x42\x71','\x57\x52\x6c\x63\x53\x6d\x6f\x59\x71\x74\x4e\x63\x55\x5a\x68\x63\x54\x61','\x57\x35\x39\x67\x72\x6d\x6f\x75\x68\x4e\x68\x63\x48\x4a\x53','\x42\x4b\x65\x63\x57\x36\x50\x53','\x57\x51\x78\x64\x4d\x78\x4e\x63\x51\x77\x47\x64\x76\x38\x6f\x64','\x67\x43\x6b\x34\x6e\x4c\x34\x58\x71\x38\x6f\x74','\x57\x35\x68\x63\x54\x75\x4f','\x57\x37\x5a\x64\x48\x43\x6f\x4b\x57\x36\x68\x63\x49\x53\x6b\x58\x57\x35\x7a\x67','\x57\x4f\x4b\x65\x69\x6d\x6b\x4c\x57\x4f\x6e\x45','\x57\x52\x72\x70\x57\x4f\x65','\x57\x35\x56\x64\x4a\x53\x6f\x31\x77\x38\x6f\x4f\x70\x47','\x57\x50\x76\x6e\x44\x78\x72\x4a\x64\x43\x6f\x70','\x78\x53\x6b\x56\x57\x36\x37\x64\x4f\x62\x54\x43\x57\x4f\x42\x64\x47\x71','\x67\x4e\x43\x66\x42\x38\x6f\x44','\x57\x51\x53\x63\x71\x47','\x62\x72\x62\x4c\x69\x43\x6f\x55\x44\x38\x6b\x49','\x57\x51\x64\x64\x56\x64\x64\x64\x4c\x63\x4f','\x42\x75\x56\x64\x4a\x38\x6f\x66\x57\x35\x34','\x57\x50\x43\x37\x57\x52\x5a\x64\x4c\x6d\x6b\x4e\x62\x48\x54\x68','\x57\x35\x4b\x5a\x57\x50\x78\x63\x47\x66\x47\x70\x57\x37\x78\x64\x48\x71','\x57\x37\x56\x63\x50\x43\x6f\x44\x64\x48\x33\x64\x54\x73\x56\x63\x54\x61','\x6f\x6d\x6f\x56\x45\x43\x6b\x45\x57\x4f\x48\x69\x57\x35\x4b','\x75\x43\x6b\x78\x57\x36\x68\x64\x52\x62\x57','\x57\x35\x35\x2b\x65\x6d\x6f\x4a\x66\x59\x33\x63\x4a\x4e\x43','\x57\x37\x5a\x63\x54\x43\x6f\x49\x70\x53\x6b\x54','\x45\x6d\x6b\x43\x6f\x43\x6b\x6f\x57\x34\x65\x34\x64\x62\x47','\x69\x6d\x6f\x56\x45\x43\x6b\x7a\x57\x35\x6d','\x6e\x73\x31\x6e\x42\x38\x6f\x68\x76\x53\x6f\x32','\x57\x4f\x64\x63\x49\x53\x6f\x6c\x64\x72\x78\x63\x4b\x4a\x52\x63\x50\x71','\x76\x38\x6b\x2b\x67\x43\x6b\x34\x57\x52\x34','\x72\x6d\x6f\x56\x73\x67\x4b\x7a','\x61\x47\x50\x6c\x65\x43\x6b\x7a','\x41\x64\x52\x64\x50\x6d\x6b\x50','\x64\x43\x6f\x4f\x65\x73\x70\x63\x56\x38\x6f\x4c\x57\x35\x65\x7a','\x57\x50\x35\x52\x76\x32\x76\x59','\x57\x34\x71\x46\x57\x4f\x69\x33\x57\x50\x4e\x63\x53\x53\x6f\x53\x77\x57','\x6a\x6d\x6f\x33\x57\x37\x4a\x64\x53\x33\x53','\x57\x36\x33\x63\x4b\x43\x6f\x4c','\x43\x43\x6b\x62\x64\x6d\x6b\x70\x57\x35\x79','\x7a\x38\x6f\x39\x57\x51\x79\x58\x67\x59\x37\x64\x48\x65\x4b','\x57\x50\x57\x7a\x6c\x53\x6b\x73\x57\x52\x61','\x64\x65\x38\x63\x57\x51\x33\x63\x55\x53\x6f\x68\x57\x50\x42\x64\x55\x47','\x41\x74\x4b\x56\x65\x53\x6f\x56\x57\x4f\x61\x55\x57\x51\x43','\x6b\x49\x68\x63\x55\x49\x76\x47\x46\x75\x52\x63\x55\x47','\x78\x43\x6b\x2b\x57\x37\x52\x64\x4b\x62\x31\x65\x57\x52\x6c\x64\x4d\x61','\x74\x43\x6b\x52\x64\x38\x6b\x52\x57\x52\x37\x63\x55\x75\x50\x4c','\x69\x59\x50\x45\x43\x47','\x57\x51\x58\x75\x57\x37\x4a\x63\x50\x38\x6b\x6e\x57\x50\x66\x50\x57\x52\x43','\x6f\x63\x4e\x64\x50\x43\x6b\x55\x57\x50\x46\x64\x4e\x38\x6f\x6b\x68\x61','\x57\x4f\x31\x30\x6a\x38\x6b\x5a\x57\x50\x39\x73\x63\x38\x6f\x48','\x57\x4f\x42\x64\x4f\x38\x6f\x50\x61\x62\x4e\x63\x55\x74\x37\x63\x54\x71','\x45\x68\x78\x63\x49\x74\x6a\x74\x43\x65\x56\x63\x52\x71','\x68\x32\x75\x71\x57\x35\x43\x46','\x57\x34\x68\x64\x4a\x6d\x6f\x36\x73\x6d\x6f\x4e\x46\x4c\x31\x4d','\x57\x34\x4b\x6f\x57\x4f\x65\x56\x57\x52\x38','\x62\x47\x6a\x57\x61\x6d\x6f\x50','\x57\x37\x50\x41\x61\x43\x6f\x79\x6d\x61','\x57\x51\x70\x64\x4e\x77\x46\x63\x53\x32\x6d\x6d\x71\x53\x6f\x67','\x66\x71\x72\x79\x68\x38\x6b\x78\x57\x51\x48\x34\x75\x61','\x57\x35\x30\x36\x57\x51\x79\x6a\x57\x50\x79','\x69\x67\x30\x50\x61\x53\x6f\x2b\x57\x50\x7a\x38\x57\x51\x79','\x6c\x68\x35\x61','\x57\x36\x2f\x63\x4a\x43\x6f\x47\x6e\x38\x6b\x75\x57\x4f\x64\x63\x4c\x32\x53','\x57\x36\x6e\x46\x57\x50\x5a\x64\x4f\x43\x6b\x45\x78\x43\x6b\x4c\x57\x51\x4a\x64\x50\x62\x50\x37\x72\x57','\x72\x6d\x6b\x50\x57\x51\x64\x64\x56\x43\x6f\x68','\x41\x43\x6f\x67\x62\x77\x4a\x63\x4f\x78\x70\x63\x49\x38\x6b\x54','\x57\x37\x69\x73\x57\x36\x5a\x63\x50\x6d\x6b\x41\x57\x51\x62\x42\x57\x4f\x4f','\x7a\x65\x42\x64\x52\x43\x6f\x62\x57\x37\x79','\x57\x51\x70\x63\x50\x47\x72\x77\x57\x36\x69','\x77\x53\x6b\x4c\x63\x43\x6b\x36\x57\x34\x4f','\x57\x35\x76\x49\x6d\x43\x6f\x69\x6a\x71','\x6f\x76\x79\x52\x79\x38\x6f\x62','\x57\x52\x48\x43\x67\x43\x6b\x41\x57\x37\x38\x46\x43\x38\x6b\x6a','\x6a\x62\x7a\x67\x6e\x38\x6b\x30','\x57\x35\x74\x63\x51\x75\x46\x63\x4a\x53\x6f\x5a','\x6a\x43\x6f\x2f\x41\x6d\x6b\x62\x57\x4f\x62\x43\x57\x35\x72\x72','\x78\x4c\x74\x64\x50\x6d\x6b\x7a\x78\x47','\x57\x37\x57\x69\x57\x35\x42\x63\x4f\x53\x6b\x46\x57\x51\x7a\x76\x57\x37\x4b','\x43\x38\x6f\x62\x61\x77\x52\x63\x54\x78\x56\x63\x4e\x71','\x44\x6d\x6f\x78\x44\x4e\x4f\x62\x45\x64\x53\x32','\x44\x5a\x74\x63\x4e\x63\x31\x68\x42\x66\x33\x63\x55\x57','\x57\x51\x64\x64\x4c\x78\x5a\x63\x49\x4b\x38','\x66\x48\x58\x50\x6e\x6d\x6f\x59\x45\x43\x6b\x38\x57\x36\x53','\x65\x57\x39\x53\x41\x38\x6f\x76','\x71\x53\x6b\x6b\x6e\x38\x6b\x6c\x57\x50\x47','\x78\x77\x68\x64\x4c\x38\x6f\x59\x57\x35\x5a\x63\x4a\x76\x33\x64\x52\x57','\x77\x30\x79\x63\x57\x37\x31\x4b','\x42\x75\x53\x66\x57\x36\x39\x65\x67\x43\x6f\x47\x57\x50\x53','\x57\x34\x53\x6b\x57\x50\x71\x4e\x57\x36\x79','\x57\x51\x6c\x63\x54\x77\x75','\x57\x50\x74\x63\x4d\x49\x6d\x32\x70\x71','\x6c\x75\x6d\x66\x57\x34\x61\x6a\x57\x51\x2f\x64\x55\x53\x6b\x55','\x76\x47\x4c\x68\x67\x43\x6b\x51\x57\x51\x72\x4d\x73\x57','\x76\x43\x6b\x2b\x63\x6d\x6b\x35\x57\x37\x6d\x62\x70\x64\x65','\x57\x36\x75\x54\x57\x52\x79\x7a\x57\x51\x71','\x57\x35\x6c\x64\x52\x43\x6f\x72\x71\x43\x6f\x4d','\x57\x52\x61\x63\x57\x36\x4a\x63\x4f\x53\x6b\x46\x57\x52\x4b\x78\x57\x36\x38','\x65\x68\x6d\x39\x57\x50\x69\x54\x57\x51\x68\x64\x4f\x6d\x6b\x4e','\x43\x53\x6b\x61\x57\x52\x2f\x64\x4e\x38\x6f\x5a','\x57\x34\x65\x6e\x57\x52\x61\x58\x57\x52\x74\x63\x50\x43\x6f\x30','\x57\x4f\x46\x63\x4e\x48\x38\x66\x6c\x43\x6b\x32\x57\x35\x52\x63\x50\x57','\x64\x53\x6f\x6a\x46\x38\x6b\x46\x57\x50\x54\x67\x57\x35\x38\x65','\x57\x51\x46\x63\x50\x47\x7a\x61\x57\x35\x62\x62','\x57\x37\x65\x6c\x57\x36\x34','\x71\x62\x70\x63\x52\x53\x6b\x4b\x78\x68\x68\x64\x51\x43\x6f\x78','\x67\x57\x53\x49\x57\x52\x64\x63\x4a\x71','\x77\x38\x6f\x59\x57\x51\x38\x69\x46\x71','\x57\x51\x46\x64\x49\x4d\x46\x63\x4e\x75\x69','\x57\x51\x71\x75\x72\x4b\x42\x64\x4f\x6d\x6b\x31\x6d\x43\x6f\x49','\x57\x52\x31\x68\x65\x6d\x6b\x49\x57\x51\x43\x7a\x45\x57','\x57\x37\x76\x41\x75\x75\x74\x64\x4a\x6d\x6f\x33\x43\x6d\x6f\x46','\x57\x34\x33\x63\x53\x43\x6f\x54\x65\x38\x6b\x4a','\x57\x35\x37\x63\x4f\x31\x5a\x63\x54\x43\x6f\x4c','\x67\x72\x54\x2b\x57\x4f\x69','\x44\x63\x52\x64\x55\x43\x6b\x4d\x57\x4f\x37\x63\x4c\x57','\x57\x52\x6c\x64\x4e\x5a\x78\x64\x54\x57\x46\x63\x4d\x43\x6b\x64\x57\x50\x75','\x62\x71\x58\x70\x65\x6d\x6b\x75\x57\x51\x31\x4e','\x46\x30\x79\x2f\x57\x34\x57\x47','\x57\x35\x56\x64\x47\x53\x6f\x5a\x72\x38\x6f\x51\x6f\x4c\x30','\x57\x51\x44\x37\x74\x68\x7a\x39\x62\x43\x6f\x76\x78\x61','\x6a\x53\x6f\x4b\x57\x35\x42\x64\x54\x76\x38','\x76\x48\x70\x64\x51\x38\x6b\x33\x75\x4d\x64\x63\x55\x38\x6f\x46','\x67\x53\x6f\x4b\x75\x38\x6f\x59\x57\x52\x62\x45\x6c\x5a\x65','\x57\x36\x74\x63\x49\x66\x4a\x63\x4a\x43\x6f\x34\x57\x51\x69\x33\x57\x51\x30','\x62\x61\x62\x43\x64\x6d\x6b\x6d\x57\x50\x35\x58\x73\x57','\x57\x52\x64\x64\x48\x74\x46\x64\x53\x58\x68\x64\x48\x6d\x6f\x6a\x57\x4f\x4b','\x57\x34\x53\x42\x57\x35\x65\x6c\x57\x52\x70\x63\x50\x53\x6b\x54\x75\x71','\x57\x52\x5a\x63\x4e\x53\x6b\x70\x6e\x72\x68\x63\x50\x4a\x64\x64\x53\x71','\x57\x50\x4c\x41\x66\x63\x35\x2f\x61\x38\x6f\x79\x67\x61','\x78\x6d\x6b\x2b\x57\x37\x4e\x64\x4d\x62\x54\x76','\x69\x73\x6d\x45\x57\x4f\x5a\x63\x54\x71','\x7a\x6d\x6b\x30\x63\x38\x6b\x49\x57\x36\x56\x63\x52\x30\x58\x2f','\x6f\x64\x5a\x64\x55\x6d\x6b\x54\x57\x50\x70\x63\x4d\x38\x6f\x74\x68\x57','\x57\x51\x33\x63\x54\x77\x53\x69\x63\x53\x6b\x63\x57\x52\x56\x63\x4a\x71','\x41\x53\x6f\x2b\x57\x52\x72\x39','\x6b\x53\x6b\x59\x57\x35\x33\x64\x47\x65\x6d\x49\x66\x38\x6f\x71','\x57\x4f\x2f\x64\x49\x73\x78\x64\x54\x72\x43','\x75\x77\x74\x64\x53\x38\x6f\x4b\x57\x34\x79','\x72\x38\x6b\x56\x68\x43\x6b\x55\x57\x37\x30\x7a','\x62\x66\x75\x79\x74\x6d\x6f\x6a','\x57\x50\x31\x71\x75\x67\x39\x31\x64\x43\x6f\x63\x75\x61','\x57\x36\x4e\x63\x56\x66\x37\x63\x4b\x53\x6f\x61','\x43\x75\x30\x73\x57\x51\x35\x45\x6c\x6d\x6f\x53\x57\x50\x61','\x57\x4f\x31\x62\x57\x34\x42\x63\x47\x4e\x65','\x45\x4b\x4b\x66','\x6b\x6d\x6b\x45\x57\x4f\x56\x64\x54\x53\x6b\x6f\x75\x65\x33\x63\x56\x57','\x57\x36\x30\x62\x57\x37\x30','\x57\x35\x62\x59\x66\x38\x6b\x47\x68\x68\x56\x63\x4a\x4e\x43','\x6e\x66\x5a\x64\x51\x53\x6f\x71\x57\x36\x64\x63\x55\x4e\x64\x63\x49\x57','\x78\x38\x6b\x42\x57\x51\x56\x64\x47\x53\x6f\x38','\x79\x6d\x6f\x56\x57\x4f\x6d\x6c\x74\x57','\x7a\x6d\x6b\x59\x62\x57','\x6d\x43\x6f\x79\x57\x37\x37\x63\x47\x38\x6b\x4e\x57\x4f\x78\x63\x47\x4d\x42\x63\x48\x59\x78\x63\x49\x6d\x6b\x4f\x70\x57','\x57\x4f\x4e\x64\x4f\x59\x66\x74\x57\x35\x50\x66\x74\x5a\x53','\x66\x57\x54\x44\x73\x38\x6f\x33','\x57\x34\x52\x64\x53\x38\x6f\x62\x43\x43\x6f\x6f','\x57\x52\x37\x64\x48\x74\x78\x64\x53\x58\x46\x63\x4a\x53\x6f\x67\x57\x4f\x4b','\x57\x4f\x52\x64\x4d\x67\x37\x63\x52\x4d\x69\x6f\x71\x53\x6f\x6b','\x57\x50\x70\x63\x48\x48\x66\x31\x57\x35\x79','\x57\x52\x5a\x63\x54\x74\x38\x59\x66\x53\x6b\x66\x57\x36\x4a\x63\x54\x61','\x74\x33\x61\x4e\x57\x35\x31\x6f','\x7a\x6d\x6b\x5a\x6f\x53\x6f\x42\x57\x35\x65\x7a\x57\x4f\x57\x73\x70\x38\x6f\x47\x57\x37\x2f\x64\x49\x43\x6b\x7a','\x6f\x53\x6b\x30\x6f\x76\x65\x34','\x6b\x63\x33\x64\x4a\x33\x6d\x74\x6b\x4c\x4e\x63\x51\x72\x46\x63\x4e\x71\x52\x63\x4f\x47','\x57\x36\x4e\x63\x4a\x53\x6f\x63\x6c\x43\x6b\x4d','\x57\x52\x33\x64\x53\x63\x4f\x4e\x65\x6d\x6f\x6d\x57\x52\x56\x63\x4e\x57','\x57\x36\x70\x64\x4e\x53\x6f\x77\x42\x38\x6f\x49','\x57\x51\x75\x43\x57\x34\x5a\x63\x4f\x38\x6f\x57\x62\x6d\x6b\x48\x57\x51\x53','\x57\x36\x37\x63\x49\x6d\x6f\x2f\x69\x43\x6b\x58','\x57\x50\x54\x54\x6a\x53\x6b\x2b\x57\x51\x79','\x57\x51\x61\x42\x57\x34\x5a\x63\x54\x43\x6b\x70\x64\x53\x6b\x31\x57\x52\x47','\x61\x6d\x6f\x62\x74\x6d\x6b\x68\x57\x50\x4f','\x57\x52\x37\x63\x4a\x53\x6b\x4c\x57\x51\x4a\x64\x4b\x6d\x6f\x32','\x67\x53\x6f\x51\x71\x43\x6f\x53\x57\x52\x44\x46\x41\x61\x61','\x6d\x32\x69\x6c\x46\x43\x6f\x66\x41\x62\x42\x63\x52\x71','\x69\x59\x61\x6b','\x57\x51\x31\x6e\x6f\x6d\x6b\x31\x57\x4f\x38','\x45\x4b\x79\x53\x57\x34\x4c\x4f\x67\x77\x58\x68','\x61\x71\x48\x33\x68\x43\x6f\x32','\x57\x35\x72\x2b\x63\x53\x6f\x4e\x63\x32\x4f','\x74\x47\x4c\x4c\x57\x4f\x56\x63\x48\x43\x6b\x53\x57\x35\x69\x74','\x64\x73\x71\x6b\x57\x4f\x33\x63\x49\x47','\x66\x38\x6f\x6c\x42\x38\x6b\x31\x57\x51\x79','\x78\x4d\x6c\x63\x4c\x49\x31\x74\x41\x65\x46\x63\x53\x71','\x57\x4f\x47\x58\x57\x51\x42\x64\x4b\x6d\x6b\x4e\x62\x48\x54\x63','\x68\x6d\x6b\x35\x6e\x77\x71\x53\x46\x53\x6f\x68\x57\x34\x38','\x61\x38\x6f\x5a\x57\x50\x6e\x33\x57\x36\x44\x45\x57\x4f\x48\x6c','\x57\x4f\x4a\x63\x49\x43\x6b\x42\x57\x51\x52\x64\x52\x61','\x42\x6d\x6f\x6e\x72\x4d\x78\x63\x55\x4e\x70\x64\x4a\x53\x6b\x38','\x74\x53\x6f\x46\x70\x71','\x61\x6d\x6f\x6e\x57\x37\x42\x64\x50\x68\x57\x65\x46\x38\x6f\x55','\x79\x53\x6f\x4d\x57\x51\x47\x61\x74\x47\x5a\x64\x47\x66\x6d','\x6e\x43\x6f\x5a\x57\x35\x6c\x64\x49\x65\x71\x55\x71\x38\x6f\x69','\x6d\x78\x75\x41\x45\x43\x6f\x76\x77\x62\x64\x63\x51\x47','\x71\x53\x6b\x4f\x64\x43\x6b\x65\x57\x52\x65','\x72\x38\x6b\x7a\x6d\x53\x6b\x2b\x57\x52\x69','\x6f\x43\x6b\x64\x57\x52\x68\x64\x52\x43\x6b\x79\x75\x65\x64\x64\x55\x61','\x46\x75\x65\x74\x57\x37\x57\x68','\x64\x64\x54\x4c\x6b\x38\x6f\x4f\x72\x43\x6f\x57\x57\x35\x65','\x7a\x43\x6f\x6e\x57\x52\x30\x6a\x76\x72\x57','\x6a\x38\x6f\x56\x6b\x53\x6b\x6f\x57\x4f\x7a\x62\x57\x34\x47\x75','\x71\x38\x6f\x6a\x41\x77\x75\x61','\x6e\x65\x44\x44\x67\x58\x74\x63\x56\x61\x6c\x64\x50\x43\x6f\x46\x57\x50\x4a\x63\x53\x47\x43','\x57\x51\x62\x47\x57\x35\x69','\x66\x43\x6f\x6a\x67\x58\x64\x64\x52\x47','\x57\x4f\x31\x30\x6e\x43\x6b\x56\x57\x4f\x62\x45\x67\x38\x6f\x42','\x57\x52\x42\x64\x48\x57\x4e\x64\x51\x57\x70\x63\x4d\x43\x6f\x69\x57\x35\x79','\x57\x4f\x53\x51\x57\x35\x68\x63\x4f\x43\x6f\x64\x62\x6d\x6b\x56\x57\x52\x69','\x43\x77\x33\x63\x4f\x73\x44\x6e','\x68\x47\x48\x50\x57\x50\x52\x63\x47\x53\x6b\x49\x57\x34\x54\x61','\x57\x51\x62\x47\x57\x36\x5a\x63\x48\x32\x66\x78\x57\x34\x6c\x64\x47\x71','\x41\x6d\x6f\x4b\x57\x51\x34\x5a\x76\x57\x46\x64\x49\x4c\x61','\x57\x36\x65\x38\x57\x50\x79\x63\x57\x52\x57','\x57\x52\x33\x63\x52\x71\x61\x69\x57\x35\x44\x6d\x73\x63\x4f','\x57\x37\x57\x44\x57\x36\x4a\x63\x4d\x53\x6b\x72','\x76\x78\x61\x67\x57\x37\x35\x45','\x57\x35\x38\x5a\x57\x52\x70\x63\x4d\x4b\x34','\x57\x34\x4c\x38\x57\x36\x34','\x73\x4d\x43\x4f\x46\x43\x6b\x33\x6d\x43\x6f\x37\x57\x52\x65','\x63\x6d\x6f\x59\x62\x59\x2f\x64\x54\x53\x6f\x47\x57\x35\x57','\x66\x43\x6f\x32\x70\x76\x31\x50\x7a\x43\x6f\x72\x57\x34\x57','\x46\x75\x68\x64\x50\x6d\x6f\x51\x57\x51\x37\x63\x49\x68\x33\x64\x4c\x57','\x44\x53\x6b\x44\x72\x4d\x38\x44','\x42\x43\x6f\x39\x62\x38\x6b\x4d\x57\x52\x2f\x63\x51\x61\x38\x51','\x57\x35\x56\x64\x47\x53\x6f\x5a\x72\x38\x6f\x51\x6f\x4c\x31\x56','\x6d\x68\x4b\x6a\x7a\x43\x6f\x6e\x41\x58\x64\x64\x56\x47','\x77\x6d\x6b\x6f\x7a\x33\x65\x76\x69\x59\x53\x41','\x79\x63\x69\x52','\x42\x6d\x6b\x6b\x57\x51\x74\x64\x4c\x53\x6f\x4a\x57\x35\x71','\x7a\x38\x6f\x54\x57\x51\x75\x6c\x74\x57\x61','\x69\x68\x4a\x63\x50\x53\x6f\x30\x57\x34\x6c\x64\x4a\x6d\x6b\x64\x6e\x63\x57\x73\x6c\x31\x65\x59','\x74\x6d\x6f\x6f\x68\x31\x46\x63\x52\x47','\x57\x52\x31\x48\x57\x34\x46\x64\x4b\x4e\x6a\x78\x57\x35\x6c\x64\x54\x57','\x57\x51\x62\x45\x6d\x43\x6b\x75\x57\x52\x47','\x57\x36\x48\x79\x57\x50\x4a\x64\x50\x6d\x6b\x78\x78\x53\x6f\x31\x57\x50\x42\x64\x50\x49\x4c\x58\x73\x63\x47','\x57\x52\x76\x41\x65\x71','\x42\x6d\x6f\x36\x57\x50\x35\x2f\x79\x71','\x57\x52\x56\x63\x4d\x6d\x6b\x6b\x57\x52\x33\x64\x4c\x53\x6f\x2f\x57\x34\x47','\x41\x31\x42\x64\x50\x43\x6b\x5a\x76\x33\x68\x63\x55\x38\x6f\x42','\x46\x43\x6f\x55\x57\x51\x4c\x57\x41\x57','\x67\x5a\x39\x48\x69\x6d\x6f\x56\x6f\x6d\x6b\x4b\x57\x37\x61','\x75\x6d\x6b\x74\x79\x68\x61\x76\x6a\x5a\x4f','\x42\x66\x79\x61\x57\x37\x50\x79\x6d\x43\x6b\x56\x57\x4f\x53','\x75\x68\x4f\x35\x57\x36\x47\x61','\x6d\x53\x6b\x4a\x57\x36\x38\x37\x6d\x58\x66\x71\x61\x57','\x6b\x49\x54\x6e','\x57\x37\x4a\x63\x4d\x38\x6f\x72\x69\x38\x6b\x62\x57\x4f\x69','\x57\x52\x72\x65\x62\x75\x5a\x64\x54\x38\x6f\x32\x46\x6d\x6b\x55','\x57\x34\x71\x34\x57\x51\x46\x63\x47\x65\x6d\x6a\x57\x37\x78\x64\x56\x71','\x42\x6d\x6f\x55\x57\x51\x4c\x48\x41\x57\x6a\x42','\x79\x76\x61\x36\x57\x35\x61','\x44\x6d\x6f\x6e\x61\x4c\x56\x63\x56\x78\x4e\x63\x4e\x53\x6b\x52','\x57\x52\x39\x4d\x57\x35\x64\x63\x4d\x68\x6e\x77\x57\x50\x64\x64\x54\x47','\x62\x43\x6f\x2b\x57\x52\x72\x74\x57\x36\x57','\x57\x52\x5a\x63\x4a\x38\x6b\x49\x57\x51\x68\x64\x47\x38\x6f\x62\x57\x34\x6a\x6b','\x45\x4c\x39\x4e','\x57\x4f\x4b\x30\x62\x38\x6b\x4f\x57\x4f\x66\x73\x61\x43\x6f\x56','\x6e\x4a\x66\x69\x42\x43\x6f\x70\x73\x43\x6f\x54\x57\x52\x34','\x57\x37\x64\x64\x51\x53\x6b\x65\x72\x71','\x57\x37\x38\x58\x57\x36\x52\x63\x54\x43\x6b\x44','\x57\x52\x33\x63\x52\x71\x62\x56\x57\x50\x6e\x36\x73\x59\x53','\x57\x52\x57\x45\x65\x6d\x6b\x69\x57\x51\x6d','\x64\x72\x7a\x54\x57\x50\x37\x63\x4a\x53\x6b\x50\x57\x50\x35\x61','\x42\x30\x46\x63\x4b\x63\x7a\x69\x46\x75\x6c\x63\x52\x71','\x62\x72\x66\x62\x65\x53\x6b\x7a\x57\x4f\x6a\x37\x76\x57','\x7a\x43\x6b\x34\x65\x38\x6b\x30\x57\x51\x52\x63\x51\x4b\x79','\x57\x52\x6d\x34\x66\x53\x6b\x39\x57\x50\x53','\x57\x52\x56\x63\x48\x43\x6b\x56\x57\x51\x52\x64\x4e\x6d\x6f\x72\x57\x35\x43','\x57\x36\x78\x63\x4a\x6d\x6f\x54\x6b\x6d\x6b\x76\x57\x50\x42\x63\x48\x33\x53','\x57\x34\x6d\x64\x57\x52\x78\x63\x4c\x76\x34\x74\x57\x36\x4e\x64\x47\x57','\x78\x31\x64\x63\x4f\x74\x6a\x71','\x69\x71\x50\x4e\x67\x6d\x6f\x32','\x78\x38\x6b\x50\x57\x52\x56\x63\x4e\x57\x50\x6a\x57\x50\x42\x63\x48\x61','\x68\x62\x39\x56\x57\x4f\x4e\x63\x48\x43\x6b\x35\x57\x36\x31\x77','\x71\x38\x6f\x4b\x66\x4b\x52\x63\x56\x61','\x42\x53\x6b\x34\x66\x6d\x6b\x4b\x57\x51\x70\x64\x52\x71','\x72\x4a\x69\x53\x46\x33\x75','\x6c\x59\x62\x6c\x44\x43\x6f\x70\x76\x43\x6f\x52\x57\x34\x65','\x75\x38\x6b\x59\x77\x32\x4e\x63\x53\x43\x6b\x50\x57\x34\x38\x46','\x57\x4f\x39\x6b\x57\x35\x4a\x63\x4d\x68\x50\x42\x57\x35\x70\x64\x51\x57','\x57\x52\x53\x43\x57\x35\x70\x63\x50\x53\x6f\x77','\x64\x53\x6f\x56\x68\x73\x4a\x64\x53\x43\x6f\x73\x57\x35\x4f\x42','\x41\x53\x6f\x56\x57\x51\x34','\x57\x34\x4e\x64\x4d\x38\x6f\x38\x45\x43\x6f\x51\x69\x4b\x79','\x72\x43\x6b\x66\x79\x76\x61\x38','\x6c\x38\x6f\x56\x67\x47\x37\x64\x4e\x47','\x64\x53\x6f\x31\x65\x59\x4e\x64\x56\x53\x6f\x51\x57\x35\x53','\x75\x43\x6b\x64\x46\x49\x6d\x61\x69\x73\x30\x79','\x61\x62\x35\x4c\x57\x4f\x6c\x63\x4a\x6d\x6b\x73\x57\x34\x31\x41','\x72\x6d\x6b\x55\x57\x36\x78\x64\x4d\x4a\x62\x70\x57\x50\x64\x64\x4d\x57','\x57\x4f\x4b\x50\x69\x43\x6b\x35','\x68\x47\x39\x2f\x57\x4f\x71','\x57\x37\x75\x2b\x57\x52\x78\x63\x4e\x4c\x38','\x66\x71\x34\x43\x57\x51\x57','\x57\x36\x64\x64\x53\x68\x7a\x57\x76\x53\x6f\x6f\x57\x52\x56\x63\x56\x57','\x7a\x66\x52\x64\x53\x6d\x6f\x46','\x79\x59\x6e\x53\x68\x6d\x6f\x52\x57\x50\x50\x49\x57\x52\x30','\x57\x35\x70\x63\x52\x38\x6f\x44\x7a\x6d\x6f\x69\x57\x50\x46\x64\x4a\x67\x38','\x57\x4f\x78\x63\x56\x5a\x4f\x6a\x6d\x61','\x45\x43\x6f\x51\x57\x52\x44\x30\x45\x4c\x65\x78\x71\x57','\x41\x6d\x6f\x50\x57\x51\x75\x69\x75\x47\x5a\x64\x48\x66\x71','\x57\x4f\x39\x51\x67\x38\x6b\x50\x57\x51\x4b\x66\x43\x38\x6b\x6b','\x70\x43\x6f\x61\x57\x4f\x6d\x50\x71\x59\x33\x64\x54\x61','\x57\x51\x64\x64\x51\x62\x52\x64\x4d\x57\x6d','\x41\x43\x6b\x52\x57\x36\x39\x35\x45\x75\x53\x70\x63\x47','\x57\x36\x68\x64\x47\x53\x6f\x73\x72\x38\x6f\x61','\x62\x63\x50\x30\x6d\x6d\x6f\x30\x6e\x38\x6b\x5a\x57\x37\x71','\x57\x51\x65\x32\x57\x36\x68\x63\x4b\x6d\x6f\x67','\x79\x63\x48\x53\x67\x38\x6f\x4b\x57\x50\x43\x55\x57\x51\x4f','\x57\x34\x78\x63\x56\x57\x46\x64\x4d\x71','\x66\x38\x6f\x5a\x68\x73\x4b','\x57\x4f\x57\x2f\x65\x6d\x6b\x36\x57\x51\x53','\x7a\x43\x6f\x58\x57\x35\x4a\x64\x47\x66\x4f\x30','\x61\x31\x65\x33\x57\x37\x47\x37','\x57\x34\x65\x5a\x57\x51\x65','\x66\x43\x6b\x36\x68\x4c\x69\x70','\x57\x50\x57\x4a\x57\x4f\x70\x64\x49\x6d\x6b\x6c','\x6c\x6d\x6f\x38\x57\x35\x74\x64\x48\x66\x61\x69\x75\x71','\x57\x51\x44\x61\x65\x38\x6b\x50\x57\x52\x34\x36\x42\x47','\x42\x74\x33\x64\x53\x6d\x6b\x4b\x57\x50\x74\x63\x49\x57','\x77\x6d\x6f\x77\x79\x67\x4f\x74\x6c\x4a\x34\x74','\x57\x52\x79\x6f\x57\x35\x33\x63\x53\x6d\x6f\x64\x72\x6d\x6f\x32','\x65\x49\x48\x79\x6c\x43\x6b\x61','\x42\x59\x57\x49\x68\x53\x6f\x4a\x57\x50\x44\x56\x57\x52\x57','\x57\x52\x68\x63\x4e\x38\x6b\x55\x57\x51\x56\x63\x48\x61','\x7a\x53\x6b\x5a\x70\x6d\x6f\x46\x57\x35\x57\x7a\x57\x34\x53\x67\x6a\x6d\x6f\x46\x57\x36\x4e\x64\x48\x47','\x6c\x63\x71\x49\x64\x53\x6f\x56\x57\x4f\x66\x34\x57\x51\x4b','\x74\x78\x4b\x52\x57\x34\x57\x6f','\x77\x38\x6b\x39\x67\x43\x6b\x55\x57\x52\x34\x30\x68\x48\x53','\x45\x43\x6f\x54\x57\x52\x38\x45\x71\x4a\x46\x64\x48\x4b\x30','\x57\x52\x48\x51\x57\x34\x37\x63\x4a\x32\x6a\x41','\x57\x51\x46\x63\x48\x38\x6b\x2b\x57\x51\x69','\x71\x43\x6b\x35\x57\x37\x33\x64\x55\x47\x43','\x41\x67\x64\x63\x4e\x73\x72\x75\x42\x47','\x57\x36\x68\x63\x51\x53\x6f\x6e\x6e\x38\x6b\x5a','\x57\x4f\x4f\x36\x57\x52\x64\x64\x48\x38\x6b\x42\x66\x48\x30\x4b','\x77\x53\x6b\x53\x57\x36\x68\x64\x49\x61\x43','\x57\x35\x78\x63\x48\x43\x6f\x4c\x69\x6d\x6b\x72','\x57\x52\x5a\x64\x4d\x32\x78\x63\x55\x32\x53\x45\x7a\x43\x6f\x42','\x57\x52\x52\x63\x54\x38\x6f\x67\x64\x48\x37\x64\x55\x64\x4a\x63\x53\x61','\x57\x34\x5a\x63\x53\x33\x52\x63\x47\x43\x6f\x34','\x57\x34\x52\x63\x51\x76\x4a\x63\x49\x38\x6f\x76\x57\x52\x30\x72\x57\x51\x6d','\x6f\x47\x50\x6b\x62\x6d\x6f\x53','\x41\x59\x70\x64\x56\x53\x6b\x49\x57\x50\x38','\x44\x75\x66\x70','\x57\x52\x52\x63\x53\x38\x6f\x46\x64\x71\x4b','\x6a\x43\x6f\x2f\x45\x43\x6b\x66','\x65\x58\x31\x43\x67\x38\x6b\x68\x57\x51\x39\x31\x76\x71','\x46\x78\x6c\x63\x50\x67\x66\x56\x43\x4b\x74\x63\x55\x57','\x57\x35\x53\x67\x57\x50\x4b\x5a\x57\x4f\x61','\x65\x63\x39\x39\x68\x43\x6b\x49','\x71\x6d\x6f\x30\x57\x37\x52\x64\x4d\x47\x6a\x73\x57\x4f\x46\x64\x4b\x57','\x42\x6d\x6f\x6b\x57\x52\x44\x75\x78\x57','\x57\x37\x52\x64\x48\x43\x6f\x74\x75\x6d\x6f\x5a','\x57\x50\x61\x2b\x6a\x38\x6b\x56\x57\x50\x6a\x43\x63\x47','\x57\x34\x61\x35\x57\x51\x56\x63\x4d\x31\x47\x46\x57\x34\x4a\x64\x4a\x61','\x6b\x6d\x6b\x79\x57\x52\x46\x64\x52\x61','\x67\x74\x44\x46\x7a\x53\x6f\x62\x78\x38\x6f\x32\x57\x36\x4f','\x65\x53\x6f\x4f\x67\x4a\x6c\x64\x50\x47','\x57\x37\x6c\x63\x4d\x76\x56\x63\x4c\x53\x6f\x79','\x69\x6d\x6f\x51\x57\x34\x71','\x68\x6d\x6f\x57\x62\x32\x46\x63\x54\x38\x6f\x4f\x57\x34\x43\x75','\x70\x59\x44\x70\x70\x38\x6b\x70','\x6f\x53\x6b\x79\x57\x52\x74\x64\x54\x53\x6b\x7a\x73\x57','\x70\x78\x50\x34\x73\x6d\x6b\x36\x57\x34\x4f\x37\x57\x52\x6c\x64\x47\x6d\x6b\x79\x57\x52\x74\x64\x52\x53\x6b\x42','\x64\x43\x6f\x35\x62\x49\x68\x64\x47\x6d\x6f\x4b\x57\x34\x43\x6f','\x57\x50\x2f\x63\x53\x53\x6f\x46\x6a\x72\x43','\x79\x5a\x38\x48\x65\x38\x6f\x4b\x57\x50\x71\x55\x57\x52\x47','\x57\x4f\x6c\x63\x4b\x49\x6d\x32\x6f\x61','\x46\x73\x4b\x69\x68\x6d\x6f\x73','\x79\x33\x57\x62\x42\x6d\x6f\x5a\x79\x48\x68\x63\x52\x61','\x61\x38\x6b\x36\x6f\x31\x47\x53','\x66\x77\x65\x6a\x57\x35\x30\x66\x57\x51\x68\x64\x51\x38\x6b\x4e','\x42\x4d\x56\x64\x54\x6d\x6b\x4e\x78\x47','\x7a\x31\x56\x64\x50\x38\x6f\x73\x57\x37\x5a\x63\x51\x71','\x44\x4c\x30\x4f\x57\x34\x4b\x54\x6f\x62\x50\x37','\x57\x50\x33\x64\x48\x78\x56\x63\x54\x78\x6d\x66\x75\x38\x6f\x43','\x6b\x6d\x6b\x45\x57\x51\x52\x64\x50\x57','\x57\x50\x68\x63\x4e\x63\x66\x33\x57\x36\x44\x51\x79\x47\x61','\x6b\x4d\x6d\x56\x45\x43\x6f\x45\x7a\x48\x4f','\x57\x4f\x75\x34\x6e\x53\x6b\x41\x57\x52\x4b','\x57\x35\x4e\x63\x53\x31\x68\x63\x4a\x43\x6f\x56\x57\x51\x4b','\x77\x6d\x6b\x4a\x66\x38\x6b\x35\x57\x52\x34\x74\x6a\x59\x65','\x57\x35\x35\x6f\x6c\x6d\x6f\x41\x6c\x57','\x63\x57\x47\x61\x57\x51\x70\x63\x53\x43\x6f\x70\x57\x50\x42\x63\x55\x47','\x57\x51\x75\x45\x68\x53\x6b\x6c\x57\x4f\x6d','\x57\x36\x6e\x73\x61\x6d\x6f\x53\x67\x4b\x78\x63\x4a\x67\x38','\x66\x49\x6e\x57\x43\x6d\x6f\x6f','\x72\x6d\x6b\x67\x43\x4e\x61\x68\x79\x63\x53\x78','\x57\x36\x64\x63\x48\x38\x6f\x47\x69\x38\x6b\x75\x57\x50\x4f','\x57\x4f\x30\x56\x57\x51\x2f\x63\x4b\x30\x71\x68\x57\x37\x46\x63\x49\x47','\x57\x36\x79\x72\x71\x6d\x6f\x57\x57\x36\x50\x47\x6c\x43\x6b\x31\x57\x50\x42\x63\x55\x62\x52\x63\x48\x43\x6b\x65','\x57\x51\x68\x63\x52\x47\x69\x73\x57\x34\x6e\x6d\x72\x64\x53','\x62\x71\x4c\x62\x68\x43\x6b\x71','\x71\x66\x71\x4a\x57\x34\x6c\x64\x48\x43\x6f\x49\x57\x35\x4c\x77','\x43\x53\x6f\x46\x57\x37\x46\x63\x52\x6d\x6f\x73\x66\x4b\x74\x63\x56\x71','\x57\x52\x39\x61\x62\x6d\x6b\x33\x57\x52\x4f\x59\x70\x43\x6b\x78','\x57\x37\x75\x77\x57\x36\x5a\x63\x50\x43\x6b\x77\x57\x52\x50\x73\x57\x52\x65','\x62\x58\x72\x52\x57\x34\x5a\x63\x4d\x6d\x6b\x4b\x57\x35\x4c\x44','\x6d\x53\x6b\x46\x65\x4d\x52\x63\x4e\x78\x4e\x63\x4a\x38\x6b\x70','\x64\x38\x6f\x31\x57\x4f\x50\x58\x57\x37\x50\x6a\x57\x51\x35\x42','\x57\x35\x70\x63\x56\x31\x70\x63\x4e\x53\x6f\x2b\x57\x52\x6d','\x44\x6d\x6b\x49\x57\x34\x68\x64\x4b\x66\x53\x64\x79\x6d\x6f\x74','\x71\x6d\x6b\x32\x57\x51\x50\x33\x57\x52\x76\x62\x57\x51\x62\x6c','\x57\x37\x6d\x61\x57\x36\x33\x63\x4e\x38\x6b\x71','\x7a\x43\x6f\x70\x57\x51\x33\x64\x4b\x6d\x6f\x4a\x57\x35\x4e\x63\x4d\x5a\x57','\x57\x50\x53\x72\x61\x43\x6b\x2f\x57\x51\x71','\x7a\x53\x6f\x61\x57\x4f\x47\x46\x41\x61','\x57\x52\x56\x64\x48\x64\x65','\x68\x6d\x6b\x68\x6d\x65\x30\x58','\x44\x6d\x6f\x46\x69\x31\x46\x63\x53\x57','\x57\x4f\x35\x59\x45\x53\x6f\x38\x57\x51\x6e\x45\x68\x43\x6f\x55','\x61\x57\x48\x6e\x78\x53\x6b\x66\x57\x51\x72\x36\x78\x71','\x44\x31\x42\x64\x4f\x6d\x6f\x42\x57\x36\x56\x64\x54\x5a\x5a\x64\x4a\x57','\x57\x50\x6d\x56\x6c\x43\x6b\x64\x57\x4f\x44\x41\x68\x6d\x6f\x4a','\x69\x53\x6b\x4c\x70\x68\x69\x69','\x68\x53\x6f\x58\x65\x61','\x62\x57\x35\x4b\x57\x34\x5a\x63\x48\x43\x6b\x49\x57\x50\x35\x73','\x41\x43\x6b\x58\x64\x6d\x6b\x30','\x64\x38\x6f\x39\x57\x36\x70\x64\x50\x33\x47','\x67\x48\x57\x34\x57\x51\x37\x63\x55\x71','\x6b\x4d\x6d\x5a\x6b\x38\x6f\x4c\x41\x71\x4e\x63\x55\x57','\x42\x6d\x6f\x6a\x66\x78\x64\x63\x49\x32\x68\x63\x4a\x38\x6b\x59','\x78\x5a\x33\x64\x54\x53\x6b\x58\x57\x50\x69','\x64\x63\x4f\x79\x57\x51\x46\x63\x53\x38\x6b\x74','\x45\x64\x71\x6c\x67\x38\x6f\x36\x57\x4f\x61','\x57\x35\x53\x44\x57\x52\x42\x63\x54\x77\x30','\x57\x34\x50\x70\x6c\x43\x6f\x75\x6b\x47','\x42\x48\x65\x6f\x74\x4c\x43','\x74\x32\x42\x64\x50\x38\x6f\x42\x57\x36\x56\x63\x4e\x68\x33\x64\x4c\x57','\x57\x4f\x31\x30\x6f\x43\x6b\x35\x57\x50\x35\x75\x68\x43\x6f\x58','\x57\x51\x4b\x63\x75\x47','\x57\x52\x6c\x63\x52\x43\x6f\x69\x71\x74\x4a\x63\x4f\x64\x4e\x64\x53\x71','\x57\x52\x33\x63\x52\x71\x6e\x78\x57\x34\x54\x4d\x74\x61','\x65\x32\x66\x69\x57\x34\x66\x63\x57\x36\x34','\x57\x34\x74\x64\x4a\x53\x6f\x36\x74\x53\x6f\x2f\x70\x47','\x45\x38\x6b\x4b\x6a\x43\x6f\x64\x57\x34\x43\x61\x57\x35\x53\x75','\x57\x51\x61\x41\x57\x35\x52\x63\x55\x71','\x57\x37\x56\x63\x49\x5a\x70\x64\x50\x58\x42\x63\x4a\x38\x6f\x72\x57\x50\x71','\x69\x72\x5a\x63\x53\x53\x6b\x62\x57\x52\x52\x64\x52\x59\x4a\x64\x49\x76\x7a\x4f\x57\x36\x52\x63\x4e\x68\x34','\x70\x32\x39\x6a\x70\x43\x6f\x32\x46\x43\x6b\x5a\x57\x36\x57','\x6b\x71\x61\x46\x57\x4f\x56\x63\x4b\x47','\x57\x51\x46\x63\x56\x49\x47\x53\x63\x53\x6b\x65\x57\x37\x37\x63\x4d\x61','\x45\x58\x65\x53\x57\x34\x30\x54\x6c\x4b\x6d\x4f','\x6f\x43\x6f\x72\x57\x52\x46\x64\x50\x6d\x6f\x43\x75\x65\x46\x63\x54\x61','\x72\x38\x6f\x51\x74\x4b\x53\x32','\x57\x35\x70\x63\x54\x76\x4f','\x57\x36\x70\x64\x4b\x53\x6f\x37\x57\x37\x4e\x63\x4e\x6d\x6b\x4f\x57\x4f\x66\x61\x57\x35\x33\x64\x49\x67\x30\x48\x63\x71','\x57\x52\x52\x63\x51\x74\x53\x4c','\x57\x51\x5a\x63\x4c\x57\x6a\x64\x57\x35\x61','\x57\x50\x57\x4f\x6d\x71','\x42\x53\x6b\x46\x44\x67\x30\x76\x6c\x63\x58\x46','\x57\x50\x68\x64\x55\x66\x70\x63\x51\x78\x65','\x57\x36\x4e\x64\x47\x53\x6f\x50\x6a\x43\x6b\x75\x57\x50\x56\x63\x4a\x67\x38','\x44\x66\x69\x39\x57\x35\x69\x4e\x6d\x4c\x54\x51','\x57\x34\x5a\x63\x53\x4c\x6c\x63\x4a\x6d\x6f\x4d\x57\x52\x38\x4e\x57\x51\x4b','\x57\x4f\x2f\x63\x48\x48\x39\x63\x57\x35\x39\x61\x73\x74\x79','\x73\x6d\x6b\x63\x6d\x32\x75\x72\x6e\x64\x57\x78','\x46\x32\x72\x49','\x64\x59\x50\x54\x70\x6d\x6f\x55\x79\x43\x6b\x78\x57\x36\x4f','\x42\x53\x6f\x6a\x57\x36\x5a\x63\x54\x43\x6f\x6a\x64\x58\x70\x63\x4a\x53\x6f\x73\x57\x52\x71\x31\x57\x37\x64\x64\x51\x47','\x6a\x38\x6f\x56\x41\x43\x6b\x79\x57\x50\x54\x44\x57\x35\x75\x46','\x66\x73\x6d\x39\x57\x51\x4a\x63\x56\x47','\x6c\x43\x6f\x74\x57\x50\x4c\x74\x57\x37\x38','\x69\x6d\x6f\x35\x42\x38\x6b\x46\x57\x52\x50\x62\x57\x35\x75\x62','\x7a\x6d\x6b\x34\x62\x6d\x6f\x4e\x57\x36\x70\x63\x4f\x30\x58\x4b','\x67\x32\x72\x4a\x42\x38\x6f\x6d\x78\x38\x6f\x4d\x57\x36\x4f','\x7a\x53\x6b\x79\x57\x34\x64\x64\x4c\x5a\x75','\x57\x4f\x74\x63\x49\x38\x6f\x4e\x74\x6d\x6f\x34\x6a\x75\x43\x47','\x65\x4a\x50\x5a\x6f\x57','\x44\x6d\x6b\x57\x57\x34\x64\x64\x49\x58\x4b','\x6c\x62\x58\x30\x57\x4f\x68\x63\x52\x61','\x57\x37\x6c\x64\x4f\x43\x6f\x38\x78\x38\x6f\x6a','\x57\x4f\x6a\x70\x66\x38\x6b\x53\x57\x50\x75','\x78\x43\x6b\x4b\x67\x38\x6f\x38\x57\x36\x30\x79\x6c\x5a\x4f','\x43\x6d\x6b\x68\x66\x77\x33\x63\x53\x33\x4e\x63\x4a\x38\x6b\x59','\x41\x58\x69\x67\x74\x66\x68\x64\x50\x61','\x45\x4e\x33\x63\x4c\x67\x66\x70\x42\x57\x37\x63\x52\x71','\x42\x48\x4b\x6c\x72\x31\x64\x64\x51\x61\x37\x64\x50\x71','\x44\x33\x68\x63\x4c\x59\x7a\x73\x44\x61','\x69\x6d\x6f\x2f\x57\x34\x64\x64\x4c\x76\x65\x79\x76\x6d\x6f\x69','\x57\x50\x5a\x63\x55\x48\x44\x44\x57\x34\x44\x62\x74\x59\x57','\x78\x30\x39\x70\x57\x4f\x4a\x63\x52\x43\x6b\x53\x57\x35\x50\x78','\x57\x36\x4f\x43\x57\x50\x69\x57\x57\x50\x38','\x57\x52\x37\x64\x50\x4d\x5a\x63\x4a\x78\x43','\x57\x34\x47\x56\x57\x37\x53','\x62\x71\x72\x43\x66\x38\x6b\x41\x57\x51\x39\x68\x76\x57','\x71\x48\x57\x68\x57\x51\x78\x63\x53\x38\x6b\x67\x57\x4f\x4e\x63\x53\x57','\x57\x35\x71\x34\x57\x4f\x52\x63\x48\x4e\x4f','\x65\x43\x6f\x5a\x65\x57','\x57\x35\x58\x6c\x72\x32\x6e\x4a\x71\x43\x6f\x73\x75\x61','\x73\x43\x6b\x4c\x6c\x38\x6b\x52\x57\x51\x43','\x69\x6d\x6b\x58\x63\x65\x4f\x48','\x67\x76\x52\x64\x51\x6d\x6b\x49\x78\x68\x46\x64\x51\x43\x6f\x6c','\x67\x38\x6f\x77\x69\x73\x74\x64\x49\x61','\x71\x49\x58\x31\x69\x43\x6f\x55\x43\x43\x6b\x5a\x57\x36\x30','\x46\x78\x46\x64\x4e\x53\x6b\x4c\x74\x57','\x68\x62\x39\x56\x57\x4f\x4e\x63\x48\x43\x6b\x35\x57\x37\x54\x66'];_0x4723=function(){return _0x1974ff;};return _0x4723();}'use strict';const {extractSignals:_0x13c4fa}=require(_0x50364c(0x22c,'\x74\x26\x68\x55')+_0x50364c(0x17f,'\x28\x78\x73\x6c')+'\x73'),{loadGenes:_0x1e1626,loadCapsules:_0x5b567f,readAllEvents:_0x8008f6,consumePendingSignals:_0x4743a8}=require('\x2e\x2e\x2f\x2e\x2e\x2f\x67\x65'+_0x50364c(0x27f,'\x64\x4b\x74\x25')+_0x50364c(0x32b,'\x38\x56\x59\x44')),{trySniff:_0x432649}=require(_0x50364c(0x158,'\x53\x76\x57\x59')+'\x70\x2f\x63\x6f\x6e\x76\x65\x72'+_0x50364c(0x18a,'\x78\x4f\x28\x39')+_0x50364c(0x150,'\x5b\x58\x6a\x52')),{readStateForSolidify:_0x1c4164}=require('\x2e\x2e\x2f\x2e\x2e\x2f\x67\x65'+_0x50364c(0x1e3,'\x64\x4b\x74\x25')+'\x66\x79');function _0x18bd90(..._0x4e0a5f){const _0x54cc0b=_0x50364c,_0x512460={'\x4a\x57\x57\x4c\x53':function(_0xdede8a,_0x23dde6){return _0xdede8a!==_0x23dde6;},'\x51\x4f\x77\x4a\x51':function(_0x3d813d,_0xab5d94){return _0x3d813d(_0xab5d94);},'\x73\x69\x47\x78\x72':_0x54cc0b(0x20d,'\x5b\x71\x77\x6a')+'\x5d'};if(_0x512460[_0x54cc0b(0x206,'\x4c\x24\x65\x25')](_0x512460[_0x54cc0b(0x24c,'\x32\x67\x43\x49')](String,process.env.EVOLVER_VERBOSE||'')[_0x54cc0b(0x284,'\x25\x58\x38\x76')+_0x54cc0b(0x29d,'\x67\x6c\x6e\x34')](),_0x54cc0b(0x2d4,'\x64\x4b\x74\x25')))return;_0x4e0a5f[_0x54cc0b(0x28d,'\x5e\x33\x5b\x51')](_0x512460[_0x54cc0b(0x306,'\x36\x34\x77\x26')]),console[_0x54cc0b(0x162,'\x36\x34\x77\x26')][_0x54cc0b(0x30b,'\x40\x57\x5d\x28')](console,_0x4e0a5f);}function _0x19ce2a(_0x59146d){const _0x3cc629=_0x50364c,_0x2650fb={};_0x2650fb[_0x3cc629(0x256,'\x6c\x6c\x6f\x4b')]=_0x3cc629(0x229,'\x68\x21\x37\x56')+_0x3cc629(0x204,'\x55\x79\x42\x43')+_0x3cc629(0x24b,'\x54\x4a\x26\x4d')+'\x20\x74\x6f\x20\x63\x6f\x6e\x73'+_0x3cc629(0x140,'\x78\x4f\x28\x39')+_0x3cc629(0x17e,'\x74\x26\x68\x55')+_0x3cc629(0x1a4,'\x41\x50\x31\x26')+'\x2d\x66\x61\x74\x61\x6c\x29\x3a',_0x2650fb[_0x3cc629(0x1a8,'\x64\x4b\x74\x25')]=_0x3cc629(0x184,'\x68\x30\x4c\x43')+_0x3cc629(0x285,'\x76\x78\x48\x4c')+_0x3cc629(0x24f,'\x53\x26\x4d\x49')+'\x64',_0x2650fb[_0x3cc629(0x264,'\x55\x79\x42\x43')]=function(_0x2ecb43,_0x291531){return _0x2ecb43!==_0x291531;},_0x2650fb[_0x3cc629(0x1f9,'\x70\x51\x78\x28')]=_0x3cc629(0x26b,'\x57\x33\x67\x29')+'\x72',_0x2650fb[_0x3cc629(0x17a,'\x4d\x36\x6a\x40')]=_0x3cc629(0x171,'\x53\x76\x57\x59')+_0x3cc629(0x1c1,'\x55\x79\x42\x43'),_0x2650fb[_0x3cc629(0x2f4,'\x78\x4f\x28\x39')]=_0x3cc629(0x2dd,'\x23\x47\x56\x28')+_0x3cc629(0x2a8,'\x6c\x6c\x6f\x4b'),_0x2650fb[_0x3cc629(0x222,'\x36\x34\x77\x26')]=_0x3cc629(0x31f,'\x5e\x33\x5b\x51')+'\x74\x6c\x65\x6e\x65\x63\x6b',_0x2650fb[_0x3cc629(0x227,'\x79\x38\x31\x37')]=_0x3cc629(0x30d,'\x78\x4f\x28\x39')+_0x3cc629(0x247,'\x2a\x6e\x74\x7a'),_0x2650fb[_0x3cc629(0x1f6,'\x54\x4a\x26\x4d')]=_0x3cc629(0x1f4,'\x67\x5e\x36\x49')+_0x3cc629(0x2ac,'\x79\x38\x31\x37'),_0x2650fb['\x59\x63\x72\x75\x6a']=_0x3cc629(0x2f1,'\x78\x25\x6a\x28'),_0x2650fb[_0x3cc629(0x1d6,'\x68\x30\x4c\x43')]=_0x3cc629(0x1a9,'\x48\x58\x75\x23')+_0x3cc629(0x2ad,'\x28\x78\x73\x6c')+_0x3cc629(0x1ba,'\x64\x4b\x74\x25'),_0x2650fb[_0x3cc629(0x13e,'\x28\x78\x73\x6c')]=_0x3cc629(0x320,'\x40\x57\x5d\x28'),_0x2650fb[_0x3cc629(0x13b,'\x76\x78\x48\x4c')]=_0x3cc629(0x290,'\x66\x47\x61\x5b'),_0x2650fb['\x43\x45\x67\x4b\x6a']=function(_0x149b2a,_0x4db998){return _0x149b2a===_0x4db998;},_0x2650fb[_0x3cc629(0x138,'\x67\x5e\x36\x49')]='\x65\x72\x72\x73\x69\x67\x3a',_0x2650fb[_0x3cc629(0x14f,'\x6b\x58\x44\x39')]=_0x3cc629(0x307,'\x36\x34\x77\x26')+_0x3cc629(0x2d3,'\x4d\x36\x6a\x40')+_0x3cc629(0x1cc,'\x53\x76\x57\x59'),_0x2650fb['\x6d\x79\x55\x48\x5a']=function(_0x556dc4,_0x169bac){return _0x556dc4>_0x169bac;},_0x2650fb[_0x3cc629(0x172,'\x61\x64\x4b\x70')]=function(_0x198cfe,_0x61640b){return _0x198cfe>_0x61640b;};const _0x30020b=_0x2650fb;if(!Array['\x69\x73\x41\x72\x72\x61\x79'](_0x59146d))return![];const _0x474a24=['\x66\x6f\x72\x63\x65\x5f\x73\x74'+'\x65\x61\x64\x79\x5f\x73\x74\x61'+'\x74\x65','\x65\x76\x6f\x6c\x75\x74\x69\x6f'+_0x3cc629(0x2bf,'\x4b\x78\x73\x25')+_0x3cc629(0x316,'\x38\x56\x59\x44'),_0x30020b[_0x3cc629(0x18f,'\x4c\x24\x65\x25')]];let _0x267194=![];for(let _0x1e0fa9=-0x1337+-0x4b1*0x1+0x17e8;_0x1e0fa9<_0x474a24[_0x3cc629(0x180,'\x5b\x58\x6a\x52')];_0x1e0fa9++){if(_0x30020b[_0x3cc629(0x1b1,'\x63\x58\x4c\x2a')](_0x59146d[_0x3cc629(0x2ef,'\x68\x30\x4c\x43')](_0x474a24[_0x1e0fa9]),-(0x1921*-0x1+0x2be+0x1664*0x1))){_0x267194=!![];break;}}if(!_0x267194)return![];const _0x3fda1e=[_0x30020b[_0x3cc629(0x211,'\x63\x58\x4c\x2a')],_0x30020b[_0x3cc629(0x1d0,'\x41\x50\x31\x26')],_0x30020b[_0x3cc629(0x1e9,'\x55\x79\x42\x43')],_0x30020b[_0x3cc629(0x288,'\x67\x5e\x36\x49')],_0x30020b[_0x3cc629(0x302,'\x4d\x36\x6a\x40')],_0x3cc629(0x197,'\x41\x50\x31\x26')+_0x3cc629(0x1d7,'\x6c\x6c\x6f\x4b'),_0x30020b[_0x3cc629(0x1b5,'\x36\x77\x79\x4e')],_0x30020b[_0x3cc629(0x199,'\x54\x4a\x26\x4d')],_0x30020b[_0x3cc629(0x19d,'\x38\x56\x59\x44')]];for(let _0x46ad26=-0x7*-0x3b9+0x1d81*0x1+-0x3790;_0x46ad26<_0x59146d[_0x3cc629(0x25e,'\x38\x54\x26\x4a')];_0x46ad26++){if(_0x30020b[_0x3cc629(0x29b,'\x67\x6c\x6e\x34')]===_0x30020b[_0x3cc629(0x300,'\x6c\x6c\x6f\x4b')])_0xb97cae[_0x3cc629(0x223,'\x54\x79\x6c\x47')](_0x30020b[_0x3cc629(0x2ed,'\x57\x33\x67\x29')],_0x33ff22&&_0x3641b4[_0x3cc629(0x314,'\x64\x4b\x74\x25')]||_0xfe36d4);else{const _0x55ea21=_0x59146d[_0x46ad26];if(_0x3fda1e[_0x3cc629(0x2bd,'\x38\x54\x26\x4a')](_0x55ea21)!==-(0x2ea+-0x17e3+-0xb3*-0x1e))return![];if(_0x30020b['\x43\x45\x67\x4b\x6a'](_0x55ea21[_0x3cc629(0x155,'\x54\x4a\x26\x4d')](_0x30020b[_0x3cc629(0x138,'\x67\x5e\x36\x49')]),-0x26e0+0x3*0x20b+0x20bf))return![];if(_0x30020b[_0x3cc629(0x173,'\x74\x35\x35\x56')](_0x55ea21[_0x3cc629(0x1b7,'\x57\x33\x67\x29')](_0x30020b['\x72\x54\x49\x54\x55']),-0x325+-0x1946+0x1c6b)&&_0x30020b[_0x3cc629(0x1f8,'\x6b\x58\x44\x39')](_0x55ea21[_0x3cc629(0x180,'\x5b\x58\x6a\x52')],-0x1*-0x278+0x689+-0x8ec))return![];if(_0x30020b[_0x3cc629(0x2c1,'\x55\x79\x42\x43')](_0x55ea21[_0x3cc629(0x21f,'\x67\x6c\x6e\x34')](_0x3cc629(0x259,'\x6d\x4f\x4a\x6e')+'\x72\x6f\x76\x65\x6d\x65\x6e\x74'+_0x3cc629(0x317,'\x32\x67\x43\x49')+'\x69\x6f\x6e\x3a'),0x1461+-0xb3*-0x2f+-0x353e)&&_0x30020b[_0x3cc629(0x172,'\x61\x64\x4b\x70')](_0x55ea21[_0x3cc629(0x337,'\x6c\x6c\x6f\x4b')],-0x350+0x10de+0xd72*-0x1))return![];}}return!![];}async function _0x3cac56(_0x324ad2){const _0x4094c9=_0x50364c,_0x462c2b={'\x44\x44\x58\x73\x76':function(_0x22decd){return _0x22decd();},'\x6f\x74\x6e\x75\x79':function(_0x56b171){return _0x56b171();},'\x75\x69\x77\x50\x48':function(_0xab9b4b,_0x328935){return _0xab9b4b<_0x328935;},'\x56\x66\x63\x6b\x4a':function(_0x1dcb9c,_0x458c1c){return _0x1dcb9c+_0x458c1c;},'\x72\x76\x6c\x47\x45':'\x20\x75\x73\x65\x72\x2d\x64\x65'+_0x4094c9(0x2b8,'\x54\x79\x6c\x47')+_0x4094c9(0x332,'\x61\x64\x4b\x70')+_0x4094c9(0x1c6,'\x40\x57\x5d\x28')+_0x4094c9(0x2d2,'\x54\x79\x6c\x47')+_0x4094c9(0x22f,'\x7a\x75\x29\x50')+_0x4094c9(0x2b1,'\x79\x38\x31\x37'),'\x59\x67\x6b\x64\x71':_0x4094c9(0x28c,'\x55\x79\x42\x43')+_0x4094c9(0x2b4,'\x40\x57\x5d\x28'),'\x4c\x54\x67\x70\x63':function(_0xbe0938,_0x50cfd3){return _0xbe0938<_0x50cfd3;},'\x76\x71\x59\x6a\x79':function(_0x3176d0,_0x117a1e){return _0x3176d0>_0x117a1e;},'\x58\x62\x73\x6a\x75':function(_0x1d4f4c,_0x11f061){return _0x1d4f4c+_0x11f061;},'\x66\x4a\x55\x63\x57':function(_0x313218,_0x1d689b){return _0x313218+_0x1d689b;},'\x42\x62\x63\x73\x59':_0x4094c9(0x2df,'\x67\x6c\x6e\x34')+_0x4094c9(0x30e,'\x61\x5a\x57\x29')+_0x4094c9(0x20a,'\x28\x59\x40\x74'),'\x61\x4c\x76\x53\x73':'\x20\x63\x6f\x6e\x76\x65\x72\x73'+_0x4094c9(0x305,'\x40\x57\x5d\x28')+_0x4094c9(0x272,'\x68\x30\x4c\x43')+_0x4094c9(0x246,'\x40\x26\x46\x54')+_0x4094c9(0x16e,'\x70\x44\x30\x24'),'\x54\x59\x4d\x41\x56':function(_0x36620e){return _0x36620e();},'\x5a\x4a\x68\x76\x42':function(_0x16799b,_0x326084){return _0x16799b(_0x326084);},'\x66\x55\x48\x5a\x50':function(_0x4daf0b,_0xe759c9,_0x48a083){return _0x4daf0b(_0xe759c9,_0x48a083);},'\x78\x73\x56\x6c\x64':function(_0x24a834,_0xabfed5){return _0x24a834+_0xabfed5;},'\x6e\x6f\x75\x66\x54':_0x4094c9(0x167,'\x66\x47\x61\x5b')+_0x4094c9(0x294,'\x66\x47\x61\x5b')+_0x4094c9(0x28b,'\x4b\x78\x73\x25'),'\x6b\x73\x7a\x77\x79':function(_0x4b6538,_0x1bbed7){return _0x4b6538+_0x1bbed7;},'\x44\x46\x6a\x4c\x50':_0x4094c9(0x2a0,'\x77\x50\x75\x44')+_0x4094c9(0x2ab,'\x23\x47\x56\x28'),'\x4d\x43\x66\x6f\x52':_0x4094c9(0x178,'\x63\x58\x4c\x2a')+_0x4094c9(0x1db,'\x61\x64\x4b\x70')+_0x4094c9(0x2e7,'\x36\x34\x77\x26'),'\x4b\x75\x42\x46\x69':_0x4094c9(0x2ea,'\x68\x30\x4c\x43'),'\x52\x73\x6e\x49\x41':function(_0x1d491a,_0x12a004){return _0x1d491a!==_0x12a004;},'\x55\x4b\x46\x6a\x73':_0x4094c9(0x24d,'\x63\x58\x4c\x2a'),'\x58\x45\x4a\x57\x70':function(_0x34e62b,_0x3d074b){return _0x34e62b>_0x3d074b;},'\x47\x43\x55\x43\x7a':function(_0x5650a9,_0x256fc2){return _0x5650a9===_0x256fc2;},'\x62\x6a\x71\x65\x51':_0x4094c9(0x2b7,'\x64\x4b\x74\x25'),'\x49\x42\x67\x41\x7a':function(_0x333b77,_0x3e1e6d){return _0x333b77+_0x3e1e6d;},'\x47\x45\x76\x47\x65':function(_0x3e09f4,_0x23c12d){return _0x3e09f4+_0x23c12d;},'\x59\x43\x52\x5a\x54':_0x4094c9(0x1a7,'\x25\x58\x38\x76')+_0x4094c9(0x32a,'\x53\x26\x4d\x49')+_0x4094c9(0x1b3,'\x40\x57\x5d\x28')+_0x4094c9(0x1cf,'\x74\x26\x68\x55'),'\x4a\x62\x6b\x6a\x71':'\x20\x73\x69\x67\x6e\x61\x6c\x28'+_0x4094c9(0x2a9,'\x48\x58\x75\x23')+_0x4094c9(0x283,'\x54\x79\x6c\x47')+_0x4094c9(0x1a2,'\x64\x4b\x74\x25')+_0x4094c9(0x25c,'\x6d\x4f\x4a\x6e')+_0x4094c9(0x30a,'\x36\x77\x79\x4e'),'\x72\x51\x59\x72\x57':function(_0x58454e,_0x225a98){return _0x58454e<_0x225a98;},'\x6b\x67\x48\x67\x74':_0x4094c9(0x30f,'\x28\x59\x40\x74'),'\x46\x53\x4b\x46\x44':_0x4094c9(0x26d,'\x38\x54\x26\x4a'),'\x48\x57\x6c\x57\x49':function(_0x367d79,_0x1b3571){return _0x367d79>_0x1b3571;},'\x4a\x75\x6d\x43\x7a':_0x4094c9(0x16c,'\x54\x4a\x26\x4d')+_0x4094c9(0x2b9,'\x61\x5a\x57\x29')+_0x4094c9(0x176,'\x32\x67\x43\x49')+'\x65\x64\x20','\x4b\x6f\x71\x49\x4f':function(_0x2513a5,_0x568eda){return _0x2513a5(_0x568eda);},'\x71\x62\x6a\x45\x68':function(_0x151001,_0x1c7478){return _0x151001(_0x1c7478);},'\x43\x4c\x70\x4e\x68':function(_0x47daa4,_0x1a9a6c){return _0x47daa4===_0x1a9a6c;},'\x43\x4d\x76\x78\x6f':_0x4094c9(0x21c,'\x76\x78\x48\x4c'),'\x6d\x4b\x6e\x77\x4d':function(_0xabb61d,_0x43f9da){return _0xabb61d+_0x43f9da;},'\x62\x55\x63\x63\x63':_0x4094c9(0x1a6,'\x64\x4b\x74\x25'),'\x70\x57\x6c\x7a\x4d':function(_0x2b691b,_0x2d802c){return _0x2b691b===_0x2d802c;},'\x52\x4a\x7a\x54\x79':_0x4094c9(0x32e,'\x64\x4b\x74\x25'),'\x6b\x5a\x67\x57\x70':_0x4094c9(0x2df,'\x67\x6c\x6e\x34')+_0x4094c9(0x213,'\x5b\x71\x77\x6a')+_0x4094c9(0x232,'\x68\x21\x37\x56')+_0x4094c9(0x2f3,'\x6d\x4f\x4a\x6e'),'\x79\x64\x4c\x72\x50':function(_0xc45722,_0x31f0fc){return _0xc45722(_0x31f0fc);},'\x72\x58\x65\x49\x47':function(_0x4b5f55,_0x1bd1b0){return _0x4b5f55<=_0x1bd1b0;},'\x42\x41\x65\x58\x4f':function(_0x46ceac,_0x42c0f1){return _0x46ceac-_0x42c0f1;},'\x70\x69\x6e\x76\x78':function(_0x51676c,_0x200d28){return _0x51676c<_0x200d28;},'\x56\x54\x46\x53\x73':function(_0x3fc85a,_0x1d0307){return _0x3fc85a+_0x1d0307;},'\x6b\x68\x4a\x4b\x79':function(_0x40c382,_0x4dd857){return _0x40c382+_0x4dd857;},'\x6c\x51\x62\x76\x78':_0x4094c9(0x151,'\x40\x26\x46\x54')+_0x4094c9(0x2b6,'\x54\x4a\x26\x4d')+_0x4094c9(0x2a4,'\x36\x77\x79\x4e')+_0x4094c9(0x145,'\x54\x79\x6c\x47')+_0x4094c9(0x326,'\x5b\x71\x77\x6a')+_0x4094c9(0x2f2,'\x66\x47\x61\x5b')+'\x73\x2e\x20\x53\x6b\x69\x70\x70'+_0x4094c9(0x154,'\x40\x57\x5d\x28')+'\x41\x50\x49\x20\x63\x61\x6c\x6c'+_0x4094c9(0x2e2,'\x23\x47\x56\x28')+_0x4094c9(0x2c5,'\x4c\x24\x65\x25'),'\x63\x76\x66\x54\x77':_0x4094c9(0x257,'\x52\x54\x25\x23')+_0x4094c9(0x33f,'\x67\x5e\x36\x49')+'\x20','\x42\x66\x78\x6d\x47':function(_0x240c0e,_0x42de33){return _0x240c0e/_0x42de33;},'\x41\x53\x63\x57\x43':_0x4094c9(0x26f,'\x66\x47\x61\x5b'),'\x6f\x4b\x64\x4f\x57':_0x4094c9(0x275,'\x4c\x24\x65\x25'),'\x78\x54\x65\x71\x63':function(_0x4f9da0,_0x5326c4){return _0x4f9da0+_0x5326c4;},'\x53\x4e\x62\x5a\x78':function(_0x5e16d3,_0x31603d){return _0x5e16d3/_0x31603d;},'\x4e\x63\x42\x61\x68':_0x4094c9(0x13f,'\x64\x4b\x74\x25')+_0x4094c9(0x321,'\x70\x44\x30\x24')+_0x4094c9(0x276,'\x38\x56\x59\x44')+'\x48\x75\x62\x20\x63\x68\x65\x63'+'\x6b\x2e','\x49\x54\x49\x76\x44':_0x4094c9(0x147,'\x68\x30\x4c\x43'),'\x58\x48\x62\x77\x46':function(_0x371dbd){return _0x371dbd();},'\x71\x59\x48\x41\x69':_0x4094c9(0x22e,'\x78\x4f\x28\x39')+'\x72\x6f\x72\x5f\x63\x6f\x6e\x74'+_0x4094c9(0x31a,'\x68\x30\x4c\x43'),'\x62\x77\x71\x5a\x68':function(_0x411d6b,_0x422b19){return _0x411d6b+_0x422b19;},'\x42\x68\x57\x4f\x6c':_0x4094c9(0x2fb,'\x76\x78\x48\x4c')+'\x64\x3a','\x49\x69\x46\x6e\x4b':function(_0x449160,_0x3bb09d){return _0x449160(_0x3bb09d);},'\x59\x4e\x66\x6a\x67':_0x4094c9(0x33d,'\x38\x56\x59\x44')+_0x4094c9(0x196,'\x61\x64\x4b\x70')+_0x4094c9(0x2fd,'\x38\x54\x26\x4a'),'\x4d\x53\x47\x5a\x62':_0x4094c9(0x33c,'\x54\x79\x6c\x47')+'\x70\x2f\x61\x32\x61\x50\x72\x6f'+_0x4094c9(0x1d1,'\x78\x4f\x28\x39'),'\x68\x55\x6f\x57\x71':_0x4094c9(0x2c8,'\x5e\x33\x5b\x51')+_0x4094c9(0x311,'\x4d\x36\x6a\x40')+_0x4094c9(0x14b,'\x78\x25\x6a\x28'),'\x77\x43\x4c\x44\x61':'\x56\x58\x52\x73\x6d','\x67\x67\x62\x4f\x67':_0x4094c9(0x1ab,'\x77\x50\x75\x44'),'\x77\x57\x66\x4b\x48':_0x4094c9(0x217,'\x53\x76\x57\x59')+_0x4094c9(0x1fa,'\x67\x6c\x6e\x34')+'\x65\x63\x74\x65\x64\x20','\x47\x6e\x51\x56\x59':_0x4094c9(0x193,'\x55\x79\x42\x43')+_0x4094c9(0x2d1,'\x66\x47\x61\x5b')+_0x4094c9(0x156,'\x5b\x71\x77\x6a'),'\x4c\x42\x68\x76\x47':_0x4094c9(0x198,'\x76\x78\x48\x4c')+_0x4094c9(0x1d9,'\x76\x78\x48\x4c')+_0x4094c9(0x175,'\x4c\x24\x65\x25')+_0x4094c9(0x19a,'\x41\x50\x31\x26')+'\x20'},{dormantHypothesis:_0x5ee3cb,recentMasterLog:_0x347717,todayLog:_0x58acf9,memorySnippet:_0x1e8cdb,userSnippet:_0x386780}=_0x324ad2,_0x27eb19=_0x324ad2[_0x4094c9(0x26a,'\x62\x72\x40\x4c')+'\x65\x74\x63\x68\x4d\x73']||0x26ea+-0x2*0x1bf+-0x236c,_0x588896=_0x462c2b[_0x4094c9(0x1b2,'\x76\x78\x48\x4c')](_0x1e1626),_0x196ed7=_0x5b567f(),_0x1ca47f=((()=>{const _0x2c2add=_0x4094c9;try{const _0x482ee0=_0x462c2b[_0x2c2add(0x168,'\x53\x26\x4d\x49')](_0x8008f6);return Array[_0x2c2add(0x1bd,'\x68\x21\x37\x56')](_0x482ee0)?_0x482ee0[_0x2c2add(0x32f,'\x36\x34\x77\x26')](_0x4f4c52=>_0x4f4c52&&_0x4f4c52[_0x2c2add(0x164,'\x52\x54\x25\x23')]===_0x2c2add(0x269,'\x61\x5a\x57\x29')+_0x2c2add(0x279,'\x76\x78\x48\x4c'))[_0x2c2add(0x309,'\x78\x25\x6a\x28')](-(0x1a4d*0x1+-0x19*0x14f+-0xe*-0x7b)):[];}catch(_0x57efd9){return[];}})()),_0xb8aaa4={};_0xb8aaa4[_0x4094c9(0x2c3,'\x54\x79\x6c\x47')+_0x4094c9(0x2cb,'\x5e\x33\x5b\x51')+'\x6e\x73\x63\x72\x69\x70\x74']=_0x347717,_0xb8aaa4[_0x4094c9(0x209,'\x36\x77\x79\x4e')]=_0x58acf9,_0xb8aaa4[_0x4094c9(0x315,'\x4b\x78\x73\x25')+_0x4094c9(0x1e6,'\x5b\x71\x77\x6a')]=_0x1e8cdb,_0xb8aaa4[_0x4094c9(0x174,'\x53\x76\x57\x59')+_0x4094c9(0x244,'\x67\x5e\x36\x49')]=_0x386780,_0xb8aaa4[_0x4094c9(0x195,'\x54\x79\x6c\x47')+_0x4094c9(0x1e0,'\x32\x67\x43\x49')]=_0x1ca47f;const _0xe3d627=_0x462c2b[_0x4094c9(0x17c,'\x63\x58\x4c\x2a')](_0x13c4fa,_0xb8aaa4);_0x462c2b[_0x4094c9(0x331,'\x6b\x58\x44\x39')](_0x18bd90,_0x462c2b[_0x4094c9(0x2ee,'\x62\x72\x40\x4c')](_0x462c2b[_0x4094c9(0x1f7,'\x74\x26\x68\x55')]+_0xe3d627['\x6c\x65\x6e\x67\x74\x68'],'\x29\x3a'),_0xe3d627[_0x4094c9(0x2e8,'\x5e\x33\x5b\x51')]('\x2c\x20')),_0x462c2b['\x5a\x4a\x68\x76\x42'](_0x18bd90,_0x462c2b[_0x4094c9(0x1fc,'\x36\x34\x77\x26')](_0x462c2b[_0x4094c9(0x2ca,'\x6d\x4f\x4a\x6e')](_0x462c2b[_0x4094c9(0x1ad,'\x40\x57\x5d\x28')](_0x462c2b[_0x4094c9(0x1f2,'\x2a\x6e\x74\x7a')],_0x1ca47f[_0x4094c9(0x224,'\x78\x25\x6a\x28')])+_0x462c2b[_0x4094c9(0x319,'\x36\x34\x77\x26')],_0x347717[_0x4094c9(0x183,'\x61\x5a\x57\x29')]),_0x462c2b[_0x4094c9(0x258,'\x63\x58\x4c\x2a')]));if(_0x5ee3cb&&Array[_0x4094c9(0x29f,'\x38\x54\x26\x4a')](_0x5ee3cb['\x73\x69\x67\x6e\x61\x6c\x73'])&&_0x5ee3cb[_0x4094c9(0x200,'\x28\x78\x73\x6c')][_0x4094c9(0x296,'\x2a\x6e\x74\x7a')]>0x2*0xb4d+0x19f6+-0x3090){if(_0x462c2b[_0x4094c9(0x1fb,'\x78\x4f\x28\x39')](_0x462c2b[_0x4094c9(0x205,'\x32\x67\x43\x49')],_0x462c2b[_0x4094c9(0x25d,'\x53\x76\x57\x59')])){const _0x350e96=_0x462c2b[_0x4094c9(0x318,'\x5e\x33\x5b\x51')](_0x4cf795);let _0x3573b9=0x3*-0x57e+0x26c*0x10+0x2*-0xb23;for(let _0x2501d2=-0x1*0x1345+0x669*0x5+-0xcc8*0x1;_0x462c2b[_0x4094c9(0x203,'\x53\x26\x4d\x49')](_0x2501d2,_0x350e96[_0x4094c9(0x343,'\x36\x34\x77\x26')]);_0x2501d2++){!_0x3595ce['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x350e96[_0x2501d2])&&(_0x23a430['\x70\x75\x73\x68'](_0x350e96[_0x2501d2]),_0x3573b9++);}_0x3573b9>0xa4*-0x6+0x1262+-0x2*0x745&&_0x1e3773[_0x4094c9(0x249,'\x4c\x24\x65\x25')](_0x462c2b[_0x4094c9(0x17d,'\x67\x6c\x6e\x34')](_0x462c2b[_0x4094c9(0x23f,'\x36\x34\x77\x26')](_0x4094c9(0x281,'\x6d\x4f\x4a\x6e')+_0x4094c9(0x201,'\x41\x50\x31\x26')+_0x4094c9(0x15c,'\x55\x79\x42\x43')+_0x4094c9(0x261,'\x32\x67\x43\x49'),_0x3573b9),_0x462c2b[_0x4094c9(0x21d,'\x53\x26\x4d\x49')]));}else{const _0x207ad1=_0x5ee3cb[_0x4094c9(0x2f0,'\x67\x6c\x6e\x34')];let _0x57a637=-0x329*-0x1+0x3b*-0x5+-0x202;for(let _0x23ce63=-0x28*-0x72+0x11e8+-0x23b8;_0x462c2b[_0x4094c9(0x1a1,'\x38\x54\x26\x4a')](_0x23ce63,_0x207ad1[_0x4094c9(0x157,'\x63\x58\x4c\x2a')]);_0x23ce63++){!_0xe3d627[_0x4094c9(0x271,'\x76\x78\x48\x4c')](_0x207ad1[_0x23ce63])&&(_0xe3d627['\x70\x75\x73\x68'](_0x207ad1[_0x23ce63]),_0x57a637++);}_0x462c2b[_0x4094c9(0x308,'\x55\x79\x42\x43')](_0x57a637,0x1*0x25b3+0xb5f*0x1+-0xb*0x476)&&(_0x462c2b['\x47\x43\x55\x43\x7a'](_0x4094c9(0x2c6,'\x5b\x58\x6a\x52'),_0x462c2b[_0x4094c9(0x25a,'\x6c\x6c\x6f\x4b')])?console[_0x4094c9(0x2ec,'\x4b\x78\x73\x25')](_0x462c2b[_0x4094c9(0x286,'\x28\x59\x40\x74')](_0x462c2b[_0x4094c9(0x23d,'\x70\x51\x78\x28')](_0x462c2b['\x59\x43\x52\x5a\x54'],_0x57a637),_0x462c2b[_0x4094c9(0x254,'\x57\x33\x67\x29')])):_0x328978[_0x4094c9(0x13c,'\x7a\x75\x29\x50')](_0x4094c9(0x1ce,'\x40\x57\x5d\x28')+_0x4094c9(0x287,'\x54\x4a\x26\x4d')+_0x4094c9(0x231,'\x40\x57\x5d\x28')+_0x4094c9(0x1c9,'\x6b\x58\x44\x39')+'\x61\x69\x6d\x20\x69\x73\x20\x73'+_0x4094c9(0x2ae,'\x25\x58\x38\x76')+_0x4094c9(0x245,'\x6b\x58\x44\x39')+'\x65\x20\x62\x65\x63\x61\x75\x73'+_0x4094c9(0x160,'\x38\x56\x59\x44')+_0x4094c9(0x169,'\x6c\x6c\x6f\x4b')+'\x2e\x20\x54\x6f\x20\x66\x6f\x72'+_0x4094c9(0x237,'\x52\x54\x25\x23')+_0x4094c9(0x1dc,'\x70\x44\x30\x24')+'\x6e\x20\x65\x76\x65\x72\x79\x20'+_0x4094c9(0x141,'\x40\x26\x46\x54')+_0x4094c9(0x2fa,'\x74\x26\x68\x55')+_0x4094c9(0x1cb,'\x74\x26\x68\x55')+_0x4094c9(0x32c,'\x54\x4a\x26\x4d')+_0x4094c9(0x216,'\x52\x54\x25\x23')+_0x4094c9(0x2db,'\x6c\x6c\x6f\x4b')+_0x4094c9(0x2d8,'\x52\x54\x25\x23')+_0x4094c9(0x239,'\x68\x30\x4c\x43')+_0x4094c9(0x266,'\x54\x79\x6c\x47')+_0x4094c9(0x342,'\x74\x35\x35\x56')+_0x4094c9(0x2e6,'\x70\x44\x30\x24')+_0x4094c9(0x336,'\x66\x47\x61\x5b')+_0x4094c9(0x139,'\x2a\x6e\x74\x7a')+_0x4094c9(0x1fd,'\x53\x76\x57\x59')+_0x4094c9(0x292,'\x63\x58\x4c\x2a')+_0x4094c9(0x330,'\x74\x26\x68\x55')+_0x4094c9(0x1be,'\x4d\x36\x6a\x40')+_0x4094c9(0x1ee,'\x70\x44\x30\x24')+_0x4094c9(0x1ff,'\x67\x5e\x36\x49')+_0x4094c9(0x20e,'\x78\x4f\x28\x39')+_0x4094c9(0x2c2,'\x4d\x36\x6a\x40')));}}try{const _0x11387d=_0x462c2b[_0x4094c9(0x194,'\x77\x50\x75\x44')](_0x4743a8);let _0x28f48a=0x5f8+0x1356+-0x9e*0x29;for(let _0x50687e=-0xa37*0x1+-0x51c+0x1*0xf53;_0x462c2b[_0x4094c9(0x1ae,'\x68\x21\x37\x56')](_0x50687e,_0x11387d[_0x4094c9(0x265,'\x6b\x58\x44\x39')]);_0x50687e++){!_0xe3d627[_0x4094c9(0x15e,'\x52\x54\x25\x23')](_0x11387d[_0x50687e])&&(_0x462c2b[_0x4094c9(0x248,'\x76\x78\x48\x4c')]!==_0x462c2b['\x46\x53\x4b\x46\x44']?(_0xe3d627[_0x4094c9(0x30c,'\x53\x76\x57\x59')](_0x11387d[_0x50687e]),_0x28f48a++):!_0x37b617[_0x4094c9(0x1f3,'\x28\x78\x73\x6c')](_0x46acbe[_0x5b50e8])&&(_0x357733[_0x4094c9(0x1d2,'\x78\x25\x6a\x28')](_0x386806[_0x3874bc]),_0x506862++));}_0x462c2b[_0x4094c9(0x19f,'\x7a\x75\x29\x50')](_0x28f48a,0x25*0x67+-0x1017+-0xe*-0x16)&&console[_0x4094c9(0x1c0,'\x48\x58\x75\x23')](_0x462c2b[_0x4094c9(0x192,'\x5e\x33\x5b\x51')](_0x462c2b[_0x4094c9(0x274,'\x4c\x24\x65\x25')],_0x28f48a)+(_0x4094c9(0x18e,'\x68\x21\x37\x56')+_0x4094c9(0x329,'\x79\x38\x31\x37')+_0x4094c9(0x1e7,'\x63\x58\x4c\x2a')+_0x4094c9(0x1e2,'\x78\x25\x6a\x28')+_0x4094c9(0x2b0,'\x38\x54\x26\x4a')+'\x67\x6e\x61\x6c\x73\x2e\x6a\x73'+_0x4094c9(0x1ef,'\x70\x51\x78\x28')));}catch(_0x179a02){console[_0x4094c9(0x2d7,'\x61\x64\x4b\x70')](_0x4094c9(0x2c9,'\x25\x58\x38\x76')+'\x74\x53\x69\x67\x6e\x61\x6c\x73'+_0x4094c9(0x1e4,'\x40\x57\x5d\x28')+_0x4094c9(0x19c,'\x78\x4f\x28\x39')+_0x4094c9(0x33a,'\x54\x4a\x26\x4d')+_0x4094c9(0x340,'\x54\x79\x6c\x47')+_0x4094c9(0x31b,'\x5e\x33\x5b\x51')+_0x4094c9(0x212,'\x67\x5e\x36\x49'),_0x179a02&&_0x179a02[_0x4094c9(0x2a3,'\x66\x47\x61\x5b')]||_0x179a02);}try{const _0xdfdd7f=_0x462c2b[_0x4094c9(0x20c,'\x52\x54\x25\x23')](_0x432649,[_0x462c2b[_0x4094c9(0x15d,'\x61\x64\x4b\x70')](String,_0x347717||''),_0x462c2b[_0x4094c9(0x2fe,'\x4d\x36\x6a\x40')](String,_0x58acf9||'')]);let _0x2ba56e=0x21b9*-0x1+-0x1*0x23ce+0x15d*0x33;for(let _0x1c3d4f=0x1*0x1b1+-0x2395+0x879*0x4;_0x1c3d4f<_0xdfdd7f[_0x4094c9(0x226,'\x78\x4f\x28\x39')]['\x6c\x65\x6e\x67\x74\x68'];_0x1c3d4f++){!_0xe3d627[_0x4094c9(0x182,'\x5b\x58\x6a\x52')](_0xdfdd7f[_0x4094c9(0x1cd,'\x32\x67\x43\x49')][_0x1c3d4f])&&(_0x462c2b[_0x4094c9(0x234,'\x61\x64\x4b\x70')](_0x462c2b[_0x4094c9(0x27b,'\x41\x50\x31\x26')],_0x462c2b[_0x4094c9(0x1b0,'\x7a\x75\x29\x50')])?(_0xe3d627[_0x4094c9(0x2d9,'\x40\x26\x46\x54')](_0xdfdd7f[_0x4094c9(0x2d0,'\x5e\x33\x5b\x51')][_0x1c3d4f]),_0x2ba56e++):(_0x5b982a['\x70\x75\x73\x68'](_0x30e008[_0xe0bc5c]),_0x43f00f++));}_0x462c2b[_0x4094c9(0x333,'\x64\x4b\x74\x25')](_0x2ba56e,-0x16c4+0x10ab+0x619)&&console[_0x4094c9(0x18d,'\x5e\x33\x5b\x51')](_0x462c2b['\x6d\x4b\x6e\x77\x4d'](_0x462c2b[_0x4094c9(0x208,'\x36\x77\x79\x4e')],_0x2ba56e)+_0x462c2b['\x61\x4c\x76\x53\x73']);if(Array[_0x4094c9(0x215,'\x28\x59\x40\x74')](_0xdfdd7f['\x63\x61\x6e\x64\x69\x64\x61\x74'+'\x65\x73'])&&_0xdfdd7f[_0x4094c9(0x2de,'\x76\x78\x48\x4c')+'\x65\x73'][_0x4094c9(0x2fc,'\x25\x58\x38\x76')]&&_0x462c2b[_0x4094c9(0x143,'\x57\x33\x67\x29')]((process.env.EVOLVER_CONV_DISTILL_ENABLED||_0x462c2b[_0x4094c9(0x2b5,'\x67\x5e\x36\x49')])['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x4094c9(0x166,'\x64\x4b\x74\x25')](),_0x462c2b[_0x4094c9(0x1d4,'\x68\x21\x37\x56')])){if(_0x462c2b[_0x4094c9(0x1ca,'\x6c\x6c\x6f\x4b')]('\x7a\x46\x73\x6b\x55',_0x462c2b['\x52\x4a\x7a\x54\x79']))return _0x3a85c4[_0x4094c9(0x2b2,'\x64\x4b\x74\x25')]()['\x73\x65\x61\x72\x63\x68'](xETjaE[_0x4094c9(0x1bf,'\x70\x51\x78\x28')])['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x4094c9(0x1f0,'\x6c\x6c\x6f\x4b')+_0x4094c9(0x27d,'\x25\x58\x38\x76')](_0x88720c)[_0x4094c9(0x218,'\x54\x4a\x26\x4d')](xETjaE[_0x4094c9(0x303,'\x6c\x6c\x6f\x4b')]);else try{_0x462c2b[_0x4094c9(0x2dc,'\x52\x54\x25\x23')](require,_0x4094c9(0x33d,'\x38\x56\x59\x44')+'\x70\x2f\x61\x75\x74\x6f\x44\x69'+_0x4094c9(0x2ba,'\x78\x4f\x28\x39')+'\x76')['\x65\x6e\x71\x75\x65\x75\x65\x43'+_0x4094c9(0x23e,'\x68\x21\x37\x56')](_0xdfdd7f[_0x4094c9(0x2f5,'\x70\x44\x30\x24')+'\x65\x73']);}catch(_0x478c5c){}}}catch(_0x124186){console[_0x4094c9(0x1af,'\x74\x35\x35\x56')](_0x462c2b[_0x4094c9(0x188,'\x53\x26\x4d\x49')],_0x124186&&_0x124186[_0x4094c9(0x2bb,'\x4c\x24\x65\x25')]||_0x124186);}let _0x3d0913=parseInt(_0x462c2b[_0x4094c9(0x262,'\x67\x6c\x6e\x34')](String,process.env.EVOLVER_IDLE_FETCH_INTERVAL_MS||''),-0x1d*0x7f+0xec5+0x58*-0x1);if(!Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x3d0913)||_0x462c2b['\x72\x58\x65\x49\x47'](_0x3d0913,-0x2669+-0x1c0d+0x4276))_0x3d0913=-0x11*-0x112bb+0x108dd4+-0x19a47f;let _0x31e0f9=![];if(_0x19ce2a(_0xe3d627)){const _0x485f97=_0x462c2b[_0x4094c9(0x268,'\x53\x76\x57\x59')](Date[_0x4094c9(0x153,'\x48\x58\x75\x23')](),_0x27eb19);if(_0x462c2b[_0x4094c9(0x308,'\x55\x79\x42\x43')](_0x27eb19,0x1d90+-0x2*-0x377+-0x247e)&&_0x462c2b[_0x4094c9(0x1f5,'\x40\x26\x46\x54')](_0x485f97,_0x3d0913)){_0x31e0f9=!![],console['\x6c\x6f\x67'](_0x462c2b[_0x4094c9(0x252,'\x36\x77\x79\x4e')](_0x462c2b[_0x4094c9(0x2af,'\x74\x35\x35\x56')](_0x462c2b['\x66\x4a\x55\x63\x57'](_0x462c2b[_0x4094c9(0x13d,'\x57\x33\x67\x29')],Math[_0x4094c9(0x1a0,'\x38\x56\x59\x44')](_0x485f97/(-0x18a7+0x11*0x14c+-0x1*-0x683))),_0x462c2b[_0x4094c9(0x22a,'\x68\x30\x4c\x43')])+Math[_0x4094c9(0x28a,'\x4b\x78\x73\x25')](_0x462c2b[_0x4094c9(0x17b,'\x54\x79\x6c\x47')](_0x3d0913,0x244e+0x2412+0x38*-0x139)),_0x462c2b[_0x4094c9(0x221,'\x6c\x6c\x6f\x4b')]));if(process.env.EVOLVER_DEBUG_TASKS==='\x31'){if(_0x462c2b[_0x4094c9(0x2cf,'\x5e\x33\x5b\x51')](_0x4094c9(0x2e9,'\x64\x4b\x74\x25'),_0x4094c9(0x323,'\x70\x44\x30\x24'))){const _0x4e271f=_0x462c2b['\x6f\x74\x6e\x75\x79'](_0x4be263);return _0x3cdabf[_0x4094c9(0x32d,'\x70\x51\x78\x28')](_0x4e271f)?_0x4e271f[_0x4094c9(0x31d,'\x38\x56\x59\x44')](_0x5afc16=>_0x5afc16&&_0x5afc16['\x74\x79\x70\x65']===_0x4094c9(0x1df,'\x4c\x24\x65\x25')+_0x4094c9(0x14c,'\x61\x64\x4b\x70'))[_0x4094c9(0x325,'\x57\x33\x67\x29')](-(-0x1131*0x1+-0xb*0x2fc+0x3255)):[];}else console[_0x4094c9(0x2a7,'\x32\x67\x43\x49')]('\x5b\x49\x64\x6c\x65\x47\x61\x74'+_0x4094c9(0x29a,'\x25\x58\x38\x76')+_0x4094c9(0x1b4,'\x6b\x58\x44\x39')+_0x4094c9(0x2e4,'\x55\x79\x42\x43')+_0x4094c9(0x181,'\x61\x5a\x57\x29')+_0x4094c9(0x33e,'\x67\x6c\x6e\x34')+_0x4094c9(0x240,'\x36\x77\x79\x4e')+'\x65\x20\x62\x65\x63\x61\x75\x73'+_0x4094c9(0x28e,'\x57\x33\x67\x29')+_0x4094c9(0x169,'\x6c\x6c\x6f\x4b')+_0x4094c9(0x137,'\x74\x35\x35\x56')+_0x4094c9(0x230,'\x28\x59\x40\x74')+_0x4094c9(0x225,'\x7a\x75\x29\x50')+_0x4094c9(0x15f,'\x79\x38\x31\x37')+_0x4094c9(0x21e,'\x48\x58\x75\x23')+_0x4094c9(0x263,'\x79\x38\x31\x37')+'\x4c\x56\x45\x52\x5f\x49\x44\x4c'+_0x4094c9(0x270,'\x68\x30\x4c\x43')+_0x4094c9(0x207,'\x40\x26\x46\x54')+_0x4094c9(0x2db,'\x6c\x6c\x6f\x4b')+_0x4094c9(0x25f,'\x74\x26\x68\x55')+_0x4094c9(0x22b,'\x77\x50\x75\x44')+_0x4094c9(0x18b,'\x61\x64\x4b\x70')+_0x4094c9(0x16a,'\x79\x38\x31\x37')+_0x4094c9(0x26e,'\x28\x78\x73\x6c')+_0x4094c9(0x2a2,'\x55\x79\x42\x43')+_0x4094c9(0x291,'\x4c\x24\x65\x25')+_0x4094c9(0x2b3,'\x32\x67\x43\x49')+_0x4094c9(0x293,'\x70\x51\x78\x28')+_0x4094c9(0x235,'\x4c\x24\x65\x25')+_0x4094c9(0x142,'\x64\x4b\x74\x25')+_0x4094c9(0x15a,'\x7a\x75\x29\x50')+_0x4094c9(0x280,'\x7a\x75\x29\x50')+_0x4094c9(0x324,'\x70\x51\x78\x28')+_0x4094c9(0x2c2,'\x4d\x36\x6a\x40'));}}else{if(_0x462c2b[_0x4094c9(0x267,'\x61\x64\x4b\x70')]===_0x4094c9(0x25b,'\x67\x6c\x6e\x34'))console[_0x4094c9(0x162,'\x36\x34\x77\x26')](_0x462c2b[_0x4094c9(0x13a,'\x64\x4b\x74\x25')](_0x462c2b[_0x4094c9(0x165,'\x54\x4a\x26\x4d')](_0x4094c9(0x334,'\x6b\x58\x44\x39')+_0x4094c9(0x28f,'\x40\x26\x46\x54')+'\x75\x72\x61\x74\x65\x64\x20\x62'+_0x4094c9(0x16d,'\x66\x47\x61\x5b')+_0x4094c9(0x2f8,'\x70\x44\x30\x24')+_0x4094c9(0x202,'\x61\x5a\x57\x29')+_0x4094c9(0x1bb,'\x6d\x4f\x4a\x6e'),Math[_0x4094c9(0x214,'\x2a\x6e\x74\x7a')](_0x462c2b['\x53\x4e\x62\x5a\x78'](_0x462c2b[_0x4094c9(0x1ea,'\x6b\x58\x44\x39')](Date[_0x4094c9(0x1b8,'\x36\x34\x77\x26')](),_0x27eb19),-0x10a+-0x966*0x1+0xe58))),_0x462c2b[_0x4094c9(0x2bc,'\x64\x4b\x74\x25')]));else{const _0x4d4f26=_0x52c0f[_0x4094c9(0x228,'\x63\x58\x4c\x2a')];let _0xe77add=0x33+-0x6*0x463+-0x2e7*-0x9;for(let _0x5e7544=-0x11e1*-0x2+0x2272*0x1+-0x1*0x4634;_0x462c2b[_0x4094c9(0x289,'\x36\x77\x79\x4e')](_0x5e7544,_0x4d4f26['\x6c\x65\x6e\x67\x74\x68']);_0x5e7544++){!_0x5a0336[_0x4094c9(0x2be,'\x6c\x6c\x6f\x4b')](_0x4d4f26[_0x5e7544])&&(_0x499a34[_0x4094c9(0x159,'\x6d\x4f\x4a\x6e')](_0x4d4f26[_0x5e7544]),_0xe77add++);}_0x462c2b[_0x4094c9(0x29e,'\x23\x47\x56\x28')](_0xe77add,-0x1*0x2225+-0x160c+0x3*0x12bb)&&_0xa6bed7[_0x4094c9(0x249,'\x4c\x24\x65\x25')](_0x462c2b[_0x4094c9(0x17d,'\x67\x6c\x6e\x34')](_0x462c2b[_0x4094c9(0x23a,'\x7a\x75\x29\x50')]('\x5b\x44\x6f\x72\x6d\x61\x6e\x74'+_0x4094c9(0x185,'\x54\x4a\x26\x4d')+_0x4094c9(0x149,'\x70\x51\x78\x28')+_0x4094c9(0x2f6,'\x38\x54\x26\x4a'),_0xe77add),_0x4094c9(0x338,'\x4b\x78\x73\x25')+'\x73\x29\x20\x66\x72\x6f\x6d\x20'+_0x4094c9(0x283,'\x54\x79\x6c\x47')+_0x4094c9(0x191,'\x77\x50\x75\x44')+_0x4094c9(0x1d3,'\x5e\x33\x5b\x51')+_0x4094c9(0x20b,'\x52\x54\x25\x23')));}}}try{if(_0x462c2b[_0x4094c9(0x2c4,'\x28\x78\x73\x6c')](_0x462c2b['\x49\x54\x49\x76\x44'],'\x4a\x6f\x53\x46\x50')){var _0xa21002=_0x462c2b[_0x4094c9(0x2f9,'\x79\x38\x31\x37')](_0x1c4164);if(_0xa21002&&_0xa21002[_0x4094c9(0x1d5,'\x28\x59\x40\x74')+_0x4094c9(0x2c7,'\x32\x67\x43\x49')+_0x4094c9(0x1a3,'\x74\x35\x35\x56')]){var _0x2b8c70=_0xa21002[_0x4094c9(0x14a,'\x28\x78\x73\x6c')+_0x4094c9(0x2aa,'\x4b\x78\x73\x25')+'\x66\x61\x69\x6c\x75\x72\x65'];_0xe3d627[_0x4094c9(0x238,'\x23\x47\x56\x28')](_0x462c2b[_0x4094c9(0x2e5,'\x6d\x4f\x4a\x6e')]);if(_0x2b8c70[_0x4094c9(0x144,'\x5e\x33\x5b\x51')])_0xe3d627[_0x4094c9(0x2d5,'\x54\x79\x6c\x47')](_0x462c2b[_0x4094c9(0x19e,'\x70\x44\x30\x24')](_0x462c2b['\x42\x68\x57\x4f\x6c'],_0x462c2b[_0x4094c9(0x1c3,'\x40\x26\x46\x54')](String,_0x2b8c70[_0x4094c9(0x242,'\x36\x77\x79\x4e')])[_0x4094c9(0x19b,'\x68\x21\x37\x56')](-0x20d5+-0x1a83+0x3b58,0x23dd+-0x1*-0x26ae+-0x4a3b)));if(_0x2b8c70[_0x4094c9(0x2ff,'\x61\x5a\x57\x29')])_0xe3d627[_0x4094c9(0x179,'\x55\x79\x42\x43')](_0x462c2b[_0x4094c9(0x31c,'\x78\x4f\x28\x39')](_0x4094c9(0x273,'\x70\x51\x78\x28')+_0x4094c9(0x277,'\x36\x77\x79\x4e'),_0x462c2b[_0x4094c9(0x1ac,'\x54\x4a\x26\x4d')](String,_0x2b8c70[_0x4094c9(0x328,'\x40\x26\x46\x54')])[_0x4094c9(0x33b,'\x78\x4f\x28\x39')](0x1981*-0x1+-0x19*-0xc1+0x3*0x238,0x13ac+0x1*-0x1fdf+0x8d*0x17)));console[_0x4094c9(0x219,'\x67\x5e\x36\x49')](_0x4094c9(0x22d,'\x36\x34\x77\x26')+_0x4094c9(0x278,'\x55\x79\x42\x43')+_0x4094c9(0x301,'\x62\x72\x40\x4c')+_0x4094c9(0x1eb,'\x53\x26\x4d\x49')+_0x4094c9(0x2da,'\x70\x44\x30\x24')+_0x4094c9(0x27a,'\x53\x76\x57\x59')+'\x78\x74\x20\x66\x72\x6f\x6d\x20'+_0x4094c9(0x260,'\x70\x51\x78\x28')+_0x4094c9(0x236,'\x78\x25\x6a\x28')+_0x4094c9(0x21a,'\x77\x50\x75\x44')+_0x4094c9(0x189,'\x4b\x78\x73\x25')+(_0x2b8c70[_0x4094c9(0x251,'\x52\x54\x25\x23')+_0x4094c9(0x20f,'\x74\x26\x68\x55')+'\x64']||-0x3ca+0x1*-0x2092+0x122e*0x2)+'\x29\x2e');}}else _0x2fecf2[_0x4094c9(0x295,'\x70\x44\x30\x24')](_0x462c2b[_0x4094c9(0x310,'\x78\x4f\x28\x39')](_0x462c2b[_0x4094c9(0x2d6,'\x4b\x78\x73\x25')](_0x462c2b[_0x4094c9(0x187,'\x28\x59\x40\x74')],_0xad0824),_0x462c2b[_0x4094c9(0x1c8,'\x4d\x36\x6a\x40')]));}catch(_0x52e5bc){}try{var {generateCurriculumSignals:_0xcfce05}=_0x462c2b[_0x4094c9(0x2e3,'\x63\x58\x4c\x2a')](require,_0x462c2b[_0x4094c9(0x241,'\x25\x58\x38\x76')]),{getCapabilityGaps:_0x1aced4}=require(_0x462c2b[_0x4094c9(0x210,'\x28\x59\x40\x74')]),_0x3f42df=[];try{_0x3f42df=_0x462c2b[_0x4094c9(0x2c0,'\x61\x5a\x57\x29')](_0x1aced4)||[];}catch(_0x30b3a3){}var _0x3636f9=_0x462c2b[_0x4094c9(0x18c,'\x4b\x78\x73\x25')](require,_0x4094c9(0x1b9,'\x38\x54\x26\x4a')+_0x4094c9(0x152,'\x64\x4b\x74\x25')+'\x47\x72\x61\x70\x68')[_0x4094c9(0x1de,'\x4d\x36\x6a\x40')+'\x61\x70\x68\x50\x61\x74\x68']?require(_0x462c2b[_0x4094c9(0x27e,'\x5e\x33\x5b\x51')])[_0x4094c9(0x16f,'\x55\x79\x42\x43')+'\x61\x70\x68\x50\x61\x74\x68']():'';const _0x18af21={};_0x18af21[_0x4094c9(0x1ec,'\x78\x4f\x28\x39')+_0x4094c9(0x14d,'\x70\x44\x30\x24')]=_0x3f42df,_0x18af21[_0x4094c9(0x26c,'\x74\x35\x35\x56')+_0x4094c9(0x2cd,'\x63\x58\x4c\x2a')]=_0x3636f9,_0x18af21[_0x4094c9(0x1b6,'\x53\x26\x4d\x49')+_0x4094c9(0x1a5,'\x36\x34\x77\x26')]={};var _0x239f70=_0x462c2b[_0x4094c9(0x21b,'\x61\x64\x4b\x70')](_0xcfce05,_0x18af21);for(var _0x37c8fe=-0x1*0x2066+-0xf7*0x7+0x2727*0x1;_0x37c8fe<_0x239f70[_0x4094c9(0x233,'\x4d\x36\x6a\x40')];_0x37c8fe++){_0x462c2b[_0x4094c9(0x2e1,'\x7a\x75\x29\x50')]===_0x462c2b[_0x4094c9(0x1fe,'\x77\x50\x75\x44')]?(_0x2b365c[_0x4094c9(0x238,'\x23\x47\x56\x28')](_0x5af6f3[_0x29f74d]),_0x1309a8++):!_0xe3d627[_0x4094c9(0x24e,'\x7a\x75\x29\x50')](_0x239f70[_0x37c8fe])&&_0xe3d627['\x70\x75\x73\x68'](_0x239f70[_0x37c8fe]);}_0x462c2b['\x58\x45\x4a\x57\x70'](_0x239f70[_0x4094c9(0x224,'\x78\x25\x6a\x28')],0x2129+0x1*-0x2566+0x43d)&&console['\x6c\x6f\x67'](_0x462c2b[_0x4094c9(0x148,'\x61\x64\x4b\x70')](_0x462c2b[_0x4094c9(0x1c2,'\x7a\x75\x29\x50')]+_0x239f70[_0x4094c9(0x297,'\x76\x78\x48\x4c')],_0x462c2b[_0x4094c9(0x161,'\x41\x50\x31\x26')]));}catch(_0x48dce6){console[_0x4094c9(0x295,'\x70\x44\x30\x24')](_0x462c2b[_0x4094c9(0x250,'\x54\x4a\x26\x4d')](_0x462c2b[_0x4094c9(0x322,'\x52\x54\x25\x23')],_0x48dce6&&_0x48dce6[_0x4094c9(0x1c7,'\x53\x76\x57\x59')]?_0x48dce6['\x6d\x65\x73\x73\x61\x67\x65']:_0x48dce6));}const _0x2a3c26={..._0x324ad2};return _0x2a3c26[_0x4094c9(0x2a1,'\x23\x47\x56\x28')]=_0x588896,_0x2a3c26[_0x4094c9(0x1e5,'\x61\x5a\x57\x29')]=_0x196ed7,_0x2a3c26['\x72\x65\x63\x65\x6e\x74\x45\x76'+'\x65\x6e\x74\x73']=_0x1ca47f,_0x2a3c26[_0x4094c9(0x1aa,'\x48\x58\x75\x23')]=_0xe3d627,_0x2a3c26[_0x4094c9(0x1c4,'\x62\x72\x40\x4c')+_0x4094c9(0x146,'\x4c\x24\x65\x25')]=_0x31e0f9,_0x2a3c26;}const _0x240333={};_0x240333['\x65\x78\x74\x72\x61\x63\x74\x53'+_0x50364c(0x304,'\x53\x26\x4d\x49')+_0x50364c(0x2cc,'\x76\x78\x48\x4c')]=_0x3cac56,_0x240333[_0x50364c(0x16b,'\x36\x34\x77\x26')+'\x69\x70\x48\x75\x62\x43\x61\x6c'+'\x6c\x73']=_0x19ce2a,module['\x65\x78\x70\x6f\x72\x74\x73']=_0x240333;
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { extractSignals } = require('../../gep/signals');
|
|
4
|
+
const { loadGenes, loadCapsules, readAllEvents, consumePendingSignals } = require('../../gep/assetStore');
|
|
5
|
+
const { trySniff } = require('../../gep/conversationSniffer');
|
|
6
|
+
const { readStateForSolidify } = require('../../gep/solidify');
|
|
7
|
+
|
|
8
|
+
function _verbose(...args) {
|
|
9
|
+
if (String(process.env.EVOLVER_VERBOSE || '').toLowerCase() !== 'true') return;
|
|
10
|
+
args.unshift('[Verbose]');
|
|
11
|
+
console.log.apply(console, args);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// ---------------------------------------------------------------------------
|
|
15
|
+
// Idle-cycle gating
|
|
16
|
+
// ---------------------------------------------------------------------------
|
|
17
|
+
// When evolver is saturated (no actionable signals), Hub calls are throttled to at most
|
|
18
|
+
// once per EVOLVER_IDLE_FETCH_INTERVAL_MS (default 30 min) instead of every cycle.
|
|
19
|
+
|
|
20
|
+
function shouldSkipHubCalls(signals) {
|
|
21
|
+
if (!Array.isArray(signals)) return false;
|
|
22
|
+
const saturationIndicators = ['force_steady_state', 'evolution_saturation', 'empty_cycle_loop_detected'];
|
|
23
|
+
let hasSaturation = false;
|
|
24
|
+
for (let si = 0; si < saturationIndicators.length; si++) {
|
|
25
|
+
if (signals.indexOf(saturationIndicators[si]) !== -1) { hasSaturation = true; break; }
|
|
26
|
+
}
|
|
27
|
+
if (!hasSaturation) return false;
|
|
28
|
+
|
|
29
|
+
const actionablePatterns = [
|
|
30
|
+
'log_error', 'recurring_error', 'capability_gap', 'perf_bottleneck',
|
|
31
|
+
'external_task', 'bounty_task', 'overdue_task', 'urgent',
|
|
32
|
+
'unsupported_input_type',
|
|
33
|
+
];
|
|
34
|
+
for (let ai = 0; ai < signals.length; ai++) {
|
|
35
|
+
const s = signals[ai];
|
|
36
|
+
if (actionablePatterns.indexOf(s) !== -1) return false;
|
|
37
|
+
if (s.indexOf('errsig:') === 0) return false;
|
|
38
|
+
if (s.indexOf('user_feature_request:') === 0 && s.length > 21) return false;
|
|
39
|
+
if (s.indexOf('user_improvement_suggestion:') === 0 && s.length > 28) return false;
|
|
40
|
+
}
|
|
41
|
+
return true;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// ---------------------------------------------------------------------------
|
|
45
|
+
// Stage 3 — Signal Extraction
|
|
46
|
+
// ---------------------------------------------------------------------------
|
|
47
|
+
// Input ctx fields: dormantHypothesis, recentMasterLog, todayLog, memorySnippet,
|
|
48
|
+
// userSnippet, lastHubFetchMs
|
|
49
|
+
// Output ctx additions: genes, capsules, recentEvents, signals, skipHubCalls
|
|
50
|
+
|
|
51
|
+
async function extractSignalsStage(ctx) {
|
|
52
|
+
const { dormantHypothesis, recentMasterLog, todayLog, memorySnippet, userSnippet } = ctx;
|
|
53
|
+
const lastHubFetchMs = ctx.lastHubFetchMs || 0;
|
|
54
|
+
|
|
55
|
+
const genes = loadGenes();
|
|
56
|
+
const capsules = loadCapsules();
|
|
57
|
+
const recentEvents = (() => {
|
|
58
|
+
try {
|
|
59
|
+
const all = readAllEvents();
|
|
60
|
+
return Array.isArray(all) ? all.filter(e => e && e.type === 'EvolutionEvent').slice(-80) : [];
|
|
61
|
+
} catch (e) {
|
|
62
|
+
return [];
|
|
63
|
+
}
|
|
64
|
+
})();
|
|
65
|
+
|
|
66
|
+
const signals = extractSignals({
|
|
67
|
+
recentSessionTranscript: recentMasterLog,
|
|
68
|
+
todayLog,
|
|
69
|
+
memorySnippet,
|
|
70
|
+
userSnippet,
|
|
71
|
+
recentEvents,
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
_verbose('Signals extracted (' + signals.length + '):', signals.join(', '));
|
|
75
|
+
_verbose('Recent events: ' + recentEvents.length + ', session log size: ' + recentMasterLog.length + ' chars');
|
|
76
|
+
|
|
77
|
+
// Inject signals from dormant hypothesis (previous interrupted cycle).
|
|
78
|
+
if (dormantHypothesis && Array.isArray(dormantHypothesis.signals) && dormantHypothesis.signals.length > 0) {
|
|
79
|
+
const dormantSignals = dormantHypothesis.signals;
|
|
80
|
+
let injected = 0;
|
|
81
|
+
for (let dsi = 0; dsi < dormantSignals.length; dsi++) {
|
|
82
|
+
if (!signals.includes(dormantSignals[dsi])) {
|
|
83
|
+
signals.push(dormantSignals[dsi]);
|
|
84
|
+
injected++;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
if (injected > 0) {
|
|
88
|
+
console.log('[DormantHypothesis] Injected ' + injected + ' signal(s) from previous interrupted cycle.');
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// Inject explicit signals declared out-of-band in pending_signals.json.
|
|
93
|
+
// Read-once: consumePendingSignals() empties the file so the same intent
|
|
94
|
+
// does not re-fire next cycle. This lets a human-verified capability whose
|
|
95
|
+
// intent the extractors can't name (it's outside OPPORTUNITY_SIGNALS) still
|
|
96
|
+
// surface as a first-class signal and select its dedicated Gene.
|
|
97
|
+
try {
|
|
98
|
+
const explicitSignals = consumePendingSignals();
|
|
99
|
+
let explicitInjected = 0;
|
|
100
|
+
for (let esi = 0; esi < explicitSignals.length; esi++) {
|
|
101
|
+
if (!signals.includes(explicitSignals[esi])) {
|
|
102
|
+
signals.push(explicitSignals[esi]);
|
|
103
|
+
explicitInjected++;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
if (explicitInjected > 0) {
|
|
107
|
+
console.log('[ExplicitSignals] Injected ' + explicitInjected + ' user-declared signal(s) from pending_signals.json.');
|
|
108
|
+
}
|
|
109
|
+
} catch (e) {
|
|
110
|
+
console.warn('[ExplicitSignals] Failed to consume pending signals (non-fatal):', e && e.message || e);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// Conversation capability sniffer: autonomously surface a human-verified,
|
|
114
|
+
// deterministic capability demonstrated in the transcript (e.g. "published a
|
|
115
|
+
// Feishu doc and validated it") that no extractor would otherwise name. This
|
|
116
|
+
// closes evolver's one autonomy blind spot — it already self-surfaces work
|
|
117
|
+
// from code (errsig), missing features (capability_gap) and idle exploration
|
|
118
|
+
// (explore.js), but not from the conversation. Default posture is SHADOW
|
|
119
|
+
// (observe-only): trySniff returns signals=[] unless EVOLVER_CONV_SNIFF_ENABLED
|
|
120
|
+
// =enforce, so this is a no-op on the signal set until explicitly turned on.
|
|
121
|
+
try {
|
|
122
|
+
// Pass segments as an ARRAY (not joined) so proximity is judged within each
|
|
123
|
+
// log independently — a success in the master-log tail must not pair with a
|
|
124
|
+
// failure at the head of today's log (Bugbot #175 round 2).
|
|
125
|
+
const sniff = trySniff([String(recentMasterLog || ''), String(todayLog || '')]);
|
|
126
|
+
let sniffInjected = 0;
|
|
127
|
+
for (let si = 0; si < sniff.signals.length; si++) {
|
|
128
|
+
if (!signals.includes(sniff.signals[si])) {
|
|
129
|
+
signals.push(sniff.signals[si]);
|
|
130
|
+
sniffInjected++;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
if (sniffInjected > 0) {
|
|
134
|
+
console.log('[ConvSniff] Injected ' + sniffInjected + ' conversation-capability signal(s).');
|
|
135
|
+
}
|
|
136
|
+
// P2: capture the candidate SNIPPET so the conversation distiller can use it.
|
|
137
|
+
// sniff.candidates is populated ONLY in sniffer enforce mode (shadow returns []).
|
|
138
|
+
// ALSO require P2 itself to be enabled (Bugbot #182): if conv-distill is off,
|
|
139
|
+
// nothing drains the queue, so enqueueing would grow conv_capability_queue.jsonl
|
|
140
|
+
// unboundedly even though P2 is disabled. Only enqueue when there's a consumer.
|
|
141
|
+
if (Array.isArray(sniff.candidates) && sniff.candidates.length &&
|
|
142
|
+
(process.env.EVOLVER_CONV_DISTILL_ENABLED || 'off').toLowerCase() !== 'off') {
|
|
143
|
+
try { require('../../gep/autoDistillConv').enqueueCandidate(sniff.candidates); } catch (_) {}
|
|
144
|
+
}
|
|
145
|
+
} catch (e) {
|
|
146
|
+
console.warn('[ConvSniff] Failed (non-fatal):', e && e.message || e);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// --- Idle-cycle gating: skip Hub API calls during saturation to save credits ---
|
|
150
|
+
let _idleFetchInterval = parseInt(String(process.env.EVOLVER_IDLE_FETCH_INTERVAL_MS || ''), 10);
|
|
151
|
+
if (!Number.isFinite(_idleFetchInterval) || _idleFetchInterval <= 0) _idleFetchInterval = 600000;
|
|
152
|
+
let skipHubCalls = false;
|
|
153
|
+
|
|
154
|
+
if (shouldSkipHubCalls(signals)) {
|
|
155
|
+
const _elapsed = Date.now() - lastHubFetchMs;
|
|
156
|
+
if (lastHubFetchMs > 0 && _elapsed < _idleFetchInterval) {
|
|
157
|
+
skipHubCalls = true;
|
|
158
|
+
console.log('[IdleGating] Saturated with no actionable signals. Skipping Hub API calls (last fetch ' + Math.round(_elapsed / 1000) + 's ago, threshold ' + Math.round(_idleFetchInterval / 1000) + 's).');
|
|
159
|
+
if (process.env.EVOLVER_DEBUG_TASKS === '1') {
|
|
160
|
+
console.log('[IdleGating:debug] Task fetch/claim is skipped this cycle because of idle gating. To force Hub fetches on every cycle, lower EVOLVER_IDLE_FETCH_INTERVAL_MS (e.g. =0). To make a signal actionable and bypass the gate, publish signals like bounty_task, external_task, log_error, etc.');
|
|
161
|
+
}
|
|
162
|
+
} else {
|
|
163
|
+
console.log('[IdleGating] Saturated but fetch interval elapsed (' + Math.round((Date.now() - lastHubFetchMs) / 1000) + 's). Performing periodic Hub check.');
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
// Inject retry context from previous validation failure.
|
|
168
|
+
try {
|
|
169
|
+
var solidifyState = readStateForSolidify();
|
|
170
|
+
if (solidifyState && solidifyState.last_validation_failure) {
|
|
171
|
+
var lvf = solidifyState.last_validation_failure;
|
|
172
|
+
signals.push('retry_error_context');
|
|
173
|
+
if (lvf.cmd) signals.push('retry_cmd:' + String(lvf.cmd).slice(0, 80));
|
|
174
|
+
if (lvf.stderr) signals.push('retry_stderr:' + String(lvf.stderr).slice(0, 120));
|
|
175
|
+
console.log('[RetryContext] Injected validation failure context from previous solidify (retries=' + (lvf.retries_attempted || 0) + ').');
|
|
176
|
+
}
|
|
177
|
+
} catch (_) {}
|
|
178
|
+
|
|
179
|
+
// Curriculum engine: generate progressive evolution targets.
|
|
180
|
+
try {
|
|
181
|
+
var { generateCurriculumSignals } = require('../../gep/curriculum');
|
|
182
|
+
var { getCapabilityGaps: _getCapGapsEarly } = require('../../gep/a2aProtocol');
|
|
183
|
+
var earlyCapGaps = [];
|
|
184
|
+
try { earlyCapGaps = _getCapGapsEarly() || []; } catch (_) {}
|
|
185
|
+
var memGraphPath = require('../../gep/memoryGraph').memoryGraphPath ? require('../../gep/memoryGraph').memoryGraphPath() : '';
|
|
186
|
+
var curriculumSignals = generateCurriculumSignals({
|
|
187
|
+
capabilityGaps: earlyCapGaps,
|
|
188
|
+
memoryGraphPath: memGraphPath,
|
|
189
|
+
personality: {},
|
|
190
|
+
});
|
|
191
|
+
for (var ci = 0; ci < curriculumSignals.length; ci++) {
|
|
192
|
+
if (!signals.includes(curriculumSignals[ci])) {
|
|
193
|
+
signals.push(curriculumSignals[ci]);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
if (curriculumSignals.length > 0) {
|
|
197
|
+
console.log('[Curriculum] Injected ' + curriculumSignals.length + ' curriculum target(s).');
|
|
198
|
+
}
|
|
199
|
+
} catch (e) {
|
|
200
|
+
console.log('[Curriculum] Failed (non-fatal): ' + (e && e.message ? e.message : e));
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
return { ...ctx, genes, capsules, recentEvents, signals, skipHubCalls };
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
module.exports = { extractSignalsStage, shouldSkipHubCalls };
|