@evomap/evolver 1.89.2 → 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.
- 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 +1237 -0
- package/README.ja-JP.md +1 -3
- package/README.ko-KR.md +1 -3
- package/README.md +86 -530
- package/README.public.md +569 -0
- package/README.zh-CN.md +1 -3
- package/SECURITY.md +108 -0
- package/assets/gep/events.jsonl +3 -0
- package/assets/gep/genes.json +496 -0
- package/examples/atp-consumer-quickstart.md +100 -0
- package/examples/hello-world.md +38 -0
- package/index.js +44 -48
- package/package.json +6 -17
- package/proxy-package.json +39 -0
- package/public.manifest.json +143 -0
- package/src/adapters/hookAdapter.js +2 -0
- package/src/adapters/scripts/_lockPaths.js +74 -0
- package/src/adapters/scripts/evolver-session-start.js +19 -27
- package/src/config.js +23 -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/experiment/agentRunner.js +229 -0
- package/src/experiment/cli.js +159 -0
- package/src/experiment/comparison.js +233 -0
- package/src/experiment/metrics.js +75 -0
- package/src/forceUpdate.js +311 -30
- package/src/gep/a2aProtocol.js +4455 -1
- package/src/gep/antiAbuseTelemetry.js +233 -0
- 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/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 +711 -1
- package/src/gep/explore.js +289 -1
- package/src/gep/hash.js +15 -1
- package/src/gep/hubFetch.js +359 -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 +1374 -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/openPRRegistry.js +205 -1
- package/src/gep/personality.js +423 -1
- package/src/gep/policyCheck.js +599 -1
- package/src/gep/prompt.js +836 -1
- package/src/gep/recallInject.js +409 -1
- package/src/gep/recallVerifier.js +318 -1
- package/src/gep/reflection.js +177 -1
- package/src/gep/sanitize.js +9 -0
- package/src/gep/selector.js +602 -1
- 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 +88 -1
- package/src/gep/validator/sandboxExecutor.js +29 -1
- package/src/gep/workspaceKeychain.js +174 -1
- package/src/proxy/extensions/traceControl.js +99 -1
- package/src/proxy/index.js +14 -5
- package/src/proxy/inject.js +52 -1
- package/src/proxy/lifecycle/manager.js +30 -0
- package/src/proxy/mailbox/store.js +2 -1
- package/src/proxy/router/messages_route.js +13 -2
- package/src/proxy/trace/extractor.js +646 -1
- package/src/proxy/trace/usage.js +105 -1
- package/CONTRIBUTING.md +0 -19
- package/assets/cover.png +0 -0
- package/assets/gep/genes.seed.json +0 -245
- 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/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/{skills → bundled-skills}/_meta/SKILL.md +0 -0
package/src/gep/hubReview.js
CHANGED
|
@@ -1 +1,207 @@
|
|
|
1
|
-
const _0x407c27=_0x2bc9;(function(_0x28a438,_0x5795dc){const _0x231d8a=_0x2bc9,_0x578d1e=_0x28a438();while(!![]){try{const _0x1bd4c6=parseInt(_0x231d8a(0x14c,'\x41\x6e\x54\x71'))/(0x24c0+0xc89+-0x3148)+-parseInt(_0x231d8a(0x1a7,'\x4b\x42\x29\x77'))/(-0xa23+0x371*-0xb+0x1000*0x3)*(parseInt(_0x231d8a(0x1d8,'\x36\x56\x5b\x62'))/(0x16*-0x90+-0x1*-0x121+0x2*0x5a1))+-parseInt(_0x231d8a(0x1a2,'\x67\x38\x28\x4f'))/(-0x15b+0x1dcf+0x4*-0x71c)*(parseInt(_0x231d8a(0x93,'\x46\x59\x65\x69'))/(0x1f5a+-0x1a3+-0x1db2))+parseInt(_0x231d8a(0xbd,'\x5e\x4b\x2a\x40'))/(-0x1a*-0xed+-0x147f+-0x38d)+-parseInt(_0x231d8a(0x19e,'\x46\x59\x65\x69'))/(0x3c4+-0x1232*0x2+0x20a7)+-parseInt(_0x231d8a(0x156,'\x31\x6f\x24\x54'))/(-0x842+0x1906*0x1+-0x10bc)+parseInt(_0x231d8a(0x1b6,'\x71\x59\x72\x76'))/(-0x135f+0xe1+0x3*0x62d)*(parseInt(_0x231d8a(0x111,'\x4c\x6e\x74\x5b'))/(0x19a5+0x1059+0x432*-0xa));if(_0x1bd4c6===_0x5795dc)break;else _0x578d1e['push'](_0x578d1e['shift']());}catch(_0x322a6a){_0x578d1e['push'](_0x578d1e['shift']());}}}(_0x165a,0x6f3*0x11b+0x3e7bc+-0x1*0x6b38f));const _0xe97db7=(function(){const _0x4459a5=_0x2bc9,_0x4192f7={};_0x4192f7['\x6f\x75\x4a\x79\x58']='\x64\x59\x7a\x53\x4d',_0x4192f7[_0x4459a5(0x1c7,'\x40\x43\x4e\x4b')]=_0x4459a5(0x1b5,'\x57\x54\x42\x71'),_0x4192f7[_0x4459a5(0x143,'\x41\x6e\x54\x71')]=_0x4459a5(0x224,'\x66\x57\x64\x4d')+_0x4459a5(0xd1,'\x24\x4b\x4e\x47'),_0x4192f7[_0x4459a5(0x119,'\x39\x5b\x56\x42')]=function(_0x1f32cd,_0x40a462){return _0x1f32cd+_0x40a462;},_0x4192f7[_0x4459a5(0x133,'\x70\x6f\x69\x53')]=_0x4459a5(0xe2,'\x71\x59\x72\x76'),_0x4192f7['\x54\x70\x41\x6a\x72']=function(_0x417328,_0xb79d73){return _0x417328===_0xb79d73;},_0x4192f7[_0x4459a5(0x218,'\x75\x46\x5e\x69')]='\x63\x55\x53\x47\x52',_0x4192f7[_0x4459a5(0xe3,'\x42\x5a\x6b\x72')]=_0x4459a5(0x108,'\x43\x59\x77\x70');const _0x37b457=_0x4192f7;let _0x542566=!![];return function(_0x52f62a,_0x440d68){const _0x3f2abe=_0x4459a5,_0x3e16ab={'\x52\x6f\x55\x67\x45':_0x37b457[_0x3f2abe(0x231,'\x7a\x72\x63\x7a')],'\x67\x68\x6c\x68\x68':_0x3f2abe(0x113,'\x78\x59\x24\x63')+_0x3f2abe(0x102,'\x42\x5a\x6b\x72'),'\x74\x59\x57\x61\x63':function(_0x1237b2,_0xe5e62f){const _0x1f3b12=_0x3f2abe;return _0x37b457[_0x1f3b12(0x8b,'\x40\x43\x4e\x4b')](_0x1237b2,_0xe5e62f);},'\x7a\x51\x62\x51\x6b':_0x37b457[_0x3f2abe(0x1e2,'\x37\x63\x4c\x61')]};if(_0x37b457[_0x3f2abe(0x245,'\x31\x75\x5d\x4d')](_0x37b457[_0x3f2abe(0x246,'\x51\x58\x69\x6a')],_0x37b457[_0x3f2abe(0x149,'\x46\x59\x65\x69')])){const _0x2700ba={};return _0x2700ba[_0x3f2abe(0x1df,'\x30\x64\x4e\x54')+'\x64']=![],_0x2700ba[_0x3f2abe(0x1ea,'\x36\x56\x5b\x62')]=_0x3e16ab[_0x3f2abe(0xeb,'\x28\x2a\x6e\x76')],_0x2700ba;}else{const _0x350b92=_0x542566?function(){const _0x5428f3=_0x3f2abe;if(_0x37b457['\x6f\x75\x4a\x79\x58']!==_0x37b457[_0x5428f3(0xa9,'\x31\x75\x5d\x4d')]){if(_0x440d68){const _0x4256b4=_0x440d68['\x61\x70\x70\x6c\x79'](_0x52f62a,arguments);return _0x440d68=null,_0x4256b4;}}else _0x43e9d2[_0x3e16ab[_0x5428f3(0x9f,'\x24\x4b\x4e\x47')]]=_0x3e16ab[_0x5428f3(0x154,'\x51\x58\x69\x6a')](_0x3e16ab[_0x5428f3(0x18c,'\x35\x6d\x6a\x38')],_0x4047a7);}:function(){};return _0x542566=![],_0x350b92;}};}()),_0x2e3de6=_0xe97db7(this,function(){const _0x40f1f4=_0x2bc9,_0x610995={};_0x610995[_0x40f1f4(0xc1,'\x43\x59\x77\x70')]=_0x40f1f4(0x73,'\x48\x52\x4c\x53')+_0x40f1f4(0x1b8,'\x34\x6b\x70\x6b');const _0x17e5a8=_0x610995;return _0x2e3de6[_0x40f1f4(0x1f1,'\x78\x59\x24\x63')]()[_0x40f1f4(0x1a4,'\x48\x52\x4c\x53')](_0x17e5a8[_0x40f1f4(0x13e,'\x70\x6f\x69\x53')])['\x74\x6f\x53\x74\x72\x69\x6e\x67']()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x40f1f4(0x1c0,'\x66\x57\x64\x4d')](_0x2e3de6)[_0x40f1f4(0x220,'\x79\x69\x58\x26')](_0x17e5a8['\x68\x75\x47\x47\x49']);});_0x2e3de6();const _0x338450=require('\x66\x73'),_0x42224c=require(_0x407c27(0x75,'\x37\x63\x4c\x61')),{getNodeId:_0x46fd9f,getHubNodeSecret:_0x36df27}=require(_0x407c27(0xa6,'\x44\x4c\x52\x28')+_0x407c27(0xaa,'\x67\x38\x28\x4f')),{hubFetch:_0x4e7dca}=require(_0x407c27(0x1f3,'\x41\x71\x2a\x37')+'\x63\x68'),{logAssetCall:_0x552d10}=require(_0x407c27(0xc2,'\x4e\x37\x32\x70')+_0x407c27(0xfa,'\x66\x43\x25\x56')),_0x3c204e=_0x42224c[_0x407c27(0x87,'\x70\x6f\x69\x53')](require(_0x407c27(0xe5,'\x31\x6f\x24\x54'))[_0x407c27(0x1f6,'\x4b\x42\x29\x77')+'\x74\x69\x6f\x6e\x44\x69\x72'](),_0x407c27(0x244,'\x43\x59\x77\x70')+'\x65\x77\x5f\x68\x69\x73\x74\x6f'+_0x407c27(0x158,'\x41\x71\x2a\x37')),_0x2487bd=-0x7*0x1a6+0x15e3+0x7*-0x133;function _0x31b80f(){const _0x62f8d7=_0x407c27,_0x10ad82={};_0x10ad82[_0x62f8d7(0x1fe,'\x66\x43\x25\x56')]=function(_0x2d9dce,_0x54b6dd){return _0x2d9dce+_0x54b6dd;},_0x10ad82[_0x62f8d7(0x1b0,'\x34\x6b\x70\x6b')]=function(_0x5950d7,_0x13dcb5){return _0x5950d7+_0x13dcb5;},_0x10ad82[_0x62f8d7(0x22a,'\x46\x59\x65\x69')]=_0x62f8d7(0x198,'\x4e\x37\x32\x70'),_0x10ad82[_0x62f8d7(0x18e,'\x38\x21\x71\x6a')]=_0x62f8d7(0xf1,'\x66\x57\x64\x4d'),_0x10ad82[_0x62f8d7(0x1bf,'\x31\x75\x5d\x4d')]=function(_0x2607d1,_0x21f1c8){return _0x2607d1===_0x21f1c8;},_0x10ad82[_0x62f8d7(0x1c1,'\x51\x58\x69\x6a')]='\x61\x6b\x68\x7a\x59',_0x10ad82[_0x62f8d7(0xf8,'\x39\x5b\x56\x42')]=_0x62f8d7(0x200,'\x77\x4f\x72\x41');const _0x115a81=_0x10ad82;try{if(!_0x338450[_0x62f8d7(0x20a,'\x31\x6f\x24\x54')+'\x6e\x63'](_0x3c204e))return{};const _0x46e9a3=_0x338450[_0x62f8d7(0x209,'\x55\x33\x41\x51')+_0x62f8d7(0xa0,'\x75\x46\x5e\x69')](_0x3c204e,_0x115a81[_0x62f8d7(0x1e7,'\x35\x6d\x6a\x38')]);if(!_0x46e9a3[_0x62f8d7(0x92,'\x31\x6f\x24\x54')]())return{};return JSON[_0x62f8d7(0x1ba,'\x44\x4c\x52\x28')](_0x46e9a3);}catch{if(_0x115a81[_0x62f8d7(0x115,'\x71\x59\x72\x76')](_0x115a81[_0x62f8d7(0x241,'\x28\x2a\x6e\x76')],_0x115a81[_0x62f8d7(0xd0,'\x4b\x42\x29\x77')]))_0x4bb18c[_0x62f8d7(0xb8,'\x41\x71\x2a\x37')](_0x115a81[_0x62f8d7(0x116,'\x71\x59\x72\x76')](_0x115a81[_0x62f8d7(0x141,'\x4e\x49\x73\x43')](_0x115a81['\x7a\x57\x55\x6c\x4e']+_0xcfd541['\x69\x64']+'\x20\x28',_0x2bd41d[_0x62f8d7(0x17a,'\x34\x6b\x70\x6b')]||_0x62f8d7(0x11a,'\x48\x35\x57\x47')),'\x29'));else return{};}}function _0x41ac49(_0x238268){const _0x400d33=_0x407c27,_0x2d7752={};_0x2d7752['\x66\x43\x65\x76\x4d']=_0x400d33(0x1a1,'\x59\x28\x4b\x26'),_0x2d7752[_0x400d33(0x229,'\x43\x59\x77\x70')]=function(_0x2762ef,_0x1cf926){return _0x2762ef!==_0x1cf926;},_0x2d7752[_0x400d33(0xc9,'\x31\x2a\x42\x46')]='\x4f\x71\x54\x65\x41',_0x2d7752[_0x400d33(0x1ee,'\x28\x2a\x6e\x76')]=_0x400d33(0x107,'\x36\x56\x5b\x62'),_0x2d7752[_0x400d33(0xa4,'\x31\x6f\x24\x54')]=function(_0x26725c,_0x438bae){return _0x26725c>_0x438bae;},_0x2d7752[_0x400d33(0xc6,'\x75\x28\x24\x76')]=function(_0x557116,_0x4fcbcc){return _0x557116===_0x4fcbcc;},_0x2d7752[_0x400d33(0x88,'\x37\x63\x4c\x61')]=_0x400d33(0x1cf,'\x4e\x37\x32\x70'),_0x2d7752[_0x400d33(0x10d,'\x48\x52\x4c\x53')]=_0x400d33(0x161,'\x66\x57\x64\x4d'),_0x2d7752[_0x400d33(0x206,'\x24\x4b\x4e\x47')]=function(_0x30b66a,_0x334eb8){return _0x30b66a-_0x334eb8;},_0x2d7752['\x41\x75\x64\x42\x66']=function(_0x24b3f4,_0x133f3e){return _0x24b3f4+_0x133f3e;},_0x2d7752[_0x400d33(0xb5,'\x31\x75\x5d\x4d')]=_0x400d33(0x1b7,'\x37\x63\x4c\x61'),_0x2d7752[_0x400d33(0x1c9,'\x42\x5a\x6b\x72')]=function(_0x251175,_0x142bfc){return _0x251175+_0x142bfc;};const _0x10c3a3=_0x2d7752;try{if(_0x10c3a3[_0x400d33(0x118,'\x31\x75\x5d\x4d')](_0x10c3a3[_0x400d33(0x145,'\x48\x35\x57\x47')],_0x10c3a3[_0x400d33(0x16d,'\x37\x30\x4a\x63')])){const _0x102242=_0x42224c[_0x400d33(0x202,'\x44\x4c\x52\x28')](_0x3c204e),_0x4e52cf={};_0x4e52cf[_0x400d33(0x1fc,'\x4e\x49\x73\x43')+'\x65']=!![];if(!_0x338450['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x102242))_0x338450[_0x400d33(0x15e,'\x66\x57\x64\x4d')+'\x63'](_0x102242,_0x4e52cf);const _0x5668d4=Object[_0x400d33(0xa1,'\x75\x28\x24\x76')](_0x238268);if(_0x10c3a3[_0x400d33(0x101,'\x31\x75\x5d\x4d')](_0x5668d4['\x6c\x65\x6e\x67\x74\x68'],_0x2487bd)){if(_0x10c3a3['\x47\x53\x46\x49\x77'](_0x10c3a3[_0x400d33(0x19d,'\x43\x59\x77\x70')],_0x10c3a3[_0x400d33(0x1f5,'\x40\x43\x4e\x4b')]))return(_0x36eb66.env.A2A_HUB_URL||'')[_0x400d33(0x150,'\x75\x28\x24\x76')](/\/+$/,'');else{const _0x2a2085=_0x5668d4[_0x400d33(0x74,'\x24\x4b\x4e\x47')](_0x492d0b=>({'\x6b':_0x492d0b,'\x74':_0x238268[_0x492d0b]['\x61\x74']||-0x1888+0x2*-0x683+0x258e}))[_0x400d33(0xef,'\x24\x4b\x4e\x47')]((_0x2d8cef,_0x568293)=>_0x2d8cef['\x74']-_0x568293['\x74']),_0x442061=_0x2a2085['\x73\x6c\x69\x63\x65'](0x1e1a+-0x26*-0x7c+-0x3082,_0x10c3a3[_0x400d33(0x151,'\x7a\x72\x63\x7a')](_0x5668d4[_0x400d33(0x19b,'\x70\x6f\x69\x53')],_0x2487bd));for(const _0x4f1cfa of _0x442061)delete _0x238268[_0x4f1cfa['\x6b']];}}const _0x225920=_0x10c3a3[_0x400d33(0xe1,'\x75\x46\x5e\x69')](_0x3c204e,_0x10c3a3['\x43\x63\x6b\x69\x46']);_0x338450[_0x400d33(0x1b3,'\x5e\x4b\x2a\x40')+_0x400d33(0x7d,'\x44\x4c\x52\x28')](_0x225920,_0x10c3a3[_0x400d33(0x1b2,'\x45\x46\x75\x73')](JSON[_0x400d33(0x167,'\x57\x54\x42\x71')+'\x79'](_0x238268,null,0x7*0x313+0xf7b+-0x24fe),'\x0a'),_0x10c3a3[_0x400d33(0xe4,'\x57\x54\x42\x71')]),_0x338450['\x72\x65\x6e\x61\x6d\x65\x53\x79'+'\x6e\x63'](_0x225920,_0x3c204e);}else{if(!_0x3a2a74[_0x400d33(0x22c,'\x71\x59\x72\x76')+'\x6e\x63'](_0xdae60a))return{};const _0x3f349d=_0x5f6dc4[_0x400d33(0x18a,'\x31\x75\x5d\x4d')+_0x400d33(0x1ad,'\x26\x59\x71\x4b')](_0x258264,ijPYEQ[_0x400d33(0x235,'\x46\x59\x65\x69')]);if(!_0x3f349d[_0x400d33(0x187,'\x78\x59\x24\x63')]())return{};return _0x8a9f58[_0x400d33(0xa2,'\x45\x46\x75\x73')](_0x3f349d);}}catch{}}function _0x2bc9(_0x34961f,_0x42f32a){_0x34961f=_0x34961f-(-0x2246+-0x1ce3+0x3f9c);const _0x2bd430=_0x165a();let _0x2abff5=_0x2bd430[_0x34961f];if(_0x2bc9['\x67\x64\x62\x6a\x49\x50']===undefined){var _0x2f0071=function(_0x38cf0f){const _0x17782c='\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 _0xd348c1='',_0x5ca0af='',_0x59aedf=_0xd348c1+_0x2f0071,_0x2479de=(''+function(){return 0xa61*-0x2+-0x2*0x199+0x17f4;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x1c5e+0xf4a+0xc5*0x11);for(let _0x324b9d=-0x10bf*-0x2+0x2*0x11bf+-0x44fc,_0x55f9fa,_0x29962a,_0x3dc7b0=-0x5a7+0x15a2+-0xffb;_0x29962a=_0x38cf0f['\x63\x68\x61\x72\x41\x74'](_0x3dc7b0++);~_0x29962a&&(_0x55f9fa=_0x324b9d%(0x1b68+0x20f5+-0x1*0x3c59)?_0x55f9fa*(-0xad*0xb+0xa1e+-0x26f)+_0x29962a:_0x29962a,_0x324b9d++%(-0x1ff9+0x308+0x1cf5))?_0xd348c1+=_0x2479de||_0x59aedf['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3dc7b0+(0x391+0x3*0x626+-0x15f9))-(-0x7f*0x3d+0x1*0x1147+-0x2*-0x683)!==-0x31c*0x9+-0x11cf*-0x2+-0x7a2?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x20+0x8d*0x3b+-0x1f60&_0x55f9fa>>(-(0x2*0x224+-0x1de*0x7+-0x466*-0x2)*_0x324b9d&0x10f*0xd+-0xd30+-0x8d)):_0x324b9d:0x3fb*0x1+-0x5*-0x2a1+-0x890*0x2){_0x29962a=_0x17782c['\x69\x6e\x64\x65\x78\x4f\x66'](_0x29962a);}for(let _0x4b3651=-0x1ebe+0xdc+0x1*0x1de2,_0x16cda8=_0xd348c1['\x6c\x65\x6e\x67\x74\x68'];_0x4b3651<_0x16cda8;_0x4b3651++){_0x5ca0af+='\x25'+('\x30\x30'+_0xd348c1['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4b3651)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0xcf0+0x25dd+-0x18dd))['\x73\x6c\x69\x63\x65'](-(0x8fc+0x2f*-0x65+0x4f*0x1f));}return decodeURIComponent(_0x5ca0af);};const _0x1c8392=function(_0x40751f,_0x300a0a){let _0x17aa9a=[],_0x40fb9b=-0x1604*0x1+0x2*-0x135a+0x3cb8,_0xa1ff88,_0x49a397='';_0x40751f=_0x2f0071(_0x40751f);let _0x1c80ab;for(_0x1c80ab=-0x40*0x5a+0x26fc*-0x1+0x3d7c;_0x1c80ab<-0xb92*-0x2+0x1*-0x1924+0x300;_0x1c80ab++){_0x17aa9a[_0x1c80ab]=_0x1c80ab;}for(_0x1c80ab=-0x11f9+0x5*-0x715+-0x1*-0x3562;_0x1c80ab<-0x1*0x3bc+-0xd25+0x17*0xc7;_0x1c80ab++){_0x40fb9b=(_0x40fb9b+_0x17aa9a[_0x1c80ab]+_0x300a0a['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1c80ab%_0x300a0a['\x6c\x65\x6e\x67\x74\x68']))%(0x407+0x180+-0x487),_0xa1ff88=_0x17aa9a[_0x1c80ab],_0x17aa9a[_0x1c80ab]=_0x17aa9a[_0x40fb9b],_0x17aa9a[_0x40fb9b]=_0xa1ff88;}_0x1c80ab=-0x1bdf+0xc1d+0x7e1*0x2,_0x40fb9b=-0x469*-0x2+0x11aa+-0x71*0x3c;for(let _0xd9177d=-0xc*0x223+0x2315+0x971*-0x1;_0xd9177d<_0x40751f['\x6c\x65\x6e\x67\x74\x68'];_0xd9177d++){_0x1c80ab=(_0x1c80ab+(-0x1*-0x18ad+0x114d+-0x29f9))%(-0x20d4+-0x188c+-0x3a60*-0x1),_0x40fb9b=(_0x40fb9b+_0x17aa9a[_0x1c80ab])%(0x19c5+0x22fd+-0x3bc2),_0xa1ff88=_0x17aa9a[_0x1c80ab],_0x17aa9a[_0x1c80ab]=_0x17aa9a[_0x40fb9b],_0x17aa9a[_0x40fb9b]=_0xa1ff88,_0x49a397+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x40751f['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xd9177d)^_0x17aa9a[(_0x17aa9a[_0x1c80ab]+_0x17aa9a[_0x40fb9b])%(0xb*-0x202+0x1*0x12ff+-0x1*-0x417)]);}return _0x49a397;};_0x2bc9['\x53\x6e\x6b\x75\x46\x4a']=_0x1c8392,_0x2bc9['\x55\x74\x62\x69\x4e\x51']={},_0x2bc9['\x67\x64\x62\x6a\x49\x50']=!![];}const _0x4f432e=_0x2bd430[0x56e+0x2*0x52+-0x612],_0x911b63=_0x34961f+_0x4f432e,_0x5c97c3=_0x2bc9['\x55\x74\x62\x69\x4e\x51'][_0x911b63];if(!_0x5c97c3){if(_0x2bc9['\x68\x65\x73\x72\x77\x70']===undefined){const _0x4ecdf6=function(_0x2a93db){this['\x4f\x57\x44\x45\x4d\x55']=_0x2a93db,this['\x72\x52\x55\x79\x54\x4c']=[-0x1d06+-0x5*-0x52f+0x1*0x31c,-0x560*0x1+-0xa2*0xe+0xe3c,-0x123d+-0x2be*0x3+0x1a77],this['\x69\x63\x55\x4d\x63\x68']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x65\x6c\x74\x55\x6c\x4c']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x63\x61\x73\x6e\x51\x71']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x4ecdf6['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x42\x73\x64\x47\x66\x77']=function(){const _0x15967e=new RegExp(this['\x65\x6c\x74\x55\x6c\x4c']+this['\x63\x61\x73\x6e\x51\x71']),_0x4c697f=_0x15967e['\x74\x65\x73\x74'](this['\x69\x63\x55\x4d\x63\x68']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x72\x52\x55\x79\x54\x4c'][0x1*-0x4a+-0x114f+-0x3*-0x5de]:--this['\x72\x52\x55\x79\x54\x4c'][-0x1*0x143b+0x6*-0x95+-0x17b9*-0x1];return this['\x79\x41\x53\x50\x6a\x6f'](_0x4c697f);},_0x4ecdf6['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x79\x41\x53\x50\x6a\x6f']=function(_0x1da393){if(!Boolean(~_0x1da393))return _0x1da393;return this['\x71\x7a\x4e\x79\x63\x7a'](this['\x4f\x57\x44\x45\x4d\x55']);},_0x4ecdf6['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x71\x7a\x4e\x79\x63\x7a']=function(_0x214424){for(let _0x6730d6=-0x227+0x5fc*-0x5+0x2013,_0x5d566a=this['\x72\x52\x55\x79\x54\x4c']['\x6c\x65\x6e\x67\x74\x68'];_0x6730d6<_0x5d566a;_0x6730d6++){this['\x72\x52\x55\x79\x54\x4c']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x5d566a=this['\x72\x52\x55\x79\x54\x4c']['\x6c\x65\x6e\x67\x74\x68'];}return _0x214424(this['\x72\x52\x55\x79\x54\x4c'][-0x78b*0x5+-0x17*-0xdf+0x3e*0x49]);},(''+function(){return 0xf*-0x13a+0x185f+-0x8b*0xb;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x259f+-0x9*-0x221+0x1*0x1277)&&new _0x4ecdf6(_0x2bc9)['\x42\x73\x64\x47\x66\x77'](),_0x2bc9['\x68\x65\x73\x72\x77\x70']=!![];}_0x2abff5=_0x2bc9['\x53\x6e\x6b\x75\x46\x4a'](_0x2abff5,_0x42f32a),_0x2bc9['\x55\x74\x62\x69\x4e\x51'][_0x911b63]=_0x2abff5;}else _0x2abff5=_0x5c97c3;return _0x2abff5;}function _0x382eff(_0x528ce5){const _0x4583fb=_0x407c27,_0x34088f={'\x65\x71\x77\x72\x7a':function(_0x498f95){return _0x498f95();}},_0x1a3d68=_0x34088f[_0x4583fb(0x23f,'\x37\x63\x4c\x61')](_0x31b80f);return!!_0x1a3d68[_0x528ce5];}function _0x1fed67(_0x5c6c59,_0x1e448c,_0x58ed7d){const _0x200ebd=_0x407c27,_0x22cc66={'\x75\x6b\x41\x79\x49':function(_0x2bdbd0){return _0x2bdbd0();},'\x68\x78\x79\x71\x77':function(_0x1abcb7,_0x49120c){return _0x1abcb7(_0x49120c);}},_0x482b18=_0x22cc66[_0x200ebd(0x173,'\x67\x38\x28\x4f')](_0x31b80f);_0x482b18[_0x5c6c59]={'\x61\x74':Date[_0x200ebd(0xda,'\x31\x2a\x42\x46')](),'\x72\x61\x74\x69\x6e\x67':_0x1e448c,'\x73\x75\x63\x63\x65\x73\x73':_0x58ed7d},_0x22cc66[_0x200ebd(0xb1,'\x55\x33\x41\x51')](_0x41ac49,_0x482b18);}function _0x165a(){const _0x44bc4d=['\x43\x64\x56\x64\x52\x38\x6b\x73\x57\x35\x74\x64\x56\x77\x76\x6d','\x57\x52\x6d\x72\x43\x6d\x6f\x67\x57\x35\x6d\x64\x69\x57','\x57\x4f\x5a\x64\x52\x63\x4a\x63\x4c\x75\x64\x64\x51\x62\x39\x49','\x57\x52\x5a\x64\x50\x75\x35\x46\x57\x34\x57\x74\x57\x37\x30\x31\x57\x4f\x6e\x31\x67\x53\x6b\x45','\x42\x6d\x6b\x6c\x66\x43\x6f\x48\x57\x52\x6d','\x57\x4f\x6c\x64\x4f\x62\x33\x63\x54\x32\x65','\x57\x4f\x70\x64\x54\x6d\x6b\x4f','\x57\x50\x42\x63\x4f\x59\x4b\x73\x69\x47','\x57\x51\x68\x63\x55\x38\x6f\x57\x64\x6d\x6f\x39','\x76\x73\x4b\x6e\x57\x52\x34\x6e\x57\x50\x34\x71\x42\x47','\x41\x6d\x6b\x52\x57\x37\x4a\x63\x56\x43\x6f\x50','\x6a\x62\x56\x63\x4c\x66\x70\x64\x52\x64\x78\x64\x50\x6d\x6f\x42','\x79\x43\x6b\x52\x57\x37\x50\x49\x72\x43\x6b\x31\x6b\x53\x6f\x58','\x57\x50\x64\x63\x54\x74\x47\x55\x57\x34\x44\x57\x57\x52\x46\x64\x4b\x47','\x57\x52\x68\x63\x50\x73\x38\x57\x57\x34\x53\x4b\x57\x51\x37\x64\x4d\x61','\x41\x6d\x6f\x54\x57\x36\x35\x41\x57\x51\x75','\x6b\x31\x46\x64\x4e\x64\x78\x63\x48\x71','\x67\x49\x65\x5a\x57\x34\x43\x51','\x44\x6d\x6b\x4f\x57\x37\x4e\x63\x49\x6d\x6f\x4e','\x57\x37\x6a\x79\x57\x4f\x53\x4d\x57\x51\x61','\x57\x34\x42\x63\x4b\x5a\x71\x63\x6b\x6d\x6b\x6a\x57\x37\x38','\x57\x37\x5a\x63\x56\x48\x4b\x71\x57\x35\x50\x68\x57\x36\x69\x2b','\x57\x51\x52\x63\x53\x53\x6f\x71\x63\x53\x6f\x55','\x57\x50\x52\x64\x53\x6d\x6b\x6f\x6a\x59\x6d','\x6a\x76\x57\x33\x45\x38\x6b\x41\x69\x64\x65\x39\x57\x35\x56\x63\x54\x38\x6b\x61\x75\x63\x4f','\x57\x36\x70\x63\x4f\x57\x47\x63\x57\x50\x34\x62\x57\x37\x38\x50','\x6e\x68\x42\x64\x55\x72\x56\x63\x4f\x71','\x66\x6d\x6f\x6f\x71\x77\x65\x62\x46\x4a\x33\x64\x4a\x57','\x63\x58\x35\x4e\x75\x77\x4a\x64\x56\x6d\x6b\x45\x57\x35\x75','\x66\x68\x52\x64\x55\x71\x4e\x63\x4d\x67\x79','\x57\x52\x35\x78\x73\x6d\x6b\x38\x57\x37\x37\x63\x49\x4b\x72\x75','\x57\x50\x2f\x64\x52\x53\x6b\x38\x6e\x47','\x57\x34\x34\x65\x57\x35\x30\x2b\x57\x50\x34','\x6d\x6d\x6b\x45\x57\x50\x4b\x41\x62\x47','\x57\x37\x2f\x63\x4a\x43\x6f\x77\x57\x36\x4e\x63\x4b\x53\x6f\x46\x67\x38\x6b\x6e','\x62\x6d\x6b\x4c\x57\x50\x38\x42\x64\x61','\x57\x36\x70\x64\x4c\x65\x4e\x64\x52\x38\x6b\x59','\x57\x4f\x44\x65\x57\x36\x56\x64\x55\x78\x35\x49\x7a\x57','\x66\x78\x52\x64\x4e\x59\x2f\x63\x4c\x71','\x77\x49\x33\x64\x56\x43\x6b\x2b\x57\x36\x38','\x44\x59\x42\x63\x56\x38\x6f\x38\x57\x37\x5a\x63\x4c\x4a\x71','\x57\x50\x70\x64\x4f\x49\x33\x63\x4a\x31\x33\x64\x4c\x71','\x6c\x6d\x6f\x47\x57\x35\x70\x63\x4a\x72\x79\x47\x70\x4d\x53','\x57\x50\x35\x30\x68\x53\x6f\x56','\x57\x35\x50\x4a\x57\x51\x4b\x41\x57\x50\x53','\x57\x4f\x50\x66\x72\x53\x6b\x39\x57\x36\x65','\x57\x35\x76\x63\x57\x37\x70\x64\x56\x4c\x72\x55\x6a\x72\x34','\x57\x52\x52\x64\x4b\x53\x6f\x38\x41\x49\x69','\x42\x74\x35\x53\x68\x43\x6f\x61','\x57\x36\x37\x63\x56\x47\x34\x6a\x57\x50\x54\x6d\x57\x36\x47','\x6e\x48\x2f\x63\x4a\x38\x6f\x78\x57\x50\x34','\x6f\x33\x66\x42\x63\x43\x6b\x77\x57\x50\x42\x64\x49\x6d\x6b\x71','\x57\x52\x7a\x45\x71\x6d\x6f\x31\x57\x51\x47\x39\x41\x72\x57','\x57\x37\x4b\x6b\x57\x35\x54\x6a\x68\x6d\x6b\x30\x74\x63\x79','\x65\x58\x72\x4b\x77\x47','\x57\x37\x33\x63\x53\x38\x6f\x79\x57\x37\x6c\x63\x52\x71','\x44\x6d\x6b\x75\x62\x47','\x41\x57\x76\x79\x57\x37\x71\x58\x57\x50\x71\x69\x6b\x47','\x6e\x53\x6b\x5a\x57\x4f\x71\x62\x62\x53\x6b\x64\x65\x53\x6b\x36','\x57\x51\x79\x76\x44\x6d\x6f\x4b\x57\x36\x57','\x57\x34\x56\x63\x4e\x43\x6f\x41\x57\x36\x68\x64\x47\x43\x6b\x6c','\x57\x51\x56\x63\x55\x62\x57\x65\x57\x36\x61','\x57\x50\x4e\x64\x50\x6d\x6f\x77\x57\x36\x30\x39','\x57\x36\x42\x63\x53\x48\x69\x61\x57\x4f\x35\x6a','\x44\x53\x6b\x64\x57\x52\x5a\x64\x54\x66\x65','\x57\x51\x66\x7a\x45\x6d\x6f\x47\x57\x4f\x65','\x6d\x32\x4e\x63\x56\x6d\x6f\x46\x57\x50\x64\x63\x54\x5a\x39\x54\x73\x78\x6c\x63\x4c\x6d\x6f\x6b\x57\x52\x65','\x77\x32\x4a\x63\x4b\x43\x6b\x6a\x57\x50\x58\x67\x57\x51\x30\x79','\x57\x37\x6e\x64\x57\x51\x47\x47\x57\x52\x4f','\x57\x4f\x47\x76\x43\x73\x79','\x57\x35\x4e\x63\x52\x53\x6f\x34\x41\x76\x5a\x64\x4b\x49\x52\x64\x51\x4c\x69\x37\x72\x57','\x67\x43\x6b\x50\x57\x51\x38\x42\x64\x6d\x6b\x65\x63\x6d\x6b\x4c','\x57\x4f\x42\x64\x4d\x6d\x6f\x58\x57\x37\x4f\x72\x57\x52\x34','\x75\x6d\x6b\x44\x6e\x38\x6f\x53\x57\x52\x75','\x62\x65\x33\x64\x56\x71\x5a\x63\x4e\x4d\x33\x64\x56\x71','\x57\x50\x4e\x63\x50\x64\x6c\x63\x55\x43\x6f\x69\x57\x36\x42\x64\x4c\x74\x78\x64\x54\x38\x6b\x58\x77\x47','\x57\x4f\x42\x64\x4c\x6d\x6f\x33\x57\x36\x79\x74\x57\x52\x4f','\x57\x34\x66\x73\x68\x53\x6f\x38\x57\x37\x61\x75\x57\x51\x4f\x2f\x57\x50\x47\x62\x57\x35\x76\x42','\x64\x43\x6f\x76\x77\x4d\x79','\x61\x4d\x31\x2b\x62\x43\x6b\x42','\x43\x73\x52\x63\x53\x38\x6f\x51\x57\x37\x5a\x63\x4a\x71','\x57\x34\x4a\x64\x48\x4a\x4b\x48','\x57\x51\x4b\x43\x71\x53\x6f\x50\x57\x34\x71','\x57\x51\x54\x4d\x43\x43\x6f\x67\x57\x52\x33\x64\x55\x61','\x57\x51\x44\x4c\x41\x53\x6b\x57\x57\x36\x53','\x57\x35\x37\x64\x54\x67\x70\x64\x55\x38\x6b\x46\x57\x34\x4b','\x57\x50\x6e\x6d\x73\x43\x6f\x6b\x57\x52\x6d','\x46\x64\x53\x73\x77\x64\x35\x43\x73\x68\x53','\x45\x43\x6f\x36\x57\x34\x50\x6f\x57\x4f\x64\x63\x4c\x65\x79\x65','\x68\x72\x56\x63\x56\x4d\x33\x64\x49\x71','\x70\x66\x6a\x6d\x57\x4f\x47\x4e\x57\x50\x75\x73\x76\x43\x6b\x43','\x63\x6d\x6f\x42\x77\x38\x6b\x4a','\x57\x37\x79\x46\x66\x38\x6f\x39','\x68\x64\x30\x2f\x57\x36\x79\x79\x42\x30\x68\x64\x47\x61','\x71\x32\x5a\x63\x48\x38\x6f\x41\x57\x50\x47','\x57\x34\x74\x64\x50\x67\x64\x64\x4c\x38\x6b\x63\x57\x34\x6c\x64\x53\x71\x34','\x70\x58\x42\x63\x4c\x31\x37\x64\x55\x61','\x57\x37\x4a\x63\x54\x47\x47\x6f\x57\x50\x72\x67','\x57\x51\x48\x45\x76\x38\x6b\x70\x57\x35\x47\x74\x6a\x63\x71','\x57\x34\x58\x2b\x57\x34\x74\x64\x49\x4e\x47','\x57\x50\x78\x64\x51\x64\x34','\x61\x43\x6f\x50\x57\x35\x6c\x64\x4f\x72\x4b','\x6a\x38\x6b\x6a\x57\x51\x6d\x39','\x65\x53\x6b\x58\x57\x51\x31\x6a\x69\x43\x6b\x65\x67\x43\x6f\x47','\x45\x76\x34\x5a\x57\x36\x46\x64\x4d\x38\x6b\x6a\x57\x4f\x71','\x57\x50\x75\x78\x77\x43\x6b\x4f\x57\x52\x6e\x69\x57\x37\x34\x6f','\x57\x51\x53\x68\x66\x53\x6f\x6f\x57\x35\x53\x77\x6b\x59\x34','\x7a\x38\x6f\x52\x57\x36\x54\x6a\x57\x51\x69','\x69\x47\x68\x63\x4a\x76\x74\x64\x52\x73\x78\x64\x4f\x57','\x57\x36\x53\x68\x57\x34\x47\x77\x57\x4f\x75','\x64\x61\x39\x52\x64\x61','\x42\x62\x61\x78\x41\x71\x57','\x57\x34\x68\x64\x4c\x6d\x6b\x58\x45\x6d\x6b\x6f\x57\x35\x4a\x63\x48\x57\x37\x63\x48\x6d\x6b\x71\x72\x38\x6b\x56\x57\x36\x71','\x43\x64\x52\x63\x53\x6d\x6f\x30\x57\x37\x52\x63\x4c\x57\x4a\x63\x52\x47','\x43\x63\x5a\x63\x56\x43\x6f\x52\x57\x37\x79','\x57\x34\x78\x63\x47\x43\x6f\x73\x57\x35\x70\x63\x4f\x71','\x57\x50\x4e\x63\x4b\x6d\x6f\x61\x6d\x53\x6f\x6b\x57\x4f\x64\x64\x4a\x71','\x6b\x48\x6a\x51\x77\x4d\x52\x64\x50\x6d\x6b\x69\x57\x4f\x53','\x6d\x5a\x64\x63\x48\x30\x4e\x64\x53\x74\x46\x64\x55\x43\x6f\x49','\x7a\x71\x50\x47\x6c\x43\x6f\x67\x43\x66\x69\x56','\x57\x37\x74\x64\x51\x38\x6b\x52\x71\x43\x6f\x6b\x6a\x33\x62\x51','\x61\x53\x6f\x6e\x42\x67\x34\x6f\x43\x64\x4a\x64\x4a\x61','\x57\x52\x50\x69\x71\x6d\x6f\x4a\x57\x52\x30\x66\x7a\x71','\x57\x4f\x64\x63\x47\x53\x6f\x5a\x6d\x38\x6f\x44','\x57\x34\x42\x64\x4d\x53\x6f\x33\x6d\x6d\x6f\x31\x57\x4f\x6c\x64\x47\x5a\x47','\x62\x53\x6f\x65\x43\x78\x74\x63\x4b\x71','\x57\x50\x44\x6c\x41\x6d\x6f\x74\x57\x52\x30','\x57\x4f\x37\x63\x50\x73\x4b\x57\x57\x34\x39\x4a\x57\x51\x79','\x70\x38\x6b\x2b\x57\x52\x79\x55\x6a\x57','\x57\x34\x33\x63\x54\x62\x69\x64\x57\x52\x30','\x45\x66\x79\x47\x57\x36\x64\x64\x4c\x6d\x6b\x63','\x57\x4f\x56\x64\x4e\x43\x6f\x76\x43\x61\x46\x64\x4d\x4d\x4a\x63\x49\x61','\x6c\x57\x37\x63\x4b\x43\x6f\x56\x57\x50\x57','\x73\x6d\x6f\x72\x57\x4f\x71\x36\x57\x37\x39\x6e\x57\x36\x72\x58','\x72\x43\x6f\x6c\x42\x38\x6b\x30\x57\x51\x34','\x61\x6d\x6b\x75\x57\x4f\x61\x59\x57\x36\x35\x74\x57\x36\x39\x59','\x7a\x43\x6b\x2b\x57\x35\x33\x63\x55\x38\x6f\x2b','\x57\x36\x35\x4b\x57\x51\x65\x66\x57\x34\x58\x4d\x64\x38\x6b\x50','\x78\x76\x75\x6b\x57\x36\x68\x63\x47\x61','\x76\x62\x48\x7a\x68\x53\x6f\x4d','\x57\x50\x61\x65\x7a\x67\x33\x64\x51\x68\x75\x41','\x66\x6d\x6f\x77\x77\x4d\x53\x6b','\x57\x4f\x6c\x63\x48\x53\x6f\x47\x6d\x38\x6f\x78\x57\x4f\x38','\x70\x74\x6e\x2b\x79\x30\x38','\x57\x51\x4b\x57\x45\x43\x6b\x7a\x57\x52\x34','\x76\x33\x39\x41\x57\x4f\x43','\x44\x53\x6b\x4f\x57\x36\x5a\x63\x4b\x53\x6f\x33','\x57\x35\x72\x73\x57\x37\x68\x64\x55\x78\x44\x30\x6f\x47','\x57\x35\x30\x68\x57\x34\x79\x4c\x57\x4f\x74\x63\x52\x61','\x57\x50\x35\x50\x6a\x6d\x6f\x32\x57\x34\x35\x41\x6d\x38\x6f\x75','\x79\x30\x39\x35\x6c\x43\x6f\x79\x6e\x78\x69\x4a','\x76\x31\x72\x4c\x71\x77\x4e\x64\x4a\x53\x6b\x45\x57\x34\x75','\x64\x67\x74\x63\x51\x68\x53\x6f','\x73\x38\x6f\x62\x57\x35\x50\x55\x57\x51\x57','\x57\x34\x56\x64\x54\x68\x42\x64\x4a\x43\x6b\x67\x57\x34\x4a\x64\x51\x58\x69','\x61\x43\x6f\x46\x72\x32\x53\x68\x72\x4a\x68\x64\x4d\x57','\x57\x36\x6c\x64\x51\x43\x6b\x77\x78\x53\x6f\x67\x6f\x77\x66\x53','\x57\x35\x76\x63\x57\x37\x70\x64\x51\x78\x31\x50','\x6b\x6d\x6f\x41\x42\x31\x74\x63\x49\x57\x52\x63\x49\x47\x34','\x6f\x4e\x62\x6f\x6e\x43\x6b\x56','\x66\x68\x52\x64\x55\x57\x2f\x63\x48\x78\x56\x64\x4f\x38\x6f\x6c','\x42\x61\x30\x7a\x57\x51\x38\x52','\x74\x68\x6d\x38\x57\x35\x52\x64\x4c\x57','\x69\x38\x6b\x50\x57\x4f\x43\x78\x57\x34\x34','\x69\x33\x62\x47\x6b\x6d\x6b\x65','\x61\x71\x5a\x63\x53\x6d\x6f\x4e\x57\x50\x30','\x76\x32\x74\x63\x48\x38\x6f\x68\x57\x50\x58\x79\x57\x52\x53','\x57\x37\x31\x2f\x57\x52\x79\x44\x57\x50\x34','\x45\x43\x6b\x52\x57\x36\x54\x76','\x6d\x65\x42\x64\x52\x73\x52\x63\x53\x71','\x57\x50\x69\x56\x42\x38\x6b\x78\x57\x51\x57','\x57\x52\x56\x64\x4b\x5a\x34\x53\x76\x4e\x37\x64\x53\x6d\x6f\x7a','\x77\x33\x4a\x63\x4c\x38\x6f\x32\x57\x4f\x39\x71\x57\x51\x47\x75','\x43\x73\x52\x63\x53\x38\x6f\x39\x57\x35\x78\x63\x49\x49\x5a\x63\x56\x47','\x66\x38\x6b\x6a\x57\x50\x38\x4f\x57\x37\x39\x78\x57\x35\x4c\x56','\x57\x51\x75\x4e\x77\x4c\x78\x64\x55\x61','\x43\x53\x6f\x77\x72\x53\x6b\x32','\x57\x4f\x46\x63\x4b\x43\x6f\x4f\x6e\x6d\x6f\x44\x57\x51\x46\x64\x4e\x74\x75','\x57\x36\x54\x35\x57\x51\x75\x67\x57\x50\x4c\x5a','\x61\x77\x46\x63\x4a\x4c\x79\x44','\x72\x62\x35\x42\x6c\x53\x6f\x6b','\x57\x52\x71\x44\x77\x43\x6f\x44\x57\x34\x34','\x79\x5a\x57\x7a\x43\x59\x4c\x2f\x76\x33\x34','\x46\x53\x6b\x50\x57\x51\x74\x64\x51\x31\x69','\x6e\x53\x6f\x47\x57\x35\x42\x64\x4e\x48\x47\x39','\x44\x43\x6f\x77\x77\x6d\x6b\x57','\x78\x67\x70\x63\x56\x38\x6f\x39\x57\x52\x65','\x57\x37\x58\x4b\x57\x52\x65\x62\x57\x35\x79\x47','\x57\x37\x31\x43\x57\x50\x30\x45\x57\x52\x47','\x57\x51\x5a\x64\x54\x6d\x6b\x48\x6b\x47\x2f\x64\x49\x58\x68\x63\x56\x47','\x74\x63\x44\x37\x6c\x53\x6f\x35\x43\x68\x43\x2f','\x57\x51\x74\x63\x4f\x5a\x71\x4e\x57\x36\x4b','\x57\x51\x71\x52\x75\x75\x4e\x64\x52\x71','\x46\x47\x6d\x2b\x57\x52\x6d\x34','\x61\x6d\x6b\x71\x57\x4f\x69\x59\x57\x36\x76\x64','\x57\x52\x42\x64\x54\x38\x6b\x33\x6d\x72\x57','\x57\x50\x64\x63\x50\x74\x53\x58\x57\x34\x31\x53','\x57\x51\x6c\x63\x4a\x6d\x6f\x7a\x57\x37\x71','\x57\x50\x50\x74\x57\x4f\x6a\x39\x57\x35\x6c\x63\x49\x53\x6b\x61\x74\x43\x6b\x62\x57\x50\x68\x63\x56\x47','\x57\x37\x2f\x63\x4a\x6d\x6f\x67\x57\x36\x33\x63\x4c\x43\x6f\x6d','\x57\x4f\x2f\x64\x51\x64\x4a\x63\x4f\x31\x52\x64\x4a\x47\x72\x74','\x76\x49\x74\x64\x47\x38\x6b\x76\x57\x35\x79','\x57\x50\x42\x63\x4c\x53\x6f\x55\x66\x6d\x6f\x55','\x7a\x75\x69\x47\x57\x36\x52\x64\x4c\x43\x6b\x69\x57\x50\x69','\x6e\x67\x50\x54\x64\x53\x6b\x6e','\x57\x50\x6a\x76\x78\x53\x6f\x48\x57\x4f\x34','\x45\x61\x4e\x64\x4d\x43\x6b\x6c\x57\x36\x47','\x69\x62\x34\x68\x57\x34\x75\x75','\x41\x58\x4b\x72\x57\x51\x38\x52\x57\x4f\x47\x31\x46\x47','\x73\x30\x47\x35\x79\x68\x70\x64\x50\x53\x6b\x70\x57\x36\x6e\x59','\x57\x52\x4b\x68\x57\x52\x68\x64\x52\x43\x6f\x57','\x6e\x48\x5a\x63\x4c\x76\x2f\x64\x54\x47\x33\x64\x50\x6d\x6f\x7a','\x78\x43\x6b\x50\x57\x50\x4a\x64\x4e\x65\x75','\x57\x4f\x75\x46\x57\x50\x70\x64\x4d\x6d\x6f\x6b','\x46\x66\x34\x37\x57\x36\x78\x64\x4d\x38\x6b\x72\x57\x50\x37\x64\x55\x61','\x57\x4f\x39\x2b\x62\x38\x6f\x54\x57\x34\x35\x68\x6c\x47','\x61\x47\x69\x4c\x57\x34\x65\x77','\x7a\x62\x33\x64\x51\x43\x6b\x72\x57\x36\x53','\x79\x63\x34\x73\x57\x50\x4f\x54','\x7a\x6d\x6f\x6f\x57\x34\x50\x78\x57\x50\x38','\x57\x4f\x46\x63\x4e\x5a\x53\x57\x57\x35\x31\x48\x57\x52\x46\x64\x51\x61','\x68\x64\x50\x41\x43\x4e\x34','\x75\x73\x43\x7a\x72\x74\x4f','\x74\x53\x6f\x33\x57\x36\x7a\x66\x57\x52\x57','\x6a\x38\x6f\x4d\x57\x35\x6c\x64\x4e\x47\x71\x31\x6f\x67\x69','\x57\x37\x33\x64\x54\x43\x6b\x41\x76\x53\x6f\x43','\x68\x53\x6b\x75\x57\x50\x47\x38\x57\x37\x39\x6d','\x71\x38\x6f\x45\x71\x43\x6b\x48\x57\x50\x57','\x57\x51\x79\x73\x72\x6d\x6f\x6b\x57\x34\x4f\x63\x70\x48\x47','\x71\x38\x6b\x58\x57\x36\x52\x63\x4b\x38\x6f\x6b','\x57\x34\x6a\x64\x57\x52\x6c\x64\x55\x33\x58\x4a\x41\x71\x47','\x57\x50\x74\x64\x48\x38\x6f\x71','\x57\x52\x62\x4e\x43\x53\x6f\x54\x57\x52\x52\x64\x52\x4c\x52\x63\x55\x71','\x57\x37\x6e\x78\x57\x35\x70\x64\x53\x67\x61','\x69\x43\x6f\x75\x57\x36\x37\x64\x47\x73\x6d','\x57\x34\x78\x64\x4e\x72\x69\x75\x6b\x6d\x6b\x6c\x57\x34\x31\x72','\x57\x36\x66\x66\x57\x35\x61','\x57\x35\x33\x63\x4c\x43\x6b\x34\x57\x51\x7a\x7a\x57\x37\x39\x65\x57\x36\x34','\x57\x50\x30\x66\x77\x47','\x76\x53\x6f\x6f\x71\x53\x6b\x37','\x57\x50\x5a\x63\x48\x53\x6f\x56\x6a\x38\x6f\x6d\x57\x4f\x4b','\x57\x51\x64\x63\x4c\x57\x69\x30\x63\x61','\x41\x58\x79\x4c\x57\x37\x57\x6d\x57\x4f\x34\x65\x41\x47','\x57\x4f\x43\x4b\x57\x52\x2f\x64\x4a\x43\x6f\x52\x57\x36\x64\x64\x4c\x47','\x7a\x38\x6b\x76\x57\x52\x74\x64\x51\x68\x4b','\x69\x71\x64\x63\x56\x43\x6b\x4c\x57\x52\x78\x64\x4e\x38\x6f\x5a\x57\x50\x71','\x57\x51\x4c\x74\x41\x6d\x6f\x62\x57\x4f\x38','\x76\x4c\x37\x63\x4a\x6d\x6f\x68\x57\x50\x34','\x43\x78\x79\x62\x57\x35\x74\x63\x48\x53\x6b\x6d\x57\x51\x4a\x63\x4b\x57','\x57\x37\x5a\x63\x4a\x43\x6f\x68\x57\x36\x57','\x57\x52\x47\x6c\x42\x38\x6b\x48\x57\x4f\x38','\x57\x52\x39\x7a\x77\x6d\x6b\x47','\x61\x38\x6b\x6b\x57\x4f\x69\x36\x65\x57','\x43\x53\x6b\x50\x57\x36\x52\x63\x55\x57','\x57\x36\x42\x63\x49\x38\x6f\x42\x57\x36\x4f','\x57\x51\x76\x69\x75\x53\x6f\x4a\x57\x52\x6d\x6d','\x57\x37\x58\x47\x57\x52\x71\x75\x57\x51\x69','\x57\x36\x64\x63\x55\x62\x75\x6a','\x78\x38\x6f\x4b\x78\x53\x6b\x62\x57\x51\x38','\x57\x4f\x4a\x63\x4b\x43\x6f\x76\x6d\x53\x6f\x2b','\x57\x51\x74\x63\x50\x74\x71\x4d\x57\x50\x71\x4b','\x72\x38\x6f\x6b\x57\x36\x72\x61\x57\x52\x65','\x76\x4c\x46\x63\x54\x6d\x6f\x65\x57\x51\x43','\x57\x34\x6d\x38\x76\x57','\x57\x35\x54\x4d\x57\x50\x71\x43\x57\x51\x34','\x57\x34\x33\x63\x4d\x38\x6f\x78\x57\x36\x68\x63\x49\x38\x6f\x46','\x6d\x78\x31\x49\x67\x38\x6b\x35','\x57\x34\x47\x64\x57\x35\x57\x50','\x62\x53\x6b\x64\x57\x50\x38\x32','\x6e\x59\x4e\x64\x4e\x6d\x6b\x62\x57\x36\x56\x64\x52\x30\x4b','\x67\x64\x4b\x62\x57\x36\x43\x79','\x57\x51\x42\x64\x4f\x4a\x78\x63\x50\x68\x38','\x57\x50\x56\x64\x48\x38\x6f\x7a\x41\x71\x56\x64\x47\x67\x47','\x57\x50\x34\x49\x57\x4f\x33\x64\x4c\x57','\x57\x36\x46\x64\x54\x43\x6b\x42\x78\x38\x6f\x6f\x6f\x78\x58\x4d','\x57\x36\x70\x64\x55\x43\x6b\x63\x77\x53\x6f\x6b\x6f\x4e\x62\x54','\x66\x58\x50\x47\x75\x71','\x57\x4f\x4b\x79\x43\x66\x46\x64\x56\x61','\x57\x51\x53\x49\x57\x52\x42\x64\x55\x53\x6f\x6b','\x57\x36\x70\x64\x56\x43\x6b\x61\x77\x53\x6f\x62\x6b\x47','\x76\x4d\x69\x75\x57\x35\x78\x63\x4b\x57','\x57\x50\x43\x6d\x72\x53\x6b\x4d\x57\x51\x34','\x57\x34\x54\x30\x57\x51\x4f\x72','\x79\x53\x6b\x37\x57\x36\x66\x6f','\x57\x51\x44\x6d\x71\x43\x6f\x4a\x57\x52\x4b','\x57\x37\x4a\x63\x54\x6d\x6f\x67\x57\x35\x46\x63\x47\x71','\x67\x38\x6b\x5a\x57\x52\x75\x39\x57\x35\x38','\x72\x63\x52\x63\x51\x38\x6f\x62\x57\x35\x34','\x68\x73\x6c\x63\x4c\x6d\x6b\x42\x57\x50\x58\x4c\x57\x51\x57\x73','\x57\x51\x46\x64\x4f\x38\x6b\x6a\x67\x73\x71','\x6b\x53\x6f\x39\x57\x36\x64\x63\x51\x53\x6f\x71\x79\x76\x68\x63\x52\x71','\x57\x34\x50\x64\x57\x35\x68\x64\x53\x66\x4b','\x57\x50\x56\x64\x54\x6d\x6b\x53\x6d\x71\x79','\x57\x36\x4a\x64\x4b\x5a\x34\x48\x76\x47','\x57\x37\x43\x38\x57\x37\x4f\x54\x57\x52\x53','\x57\x35\x31\x5a\x57\x37\x56\x64\x53\x66\x38','\x57\x37\x31\x71\x76\x43\x6b\x31\x57\x37\x5a\x64\x4a\x75\x75\x65','\x68\x72\x68\x63\x51\x43\x6f\x48\x57\x51\x4b','\x57\x37\x52\x64\x4b\x53\x6b\x79\x79\x43\x6f\x35','\x41\x5a\x46\x63\x51\x38\x6f\x4f\x57\x36\x71','\x7a\x71\x50\x37\x70\x38\x6f\x6f\x43\x71','\x57\x4f\x70\x63\x4c\x38\x6f\x47\x6e\x6d\x6f\x6e\x57\x50\x69','\x57\x4f\x52\x63\x52\x59\x6d\x43\x63\x71','\x57\x36\x72\x65\x57\x37\x4e\x64\x53\x31\x71','\x57\x52\x33\x64\x52\x43\x6f\x6b\x57\x36\x75\x61','\x57\x50\x68\x63\x50\x74\x53\x57\x57\x34\x66\x51','\x63\x71\x35\x2b\x78\x61','\x44\x4d\x78\x63\x54\x53\x6f\x54\x57\x4f\x30','\x57\x4f\x42\x63\x4b\x59\x6d\x54\x57\x34\x30','\x57\x37\x5a\x64\x56\x43\x6b\x65','\x66\x72\x35\x4a\x75\x33\x2f\x64\x4f\x61','\x6f\x78\x50\x63\x67\x32\x4f\x56\x65\x78\x5a\x63\x49\x75\x61\x38\x57\x37\x61\x47','\x69\x57\x42\x63\x49\x31\x2f\x64\x52\x73\x46\x64\x55\x71','\x69\x75\x78\x63\x49\x30\x38\x46\x57\x34\x6c\x63\x4e\x32\x65','\x57\x37\x64\x64\x52\x38\x6b\x68\x76\x53\x6f\x42\x65\x4e\x58\x54','\x57\x52\x62\x4e\x76\x38\x6f\x31\x57\x4f\x65','\x57\x51\x6c\x64\x4c\x38\x6f\x76\x57\x37\x46\x63\x49\x6d\x6f\x6f\x67\x38\x6b\x52','\x57\x52\x6a\x41\x42\x53\x6b\x57\x57\x4f\x38\x78\x79\x48\x75','\x68\x72\x33\x63\x55\x53\x6f\x41\x57\x51\x68\x64\x4e\x38\x6f\x58\x57\x50\x34','\x6d\x53\x6f\x51\x57\x35\x56\x64\x4d\x61\x6d\x36\x69\x4d\x61','\x74\x53\x6b\x6e\x57\x35\x35\x30\x71\x61','\x57\x51\x4a\x63\x4b\x43\x6f\x35\x64\x6d\x6f\x57','\x57\x4f\x50\x59\x73\x38\x6b\x55\x57\x36\x47','\x72\x4b\x47\x74\x57\x34\x70\x63\x4e\x71','\x57\x50\x30\x49\x57\x50\x5a\x64\x4b\x53\x6f\x57\x57\x37\x78\x64\x4d\x31\x38','\x57\x50\x6d\x77\x75\x38\x6b\x70\x57\x34\x30\x64\x6d\x59\x71','\x57\x50\x6a\x64\x73\x6d\x6b\x36\x57\x37\x42\x63\x49\x66\x6d\x78','\x57\x36\x4a\x64\x4b\x53\x6b\x65\x43\x43\x6f\x43','\x57\x37\x37\x64\x49\x61\x50\x49\x44\x74\x46\x64\x51\x53\x6b\x43','\x45\x73\x57\x44\x73\x73\x4c\x2f\x74\x33\x71','\x57\x37\x4a\x64\x4d\x77\x68\x64\x50\x53\x6b\x77','\x57\x4f\x6d\x6c\x78\x38\x6b\x38\x57\x51\x76\x62\x57\x52\x4f','\x57\x34\x74\x64\x52\x53\x6b\x6f\x73\x38\x6f\x32','\x68\x38\x6b\x75\x57\x4f\x75\x4f\x57\x36\x50\x64\x57\x36\x38','\x7a\x73\x46\x63\x4c\x53\x6f\x45\x57\x37\x65','\x57\x37\x37\x63\x4e\x43\x6f\x76\x57\x37\x46\x63\x4c\x6d\x6f\x66','\x67\x73\x65\x5a\x57\x36\x4b\x43\x41\x66\x53','\x62\x71\x37\x63\x56\x30\x4e\x64\x55\x61','\x64\x73\x2f\x63\x4f\x53\x6f\x56\x57\x50\x65','\x57\x37\x4e\x63\x55\x61\x4b\x76\x57\x50\x4c\x65\x57\x35\x4b\x31','\x78\x78\x75\x78','\x7a\x64\x46\x63\x4b\x43\x6f\x5a\x57\x36\x75','\x41\x4a\x56\x63\x50\x53\x6f\x38\x57\x37\x46\x64\x47\x5a\x6c\x63\x56\x47','\x71\x68\x75\x73\x57\x35\x6d','\x57\x51\x78\x64\x47\x53\x6b\x75','\x6a\x53\x6f\x4e\x57\x37\x68\x64\x4c\x64\x53','\x57\x4f\x75\x59\x57\x4f\x46\x64\x4a\x61','\x57\x35\x4c\x34\x57\x51\x61\x57\x57\x4f\x4f','\x74\x61\x71\x7a\x57\x51\x34\x36\x57\x4f\x4c\x67','\x57\x37\x57\x58\x57\x37\x47\x44\x57\x4f\x75','\x6d\x73\x5a\x63\x47\x30\x5a\x64\x4a\x57','\x78\x6d\x6f\x45\x57\x4f\x79\x36\x57\x37\x39\x6d\x57\x37\x4b','\x57\x36\x6a\x51\x57\x50\x57\x58\x57\x50\x71','\x6c\x66\x64\x63\x4c\x75\x71\x63\x57\x34\x4b','\x67\x64\x75\x4b\x57\x36\x6d\x78\x46\x61','\x76\x57\x33\x63\x51\x38\x6f\x6a\x57\x37\x43','\x57\x51\x72\x7a\x75\x53\x6f\x4b\x57\x51\x4b\x72','\x76\x6d\x6b\x59\x57\x35\x52\x63\x55\x6d\x6f\x48','\x6a\x43\x6f\x2f\x73\x67\x74\x63\x53\x47','\x68\x38\x6f\x33\x44\x66\x68\x63\x52\x71\x43','\x61\x43\x6f\x4e\x42\x67\x68\x63\x4d\x47','\x57\x4f\x6d\x6c\x77\x6d\x6b\x36','\x57\x36\x78\x63\x4f\x47\x47\x65\x57\x50\x76\x6d\x57\x36\x47\x74','\x57\x50\x74\x64\x53\x59\x52\x64\x48\x61','\x76\x62\x2f\x63\x4e\x43\x6f\x6c\x57\x37\x4f','\x79\x49\x4e\x63\x4b\x43\x6f\x44\x57\x34\x71','\x57\x4f\x46\x63\x56\x61\x47\x47\x68\x61','\x68\x62\x56\x63\x4d\x43\x6f\x33\x57\x51\x68\x64\x4d\x38\x6f\x2b','\x57\x35\x57\x74\x57\x35\x61\x48\x57\x4f\x70\x63\x56\x38\x6b\x4d\x45\x47','\x46\x32\x4b\x46\x72\x74\x38\x36\x74\x33\x47','\x6d\x38\x6f\x59\x75\x67\x79\x6a','\x6e\x73\x6e\x6a\x79\x76\x69','\x41\x31\x53\x34\x57\x34\x78\x64\x4c\x43\x6b\x63','\x57\x4f\x75\x42\x76\x38\x6f\x44\x57\x34\x34\x75\x7a\x57','\x7a\x74\x38\x6d\x74\x48\x79','\x78\x32\x6c\x63\x4b\x47','\x57\x50\x34\x59\x45\x38\x6f\x79\x57\x36\x75','\x61\x38\x6b\x36\x57\x50\x4f\x54\x57\x35\x30','\x45\x5a\x57\x69\x72\x61','\x57\x34\x35\x4c\x57\x35\x68\x64\x56\x65\x79','\x57\x34\x34\x73\x57\x35\x53\x4a\x57\x4f\x71','\x46\x71\x34\x6e\x57\x51\x34\x38\x57\x50\x34\x63','\x7a\x59\x4e\x64\x4b\x38\x6b\x62\x57\x34\x46\x64\x50\x32\x62\x46','\x57\x4f\x46\x63\x51\x38\x6f\x37\x65\x6d\x6f\x5a','\x46\x72\x75\x7a\x57\x51\x47\x51\x57\x4f\x47','\x57\x50\x6c\x63\x52\x43\x6f\x33\x62\x53\x6f\x52','\x57\x51\x54\x67\x45\x38\x6f\x51\x57\x52\x4f','\x69\x76\x4f\x35\x45\x38\x6b\x44\x79\x4b\x34\x56\x57\x36\x46\x63\x50\x43\x6b\x65','\x79\x61\x34\x4e\x57\x51\x34\x36\x57\x4f\x34\x76\x79\x47','\x73\x31\x75\x37\x57\x37\x56\x64\x4a\x53\x6b\x47\x57\x4f\x78\x64\x50\x71','\x66\x6d\x6b\x45\x57\x4f\x72\x37','\x57\x52\x74\x64\x53\x38\x6f\x49\x57\x34\x75\x33','\x57\x36\x4e\x64\x4e\x49\x6d\x52\x78\x74\x65','\x79\x6d\x6b\x74\x57\x36\x56\x63\x48\x43\x6f\x6c','\x42\x64\x2f\x64\x4f\x43\x6b\x63','\x6d\x43\x6f\x68\x76\x53\x6b\x6b\x57\x37\x66\x46\x62\x67\x37\x64\x4b\x4b\x34\x53\x71\x61','\x57\x37\x4e\x63\x4d\x5a\x71\x55\x57\x50\x43','\x57\x51\x54\x5a\x61\x38\x6f\x51\x57\x35\x6e\x62\x6e\x6d\x6f\x6a','\x69\x78\x52\x64\x4f\x73\x6c\x63\x55\x47','\x7a\x74\x47\x55\x57\x4f\x57\x31','\x73\x63\x75\x71\x57\x4f\x38\x59','\x57\x52\x68\x64\x52\x53\x6b\x72\x72\x43\x6f\x67\x6b\x67\x69\x50','\x57\x36\x31\x47\x57\x35\x5a\x64\x49\x76\x71','\x6b\x53\x6f\x2f\x46\x32\x53\x33','\x61\x53\x6b\x4f\x57\x50\x53\x68\x62\x53\x6b\x67\x66\x71','\x61\x38\x6f\x4e\x41\x76\x34','\x6c\x43\x6f\x48\x57\x37\x4e\x64\x47\x71\x71','\x71\x78\x38\x62\x57\x35\x74\x63\x4e\x43\x6f\x63','\x42\x43\x6b\x75\x66\x53\x6f\x71\x57\x51\x47\x6c','\x76\x4d\x47\x73\x57\x34\x4a\x63\x47\x61','\x57\x52\x54\x5a\x7a\x6d\x6f\x72\x57\x51\x61','\x57\x4f\x70\x63\x4b\x72\x43\x6d','\x61\x53\x6f\x69\x71\x77\x43\x44','\x6b\x38\x6f\x75\x76\x33\x33\x63\x51\x61','\x6d\x4c\x64\x63\x49\x30\x38\x78\x57\x34\x6c\x63\x4d\x57','\x6a\x67\x78\x64\x4b\x57\x33\x63\x55\x57','\x62\x6d\x6b\x5a\x57\x50\x69\x65\x61\x6d\x6b\x66\x64\x38\x6b\x4c','\x57\x34\x4e\x64\x4d\x53\x6b\x35\x45\x6d\x6f\x45','\x42\x38\x6b\x71\x57\x35\x7a\x76\x76\x47','\x43\x74\x52\x63\x56\x6d\x6f\x67\x57\x37\x52\x63\x48\x57','\x62\x6d\x6b\x59\x57\x50\x65\x44\x68\x6d\x6b\x63','\x68\x71\x33\x63\x55\x43\x6f\x48\x57\x52\x42\x64\x49\x6d\x6f\x30','\x57\x50\x38\x68\x57\x50\x70\x64\x4d\x6d\x6f\x51','\x57\x35\x50\x55\x57\x34\x62\x42\x64\x61','\x57\x4f\x52\x64\x52\x6d\x6b\x71\x6c\x72\x2f\x64\x48\x57\x4a\x64\x55\x47','\x57\x37\x4c\x2b\x57\x52\x43\x78\x57\x50\x48\x46\x63\x43\x6b\x2f','\x57\x50\x5a\x64\x52\x38\x6b\x55\x6b\x48\x2f\x64\x4c\x47','\x66\x68\x52\x64\x55\x72\x37\x63\x53\x77\x68\x64\x50\x53\x6f\x79','\x42\x43\x6f\x4e\x42\x53\x6b\x2b\x57\x51\x65','\x57\x36\x4e\x63\x53\x59\x75\x61\x57\x52\x69','\x63\x5a\x43\x4b\x57\x36\x6d\x77\x44\x71','\x57\x51\x35\x63\x78\x43\x6b\x54\x57\x36\x5a\x63\x4c\x47','\x57\x4f\x44\x4a\x62\x6d\x6f\x58\x57\x35\x31\x75\x6f\x61','\x6b\x6d\x6f\x47\x57\x35\x4e\x64\x49\x47\x6d\x37','\x57\x4f\x64\x63\x47\x71\x4f\x61\x61\x6d\x6b\x41\x57\x36\x76\x7a','\x57\x51\x6c\x64\x51\x49\x68\x63\x51\x30\x79','\x7a\x62\x54\x56\x6f\x6d\x6f\x45\x7a\x47','\x57\x36\x4e\x63\x4a\x38\x6f\x52\x57\x37\x46\x63\x4a\x53\x6f\x6a\x61\x53\x6b\x62','\x57\x50\x68\x64\x4d\x38\x6f\x58\x44\x61\x64\x64\x48\x32\x4a\x63\x49\x61','\x67\x48\x79\x77\x57\x34\x38\x33','\x57\x36\x6c\x63\x4f\x4a\x53\x47\x57\x52\x6d','\x57\x51\x6c\x63\x50\x6d\x6f\x66\x65\x53\x6f\x56','\x57\x50\x64\x63\x54\x74\x4b\x47\x57\x34\x54\x33\x57\x52\x61','\x68\x65\x5a\x64\x4a\x48\x70\x63\x48\x71','\x71\x68\x4e\x63\x4c\x6d\x6f\x44\x57\x4f\x48\x67','\x57\x50\x4a\x63\x52\x61\x4b\x64\x6e\x47','\x6b\x5a\x4b\x31\x57\x37\x57\x71','\x61\x53\x6b\x75\x57\x4f\x6d\x6e\x62\x47','\x57\x35\x69\x61\x6a\x78\x2f\x63\x50\x4e\x6d\x6d\x70\x61','\x57\x34\x72\x69\x57\x37\x42\x64\x56\x57','\x75\x67\x5a\x63\x47\x43\x6f\x6d\x57\x50\x50\x41\x57\x51\x57\x65','\x75\x71\x4e\x64\x48\x53\x6b\x32\x57\x34\x4b','\x57\x50\x38\x67\x79\x6d\x6f\x50\x57\x37\x47','\x57\x51\x62\x37\x79\x53\x6f\x4a\x57\x4f\x47','\x57\x34\x78\x64\x4c\x4c\x7a\x43\x75\x38\x6f\x41\x57\x34\x50\x6a\x57\x34\x5a\x63\x4e\x48\x30\x46','\x6f\x72\x79\x62\x57\x34\x75\x6b','\x42\x38\x6b\x65\x66\x53\x6f\x42\x57\x51\x47\x63\x66\x77\x75','\x57\x50\x50\x6c\x68\x43\x6f\x50\x57\x35\x61','\x45\x38\x6b\x37\x57\x36\x48\x72\x76\x53\x6b\x5a\x6f\x71','\x57\x4f\x57\x43\x57\x52\x56\x64\x50\x53\x6f\x5a','\x42\x30\x38\x39\x57\x37\x52\x64\x4a\x53\x6b\x77\x57\x51\x74\x64\x52\x47','\x57\x36\x4e\x63\x47\x6d\x6f\x61\x57\x37\x42\x63\x4d\x47','\x6d\x6d\x6f\x43\x57\x36\x64\x64\x4a\x62\x71','\x6d\x48\x33\x63\x4c\x66\x78\x64\x53\x61','\x71\x38\x6f\x6a\x57\x34\x35\x4a\x57\x52\x53\x72\x57\x52\x58\x38\x57\x4f\x38\x52\x64\x4d\x31\x58','\x57\x51\x46\x64\x56\x38\x6b\x52\x6e\x72\x69','\x63\x57\x69\x4a\x78\x4e\x4a\x64\x50\x38\x6b\x76','\x68\x61\x4c\x2f\x77\x33\x4b','\x6d\x4a\x2f\x63\x56\x4c\x70\x64\x48\x57','\x57\x52\x2f\x64\x55\x6d\x6f\x4d\x57\x36\x79\x4e'];_0x165a=function(){return _0x44bc4d;};return _0x165a();}function _0x2c3ace(_0x213c87,_0x4f6425){const _0xe4a416=_0x407c27,_0x3225fb={'\x48\x6f\x45\x6f\x49':_0xe4a416(0x1ca,'\x41\x71\x2a\x37'),'\x6c\x7a\x77\x59\x74':function(_0x151df9,_0x2cd99c){return _0x151df9===_0x2cd99c;},'\x67\x78\x43\x6a\x76':_0xe4a416(0x21f,'\x67\x38\x28\x4f'),'\x63\x6b\x56\x74\x45':function(_0x137b7d,_0x36f49a){return _0x137b7d(_0x36f49a);},'\x65\x41\x57\x46\x75':function(_0x35f281,_0x5333d3){return _0x35f281>=_0x5333d3;},'\x45\x75\x48\x45\x53':function(_0x30a8bd,_0x38aabf){return _0x30a8bd>_0x38aabf;}};if(_0x213c87&&_0x3225fb[_0xe4a416(0x160,'\x4c\x6e\x74\x5b')](_0x213c87[_0xe4a416(0xb3,'\x36\x56\x5b\x62')],_0xe4a416(0x1ef,'\x31\x75\x5d\x4d'))){if(_0xe4a416(0x1e4,'\x28\x2a\x6e\x76')===_0x3225fb[_0xe4a416(0xdb,'\x55\x33\x41\x51')])try{if(!_0x2dbb8b[_0xe4a416(0x152,'\x66\x43\x25\x56')+'\x6e\x63'](_0x12bc0c))return{};const _0x56b770=_0x1f8763[_0xe4a416(0x131,'\x4e\x49\x73\x43')+_0xe4a416(0x215,'\x37\x63\x4c\x61')](_0x5123cb,GiJhaF[_0xe4a416(0x80,'\x24\x4b\x4e\x47')]);if(!_0x56b770['\x74\x72\x69\x6d']())return{};return _0x57e9c1[_0xe4a416(0x1d7,'\x36\x56\x5b\x62')](_0x56b770);}catch{return{};}else{const _0x248da9=_0x3225fb['\x63\x6b\x56\x74\x45'](Number,_0x213c87[_0xe4a416(0x17f,'\x48\x35\x57\x47')])||-0x108d+0x6b5*-0x5+0x3216;return _0x3225fb[_0xe4a416(0x239,'\x41\x71\x2a\x37')](_0x248da9,0x185e*-0x1+-0x1d39+0x3*0x11dd+0.85)?-0x6f9+-0x1e5e*-0x1+-0x11*0x160:-0x589+0xb3*0xc+-0x1*0x2d7;}}const _0x4be6b8=_0x4f6425&&Array[_0xe4a416(0x1d0,'\x36\x56\x5b\x62')](_0x4f6425[_0xe4a416(0x232,'\x66\x43\x25\x56')+'\x6e\x73'])&&_0x3225fb[_0xe4a416(0x9c,'\x7a\x72\x63\x7a')](_0x4f6425[_0xe4a416(0x1b9,'\x37\x30\x4a\x63')+'\x6e\x73'][_0xe4a416(0xed,'\x6d\x41\x56\x59')],0x9*0x333+0x3*-0x8c4+-0x27f);return _0x4be6b8?-0xd8b*-0x2+-0x19cc+0x7*-0x2f:-0x528+-0x188e+-0x1db8*-0x1;}function _0x293a2e({outcome:_0x1ab859,gene:_0x13b413,signals:_0x1d7b06,blast:_0x468741,sourceType:_0x5d069e}){const _0x454181=_0x407c27,_0x42b66a={'\x56\x6d\x52\x52\x6b':function(_0x165b1a,_0x40c730){return _0x165b1a===_0x40c730;},'\x77\x54\x6d\x53\x71':_0x454181(0x10b,'\x66\x43\x25\x56')+'\x6f\x72','\x70\x62\x46\x6f\x67':_0x454181(0x184,'\x55\x33\x41\x51'),'\x74\x4c\x72\x53\x7a':function(_0x32534e,_0x2a1860){return _0x32534e+_0x2a1860;},'\x78\x72\x54\x72\x46':function(_0x24ddac,_0x20d17a){return _0x24ddac+_0x20d17a;},'\x4c\x51\x53\x58\x78':'\x5b\x48\x75\x62\x52\x65\x76\x69'+_0x454181(0xce,'\x26\x59\x71\x4b')+'\x65\x64\x20\x28\x6e\x6f\x6e\x2d'+'\x66\x61\x74\x61\x6c\x2c\x20','\x77\x48\x6b\x76\x47':_0x454181(0x8d,'\x78\x59\x24\x63'),'\x68\x79\x71\x64\x7a':function(_0x59586a,_0x1c5f7f){return _0x59586a(_0x1c5f7f);},'\x61\x66\x43\x44\x57':function(_0x2fc296,_0xe4c6df){return _0x2fc296||_0xe4c6df;},'\x7a\x54\x69\x6a\x4d':function(_0x57fea5,_0x42921b){return _0x57fea5-_0x42921b;},'\x73\x65\x47\x55\x62':function(_0x390f8a,_0x17b173,_0x590ab5,_0x1851ec){return _0x390f8a(_0x17b173,_0x590ab5,_0x1851ec);},'\x57\x50\x4f\x52\x69':function(_0xfa3511,_0x5400ca){return _0xfa3511+_0x5400ca;},'\x71\x4b\x6c\x76\x56':function(_0x3e4d26,_0x57b2ef){return _0x3e4d26+_0x57b2ef;},'\x53\x42\x51\x4f\x73':function(_0x20bec3,_0x5d749f){return _0x20bec3+_0x5d749f;},'\x42\x6e\x6d\x68\x77':_0x454181(0x21a,'\x35\x6d\x6a\x38')+_0x454181(0x78,'\x71\x59\x72\x76')+_0x454181(0x175,'\x70\x6f\x69\x53')+_0x454181(0x1e5,'\x75\x46\x5e\x69')+'\x20','\x72\x6d\x51\x6d\x61':'\x3a\x20\x72\x61\x74\x69\x6e\x67'+'\x3d','\x4f\x59\x78\x61\x75':'\x2c\x20\x6f\x75\x74\x63\x6f\x6d'+'\x65\x3d','\x5a\x66\x49\x6a\x4f':_0x454181(0x1bb,'\x4b\x42\x29\x77')+_0x454181(0x13b,'\x4e\x37\x32\x70')+'\x74\x74\x65\x64','\x50\x6c\x55\x54\x72':'\x75\x6e\x6b\x6e\x6f\x77\x6e','\x43\x52\x71\x6b\x4e':function(_0x1d0245,_0x1482bd){return _0x1d0245(_0x1482bd);},'\x66\x4e\x4e\x68\x61':function(_0x11699d,_0x264ff7){return _0x11699d+_0x264ff7;},'\x74\x64\x68\x62\x4e':function(_0x52ec66,_0x408fa4){return _0x52ec66+_0x408fa4;},'\x43\x6b\x50\x6e\x42':function(_0x38f845,_0x462960){return _0x38f845+_0x462960;},'\x66\x68\x44\x47\x62':_0x454181(0xcc,'\x34\x6b\x70\x6b')+'\x20','\x48\x64\x64\x6b\x78':'\x20\x28\x73\x63\x6f\x72\x65\x3a'+'\x20','\x74\x79\x67\x49\x75':_0x454181(0x16a,'\x79\x69\x58\x26')+_0x454181(0x1ed,'\x31\x2a\x42\x46'),'\x78\x47\x7a\x6a\x42':function(_0x410295,_0x1da46d){return _0x410295||_0x1da46d;},'\x6e\x76\x77\x62\x4d':_0x454181(0x23a,'\x5e\x4b\x2a\x40'),'\x6e\x41\x62\x74\x76':function(_0x387e91,_0x5be50e){return _0x387e91+_0x5be50e;},'\x74\x62\x78\x78\x4c':function(_0x1e9d96,_0x59da64){return _0x1e9d96+_0x59da64;},'\x47\x58\x69\x73\x6f':_0x454181(0x8a,'\x79\x69\x58\x26'),'\x6e\x62\x74\x46\x6f':function(_0xa4b4ea,_0x3ca5e6){return _0xa4b4ea>_0x3ca5e6;},'\x73\x4c\x48\x49\x6d':function(_0x3ec36a,_0x121116){return _0x3ec36a+_0x121116;},'\x54\x7a\x4f\x72\x70':_0x454181(0x1d1,'\x41\x71\x2a\x37')+'\x20','\x58\x78\x56\x46\x53':function(_0x44c4e5,_0x4350a2){return _0x44c4e5+_0x4350a2;},'\x6e\x78\x53\x69\x79':function(_0x315a69,_0x5ea0fc){return _0x315a69+_0x5ea0fc;},'\x70\x42\x46\x45\x4e':function(_0x20df66,_0x5747de){return _0x20df66+_0x5747de;},'\x75\x56\x6b\x42\x48':_0x454181(0x7e,'\x31\x2a\x42\x46')+_0x454181(0x217,'\x75\x46\x5e\x69'),'\x67\x59\x6c\x45\x57':_0x454181(0xae,'\x34\x6b\x70\x6b')+'\x2c\x20','\x7a\x67\x58\x43\x78':_0x454181(0x207,'\x26\x59\x71\x4b'),'\x65\x50\x58\x69\x45':_0x454181(0x140,'\x79\x69\x58\x26'),'\x41\x6d\x65\x76\x69':function(_0x23e80e,_0xd41dc){return _0x23e80e!==_0xd41dc;},'\x52\x69\x61\x61\x56':_0x454181(0xf9,'\x41\x71\x2a\x37'),'\x79\x4e\x70\x42\x73':_0x454181(0x7a,'\x78\x66\x78\x7a'),'\x79\x4b\x47\x78\x6c':_0x454181(0xcb,'\x78\x4b\x76\x40')+_0x454181(0x186,'\x51\x58\x69\x6a')+_0x454181(0x1f2,'\x35\x6d\x6a\x38')+_0x454181(0x23c,'\x51\x58\x69\x6a')+_0x454181(0x1c6,'\x78\x4b\x76\x40')+_0x454181(0x242,'\x31\x75\x5d\x4d')+'\x6f\x6c\x69\x64\x69\x66\x69\x65'+'\x64\x2e','\x77\x48\x7a\x50\x4b':function(_0x28cedc,_0x4bc999){return _0x28cedc===_0x4bc999;},'\x58\x42\x6c\x50\x44':_0x454181(0x16c,'\x4e\x49\x73\x43'),'\x59\x4c\x4d\x77\x4e':_0x454181(0x7b,'\x38\x21\x71\x6a')+_0x454181(0x19f,'\x44\x4c\x52\x28')+_0x454181(0xf7,'\x5e\x4b\x2a\x40')+_0x454181(0x191,'\x55\x71\x6f\x74')+_0x454181(0x1be,'\x78\x4b\x76\x40')+_0x454181(0x1c5,'\x24\x4b\x4e\x47')+_0x454181(0xc5,'\x51\x58\x69\x6a')+_0x454181(0x181,'\x31\x75\x5d\x4d')},_0x3d613e=[],_0x27a8de=_0x1ab859&&_0x1ab859[_0x454181(0x12a,'\x48\x35\x57\x47')]?_0x1ab859[_0x454181(0x1af,'\x43\x59\x77\x70')]:_0x42b66a[_0x454181(0x1a5,'\x4c\x6e\x74\x5b')],_0x436ae5=_0x1ab859&&Number[_0x454181(0x13c,'\x30\x64\x4e\x54')](_0x42b66a[_0x454181(0xaf,'\x38\x21\x71\x6a')](Number,_0x1ab859[_0x454181(0x211,'\x78\x4b\x76\x40')]))?_0x42b66a['\x43\x52\x71\x6b\x4e'](Number,_0x1ab859[_0x454181(0x1ce,'\x55\x33\x41\x51')])[_0x454181(0x15d,'\x78\x4b\x76\x40')](0x1a61*0x1+0x1*0xe03+0x2862*-0x1):'\x3f';_0x3d613e[_0x454181(0x17b,'\x67\x38\x28\x4f')](_0x42b66a[_0x454181(0x128,'\x75\x28\x24\x76')](_0x42b66a[_0x454181(0x201,'\x38\x21\x71\x6a')](_0x42b66a[_0x454181(0x22e,'\x7a\x72\x63\x7a')](_0x42b66a[_0x454181(0x8e,'\x75\x46\x5e\x69')](_0x42b66a[_0x454181(0xd4,'\x55\x33\x41\x51')],_0x27a8de),_0x42b66a[_0x454181(0x157,'\x67\x38\x28\x4f')]),_0x436ae5),'\x29')),_0x3d613e[_0x454181(0x100,'\x5e\x4b\x2a\x40')](_0x42b66a[_0x454181(0x193,'\x4e\x37\x32\x70')](_0x42b66a[_0x454181(0x9b,'\x59\x28\x4b\x26')],_0x42b66a[_0x454181(0xd8,'\x38\x21\x71\x6a')](_0x5d069e,_0x454181(0x1c8,'\x57\x54\x42\x71'))));if(_0x13b413&&_0x13b413['\x69\x64']){if(_0x42b66a[_0x454181(0x166,'\x28\x2a\x6e\x76')]!==_0x42b66a[_0x454181(0xfc,'\x5e\x4b\x2a\x40')]){var _0x4181e2=_0x42b66a[_0x454181(0xec,'\x6d\x41\x56\x59')](_0x16cda8[_0x454181(0x9a,'\x41\x71\x2a\x37')],_0x42b66a['\x77\x54\x6d\x53\x71'])?_0x42b66a[_0x454181(0x21d,'\x71\x59\x72\x76')]:'\x66\x65\x74\x63\x68\x5f\x65\x72'+'\x72\x6f\x72';_0x40751f[_0x454181(0xfd,'\x44\x4c\x52\x28')](_0x42b66a['\x74\x4c\x72\x53\x7a'](_0x42b66a[_0x454181(0xa3,'\x4e\x37\x32\x70')](_0x42b66a[_0x454181(0x89,'\x36\x56\x5b\x62')](_0x42b66a[_0x454181(0x1f4,'\x59\x54\x58\x5d')],_0x4181e2),_0x42b66a['\x77\x48\x6b\x76\x47']),_0x300a0a[_0x454181(0x1d6,'\x45\x46\x75\x73')]));const _0x256244={};_0x256244[_0x454181(0x1f0,'\x42\x5a\x6b\x72')]=_0x49a397,_0x256244[_0x454181(0x85,'\x45\x46\x75\x73')]=_0x4181e2,_0x256244[_0x454181(0x11f,'\x31\x2a\x42\x46')]=_0x1c80ab[_0x454181(0x1e8,'\x59\x28\x4b\x26')],_0x42b66a[_0x454181(0x1bc,'\x57\x54\x42\x71')](_0x17aa9a,{'\x72\x75\x6e\x5f\x69\x64':_0x42b66a['\x61\x66\x43\x44\x57'](_0x40fb9b,null),'\x61\x63\x74\x69\x6f\x6e':_0x454181(0xc4,'\x38\x21\x71\x6a')+_0x454181(0x1d5,'\x39\x5b\x56\x42')+'\x64','\x61\x73\x73\x65\x74\x5f\x69\x64':_0xa1ff88,'\x65\x78\x74\x72\x61':_0x256244});const _0x7393d7={};return _0x7393d7['\x73\x75\x62\x6d\x69\x74\x74\x65'+'\x64']=![],_0x7393d7[_0x454181(0x1b1,'\x4b\x42\x29\x77')]=_0x4181e2,_0x7393d7['\x65\x72\x72\x6f\x72']=_0xd9177d[_0x454181(0x1db,'\x79\x69\x58\x26')],_0x7393d7;}else _0x3d613e[_0x454181(0x121,'\x41\x6e\x54\x71')](_0x42b66a[_0x454181(0x82,'\x48\x35\x57\x47')](_0x42b66a[_0x454181(0x237,'\x40\x43\x4e\x4b')](_0x42b66a['\x74\x62\x78\x78\x4c'](_0x42b66a[_0x454181(0x17d,'\x48\x35\x57\x47')],_0x13b413['\x69\x64']),'\x20\x28')+(_0x13b413[_0x454181(0x148,'\x44\x4c\x52\x28')]||_0x42b66a[_0x454181(0x213,'\x78\x66\x78\x7a')]),'\x29'));}Array[_0x454181(0xf5,'\x38\x21\x71\x6a')](_0x1d7b06)&&_0x42b66a[_0x454181(0x1ae,'\x78\x4b\x76\x40')](_0x1d7b06[_0x454181(0xe7,'\x59\x54\x58\x5d')],0x4*-0x39e+0x1e25*-0x1+0x9*0x4f5)&&_0x3d613e[_0x454181(0x7f,'\x4e\x37\x32\x70')](_0x42b66a[_0x454181(0x112,'\x70\x6f\x69\x53')](_0x42b66a[_0x454181(0x225,'\x46\x59\x65\x69')],_0x1d7b06[_0x454181(0x230,'\x78\x66\x78\x7a')](-0x695+0x2154+-0x1abf,-0xd9*-0x10+0x2*-0xdc5+0xe00)[_0x454181(0x192,'\x41\x71\x2a\x37')]('\x2c\x20')));_0x468741&&_0x3d613e[_0x454181(0x11b,'\x6d\x41\x56\x59')](_0x42b66a['\x53\x42\x51\x4f\x73'](_0x42b66a[_0x454181(0x14a,'\x78\x4b\x76\x40')](_0x42b66a['\x6e\x78\x53\x69\x79'](_0x42b66a[_0x454181(0x13d,'\x37\x30\x4a\x63')](_0x42b66a[_0x454181(0x1d9,'\x6d\x41\x56\x59')],_0x468741['\x66\x69\x6c\x65\x73']||0x69*-0x29+0x8*0x11f+-0x7d9*-0x1),_0x42b66a[_0x454181(0x1cb,'\x5e\x4b\x2a\x40')]),_0x468741[_0x454181(0x23d,'\x6a\x34\x35\x73')]||0x22a9+-0x2*0x807+-0x129b),_0x42b66a[_0x454181(0xe6,'\x75\x46\x5e\x69')]));if(_0x42b66a['\x56\x6d\x52\x52\x6b'](_0x27a8de,_0x42b66a[_0x454181(0x15a,'\x57\x54\x42\x71')])){if(_0x42b66a[_0x454181(0x144,'\x37\x30\x4a\x63')](_0x42b66a[_0x454181(0x176,'\x4e\x49\x73\x43')],_0x42b66a[_0x454181(0xcd,'\x6a\x34\x35\x73')]))_0x3d613e[_0x454181(0x97,'\x7a\x72\x63\x7a')](_0x42b66a[_0x454181(0xb4,'\x41\x6e\x54\x71')]);else{const _0x17098d=_0x7ff707['\x6d\x61\x70'](_0x1118fc=>({'\x6b':_0x1118fc,'\x74':_0x31540e[_0x1118fc]['\x61\x74']||0x3fa*-0x3+-0x3f3*-0x7+-0xfb7}))['\x73\x6f\x72\x74']((_0x1e9376,_0x44d939)=>_0x1e9376['\x74']-_0x44d939['\x74']),_0x3e5512=_0x17098d[_0x454181(0x1e9,'\x39\x5b\x56\x42')](-0x1f8f+0x209+0x2*0xec3,CONeNH[_0x454181(0xad,'\x31\x75\x5d\x4d')](_0x488581[_0x454181(0x23e,'\x31\x6f\x24\x54')],_0x3a74ae));for(const _0x4f9e1a of _0x3e5512)delete _0x130538[_0x4f9e1a['\x6b']];}}else{if(_0x42b66a[_0x454181(0x105,'\x36\x56\x5b\x62')](_0x42b66a['\x58\x42\x6c\x50\x44'],'\x4d\x48\x44\x4f\x72'))_0x3d613e[_0x454181(0x204,'\x75\x28\x24\x76')](_0x42b66a[_0x454181(0xfe,'\x78\x4b\x76\x40')]);else{_0x42b66a[_0x454181(0x182,'\x4e\x49\x73\x43')](_0x421423,_0x29446b,_0x35989c,!![]),_0x14a600['\x6c\x6f\x67'](_0x42b66a[_0x454181(0xf2,'\x55\x33\x41\x51')](_0x42b66a[_0x454181(0xff,'\x31\x6f\x24\x54')](_0x42b66a[_0x454181(0x82,'\x48\x35\x57\x47')](_0x42b66a[_0x454181(0x14d,'\x37\x30\x4a\x63')](_0x42b66a[_0x454181(0x188,'\x75\x46\x5e\x69')],_0x1c4f94),_0x42b66a[_0x454181(0x94,'\x37\x30\x4a\x63')])+_0x4712cb,_0x42b66a[_0x454181(0x1da,'\x43\x59\x77\x70')]),_0x1eafc4&&_0x59b858[_0x454181(0xea,'\x45\x46\x75\x73')]));const _0xece121={};_0xece121[_0x454181(0x9d,'\x6a\x34\x35\x73')]=_0x34961f,_0xece121[_0x454181(0xf0,'\x70\x6f\x69\x53')+_0x454181(0x135,'\x34\x6b\x70\x6b')]=_0x42f32a&&_0x2bd430[_0x454181(0x142,'\x44\x4c\x52\x28')],_0x42b66a['\x68\x79\x71\x64\x7a'](_0x214d80,{'\x72\x75\x6e\x5f\x69\x64':_0x42b66a[_0x454181(0xf3,'\x55\x33\x41\x51')](_0x318dd5,null),'\x61\x63\x74\x69\x6f\x6e':_0x42b66a[_0x454181(0x1e0,'\x38\x21\x71\x6a')],'\x61\x73\x73\x65\x74\x5f\x69\x64':_0x3a2282,'\x65\x78\x74\x72\x61':_0xece121});const _0x3261ad={};return _0x3261ad[_0x454181(0xf6,'\x42\x5a\x6b\x72')+'\x64']=!![],_0x3261ad[_0x454181(0x21e,'\x31\x6f\x24\x54')]=_0x2abff5,_0x3261ad[_0x454181(0xc0,'\x6a\x34\x35\x73')]=_0x2f0071,_0x3261ad;}}return _0x3d613e[_0x454181(0x1aa,'\x39\x5b\x56\x42')]('\x0a')[_0x454181(0x230,'\x78\x66\x78\x7a')](-0x23*-0x1+-0x1625+0x9*0x272,-0x33*0x32+0x21bc+-0xff6);}function _0x5dd7ab(){const _0x470166=_0x407c27;return(process.env.A2A_HUB_URL||'')[_0x470166(0x124,'\x59\x54\x58\x5d')](/\/+$/,'');}async function _0x3459d1({reusedAssetId:_0x32c966,sourceType:_0x471b10,outcome:_0x11350b,gene:_0x2641dc,signals:_0x1506da,blast:_0x8bc6a8,constraintCheck:_0x235a59,runId:_0x263a73}){const _0x2b5cc9=_0x407c27,_0x42e8ff={'\x57\x44\x77\x77\x71':'\x61\x6c\x72\x65\x61\x64\x79\x5f'+_0x2b5cc9(0x1e3,'\x31\x6f\x24\x54'),'\x74\x58\x6c\x44\x79':function(_0x2884ce,_0x2b96bd){return _0x2884ce-_0x2b96bd;},'\x6f\x6e\x4a\x54\x4c':function(_0x43c7e5,_0xf6e5c6){return _0x43c7e5+_0xf6e5c6;},'\x44\x78\x4e\x66\x55':_0x2b5cc9(0x221,'\x4e\x37\x32\x70'),'\x4f\x45\x4b\x67\x42':_0x2b5cc9(0x208,'\x44\x4c\x52\x28')+'\x65\x77\x5f\x74\x69\x6d\x65\x6f'+'\x75\x74','\x58\x46\x4d\x4b\x71':function(_0x391437,_0x4f3d59){return _0x391437!==_0x4f3d59;},'\x65\x5a\x41\x6d\x5a':_0x2b5cc9(0x183,'\x46\x59\x65\x69'),'\x47\x65\x79\x58\x4d':function(_0x227e3a,_0x4c1d18){return _0x227e3a===_0x4c1d18;},'\x57\x73\x7a\x64\x78':function(_0x3927fc,_0x5422fd){return _0x3927fc(_0x5422fd);},'\x4b\x48\x58\x6d\x47':function(_0x32e0a9,_0x57d888){return _0x32e0a9>_0x57d888;},'\x6b\x4e\x6c\x52\x56':function(_0x2cb61f){return _0x2cb61f();},'\x71\x50\x6d\x67\x73':_0x2b5cc9(0x223,'\x4e\x37\x32\x70'),'\x58\x5a\x48\x61\x51':_0x2b5cc9(0x172,'\x36\x56\x5b\x62'),'\x55\x72\x7a\x78\x59':_0x2b5cc9(0x13f,'\x36\x56\x5b\x62'),'\x52\x61\x59\x73\x7a':_0x2b5cc9(0x1a3,'\x48\x35\x57\x47')+_0x2b5cc9(0x1d2,'\x57\x54\x42\x71')+'\x69\x64','\x6c\x59\x46\x65\x4f':_0x2b5cc9(0xb2,'\x35\x6d\x6a\x38'),'\x53\x71\x55\x62\x61':function(_0x378230,_0x37372a){return _0x378230!==_0x37372a;},'\x53\x73\x66\x50\x6d':_0x2b5cc9(0xcf,'\x5e\x4b\x2a\x40')+'\x65','\x43\x6d\x6d\x57\x74':'\x6e\x6f\x74\x5f\x68\x75\x62\x5f'+_0x2b5cc9(0x103,'\x71\x59\x72\x76'),'\x45\x68\x43\x44\x70':_0x2b5cc9(0x164,'\x36\x56\x5b\x62'),'\x66\x75\x6f\x54\x56':function(_0x32d67d,_0x42ed89,_0x42a9b0){return _0x32d67d(_0x42ed89,_0x42a9b0);},'\x47\x63\x6e\x64\x47':function(_0x234631,_0x578323){return _0x234631(_0x578323);},'\x42\x7a\x4b\x77\x4c':function(_0x5c65a3,_0x46b328){return _0x5c65a3+_0x46b328;},'\x48\x78\x46\x47\x4e':function(_0x5a6b23,_0x5a80a1){return _0x5a6b23+_0x5a80a1;},'\x71\x41\x78\x73\x47':function(_0x1d36a6,_0x287059){return _0x1d36a6+_0x287059;},'\x64\x6d\x70\x66\x4e':_0x2b5cc9(0x146,'\x59\x28\x4b\x26')+'\x65\x74\x73\x2f','\x68\x56\x75\x4b\x6f':'\x2f\x72\x65\x76\x69\x65\x77\x73','\x72\x75\x76\x57\x43':_0x2b5cc9(0xbf,'\x59\x54\x58\x5d')+'\x69\x6f\x6e\x2f\x6a\x73\x6f\x6e','\x48\x4b\x71\x45\x68':_0x2b5cc9(0x196,'\x48\x35\x57\x47')+_0x2b5cc9(0x228,'\x77\x4f\x72\x41'),'\x69\x64\x4e\x6c\x73':_0x2b5cc9(0xfb,'\x78\x4b\x76\x40'),'\x61\x6b\x42\x4b\x47':function(_0x221840,_0x2a9c3f,_0x5ad613,_0x396d29){return _0x221840(_0x2a9c3f,_0x5ad613,_0x396d29);},'\x62\x62\x46\x79\x4c':function(_0x193193,_0x58c788){return _0x193193+_0x58c788;},'\x59\x4a\x46\x57\x64':function(_0x158bfe,_0x3f869a){return _0x158bfe+_0x3f869a;},'\x56\x59\x75\x50\x46':_0x2b5cc9(0x1e1,'\x31\x6f\x24\x54')+'\x3d','\x70\x4d\x6a\x6b\x6c':_0x2b5cc9(0xa8,'\x28\x2a\x6e\x76')+'\x65\x3d','\x4a\x45\x76\x6e\x55':_0x2b5cc9(0x168,'\x75\x28\x24\x76')+_0x2b5cc9(0x12e,'\x67\x38\x28\x4f')+_0x2b5cc9(0x83,'\x28\x2a\x6e\x76'),'\x59\x54\x53\x57\x78':'\x68\x74\x74\x70\x5f','\x63\x57\x6f\x75\x68':'\x66\x59\x42\x65\x49','\x65\x47\x4d\x76\x47':'\x55\x49\x4b\x6d\x64','\x4a\x4a\x57\x4f\x6d':function(_0x9a9700,_0x5bbb83,_0x588c51,_0x2e1e4a){return _0x9a9700(_0x5bbb83,_0x588c51,_0x2e1e4a);},'\x66\x4e\x64\x5a\x6f':function(_0xf12d02,_0x9dcc14){return _0xf12d02+_0x9dcc14;},'\x48\x50\x5a\x6d\x72':function(_0x4ea38e,_0x49b91c){return _0x4ea38e+_0x49b91c;},'\x44\x48\x73\x57\x44':function(_0x1fa2d4,_0x266955){return _0x1fa2d4(_0x266955);},'\x6a\x55\x4f\x54\x4c':function(_0x10abe2,_0x3c7483){return _0x10abe2||_0x3c7483;},'\x41\x52\x75\x75\x6b':_0x2b5cc9(0x212,'\x5e\x4b\x2a\x40')+_0x2b5cc9(0x1d4,'\x6a\x34\x35\x73')+_0x2b5cc9(0x194,'\x4c\x6e\x74\x5b'),'\x58\x72\x78\x4c\x48':function(_0x49d07e,_0x36a96e){return _0x49d07e===_0x36a96e;},'\x45\x49\x51\x75\x76':function(_0x2c45de,_0x4c04de){return _0x2c45de+_0x4c04de;},'\x54\x42\x79\x50\x64':function(_0x218348,_0x33e9de){return _0x218348+_0x33e9de;},'\x64\x63\x66\x7a\x5a':_0x2b5cc9(0x165,'\x71\x59\x72\x76')+'\x65\x77\x5d\x20\x46\x61\x69\x6c'+_0x2b5cc9(0x195,'\x71\x59\x72\x76')+'\x66\x61\x74\x61\x6c\x2c\x20','\x77\x56\x51\x73\x54':function(_0x4e1a74,_0x1f91b9){return _0x4e1a74(_0x1f91b9);}};var _0x36c902=_0x42e8ff[_0x2b5cc9(0xb0,'\x6a\x34\x35\x73')](_0x5dd7ab);const _0x3d8715={};_0x3d8715['\x73\x75\x62\x6d\x69\x74\x74\x65'+'\x64']=![],_0x3d8715[_0x2b5cc9(0x1ac,'\x55\x33\x41\x51')]=_0x2b5cc9(0x18f,'\x77\x4f\x72\x41')+'\x72\x6c';if(!_0x36c902)return _0x3d8715;if(!_0x32c966||_0x42e8ff[_0x2b5cc9(0x123,'\x6d\x41\x56\x59')](typeof _0x32c966,_0x42e8ff[_0x2b5cc9(0x12c,'\x7a\x72\x63\x7a')])){if(_0x42e8ff['\x47\x65\x79\x58\x4d'](_0x42e8ff[_0x2b5cc9(0xac,'\x42\x5a\x6b\x72')],_0x42e8ff[_0x2b5cc9(0xd2,'\x6a\x34\x35\x73')])){const _0x14b649={};return _0x14b649[_0x2b5cc9(0x17e,'\x4e\x37\x32\x70')+'\x64']=![],_0x14b649[_0x2b5cc9(0x11d,'\x31\x2a\x42\x46')]=_0x42e8ff[_0x2b5cc9(0xc8,'\x34\x6b\x70\x6b')],_0x14b649;}else{const _0x3ec135={};return _0x3ec135[_0x2b5cc9(0x1f8,'\x6a\x34\x35\x73')+'\x64']=![],_0x3ec135['\x72\x65\x61\x73\x6f\x6e']=_0x42e8ff[_0x2b5cc9(0xd7,'\x57\x54\x42\x71')],_0x3ec135;}}if(_0x42e8ff[_0x2b5cc9(0x20b,'\x59\x28\x4b\x26')](_0x471b10,_0x42e8ff[_0x2b5cc9(0x19a,'\x48\x52\x4c\x53')])&&_0x42e8ff[_0x2b5cc9(0x210,'\x35\x6d\x6a\x38')](_0x471b10,_0x42e8ff[_0x2b5cc9(0x77,'\x41\x6e\x54\x71')])){const _0x1f364e={};return _0x1f364e['\x73\x75\x62\x6d\x69\x74\x74\x65'+'\x64']=![],_0x1f364e[_0x2b5cc9(0xb7,'\x79\x69\x58\x26')]=_0x42e8ff[_0x2b5cc9(0x139,'\x66\x57\x64\x4d')],_0x1f364e;}if(_0x382eff(_0x32c966)){if(_0x42e8ff[_0x2b5cc9(0x127,'\x6a\x34\x35\x73')](_0x2b5cc9(0x1ff,'\x31\x6f\x24\x54'),_0x42e8ff[_0x2b5cc9(0xb9,'\x44\x4c\x52\x28')])){const _0x197c81=_0x1be0a[_0x2b5cc9(0x18d,'\x70\x6f\x69\x53')](_0x45d069),_0x337c82={};_0x337c82[_0x2b5cc9(0x15c,'\x46\x59\x65\x69')+'\x65']=!![];if(!_0x193739['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x197c81))_0x4c1f6f[_0x2b5cc9(0x15e,'\x66\x57\x64\x4d')+'\x63'](_0x197c81,_0x337c82);const _0x2df6d7=_0x5c328d[_0x2b5cc9(0xe0,'\x7a\x72\x63\x7a')](_0x2248ea);if(_0x2df6d7[_0x2b5cc9(0x76,'\x36\x56\x5b\x62')]>_0x4bee77){const _0xc2a0=_0x2df6d7[_0x2b5cc9(0xbb,'\x6a\x34\x35\x73')](_0x5c9cfb=>({'\x6b':_0x5c9cfb,'\x74':_0x2c6c8f[_0x5c9cfb]['\x61\x74']||0x1*0x6f+-0x1f1a+0x1eab}))[_0x2b5cc9(0xdd,'\x31\x2a\x42\x46')]((_0x50e20e,_0x2e88a4)=>_0x50e20e['\x74']-_0x2e88a4['\x74']),_0x32ff0d=_0xc2a0[_0x2b5cc9(0xab,'\x26\x59\x71\x4b')](0xc*-0x217+-0x801*0x3+0x3*0x105d,QDWbIJ[_0x2b5cc9(0xf4,'\x41\x6e\x54\x71')](_0x2df6d7[_0x2b5cc9(0x137,'\x51\x58\x69\x6a')],_0x36b8cd));for(const _0x2e872a of _0x32ff0d)delete _0x2b2133[_0x2e872a['\x6b']];}const _0x10d7e8=QDWbIJ[_0x2b5cc9(0x216,'\x44\x4c\x52\x28')](_0x5103e0,QDWbIJ[_0x2b5cc9(0x23b,'\x40\x43\x4e\x4b')]);_0x350282[_0x2b5cc9(0x20d,'\x36\x56\x5b\x62')+_0x2b5cc9(0xba,'\x79\x69\x58\x26')](_0x10d7e8,_0xc851f9['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](_0x19c0c3,null,-0x4d*0x1+0x1941+-0xc79*0x2)+'\x0a',_0x2b5cc9(0x1ca,'\x41\x71\x2a\x37')),_0x477ceb[_0x2b5cc9(0x1d3,'\x35\x6d\x6a\x38')+'\x6e\x63'](_0x10d7e8,_0xf4aa34);}else{const _0x388a63={};return _0x388a63[_0x2b5cc9(0x169,'\x79\x69\x58\x26')+'\x64']=![],_0x388a63[_0x2b5cc9(0x214,'\x51\x58\x69\x6a')]=_0x42e8ff[_0x2b5cc9(0x12d,'\x55\x71\x6f\x74')],_0x388a63;}}var _0x322c3f=_0x42e8ff[_0x2b5cc9(0x226,'\x36\x56\x5b\x62')](_0x2c3ace,_0x11350b,_0x235a59);const _0x417e4b={};_0x417e4b[_0x2b5cc9(0x227,'\x66\x43\x25\x56')]=_0x11350b,_0x417e4b[_0x2b5cc9(0x91,'\x42\x5a\x6b\x72')]=_0x2641dc,_0x417e4b[_0x2b5cc9(0x1c4,'\x66\x43\x25\x56')]=_0x1506da,_0x417e4b[_0x2b5cc9(0x1fd,'\x71\x59\x72\x76')]=_0x8bc6a8,_0x417e4b[_0x2b5cc9(0xd9,'\x70\x6f\x69\x53')+'\x70\x65']=_0x471b10;var _0x244a70=_0x42e8ff[_0x2b5cc9(0x1dd,'\x70\x6f\x69\x53')](_0x293a2e,_0x417e4b),_0x2d3089=_0x42e8ff[_0x2b5cc9(0x1a0,'\x75\x46\x5e\x69')](_0x46fd9f),_0x1c9e26=_0x42e8ff[_0x2b5cc9(0x18b,'\x30\x64\x4e\x54')](_0x42e8ff[_0x2b5cc9(0x1dc,'\x48\x35\x57\x47')](_0x42e8ff['\x71\x41\x78\x73\x47'](_0x36c902,_0x42e8ff[_0x2b5cc9(0x86,'\x75\x46\x5e\x69')]),_0x42e8ff[_0x2b5cc9(0x21b,'\x79\x69\x58\x26')](encodeURIComponent,_0x32c966)),_0x42e8ff[_0x2b5cc9(0x234,'\x37\x30\x4a\x63')]);const _0x21addb={};_0x21addb[_0x2b5cc9(0x219,'\x67\x38\x28\x4f')+_0x2b5cc9(0x20c,'\x37\x63\x4c\x61')]=_0x42e8ff[_0x2b5cc9(0x16e,'\x28\x2a\x6e\x76')],_0x21addb[_0x2b5cc9(0x8f,'\x4e\x37\x32\x70')]=_0x42e8ff[_0x2b5cc9(0xee,'\x6d\x41\x56\x59')];var _0x38a962=_0x21addb,_0x4287c1=_0x36df27();_0x4287c1&&(_0x38a962[_0x42e8ff['\x48\x4b\x71\x45\x68']]=_0x42e8ff[_0x2b5cc9(0xa7,'\x67\x38\x28\x4f')](_0x42e8ff[_0x2b5cc9(0x11c,'\x51\x58\x69\x6a')],_0x4287c1));const _0x25763f={};_0x25763f[_0x2b5cc9(0x138,'\x41\x6e\x54\x71')+'\x64']=_0x2d3089,_0x25763f[_0x2b5cc9(0x9d,'\x6a\x34\x35\x73')]=_0x322c3f,_0x25763f[_0x2b5cc9(0x96,'\x30\x64\x4e\x54')]=_0x244a70;var _0x25866f=JSON[_0x2b5cc9(0x177,'\x39\x5b\x56\x42')+'\x79'](_0x25763f);try{var _0x57cc1d=new AbortController(),_0x3bd7d8=_0x42e8ff['\x66\x75\x6f\x54\x56'](setTimeout,function(){const _0x169884=_0x2b5cc9;_0x57cc1d[_0x169884(0x17c,'\x42\x5a\x6b\x72')](_0x42e8ff[_0x169884(0x180,'\x4b\x42\x29\x77')]);},-0x94*0x65+0xa49+0x572b);const _0x4e2aa4={};_0x4e2aa4[_0x2b5cc9(0x11e,'\x4c\x6e\x74\x5b')]=_0x2b5cc9(0x1c2,'\x48\x35\x57\x47'),_0x4e2aa4[_0x2b5cc9(0x12b,'\x38\x21\x71\x6a')]=_0x38a962,_0x4e2aa4[_0x2b5cc9(0x81,'\x34\x6b\x70\x6b')]=_0x25866f,_0x4e2aa4['\x73\x69\x67\x6e\x61\x6c']=_0x57cc1d[_0x2b5cc9(0x1a8,'\x48\x52\x4c\x53')];var _0x56bd5d=await _0x42e8ff['\x66\x75\x6f\x54\x56'](_0x4e7dca,_0x1c9e26,_0x4e2aa4);_0x42e8ff[_0x2b5cc9(0x1ab,'\x77\x4f\x72\x41')](clearTimeout,_0x3bd7d8);if(_0x56bd5d['\x6f\x6b']){_0x42e8ff[_0x2b5cc9(0x197,'\x78\x4b\x76\x40')](_0x1fed67,_0x32c966,_0x322c3f,!![]),console[_0x2b5cc9(0x162,'\x67\x38\x28\x4f')](_0x42e8ff[_0x2b5cc9(0x16b,'\x40\x43\x4e\x4b')](_0x42e8ff[_0x2b5cc9(0xdf,'\x51\x58\x69\x6a')](_0x42e8ff[_0x2b5cc9(0x21c,'\x59\x28\x4b\x26')](_0x42e8ff[_0x2b5cc9(0x1fb,'\x77\x4f\x72\x41')](_0x2b5cc9(0x1fa,'\x6d\x41\x56\x59')+_0x2b5cc9(0xc3,'\x45\x46\x75\x73')+_0x2b5cc9(0xdc,'\x55\x33\x41\x51')+_0x2b5cc9(0x171,'\x70\x6f\x69\x53')+'\x20',_0x32c966),_0x42e8ff[_0x2b5cc9(0x205,'\x4e\x49\x73\x43')]),_0x322c3f),_0x42e8ff[_0x2b5cc9(0x14f,'\x78\x59\x24\x63')])+(_0x11350b&&_0x11350b[_0x2b5cc9(0x20e,'\x75\x46\x5e\x69')]));const _0x646b01={};_0x646b01[_0x2b5cc9(0x10e,'\x26\x59\x71\x4b')]=_0x322c3f,_0x646b01[_0x2b5cc9(0x14e,'\x4c\x6e\x74\x5b')+'\x73\x74\x61\x74\x75\x73']=_0x11350b&&_0x11350b[_0x2b5cc9(0x106,'\x71\x59\x72\x76')];const _0x4082cb={};_0x4082cb[_0x2b5cc9(0x129,'\x55\x33\x41\x51')]=_0x263a73||null,_0x4082cb[_0x2b5cc9(0x134,'\x37\x30\x4a\x63')]=_0x42e8ff[_0x2b5cc9(0x15b,'\x48\x52\x4c\x53')],_0x4082cb[_0x2b5cc9(0x22f,'\x57\x54\x42\x71')]=_0x32c966,_0x4082cb[_0x2b5cc9(0x9e,'\x31\x2a\x42\x46')]=_0x646b01,_0x552d10(_0x4082cb);const _0x22091d={};return _0x22091d[_0x2b5cc9(0xca,'\x7a\x72\x63\x7a')+'\x64']=!![],_0x22091d[_0x2b5cc9(0xe8,'\x37\x30\x4a\x63')]=_0x322c3f,_0x22091d[_0x2b5cc9(0x12f,'\x75\x46\x5e\x69')]=_0x32c966,_0x22091d;}var _0x19d116=await _0x56bd5d[_0x2b5cc9(0x84,'\x4e\x37\x32\x70')]()[_0x2b5cc9(0x120,'\x43\x59\x77\x70')](function(){const _0x1ec558=_0x2b5cc9,_0x5d6bb2={};_0x5d6bb2[_0x1ec558(0x1e6,'\x31\x2a\x42\x46')]=_0x1ec558(0x10a,'\x71\x59\x72\x76')+_0x1ec558(0x238,'\x79\x69\x58\x26')+'\x69\x64';const _0x76bbcf=_0x5d6bb2;if(_0x42e8ff[_0x1ec558(0x19c,'\x78\x66\x78\x7a')]('\x58\x73\x71\x59\x49',_0x42e8ff[_0x1ec558(0x8c,'\x44\x4c\x52\x28')])){const _0x49aa28={};return _0x49aa28[_0x1ec558(0x126,'\x48\x35\x57\x47')+'\x64']=![],_0x49aa28[_0x1ec558(0x185,'\x66\x57\x64\x4d')]=kfBnqZ[_0x1ec558(0x236,'\x71\x59\x72\x76')],_0x49aa28;}else return{};}),_0x29da6c=_0x19d116[_0x2b5cc9(0x159,'\x41\x71\x2a\x37')]||_0x19d116[_0x2b5cc9(0x147,'\x31\x75\x5d\x4d')]||_0x42e8ff[_0x2b5cc9(0x199,'\x79\x69\x58\x26')](_0x42e8ff[_0x2b5cc9(0x1ec,'\x24\x4b\x4e\x47')],_0x56bd5d[_0x2b5cc9(0x130,'\x67\x38\x28\x4f')]);if(_0x42e8ff[_0x2b5cc9(0x114,'\x4e\x49\x73\x43')](_0x29da6c,_0x2b5cc9(0x240,'\x78\x4b\x76\x40')+_0x2b5cc9(0x99,'\x6a\x34\x35\x73'))){if(_0x42e8ff[_0x2b5cc9(0x95,'\x66\x57\x64\x4d')](_0x42e8ff['\x63\x57\x6f\x75\x68'],_0x42e8ff[_0x2b5cc9(0x163,'\x41\x6e\x54\x71')])){if(_0x340b78&&QDWbIJ[_0x2b5cc9(0xa5,'\x55\x33\x41\x51')](_0x49a300[_0x2b5cc9(0x13a,'\x35\x6d\x6a\x38')],_0x2b5cc9(0xd6,'\x37\x30\x4a\x63'))){const _0x4d73bb=QDWbIJ[_0x2b5cc9(0x189,'\x34\x6b\x70\x6b')](_0x353000,_0xc4449e['\x73\x63\x6f\x72\x65'])||0x941*-0x1+-0x1*-0x14bb+0xd*-0xe2;return _0x4d73bb>=0xe2f*-0x1+0x1a5d*-0x1+0x81c*0x5+0.85?-0x66b*-0x2+0x181e+0x5*-0x763:0x124a+0x1a*0x6b+-0xa*0x2ea;}const _0x57685c=_0x307867&&_0x2ae2e4[_0x2b5cc9(0x79,'\x7a\x72\x63\x7a')](_0x56cd3f[_0x2b5cc9(0x98,'\x6a\x34\x35\x73')+'\x6e\x73'])&&QDWbIJ[_0x2b5cc9(0x132,'\x37\x63\x4c\x61')](_0x3ed668[_0x2b5cc9(0x98,'\x6a\x34\x35\x73')+'\x6e\x73'][_0x2b5cc9(0xbc,'\x41\x71\x2a\x37')],-0x23ee+0x1b8f*0x1+-0x1*-0x85f);return _0x57685c?0x101e+0x672+-0x168f:-0x1bb4+-0x1782+0x3338;}else _0x42e8ff[_0x2b5cc9(0x22b,'\x37\x30\x4a\x63')](_0x1fed67,_0x32c966,_0x322c3f,![]);}console[_0x2b5cc9(0x248,'\x55\x71\x6f\x74')](_0x42e8ff[_0x2b5cc9(0x10f,'\x28\x2a\x6e\x76')](_0x42e8ff[_0x2b5cc9(0x125,'\x4e\x49\x73\x43')](_0x42e8ff[_0x2b5cc9(0xb6,'\x48\x52\x4c\x53')]('\x5b\x48\x75\x62\x52\x65\x76\x69'+_0x2b5cc9(0x1c3,'\x48\x35\x57\x47')+_0x2b5cc9(0x178,'\x41\x71\x2a\x37')+_0x2b5cc9(0x117,'\x6a\x34\x35\x73')+_0x2b5cc9(0x10c,'\x31\x6f\x24\x54'),_0x32c966),'\x3a\x20'),_0x29da6c));const _0x34e9bc={};_0x34e9bc[_0x2b5cc9(0x1de,'\x66\x43\x25\x56')]=_0x322c3f,_0x34e9bc[_0x2b5cc9(0x203,'\x75\x46\x5e\x69')]=_0x29da6c,_0x42e8ff[_0x2b5cc9(0x1eb,'\x41\x71\x2a\x37')](_0x552d10,{'\x72\x75\x6e\x5f\x69\x64':_0x42e8ff[_0x2b5cc9(0x16f,'\x75\x46\x5e\x69')](_0x263a73,null),'\x61\x63\x74\x69\x6f\x6e':_0x42e8ff[_0x2b5cc9(0x20f,'\x59\x54\x58\x5d')],'\x61\x73\x73\x65\x74\x5f\x69\x64':_0x32c966,'\x65\x78\x74\x72\x61':_0x34e9bc});const _0x1cc790={};return _0x1cc790['\x73\x75\x62\x6d\x69\x74\x74\x65'+'\x64']=![],_0x1cc790[_0x2b5cc9(0xd5,'\x4e\x37\x32\x70')]=_0x29da6c,_0x1cc790[_0x2b5cc9(0x1bd,'\x70\x6f\x69\x53')]=_0x322c3f,_0x1cc790;}catch(_0x51e2ed){var _0x5b9641=_0x42e8ff[_0x2b5cc9(0xc7,'\x36\x56\x5b\x62')](_0x51e2ed[_0x2b5cc9(0x110,'\x46\x59\x65\x69')],'\x41\x62\x6f\x72\x74\x45\x72\x72'+'\x6f\x72')?_0x2b5cc9(0xbe,'\x57\x54\x42\x71'):_0x2b5cc9(0x1f7,'\x39\x5b\x56\x42')+'\x72\x6f\x72';console[_0x2b5cc9(0x243,'\x30\x64\x4e\x54')](_0x42e8ff['\x45\x49\x51\x75\x76'](_0x42e8ff[_0x2b5cc9(0x7c,'\x43\x59\x77\x70')](_0x42e8ff[_0x2b5cc9(0xe9,'\x55\x33\x41\x51')](_0x42e8ff[_0x2b5cc9(0x90,'\x77\x4f\x72\x41')],_0x5b9641),_0x2b5cc9(0xde,'\x4e\x37\x32\x70')),_0x51e2ed[_0x2b5cc9(0x136,'\x78\x59\x24\x63')]));const _0x36a42d={};_0x36a42d[_0x2b5cc9(0x1bd,'\x70\x6f\x69\x53')]=_0x322c3f,_0x36a42d[_0x2b5cc9(0x1f9,'\x31\x75\x5d\x4d')]=_0x5b9641,_0x36a42d[_0x2b5cc9(0x155,'\x57\x54\x42\x71')]=_0x51e2ed[_0x2b5cc9(0xd3,'\x31\x6f\x24\x54')];const _0x5ee47c={};_0x5ee47c[_0x2b5cc9(0x129,'\x55\x33\x41\x51')]=_0x263a73||null,_0x5ee47c['\x61\x63\x74\x69\x6f\x6e']='\x68\x75\x62\x5f\x72\x65\x76\x69'+_0x2b5cc9(0x104,'\x46\x59\x65\x69')+'\x64',_0x5ee47c[_0x2b5cc9(0x190,'\x45\x46\x75\x73')]=_0x32c966,_0x5ee47c[_0x2b5cc9(0x153,'\x4e\x37\x32\x70')]=_0x36a42d,_0x42e8ff[_0x2b5cc9(0x14b,'\x45\x46\x75\x73')](_0x552d10,_0x5ee47c);const _0x1ae88d={};return _0x1ae88d[_0x2b5cc9(0x1b4,'\x40\x43\x4e\x4b')+'\x64']=![],_0x1ae88d[_0x2b5cc9(0x179,'\x4e\x49\x73\x43')]=_0x5b9641,_0x1ae88d[_0x2b5cc9(0x122,'\x39\x5b\x56\x42')]=_0x51e2ed[_0x2b5cc9(0x1d6,'\x45\x46\x75\x73')],_0x1ae88d;}}const _0x2a2063={};_0x2a2063[_0x407c27(0x1cd,'\x55\x33\x41\x51')+_0x407c27(0x1a6,'\x4e\x49\x73\x43')]=_0x3459d1,module[_0x407c27(0x233,'\x78\x59\x24\x63')]=_0x2a2063;
|
|
1
|
+
// Hub Asset Review: submit usage-verified reviews after solidify.
|
|
2
|
+
//
|
|
3
|
+
// When an evolution cycle reuses a Hub asset (source_type = 'reused' or 'reference'),
|
|
4
|
+
// we submit a review to POST /a2a/assets/:assetId/reviews after solidify completes.
|
|
5
|
+
// Rating is derived from outcome: success -> 4-5, failure -> 1-2.
|
|
6
|
+
// Reviews are non-blocking; errors never affect the solidify result.
|
|
7
|
+
// Duplicate prevention: a local file tracks reviewed assetIds to avoid re-reviewing.
|
|
8
|
+
|
|
9
|
+
const fs = require('fs');
|
|
10
|
+
const path = require('path');
|
|
11
|
+
const { getNodeId, getHubNodeSecret } = require('./a2aProtocol');
|
|
12
|
+
const { hubFetch } = require('./hubFetch');
|
|
13
|
+
const { logAssetCall } = require('./assetCallLog');
|
|
14
|
+
|
|
15
|
+
const REVIEW_HISTORY_FILE = path.join(
|
|
16
|
+
require('./paths').getEvolutionDir(),
|
|
17
|
+
'hub_review_history.json'
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
const REVIEW_HISTORY_MAX_ENTRIES = 500;
|
|
21
|
+
|
|
22
|
+
function _loadReviewHistory() {
|
|
23
|
+
try {
|
|
24
|
+
if (!fs.existsSync(REVIEW_HISTORY_FILE)) return {};
|
|
25
|
+
const raw = fs.readFileSync(REVIEW_HISTORY_FILE, 'utf8');
|
|
26
|
+
if (!raw.trim()) return {};
|
|
27
|
+
return JSON.parse(raw);
|
|
28
|
+
} catch {
|
|
29
|
+
return {};
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function _saveReviewHistory(history) {
|
|
34
|
+
try {
|
|
35
|
+
const dir = path.dirname(REVIEW_HISTORY_FILE);
|
|
36
|
+
if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
|
|
37
|
+
const keys = Object.keys(history);
|
|
38
|
+
if (keys.length > REVIEW_HISTORY_MAX_ENTRIES) {
|
|
39
|
+
const sorted = keys
|
|
40
|
+
.map(k => ({ k, t: history[k].at || 0 }))
|
|
41
|
+
.sort((a, b) => a.t - b.t);
|
|
42
|
+
const toRemove = sorted.slice(0, keys.length - REVIEW_HISTORY_MAX_ENTRIES);
|
|
43
|
+
for (const entry of toRemove) delete history[entry.k];
|
|
44
|
+
}
|
|
45
|
+
const tmp = REVIEW_HISTORY_FILE + '.tmp';
|
|
46
|
+
fs.writeFileSync(tmp, JSON.stringify(history, null, 2) + '\n', 'utf8');
|
|
47
|
+
fs.renameSync(tmp, REVIEW_HISTORY_FILE);
|
|
48
|
+
} catch {}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function _alreadyReviewed(assetId) {
|
|
52
|
+
const history = _loadReviewHistory();
|
|
53
|
+
return !!history[assetId];
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function _markReviewed(assetId, rating, success) {
|
|
57
|
+
const history = _loadReviewHistory();
|
|
58
|
+
history[assetId] = { at: Date.now(), rating, success };
|
|
59
|
+
_saveReviewHistory(history);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function _deriveRating(outcome, constraintCheck) {
|
|
63
|
+
if (outcome && outcome.status === 'success') {
|
|
64
|
+
const score = Number(outcome.score) || 0;
|
|
65
|
+
return score >= 0.85 ? 5 : 4;
|
|
66
|
+
}
|
|
67
|
+
const hasConstraintViolation =
|
|
68
|
+
constraintCheck &&
|
|
69
|
+
Array.isArray(constraintCheck.violations) &&
|
|
70
|
+
constraintCheck.violations.length > 0;
|
|
71
|
+
return hasConstraintViolation ? 1 : 2;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
function _buildReviewContent({ outcome, gene, signals, blast, sourceType }) {
|
|
75
|
+
const parts = [];
|
|
76
|
+
const status = outcome && outcome.status ? outcome.status : 'unknown';
|
|
77
|
+
const score = outcome && Number.isFinite(Number(outcome.score))
|
|
78
|
+
? Number(outcome.score).toFixed(2) : '?';
|
|
79
|
+
|
|
80
|
+
parts.push('Outcome: ' + status + ' (score: ' + score + ')');
|
|
81
|
+
parts.push('Reuse mode: ' + (sourceType || 'unknown'));
|
|
82
|
+
|
|
83
|
+
if (gene && gene.id) {
|
|
84
|
+
parts.push('Gene: ' + gene.id + ' (' + (gene.category || 'unknown') + ')');
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (Array.isArray(signals) && signals.length > 0) {
|
|
88
|
+
parts.push('Signals: ' + signals.slice(0, 6).join(', '));
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
if (blast) {
|
|
92
|
+
parts.push('Blast radius: ' + (blast.files || 0) + ' file(s), ' + (blast.lines || 0) + ' line(s)');
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
if (status === 'success') {
|
|
96
|
+
parts.push('The fetched asset was successfully applied and solidified.');
|
|
97
|
+
} else {
|
|
98
|
+
parts.push('The fetched asset did not lead to a successful evolution cycle.');
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
return parts.join('\n').slice(0, 2000);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
function getHubUrl() {
|
|
105
|
+
return (process.env.A2A_HUB_URL || '').replace(/\/+$/, '');
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
async function submitHubReview({
|
|
109
|
+
reusedAssetId,
|
|
110
|
+
sourceType,
|
|
111
|
+
outcome,
|
|
112
|
+
gene,
|
|
113
|
+
signals,
|
|
114
|
+
blast,
|
|
115
|
+
constraintCheck,
|
|
116
|
+
runId,
|
|
117
|
+
}) {
|
|
118
|
+
var hubUrl = getHubUrl();
|
|
119
|
+
if (!hubUrl) return { submitted: false, reason: 'no_hub_url' };
|
|
120
|
+
|
|
121
|
+
if (!reusedAssetId || typeof reusedAssetId !== 'string') {
|
|
122
|
+
return { submitted: false, reason: 'no_reused_asset_id' };
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
if (sourceType !== 'reused' && sourceType !== 'reference') {
|
|
126
|
+
return { submitted: false, reason: 'not_hub_sourced' };
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
if (_alreadyReviewed(reusedAssetId)) {
|
|
130
|
+
return { submitted: false, reason: 'already_reviewed' };
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
var rating = _deriveRating(outcome, constraintCheck);
|
|
134
|
+
var content = _buildReviewContent({ outcome, gene, signals, blast, sourceType });
|
|
135
|
+
var senderId = getNodeId();
|
|
136
|
+
|
|
137
|
+
var endpoint = hubUrl + '/a2a/assets/' + encodeURIComponent(reusedAssetId) + '/reviews';
|
|
138
|
+
|
|
139
|
+
var headers = { 'Content-Type': 'application/json', 'Accept': 'application/json' };
|
|
140
|
+
var secret = getHubNodeSecret();
|
|
141
|
+
if (secret) {
|
|
142
|
+
headers['Authorization'] = 'Bearer ' + secret;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
var body = JSON.stringify({
|
|
146
|
+
sender_id: senderId,
|
|
147
|
+
rating: rating,
|
|
148
|
+
content: content,
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
try {
|
|
152
|
+
var controller = new AbortController();
|
|
153
|
+
var timer = setTimeout(function () { controller.abort('hub_review_timeout'); }, 10000);
|
|
154
|
+
|
|
155
|
+
var res = await hubFetch(endpoint, {
|
|
156
|
+
method: 'POST',
|
|
157
|
+
headers: headers,
|
|
158
|
+
body: body,
|
|
159
|
+
signal: controller.signal,
|
|
160
|
+
});
|
|
161
|
+
clearTimeout(timer);
|
|
162
|
+
|
|
163
|
+
if (res.ok) {
|
|
164
|
+
_markReviewed(reusedAssetId, rating, true);
|
|
165
|
+
console.log(
|
|
166
|
+
'[HubReview] Submitted review for ' + reusedAssetId + ': rating=' + rating + ', outcome=' + (outcome && outcome.status)
|
|
167
|
+
);
|
|
168
|
+
logAssetCall({
|
|
169
|
+
run_id: runId || null,
|
|
170
|
+
action: 'hub_review_submitted',
|
|
171
|
+
asset_id: reusedAssetId,
|
|
172
|
+
extra: { rating: rating, outcome_status: outcome && outcome.status },
|
|
173
|
+
});
|
|
174
|
+
return { submitted: true, rating: rating, asset_id: reusedAssetId };
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
var errData = await res.json().catch(function () { return {}; });
|
|
178
|
+
var errCode = errData.error || errData.code || ('http_' + res.status);
|
|
179
|
+
|
|
180
|
+
if (errCode === 'already_reviewed') {
|
|
181
|
+
_markReviewed(reusedAssetId, rating, false);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
console.log('[HubReview] Hub rejected review for ' + reusedAssetId + ': ' + errCode);
|
|
185
|
+
logAssetCall({
|
|
186
|
+
run_id: runId || null,
|
|
187
|
+
action: 'hub_review_rejected',
|
|
188
|
+
asset_id: reusedAssetId,
|
|
189
|
+
extra: { rating: rating, error: errCode },
|
|
190
|
+
});
|
|
191
|
+
return { submitted: false, reason: errCode, rating: rating };
|
|
192
|
+
} catch (err) {
|
|
193
|
+
var reason = err.name === 'AbortError' ? 'timeout' : 'fetch_error';
|
|
194
|
+
console.log('[HubReview] Failed (non-fatal, ' + reason + '): ' + err.message);
|
|
195
|
+
logAssetCall({
|
|
196
|
+
run_id: runId || null,
|
|
197
|
+
action: 'hub_review_failed',
|
|
198
|
+
asset_id: reusedAssetId,
|
|
199
|
+
extra: { rating: rating, reason: reason, error: err.message },
|
|
200
|
+
});
|
|
201
|
+
return { submitted: false, reason: reason, error: err.message };
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
module.exports = {
|
|
206
|
+
submitHubReview,
|
|
207
|
+
};
|