@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
package/src/gep/selector.js
CHANGED
|
@@ -1 +1,602 @@
|
|
|
1
|
-
const _0x28c0a0=_0x4172;(function(_0x13a59b,_0x800832){const _0x445756=_0x4172,_0x1d3bad=_0x13a59b();while(!![]){try{const _0x20412c=-parseInt(_0x445756(0x2c4,'\x53\x23\x75\x30'))/(0x1642+0xda6+0x23e7*-0x1)*(-parseInt(_0x445756(0x3d3,'\x2a\x35\x4d\x65'))/(0x2*-0xa81+-0xdbd*0x1+0x22c1*0x1))+parseInt(_0x445756(0x1ce,'\x49\x77\x74\x59'))/(-0x2*-0x7f+-0x75f*0x1+0x664)+-parseInt(_0x445756(0x184,'\x37\x6e\x48\x72'))/(-0xce9*-0x3+-0x6*0x459+-0xca1)*(-parseInt(_0x445756(0x397,'\x72\x58\x21\x45'))/(0x1c*-0xca+-0x1a17+-0x14*-0x269))+parseInt(_0x445756(0x347,'\x68\x49\x68\x68'))/(0x1d3*0x5+-0x82f+-0xea)+-parseInt(_0x445756(0xc5,'\x64\x39\x23\x5e'))/(0x2*0xe8d+-0x7*-0x461+-0x3bba)*(parseInt(_0x445756(0x140,'\x74\x47\x43\x35'))/(0x12*-0x22+0x133*-0x1e+-0x1333*-0x2))+-parseInt(_0x445756(0xdb,'\x6f\x49\x46\x37'))/(-0xc80+0x21*-0xcb+0x26b4)+-parseInt(_0x445756(0x31d,'\x53\x6d\x56\x21'))/(-0x9d*-0x37+-0x15*0x15d+-0x510*0x1);if(_0x20412c===_0x800832)break;else _0x1d3bad['push'](_0x1d3bad['shift']());}catch(_0x5e3173){_0x1d3bad['push'](_0x1d3bad['shift']());}}}(_0x5577,-0x931*-0x51+0x14afae+-0x6*0x17e5b));const _0x4f67eb=(function(){const _0x16ef03=_0x4172,_0x5a4dcf={'\x57\x4f\x49\x52\x4f':function(_0x13c931,_0x43a7d1){return _0x13c931(_0x43a7d1);},'\x71\x77\x71\x53\x65':function(_0x1a1474,_0x357d33){return _0x1a1474!==_0x357d33;},'\x4e\x76\x6f\x74\x50':_0x16ef03(0x18c,'\x70\x55\x70\x56'),'\x47\x41\x56\x71\x61':function(_0x2814ce,_0x1e49e0){return _0x2814ce===_0x1e49e0;},'\x4f\x4b\x79\x63\x53':function(_0x583715,_0x55387e){return _0x583715!==_0x55387e;},'\x68\x64\x51\x61\x79':'\x55\x59\x78\x78\x4c'};let _0x56d407=!![];return function(_0x3b61da,_0x2d0fc0){const _0x2eda7f=_0x16ef03,_0x54b2b8={'\x70\x54\x7a\x53\x44':function(_0x2c3f88,_0x572d1c){return _0x2c3f88(_0x572d1c);},'\x6e\x46\x46\x49\x55':function(_0x4b9fbf,_0x11b31f){const _0x2ee4b1=_0x4172;return _0x5a4dcf[_0x2ee4b1(0x20a,'\x67\x35\x32\x31')](_0x4b9fbf,_0x11b31f);},'\x4d\x66\x73\x49\x7a':function(_0x45507f,_0x37ad6e){return _0x45507f(_0x37ad6e);},'\x47\x7a\x4f\x74\x42':function(_0x5f526d,_0x3e0175){return _0x5f526d||_0x3e0175;},'\x6c\x66\x47\x44\x4b':function(_0x3b873b,_0x5adf73){return _0x3b873b!==_0x5adf73;}};if(_0x5a4dcf[_0x2eda7f(0x8a,'\x32\x39\x21\x5a')](_0x5a4dcf['\x68\x64\x51\x61\x79'],_0x2eda7f(0x14a,'\x55\x58\x70\x5a'))){const _0x4217bc=_0x56d407?function(){const _0xc2f160=_0x2eda7f,_0x39f408={'\x58\x4a\x41\x4f\x69':function(_0x6a3610,_0x3e9f58){const _0x63edce=_0x4172;return _0x5a4dcf[_0x63edce(0x3a5,'\x5d\x2a\x44\x44')](_0x6a3610,_0x3e9f58);}};if(_0x2d0fc0){if(_0x5a4dcf[_0xc2f160(0x219,'\x79\x5b\x47\x25')](_0xc2f160(0x10e,'\x67\x35\x32\x31'),_0x5a4dcf[_0xc2f160(0x381,'\x78\x56\x6f\x44')])){const _0x14e24c=_0x2d0fc0[_0xc2f160(0x22a,'\x28\x40\x4b\x40')](_0x3b61da,arguments);return _0x2d0fc0=null,_0x14e24c;}else{const _0x235c3f=(_0xc2f160(0x3f7,'\x28\x51\x49\x71')+'\x35\x7c\x31\x30\x7c\x37\x7c\x30'+_0xc2f160(0x3d6,'\x4a\x25\x43\x21')+'\x31')[_0xc2f160(0x15e,'\x66\x66\x44\x2a')]('\x7c');let _0x1b148e=0x3*0xa49+0x43f+-0x231a;while(!![]){switch(_0x235c3f[_0x1b148e++]){case'\x30':if(_0x4083f3['\x69\x64'])_0x5da928=_0x5da928[_0xc2f160(0xfd,'\x48\x7a\x50\x56')](_0xe7ed5f(_0x330aa3['\x69\x64']));continue;case'\x31':var _0x2ea5a7=_0x54b2b8[_0xc2f160(0xd4,'\x49\x77\x74\x59')](_0x49e061,_0x5da928);continue;case'\x32':_0x450a29[_0xc2f160(0x2f9,'\x48\x45\x65\x7a')](function(_0x254c97){const _0x39503d=_0xc2f160;_0xb47a75=_0xb47a75[_0x39503d(0x3ef,'\x28\x51\x49\x71')](_0x39f408['\x58\x4a\x41\x4f\x69'](_0xabea4e,_0x254c97));});continue;case'\x33':if(_0x54b2b8[_0xc2f160(0x2dd,'\x66\x66\x44\x2a')](_0x5da928[_0xc2f160(0x34c,'\x50\x42\x75\x41')],-0xd1*0x1d+0x4c2+0x12eb*0x1))return 0x1082+-0xcd5*-0x1+0x1d57*-0x1;continue;case'\x34':var _0x5c8b98=_0x2ad9ee(_0xb47a75);continue;case'\x35':var _0x5da928=[];continue;case'\x36':if(_0xb47a75[_0xc2f160(0x3a9,'\x78\x56\x6f\x44')]===0x123*-0x1+0x1*-0x2063+0x2186)return 0x113c+-0x6e7*-0x3+-0x1*0x25f1;continue;case'\x37':if(_0x5c0187['\x73\x75\x6d\x6d\x61\x72\x79'])_0x5da928=_0x5da928[_0xc2f160(0x21c,'\x49\x77\x74\x59')](_0x54b2b8[_0xc2f160(0x33e,'\x37\x21\x41\x31')](_0xacb008,_0x3f8d1b[_0xc2f160(0x33b,'\x26\x68\x58\x43')]));continue;case'\x38':if(_0x54b2b8[_0xc2f160(0x396,'\x28\x40\x4b\x40')](!_0x8bbf16,!_0x2a23ad)||_0x54b2b8['\x6e\x46\x46\x49\x55'](_0x2b02ed[_0xc2f160(0x1d4,'\x35\x73\x61\x31')],-0xb2b+0x39b+0x1*0x790))return 0x1*0x277+-0x1115*0x1+0xe9e;continue;case'\x39':var _0xb47a75=[];continue;case'\x31\x30':_0x400bc3[_0xc2f160(0x248,'\x43\x51\x4c\x42')](_0x27d2df[_0xc2f160(0x1c6,'\x41\x50\x6e\x72')+_0xc2f160(0xd1,'\x23\x58\x5d\x26')])&&_0x28eaf2[_0xc2f160(0x143,'\x64\x39\x23\x5e')+_0xc2f160(0x415,'\x55\x24\x4f\x57')]['\x66\x6f\x72\x45\x61\x63\x68'](function(_0x21359a){const _0x19c26d=_0xc2f160;_0x5da928=_0x5da928[_0x19c26d(0xaa,'\x63\x54\x4a\x6d')](_0x39f408[_0x19c26d(0x3d5,'\x4b\x6e\x49\x33')](_0xad7f40,_0x21359a));});continue;case'\x31\x31':return _0x437dd8(_0x5c8b98,_0x2ea5a7);}break;}}}}:function(){};return _0x56d407=![],_0x4217bc;}else return _0x54b2b8[_0x2eda7f(0xff,'\x5d\x2a\x44\x44')](_0x59b3b9,_0x2e4fdc);};}()),_0x2cfc83=_0x4f67eb(this,function(){const _0x2a81fc=_0x4172,_0x216a84={};_0x216a84[_0x2a81fc(0x249,'\x45\x45\x6f\x6d')]=_0x2a81fc(0x84,'\x67\x35\x32\x31')+_0x2a81fc(0x315,'\x64\x39\x23\x5e');const _0x1e8817=_0x216a84;return _0x2cfc83[_0x2a81fc(0x12d,'\x70\x68\x5b\x45')]()['\x73\x65\x61\x72\x63\x68'](_0x1e8817['\x5a\x6e\x64\x73\x78'])[_0x2a81fc(0x1b3,'\x70\x55\x70\x56')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x2a81fc(0x3dd,'\x36\x47\x70\x36')](_0x2cfc83)[_0x2a81fc(0x3ab,'\x57\x49\x5b\x68')](_0x1e8817[_0x2a81fc(0x21a,'\x37\x6e\x48\x72')]);});_0x2cfc83();const {scoreTagOverlap:_0x383eee,expandSignals:_0x6701de}=require(_0x28c0a0(0x1ea,'\x4b\x6e\x49\x33')+_0x28c0a0(0x245,'\x72\x58\x21\x45')+'\x73'),{captureEnvFingerprint:_0xed4a88}=require(_0x28c0a0(0x1a7,'\x36\x47\x70\x36')+_0x28c0a0(0x294,'\x79\x58\x67\x50')),{getEpigeneticBoost:_0x173d56,isEpigeneticallySuppressed:_0x1388fe}=require(_0x28c0a0(0x279,'\x50\x42\x75\x41')+'\x65\x74\x69\x63\x73'),_0x129080=parseFloat(process.env.SEMANTIC_MATCH_WEIGHT||_0x28c0a0(0x225,'\x34\x5e\x30\x5e'))||-0xffb+-0x2*-0x25f+-0xb3d*-0x1+0.4,_0x330684=new Set(['\x74\x68\x65',_0x28c0a0(0x350,'\x43\x51\x4c\x42'),_0x28c0a0(0x183,'\x47\x44\x78\x4a'),_0x28c0a0(0xd0,'\x35\x73\x61\x31'),_0x28c0a0(0x2dc,'\x79\x5b\x47\x25'),_0x28c0a0(0x22e,'\x55\x45\x5b\x75'),_0x28c0a0(0x120,'\x79\x5b\x47\x25'),_0x28c0a0(0x2de,'\x79\x58\x67\x50'),_0x28c0a0(0x255,'\x28\x40\x4b\x40'),_0x28c0a0(0x306,'\x53\x23\x75\x30'),_0x28c0a0(0x105,'\x35\x73\x61\x31'),'\x68\x61\x73',_0x28c0a0(0x13e,'\x50\x42\x75\x41'),_0x28c0a0(0x31c,'\x58\x59\x74\x74'),_0x28c0a0(0x3ed,'\x35\x73\x61\x31'),_0x28c0a0(0x2d9,'\x36\x47\x70\x36'),'\x63\x61\x6e',_0x28c0a0(0x2f0,'\x23\x58\x5d\x26'),_0x28c0a0(0x291,'\x26\x68\x58\x43'),_0x28c0a0(0x25c,'\x6f\x49\x46\x37'),_0x28c0a0(0x352,'\x2a\x35\x4d\x65'),_0x28c0a0(0x2ba,'\x49\x77\x74\x59'),_0x28c0a0(0x419,'\x64\x39\x23\x5e'),_0x28c0a0(0x311,'\x71\x45\x55\x66'),_0x28c0a0(0x81,'\x45\x45\x6f\x6d'),_0x28c0a0(0x102,'\x2a\x35\x4d\x65')]);function _0x4172(_0x4f474d,_0x242c0c){_0x4f474d=_0x4f474d-(0x2e7*0x3+-0xa2b+0xb*0x2d);const _0x28fda7=_0x5577();let _0x4027bd=_0x28fda7[_0x4f474d];if(_0x4172['\x46\x41\x55\x74\x59\x71']===undefined){var _0x1b0d69=function(_0x25631c){const _0x183a0a='\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 _0x3403c0='',_0x1767c8='',_0x2eb080=_0x3403c0+_0x1b0d69,_0x15f1b0=(''+function(){return 0x143c+0x185*-0x1+-0x3*0x63d;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0xf22+-0x1f33+-0x6*-0x7b9);for(let _0xc2a0e0=-0x17d6+0x2139+-0x321*0x3,_0x5134b9,_0x2f51d9,_0x2e06f1=0x1795+-0x3d*-0x59+0xb6*-0x3f;_0x2f51d9=_0x25631c['\x63\x68\x61\x72\x41\x74'](_0x2e06f1++);~_0x2f51d9&&(_0x5134b9=_0xc2a0e0%(0x3*0xbb1+-0xc87*-0x3+-0x48a4)?_0x5134b9*(0x21ac+-0x9b5+-0x17b7)+_0x2f51d9:_0x2f51d9,_0xc2a0e0++%(-0x1e4+0x148c+-0x12a4))?_0x3403c0+=_0x15f1b0||_0x2eb080['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2e06f1+(0x20f3+-0x121a+-0xecf))-(-0x223f+-0xd7*-0x11+-0x18a*-0xd)!==0x1845+0x75b+0x7e8*-0x4?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1*0xf26+-0x1*0xdbd+-0x6a&_0x5134b9>>(-(0x20d4+-0x610*-0x5+-0x3f22)*_0xc2a0e0&0xde5*-0x2+-0x1010+0x2be0)):_0xc2a0e0:0xe4*-0x2b+0x2ee+0x235e){_0x2f51d9=_0x183a0a['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2f51d9);}for(let _0xe997a3=-0x6*0x86+-0x1d9c+0x20c0*0x1,_0x56800e=_0x3403c0['\x6c\x65\x6e\x67\x74\x68'];_0xe997a3<_0x56800e;_0xe997a3++){_0x1767c8+='\x25'+('\x30\x30'+_0x3403c0['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xe997a3)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x8e1*-0x3+0xe33*0x1+-0xa*-0x140))['\x73\x6c\x69\x63\x65'](-(0x6be+0xd3a+-0x13f6));}return decodeURIComponent(_0x1767c8);};const _0x5012d3=function(_0x21ae3c,_0x4d6c24){let _0x561f57=[],_0x302dc3=-0x227b+-0x1feb+-0x2133*-0x2,_0x356187,_0x266ca3='';_0x21ae3c=_0x1b0d69(_0x21ae3c);let _0x52d0c5;for(_0x52d0c5=0xd67+-0x672+-0x6f5*0x1;_0x52d0c5<0xcff+-0x1*-0xdc9+0x32*-0x84;_0x52d0c5++){_0x561f57[_0x52d0c5]=_0x52d0c5;}for(_0x52d0c5=-0x35d*0x9+-0x5*0x11c+0x23d1;_0x52d0c5<-0x29*-0x25+-0xc6f+0x782;_0x52d0c5++){_0x302dc3=(_0x302dc3+_0x561f57[_0x52d0c5]+_0x4d6c24['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x52d0c5%_0x4d6c24['\x6c\x65\x6e\x67\x74\x68']))%(0x24c3+-0x77*0x11+-0xdee*0x2),_0x356187=_0x561f57[_0x52d0c5],_0x561f57[_0x52d0c5]=_0x561f57[_0x302dc3],_0x561f57[_0x302dc3]=_0x356187;}_0x52d0c5=-0x255*0xc+0xd*-0x7+0x5*0x5ab,_0x302dc3=-0x290+-0x1*-0x1966+-0x16d6;for(let _0x392f2b=0x971+-0x85f*-0x1+-0xf*0x130;_0x392f2b<_0x21ae3c['\x6c\x65\x6e\x67\x74\x68'];_0x392f2b++){_0x52d0c5=(_0x52d0c5+(0x11*-0x1c7+0x3b*-0x5f+0x341d))%(-0x1*0x1723+0x3*0xc83+-0xd66),_0x302dc3=(_0x302dc3+_0x561f57[_0x52d0c5])%(-0x50b*0x2+-0x11e+0xc34),_0x356187=_0x561f57[_0x52d0c5],_0x561f57[_0x52d0c5]=_0x561f57[_0x302dc3],_0x561f57[_0x302dc3]=_0x356187,_0x266ca3+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x21ae3c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x392f2b)^_0x561f57[(_0x561f57[_0x52d0c5]+_0x561f57[_0x302dc3])%(-0xc5+-0x15a8+0x176d)]);}return _0x266ca3;};_0x4172['\x57\x59\x4e\x46\x6d\x53']=_0x5012d3,_0x4172['\x50\x43\x50\x68\x55\x57']={},_0x4172['\x46\x41\x55\x74\x59\x71']=!![];}const _0x4c5167=_0x28fda7[-0x1465+0xf3*0x15+0x76*0x1],_0x4b05e1=_0x4f474d+_0x4c5167,_0x3986cd=_0x4172['\x50\x43\x50\x68\x55\x57'][_0x4b05e1];if(!_0x3986cd){if(_0x4172['\x6a\x68\x75\x49\x6b\x59']===undefined){const _0x3b89ac=function(_0xc51804){this['\x4e\x4c\x77\x78\x74\x43']=_0xc51804,this['\x4c\x6b\x78\x74\x56\x61']=[0x20ad+0x118c+0x3238*-0x1,0x2f*0x2b+-0x26c5+0x4*0x7b8,-0x1c45+-0x1315+-0x1a2*-0x1d],this['\x62\x4e\x44\x74\x78\x45']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x63\x58\x65\x5a\x68\x67']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x69\x49\x50\x52\x75\x54']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x3b89ac['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4d\x78\x48\x75\x4a\x44']=function(){const _0xac6b2f=new RegExp(this['\x63\x58\x65\x5a\x68\x67']+this['\x69\x49\x50\x52\x75\x54']),_0x380c1a=_0xac6b2f['\x74\x65\x73\x74'](this['\x62\x4e\x44\x74\x78\x45']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x4c\x6b\x78\x74\x56\x61'][0x1e19+-0x13c1+-0xa57]:--this['\x4c\x6b\x78\x74\x56\x61'][0x22e3+0x1*0x15a9+-0xb*0x524];return this['\x7a\x4d\x53\x57\x78\x59'](_0x380c1a);},_0x3b89ac['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x7a\x4d\x53\x57\x78\x59']=function(_0x5391ff){if(!Boolean(~_0x5391ff))return _0x5391ff;return this['\x69\x48\x77\x6a\x6b\x71'](this['\x4e\x4c\x77\x78\x74\x43']);},_0x3b89ac['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x69\x48\x77\x6a\x6b\x71']=function(_0xb246c){for(let _0x411a35=0x2e1*0xd+-0xd49+-0x1824,_0x138c6b=this['\x4c\x6b\x78\x74\x56\x61']['\x6c\x65\x6e\x67\x74\x68'];_0x411a35<_0x138c6b;_0x411a35++){this['\x4c\x6b\x78\x74\x56\x61']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x138c6b=this['\x4c\x6b\x78\x74\x56\x61']['\x6c\x65\x6e\x67\x74\x68'];}return _0xb246c(this['\x4c\x6b\x78\x74\x56\x61'][-0x107*0x2+0x207a+-0x1e6c]);},(''+function(){return-0x8f*-0xb+-0x2040+0x1*0x1a1b;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x1190+-0x8*-0x15d+-0x1c77)&&new _0x3b89ac(_0x4172)['\x4d\x78\x48\x75\x4a\x44'](),_0x4172['\x6a\x68\x75\x49\x6b\x59']=!![];}_0x4027bd=_0x4172['\x57\x59\x4e\x46\x6d\x53'](_0x4027bd,_0x242c0c),_0x4172['\x50\x43\x50\x68\x55\x57'][_0x4b05e1]=_0x4027bd;}else _0x4027bd=_0x3986cd;return _0x4027bd;}function _0x46fe03(_0x450cee){const _0x4b591f=_0x28c0a0,_0x3f03ad={'\x71\x62\x4c\x6e\x42':function(_0x14d2ac,_0x2f25a4){return _0x14d2ac(_0x2f25a4);},'\x51\x4d\x55\x6e\x66':function(_0x4b62d9,_0x55afbc){return _0x4b62d9===_0x55afbc;},'\x4e\x61\x4e\x71\x70':'\x58\x4e\x63\x41\x4e','\x62\x47\x54\x41\x69':function(_0x39d383,_0x3231b0){return _0x39d383>=_0x3231b0;},'\x6b\x74\x6f\x69\x6c':function(_0x8bfcdd,_0x50fdf8){return _0x8bfcdd(_0x50fdf8);},'\x5a\x67\x45\x63\x76':function(_0x94d3a5,_0x2f203c){return _0x94d3a5||_0x2f203c;}};return _0x3f03ad[_0x4b591f(0x2e0,'\x47\x44\x78\x4a')](String,_0x3f03ad[_0x4b591f(0x156,'\x41\x50\x6e\x72')](_0x450cee,''))[_0x4b591f(0x333,'\x79\x58\x67\x50')+_0x4b591f(0x24c,'\x36\x47\x70\x36')]()[_0x4b591f(0x138,'\x55\x24\x4f\x57')](/[^\p{L}\p{N}_\-]+/gu,'\x20')[_0x4b591f(0x423,'\x53\x23\x75\x30')](/\s+/)[_0x4b591f(0x395,'\x28\x51\x49\x71')](function(_0x75f442){const _0x107e96=_0x4b591f,_0x4f11e5={'\x55\x4d\x74\x42\x51':function(_0x103302,_0x3ca56e){const _0x3dd33e=_0x4172;return _0x3f03ad[_0x3dd33e(0x2b2,'\x64\x39\x23\x5e')](_0x103302,_0x3ca56e);}};if(_0x3f03ad[_0x107e96(0x1f4,'\x50\x42\x75\x41')](_0x3f03ad[_0x107e96(0x172,'\x32\x39\x21\x5a')],_0x3f03ad[_0x107e96(0x3da,'\x58\x31\x42\x4b')]))return _0x3f03ad[_0x107e96(0x1b7,'\x32\x39\x21\x5a')](_0x75f442[_0x107e96(0x2a6,'\x64\x6b\x39\x63')],-0xb*-0x2b6+-0x28e*-0xf+-0x4422)&&!_0x330684[_0x107e96(0x254,'\x54\x37\x53\x45')](_0x75f442);else _0x260ae4=_0xbe6dc3[_0x107e96(0x37e,'\x52\x54\x4c\x4d')](_0x4f11e5[_0x107e96(0x131,'\x23\x58\x5d\x26')](_0x4baf94,_0x157e96));});}function _0x33b935(_0x1d7f4c){const _0x34edaf=_0x28c0a0,_0x3d6de7={};_0x3d6de7[_0x34edaf(0x3d4,'\x35\x73\x61\x31')]=function(_0x55b076,_0x4c3804){return _0x55b076<_0x4c3804;};const _0x3749e6=_0x3d6de7;var _0x6f9899={};for(var _0x5d6a15=-0x736+-0x3f+-0x53*-0x17;_0x3749e6[_0x34edaf(0x27a,'\x48\x45\x65\x7a')](_0x5d6a15,_0x1d7f4c[_0x34edaf(0x13d,'\x66\x57\x41\x7a')]);_0x5d6a15++){_0x6f9899[_0x1d7f4c[_0x5d6a15]]=(_0x6f9899[_0x1d7f4c[_0x5d6a15]]||-0xa21*0x2+-0x14dc+-0x26*-0x115)+(-0x1c+0x1af0+-0x1ad3);}return _0x6f9899;}function _0x1b24de(_0x322c65,_0x8e483b){const _0x5a1be7=_0x28c0a0,_0x458e0f={};_0x458e0f[_0x5a1be7(0x1ee,'\x53\x6d\x56\x21')]=function(_0x26771b,_0x333dfc){return _0x26771b!==_0x333dfc;},_0x458e0f[_0x5a1be7(0x3df,'\x49\x77\x74\x59')]='\x30\x7c\x34\x7c\x33\x7c\x31\x7c'+'\x32',_0x458e0f[_0x5a1be7(0xc9,'\x58\x59\x74\x74')]=function(_0x1ff229,_0x296f47){return _0x1ff229*_0x296f47;},_0x458e0f[_0x5a1be7(0x308,'\x4a\x25\x43\x21')]=function(_0x1995d6,_0x4fabf1){return _0x1995d6*_0x4fabf1;},_0x458e0f[_0x5a1be7(0x281,'\x35\x73\x61\x31')]=function(_0x3219b4,_0x43b1bf){return _0x3219b4===_0x43b1bf;},_0x458e0f['\x46\x79\x71\x6b\x45']=function(_0x536581,_0x4669f9){return _0x536581/_0x4669f9;};const _0xfa92fc=_0x458e0f;var _0x2badf3=new Set(Object[_0x5a1be7(0x159,'\x28\x51\x49\x71')](_0x322c65)[_0x5a1be7(0x188,'\x64\x6b\x39\x63')](Object[_0x5a1be7(0x1cf,'\x48\x45\x65\x7a')](_0x8e483b))),_0x18ad7e=-0x1dc3+-0xbed+-0x5c*-0x74,_0x166076=0x723+0x1173+-0x1896,_0x5026c4=-0x1*0x2201+-0xb*-0xe5+0x182a;_0x2badf3[_0x5a1be7(0x7e,'\x57\x49\x5b\x68')](function(_0x3ab298){const _0x3027eb=_0x5a1be7;if(_0xfa92fc[_0x3027eb(0x36b,'\x36\x47\x70\x36')](_0x3027eb(0x150,'\x63\x54\x4a\x6d'),_0x3027eb(0x117,'\x47\x44\x78\x4a'))){const _0x18482a=_0x234f9a[_0x3027eb(0x35b,'\x28\x40\x4b\x40')](_0x25e67c[_0x3027eb(0xd9,'\x6a\x28\x5a\x40')])?_0x474ddf['\x74\x72\x69\x67\x67\x65\x72']:[],_0x2260c3=_0x18482a[_0x3027eb(0xf5,'\x44\x7a\x62\x79')]((_0x3911a9,_0xceaec2)=>_0x4470ec(_0xceaec2,_0x1b56d4)?_0x3911a9+(-0x65*0x2a+-0x1e6a+0x2efd):_0x3911a9,0x75f+0x55f+-0xcbe),_0x864bca={};return _0x864bca[_0x3027eb(0x15b,'\x53\x6d\x56\x21')]=_0x422cd8,_0x864bca[_0x3027eb(0x25a,'\x70\x55\x70\x56')]=_0x2260c3,_0x864bca;}else{const _0x52d94d=_0xfa92fc[_0x3027eb(0x149,'\x55\x45\x5b\x75')]['\x73\x70\x6c\x69\x74']('\x7c');let _0x140127=0x14*-0x16d+0x1d1b+-0x97;while(!![]){switch(_0x52d94d[_0x140127++]){case'\x30':var _0x318f19=_0x322c65[_0x3ab298]||0x1144+0xbda*-0x1+0x7e*-0xb;continue;case'\x31':_0x166076+=_0xfa92fc[_0x3027eb(0x109,'\x68\x49\x68\x68')](_0x318f19,_0x318f19);continue;case'\x32':_0x5026c4+=_0xfa92fc[_0x3027eb(0x372,'\x58\x31\x42\x4b')](_0x40d3dc,_0x40d3dc);continue;case'\x33':_0x18ad7e+=_0x318f19*_0x40d3dc;continue;case'\x34':var _0x40d3dc=_0x8e483b[_0x3ab298]||0x65b+-0x1*0x2222+-0x1*-0x1bc7;continue;}break;}}});if(_0x166076===0xe49+-0x1d9e+0x311*0x5||_0xfa92fc[_0x5a1be7(0x32a,'\x23\x58\x5d\x26')](_0x5026c4,0x1f27+-0x1f*-0x3b+-0x264c))return 0xe09*0x1+0x234+-0x103d;return _0xfa92fc[_0x5a1be7(0x380,'\x70\x55\x70\x56')](_0x18ad7e,_0xfa92fc[_0x5a1be7(0x2e4,'\x5d\x2a\x44\x44')](Math[_0x5a1be7(0x20f,'\x34\x5e\x30\x5e')](_0x166076),Math[_0x5a1be7(0x3db,'\x50\x42\x75\x41')](_0x5026c4)));}function _0x23a12a(_0x554626,_0x563708){const _0x43773f=_0x28c0a0,_0x2d8ec1={'\x68\x53\x4b\x76\x4d':function(_0xb411ab,_0x43b42c){return _0xb411ab!==_0x43b42c;},'\x72\x77\x4e\x4e\x72':function(_0xb5c446,_0x33bfeb){return _0xb5c446(_0x33bfeb);},'\x56\x59\x50\x75\x75':function(_0x4fda14,_0x58db1d){return _0x4fda14===_0x58db1d;},'\x7a\x50\x46\x54\x51':function(_0xe09ecd,_0x3641c3){return _0xe09ecd===_0x3641c3;},'\x61\x67\x50\x42\x6a':function(_0x4b0b6b,_0x5bbbf5){return _0x4b0b6b(_0x5bbbf5);},'\x45\x57\x74\x64\x69':function(_0xae293e,_0x20c98b){return _0xae293e(_0x20c98b);},'\x46\x4d\x76\x58\x6b':function(_0x4bd322,_0x1091ff,_0x1ad46a){return _0x4bd322(_0x1091ff,_0x1ad46a);}};if(!_0x554626||!_0x563708||_0x2d8ec1[_0x43773f(0x3e0,'\x70\x68\x5b\x45')](_0x563708[_0x43773f(0xb9,'\x55\x24\x4f\x57')],-0x5*0x695+0x1*-0x11fb+0x32e4))return-0xaa+-0x1eca+0x1f74;var _0x2a468d=[];_0x563708[_0x43773f(0x2f9,'\x48\x45\x65\x7a')](function(_0x1fde36){const _0x5ddcde=_0x43773f;_0x2d8ec1[_0x5ddcde(0x40d,'\x63\x54\x4a\x6d')](_0x5ddcde(0x3a2,'\x78\x56\x6f\x44'),_0x5ddcde(0x231,'\x47\x44\x78\x4a'))?_0x2a468d=_0x2a468d[_0x5ddcde(0x21c,'\x49\x77\x74\x59')](_0x2d8ec1['\x72\x77\x4e\x4e\x72'](_0x46fe03,_0x1fde36)):_0x3b369a=_0x39e767[_0x5ddcde(0x3cd,'\x57\x49\x5b\x68')](_0x13d7a1(_0x5059c8));});if(_0x2d8ec1[_0x43773f(0xfc,'\x41\x50\x6e\x72')](_0x2a468d[_0x43773f(0x1d1,'\x43\x51\x4c\x42')],0x238d+-0x1bd6+-0x7b7))return 0x14f4+-0x207f+0xb8b;var _0x81be0=[];Array[_0x43773f(0xf0,'\x67\x35\x32\x31')](_0x554626[_0x43773f(0x2ec,'\x52\x54\x4c\x4d')+_0x43773f(0x1be,'\x52\x54\x4c\x4d')])&&_0x554626[_0x43773f(0x251,'\x48\x45\x65\x7a')+_0x43773f(0x32d,'\x64\x6b\x39\x63')][_0x43773f(0xec,'\x37\x21\x41\x31')](function(_0x35789d){const _0x1b5249=_0x43773f;_0x81be0=_0x81be0[_0x1b5249(0x2d0,'\x74\x47\x43\x35')](_0x2d8ec1['\x72\x77\x4e\x4e\x72'](_0x46fe03,_0x35789d));});if(_0x554626['\x73\x75\x6d\x6d\x61\x72\x79'])_0x81be0=_0x81be0[_0x43773f(0x3d0,'\x68\x49\x68\x68')](_0x2d8ec1['\x61\x67\x50\x42\x6a'](_0x46fe03,_0x554626['\x73\x75\x6d\x6d\x61\x72\x79']));if(_0x554626['\x69\x64'])_0x81be0=_0x81be0[_0x43773f(0x312,'\x35\x73\x61\x31')](_0x46fe03(_0x554626['\x69\x64']));if(_0x2d8ec1[_0x43773f(0x1ba,'\x41\x50\x6e\x72')](_0x81be0['\x6c\x65\x6e\x67\x74\x68'],-0x9ef*-0x1+0x1580+-0x1f6f))return-0x100*0xb+0x115a*0x2+-0x17b4;var _0xf580a7=_0x2d8ec1[_0x43773f(0x19d,'\x4b\x6e\x49\x33')](_0x33b935,_0x2a468d),_0x200a13=_0x33b935(_0x81be0);return _0x2d8ec1[_0x43773f(0x17e,'\x63\x54\x4a\x6d')](_0x1b24de,_0xf580a7,_0x200a13);}const _0x2699b7=-0xe81+0x1c3a+-0x9b9;function _0xe22016(_0x160de4,_0x3aa36c){const _0x2640e9=_0x28c0a0,_0x45309f={'\x64\x6b\x4f\x4a\x63':_0x2640e9(0x362,'\x55\x24\x4f\x57')+'\x2b\x29\x2b\x24','\x4d\x57\x46\x4c\x55':function(_0x8bf4c6,_0x3ba245){return _0x8bf4c6||_0x3ba245;},'\x4b\x52\x6a\x50\x54':function(_0x414d3e,_0x5d4eb1){return _0x414d3e===_0x5d4eb1;},'\x73\x67\x4d\x59\x55':function(_0x158760,_0xa22ac4){return _0x158760(_0xa22ac4);},'\x6b\x72\x63\x67\x44':function(_0x4c7442,_0x441446){return _0x4c7442>_0x441446;},'\x53\x51\x46\x72\x46':function(_0x23719e,_0xdf3d5f){return _0x23719e+_0xdf3d5f;},'\x66\x4d\x62\x4c\x78':_0x2640e9(0x40a,'\x66\x57\x41\x7a')};if(_0x45309f['\x4d\x57\x46\x4c\x55'](!_0x160de4,!_0x3aa36c)||_0x45309f['\x4b\x52\x6a\x50\x54'](_0x3aa36c[_0x2640e9(0x3a7,'\x70\x55\x70\x56')],-0x7b*-0x21+-0x13e3*-0x1+0x19*-0x16e))return![];const _0x5aa284=_0x45309f[_0x2640e9(0x8d,'\x74\x47\x43\x35')](String,_0x160de4),_0x505f03=_0x3aa36c[_0x2640e9(0x2d6,'\x58\x59\x74\x74')](_0x4b4e98=>String(_0x4b4e98)),_0x38838e=_0x5aa284[_0x2640e9(0x1e2,'\x2a\x35\x4d\x65')]>=0x1e3f+0x1ff9+-0x2*0x1f1b&&_0x5aa284[_0x2640e9(0x152,'\x32\x39\x21\x5a')+'\x74\x68']('\x2f')&&_0x5aa284[_0x2640e9(0x2da,'\x34\x5e\x30\x5e')+_0x2640e9(0x190,'\x45\x45\x6f\x6d')]('\x2f')>-0x123e+-0x22ae+0x11a4*0x3;if(_0x38838e){if(_0x45309f['\x6b\x72\x63\x67\x44'](_0x5aa284[_0x2640e9(0x292,'\x6f\x49\x46\x37')],_0x2699b7))return![];const _0x26d81e=_0x5aa284[_0x2640e9(0x3c1,'\x78\x56\x6f\x44')+'\x78\x4f\x66']('\x2f'),_0x5ccb6c=_0x5aa284[_0x2640e9(0x94,'\x72\x58\x21\x45')](0x115e+-0x10da+0x83*-0x1,_0x26d81e),_0x21c41f=_0x5aa284['\x73\x6c\x69\x63\x65'](_0x45309f[_0x2640e9(0x1af,'\x34\x5e\x30\x5e')](_0x26d81e,-0x363+0x13e5+0x1081*-0x1));try{const _0x2e8a80=new RegExp(_0x5ccb6c,_0x45309f[_0x2640e9(0x11c,'\x23\x58\x5d\x26')](_0x21c41f,'\x69'));return _0x505f03[_0x2640e9(0x119,'\x48\x7a\x50\x56')](_0x78dd05=>_0x2e8a80[_0x2640e9(0x246,'\x50\x42\x75\x41')](_0x78dd05));}catch(_0xb8810b){}}if(_0x5aa284['\x69\x6e\x63\x6c\x75\x64\x65\x73']('\x7c')&&!_0x5aa284[_0x2640e9(0x8c,'\x71\x45\x55\x66')+'\x74\x68']('\x2f')){if(_0x45309f[_0x2640e9(0x1a1,'\x43\x51\x4c\x42')]===_0x2640e9(0x33f,'\x41\x50\x6e\x72')){const _0x517716=_0x5aa284[_0x2640e9(0x282,'\x70\x55\x70\x56')]('\x7c')['\x6d\x61\x70'](_0x2a33f7=>_0x2a33f7['\x74\x72\x69\x6d']()[_0x2640e9(0x1c0,'\x52\x54\x4c\x4d')+_0x2640e9(0x338,'\x37\x21\x41\x31')]())[_0x2640e9(0x193,'\x4a\x25\x43\x21')](Boolean);return _0x517716[_0x2640e9(0x302,'\x52\x54\x4c\x4d')](_0x444d44=>_0x505f03['\x73\x6f\x6d\x65'](_0x13bcf2=>_0x13bcf2['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x2640e9(0x1b0,'\x63\x54\x4a\x6d')]()[_0x2640e9(0x17a,'\x71\x45\x55\x66')](_0x444d44)));}else return _0x99babb[_0x2640e9(0xaf,'\x58\x59\x74\x74')]()['\x73\x65\x61\x72\x63\x68'](UsNMxA[_0x2640e9(0x2c8,'\x72\x58\x21\x45')])[_0x2640e9(0xb1,'\x45\x45\x6f\x6d')]()[_0x2640e9(0x1f1,'\x71\x45\x55\x66')+_0x2640e9(0xa9,'\x70\x68\x5b\x45')](_0x4be969)[_0x2640e9(0x226,'\x48\x45\x65\x7a')](_0x2640e9(0xf2,'\x64\x6b\x39\x63')+_0x2640e9(0x392,'\x53\x23\x75\x30'));}const _0x48b931=_0x5aa284[_0x2640e9(0x256,'\x53\x23\x75\x30')+_0x2640e9(0x267,'\x74\x47\x43\x35')]();return _0x505f03[_0x2640e9(0x16d,'\x64\x6b\x39\x63')](_0x6c7e7d=>_0x6c7e7d[_0x2640e9(0x35a,'\x67\x35\x32\x31')+_0x2640e9(0x11e,'\x67\x35\x32\x31')]()[_0x2640e9(0x82,'\x66\x57\x41\x7a')](_0x48b931));}function _0x3cac2f(_0x2959bd,_0x47aabd){const _0x14c7e9=_0x28c0a0,_0x23f587={'\x6d\x64\x51\x4b\x65':function(_0x3741b2,_0x532ff1){return _0x3741b2>_0x532ff1;},'\x4e\x57\x4d\x6c\x44':function(_0xce0682,_0x43718b){return _0xce0682!==_0x43718b;},'\x6e\x66\x76\x6c\x4a':_0x14c7e9(0x2a7,'\x58\x31\x42\x4b'),'\x55\x4f\x77\x77\x42':function(_0x34a00d,_0x43ef8a,_0x899e2b){return _0x34a00d(_0x43ef8a,_0x899e2b);},'\x6a\x41\x55\x53\x71':function(_0x26d357,_0x55629d){return _0x26d357>_0x55629d;},'\x44\x56\x67\x6f\x56':function(_0x4a44fe,_0x159c5f){return _0x4a44fe*_0x159c5f;},'\x75\x68\x42\x73\x45':function(_0x1fc431,_0x452072){return _0x1fc431===_0x452072;},'\x53\x5a\x5a\x79\x77':_0x14c7e9(0x176,'\x78\x56\x6f\x44'),'\x78\x6e\x66\x67\x46':function(_0xeee20c,_0x5bde7f,_0x1c2bdd){return _0xeee20c(_0x5bde7f,_0x1c2bdd);},'\x6a\x6d\x6c\x50\x77':function(_0x23a3d3,_0xbcbfd3){return _0x23a3d3*_0xbcbfd3;},'\x66\x65\x77\x6f\x66':function(_0x1b7831,_0x3743fd,_0x299245){return _0x1b7831(_0x3743fd,_0x299245);},'\x59\x5a\x56\x70\x49':function(_0x1fc0ea,_0x1706c3){return _0x1fc0ea+_0x1706c3;},'\x79\x50\x6f\x44\x70':function(_0x524d75,_0x5e344b){return _0x524d75+_0x5e344b;}};if(!_0x2959bd||_0x23f587[_0x14c7e9(0x88,'\x6f\x49\x46\x37')](_0x2959bd['\x74\x79\x70\x65'],_0x23f587[_0x14c7e9(0xa5,'\x52\x54\x4c\x4d')]))return-0x17*-0xa3+-0x1*-0x1daf+-0x2c54;const _0x275af3=Array[_0x14c7e9(0x95,'\x79\x58\x67\x50')](_0x2959bd[_0x14c7e9(0x2ff,'\x74\x47\x43\x35')+_0x14c7e9(0x118,'\x4b\x6e\x49\x33')])?_0x2959bd[_0x14c7e9(0x319,'\x45\x45\x6f\x6d')+_0x14c7e9(0x1e8,'\x58\x59\x74\x74')]:[],_0x517f8c=_0x23f587['\x55\x4f\x77\x77\x42'](_0x383eee,_0x2959bd,_0x47aabd);if(_0x275af3[_0x14c7e9(0xf4,'\x67\x35\x32\x31')]===0x14a9+-0x17ba+0x311)return _0x23f587[_0x14c7e9(0x24d,'\x79\x58\x67\x50')](_0x517f8c,-0x3*-0xacf+-0x809+-0x1864)?_0x23f587['\x44\x56\x67\x6f\x56'](_0x517f8c,-0x3*0x429+-0xdd8+0x1a53+0.6):-0x167*0x6+-0x1a3c+0x22a6;let _0x51af79=0xe04*0x1+-0x139+0x19*-0x83;for(const _0x2125ab of _0x275af3){if(_0x23f587[_0x14c7e9(0x1f6,'\x66\x57\x41\x7a')](_0x23f587[_0x14c7e9(0x2d2,'\x79\x58\x67\x50')],_0x23f587[_0x14c7e9(0x299,'\x53\x23\x75\x30')])){if(_0x23f587[_0x14c7e9(0x2b5,'\x49\x77\x74\x59')](_0xe22016,_0x2125ab,_0x47aabd))_0x51af79+=-0x8*0x29c+0x3*-0x4c2+-0x1*-0x2327;}else return _0x23f587[_0x14c7e9(0x3ca,'\x64\x39\x23\x5e')](_0x3cce43[_0x14c7e9(0x11f,'\x23\x58\x5d\x26')],0x94b+0x1a*0x3d+-0xf7d);}const _0x5e5101=_0x23f587[_0x14c7e9(0x336,'\x6a\x28\x5a\x40')](_0x23f587[_0x14c7e9(0x355,'\x63\x54\x4a\x6d')](_0x23a12a,_0x2959bd,_0x47aabd),_0x129080);return _0x23f587[_0x14c7e9(0x14d,'\x37\x21\x41\x31')](_0x23f587[_0x14c7e9(0x258,'\x45\x45\x6f\x6d')](_0x51af79,_0x517f8c*(-0x1d90+-0x1*-0x163+-0x1*-0x1c2d+0.6)),_0x5e5101);}function _0x302210(_0x4f87eb,_0x501991,_0x30a3d5){const _0x123901=_0x28c0a0,_0x588670={'\x76\x56\x6c\x78\x7a':function(_0x3c5e88,_0xb78cef){return _0x3c5e88!==_0xb78cef;},'\x6f\x77\x55\x48\x51':function(_0x116d2a,_0x265402){return _0x116d2a===_0x265402;},'\x43\x4e\x5a\x4e\x55':_0x123901(0x21d,'\x34\x5e\x30\x5e'),'\x43\x41\x57\x43\x52':_0x123901(0x171,'\x37\x6e\x48\x72'),'\x43\x68\x79\x7a\x63':function(_0x28c4fb,_0x3bcc9d,_0x4a3659){return _0x28c4fb(_0x3bcc9d,_0x4a3659);},'\x55\x61\x64\x57\x47':function(_0x201a05,_0x28872a){return _0x201a05>_0x28872a;},'\x52\x65\x47\x74\x4c':_0x123901(0x324,'\x50\x42\x75\x41'),'\x74\x66\x56\x73\x79':function(_0x39ba28,_0xcdab7a){return _0x39ba28<_0xcdab7a;},'\x50\x6f\x4b\x56\x6c':function(_0x5a3795,_0x57995c){return _0x5a3795!==_0x57995c;},'\x6e\x44\x44\x7a\x70':'\x55\x54\x4e\x46\x71'};if(!_0x4f87eb||_0x588670[_0x123901(0x297,'\x74\x47\x43\x35')](_0x4f87eb[_0x123901(0x2aa,'\x4a\x25\x43\x21')],_0x123901(0x261,'\x70\x68\x5b\x45')))return-0x789+-0x1fc1+-0x274a*-0x1;let _0x5b1a75=0x49c+0x755+-0xbf1;const _0x424f1c=Array[_0x123901(0x215,'\x6a\x28\x5a\x40')](_0x4f87eb[_0x123901(0xc2,'\x64\x39\x23\x5e')+_0x123901(0x187,'\x49\x77\x74\x59')])?_0x4f87eb[_0x123901(0x322,'\x34\x5e\x30\x5e')+_0x123901(0x37b,'\x67\x35\x32\x31')][_0x123901(0x3bc,'\x55\x58\x70\x5a')](-(0x5*0x33d+0xf46+0xd*-0x26b)):[];for(let _0x7b1be1=0x34+-0x1*0xda7+-0xd73*-0x1;_0x7b1be1<_0x424f1c[_0x123901(0x289,'\x55\x58\x70\x5a')];_0x7b1be1++){if(_0x588670['\x6f\x77\x55\x48\x51'](_0x588670[_0x123901(0x24a,'\x4b\x6e\x49\x33')],_0x588670[_0x123901(0x1df,'\x41\x50\x6e\x72')])){const _0x3a3f19=_0x424f1c[_0x7b1be1];if(!_0x3a3f19)continue;if(_0x3a3f19[_0x123901(0x39a,'\x44\x7a\x62\x79')]===_0x123901(0x10f,'\x58\x59\x74\x74'))_0x5b1a75+=-0xd20+-0x23c4+-0x254*-0x15+0.12;else{if(_0x588670[_0x123901(0x12e,'\x37\x6e\x48\x72')](_0x3a3f19[_0x123901(0x2bf,'\x45\x45\x6f\x6d')],_0x588670[_0x123901(0x3d1,'\x50\x42\x75\x41')]))_0x5b1a75-=-0xf29*0x1+-0x184*-0x4+0x919+0.22;else{if(_0x3a3f19[_0x123901(0x33d,'\x71\x45\x55\x66')]===_0x123901(0x22c,'\x37\x6e\x48\x72'))_0x5b1a75-=-0xfe+-0x16e1+0x17df+0.08;}}}else _0x53b377[_0x44ab9a[_0x12608e]]=(_0x57e773[_0x1997d2[_0x12e6fd]]||-0x1*-0x1db7+0x1b47*0x1+-0xb66*0x5)+(0x1b6c+0x1c5d*0x1+0x7*-0x7f8);}_0x5b1a75+=_0x588670[_0x123901(0x125,'\x47\x44\x78\x4a')](_0x173d56,_0x4f87eb,_0x30a3d5);if(Array[_0x123901(0x8e,'\x41\x50\x6e\x72')](_0x4f87eb[_0x123901(0xdc,'\x66\x57\x41\x7a')+_0x123901(0x206,'\x4b\x6e\x49\x33')])&&_0x588670[_0x123901(0x223,'\x43\x51\x4c\x42')](_0x4f87eb[_0x123901(0x3e9,'\x68\x49\x68\x68')+'\x74\x65\x72\x6e\x73']['\x6c\x65\x6e\x67\x74\x68'],-0x1e85+0x777+0x170e)){if(_0x588670['\x6f\x77\x55\x48\x51'](_0x123901(0xe7,'\x44\x7a\x62\x79'),_0x588670['\x52\x65\x47\x74\x4c']))return _0x367000(_0x41e42d)[_0x123901(0x1ad,'\x43\x51\x4c\x42')+_0x123901(0x160,'\x5d\x2a\x44\x44')]();else{let _0x368ae1=-0x1d69+0x2*-0x5e3+0x1*0x292f;const _0x4e3e43=new Set(_0x588670[_0x123901(0xcd,'\x2a\x35\x4d\x65')](_0x6701de,_0x501991,'')),_0x108620=_0x4f87eb[_0x123901(0x1ac,'\x49\x77\x74\x59')+_0x123901(0x393,'\x5d\x2a\x44\x44')][_0x123901(0x135,'\x4a\x25\x43\x21')](-(-0x5*-0x277+0x258c+-0x31d9));for(let _0x56ed87=0x91d*-0x3+0xdc3+-0x6ca*-0x2;_0x588670[_0x123901(0x2b9,'\x37\x6e\x48\x72')](_0x56ed87,_0x108620[_0x123901(0x3d9,'\x23\x58\x5d\x26')]);_0x56ed87++){if(_0x588670[_0x123901(0x2fc,'\x37\x21\x41\x31')](_0x123901(0x7b,'\x67\x35\x32\x31'),_0x588670[_0x123901(0x137,'\x41\x50\x6e\x72')]))_0x155535++;else{const _0x1ea8f0=_0x108620[_0x56ed87];if(!_0x1ea8f0||!Array[_0x123901(0x164,'\x57\x49\x5b\x68')](_0x1ea8f0[_0x123901(0x29e,'\x49\x77\x74\x59')+_0x123901(0x191,'\x49\x77\x74\x59')]))continue;const _0x28383d=_0x1ea8f0[_0x123901(0x286,'\x45\x45\x6f\x6d')+_0x123901(0x205,'\x28\x40\x4b\x40')][_0x123901(0x358,'\x35\x73\x61\x31')](function(_0x2f3c6b){const _0x2eae23=_0x123901;return _0x4e3e43[_0x2eae23(0x30f,'\x58\x59\x74\x74')](String(_0x2f3c6b));});if(_0x28383d)_0x368ae1+=_0x1ea8f0[_0x123901(0x332,'\x58\x59\x74\x74')]===_0x588670[_0x123901(0x227,'\x6f\x49\x46\x37')]?0x24d*-0x3+0x5fb+0x1*0xec+0.4:-0x77d+-0x9fc*-0x3+-0x27f*0x9+0.18;}}_0x5b1a75-=_0x368ae1;}}return Math[_0x123901(0x314,'\x48\x7a\x50\x56')](-(0x246a+0x1*0x1c2e+0x5*-0xceb+0.5),Math[_0x123901(0x310,'\x6f\x49\x46\x37')](0x1*0x1c81+-0x8d4*-0x2+0x8*-0x5c5+0.5,_0x5b1a75));}const _0x34e38b=0x4*0x2f9+-0x269*0xd+0x1*0x137b,_0x1a8064=0x1a05+-0x671+0x7*-0x2cc+0.3,_0x51b9f3=-0x403*0x6+0xb09+0xd09+0.02;function _0x1a0b18(_0x441c77){const _0x583b84=_0x28c0a0,_0x134929={'\x67\x4b\x73\x49\x6a':function(_0x14770b,_0x1ba838){return _0x14770b(_0x1ba838);},'\x6d\x77\x61\x56\x73':function(_0x4f51aa,_0x2d8c53){return _0x4f51aa(_0x2d8c53);},'\x5a\x77\x50\x41\x6d':function(_0x10ac73,_0x1f855a){return _0x10ac73||_0x1f855a;},'\x4f\x6c\x72\x55\x63':function(_0x56d4cb,_0x2c7821){return _0x56d4cb<=_0x2c7821;},'\x4a\x52\x6b\x6b\x53':function(_0x1a5b8a,_0x2149c4){return _0x1a5b8a(_0x2149c4);},'\x72\x55\x68\x61\x76':function(_0x50bc0b,_0x35069c){return _0x50bc0b*_0x35069c;},'\x78\x75\x78\x7a\x48':function(_0x3c8406,_0x5bf875){return _0x3c8406>_0x5bf875;},'\x53\x4a\x74\x46\x6e':function(_0x137018,_0x1d1be5){return _0x137018/_0x1d1be5;},'\x74\x49\x7a\x6b\x55':function(_0xd1fb2b,_0x112b9e){return _0xd1fb2b+_0x112b9e;},'\x6d\x53\x77\x53\x78':function(_0x5cc5a1,_0x1878f1){return _0x5cc5a1/_0x1878f1;},'\x4c\x67\x4c\x51\x4a':function(_0x4f7506,_0x48b1c1){return _0x4f7506!=_0x48b1c1;},'\x43\x69\x4c\x7a\x71':'\x41\x53\x41\x62\x77','\x48\x6d\x5a\x55\x45':_0x583b84(0x2d4,'\x63\x54\x4a\x6d')},_0x266456=!!(_0x441c77&&_0x441c77[_0x583b84(0x266,'\x4a\x25\x43\x21')+_0x583b84(0x375,'\x55\x58\x70\x5a')]),_0x1ec7c6=_0x441c77&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x134929[_0x583b84(0x329,'\x57\x49\x5b\x68')](Number,_0x441c77[_0x583b84(0x90,'\x44\x7a\x62\x79')+_0x583b84(0x106,'\x57\x49\x5b\x68')+_0x583b84(0x2db,'\x70\x68\x5b\x45')]))?_0x134929['\x6d\x77\x61\x56\x73'](Number,_0x441c77[_0x583b84(0xee,'\x70\x55\x70\x56')+_0x583b84(0x394,'\x54\x37\x53\x45')+'\x69\x6f\x6e\x53\x69\x7a\x65']):null,_0x4e3440=_0x441c77&&Number[_0x583b84(0x293,'\x58\x31\x42\x4b')](_0x134929[_0x583b84(0x179,'\x26\x68\x58\x43')](Number,_0x441c77[_0x583b84(0x1c5,'\x5d\x2a\x44\x44')+_0x583b84(0x2b8,'\x45\x45\x6f\x6d')]))?Number(_0x441c77[_0x583b84(0x13b,'\x68\x49\x68\x68')+_0x583b84(0x104,'\x74\x47\x43\x35')]):null,_0x5de254=_0x134929[_0x583b84(0x39f,'\x23\x58\x5d\x26')](_0x1ec7c6,_0x4e3440)||null;if(_0x266456){if(!_0x5de254||_0x134929[_0x583b84(0x3b0,'\x28\x51\x49\x71')](_0x5de254,0x23*-0x38+0xb4e+-0x3a5*0x1))return-0x811+0x1edd*0x1+-0x2*0xb66+0.7;const _0x402259=_0x441c77&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x134929[_0x583b84(0x3b5,'\x37\x21\x41\x31')](Number,_0x441c77[_0x583b84(0x146,'\x26\x68\x58\x43')+_0x583b84(0x2fa,'\x55\x58\x70\x5a')]))?Number(_0x441c77[_0x583b84(0x1d6,'\x44\x7a\x62\x79')+_0x583b84(0x349,'\x64\x39\x23\x5e')]):0xcdf+0xab4+-0x5*0x4b7,_0x4da73c=_0x134929[_0x583b84(0x1cb,'\x64\x6b\x39\x63')](_0x5de254,_0x34e38b),_0x4ff580=_0x134929[_0x583b84(0x309,'\x71\x45\x55\x66')](_0x4da73c,0x6*-0x631+0x23c4+0x2*0xb1)?Math[_0x583b84(0xcf,'\x55\x45\x5b\x75')](-0x2063+0x5d4+-0x352*-0x8,_0x134929[_0x583b84(0x3b8,'\x68\x49\x68\x68')](_0x402259,_0x4da73c)):-0x26c5+0x1082*-0x1+0x10b*0x35,_0x498dd1=_0x1a8064-(_0x1a8064-_0x51b9f3)*_0x4ff580;return Math[_0x583b84(0x368,'\x28\x51\x49\x71')](-0x13f1+-0x1*-0x2033+-0xc41,_0x134929[_0x583b84(0x2cd,'\x28\x51\x49\x71')](_0x134929[_0x583b84(0x136,'\x52\x54\x4c\x4d')](0x1aa1+0x63*0x5d+-0x3e97,Math['\x73\x71\x72\x74'](_0x5de254)),_0x498dd1));}if(_0x134929[_0x583b84(0x211,'\x78\x56\x6f\x44')](_0x5de254,null)&&_0x134929[_0x583b84(0x376,'\x64\x6b\x39\x63')](_0x5de254,-0x831+-0x2a6*-0x2+0x2e5)){if(_0x134929[_0x583b84(0x239,'\x49\x77\x74\x59')]!==_0x134929[_0x583b84(0x21e,'\x28\x51\x49\x71')])return Math[_0x583b84(0x2a5,'\x70\x68\x5b\x45')](0x74f+-0x11a1+0x371*0x3,(0x19ad+-0x1*0xc31+0x1ed*-0x7)/Math[_0x583b84(0x35e,'\x5d\x2a\x44\x44')](_0x5de254));else{const _0xca57be=_0x1d3613[_0x35cda9];_0x468327[_0x583b84(0x18d,'\x63\x54\x4a\x6d')](_0x4c5f03,0x4*0xe5+-0x11a7*0x2+0x1fbb),_0x369658[_0x583b84(0xe3,'\x54\x37\x53\x45')](_0xca57be);}}return 0x1d*-0x67+0x1525+-0x97a;}const _0x240bf1=-0x215+-0x1*-0x1e2+0x38,_0x3c71c7=0x1090+0x2103+-0x312f;function _0x27f097(_0x25df9d){const _0x5f0f85=_0x28c0a0,_0x38e951={};_0x38e951[_0x5f0f85(0x3fd,'\x55\x58\x70\x5a')]=_0x5f0f85(0x1e7,'\x71\x45\x55\x66');const _0x1e45e9=_0x38e951;return _0x25df9d&&_0x25df9d[_0x5f0f85(0x9b,'\x66\x66\x44\x2a')+_0x5f0f85(0x264,'\x34\x5e\x30\x5e')]===_0x1e45e9[_0x5f0f85(0x83,'\x44\x7a\x62\x79')];}function _0x5577(){const _0x2ddebf=['\x57\x34\x66\x6d\x57\x52\x4b\x6f\x57\x50\x69','\x57\x34\x4a\x64\x55\x4b\x46\x64\x55\x59\x33\x63\x56\x71','\x6f\x65\x76\x71\x57\x4f\x79','\x6b\x4d\x6d\x6e\x57\x35\x69\x74','\x6d\x5a\x4c\x6a\x57\x37\x79','\x72\x5a\x31\x32\x57\x35\x47\x45\x57\x35\x54\x76\x62\x57','\x42\x71\x39\x4e\x6c\x43\x6f\x70','\x57\x36\x74\x63\x50\x53\x6b\x37\x6a\x72\x64\x63\x54\x6d\x6b\x75\x57\x52\x35\x2b\x57\x50\x69','\x43\x53\x6b\x7a\x78\x43\x6b\x6e','\x43\x53\x6b\x65\x72\x53\x6b\x41\x70\x38\x6b\x65\x57\x4f\x6a\x79','\x75\x5a\x4b\x55\x76\x47','\x6b\x4e\x72\x72\x57\x4f\x53\x44','\x46\x59\x6e\x38\x66\x53\x6f\x58','\x57\x37\x2f\x64\x4b\x73\x58\x34\x57\x50\x4a\x64\x49\x53\x6b\x2f\x65\x47','\x57\x37\x5a\x64\x53\x74\x76\x33\x57\x51\x75','\x57\x36\x50\x44\x41\x38\x6b\x30\x57\x52\x57','\x57\x35\x57\x48\x57\x37\x38\x69\x57\x37\x53','\x57\x36\x30\x53\x78\x38\x6f\x77\x43\x4a\x64\x64\x4c\x6d\x6f\x48','\x61\x67\x66\x36\x57\x51\x37\x63\x53\x61','\x57\x4f\x7a\x4c\x57\x50\x35\x79\x68\x38\x6f\x64','\x41\x49\x62\x76\x65\x6d\x6f\x77','\x57\x52\x43\x69\x44\x43\x6f\x7a\x66\x71','\x6a\x6d\x6f\x62\x66\x65\x65','\x66\x32\x75\x73\x57\x37\x4b\x6d','\x57\x37\x5a\x64\x48\x49\x54\x37','\x57\x50\x79\x65\x44\x61','\x46\x73\x38\x62\x71\x43\x6b\x70\x57\x37\x5a\x64\x4d\x47','\x75\x5a\x70\x64\x53\x68\x42\x64\x48\x6d\x6f\x74\x57\x51\x74\x63\x56\x61','\x57\x50\x56\x63\x47\x6d\x6b\x4c','\x42\x43\x6b\x72\x76\x6d\x6b\x43\x61\x53\x6b\x7a\x57\x52\x66\x75','\x46\x33\x4b\x72\x57\x52\x75\x6a\x57\x52\x66\x46','\x57\x4f\x6e\x6a\x57\x36\x50\x6f','\x74\x71\x46\x64\x4b\x31\x4e\x64\x54\x61','\x57\x4f\x30\x38\x77\x38\x6f\x70','\x57\x50\x42\x63\x48\x53\x6b\x2f\x6b\x53\x6b\x63\x57\x36\x6c\x63\x54\x71\x6d','\x57\x35\x46\x63\x53\x4c\x4b\x56\x75\x57','\x6b\x53\x6b\x65\x57\x50\x48\x30','\x75\x6d\x6b\x62\x79\x71','\x57\x37\x68\x63\x4e\x4b\x78\x63\x53\x43\x6b\x38\x6e\x61\x75','\x57\x34\x50\x65\x6a\x30\x4f\x69','\x57\x4f\x4b\x37\x71\x71','\x6c\x6d\x6f\x75\x57\x50\x52\x63\x4c\x31\x34','\x57\x35\x74\x63\x47\x73\x46\x64\x50\x53\x6f\x66','\x74\x38\x6b\x70\x42\x43\x6f\x57\x61\x57','\x78\x43\x6f\x41\x57\x4f\x78\x64\x4f\x48\x75','\x57\x52\x42\x63\x48\x53\x6b\x52\x76\x5a\x2f\x63\x56\x58\x53','\x6a\x5a\x4c\x6c\x57\x37\x79\x36\x57\x35\x5a\x64\x50\x5a\x4f','\x73\x76\x37\x63\x52\x4c\x47\x2f\x7a\x53\x6f\x34\x57\x34\x30','\x57\x37\x31\x47\x57\x4f\x2f\x64\x51\x38\x6b\x48\x72\x38\x6f\x73','\x66\x43\x6b\x37\x57\x50\x2f\x63\x56\x77\x69\x4a','\x57\x34\x64\x64\x53\x31\x4e\x64\x4d\x5a\x61','\x41\x4c\x53\x42\x6f\x57','\x57\x34\x54\x36\x67\x6d\x6b\x68\x57\x50\x6d','\x57\x35\x31\x4a\x43\x38\x6b\x36\x57\x51\x52\x64\x47\x53\x6b\x42\x57\x52\x38','\x57\x37\x42\x64\x50\x43\x6f\x31\x57\x50\x46\x63\x50\x61','\x57\x50\x47\x65\x44\x62\x69\x55\x57\x50\x33\x63\x4b\x57','\x57\x4f\x58\x35\x57\x52\x66\x6a\x64\x6d\x6f\x77\x6a\x61','\x70\x53\x6f\x59\x57\x50\x56\x63\x56\x76\x6d','\x57\x52\x48\x72\x57\x4f\x4b\x34\x57\x36\x35\x5a\x57\x37\x38\x71','\x62\x53\x6f\x4a\x57\x51\x68\x63\x4e\x4e\x53','\x43\x4a\x6d\x59\x44\x53\x6b\x43\x57\x37\x37\x64\x49\x57','\x57\x37\x31\x33\x57\x51\x56\x64\x54\x38\x6b\x57\x71\x57','\x57\x36\x34\x50\x77\x43\x6f\x6d\x44\x4a\x33\x64\x4b\x53\x6f\x58','\x57\x37\x46\x63\x4d\x48\x5a\x64\x56\x38\x6f\x46','\x6d\x78\x76\x73\x57\x4f\x6c\x63\x4c\x47\x74\x64\x48\x53\x6b\x72','\x6e\x32\x39\x62\x57\x4f\x4e\x63\x4b\x71','\x57\x50\x7a\x4a\x57\x50\x44\x76\x68\x38\x6f\x42\x6c\x4e\x4f','\x57\x37\x6a\x36\x57\x51\x6c\x64\x52\x43\x6b\x32\x76\x61','\x57\x50\x43\x61\x41\x47\x79\x56\x57\x50\x4b','\x73\x76\x4a\x63\x50\x66\x6d','\x67\x6d\x6b\x39\x57\x4f\x31\x62\x57\x35\x75','\x57\x51\x56\x63\x49\x6d\x6b\x61\x61\x73\x57','\x57\x51\x71\x68\x68\x68\x44\x4b\x57\x37\x6c\x64\x49\x38\x6b\x74','\x57\x52\x46\x64\x52\x6d\x6f\x4d','\x57\x4f\x47\x6f\x57\x36\x4f\x77\x57\x34\x62\x58\x57\x36\x4e\x63\x4b\x47','\x57\x51\x35\x66\x6c\x38\x6f\x4e\x66\x61','\x6e\x43\x6f\x4b\x57\x4f\x5a\x63\x54\x78\x34','\x57\x35\x50\x47\x42\x53\x6b\x34\x57\x51\x6d','\x57\x35\x66\x70\x62\x78\x30\x38','\x57\x4f\x48\x41\x57\x37\x30','\x57\x52\x57\x6e\x41\x43\x6f\x50\x6c\x53\x6b\x58\x57\x36\x4b','\x57\x37\x42\x64\x47\x4a\x66\x39\x57\x4f\x74\x64\x4b\x38\x6b\x57\x65\x47','\x57\x50\x6d\x65\x44\x57','\x57\x34\x31\x6c\x6c\x57','\x70\x53\x6f\x35\x57\x50\x56\x63\x55\x4c\x52\x64\x4f\x71','\x61\x6d\x6f\x6c\x66\x65\x43\x69\x75\x57','\x57\x51\x76\x72\x57\x51\x57\x35\x57\x37\x34','\x57\x34\x64\x64\x54\x75\x57','\x6a\x65\x38\x39\x79\x57','\x57\x36\x58\x62\x72\x43\x6b\x2b\x57\x51\x30','\x57\x52\x44\x70\x69\x6d\x6f\x55\x63\x57','\x57\x36\x2f\x64\x48\x4a\x44\x57\x57\x52\x4a\x64\x52\x6d\x6b\x63\x64\x57','\x6a\x4b\x6e\x74\x57\x4f\x33\x63\x4d\x57\x74\x64\x4c\x38\x6b\x56','\x57\x34\x4f\x6a\x57\x37\x79\x67\x57\x37\x31\x32\x57\x52\x33\x64\x47\x61','\x57\x51\x7a\x61\x57\x34\x43\x69','\x57\x50\x75\x6b\x43\x61','\x74\x43\x6f\x4e\x57\x34\x4a\x64\x50\x74\x48\x31\x57\x37\x4a\x64\x56\x53\x6b\x48\x57\x36\x53\x67\x57\x51\x50\x55','\x43\x6d\x6f\x37\x57\x50\x33\x64\x4f\x74\x43','\x57\x35\x46\x64\x49\x38\x6b\x63\x57\x34\x4a\x63\x48\x57','\x57\x34\x44\x35\x6f\x65\x71\x49','\x6d\x4b\x39\x41\x57\x4f\x79','\x42\x43\x6b\x76\x72\x53\x6b\x41\x6a\x43\x6b\x45\x57\x52\x54\x77','\x7a\x62\x69\x67\x57\x35\x78\x64\x47\x31\x56\x63\x4c\x6d\x6b\x64\x69\x53\x6f\x49\x57\x4f\x64\x63\x49\x48\x71','\x57\x37\x2f\x64\x4e\x53\x6b\x75\x68\x38\x6f\x34','\x57\x34\x64\x63\x4b\x64\x4e\x64\x4a\x61','\x6c\x68\x35\x57\x57\x51\x38\x42\x41\x4b\x30\x33','\x57\x4f\x65\x51\x73\x53\x6f\x64\x66\x38\x6b\x61\x57\x35\x70\x64\x4e\x61','\x76\x4a\x42\x64\x51\x6d\x6b\x37\x57\x51\x79','\x77\x53\x6b\x52\x79\x4c\x33\x63\x50\x61','\x78\x4b\x75\x30\x6a\x38\x6f\x76','\x44\x68\x43\x6d\x57\x4f\x6d\x5a\x57\x51\x48\x76\x57\x34\x4b','\x44\x68\x5a\x63\x52\x32\x57\x76','\x57\x50\x5a\x63\x4a\x6d\x6b\x55\x69\x58\x71','\x43\x59\x58\x55\x57\x36\x47\x62','\x57\x4f\x66\x38\x57\x36\x62\x6e\x77\x53\x6f\x76\x57\x4f\x47','\x57\x51\x43\x30\x57\x37\x68\x64\x56\x6d\x6f\x36\x57\x37\x76\x73\x62\x47','\x6e\x43\x6b\x66\x57\x52\x56\x63\x4f\x75\x43','\x57\x50\x79\x6b\x79\x61\x71','\x57\x50\x61\x39\x79\x38\x6f\x70\x66\x43\x6b\x72\x57\x34\x4a\x64\x53\x61','\x57\x50\x74\x63\x4e\x43\x6b\x36\x6f\x6d\x6b\x74\x57\x35\x4b','\x6d\x43\x6f\x55\x6c\x68\x69\x47','\x57\x52\x34\x38\x57\x37\x68\x64\x49\x43\x6f\x55','\x74\x38\x6f\x32\x57\x51\x4e\x64\x4f\x59\x43\x32\x57\x4f\x47','\x57\x34\x42\x63\x48\x4a\x69','\x57\x4f\x7a\x41\x57\x37\x76\x71\x73\x53\x6f\x57\x57\x4f\x4b','\x70\x53\x6f\x2b\x57\x4f\x42\x63\x55\x57','\x63\x53\x6b\x79\x57\x4f\x39\x38\x57\x35\x4e\x64\x4d\x43\x6f\x2f','\x43\x4e\x34\x4b\x61\x43\x6f\x53','\x69\x6d\x6f\x2b\x57\x50\x64\x63\x51\x47','\x57\x36\x52\x63\x4b\x59\x74\x64\x4f\x6d\x6f\x6a','\x57\x35\x70\x63\x4f\x74\x42\x64\x47\x4b\x34','\x73\x63\x48\x56\x57\x36\x57\x6f\x57\x35\x4c\x76','\x43\x4e\x70\x63\x4f\x66\x75\x58','\x78\x43\x6f\x5a\x57\x52\x52\x64\x51\x64\x71\x30\x57\x50\x50\x39','\x57\x52\x4b\x57\x57\x36\x30','\x68\x4e\x6e\x76\x57\x50\x43\x50','\x7a\x5a\x6d\x54\x76\x47','\x72\x43\x6b\x64\x42\x53\x6b\x6d\x6b\x47','\x57\x52\x68\x63\x55\x43\x6f\x44\x57\x50\x46\x64\x4d\x32\x7a\x4f\x57\x50\x4b\x34\x57\x36\x37\x63\x4c\x6d\x6b\x59\x57\x37\x69','\x73\x76\x6c\x63\x50\x76\x6d\x39\x46\x53\x6f\x49\x57\x37\x30','\x7a\x47\x6a\x5a\x6b\x43\x6f\x79\x79\x71','\x57\x37\x54\x6d\x68\x30\x38\x47\x57\x37\x61','\x57\x51\x43\x39\x6e\x31\x54\x55','\x57\x37\x4e\x64\x55\x6d\x6b\x6a\x6c\x43\x6f\x4d\x64\x47','\x57\x36\x38\x52\x45\x43\x6f\x59\x7a\x71','\x75\x53\x6b\x6a\x71\x38\x6f\x53\x61\x4e\x39\x61\x57\x34\x79','\x57\x4f\x62\x6a\x57\x51\x72\x4a\x6a\x57','\x78\x43\x6b\x63\x7a\x47','\x57\x36\x70\x64\x50\x43\x6b\x63\x57\x34\x38','\x57\x52\x66\x46\x57\x34\x43','\x57\x50\x43\x39\x78\x43\x6f\x75','\x57\x50\x57\x61\x41\x47\x71','\x6b\x75\x65\x46\x57\x35\x6d\x71','\x57\x52\x31\x72\x57\x50\x43\x56\x57\x36\x72\x4a\x57\x37\x38','\x57\x37\x6c\x63\x4f\x61\x6c\x64\x54\x66\x74\x64\x51\x30\x6c\x63\x49\x57','\x65\x6d\x6f\x6c\x66\x30\x65','\x57\x37\x78\x63\x50\x4a\x74\x64\x56\x47','\x78\x59\x7a\x74\x57\x37\x61\x6d\x57\x35\x62\x63\x62\x57','\x57\x51\x71\x68\x67\x32\x58\x34\x57\x37\x52\x64\x48\x47','\x57\x4f\x62\x4a\x57\x50\x44\x74\x63\x53\x6f\x73\x6f\x71','\x57\x36\x2f\x64\x4d\x4a\x76\x37','\x57\x37\x50\x43\x61\x31\x38','\x57\x51\x71\x47\x77\x38\x6b\x5a\x67\x4d\x5a\x64\x47\x47','\x57\x37\x37\x64\x49\x38\x6f\x57\x57\x50\x53','\x46\x73\x4f\x4c\x71\x61','\x63\x4b\x74\x63\x53\x6d\x6f\x47\x57\x35\x48\x32\x6a\x38\x6f\x56','\x57\x4f\x54\x48\x68\x43\x6f\x2b\x63\x71','\x44\x4a\x30\x55\x78\x43\x6b\x79\x57\x37\x4e\x64\x50\x6d\x6f\x52','\x57\x34\x31\x45\x6b\x67\x43\x48','\x65\x43\x6f\x6e\x68\x66\x61\x47\x73\x77\x37\x64\x51\x71','\x57\x51\x79\x34\x71\x6d\x6f\x79\x6f\x61','\x57\x34\x75\x62\x57\x36\x53','\x70\x38\x6b\x35\x57\x4f\x4e\x63\x4b\x4b\x34','\x57\x4f\x7a\x52\x57\x4f\x62\x69\x63\x38\x6f\x42\x6f\x61','\x57\x50\x37\x63\x52\x6d\x6b\x78\x62\x6d\x6b\x45','\x68\x53\x6b\x2b\x57\x50\x74\x63\x56\x77\x71\x49\x57\x4f\x2f\x64\x51\x61','\x57\x51\x7a\x72\x57\x4f\x47\x59\x57\x37\x39\x2b\x57\x34\x75\x74','\x6a\x72\x4c\x78\x57\x36\x4b\x47','\x57\x35\x74\x63\x4d\x4a\x52\x64\x4a\x61','\x69\x78\x71\x6a\x57\x34\x47\x45','\x57\x35\x4f\x6e\x57\x37\x71\x77\x57\x34\x44\x4e\x57\x52\x46\x64\x4c\x47','\x57\x50\x5a\x63\x4e\x6d\x6b\x38\x72\x61\x4f','\x57\x52\x4b\x30\x57\x37\x64\x64\x54\x53\x6f\x52\x57\x37\x48\x59\x66\x61','\x57\x51\x4f\x76\x6b\x4c\x7a\x4a\x57\x36\x2f\x64\x4a\x61','\x57\x37\x7a\x2f\x57\x51\x56\x64\x56\x71','\x57\x4f\x4e\x63\x4d\x6d\x6b\x49\x6f\x4a\x71','\x57\x35\x74\x63\x50\x30\x75','\x57\x4f\x72\x69\x68\x6d\x6f\x4f\x6d\x66\x57','\x72\x72\x7a\x59\x57\x37\x61\x46\x57\x35\x61','\x57\x4f\x47\x61\x41\x61\x71\x34\x57\x4f\x78\x63\x4e\x33\x69','\x44\x63\x66\x32\x57\x36\x57\x70\x57\x35\x50\x63\x70\x71','\x66\x4b\x31\x35\x57\x51\x33\x63\x53\x57','\x65\x6d\x6f\x6e\x68\x75\x4f\x69\x73\x32\x4e\x64\x4b\x57','\x77\x76\x4a\x63\x50\x31\x75\x2f\x46\x47','\x57\x4f\x6c\x63\x48\x53\x6b\x5a\x6b\x53\x6b\x74\x57\x35\x4e\x63\x4b\x48\x4b','\x57\x4f\x31\x6e\x57\x50\x71\x32\x57\x34\x47','\x67\x49\x50\x69\x57\x36\x43\x6a','\x57\x36\x48\x6f\x62\x75\x69\x35\x57\x37\x47','\x57\x37\x78\x64\x48\x47\x58\x36\x57\x50\x38','\x57\x50\x4c\x64\x6e\x43\x6f\x50\x6a\x66\x58\x76\x57\x37\x69','\x57\x51\x5a\x63\x4c\x53\x6b\x66\x76\x59\x47','\x57\x35\x56\x64\x53\x75\x42\x64\x4f\x64\x64\x63\x4f\x6d\x6b\x58','\x57\x52\x75\x57\x45\x38\x6b\x36\x68\x4e\x4f','\x57\x52\x6d\x30\x57\x37\x70\x64\x56\x61','\x57\x35\x48\x52\x57\x52\x4f\x4b','\x57\x34\x62\x4f\x79\x53\x6b\x31\x57\x51\x78\x64\x50\x47','\x57\x35\x72\x6e\x6b\x53\x6b\x71\x57\x50\x58\x75\x62\x48\x4b','\x57\x37\x37\x64\x4a\x74\x7a\x33\x57\x50\x4a\x64\x55\x47','\x75\x47\x64\x64\x55\x43\x6b\x36\x57\x50\x79\x2b\x45\x43\x6b\x6a','\x73\x77\x47\x59\x6d\x43\x6f\x6e','\x57\x35\x74\x64\x47\x43\x6b\x6d\x57\x34\x46\x63\x4d\x47','\x6f\x65\x54\x65','\x66\x43\x6b\x37\x57\x4f\x69','\x57\x37\x33\x63\x54\x38\x6b\x4f\x6d\x61','\x57\x37\x31\x69\x61\x30\x75\x38','\x57\x51\x71\x7a\x75\x38\x6b\x52\x67\x32\x78\x64\x48\x31\x43','\x57\x34\x34\x62\x57\x36\x4b\x78\x57\x34\x54\x4e','\x57\x4f\x4f\x6f\x66\x77\x50\x69','\x45\x31\x6a\x6e\x57\x52\x65\x37\x45\x67\x65','\x57\x37\x6c\x64\x55\x6d\x6b\x6a\x6c\x57','\x61\x53\x6f\x44\x57\x52\x78\x63\x47\x66\x6d','\x57\x34\x7a\x35\x43\x38\x6b\x34\x57\x51\x4e\x64\x52\x53\x6b\x6b','\x46\x68\x79\x5a\x69\x6d\x6f\x32','\x79\x4b\x6c\x63\x4f\x77\x6d\x33','\x57\x36\x2f\x63\x4a\x72\x37\x64\x52\x38\x6f\x41','\x57\x4f\x30\x71\x41\x71\x75\x58','\x72\x30\x75\x4e\x66\x53\x6f\x55','\x6c\x78\x62\x53\x57\x51\x71','\x57\x36\x6c\x64\x4f\x43\x6b\x66\x57\x34\x33\x63\x49\x64\x75\x7a\x57\x51\x47','\x6c\x71\x54\x63\x57\x34\x65\x41','\x46\x4c\x30\x66\x6d\x47','\x72\x71\x33\x64\x51\x6d\x6b\x67\x57\x50\x4f\x52\x46\x57','\x57\x35\x35\x49\x6f\x68\x4b\x61','\x57\x36\x42\x64\x54\x6d\x6b\x61\x6a\x6d\x6f\x5a\x63\x4a\x57','\x57\x51\x44\x72\x57\x4f\x53\x36\x57\x37\x4c\x56','\x77\x63\x58\x5a\x57\x37\x4f\x79\x57\x34\x66\x76\x69\x61','\x6f\x64\x4c\x6a\x57\x37\x71\x54\x57\x34\x61','\x57\x4f\x64\x63\x56\x43\x6b\x30\x6e\x4a\x4b','\x74\x53\x6b\x66\x43\x67\x42\x63\x52\x43\x6f\x76','\x57\x35\x48\x48\x64\x6d\x6b\x33\x57\x50\x57','\x57\x36\x46\x64\x56\x6d\x6b\x6a\x6c\x53\x6f\x39\x63\x57','\x6f\x74\x31\x46','\x74\x6d\x6b\x47\x57\x52\x66\x48\x57\x37\x33\x64\x4e\x43\x6f\x54','\x57\x36\x43\x65\x57\x37\x43\x32\x57\x34\x30','\x57\x36\x44\x32\x57\x51\x6c\x64\x56\x6d\x6b\x57\x75\x53\x6f\x6f\x57\x36\x69','\x61\x43\x6f\x57\x6e\x77\x47\x56','\x57\x50\x47\x61\x42\x71\x30','\x57\x51\x75\x37\x76\x43\x6b\x39\x67\x4b\x5a\x64\x49\x65\x69','\x57\x36\x33\x63\x50\x5a\x5a\x64\x47\x53\x6f\x47','\x57\x36\x56\x63\x52\x4a\x34','\x57\x4f\x68\x63\x4b\x43\x6b\x36\x6b\x43\x6b\x76\x57\x35\x2f\x63\x56\x48\x6d','\x57\x35\x70\x64\x49\x53\x6b\x46\x57\x36\x78\x63\x47\x57','\x79\x4e\x38\x74\x57\x4f\x4f\x66\x57\x51\x39\x4c','\x57\x50\x58\x4b\x57\x36\x66\x6b\x74\x43\x6f\x35\x57\x4f\x2f\x63\x49\x71','\x57\x50\x50\x71\x57\x52\x31\x73\x57\x35\x54\x56\x57\x50\x52\x64\x55\x43\x6b\x65\x41\x47','\x57\x36\x44\x2f\x57\x51\x46\x64\x55\x53\x6b\x32','\x6f\x65\x54\x6d','\x67\x43\x6f\x73\x57\x50\x5a\x63\x48\x77\x79','\x57\x35\x44\x36\x57\x4f\x42\x64\x51\x53\x6b\x79','\x57\x34\x6c\x63\x4b\x5a\x68\x64\x4a\x6d\x6f\x71\x57\x36\x4c\x35\x57\x36\x47','\x6f\x64\x31\x75\x57\x36\x43\x71\x57\x34\x42\x64\x51\x4a\x61','\x57\x36\x52\x63\x51\x49\x64\x64\x56\x66\x46\x64\x50\x47','\x57\x52\x61\x49\x41\x38\x6f\x50\x6e\x71','\x57\x51\x79\x34\x57\x37\x56\x64\x52\x43\x6f\x67\x57\x36\x35\x62\x62\x57','\x42\x61\x44\x4e\x62\x53\x6f\x31','\x57\x4f\x30\x61\x44\x48\x6d\x59\x57\x50\x78\x63\x4b\x57','\x41\x4e\x65\x7a\x68\x38\x6f\x59','\x6a\x4a\x31\x6a\x57\x37\x43\x32\x57\x34\x75','\x57\x51\x78\x64\x56\x43\x6f\x53\x7a\x47\x61','\x79\x47\x6a\x68\x64\x6d\x6f\x45','\x76\x67\x4a\x63\x55\x76\x43\x51\x79\x53\x6b\x58\x57\x52\x69','\x63\x43\x6b\x4c\x57\x52\x4a\x63\x4c\x78\x71','\x78\x53\x6b\x70\x46\x33\x46\x63\x52\x38\x6f\x6a','\x57\x4f\x58\x6e\x57\x36\x62\x71','\x44\x73\x68\x64\x4b\x43\x6b\x51\x57\x51\x43','\x57\x36\x70\x64\x52\x38\x6b\x66\x57\x34\x64\x63\x4a\x63\x75','\x57\x35\x42\x64\x4e\x6d\x6b\x57\x63\x43\x6f\x61','\x72\x63\x74\x64\x55\x33\x75','\x57\x37\x57\x79\x57\x50\x69\x6f\x57\x51\x42\x64\x53\x6d\x6b\x44\x57\x4f\x56\x63\x4e\x47','\x62\x53\x6f\x56\x70\x66\x30\x6d','\x7a\x6d\x6f\x76\x57\x4f\x2f\x64\x47\x49\x38','\x57\x50\x65\x46\x62\x43\x6b\x59\x6c\x57\x48\x42\x57\x4f\x61','\x73\x66\x42\x63\x50\x31\x69\x58\x7a\x38\x6f\x75\x57\x36\x75','\x57\x52\x42\x63\x49\x6d\x6b\x30\x6a\x71','\x43\x76\x43\x7a\x6d\x6d\x6f\x33\x57\x34\x65','\x57\x50\x68\x63\x4c\x6d\x6b\x4b\x76\x64\x30','\x57\x36\x42\x64\x52\x6d\x6b\x76\x70\x47','\x57\x50\x6a\x44\x57\x34\x39\x41\x73\x71','\x57\x4f\x42\x63\x4d\x38\x6b\x4b','\x57\x51\x43\x30\x57\x37\x68\x64\x56\x6d\x6f\x36\x57\x37\x76\x45\x64\x71','\x57\x37\x43\x33\x77\x38\x6f\x47\x78\x61','\x71\x65\x38\x56\x57\x50\x6d\x76','\x69\x30\x65\x67\x57\x35\x53\x63\x43\x61','\x65\x4e\x4a\x63\x4f\x59\x74\x63\x4c\x38\x6b\x77\x57\x36\x64\x63\x4a\x78\x74\x63\x56\x73\x39\x37\x72\x71','\x45\x47\x57\x48\x72\x38\x6b\x76','\x57\x34\x5a\x63\x53\x30\x75\x55','\x64\x43\x6f\x30\x67\x31\x61\x62','\x57\x34\x66\x56\x43\x43\x6b\x57\x57\x51\x47','\x7a\x43\x6b\x63\x74\x53\x6b\x6f\x70\x38\x6b\x36\x57\x52\x50\x76','\x57\x52\x65\x69\x41\x38\x6b\x32\x61\x57','\x57\x36\x68\x64\x52\x53\x6b\x46\x57\x34\x52\x63\x53\x49\x65\x2f\x57\x52\x4b','\x75\x43\x6b\x6e\x44\x53\x6f\x48\x64\x48\x58\x67\x57\x35\x6d','\x69\x6d\x6f\x57\x57\x4f\x64\x63\x52\x66\x34','\x62\x4d\x4f\x34\x57\x37\x61\x33\x77\x30\x65\x42','\x61\x43\x6f\x72\x64\x47','\x70\x66\x4c\x31\x57\x50\x68\x63\x49\x61\x4e\x64\x4e\x71','\x57\x34\x53\x68\x57\x36\x53\x61\x57\x34\x39\x48','\x57\x34\x6a\x64\x6d\x53\x6b\x71\x57\x51\x66\x45\x65\x57\x34','\x43\x53\x6b\x74\x73\x6d\x6b\x41\x6c\x47','\x57\x50\x56\x63\x48\x53\x6b\x4a\x71\x73\x57','\x46\x4c\x6d\x39\x65\x43\x6f\x68','\x57\x51\x47\x4d\x44\x43\x6b\x62\x6a\x57','\x57\x36\x71\x75\x74\x53\x6f\x44\x77\x71','\x77\x72\x48\x57\x57\x35\x69\x63','\x57\x50\x61\x75\x57\x52\x57\x46\x57\x50\x58\x50\x57\x36\x74\x64\x4a\x47','\x57\x4f\x4f\x33\x7a\x53\x6f\x65\x65\x71','\x57\x52\x4b\x38\x66\x33\x39\x49','\x57\x4f\x65\x5a\x6b\x68\x72\x7a','\x57\x37\x4a\x64\x49\x6d\x6f\x52\x57\x52\x2f\x63\x55\x57','\x57\x51\x65\x72\x6e\x68\x4c\x2b\x57\x37\x6d','\x57\x37\x44\x32\x57\x52\x4a\x64\x52\x6d\x6b\x6b','\x66\x6d\x6b\x6d\x57\x50\x4f','\x57\x4f\x4b\x33\x71\x53\x6f\x70\x65\x6d\x6b\x6e\x57\x36\x78\x64\x47\x57','\x57\x36\x78\x64\x55\x6d\x6b\x6f\x57\x34\x64\x63\x4d\x63\x75\x33\x57\x51\x69','\x6a\x4c\x50\x79\x57\x4f\x52\x63\x4a\x47','\x79\x38\x6b\x44\x43\x53\x6b\x55\x6d\x71','\x57\x34\x62\x54\x57\x52\x43\x4b','\x57\x36\x4a\x63\x4c\x76\x4a\x63\x56\x53\x6b\x48\x6f\x47','\x57\x35\x68\x64\x53\x38\x6b\x37\x57\x35\x6c\x63\x50\x57','\x57\x36\x56\x63\x51\x49\x70\x64\x54\x66\x68\x64\x54\x32\x78\x63\x55\x57','\x74\x38\x6f\x38\x57\x51\x68\x64\x56\x59\x6d','\x57\x4f\x4e\x64\x53\x61\x72\x33\x64\x4c\x66\x36\x76\x38\x6b\x38\x46\x32\x74\x64\x53\x5a\x69','\x63\x6d\x6b\x32\x57\x52\x64\x63\x4b\x65\x53','\x57\x34\x37\x64\x4a\x74\x31\x68\x57\x4f\x65','\x57\x4f\x57\x5a\x78\x61','\x57\x4f\x48\x75\x63\x43\x6f\x51\x6d\x4c\x44\x67\x57\x34\x75','\x6a\x33\x43\x4a\x57\x34\x4f\x37','\x57\x36\x2f\x64\x4b\x73\x58\x35\x57\x4f\x56\x64\x50\x53\x6b\x4a','\x70\x53\x6f\x34\x57\x50\x70\x63\x4f\x76\x46\x64\x51\x71\x4b','\x57\x51\x4f\x62\x73\x38\x6f\x78\x6b\x71','\x75\x61\x4e\x64\x56\x6d\x6b\x37\x57\x50\x61\x36','\x57\x36\x5a\x64\x48\x71\x39\x4e\x57\x50\x4f','\x65\x6d\x6f\x6e\x61\x65\x65','\x57\x50\x7a\x30\x57\x37\x53\x47\x57\x52\x79','\x74\x57\x33\x64\x52\x6d\x6b\x54\x57\x50\x53','\x57\x52\x66\x32\x57\x34\x62\x69\x42\x57','\x76\x6d\x6b\x70\x46\x57','\x57\x35\x6e\x4e\x57\x51\x61\x55\x57\x51\x66\x73\x64\x76\x4b','\x42\x47\x50\x4c\x6b\x61','\x75\x43\x6b\x66\x46\x33\x70\x63\x55\x53\x6f\x76','\x74\x6d\x6b\x7a\x43\x43\x6f\x51','\x57\x51\x74\x63\x4f\x38\x6b\x51\x61\x58\x43','\x76\x58\x4a\x64\x4a\x32\x64\x64\x55\x57','\x57\x50\x35\x66\x68\x53\x6f\x4f\x6d\x4c\x76\x75\x57\x36\x34','\x65\x43\x6b\x2b\x57\x4f\x37\x63\x53\x67\x4b','\x57\x34\x42\x63\x4f\x30\x64\x63\x4d\x6d\x6b\x41','\x57\x37\x50\x69\x68\x75\x34\x53\x57\x36\x4c\x43\x73\x71','\x45\x6d\x6b\x67\x71\x38\x6f\x64\x69\x47','\x57\x51\x78\x64\x52\x53\x6f\x56\x46\x72\x65','\x42\x75\x65\x63\x6f\x38\x6f\x4d\x57\x35\x4f','\x73\x43\x6b\x70\x78\x78\x56\x63\x55\x43\x6f\x79\x46\x65\x53','\x46\x48\x31\x72\x57\x35\x4b\x6b','\x57\x37\x70\x64\x51\x43\x6b\x6d\x57\x34\x33\x63\x4a\x64\x30\x54\x57\x50\x69','\x57\x36\x6c\x64\x52\x6d\x6b\x74\x65\x53\x6f\x45','\x77\x38\x6b\x70\x79\x31\x68\x63\x52\x38\x6f\x45\x7a\x47','\x57\x36\x78\x63\x4f\x63\x64\x64\x55\x65\x6c\x64\x55\x47','\x43\x71\x42\x64\x47\x67\x4a\x64\x4f\x47','\x69\x4b\x76\x62\x57\x4f\x2f\x63\x4e\x47','\x57\x37\x6c\x64\x4a\x73\x7a\x59\x57\x50\x4e\x64\x50\x38\x6b\x30\x66\x71','\x57\x34\x50\x50\x43\x43\x6b\x55\x57\x50\x38','\x61\x32\x65\x33\x57\x52\x66\x71\x57\x50\x57\x42\x42\x71','\x76\x6d\x6b\x55\x73\x78\x4e\x63\x50\x71','\x57\x50\x74\x63\x52\x6d\x6b\x50\x79\x4a\x47','\x78\x66\x37\x63\x50\x75\x69\x37\x45\x61','\x57\x36\x35\x31\x64\x6d\x6b\x7a\x57\x52\x79','\x57\x36\x35\x2f\x69\x65\x71\x6f','\x57\x34\x56\x63\x55\x30\x2f\x63\x55\x53\x6b\x67','\x77\x38\x6b\x6a\x42\x6d\x6f\x4e','\x70\x53\x6f\x4c\x57\x50\x78\x63\x56\x75\x6c\x64\x54\x49\x33\x63\x55\x57','\x57\x50\x7a\x54\x57\x52\x31\x49\x6b\x57','\x57\x36\x2f\x63\x56\x61\x2f\x64\x51\x76\x68\x64\x52\x30\x4b','\x72\x4e\x65\x6f\x57\x4f\x75\x72','\x57\x34\x58\x51\x79\x43\x6b\x2b\x57\x51\x78\x64\x54\x38\x6b\x67\x57\x52\x30','\x6d\x65\x58\x73\x57\x4f\x42\x63\x4d\x72\x5a\x64\x4a\x43\x6b\x67','\x6b\x33\x66\x54\x57\x51\x47\x6b\x44\x57','\x57\x51\x2f\x63\x47\x6d\x6b\x7a\x74\x71','\x70\x78\x6e\x33\x57\x51\x69\x42','\x57\x4f\x30\x48\x42\x53\x6f\x73\x65\x6d\x6b\x76\x57\x34\x6d','\x57\x4f\x46\x64\x48\x53\x6f\x67\x72\x61\x47','\x41\x6d\x6b\x64\x79\x43\x6b\x62\x6a\x43\x6b\x45\x57\x51\x66\x75','\x57\x51\x76\x46\x57\x4f\x61\x35','\x57\x51\x74\x64\x56\x38\x6f\x54\x43\x61\x52\x63\x4f\x38\x6b\x64\x57\x4f\x69','\x57\x34\x70\x64\x53\x78\x33\x64\x54\x49\x4f','\x72\x4a\x4e\x64\x53\x68\x70\x64\x4c\x6d\x6f\x76\x57\x52\x2f\x63\x54\x47','\x7a\x6d\x6b\x69\x76\x38\x6b\x65\x6b\x53\x6b\x7a\x57\x52\x72\x66','\x46\x62\x44\x4b\x6d\x57','\x57\x4f\x6c\x63\x48\x43\x6b\x34\x61\x48\x6d','\x57\x52\x4b\x72\x6b\x77\x4f','\x57\x50\x75\x6b\x43\x47\x71\x33\x57\x4f\x78\x63\x4a\x30\x34','\x57\x34\x2f\x63\x50\x76\x4b\x30\x77\x47','\x65\x61\x58\x74\x57\x34\x4f\x4f','\x57\x52\x43\x73\x6c\x68\x7a\x6e','\x6b\x31\x79\x62\x57\x35\x4f\x63\x75\x77\x4f\x57','\x76\x66\x68\x63\x56\x31\x4f\x75','\x57\x35\x38\x6f\x57\x34\x38\x41\x57\x35\x47','\x57\x52\x56\x63\x55\x53\x6b\x67\x61\x6d\x6b\x33\x57\x36\x4a\x63\x4e\x49\x47','\x74\x38\x6b\x64\x43\x6d\x6f\x32','\x79\x4e\x4b\x6e','\x6c\x65\x53\x67\x57\x35\x38\x78\x42\x61','\x57\x50\x5a\x63\x50\x6d\x6b\x33\x6f\x6d\x6b\x45','\x57\x34\x5a\x63\x54\x68\x61\x50\x42\x57','\x57\x34\x70\x64\x49\x30\x74\x64\x53\x59\x33\x63\x52\x6d\x6f\x55\x57\x4f\x30','\x72\x73\x4a\x64\x55\x33\x71','\x57\x4f\x38\x6b\x76\x58\x75\x50\x57\x50\x4a\x63\x4d\x68\x4f','\x57\x50\x78\x63\x4e\x38\x6b\x5a\x6a\x47\x4a\x64\x4a\x6d\x6f\x30\x57\x51\x53','\x69\x75\x76\x4e\x57\x50\x46\x63\x49\x61\x68\x64\x49\x53\x6b\x78','\x79\x64\x4b\x55\x71\x6d\x6b\x75\x57\x36\x4e\x64\x4d\x53\x6b\x30','\x65\x53\x6b\x36\x57\x52\x70\x63\x54\x33\x69','\x57\x36\x62\x47\x57\x52\x4f\x79\x57\x50\x38','\x75\x62\x4f\x41\x41\x38\x6b\x35','\x57\x37\x38\x50\x74\x6d\x6f\x44\x79\x74\x6c\x64\x48\x53\x6f\x6b','\x45\x68\x71\x30\x61\x6d\x6f\x55','\x57\x36\x5a\x64\x50\x43\x6b\x66\x57\x34\x74\x63\x4d\x74\x4b','\x74\x47\x4e\x64\x54\x53\x6b\x50\x57\x4f\x43\x33','\x57\x34\x30\x66\x57\x37\x75\x78\x57\x35\x30','\x57\x37\x54\x46\x67\x65\x38\x51\x57\x51\x43\x7a\x77\x71','\x57\x35\x72\x42\x62\x53\x6b\x75\x57\x4f\x6a\x6f','\x57\x51\x38\x77\x75\x43\x6b\x30\x63\x4d\x57','\x6a\x5a\x76\x61\x57\x37\x30\x34\x57\x34\x74\x64\x56\x71\x4f','\x57\x34\x76\x6d\x6d\x53\x6b\x43\x57\x4f\x7a\x65','\x6e\x53\x6b\x68\x57\x50\x70\x63\x49\x78\x47','\x57\x4f\x4c\x56\x57\x50\x35\x43\x63\x53\x6f\x46','\x79\x57\x6e\x33\x6e\x43\x6f\x76\x42\x77\x44\x79','\x57\x34\x37\x63\x50\x31\x47\x49\x75\x61\x57\x44\x72\x71','\x72\x53\x6b\x76\x73\x43\x6b\x6e','\x70\x76\x79\x4c\x65\x38\x6f\x31\x74\x33\x48\x73\x57\x37\x34','\x7a\x75\x4f\x58\x69\x43\x6f\x4d','\x57\x35\x68\x63\x4f\x31\x53\x50\x74\x72\x47\x68\x76\x57','\x57\x4f\x58\x4b\x57\x50\x6e\x78\x63\x38\x6f\x74\x6f\x66\x79','\x57\x51\x34\x51\x74\x74\x43\x72','\x57\x51\x5a\x63\x4b\x6d\x6b\x67\x71\x63\x37\x63\x51\x49\x78\x63\x4f\x47','\x74\x43\x6b\x6d\x43\x67\x64\x63\x51\x38\x6f\x43\x45\x30\x43','\x74\x76\x68\x63\x47\x30\x38\x4f','\x57\x4f\x44\x65\x57\x35\x53\x77\x57\x52\x6d','\x57\x37\x57\x4b\x76\x53\x6f\x77\x44\x4a\x4a\x64\x4f\x6d\x6f\x42','\x57\x35\x54\x54\x57\x52\x4f','\x66\x6d\x6f\x6e\x64\x4b\x57','\x43\x66\x6d\x64\x6e\x6d\x6f\x52','\x57\x52\x34\x44\x70\x78\x62\x52\x57\x37\x46\x64\x4a\x6d\x6b\x50','\x72\x47\x37\x64\x4e\x38\x6b\x2b\x57\x4f\x61','\x57\x36\x34\x72\x71\x53\x6f\x52\x76\x57','\x57\x37\x70\x64\x47\x4a\x79','\x57\x36\x74\x64\x4b\x43\x6f\x51\x57\x50\x30','\x57\x50\x46\x63\x48\x6d\x6b\x32\x6e\x62\x4e\x64\x53\x57','\x57\x50\x30\x67\x44\x4a\x4b\x4a','\x57\x51\x61\x4a\x57\x37\x74\x64\x56\x53\x6f\x2b\x57\x36\x72\x66','\x57\x37\x33\x64\x49\x49\x54\x36\x57\x51\x78\x64\x52\x43\x6b\x31\x61\x57','\x57\x50\x65\x78\x43\x38\x6f\x65\x57\x34\x6d\x69\x72\x65\x47\x6b\x57\x52\x46\x64\x4f\x38\x6f\x41\x57\x36\x34\x72','\x57\x37\x52\x64\x4a\x74\x66\x33\x57\x52\x70\x64\x53\x38\x6b\x57\x65\x47','\x57\x51\x47\x39\x46\x6d\x6f\x77\x6c\x71','\x57\x52\x38\x63\x74\x63\x4f\x4f','\x57\x4f\x6d\x61\x78\x38\x6f\x6a\x6b\x57','\x57\x51\x57\x4f\x73\x6d\x6b\x34\x62\x47','\x6a\x6d\x6f\x2b\x57\x50\x4f','\x57\x35\x2f\x63\x50\x30\x79\x31\x73\x47\x30\x4e\x79\x47','\x57\x52\x71\x4e\x74\x38\x6b\x5a\x62\x32\x2f\x64\x4b\x47','\x57\x51\x33\x63\x4c\x6d\x6b\x41\x74\x78\x46\x64\x56\x47','\x78\x4b\x42\x63\x4a\x31\x47\x53','\x57\x4f\x6c\x63\x47\x43\x6b\x4c\x6a\x61','\x57\x36\x6a\x68\x46\x38\x6b\x31\x57\x50\x57','\x57\x52\x34\x72\x6e\x4e\x54\x50\x57\x36\x2f\x64\x4d\x53\x6b\x73','\x57\x34\x39\x4c\x41\x38\x6b\x56\x57\x51\x70\x64\x53\x71','\x57\x4f\x71\x53\x73\x6d\x6b\x36\x64\x57','\x57\x36\x2f\x64\x4a\x61\x4c\x58\x57\x50\x56\x64\x50\x53\x6b\x4a\x6a\x71','\x57\x34\x68\x63\x4d\x49\x78\x64\x52\x6d\x6f\x73\x57\x37\x35\x34','\x57\x52\x6c\x64\x56\x6d\x6f\x65\x7a\x62\x79','\x57\x51\x35\x73\x57\x4f\x6d\x34\x57\x36\x35\x5a\x57\x37\x6d\x63','\x57\x35\x42\x64\x52\x6d\x6b\x4b\x64\x43\x6f\x76','\x71\x4a\x50\x45\x57\x36\x30\x6a\x57\x35\x72\x6a','\x42\x59\x52\x64\x55\x78\x46\x64\x54\x61','\x57\x35\x4e\x64\x48\x43\x6f\x59\x42\x4c\x46\x63\x51\x6d\x6b\x57\x57\x36\x79','\x79\x47\x44\x49\x6a\x6d\x6f\x74','\x72\x59\x58\x58\x57\x37\x47\x70\x57\x35\x30','\x57\x35\x54\x50\x79\x38\x6b\x55\x57\x51\x78\x64\x50\x47','\x66\x38\x6f\x44\x70\x75\x75\x7a\x76\x61','\x64\x64\x35\x74\x57\x34\x75\x51','\x57\x51\x61\x2b\x57\x35\x56\x64\x53\x6d\x6f\x48\x57\x36\x72\x74','\x57\x35\x76\x2b\x57\x4f\x5a\x64\x47\x38\x6b\x76','\x57\x34\x2f\x64\x47\x68\x46\x64\x51\x63\x6d','\x44\x32\x75\x41','\x57\x37\x5a\x63\x4e\x57\x4a\x64\x4a\x33\x69','\x57\x34\x37\x64\x55\x31\x52\x64\x53\x74\x4a\x63\x53\x61','\x57\x34\x62\x2f\x71\x43\x6b\x59\x57\x51\x4a\x64\x51\x53\x6b\x42\x57\x51\x34','\x57\x36\x76\x6c\x6e\x4d\x38\x65','\x77\x38\x6b\x6e\x43\x53\x6f\x6b\x64\x30\x48\x73','\x57\x35\x6e\x6b\x69\x38\x6b\x33\x57\x50\x30','\x57\x51\x44\x64\x57\x35\x43\x61\x57\x52\x71','\x75\x6d\x6f\x36\x57\x51\x64\x64\x51\x4a\x69\x59','\x57\x52\x7a\x4a\x57\x4f\x50\x45','\x66\x6d\x6f\x66\x63\x71','\x77\x6d\x6b\x57\x46\x4d\x74\x63\x55\x38\x6f\x72\x42\x33\x57','\x69\x43\x6f\x30\x57\x50\x52\x63\x51\x65\x6c\x64\x52\x71','\x6c\x4b\x47\x43\x57\x35\x4b\x65\x44\x4d\x75\x57','\x57\x35\x78\x64\x4a\x38\x6b\x49\x57\x37\x78\x63\x50\x57','\x6f\x65\x6e\x41','\x57\x35\x68\x63\x4f\x31\x53\x50\x74\x72\x47\x78\x75\x47','\x57\x35\x76\x52\x57\x52\x4b\x58\x57\x51\x7a\x49\x64\x78\x34','\x57\x52\x56\x63\x48\x38\x6b\x64\x71\x5a\x4e\x63\x4d\x57\x5a\x63\x50\x47','\x78\x64\x48\x69\x57\x35\x61\x6c','\x57\x4f\x47\x71\x7a\x57\x69\x2b\x57\x4f\x6c\x63\x48\x71','\x67\x6d\x6b\x4f\x57\x4f\x58\x6a\x57\x35\x61','\x73\x6d\x6b\x45\x41\x38\x6f\x56','\x6a\x78\x50\x4e\x57\x52\x69','\x57\x50\x79\x33\x73\x38\x6f\x76\x61\x43\x6b\x72','\x57\x52\x69\x53\x75\x6d\x6b\x2b\x64\x78\x33\x64\x47\x30\x43','\x57\x35\x47\x44\x57\x37\x79\x6c','\x45\x65\x4b\x73\x57\x4f\x4b\x65\x57\x51\x34','\x57\x37\x56\x63\x51\x4c\x43\x4e\x74\x71','\x75\x43\x6f\x2b\x57\x52\x52\x64\x52\x49\x34','\x57\x35\x37\x64\x55\x31\x4e\x64\x54\x57','\x57\x4f\x66\x6a\x66\x38\x6f\x48\x6a\x31\x65','\x57\x52\x48\x44\x57\x50\x38\x34','\x75\x67\x75\x58\x67\x38\x6f\x77','\x57\x4f\x35\x6e\x63\x43\x6f\x4e\x6d\x76\x62\x6c\x57\x35\x47','\x73\x4a\x50\x36','\x45\x4c\x6d\x68\x68\x38\x6f\x51\x57\x35\x33\x63\x4d\x71','\x57\x50\x66\x74\x57\x36\x58\x71','\x46\x32\x61\x41\x57\x50\x75','\x72\x6d\x6b\x62\x45\x68\x5a\x63\x4c\x61','\x57\x35\x54\x4c\x57\x51\x71','\x70\x73\x39\x4d\x57\x36\x65\x52\x57\x34\x4e\x64\x54\x57','\x57\x37\x2f\x63\x52\x4b\x38\x38\x78\x61','\x57\x51\x38\x5a\x78\x6d\x6f\x48\x6d\x47','\x76\x43\x6f\x53\x57\x4f\x46\x64\x4f\x5a\x79\x32\x57\x50\x50\x51','\x57\x50\x78\x63\x4e\x38\x6b\x5a\x6a\x47\x4a\x64\x49\x6d\x6f\x31\x57\x52\x53','\x57\x35\x6e\x32\x57\x51\x64\x64\x56\x61','\x76\x66\x6c\x64\x50\x30\x75\x33\x42\x43\x6f\x4c\x57\x37\x6d','\x57\x34\x38\x6e\x57\x36\x53\x67','\x57\x52\x6a\x41\x57\x51\x43\x6c\x57\x36\x6d','\x79\x4e\x4b\x53\x57\x50\x69\x73\x57\x51\x6a\x75\x57\x35\x57','\x57\x37\x56\x64\x4b\x38\x6f\x6d\x57\x52\x33\x63\x47\x71','\x6a\x5a\x39\x69\x57\x36\x65\x38','\x64\x43\x6b\x46\x57\x4f\x54\x32\x57\x35\x2f\x64\x4a\x53\x6f\x30','\x73\x68\x38\x64\x66\x43\x6f\x73','\x57\x51\x78\x64\x55\x38\x6f\x31\x43\x72\x46\x63\x50\x38\x6b\x4f\x57\x4f\x57','\x6f\x58\x62\x30\x57\x34\x75\x32','\x45\x32\x71\x6f\x64\x38\x6f\x75','\x57\x50\x35\x61\x65\x6d\x6f\x4c\x6e\x47','\x76\x32\x74\x63\x56\x4d\x75\x4d','\x57\x36\x4a\x63\x49\x57\x52\x64\x4f\x76\x6d','\x75\x61\x4e\x64\x51\x6d\x6b\x49\x57\x50\x69\x38\x41\x71','\x63\x53\x6b\x6f\x57\x4f\x31\x4a\x57\x35\x30','\x57\x4f\x47\x71\x41\x61\x71','\x57\x36\x46\x64\x50\x43\x6b\x66\x57\x34\x42\x63\x56\x74\x34\x58\x57\x51\x65','\x69\x33\x35\x4d','\x57\x37\x46\x64\x48\x49\x54\x35\x57\x50\x4a\x64\x51\x57','\x57\x37\x33\x64\x56\x6d\x6b\x64','\x76\x57\x6c\x64\x53\x38\x6b\x47\x57\x50\x57\x4f\x79\x47','\x57\x35\x71\x38\x57\x34\x4b\x69\x73\x6d\x6b\x70\x66\x67\x5a\x64\x52\x61\x52\x63\x56\x53\x6f\x56','\x57\x35\x50\x56\x41\x6d\x6b\x50\x57\x51\x6d','\x77\x53\x6b\x66\x46\x33\x65','\x46\x61\x39\x58\x6b\x43\x6f\x41\x41\x68\x50\x47','\x79\x53\x6b\x72\x76\x38\x6b\x42\x70\x53\x6b\x42\x57\x52\x62\x59','\x57\x4f\x31\x41\x57\x37\x79','\x66\x6d\x6b\x69\x57\x4f\x39\x2b\x57\x34\x52\x64\x4b\x53\x6f\x64\x57\x35\x43','\x57\x35\x53\x6c\x57\x36\x4f\x72\x57\x34\x53','\x57\x34\x58\x30\x44\x38\x6b\x33\x57\x51\x46\x64\x52\x43\x6b\x6f\x57\x52\x38','\x57\x35\x39\x32\x57\x52\x43\x7a\x57\x50\x57','\x57\x36\x6a\x6a\x57\x50\x56\x64\x4c\x6d\x6b\x38','\x57\x4f\x68\x63\x47\x6d\x6b\x33\x70\x53\x6b\x63\x57\x35\x4a\x63\x4a\x62\x34','\x62\x67\x7a\x33\x57\x51\x37\x63\x47\x47','\x57\x37\x37\x63\x52\x57\x68\x64\x4d\x43\x6f\x36','\x57\x35\x30\x2f\x57\x34\x69\x42\x57\x37\x4f','\x41\x43\x6b\x49\x43\x53\x6f\x62\x64\x71','\x63\x65\x47\x6a\x57\x35\x30\x65','\x77\x4d\x53\x42\x66\x6d\x6f\x69','\x57\x37\x46\x63\x48\x66\x46\x63\x51\x38\x6b\x48\x69\x73\x42\x64\x4a\x71','\x57\x37\x78\x64\x4b\x72\x66\x53\x57\x51\x47','\x74\x53\x6b\x71\x46\x78\x33\x63\x55\x47','\x57\x52\x62\x4b\x57\x36\x38\x6e\x57\x52\x47','\x57\x35\x5a\x63\x51\x61\x56\x64\x55\x66\x75','\x57\x35\x6e\x62\x6c\x53\x6b\x68\x57\x50\x43','\x7a\x5a\x6d\x59\x72\x57','\x57\x34\x6d\x6e\x57\x37\x57\x71','\x57\x37\x6e\x6a\x62\x4c\x4f\x66','\x68\x38\x6b\x2b\x57\x4f\x52\x63\x4f\x68\x71\x51\x57\x51\x30','\x57\x34\x57\x33\x57\x36\x6d\x63\x57\x34\x6a\x35\x57\x52\x64\x64\x4b\x57','\x57\x4f\x79\x2b\x73\x53\x6f\x65','\x75\x64\x68\x64\x55\x78\x4e\x64\x4c\x71','\x57\x37\x70\x64\x52\x38\x6b\x67\x57\x34\x79','\x57\x36\x48\x45\x66\x61','\x6e\x43\x6f\x50\x57\x52\x6c\x63\x55\x76\x6d','\x6d\x63\x35\x6f\x57\x37\x75\x54\x57\x36\x68\x64\x4f\x63\x65','\x75\x38\x6b\x70\x7a\x33\x68\x63\x4f\x53\x6f\x6a\x44\x31\x53','\x76\x6d\x6b\x74\x75\x67\x42\x63\x56\x6d\x6f\x43\x44\x57','\x57\x4f\x4c\x45\x57\x36\x54\x65\x73\x38\x6f\x30','\x69\x4e\x50\x57\x57\x51\x79\x6b\x7a\x47','\x57\x50\x31\x45\x68\x6d\x6f\x47\x6e\x4b\x54\x76\x57\x35\x71','\x67\x43\x6b\x7a\x57\x52\x4e\x63\x48\x67\x57','\x57\x4f\x72\x64\x66\x38\x6f\x76\x6f\x4b\x6e\x63','\x6c\x43\x6b\x68\x57\x52\x2f\x63\x47\x32\x57','\x6f\x30\x66\x72\x57\x4f\x43','\x57\x51\x42\x63\x4f\x6d\x6b\x74\x6a\x63\x47','\x57\x4f\x6c\x63\x47\x53\x6b\x33\x6a\x71','\x57\x37\x52\x64\x47\x64\x66\x33\x57\x50\x52\x64\x50\x47','\x57\x37\x54\x77\x73\x38\x6b\x6e\x57\x52\x79','\x57\x34\x31\x45\x6f\x65\x38\x55','\x57\x37\x5a\x64\x48\x43\x6f\x52\x57\x50\x65','\x57\x34\x52\x63\x4b\x78\x4a\x63\x51\x6d\x6b\x4c','\x57\x36\x30\x31\x76\x6d\x6f\x72\x7a\x57','\x78\x4b\x78\x63\x4f\x66\x61\x51\x72\x38\x6f\x4b\x57\x37\x79','\x42\x4c\x34\x45\x6e\x6d\x6f\x4d','\x6d\x47\x48\x70\x57\x35\x71\x32','\x77\x74\x4e\x64\x4f\x33\x37\x64\x48\x61','\x57\x52\x47\x63\x44\x63\x34\x6c','\x68\x53\x6b\x4d\x57\x50\x66\x79\x57\x35\x69','\x6a\x6d\x6f\x2f\x57\x50\x46\x63\x4f\x30\x70\x64\x4f\x72\x2f\x63\x4f\x71','\x74\x38\x6b\x66\x7a\x43\x6f\x53\x62\x31\x62\x73\x57\x36\x4b','\x57\x52\x34\x2b\x57\x37\x74\x64\x54\x57','\x6b\x75\x47\x68\x57\x35\x6d\x65','\x63\x77\x4b\x45\x57\x36\x71\x44','\x57\x37\x42\x64\x47\x4a\x75','\x57\x34\x65\x6d\x57\x37\x30','\x57\x34\x30\x37\x57\x36\x61\x6f\x57\x34\x39\x37\x57\x51\x42\x64\x4d\x57','\x72\x59\x4a\x64\x50\x4d\x74\x64\x49\x6d\x6f\x6e\x57\x52\x52\x63\x56\x61','\x57\x35\x52\x63\x51\x75\x71','\x57\x51\x68\x63\x4b\x53\x6b\x52\x57\x34\x74\x64\x4f\x43\x6f\x34\x57\x4f\x74\x63\x4d\x6d\x6b\x79\x71\x38\x6f\x49\x57\x36\x2f\x63\x47\x57','\x57\x36\x52\x63\x54\x78\x68\x63\x4c\x6d\x6b\x4a','\x57\x4f\x69\x37\x71\x38\x6f\x75\x62\x38\x6b\x67','\x57\x34\x65\x54\x75\x43\x6f\x6c\x7a\x5a\x70\x64\x4c\x43\x6f\x68','\x57\x50\x6c\x63\x47\x53\x6b\x30\x69\x58\x33\x64\x54\x71','\x6b\x6d\x6f\x38\x57\x4f\x74\x63\x55\x30\x75','\x57\x37\x6d\x4b\x73\x61','\x6b\x68\x7a\x59\x57\x52\x75\x42\x46\x61','\x57\x51\x7a\x54\x57\x4f\x61\x79\x57\x35\x57','\x70\x66\x71\x65\x57\x35\x75\x76\x46\x71','\x57\x34\x74\x63\x4b\x64\x37\x64\x48\x71','\x77\x53\x6b\x66\x42\x53\x6f\x32\x61\x30\x34','\x6c\x77\x76\x73','\x57\x34\x65\x32\x75\x43\x6f\x46\x46\x74\x33\x64\x49\x38\x6f\x6e','\x57\x37\x50\x32\x57\x52\x4e\x63\x55\x43\x6b\x30\x71\x38\x6f\x66\x57\x36\x6d','\x57\x4f\x54\x66\x66\x43\x6f\x59\x6e\x4b\x53','\x6e\x72\x4c\x6a\x57\x34\x53\x58','\x72\x49\x48\x52\x57\x37\x57\x74','\x67\x6d\x6b\x54\x57\x50\x70\x63\x54\x78\x75\x64\x57\x51\x42\x64\x52\x61','\x57\x4f\x6d\x4d\x73\x73\x6d\x31','\x57\x35\x4e\x63\x4c\x4c\x4b\x32\x73\x47\x30\x4a\x76\x71','\x57\x4f\x47\x67\x41\x58\x6d\x2b\x57\x52\x42\x63\x4b\x33\x6d','\x57\x50\x38\x78\x42\x71\x43\x56\x57\x52\x4a\x63\x4d\x67\x4b','\x77\x43\x6b\x72\x57\x34\x69','\x57\x4f\x48\x41\x57\x37\x66\x61\x76\x57','\x45\x43\x6f\x69\x57\x52\x52\x64\x51\x73\x38','\x57\x4f\x58\x61\x64\x43\x6f\x4a\x69\x76\x44\x67\x57\x34\x75','\x66\x6d\x6b\x69\x57\x4f\x39\x2b\x57\x34\x52\x64\x4b\x53\x6f\x68\x57\x34\x75','\x6c\x53\x6f\x2b\x57\x4f\x46\x63\x50\x4c\x4a\x64\x4f\x63\x4e\x63\x55\x57','\x77\x53\x6b\x48\x79\x6d\x6f\x6f\x68\x47','\x73\x30\x46\x63\x50\x77\x34\x4d','\x57\x34\x71\x6e\x57\x36\x53\x65\x57\x35\x50\x39','\x57\x51\x47\x6d\x70\x33\x31\x2f\x57\x36\x2f\x64\x4c\x53\x6b\x7a','\x68\x38\x6b\x63\x57\x50\x62\x75\x57\x35\x4e\x64\x49\x6d\x6f\x55','\x6e\x30\x7a\x72\x57\x4f\x43','\x57\x35\x5a\x64\x4d\x38\x6b\x5a\x69\x53\x6b\x61\x57\x36\x33\x63\x53\x48\x4b','\x72\x49\x48\x56','\x44\x65\x65\x32\x6a\x43\x6f\x58\x57\x34\x4a\x63\x4b\x57','\x42\x4c\x65\x79\x6a\x43\x6f\x4d','\x57\x35\x4c\x2b\x79\x53\x6b\x39\x57\x51\x70\x64\x53\x43\x6b\x44\x57\x51\x34','\x57\x37\x38\x52\x74\x6d\x6f\x72\x74\x63\x5a\x64\x48\x53\x6f\x6b','\x73\x6d\x6b\x64\x74\x53\x6f\x54\x65\x76\x4c\x74\x57\x37\x75','\x57\x52\x2f\x64\x51\x6d\x6f\x4d\x7a\x57','\x75\x53\x6b\x48\x79\x43\x6b\x41\x64\x71','\x6c\x4c\x43\x6e','\x57\x51\x57\x4f\x74\x61','\x6e\x49\x4c\x6f\x57\x37\x38\x39\x57\x37\x56\x64\x51\x5a\x4b','\x57\x52\x39\x42\x57\x52\x79\x50\x57\x37\x39\x55\x57\x37\x71\x74','\x57\x34\x4c\x72\x62\x38\x6b\x43\x57\x50\x58\x75\x63\x62\x4b','\x64\x4a\x4c\x39\x57\x35\x69\x6a','\x57\x50\x53\x45\x57\x35\x78\x64\x55\x6d\x6f\x32','\x57\x36\x42\x63\x54\x32\x6c\x63\x4d\x6d\x6b\x38','\x64\x38\x6b\x38\x57\x50\x78\x63\x4f\x77\x71','\x66\x33\x53\x4b\x57\x37\x75\x34\x78\x76\x43','\x57\x35\x64\x63\x4c\x48\x37\x64\x52\x4c\x79','\x6f\x74\x4c\x6b\x57\x37\x57\x52\x57\x35\x68\x64\x4a\x5a\x65','\x43\x78\x6d\x72\x57\x4f\x6d','\x75\x48\x37\x64\x56\x43\x6b\x4f\x57\x50\x79\x54\x46\x53\x6b\x4a','\x76\x31\x42\x63\x56\x76\x75\x32','\x64\x31\x58\x6f\x57\x52\x75\x30','\x74\x4c\x4a\x63\x48\x76\x4b\x50\x42\x38\x6f\x35\x57\x35\x65','\x65\x53\x6f\x51\x61\x30\x69\x67','\x57\x37\x64\x64\x53\x53\x6b\x6f\x57\x34\x78\x63\x49\x63\x6d\x53\x57\x51\x47','\x6c\x65\x75\x79\x57\x34\x38\x64\x44\x67\x65','\x57\x37\x31\x75\x61\x75\x34','\x57\x36\x35\x69\x68\x30\x34\x46\x57\x37\x6a\x77\x71\x71','\x57\x37\x78\x63\x50\x49\x4e\x64\x54\x75\x6c\x64\x4f\x4b\x70\x63\x4c\x57','\x57\x50\x35\x62\x57\x37\x43\x63\x57\x4f\x69','\x72\x49\x2f\x64\x50\x4e\x4e\x64\x4c\x43\x6f\x79','\x57\x35\x44\x4f\x57\x51\x61\x4b\x57\x51\x66\x34\x63\x75\x34','\x57\x34\x74\x64\x55\x4b\x74\x64\x56\x4a\x4a\x63\x50\x38\x6b\x58','\x57\x4f\x70\x63\x55\x6d\x6b\x59\x69\x71\x4f','\x57\x4f\x39\x6e\x63\x53\x6f\x4a\x61\x66\x50\x69\x57\x34\x6d','\x57\x51\x71\x43\x57\x35\x52\x64\x49\x38\x6f\x73','\x57\x51\x39\x57\x63\x6d\x6b\x62\x69\x77\x37\x63\x4c\x43\x6f\x44\x7a\x4b\x35\x49\x66\x6d\x6b\x53','\x46\x5a\x4b\x35\x71\x61','\x44\x53\x6b\x30\x41\x38\x6f\x79\x68\x57','\x75\x6d\x6b\x6a\x42\x6d\x6f\x4c\x65\x4c\x71','\x57\x36\x35\x69\x68\x30\x34\x38','\x57\x35\x4a\x63\x47\x76\x6d\x4f\x77\x49\x47\x4d','\x64\x38\x6f\x62\x66\x65\x6d\x44\x74\x57','\x75\x71\x78\x64\x4f\x53\x6b\x52','\x57\x34\x72\x50\x41\x53\x6b\x30\x57\x52\x74\x64\x55\x53\x6b\x51\x57\x52\x30','\x42\x4a\x7a\x35\x66\x38\x6f\x77','\x57\x36\x56\x63\x52\x4a\x52\x64\x55\x65\x56\x64\x51\x30\x70\x64\x51\x61','\x57\x52\x44\x6a\x57\x34\x34\x6a\x57\x52\x70\x64\x53\x6d\x6b\x2f\x57\x51\x75','\x45\x31\x34\x79\x6f\x6d\x6f\x58','\x65\x53\x6b\x57\x57\x50\x74\x63\x54\x47','\x6c\x38\x6f\x39\x57\x50\x68\x63\x51\x57','\x57\x34\x76\x48\x46\x53\x6b\x41\x57\x50\x6d','\x68\x38\x6b\x2b\x57\x4f\x52\x63\x4f\x68\x71\x51\x57\x51\x33\x64\x56\x47','\x57\x34\x78\x63\x47\x72\x74\x64\x4c\x78\x79','\x57\x52\x64\x64\x53\x53\x6f\x53\x45\x58\x43','\x7a\x62\x57\x6e\x57\x35\x64\x64\x4a\x66\x64\x64\x52\x43\x6b\x35\x70\x6d\x6f\x68\x57\x50\x56\x63\x4b\x57','\x57\x51\x48\x6a\x57\x34\x57\x6c\x57\x51\x74\x64\x52\x61','\x57\x37\x61\x32\x75\x43\x6f\x6d\x41\x47','\x57\x51\x47\x71\x79\x64\x35\x2b\x57\x36\x4e\x64\x49\x53\x6b\x74','\x57\x36\x42\x64\x51\x43\x6b\x66\x57\x34\x46\x63\x50\x64\x38\x36\x57\x51\x47','\x78\x6d\x6b\x74\x44\x61','\x6a\x6d\x6f\x2f\x57\x4f\x74\x63\x4f\x31\x46\x64\x50\x48\x38','\x57\x50\x79\x65\x43\x61\x69\x5a','\x57\x34\x72\x54\x44\x57','\x65\x53\x6b\x57\x57\x51\x6c\x64\x51\x63\x43\x4f\x57\x50\x76\x47','\x57\x35\x54\x50\x79\x43\x6b\x2b\x57\x52\x74\x64\x50\x53\x6b\x62\x57\x51\x47','\x73\x43\x6b\x7a\x79\x78\x65','\x57\x50\x64\x63\x49\x43\x6b\x2b','\x65\x6d\x6b\x68\x57\x52\x56\x63\x4d\x32\x4b','\x43\x64\x75\x5a\x72\x38\x6b\x75\x57\x37\x68\x64\x4a\x38\x6f\x52','\x57\x36\x7a\x6f\x6f\x4b\x75\x6b','\x6c\x53\x6f\x2b\x57\x50\x52\x63\x56\x65\x6c\x64\x54\x57\x2f\x63\x53\x71','\x57\x37\x5a\x64\x52\x53\x6b\x4d\x6f\x6d\x6f\x47\x62\x5a\x79','\x57\x36\x44\x59\x68\x65\x71\x52\x57\x37\x47','\x57\x34\x74\x64\x4b\x6d\x6b\x59\x6a\x6d\x6f\x30','\x44\x73\x78\x64\x55\x30\x4e\x64\x52\x71','\x57\x36\x37\x64\x49\x57\x44\x54\x57\x51\x4b','\x57\x37\x4e\x64\x4a\x59\x62\x36','\x6a\x71\x58\x6a\x57\x36\x75\x43','\x57\x34\x62\x63\x78\x38\x6b\x32\x57\x51\x30','\x41\x6d\x6b\x67\x71\x53\x6b\x42','\x57\x35\x74\x63\x4b\x64\x56\x64\x4a\x6d\x6f\x71\x57\x36\x4c\x35\x57\x37\x65','\x57\x4f\x6c\x63\x4e\x43\x6b\x32\x6b\x71\x47','\x57\x4f\x44\x34\x57\x36\x79\x39\x57\x36\x6e\x51\x78\x65\x79','\x57\x4f\x6a\x56\x57\x50\x35\x45','\x6a\x4b\x4c\x42\x57\x50\x68\x63\x4e\x5a\x46\x64\x4c\x53\x6b\x72','\x57\x52\x50\x4b\x57\x4f\x53\x52\x57\x34\x47','\x64\x53\x6f\x6e\x66\x61','\x43\x33\x4f\x58\x57\x4f\x6d\x35','\x57\x37\x64\x64\x48\x4a\x58\x54','\x57\x36\x74\x64\x4c\x38\x6f\x53\x57\x50\x4e\x63\x54\x71','\x57\x50\x69\x68\x6d\x33\x4c\x4b\x57\x37\x52\x64\x4b\x38\x6b\x66','\x73\x6d\x6f\x36\x57\x52\x5a\x64\x4f\x5a\x75','\x57\x50\x79\x33\x78\x53\x6f\x76\x63\x38\x6b\x67\x57\x35\x2f\x64\x4c\x57','\x57\x50\x74\x63\x47\x6d\x6b\x51\x6e\x61\x38','\x57\x37\x69\x47\x76\x53\x6f\x46\x7a\x5a\x71','\x42\x61\x48\x6a\x57\x36\x34\x41','\x7a\x48\x76\x74\x6e\x38\x6f\x73\x79\x32\x58\x72','\x57\x4f\x66\x6a\x57\x35\x79\x6e\x57\x52\x65','\x57\x36\x68\x63\x48\x66\x2f\x63\x55\x53\x6b\x30\x70\x48\x33\x64\x4e\x71','\x7a\x71\x4e\x64\x54\x53\x6b\x52','\x43\x53\x6b\x62\x76\x43\x6b\x43','\x57\x50\x46\x63\x53\x53\x6b\x76\x67\x38\x6b\x42','\x67\x64\x54\x52\x57\x34\x69\x74','\x76\x6d\x6f\x2b\x57\x52\x30','\x57\x51\x43\x30\x57\x37\x68\x64\x56\x6d\x6f\x36\x57\x37\x76\x79\x65\x61','\x62\x6d\x6f\x62\x66\x65\x65\x35\x73\x68\x78\x64\x4f\x61','\x57\x52\x30\x49\x57\x35\x5a\x64\x51\x38\x6f\x52\x57\x36\x62\x6f','\x57\x52\x69\x51\x75\x38\x6b\x50\x63\x57','\x57\x37\x42\x63\x4f\x66\x69\x54\x78\x71','\x57\x36\x4e\x63\x55\x66\x78\x63\x51\x43\x6b\x61','\x57\x50\x72\x6d\x57\x37\x72\x57\x77\x47','\x57\x34\x37\x64\x49\x53\x6f\x39\x57\x4f\x42\x63\x51\x61','\x69\x4b\x65\x66\x57\x35\x6d\x65\x79\x75\x65\x59','\x57\x37\x30\x51\x76\x53\x6f\x42\x43\x49\x47','\x79\x6d\x6b\x73\x71\x53\x6b\x6e\x62\x71','\x57\x36\x61\x66\x57\x35\x38\x32\x57\x36\x53','\x72\x73\x38\x71\x71\x53\x6b\x33','\x57\x51\x4f\x72\x6e\x68\x53','\x57\x35\x76\x4c\x57\x51\x71\x47\x57\x52\x66\x2f\x62\x66\x6d','\x75\x61\x33\x64\x54\x53\x6b\x51\x57\x50\x57\x59','\x41\x43\x6b\x6e\x7a\x53\x6f\x76\x69\x71','\x43\x43\x6b\x63\x74\x53\x6b\x66\x6b\x53\x6b\x66\x57\x51\x57','\x6d\x43\x6f\x45\x65\x57','\x7a\x5a\x4b\x48\x71\x43\x6b\x45\x57\x37\x75','\x57\x36\x6e\x4a\x66\x53\x6b\x32\x57\x51\x61','\x70\x4c\x6d\x4b\x44\x53\x6b\x6b\x6d\x74\x65\x6c\x57\x37\x30\x68\x6e\x33\x78\x63\x49\x43\x6f\x37','\x57\x51\x34\x76\x6b\x4d\x31\x2f\x57\x37\x46\x64\x4d\x53\x6f\x77','\x57\x51\x57\x65\x6b\x4e\x6a\x5a','\x57\x37\x61\x47\x43\x43\x6f\x43\x79\x61','\x57\x36\x46\x64\x49\x38\x6f\x2f\x57\x4f\x65','\x57\x36\x6c\x64\x4a\x43\x6f\x36\x57\x50\x61','\x57\x34\x6a\x53\x57\x52\x75\x31','\x57\x35\x6e\x78\x61\x68\x4f\x6a','\x57\x4f\x66\x46\x6a\x53\x6f\x52\x6d\x4b\x31\x65\x57\x35\x4b','\x57\x35\x78\x63\x52\x66\x75\x62\x45\x71','\x70\x78\x7a\x35\x57\x51\x38\x46\x79\x4e\x4b','\x57\x37\x62\x75\x57\x51\x56\x64\x54\x38\x6b\x32\x42\x38\x6f\x70','\x57\x35\x31\x2f\x74\x53\x6b\x59\x57\x51\x4b','\x57\x37\x70\x64\x47\x43\x6f\x33\x57\x50\x61','\x57\x35\x37\x63\x4b\x32\x2f\x63\x53\x43\x6b\x6e','\x57\x51\x6e\x78\x57\x50\x6d\x32\x57\x36\x6d','\x57\x4f\x69\x67\x45\x43\x6f\x73\x66\x47','\x57\x35\x30\x53\x44\x6d\x6f\x63\x79\x47','\x43\x66\x53\x7a','\x57\x36\x31\x65\x62\x30\x34\x39\x57\x36\x35\x71\x77\x71','\x73\x58\x52\x64\x56\x43\x6b\x39','\x77\x31\x4e\x63\x52\x76\x38\x36\x41\x38\x6f\x2f\x57\x37\x43','\x78\x76\x37\x63\x55\x76\x30\x33','\x57\x36\x4a\x64\x47\x63\x50\x53\x57\x4f\x4b','\x68\x4a\x72\x70\x57\x34\x79\x34','\x43\x78\x6d\x72\x57\x4f\x6d\x2f\x57\x51\x39\x74\x57\x34\x47','\x75\x72\x5a\x64\x54\x6d\x6b\x4e\x57\x50\x61\x36','\x57\x4f\x66\x6a\x57\x36\x58\x66\x73\x38\x6f\x72\x57\x4f\x70\x63\x4d\x71','\x45\x4e\x6d\x72\x57\x4f\x65\x75\x57\x51\x6d','\x69\x68\x48\x6e\x57\x51\x47\x7a\x79\x67\x53\x2b','\x57\x36\x68\x64\x55\x6d\x6b\x75\x70\x47','\x57\x36\x35\x65\x61\x75\x61\x4d','\x76\x43\x6b\x46\x71\x38\x6f\x57\x66\x66\x31\x79','\x64\x30\x72\x71\x57\x50\x64\x63\x47\x47','\x46\x38\x6f\x72\x57\x50\x74\x64\x47\x58\x6d','\x57\x37\x43\x52\x73\x6d\x6f\x75\x43\x4a\x2f\x64\x47\x47','\x57\x50\x70\x63\x48\x38\x6b\x5a','\x57\x4f\x34\x74\x45\x53\x6f\x5a\x65\x57','\x57\x35\x52\x63\x50\x75\x71\x45\x72\x57','\x73\x6d\x6b\x64\x44\x53\x6f\x4a\x63\x4e\x31\x76\x57\x34\x69','\x45\x57\x4c\x41\x6b\x6d\x6f\x6d\x79\x78\x54\x38','\x7a\x5a\x75\x4e\x78\x43\x6b\x43\x57\x37\x68\x64\x4b\x6d\x6f\x72','\x57\x34\x74\x64\x55\x31\x52\x64\x47\x74\x64\x63\x56\x53\x6b\x58','\x69\x5a\x50\x54\x57\x36\x4f\x56','\x57\x51\x4b\x4f\x74\x57','\x57\x52\x4f\x43\x70\x33\x61','\x57\x51\x6c\x64\x53\x43\x6f\x70\x45\x58\x6c\x63\x51\x38\x6b\x55\x57\x52\x79','\x57\x51\x44\x44\x66\x38\x6f\x45\x6b\x47','\x6c\x68\x50\x42\x57\x51\x46\x63\x49\x47','\x57\x34\x74\x64\x50\x33\x78\x64\x4f\x63\x56\x63\x50\x43\x6b\x54','\x57\x52\x48\x78\x57\x4f\x4f\x56\x57\x36\x47','\x75\x43\x6f\x32\x57\x51\x6c\x64\x52\x64\x71\x5a\x57\x4f\x39\x57','\x57\x34\x66\x6d\x6f\x61','\x61\x43\x6f\x75\x57\x52\x70\x63\x54\x77\x79','\x67\x6d\x6b\x45\x57\x4f\x43','\x76\x6d\x6b\x74\x45\x68\x56\x63\x4f\x61','\x74\x6d\x6b\x2b\x77\x53\x6f\x76\x68\x61','\x75\x78\x6d\x72\x57\x4f\x6d','\x43\x4c\x65\x41\x57\x4f\x47\x66\x57\x4f\x6a\x45','\x57\x50\x7a\x75\x57\x36\x48\x67','\x42\x38\x6b\x56\x73\x53\x6b\x68\x6c\x38\x6b\x73','\x63\x59\x72\x2b\x57\x36\x7a\x42\x57\x35\x44\x76\x7a\x61','\x57\x4f\x4c\x45\x65\x6d\x6f\x47\x6a\x33\x58\x6a\x57\x35\x61','\x57\x4f\x72\x35\x57\x50\x75','\x57\x51\x75\x6f\x77\x43\x6b\x31\x63\x30\x64\x64\x47\x47','\x73\x38\x6b\x6b\x73\x6d\x6f\x37\x65\x61','\x70\x53\x6f\x34\x57\x50\x70\x63\x4f\x76\x46\x64\x51\x71\x4e\x63\x4a\x71','\x69\x33\x35\x51\x57\x51\x69\x77','\x6c\x32\x44\x74\x57\x52\x78\x63\x55\x57','\x57\x35\x62\x54\x57\x52\x4f\x4c','\x57\x4f\x75\x78\x57\x37\x5a\x64\x54\x43\x6f\x75','\x57\x52\x70\x64\x4a\x53\x6f\x53\x7a\x62\x64\x63\x4f\x53\x6b\x39\x57\x4f\x65','\x6b\x78\x35\x55\x57\x4f\x4b\x78\x45\x4e\x4b','\x57\x51\x47\x54\x72\x61','\x78\x68\x65\x4e\x69\x38\x6f\x6a','\x57\x35\x53\x6e\x57\x36\x4b\x67\x57\x34\x31\x48\x57\x50\x68\x64\x4b\x57','\x57\x51\x56\x63\x4d\x53\x6b\x4d\x73\x4a\x52\x63\x55\x58\x64\x63\x48\x61','\x68\x43\x6b\x53\x57\x50\x38','\x71\x5a\x58\x58\x57\x37\x71','\x57\x37\x64\x64\x4c\x53\x6f\x57\x57\x50\x70\x63\x50\x6d\x6b\x6e\x57\x35\x6c\x63\x4a\x57','\x57\x34\x5a\x64\x55\x4c\x64\x64\x55\x5a\x33\x63\x50\x43\x6b\x47\x57\x34\x47','\x57\x52\x56\x63\x53\x53\x6b\x63\x6f\x53\x6f\x37\x61\x73\x4f\x6e','\x43\x72\x43\x67\x73\x53\x6b\x79','\x57\x34\x52\x64\x55\x4c\x78\x64\x56\x49\x4f','\x57\x4f\x35\x6e\x6d\x38\x6f\x61\x66\x57','\x61\x43\x6f\x66\x66\x65\x4f\x6d\x71\x31\x33\x64\x51\x71','\x77\x6d\x6b\x79\x44\x68\x46\x63\x55\x38\x6f\x6a\x7a\x32\x43','\x57\x37\x4f\x33\x75\x43\x6f\x45\x7a\x58\x4e\x64\x49\x43\x6f\x46','\x70\x65\x30\x70\x57\x35\x69\x78\x44\x68\x43\x42','\x69\x6d\x6f\x74\x6f\x76\x71\x2f','\x57\x52\x48\x65\x57\x4f\x4b\x30\x57\x37\x4b','\x57\x36\x5a\x64\x56\x6d\x6b\x6f\x69\x53\x6f\x69','\x57\x4f\x72\x69\x57\x36\x61','\x75\x59\x33\x64\x54\x68\x70\x64\x48\x61','\x6f\x75\x39\x76\x57\x50\x68\x63\x4c\x61\x68\x64\x49\x53\x6b\x78','\x57\x35\x4c\x62\x79\x43\x6b\x63\x57\x52\x71','\x6c\x43\x6f\x4c\x64\x65\x75\x70','\x57\x37\x48\x32\x57\x51\x64\x64\x56\x53\x6b\x4e\x74\x47','\x57\x35\x31\x2b\x42\x53\x6b\x38\x57\x51\x68\x64\x50\x53\x6b\x44','\x57\x34\x5a\x64\x50\x31\x65','\x57\x52\x72\x7a\x57\x35\x65\x65','\x57\x36\x35\x6d\x61\x77\x6d\x4d\x57\x36\x4c\x6b','\x6c\x49\x7a\x2b\x57\x35\x53\x6a','\x57\x37\x70\x64\x54\x6d\x6b\x6b\x57\x35\x68\x63\x4d\x73\x69\x6a\x57\x51\x71','\x74\x43\x6b\x76\x79\x4e\x57','\x67\x6d\x6b\x62\x57\x4f\x34','\x57\x34\x58\x68\x6c\x38\x6b\x73\x57\x4f\x7a\x76','\x57\x52\x42\x63\x48\x53\x6b\x53\x74\x63\x70\x63\x54\x58\x42\x63\x4f\x47','\x57\x4f\x6d\x33\x78\x43\x6f\x71\x65\x6d\x6b\x44\x57\x35\x74\x64\x48\x57','\x41\x6d\x6b\x45\x71\x6d\x6f\x69\x6c\x6d\x6b\x73\x57\x52\x54\x75','\x57\x52\x68\x64\x55\x38\x6f\x54\x43\x71','\x57\x50\x6e\x43\x57\x50\x58\x64\x62\x61','\x57\x51\x78\x64\x55\x38\x6f\x56\x43\x71\x42\x63\x55\x53\x6b\x35\x57\x50\x65','\x57\x4f\x78\x64\x48\x6d\x6f\x7a\x42\x72\x69','\x74\x38\x6f\x36\x57\x51\x6c\x64\x51\x63\x75\x55\x57\x50\x35\x54','\x57\x50\x76\x30\x57\x36\x43\x38\x57\x52\x30','\x57\x51\x6e\x50\x57\x4f\x6e\x5a\x67\x61','\x57\x37\x50\x63\x68\x65\x34','\x57\x37\x69\x47\x77\x43\x6f\x6b\x46\x74\x78\x64\x49\x43\x6f\x7a','\x75\x31\x4e\x63\x55\x76\x4f\x2f\x41\x43\x6f\x55','\x57\x51\x78\x64\x54\x38\x6f\x4b\x45\x47\x74\x63\x4f\x53\x6b\x56\x57\x34\x38','\x57\x35\x4e\x63\x4d\x76\x61\x50\x75\x57\x30\x54\x76\x47','\x57\x4f\x75\x32\x73\x57','\x7a\x58\x72\x35\x70\x38\x6f\x76','\x57\x37\x78\x63\x52\x63\x68\x64\x51\x75\x79','\x45\x33\x38\x72','\x57\x50\x33\x63\x49\x6d\x6b\x30\x6a\x57\x4a\x64\x51\x71','\x57\x50\x4a\x63\x4b\x6d\x6b\x65\x71\x61','\x6b\x53\x6f\x4e\x6b\x65\x75\x46','\x57\x34\x76\x4e\x57\x52\x53\x5a\x57\x52\x79','\x57\x50\x4c\x76\x63\x43\x6f\x4a','\x57\x35\x31\x71\x73\x53\x6f\x36\x79\x4b\x75\x76\x57\x34\x30','\x46\x58\x6e\x4c\x6c\x57','\x57\x35\x4e\x63\x51\x30\x79\x59\x74\x61','\x57\x35\x6a\x64\x57\x52\x65\x56\x57\x52\x7a\x46\x64\x61','\x57\x37\x68\x64\x4b\x6d\x6b\x66\x57\x35\x78\x63\x51\x61','\x6b\x6d\x6f\x2f\x57\x4f\x46\x63\x50\x4b\x6c\x64\x56\x61','\x6a\x4e\x35\x54','\x46\x47\x72\x41\x6b\x43\x6f\x35','\x57\x51\x4a\x63\x49\x43\x6b\x69\x62\x74\x4f','\x57\x34\x74\x64\x50\x33\x6c\x64\x55\x5a\x46\x63\x52\x43\x6b\x47\x57\x34\x47','\x57\x36\x79\x52\x78\x53\x6f\x46\x76\x71','\x57\x50\x69\x61\x76\x61\x34\x70','\x57\x36\x4e\x64\x52\x38\x6b\x66','\x62\x4b\x6e\x6f\x57\x4f\x79','\x57\x36\x64\x64\x47\x53\x6f\x70\x57\x4f\x42\x63\x51\x71','\x57\x37\x6d\x4b\x71\x71','\x57\x51\x6e\x39\x57\x50\x43\x6d\x57\x34\x47','\x75\x71\x4e\x64\x54\x6d\x6b\x52\x57\x50\x61\x52\x7a\x43\x6b\x50'];_0x5577=function(){return _0x2ddebf;};return _0x5577();}function _0x430c8e(_0x5b0980,_0x31aa32,_0x10b601){const _0x19ef68=_0x28c0a0,_0x1b1cc3={'\x54\x43\x68\x4a\x50':function(_0x36416d,_0x2694fc){return _0x36416d instanceof _0x2694fc;},'\x49\x43\x52\x61\x76':function(_0x3edd03,_0x1db31d){return _0x3edd03(_0x1db31d);},'\x48\x50\x71\x73\x41':function(_0x4bf4d1,_0x509b99){return _0x4bf4d1(_0x509b99);},'\x43\x67\x70\x4f\x50':function(_0x4a2d6b,_0x286048,_0x69a219,_0x554c99){return _0x4a2d6b(_0x286048,_0x69a219,_0x554c99);},'\x74\x48\x4d\x61\x68':function(_0x11fc3d,_0x160010,_0x43c75b,_0xf53b92){return _0x11fc3d(_0x160010,_0x43c75b,_0xf53b92);},'\x63\x61\x4a\x46\x44':function(_0x544864,_0x2c98e7){return _0x544864(_0x2c98e7);},'\x7a\x78\x76\x6e\x65':function(_0x44ce62,_0x2b3b18,_0x55bf58){return _0x44ce62(_0x2b3b18,_0x55bf58);},'\x71\x4e\x79\x66\x6f':function(_0x35a29d,_0xd485d2){return _0x35a29d&&_0xd485d2;},'\x77\x66\x4a\x79\x76':function(_0x4a4310,_0x472753){return _0x4a4310===_0x472753;},'\x4f\x4f\x48\x61\x6f':'\x73\x63\x6f\x72\x65\x5f\x72\x61'+_0x19ef68(0x98,'\x70\x55\x70\x56'),'\x51\x46\x61\x6c\x4d':function(_0x278e0d,_0x36cc66){return _0x278e0d(_0x36cc66);},'\x43\x51\x6c\x6f\x7a':'\x69\x6e\x70\x6c\x61\x63\x65','\x78\x78\x46\x76\x65':_0x19ef68(0x328,'\x55\x24\x4f\x57'),'\x64\x62\x47\x70\x73':function(_0x1eae46,_0x3ea842){return _0x1eae46*_0x3ea842;},'\x42\x53\x76\x41\x4f':function(_0x4f6274,_0x3a2522){return _0x4f6274*_0x3a2522;},'\x50\x67\x71\x63\x71':function(_0x21a920,_0x3fe280){return _0x21a920/_0x3fe280;},'\x44\x73\x49\x64\x61':function(_0x592cb2,_0x5caea5){return _0x592cb2*_0x5caea5;},'\x78\x43\x4d\x42\x6e':function(_0xc6f31,_0x924536){return _0xc6f31>=_0x924536;},'\x70\x45\x6a\x51\x4a':function(_0x3f2f95,_0x49b180){return _0x3f2f95/_0x49b180;},'\x51\x73\x50\x71\x4a':function(_0x2f93b3,_0x166a67){return _0x2f93b3===_0x166a67;},'\x64\x71\x46\x6e\x72':_0x19ef68(0x331,'\x53\x6d\x56\x21'),'\x4c\x45\x47\x7a\x50':'\x67\x48\x59\x52\x55','\x77\x71\x57\x47\x55':function(_0xb52e2e,_0x4bacde){return _0xb52e2e<_0x4bacde;},'\x65\x46\x43\x57\x6d':function(_0x5922b4,_0x49d9a2){return _0x5922b4>_0x49d9a2;},'\x4c\x6b\x6c\x67\x55':function(_0x37734c,_0xcb81cd){return _0x37734c!=_0xcb81cd;},'\x69\x4e\x58\x6d\x6b':function(_0x41dc2d,_0x532932){return _0x41dc2d<_0x532932;},'\x67\x69\x70\x6b\x69':function(_0x5a98f2,_0x347385){return _0x5a98f2+_0x347385;},'\x77\x43\x6e\x48\x71':_0x19ef68(0x2f1,'\x6f\x49\x46\x37'),'\x7a\x66\x76\x68\x47':function(_0x475106,_0x314ee9){return _0x475106-_0x314ee9;},'\x66\x63\x72\x58\x78':function(_0x1ed29f,_0x1f118e){return _0x1ed29f!==_0x1f118e;},'\x65\x43\x54\x58\x59':function(_0x3fa397,_0x494007,_0x508c44){return _0x3fa397(_0x494007,_0x508c44);},'\x57\x4d\x49\x64\x54':function(_0x5c32b2,_0xda8fb5){return _0x5c32b2===_0xda8fb5;},'\x4e\x41\x76\x61\x66':function(_0x55a9af,_0x5bcb9d){return _0x55a9af*_0x5bcb9d;},'\x6e\x45\x47\x4d\x76':function(_0x103e3d,_0xe3788e){return _0x103e3d+_0xe3788e;},'\x55\x4b\x4e\x4d\x4a':'\x73\x74\x72\x69\x6e\x67','\x67\x61\x4b\x44\x52':function(_0x398328,_0xe412e3){return _0x398328(_0xe412e3);},'\x69\x65\x50\x6f\x54':_0x19ef68(0x2bd,'\x55\x45\x5b\x75'),'\x4b\x59\x43\x47\x75':function(_0x1b6126){return _0x1b6126();},'\x5a\x64\x55\x42\x45':_0x19ef68(0xb5,'\x48\x45\x65\x7a'),'\x70\x52\x58\x57\x7a':_0x19ef68(0x1db,'\x53\x6d\x56\x21'),'\x66\x56\x79\x58\x57':_0x19ef68(0x38f,'\x68\x49\x68\x68'),'\x43\x67\x4d\x4e\x49':_0x19ef68(0x217,'\x47\x44\x78\x4a'),'\x6b\x6d\x69\x49\x48':function(_0x2747b0,_0x4842da){return _0x2747b0!==_0x4842da;},'\x7a\x7a\x59\x48\x50':'\x73\x65\x6c\x65\x63\x74\x69\x6f'+'\x6e','\x5a\x6d\x55\x6e\x52':function(_0x2d71a0,_0x193308){return _0x2d71a0>_0x193308;},'\x4c\x47\x72\x6a\x53':_0x19ef68(0x1a2,'\x52\x54\x4c\x4d'),'\x67\x52\x51\x6f\x41':_0x19ef68(0x287,'\x44\x7a\x62\x79'),'\x58\x65\x71\x77\x7a':function(_0x37e256,_0x4fefde){return _0x37e256>_0x4fefde;},'\x75\x7a\x42\x46\x75':_0x19ef68(0x257,'\x4a\x25\x43\x21'),'\x57\x4b\x69\x6b\x6a':function(_0x467d55,_0x5afc25){return _0x467d55!=_0x5afc25;},'\x7a\x4d\x67\x56\x41':function(_0x4b4679,_0x3d430c){return _0x4b4679<_0x3d430c;},'\x4f\x4c\x41\x4f\x65':function(_0x5117c5,_0x40121f){return _0x5117c5*_0x40121f;},'\x79\x61\x5a\x7a\x6b':_0x19ef68(0x99,'\x53\x23\x75\x30')+_0x19ef68(0x35c,'\x74\x47\x43\x35'),'\x7a\x72\x55\x5a\x4c':function(_0x594fc1,_0x358102){return _0x594fc1*_0x358102;},'\x4e\x54\x49\x6f\x6d':_0x19ef68(0x222,'\x55\x24\x4f\x57')},_0x500a73=Array[_0x19ef68(0x2ed,'\x55\x58\x70\x5a')](_0x5b0980)?_0x5b0980:[],_0x4b01d6=_0x10b601&&_0x10b601[_0x19ef68(0x3a1,'\x68\x49\x68\x68')+_0x19ef68(0xb3,'\x53\x6d\x56\x21')]?_0x10b601[_0x19ef68(0x36c,'\x53\x6d\x56\x21')+_0x19ef68(0x383,'\x66\x57\x41\x7a')]:new Set(),_0x1547de=!!(_0x10b601&&_0x10b601[_0x19ef68(0x3b4,'\x54\x37\x53\x45')+_0x19ef68(0x1dc,'\x71\x45\x55\x66')]),_0x549377=_0x10b601&&typeof _0x10b601[_0x19ef68(0x167,'\x4a\x25\x43\x21')+_0x19ef68(0x262,'\x70\x68\x5b\x45')]===_0x1b1cc3[_0x19ef68(0x2cf,'\x45\x45\x6f\x6d')]?_0x10b601['\x70\x72\x65\x66\x65\x72\x72\x65'+_0x19ef68(0x268,'\x54\x37\x53\x45')]:null,_0x3e7175=_0x10b601&&_0x10b601[_0x19ef68(0xcb,'\x57\x49\x5b\x68')+_0x19ef68(0x3c6,'\x58\x59\x74\x74')]?_0x10b601[_0x19ef68(0x2fb,'\x49\x77\x74\x59')+_0x19ef68(0x356,'\x70\x55\x70\x56')]:null,_0x4af34a=_0x10b601&&Array[_0x19ef68(0x1a9,'\x23\x58\x5d\x26')](_0x10b601['\x63\x61\x70\x61\x62\x69\x6c\x69'+_0x19ef68(0xf6,'\x35\x73\x61\x31')])?_0x10b601[_0x19ef68(0x221,'\x55\x45\x5b\x75')+_0x19ef68(0x387,'\x54\x37\x53\x45')]:[],_0x40186d=_0x10b601&&Number[_0x19ef68(0x2b4,'\x48\x7a\x50\x56')](Number(_0x10b601[_0x19ef68(0x163,'\x57\x49\x5b\x68')+_0x19ef68(0x3a0,'\x72\x58\x21\x45')]))?_0x1b1cc3[_0x19ef68(0x2a8,'\x35\x73\x61\x31')](Number,_0x10b601['\x6e\x6f\x76\x65\x6c\x74\x79\x53'+'\x63\x6f\x72\x65']):null,_0xf1591d=!!(_0x10b601&&_0x10b601[_0x19ef68(0x37f,'\x36\x47\x70\x36')+_0x19ef68(0x285,'\x66\x66\x44\x2a')]),_0x443cf4={};_0x443cf4[_0x19ef68(0x27f,'\x49\x77\x74\x59')+_0x19ef68(0x15d,'\x79\x58\x67\x50')]=_0x1547de,_0x443cf4[_0x19ef68(0x3c0,'\x37\x21\x41\x31')+_0x19ef68(0x26f,'\x53\x23\x75\x30')+_0x19ef68(0x252,'\x48\x7a\x50\x56')]=_0x10b601&&_0x10b601[_0x19ef68(0x91,'\x45\x45\x6f\x6d')+_0x19ef68(0x198,'\x47\x44\x78\x4a')+_0x19ef68(0x169,'\x4a\x25\x43\x21')],_0x443cf4[_0x19ef68(0x214,'\x35\x73\x61\x31')+_0x19ef68(0x2e1,'\x26\x68\x58\x43')]=_0x500a73[_0x19ef68(0x11a,'\x4a\x25\x43\x21')],_0x443cf4[_0x19ef68(0x21b,'\x63\x54\x4a\x6d')+_0x19ef68(0x38a,'\x44\x7a\x62\x79')]=_0x10b601&&_0x10b601[_0x19ef68(0xc7,'\x47\x44\x78\x4a')+_0x19ef68(0x2ee,'\x53\x6d\x56\x21')];let _0x219d9f=_0x1b1cc3['\x67\x61\x4b\x44\x52'](_0x1a0b18,_0x443cf4);if(_0x3e7175&&_0x3e7175[_0x19ef68(0x16e,'\x66\x57\x41\x7a')]){if(_0x1b1cc3['\x77\x66\x4a\x79\x76'](_0x1b1cc3[_0x19ef68(0x2b6,'\x58\x59\x74\x74')],_0x19ef68(0x1f0,'\x5d\x2a\x44\x44'))){const _0x2b251c=_0x265daf&&_0x1b1cc3[_0x19ef68(0x3be,'\x71\x45\x55\x66')](_0x26fd29[_0x19ef68(0x326,'\x72\x58\x21\x45')+'\x6e\x65\x49\x64\x73'],_0x28193d)?_0x50f280[_0x19ef68(0x27d,'\x35\x73\x61\x31')+_0x19ef68(0x22b,'\x49\x77\x74\x59')]:new _0x440b75(),_0x5ed0db=_0x3e635d&&_0x518d56[_0x19ef68(0x1ab,'\x44\x7a\x62\x79')+_0x19ef68(0x1d3,'\x47\x44\x78\x4a')]?_0xbefd85[_0x19ef68(0x1c2,'\x68\x49\x68\x68')+_0x19ef68(0x2ae,'\x55\x45\x5b\x75')]:null,_0x3daab9=_0x45f4f0&&_0x15e1d6[_0x19ef68(0x1b4,'\x6f\x49\x46\x37')](_0x1b1cc3['\x49\x43\x52\x61\x76'](_0x5ca3f4,_0x4f29e9[_0x19ef68(0x24f,'\x43\x51\x4c\x42')+_0x19ef68(0x189,'\x71\x45\x55\x66')]))?_0x1b1cc3['\x48\x50\x71\x73\x41'](_0x23e11f,_0x52eb0a['\x74\x6f\x74\x61\x6c\x41\x74\x74'+_0x19ef68(0x208,'\x64\x6b\x39\x63')]):0x1afc+-0x1*0x589+-0x1573*0x1,_0x1809f4=_0x1b1cc3[_0x19ef68(0x178,'\x58\x59\x74\x74')](_0x2ea231,_0x5f4138[_0x19ef68(0x1f2,'\x50\x42\x75\x41')](_0x5de231)?_0x1b4186:[],_0xeca431,_0x2b251c),{selected:_0x40c732,alternatives:_0x5aaa9a,driftIntensity:_0x2ac4a6,driftMode:_0x1b531f}=_0x1b1cc3[_0x19ef68(0x3f9,'\x28\x40\x4b\x40')](_0x6a8721,_0x3b64b1,_0x44d4d8,{'\x62\x61\x6e\x6e\x65\x64\x47\x65\x6e\x65\x49\x64\x73':_0x1809f4,'\x70\x72\x65\x66\x65\x72\x72\x65\x64\x47\x65\x6e\x65\x49\x64':_0x5ed0db,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':!!_0x5020fe,'\x6d\x65\x6d\x6f\x72\x79\x45\x76\x69\x64\x65\x6e\x63\x65':_0x3daab9,'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':_0x3b4a9f[_0x19ef68(0x259,'\x48\x7a\x50\x56')](_0x52b279)?_0x2f63df:[],'\x6e\x6f\x76\x65\x6c\x74\x79\x53\x63\x6f\x72\x65':_0x265b7b[_0x19ef68(0x305,'\x28\x40\x4b\x40')](_0x217b8f(_0x4ff8da))?_0x1b1cc3[_0x19ef68(0x27c,'\x4a\x25\x43\x21')](_0xc30af5,_0x161734):null,'\x70\x6c\x61\x74\x65\x61\x75\x4f\x76\x65\x72\x72\x69\x64\x65':_0x2f784b||null}),_0x32c9e0=_0x1b1cc3['\x7a\x78\x76\x6e\x65'](_0x43c5eb,_0x54a5bb,_0x1428dc),_0x393f93=!!(_0x1b1cc3[_0x19ef68(0x1c1,'\x35\x73\x61\x31')](_0x5ed0db,_0x40c732)&&_0x40c732['\x69\x64']===_0x5ed0db),_0x4288c5=_0x1b1cc3[_0x19ef68(0xcc,'\x52\x54\x4c\x4d')](_0x1b531f,_0x19ef68(0x348,'\x52\x54\x4c\x4d')+'\x6e')?_0x1b1cc3[_0x19ef68(0x1b6,'\x6a\x28\x5a\x40')]:_0x1b531f,_0x38204f={};_0x38204f[_0x19ef68(0x321,'\x45\x45\x6f\x6d')]=_0x40c732,_0x38204f[_0x19ef68(0x340,'\x67\x35\x32\x31')]=_0x32c9e0,_0x38204f[_0x19ef68(0x40f,'\x71\x45\x55\x66')]=_0x1b3531,_0x38204f[_0x19ef68(0x19e,'\x4a\x25\x43\x21')+_0x19ef68(0x121,'\x70\x68\x5b\x45')]=_0x5aaa9a,_0x38204f[_0x19ef68(0x19f,'\x26\x68\x58\x43')+_0x19ef68(0x22d,'\x37\x6e\x48\x72')]=_0x6969e4,_0x38204f[_0x19ef68(0x10d,'\x58\x31\x42\x4b')+_0x19ef68(0x1a6,'\x45\x45\x6f\x6d')]=_0x5065fd,_0x38204f['\x64\x72\x69\x66\x74\x49\x6e\x74'+_0x19ef68(0x92,'\x72\x58\x21\x45')]=_0x2ac4a6,_0x38204f[_0x19ef68(0x37a,'\x58\x59\x74\x74')+_0x19ef68(0xab,'\x36\x47\x70\x36')]=_0x4288c5,_0x38204f[_0x19ef68(0x10b,'\x47\x44\x78\x4a')+'\x65\x64']=_0x393f93;const _0x35712b=_0x1b1cc3[_0x19ef68(0x26e,'\x6a\x28\x5a\x40')](_0x1d6b54,_0x38204f),_0x1b565f={};return _0x1b565f[_0x19ef68(0x3b7,'\x36\x47\x70\x36')+'\x47\x65\x6e\x65']=_0x40c732,_0x1b565f[_0x19ef68(0xe2,'\x47\x44\x78\x4a')+_0x19ef68(0x278,'\x48\x7a\x50\x56')+'\x73']=_0x32c9e0?[_0x32c9e0]:[],_0x1b565f[_0x19ef68(0x213,'\x6a\x28\x5a\x40')]=_0x35712b,_0x1b565f[_0x19ef68(0x2df,'\x36\x47\x70\x36')+_0x19ef68(0xbf,'\x6f\x49\x46\x37')]=_0x2ac4a6,_0x1b565f[_0x19ef68(0x3de,'\x6a\x28\x5a\x40')+_0x19ef68(0x3e3,'\x48\x45\x65\x7a')]=_0x4288c5,_0x1b565f[_0x19ef68(0x406,'\x41\x50\x6e\x72')+'\x65\x64']=_0x393f93,_0x1b565f[_0x19ef68(0x1d6,'\x44\x7a\x62\x79')+_0x19ef68(0x378,'\x4a\x25\x43\x21')]=_0x3daab9,_0x1b565f;}else _0x219d9f=Math[_0x19ef68(0x13c,'\x72\x58\x21\x45')](_0x219d9f,_0x3e7175[_0x19ef68(0x132,'\x53\x23\x75\x30')]===_0x19ef68(0x371,'\x28\x51\x49\x71')?-0x1fa*-0xc+0xaec+-0x22a3:0xf10+0x649+0x1*-0x1559+0.7);}const _0x2eeeae=_0x1547de||_0x1b1cc3[_0x19ef68(0x210,'\x36\x47\x70\x36')](_0x219d9f,-0x2e6*0x1+-0x2*0xfbf+-0x11c*-0x1f+0.15),_0x2f17b5=_0x19ef68(0x241,'\x70\x68\x5b\x45')+_0x19ef68(0x3b9,'\x70\x68\x5b\x45'),_0xb573b6=0xa*0x35e+0x17f2+-0x399e+0.8,_0x22e512=_0x1b1cc3[_0x19ef68(0x86,'\x58\x31\x42\x4b')](_0xed4a88),_0x45408e=_0x500a73[_0x19ef68(0x334,'\x36\x47\x70\x36')](_0x1dcf70=>!_0x1388fe(_0x1dcf70,_0x22e512))[_0x19ef68(0x1b1,'\x54\x37\x53\x45')](_0x3a93e6=>{const _0x3e8776=_0x19ef68;if(_0x1b1cc3[_0x3e8776(0x161,'\x71\x45\x55\x66')]!==_0x1b1cc3[_0x3e8776(0xc6,'\x23\x58\x5d\x26')])return _0x21c983&&MlzjzB[_0x3e8776(0x3dc,'\x79\x5b\x47\x25')](_0x3ec2fc[_0x3e8776(0x27e,'\x57\x49\x5b\x68')+_0x3e8776(0x1f3,'\x5d\x2a\x44\x44')],MlzjzB[_0x3e8776(0x2cc,'\x44\x7a\x62\x79')]);else{let _0x11af14=_0x1b1cc3[_0x3e8776(0x177,'\x66\x66\x44\x2a')](_0x3cac2f,_0x3a93e6,_0x31aa32);_0x11af14+=_0x1b1cc3[_0x3e8776(0x155,'\x2a\x35\x4d\x65')](_0x302210,_0x3a93e6,_0x31aa32,_0x22e512);if(_0x11af14>-0x2641+0x18bc+-0xd85*-0x1&&_0x3a93e6['\x69\x64']&&_0x1b1cc3[_0x3e8776(0x3f3,'\x23\x58\x5d\x26')](String,_0x3a93e6['\x69\x64'])[_0x3e8776(0x2c6,'\x34\x5e\x30\x5e')+'\x74\x68'](_0x2f17b5))_0x11af14*=_0xb573b6;const _0xa3b384={};return _0xa3b384[_0x3e8776(0x3d2,'\x66\x66\x44\x2a')]=_0x3a93e6,_0xa3b384[_0x3e8776(0x23f,'\x66\x57\x41\x7a')]=_0x11af14,_0xa3b384;}})[_0x19ef68(0x18f,'\x43\x51\x4c\x42')](_0x459e7a=>_0x459e7a[_0x19ef68(0x12f,'\x78\x56\x6f\x44')]>0x16e4*-0x1+0x897*-0x3+0x30a9)['\x73\x6f\x72\x74']((_0x295d35,_0x51d546)=>_0x51d546[_0x19ef68(0x141,'\x44\x7a\x62\x79')]-_0x295d35[_0x19ef68(0x2e8,'\x43\x51\x4c\x42')]);if(_0x1b1cc3['\x51\x73\x50\x71\x4a'](_0x45408e[_0x19ef68(0x3fc,'\x28\x40\x4b\x40')],0x18d1*0x1+-0x1b6e+0x29d)){if(_0x1b1cc3['\x5a\x64\x55\x42\x45']===_0x19ef68(0x2c3,'\x64\x39\x23\x5e')){const _0x35ec14={'\x43\x71\x43\x47\x47':_0x19ef68(0x2ab,'\x4a\x25\x43\x21')+'\x34','\x66\x4d\x64\x78\x5a':function(_0x589c0c,_0x417613){return _0x589c0c*_0x417613;},'\x45\x4d\x42\x65\x6b':function(_0x85f6e7,_0x14ca1a){const _0x49d9f9=_0x19ef68;return MlzjzB[_0x49d9f9(0xd3,'\x55\x24\x4f\x57')](_0x85f6e7,_0x14ca1a);},'\x62\x41\x6c\x62\x74':function(_0x1a634e,_0x581ce8){return MlzjzB['\x42\x53\x76\x41\x4f'](_0x1a634e,_0x581ce8);}};var _0x23aae0=new _0x4d4f42(_0x38aa5b['\x6b\x65\x79\x73'](_0x215828)[_0x19ef68(0x7f,'\x41\x50\x6e\x72')](_0x16f1bc[_0x19ef68(0x203,'\x66\x57\x41\x7a')](_0x595f30))),_0x1a3d90=-0x2516+0x209e+0xd*0x58,_0x5ceaa8=0x166f*0x1+-0x14a1+0x9a*-0x3,_0x5c8339=0x1ab7+-0x7*0x3d+-0x190c*0x1;_0x23aae0[_0x19ef68(0x1a5,'\x26\x68\x58\x43')](function(_0x5a17ec){const _0x43cce3=_0x19ef68,_0x462ac5=_0x35ec14[_0x43cce3(0xef,'\x50\x42\x75\x41')][_0x43cce3(0x173,'\x49\x77\x74\x59')]('\x7c');let _0x3a1c00=-0x1c88+-0x1345*-0x2+-0xa02;while(!![]){switch(_0x462ac5[_0x3a1c00++]){case'\x30':var _0x50397c=_0x33f391[_0x5a17ec]||-0x7e*0x38+0xc+0x1b84;continue;case'\x31':_0x1a3d90+=_0x35ec14[_0x43cce3(0x363,'\x4a\x25\x43\x21')](_0x50397c,_0x176bac);continue;case'\x32':_0x5ceaa8+=_0x35ec14[_0x43cce3(0x316,'\x44\x7a\x62\x79')](_0x50397c,_0x50397c);continue;case'\x33':var _0x176bac=_0x4cc4d5[_0x5a17ec]||-0xa8*-0x3+-0xb18+-0x124*-0x8;continue;case'\x34':_0x5c8339+=_0x35ec14[_0x43cce3(0x2f3,'\x37\x6e\x48\x72')](_0x176bac,_0x176bac);continue;}break;}});if(MlzjzB[_0x19ef68(0xa6,'\x28\x51\x49\x71')](_0x5ceaa8,0x19ab*-0x1+-0x4*-0x422+-0x923*-0x1)||_0x5c8339===-0x8be+-0x2*0xf06+-0x1e*-0x14b)return 0xcdc+0x1*-0x1705+-0x363*-0x3;return MlzjzB[_0x19ef68(0x8f,'\x70\x68\x5b\x45')](_0x1a3d90,MlzjzB[_0x19ef68(0x346,'\x34\x5e\x30\x5e')](_0x1eec0a['\x73\x71\x72\x74'](_0x5ceaa8),_0x3a21c8[_0x19ef68(0x9d,'\x64\x39\x23\x5e')](_0x5c8339)));}else{const _0x34c007=_0x500a73[_0x19ef68(0xae,'\x66\x66\x44\x2a')](_0x103d52=>_0x103d52&&_0x103d52['\x69\x64']&&String(_0x103d52['\x69\x64'])[_0x19ef68(0x28f,'\x68\x49\x68\x68')+'\x74\x68'](_0x2f17b5)&&!_0x4b01d6[_0x19ef68(0xd5,'\x66\x57\x41\x7a')](_0x103d52['\x69\x64'])&&!_0x1388fe(_0x103d52,_0x22e512));if(_0x34c007){const _0x3eadee={};return _0x3eadee['\x73\x65\x6c\x65\x63\x74\x65\x64']=_0x34c007,_0x3eadee[_0x19ef68(0x108,'\x63\x54\x4a\x6d')+_0x19ef68(0x361,'\x48\x45\x65\x7a')]=[],_0x3eadee[_0x19ef68(0xa4,'\x63\x54\x4a\x6d')+_0x19ef68(0x1c8,'\x66\x66\x44\x2a')]=_0x219d9f,_0x3eadee[_0x19ef68(0x174,'\x52\x54\x4c\x4d')+'\x65']='\x64\x69\x73\x74\x69\x6c\x6c\x65'+'\x64\x5f\x66\x61\x6c\x6c\x62\x61'+'\x63\x6b',_0x3eadee;}const _0x4daeeb={};return _0x4daeeb[_0x19ef68(0x114,'\x54\x37\x53\x45')]=null,_0x4daeeb[_0x19ef68(0x342,'\x4b\x6e\x49\x33')+_0x19ef68(0x1fa,'\x34\x5e\x30\x5e')]=[],_0x4daeeb[_0x19ef68(0x128,'\x64\x6b\x39\x63')+'\x65\x6e\x73\x69\x74\x79']=_0x219d9f,_0x4daeeb['\x64\x72\x69\x66\x74\x4d\x6f\x64'+'\x65']=_0x1b1cc3[_0x19ef68(0x260,'\x43\x51\x4c\x42')],_0x4daeeb;}}const _0x29df32=0x1*-0x22dc+0x1680+0xc5d+0.5;if(_0x549377&&!(_0x3e7175&&_0x3e7175[_0x19ef68(0x382,'\x5d\x2a\x44\x44')])){const _0x5f0ab7=_0x45408e[_0x19ef68(0x1e5,'\x68\x49\x68\x68')+'\x78'](_0x5f42ff=>_0x5f42ff[_0x19ef68(0x220,'\x28\x40\x4b\x40')]&&_0x5f42ff[_0x19ef68(0x142,'\x57\x49\x5b\x68')]['\x69\x64']===_0x549377);_0x1b1cc3[_0x19ef68(0x3ac,'\x6f\x49\x46\x37')](_0x5f0ab7,-0x1430+0x4ca*0x3+0x12a*0x5)&&!_0x4b01d6[_0x19ef68(0x377,'\x47\x44\x78\x4a')](_0x549377)&&(_0x45408e[_0x5f0ab7]={..._0x45408e[_0x5f0ab7],'\x73\x63\x6f\x72\x65':_0x1b1cc3[_0x19ef68(0x420,'\x32\x39\x21\x5a')](_0x45408e[_0x5f0ab7][_0x19ef68(0x3c9,'\x53\x23\x75\x30')],_0x29df32)},_0x45408e[_0x19ef68(0xa8,'\x43\x51\x4c\x42')]((_0x1635ec,_0x49a94c)=>_0x49a94c[_0x19ef68(0x1b8,'\x53\x6d\x56\x21')]-_0x1635ec[_0x19ef68(0x3f1,'\x34\x5e\x30\x5e')]));}const _0x29a8e7=_0x45408e[_0x19ef68(0x18b,'\x72\x58\x21\x45')](_0x2d253b=>_0x2d253b[_0x19ef68(0x1bc,'\x70\x68\x5b\x45')]&&!_0x4b01d6[_0x19ef68(0x212,'\x4b\x6e\x49\x33')](_0x2d253b[_0x19ef68(0x398,'\x50\x42\x75\x41')]['\x69\x64']));if(_0x1b1cc3[_0x19ef68(0x412,'\x66\x57\x41\x7a')](_0x29a8e7[_0x19ef68(0x244,'\x70\x68\x5b\x45')],-0x14b2+-0x160b+0x15*0x209))return{'\x73\x65\x6c\x65\x63\x74\x65\x64':null,'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':_0x45408e[_0x19ef68(0x30a,'\x44\x7a\x62\x79')](-0x3*0x49b+0x11c3+0xa*-0x65,-0xd48*-0x1+-0x6df+0x665*-0x1)[_0x19ef68(0x3b6,'\x41\x50\x6e\x72')](_0x137fef=>_0x137fef['\x67\x65\x6e\x65']),'\x64\x72\x69\x66\x74\x49\x6e\x74\x65\x6e\x73\x69\x74\x79':_0x219d9f,'\x64\x72\x69\x66\x74\x4d\x6f\x64\x65':_0x19ef68(0x389,'\x55\x45\x5b\x75')};if(_0xf1591d&&_0x1b1cc3[_0x19ef68(0xb7,'\x23\x58\x5d\x26')](_0x29a8e7[_0x19ef68(0x3d9,'\x23\x58\x5d\x26')],0x3*-0x7df+-0x2386+0x14*0x2f5)){if(_0x1b1cc3[_0x19ef68(0x24e,'\x47\x44\x78\x4a')](_0x1b1cc3[_0x19ef68(0x134,'\x23\x58\x5d\x26')],_0x1b1cc3[_0x19ef68(0x37c,'\x45\x45\x6f\x6d')])){const _0xd2ebde=_0x29a8e7[-0x16b+-0xf49+0x10b4]['\x73\x63\x6f\x72\x65'],_0x112bbb=0x1b98+0x1400+-0x2f98+0.7,_0x4c14a0=_0x29a8e7[_0x19ef68(0xda,'\x66\x57\x41\x7a')+'\x78'](function(_0x437e58){const _0x39c083=_0x19ef68;return _0x437e58[_0x39c083(0x12b,'\x28\x51\x49\x71')]&&_0x1b1cc3[_0x39c083(0x253,'\x78\x56\x6f\x44')](_0x437e58[_0x39c083(0x235,'\x37\x6e\x48\x72')][_0x39c083(0x400,'\x68\x49\x68\x68')+_0x39c083(0x379,'\x67\x35\x32\x31')],_0x39c083(0x24b,'\x49\x77\x74\x59'))&&_0x1b1cc3[_0x39c083(0x197,'\x58\x59\x74\x74')](_0x437e58[_0x39c083(0xa1,'\x47\x44\x78\x4a')],_0xd2ebde*_0x112bbb);});if(_0x4c14a0>0x43f*-0x8+-0x17ba+0x2*0x1cd9&&_0x29a8e7[0xa*-0x161+-0x1811+0x25db][_0x19ef68(0x354,'\x58\x59\x74\x74')]&&_0x1b1cc3['\x6b\x6d\x69\x49\x48'](_0x29a8e7[-0x14c9+0x332+0x1197][_0x19ef68(0x1fe,'\x74\x47\x43\x35')][_0x19ef68(0x1a4,'\x28\x40\x4b\x40')+_0x19ef68(0xbd,'\x54\x37\x53\x45')],_0x19ef68(0x29f,'\x52\x54\x4c\x4d'))){const _0x41a3b9=_0x29a8e7[_0x4c14a0];_0x29a8e7[_0x19ef68(0x242,'\x55\x24\x4f\x57')](_0x4c14a0,0x3*0x255+-0xc5b+0x55d),_0x29a8e7[_0x19ef68(0x2e3,'\x32\x39\x21\x5a')](_0x41a3b9);}}else{const _0x15c478=_0x5cd1fd[_0x19ef68(0x26d,'\x55\x45\x5b\x75')](_0x4cf284=>_0x4cf284&&_0x4cf284['\x69\x64']&&_0x68fb08(_0x4cf284['\x69\x64'])[_0x19ef68(0x14b,'\x36\x47\x70\x36')+'\x74\x68'](_0xdc3552)&&!_0x4a2656['\x68\x61\x73'](_0x4cf284['\x69\x64'])&&!_0x5482a4(_0x4cf284,_0x2b7eb8));if(_0x15c478){const _0x2d8af2={};return _0x2d8af2[_0x19ef68(0x2f7,'\x70\x55\x70\x56')]=_0x15c478,_0x2d8af2['\x61\x6c\x74\x65\x72\x6e\x61\x74'+_0x19ef68(0x1ae,'\x53\x23\x75\x30')]=[],_0x2d8af2[_0x19ef68(0x128,'\x64\x6b\x39\x63')+_0x19ef68(0x2be,'\x48\x7a\x50\x56')]=_0xb7c938,_0x2d8af2[_0x19ef68(0x243,'\x79\x5b\x47\x25')+'\x65']=_0x19ef68(0x182,'\x66\x66\x44\x2a')+_0x19ef68(0x2fd,'\x45\x45\x6f\x6d')+'\x63\x6b',_0x2d8af2;}const _0x484706={};return _0x484706[_0x19ef68(0x421,'\x5d\x2a\x44\x44')]=null,_0x484706[_0x19ef68(0xb6,'\x49\x77\x74\x59')+_0x19ef68(0x23c,'\x55\x24\x4f\x57')]=[],_0x484706[_0x19ef68(0x2ca,'\x66\x57\x41\x7a')+_0x19ef68(0x38c,'\x66\x57\x41\x7a')]=_0x29cd0a,_0x484706[_0x19ef68(0xb0,'\x64\x6b\x39\x63')+'\x65']='\x6e\x6f\x6e\x65',_0x484706;}}let _0x4f53dc=-0x1*-0xfd3+-0x5*-0x4cf+-0x27de,_0x58a5be=_0x1b1cc3[_0x19ef68(0x28e,'\x78\x56\x6f\x44')];if(_0x1b1cc3[_0x19ef68(0x2d1,'\x64\x39\x23\x5e')](_0x219d9f,0x16fb+0x1*-0x1a89+-0x7*-0x82)&&_0x1b1cc3[_0x19ef68(0x1c7,'\x2a\x35\x4d\x65')](_0x29a8e7[_0x19ef68(0xb8,'\x68\x49\x68\x68')],-0x1832+-0xe66+0x2699)&&Math[_0x19ef68(0x34a,'\x5d\x2a\x44\x44')]()<_0x219d9f){if(_0x1b1cc3[_0x19ef68(0x3cf,'\x55\x24\x4f\x57')](_0x1b1cc3[_0x19ef68(0x3fa,'\x28\x40\x4b\x40')],_0x1b1cc3[_0x19ef68(0x89,'\x5d\x2a\x44\x44')]))return _0x3f6ce1[_0x19ef68(0x201,'\x35\x73\x61\x31')](0x19*0xc5+-0x3*-0x21a+0x1d3*-0xe,MlzjzB[_0x19ef68(0x2c9,'\x64\x39\x23\x5e')](-0x6d4+0x1681+-0xfac,_0xb03a6a[_0x19ef68(0x3db,'\x50\x42\x75\x41')](_0x18a5ed)));else{if(_0x1b1cc3[_0x19ef68(0x32e,'\x67\x35\x32\x31')](_0x4af34a[_0x19ef68(0x3c2,'\x41\x50\x6e\x72')],-0x628+-0x25a9+-0x3*-0xe9b)){const _0x20a338=_0x29a8e7[_0x19ef68(0x2d6,'\x58\x59\x74\x74')](function(_0x624dc7,_0x5dc10e){const _0x266d95=_0x19ef68;if(_0x1b1cc3[_0x266d95(0x21f,'\x48\x45\x65\x7a')](_0x1b1cc3[_0x266d95(0xe5,'\x52\x54\x4c\x4d')],_0x1b1cc3[_0x266d95(0x25d,'\x71\x45\x55\x66')])){const _0x13b069=(_0x266b4c||[])[_0x266d95(0x2e2,'\x57\x49\x5b\x68')](_0x38131e=>{const _0x4a898d=_0x266d95,_0x589dee=_0x90543b['\x69\x73\x41\x72\x72\x61\x79'](_0x38131e[_0x4a898d(0x28a,'\x44\x7a\x62\x79')])?_0x38131e[_0x4a898d(0x130,'\x26\x68\x58\x43')]:[],_0x5a661a=_0x589dee[_0x4a898d(0x113,'\x79\x58\x67\x50')]((_0x1e70af,_0x47936d)=>_0x442419(_0x47936d,_0x5caee3)?_0x1e70af+(-0x4cd+0x1*-0x14e7+0x1*0x19b5):_0x1e70af,-0x10af*-0x2+-0x47+-0xc5*0x2b),_0x4c9c50={};return _0x4c9c50[_0x4a898d(0x339,'\x79\x5b\x47\x25')]=_0x38131e,_0x4c9c50['\x73\x63\x6f\x72\x65']=_0x5a661a,_0x4c9c50;})[_0x266d95(0x300,'\x55\x58\x70\x5a')](_0x3ec38c=>_0x3ec38c[_0x266d95(0xa1,'\x47\x44\x78\x4a')]>0x1*-0x1fa1+0x1*-0x2419+0x43ba)[_0x266d95(0x158,'\x48\x45\x65\x7a')]((_0x1d9ea7,_0x2e6d17)=>_0x2e6d17[_0x266d95(0x1aa,'\x23\x58\x5d\x26')]-_0x1d9ea7[_0x266d95(0x2a4,'\x41\x50\x6e\x72')]);return _0x13b069[_0x266d95(0x3e1,'\x63\x54\x4a\x6d')]?_0x13b069[-0x5*0x3a9+-0x5d8+0x1*0x1825][_0x266d95(0x1c3,'\x63\x54\x4a\x6d')]:null;}else{const _0x5a4513=_0x624dc7[_0x266d95(0x398,'\x50\x42\x75\x41')],_0x9ead0=Array[_0x266d95(0x248,'\x43\x51\x4c\x42')](_0x5a4513[_0x266d95(0x2ce,'\x49\x77\x74\x59')+_0x266d95(0x3eb,'\x71\x45\x55\x66')])?_0x5a4513[_0x266d95(0xd2,'\x28\x40\x4b\x40')+'\x6d\x61\x74\x63\x68']:[];let _0x58bec2=0x12*0x129+-0x1165+-0x37d;for(let _0x4285c2=-0x1970+0x1e5+0x7d9*0x3;_0x1b1cc3['\x77\x71\x57\x47\x55'](_0x4285c2,_0x4af34a[_0x266d95(0x404,'\x32\x39\x21\x5a')])&&_0x4285c2<-0x63*0x9+0x85*0x43+-0x479*0x7;_0x4285c2++){const _0x1bef1a=_0x4af34a[_0x4285c2];_0x1b1cc3[_0x266d95(0x405,'\x68\x49\x68\x68')](typeof _0x1bef1a,'\x73\x74\x72\x69\x6e\x67')&&_0x9ead0['\x73\x6f\x6d\x65'](function(_0x3f9d7e){return _0xe22016(_0x3f9d7e,[_0x1bef1a]);})&&_0x58bec2++;}const _0x450be4={};return _0x450be4[_0x266d95(0x271,'\x54\x37\x53\x45')]=_0x5dc10e,_0x450be4[_0x266d95(0x28d,'\x5d\x2a\x44\x44')]=_0x58bec2,_0x450be4[_0x266d95(0x1cc,'\x4a\x25\x43\x21')+'\x65']=_0x624dc7[_0x266d95(0x139,'\x26\x68\x58\x43')],_0x450be4;}}),_0x19ced7=_0x20a338[_0x19ef68(0x15f,'\x68\x49\x68\x68')](function(_0x2eb47c){const _0x456e1b=_0x19ef68;return _0x1b1cc3[_0x456e1b(0x168,'\x53\x6d\x56\x21')](_0x2eb47c[_0x456e1b(0x374,'\x28\x40\x4b\x40')],-0x1ce7+0x11b*-0x2+0x1f1d);});if(_0x19ced7)_0x20a338[_0x19ef68(0x353,'\x79\x58\x67\x50')](function(_0x4741c7,_0x24ef66){const _0x58f067=_0x19ef68,_0x4205de={'\x68\x72\x6f\x78\x6e':function(_0x4e22e8,_0xa9dd1c){const _0x52b0b9=_0x4172;return _0x1b1cc3[_0x52b0b9(0xed,'\x53\x23\x75\x30')](_0x4e22e8,_0xa9dd1c);},'\x44\x67\x48\x4b\x73':function(_0x2dcb65,_0x59fb78){const _0x25815b=_0x4172;return _0x1b1cc3[_0x25815b(0xf1,'\x66\x66\x44\x2a')](_0x2dcb65,_0x59fb78);},'\x6a\x57\x6c\x79\x70':function(_0x293506,_0x17edda){const _0x5bd1d8=_0x4172;return _0x1b1cc3[_0x5bd1d8(0x1f9,'\x44\x7a\x62\x79')](_0x293506,_0x17edda);},'\x79\x46\x48\x4d\x47':function(_0x20911a,_0x338fdd){const _0x5d2a70=_0x4172;return _0x1b1cc3[_0x5d2a70(0x85,'\x57\x49\x5b\x68')](_0x20911a,_0x338fdd);},'\x6c\x6c\x72\x4a\x6b':function(_0x5af623,_0x54d310){const _0x3ad6e1=_0x4172;return _0x1b1cc3[_0x3ad6e1(0x247,'\x5d\x2a\x44\x44')](_0x5af623,_0x54d310);},'\x44\x6a\x41\x41\x44':_0x58f067(0x3d7,'\x52\x54\x4c\x4d')+_0x58f067(0x35f,'\x54\x37\x53\x45')};if(_0x1b1cc3[_0x58f067(0x3c7,'\x23\x58\x5d\x26')]===_0x58f067(0x1cd,'\x6a\x28\x5a\x40')){let _0x1ca040=_0x37d522[_0x58f067(0x10a,'\x45\x45\x6f\x6d')](_0x149b87[_0x58f067(0x103,'\x4b\x6e\x49\x33')],_0x4e1707[_0x58f067(0x30c,'\x79\x5b\x47\x25')](0x1fd9*0x1+-0x6ca+-0x190d,_0x29f13a[_0x58f067(0x351,'\x68\x49\x68\x68')](_0x4205de[_0x58f067(0x2a3,'\x64\x39\x23\x5e')](_0x4b810a[_0x58f067(0x289,'\x55\x58\x70\x5a')],_0x551d4a))));_0x4205de[_0x58f067(0xde,'\x58\x59\x74\x74')](_0x47206b,null)&&_0x4205de['\x6a\x57\x6c\x79\x70'](_0x47f8da,-0x1*-0x244d+-0x22ee+0xd*-0x1b+0.3)&&_0x4205de['\x79\x46\x48\x4d\x47'](_0x1ca040,_0x3adfd1[_0x58f067(0x244,'\x70\x68\x5b\x45')])&&(_0x1ca040=_0x26391a['\x6d\x69\x6e'](_0x2e0fee[_0x58f067(0x165,'\x79\x5b\x47\x25')],_0x4205de[_0x58f067(0x3fb,'\x37\x6e\x48\x72')](_0x1ca040,0x95f+0x1fcf+-0x292d))),_0x721c9b=_0x59aaf8[_0x58f067(0x17d,'\x63\x54\x4a\x6d')](_0x503e1e[_0x58f067(0x222,'\x55\x24\x4f\x57')]()*_0x1ca040),_0x4fa40b=_0x4205de[_0x58f067(0x422,'\x43\x51\x4c\x42')];}else return _0x1b1cc3[_0x58f067(0xa3,'\x28\x40\x4b\x40')](_0x24ef66[_0x58f067(0x100,'\x43\x51\x4c\x42')],_0x4741c7[_0x58f067(0x270,'\x72\x58\x21\x45')])||_0x24ef66[_0x58f067(0x32b,'\x70\x68\x5b\x45')+'\x65']-_0x4741c7[_0x58f067(0x31a,'\x28\x51\x49\x71')+'\x65'];}),_0x4f53dc=_0x20a338[-0xe17*-0x2+-0x4f*0x35+0xbd3*-0x1][_0x19ef68(0x180,'\x28\x51\x49\x71')],_0x58a5be=_0x19ef68(0x23b,'\x5d\x2a\x44\x44')+_0x19ef68(0x3ba,'\x79\x5b\x47\x25')+'\x65\x64';else{if(_0x1b1cc3[_0x19ef68(0x269,'\x43\x51\x4c\x42')](_0x1b1cc3['\x75\x7a\x42\x46\x75'],_0x1b1cc3[_0x19ef68(0x3cc,'\x53\x6d\x56\x21')])){let _0x17ddd6=Math['\x6d\x69\x6e'](_0x29a8e7[_0x19ef68(0x1d4,'\x35\x73\x61\x31')],Math[_0x19ef68(0x3fe,'\x26\x68\x58\x43')](0x22*-0x16+0xa35*0x3+-0x8b*0x33,Math['\x63\x65\x69\x6c'](_0x29a8e7[_0x19ef68(0xc1,'\x74\x47\x43\x35')]*_0x219d9f)));_0x1b1cc3[_0x19ef68(0x31f,'\x68\x49\x68\x68')](_0x40186d,null)&&_0x40186d<0x2f7*-0x1+0x2f*0x20+0x2e9*-0x1+0.3&&_0x1b1cc3[_0x19ef68(0x26c,'\x45\x45\x6f\x6d')](_0x17ddd6,_0x29a8e7[_0x19ef68(0x107,'\x71\x45\x55\x66')])&&(_0x17ddd6=Math[_0x19ef68(0x23a,'\x23\x58\x5d\x26')](_0x29a8e7['\x6c\x65\x6e\x67\x74\x68'],_0x1b1cc3['\x6e\x45\x47\x4d\x76'](_0x17ddd6,-0xc46+0x1bb*-0xc+0x210b))),_0x4f53dc=Math['\x66\x6c\x6f\x6f\x72'](_0x1b1cc3[_0x19ef68(0x399,'\x71\x45\x55\x66')](Math['\x72\x61\x6e\x64\x6f\x6d'](),_0x17ddd6)),_0x58a5be=_0x1b1cc3['\x79\x61\x5a\x7a\x6b'];}else{if(!_0x11edf0||MlzjzB[_0x19ef68(0xd8,'\x58\x59\x74\x74')](_0x10054d[_0x19ef68(0x1c4,'\x5d\x2a\x44\x44')],_0x19ef68(0x20e,'\x55\x24\x4f\x57')))return 0x46f+0x173d+-0xdd6*0x2;const _0x42c087=_0x5a4484[_0x19ef68(0x2f5,'\x74\x47\x43\x35')](_0x4a1f78[_0x19ef68(0x41e,'\x4a\x25\x43\x21')+_0x19ef68(0x195,'\x67\x35\x32\x31')])?_0xc5e283[_0x19ef68(0xbe,'\x78\x56\x6f\x44')+_0x19ef68(0xf3,'\x64\x39\x23\x5e')]:[],_0x1f5820=MlzjzB[_0x19ef68(0x34f,'\x74\x47\x43\x35')](_0x5bdbef,_0x3b543f,_0x42c1de);if(MlzjzB[_0x19ef68(0x16c,'\x64\x6b\x39\x63')](_0x42c087[_0x19ef68(0x166,'\x72\x58\x21\x45')],0xf8f+0x8d1*0x1+-0x1860))return _0x1f5820>0x65*-0x3b+-0xe*0x13d+-0x25*-0x119?MlzjzB[_0x19ef68(0x170,'\x5d\x2a\x44\x44')](_0x1f5820,-0x1d1c+0x1e*-0x121+0x3efa+0.6):-0x1708+0x22ed+-0xbe5;let _0x267c1c=0x2263+0x3*-0x946+-0x691;for(const _0x31bba2 of _0x42c087){if(_0x575412(_0x31bba2,_0x3e5a66))_0x267c1c+=-0x3d6+0x2355+-0x1f7e;}const _0xcfbe8=MlzjzB[_0x19ef68(0x288,'\x35\x73\x61\x31')](_0x1f7999(_0x5dc694,_0x520fe4),_0x283a50);return MlzjzB[_0x19ef68(0x23e,'\x52\x54\x4c\x4d')](MlzjzB[_0x19ef68(0x185,'\x32\x39\x21\x5a')](_0x267c1c,MlzjzB[_0x19ef68(0x3f2,'\x58\x31\x42\x4b')](_0x1f5820,-0x1b37+-0xb8*0x7+-0x41*-0x7f+0.6)),_0xcfbe8);}}}else{const _0x174ca9=Math[_0x19ef68(0x2e5,'\x79\x58\x67\x50')](_0x29a8e7['\x6c\x65\x6e\x67\x74\x68'],Math[_0x19ef68(0x3bd,'\x45\x45\x6f\x6d')](-0xbf4+-0x9b0+0x15a6,Math[_0x19ef68(0x18e,'\x37\x21\x41\x31')](_0x1b1cc3['\x7a\x72\x55\x5a\x4c'](_0x29a8e7[_0x19ef68(0x41a,'\x57\x49\x5b\x68')],_0x219d9f))));_0x4f53dc=Math[_0x19ef68(0x1da,'\x23\x58\x5d\x26')](Math[_0x19ef68(0x3ad,'\x50\x42\x75\x41')]()*_0x174ca9),_0x58a5be=_0x1b1cc3[_0x19ef68(0x320,'\x5d\x2a\x44\x44')];}}}return{'\x73\x65\x6c\x65\x63\x74\x65\x64':_0x29a8e7[_0x4f53dc][_0x19ef68(0x388,'\x6a\x28\x5a\x40')],'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':_0x29a8e7[_0x19ef68(0x334,'\x36\x47\x70\x36')](function(_0x22ce1a,_0x1e1a6f){return _0x1b1cc3['\x66\x63\x72\x58\x78'](_0x1e1a6f,_0x4f53dc);})[_0x19ef68(0x175,'\x23\x58\x5d\x26')](-0x7*0x509+-0x13f8+-0xb0b*-0x5,-0x3f*0x76+0x61*-0x31+0x49*0xa7)[_0x19ef68(0x1e9,'\x44\x7a\x62\x79')](_0x858dbe=>_0x858dbe[_0x19ef68(0x1fe,'\x74\x47\x43\x35')]),'\x64\x72\x69\x66\x74\x49\x6e\x74\x65\x6e\x73\x69\x74\x79':_0x219d9f,'\x64\x72\x69\x66\x74\x4d\x6f\x64\x65':_0x58a5be};}function _0x2cee3a(_0x4b4cfe,_0xa7dcc2){const _0x2fb066=_0x28c0a0,_0x41ad61=(_0x4b4cfe||[])[_0x2fb066(0x17f,'\x66\x57\x41\x7a')](_0x32ff48=>{const _0x33c68f=_0x2fb066,_0xd69d97=Array[_0x33c68f(0x259,'\x48\x7a\x50\x56')](_0x32ff48['\x74\x72\x69\x67\x67\x65\x72'])?_0x32ff48[_0x33c68f(0x40e,'\x66\x57\x41\x7a')]:[],_0x38b98c=_0xd69d97[_0x33c68f(0x411,'\x55\x24\x4f\x57')]((_0x2e0575,_0x218447)=>_0xe22016(_0x218447,_0xa7dcc2)?_0x2e0575+(-0x166a+-0xb9*-0x22+-0x227):_0x2e0575,-0x1dc7+0x29*0xdd+0x1*-0x59e),_0x5b18ad={};return _0x5b18ad[_0x33c68f(0x2f4,'\x58\x59\x74\x74')]=_0x32ff48,_0x5b18ad[_0x33c68f(0x23f,'\x66\x57\x41\x7a')]=_0x38b98c,_0x5b18ad;})[_0x2fb066(0xd7,'\x64\x6b\x39\x63')](_0xe42730=>_0xe42730[_0x2fb066(0x147,'\x28\x51\x49\x71')]>-0x49d*0x1+-0x1a09+0x2*0xf53)[_0x2fb066(0x33a,'\x71\x45\x55\x66')]((_0x2715be,_0xa08091)=>_0xa08091[_0x2fb066(0x2a9,'\x55\x45\x5b\x75')]-_0x2715be['\x73\x63\x6f\x72\x65']);return _0x41ad61[_0x2fb066(0x1a3,'\x28\x51\x49\x71')]?_0x41ad61[0x1*0x21ce+0xb4*0x2d+-0x4172][_0x2fb066(0x36a,'\x74\x47\x43\x35')]:null;}function _0x299f80(_0x58aab2,_0x2cb04b){const _0x1058f0=_0x28c0a0,_0x398611={'\x48\x44\x69\x63\x6f':function(_0x9a451d,_0x1a08b0){return _0x9a451d(_0x1a08b0);},'\x62\x54\x4f\x4c\x46':function(_0x438e18,_0xc44e76){return _0x438e18===_0xc44e76;},'\x61\x44\x44\x77\x75':_0x1058f0(0x1ca,'\x48\x7a\x50\x56'),'\x65\x62\x6d\x49\x68':function(_0x26c61a,_0x326383){return _0x26c61a>=_0x326383;},'\x43\x6f\x71\x49\x45':function(_0x56d1b1,_0x1d902c){return _0x56d1b1*_0x1d902c;},'\x56\x63\x45\x4f\x6c':function(_0x462ab7,_0x54a646){return _0x462ab7===_0x54a646;},'\x71\x6e\x41\x4a\x76':function(_0x52c4e8,_0x3104af){return _0x52c4e8===_0x3104af;},'\x6d\x48\x63\x70\x55':function(_0x4f4e65,_0x2a759d){return _0x4f4e65<_0x2a759d;},'\x48\x78\x49\x46\x69':function(_0x2b3ffb,_0x4e7f15){return _0x2b3ffb===_0x4e7f15;},'\x6e\x72\x54\x72\x44':_0x1058f0(0x2e7,'\x37\x21\x41\x31'),'\x71\x45\x70\x7a\x79':function(_0x49d061,_0x3245a3){return _0x49d061(_0x3245a3);}};if(!Array[_0x1058f0(0x124,'\x78\x56\x6f\x44')](_0x58aab2)||!Array[_0x1058f0(0x259,'\x48\x7a\x50\x56')](_0x2cb04b))return-0x1ee8+0x25e2+0x37d*-0x2;if(_0x398611['\x56\x63\x45\x4f\x6c'](_0x58aab2['\x6c\x65\x6e\x67\x74\x68'],-0x25e4+0x2612*-0x1+0x4bf6)||_0x398611[_0x1058f0(0x34d,'\x49\x77\x74\x59')](_0x2cb04b[_0x1058f0(0x301,'\x58\x59\x74\x74')],-0x997*-0x4+0x12f0+0xc1*-0x4c))return 0x9*-0x215+0x1acf+-0x812;const _0x4abc65=new Set(_0x2cb04b[_0x1058f0(0x1a8,'\x67\x35\x32\x31')](function(_0x15357e){const _0x1d46dd=_0x1058f0;return _0x398611[_0x1d46dd(0x341,'\x52\x54\x4c\x4d')](String,_0x15357e)[_0x1d46dd(0x384,'\x4a\x25\x43\x21')+_0x1d46dd(0x284,'\x79\x5b\x47\x25')]();}));let _0x4bde79=0x12a5+-0x1*0x4f7+0x1*-0xdae;for(let _0x1a8300=-0x2b*-0x7f+-0xa45+0x2*-0x588;_0x398611[_0x1058f0(0x218,'\x32\x39\x21\x5a')](_0x1a8300,_0x58aab2[_0x1058f0(0x3a7,'\x70\x55\x70\x56')]);_0x1a8300++){if(_0x398611[_0x1058f0(0x39d,'\x37\x21\x41\x31')](_0x1058f0(0x151,'\x23\x58\x5d\x26'),_0x398611[_0x1058f0(0x153,'\x66\x57\x41\x7a')]))return _0x2da10f[_0x1058f0(0x325,'\x37\x21\x41\x31')]&&OywhZC[_0x1058f0(0x3b2,'\x35\x73\x61\x31')](_0x11a087[_0x1058f0(0x142,'\x57\x49\x5b\x68')][_0x1058f0(0x327,'\x79\x58\x67\x50')+_0x1058f0(0x116,'\x70\x68\x5b\x45')],OywhZC[_0x1058f0(0x39b,'\x23\x58\x5d\x26')])&&OywhZC['\x65\x62\x6d\x49\x68'](_0x459ce3[_0x1058f0(0x216,'\x54\x37\x53\x45')],OywhZC['\x43\x6f\x71\x49\x45'](_0xe54e0f,_0x3e4743));else{if(_0x4abc65[_0x1058f0(0x2b1,'\x72\x58\x21\x45')](_0x398611[_0x1058f0(0x36e,'\x78\x56\x6f\x44')](String,_0x58aab2[_0x1a8300])[_0x1058f0(0x7a,'\x57\x49\x5b\x68')+_0x1058f0(0x1e6,'\x57\x49\x5b\x68')]()))_0x4bde79++;}}return _0x4bde79/Math['\x6d\x61\x78'](_0x58aab2[_0x1058f0(0x301,'\x58\x59\x74\x74')],-0x742*-0x5+0x1*0x2421+-0x486a);}const _0x1f2e6a=-0xe01+-0x3c7+0x11ca,_0x44c994=0x162d+-0x4e3*0x1+-0x114a+0.6;function _0x3e5a64(_0x3bcb8c,_0x31eaae,_0x3f9864){const _0x5351f1=_0x28c0a0,_0x2d0636={'\x51\x4c\x43\x4d\x78':_0x5351f1(0x1fd,'\x55\x45\x5b\x75')+'\x33','\x69\x6f\x49\x5a\x49':function(_0x19faa1,_0x4f6540){return _0x19faa1===_0x4f6540;},'\x72\x4f\x52\x70\x66':function(_0x19ecf0,_0xf2f636,_0x3713d9){return _0x19ecf0(_0xf2f636,_0x3713d9);},'\x67\x52\x70\x69\x49':function(_0x1d2f4e,_0x4d0aea,_0x481f37){return _0x1d2f4e(_0x4d0aea,_0x481f37);},'\x41\x43\x50\x74\x4a':function(_0x4b67b4,_0x38cf99){return _0x4b67b4<_0x38cf99;},'\x43\x66\x73\x41\x4f':'\x73\x74\x72\x69\x6e\x67','\x65\x6c\x4e\x65\x59':function(_0x30ced4,_0x438daf){return _0x30ced4 instanceof _0x438daf;},'\x52\x4a\x56\x56\x49':function(_0x94eac0,_0xebe905){return _0x94eac0!==_0xebe905;},'\x42\x6a\x6f\x78\x5a':_0x5351f1(0x2bb,'\x70\x55\x70\x56'),'\x6b\x77\x47\x55\x71':function(_0x219d27,_0x1ca28b){return _0x219d27(_0x1ca28b);},'\x6f\x71\x6c\x6a\x6e':function(_0x4e6025,_0x57b6fa){return _0x4e6025+_0x57b6fa;},'\x7a\x51\x76\x65\x4a':function(_0x9df35d,_0x5bd67c){return _0x9df35d<_0x5bd67c;},'\x6a\x4b\x5a\x4a\x48':function(_0x1932d7,_0x3954b8){return _0x1932d7!==_0x3954b8;},'\x41\x46\x71\x73\x53':_0x5351f1(0x3bf,'\x55\x58\x70\x5a'),'\x63\x61\x71\x41\x4e':function(_0x5135e9,_0x2908f1){return _0x5135e9>=_0x2908f1;}},_0x528b0a=_0x2d0636[_0x5351f1(0x202,'\x70\x68\x5b\x45')](_0x3f9864,Set)?new Set(_0x3f9864):new Set();if(!Array[_0x5351f1(0x8e,'\x41\x50\x6e\x72')](_0x3bcb8c)||_0x3bcb8c[_0x5351f1(0xf4,'\x67\x35\x32\x31')]===0x272+0x117*0x11+-0x19d*0xd)return _0x528b0a;const _0x3647e6={};for(let _0x424c9b=0x2*-0x52f+0x2*0xe9c+-0x12da;_0x2d0636[_0x5351f1(0x272,'\x23\x58\x5d\x26')](_0x424c9b,_0x3bcb8c['\x6c\x65\x6e\x67\x74\x68']);_0x424c9b++){if(_0x2d0636[_0x5351f1(0x335,'\x35\x73\x61\x31')](_0x2d0636[_0x5351f1(0x367,'\x79\x58\x67\x50')],_0x5351f1(0x3c3,'\x79\x58\x67\x50'))){const _0x336764=_0x3bcb8c[_0x424c9b];if(!_0x336764||!_0x336764[_0x5351f1(0x296,'\x53\x23\x75\x30')])continue;const _0x2a6b57=_0x2d0636[_0x5351f1(0x2cb,'\x66\x57\x41\x7a')](_0x299f80,_0x31eaae,_0x336764['\x74\x72\x69\x67\x67\x65\x72']||[]);if(_0x2a6b57<_0x44c994)continue;const _0x16897f=_0x2d0636['\x6b\x77\x47\x55\x71'](String,_0x336764[_0x5351f1(0x2d5,'\x66\x57\x41\x7a')]);_0x3647e6[_0x16897f]=_0x2d0636['\x6f\x71\x6c\x6a\x6e'](_0x3647e6[_0x16897f]||0x1da7+-0xd03*0x1+-0x14*0xd5,0x9ee+-0x1ff0+0x17*0xf5);}else{const _0x45da10=_0x2d0636[_0x5351f1(0x14c,'\x45\x45\x6f\x6d')][_0x5351f1(0x401,'\x45\x45\x6f\x6d')]('\x7c');let _0x2e5f1f=-0x3*0x396+-0x17b*-0xc+-0x702;while(!![]){switch(_0x45da10[_0x2e5f1f++]){case'\x30':if(_0x518068[_0x5351f1(0x212,'\x4b\x6e\x49\x33')](_0x160d79['\x69\x64']))return![];continue;case'\x31':if(!_0x41b7fd||_0x56b523[_0x5351f1(0x1ec,'\x57\x49\x5b\x68')]!==_0x5351f1(0x2d3,'\x35\x73\x61\x31')||!_0x5b40e4['\x69\x64'])return![];continue;case'\x32':if(_0x2d0636[_0x5351f1(0x3f4,'\x54\x37\x53\x45')](_0x396bce['\x69\x64'],_0xaea5e1[_0x5351f1(0x29a,'\x4b\x6e\x49\x33')+_0x5351f1(0xc4,'\x34\x5e\x30\x5e')]['\x69\x64']))return![];continue;case'\x33':return!![];case'\x34':if(_0x2d0636['\x72\x4f\x52\x70\x66'](_0x3332b4,_0x1b1473,_0x3ac3e1))return![];continue;}break;}}}const _0x3d6bdb=Object[_0x5351f1(0x112,'\x72\x58\x21\x45')](_0x3647e6);for(let _0x15db7f=-0x135a+-0x281*-0xd+-0xd33;_0x2d0636[_0x5351f1(0x3f5,'\x49\x77\x74\x59')](_0x15db7f,_0x3d6bdb[_0x5351f1(0x107,'\x71\x45\x55\x66')]);_0x15db7f++){if(_0x2d0636['\x6a\x4b\x5a\x4a\x48'](_0x2d0636['\x41\x46\x71\x73\x53'],'\x43\x69\x48\x73\x4b')){const _0x599ead=_0x28f04f['\x67\x65\x6e\x65'],_0x342a3e=_0x524c32[_0x5351f1(0x2ea,'\x58\x31\x42\x4b')](_0x599ead[_0x5351f1(0x37d,'\x35\x73\x61\x31')+_0x5351f1(0x41f,'\x53\x6d\x56\x21')])?_0x599ead[_0x5351f1(0x280,'\x63\x54\x4a\x6d')+_0x5351f1(0xd1,'\x23\x58\x5d\x26')]:[];let _0x304027=-0x975*-0x3+-0x25c7+0x968;for(let _0x156af7=-0x20c0+0x3*-0x983+0x1*0x3d49;OWkLUx[_0x5351f1(0x1bf,'\x72\x58\x21\x45')](_0x156af7,_0x525468[_0x5351f1(0x1a3,'\x28\x51\x49\x71')])&&_0x156af7<0x1*0x225b+0x3a3+-0x25f9*0x1;_0x156af7++){const _0x2b1111=_0x3ebc4c[_0x156af7];typeof _0x2b1111===OWkLUx[_0x5351f1(0x369,'\x53\x6d\x56\x21')]&&_0x342a3e[_0x5351f1(0x36f,'\x37\x21\x41\x31')](function(_0x1b67e7){const _0xadf932=_0x5351f1;return OWkLUx[_0xadf932(0xdf,'\x79\x58\x67\x50')](_0x3a3220,_0x1b67e7,[_0x2b1111]);})&&_0x304027++;}const _0x7f6ec2={};return _0x7f6ec2[_0x5351f1(0x391,'\x53\x6d\x56\x21')]=_0x46241e,_0x7f6ec2[_0x5351f1(0x3a4,'\x55\x24\x4f\x57')]=_0x304027,_0x7f6ec2[_0x5351f1(0x3f0,'\x6f\x49\x46\x37')+'\x65']=_0x3fcf37['\x73\x63\x6f\x72\x65'],_0x7f6ec2;}else _0x2d0636[_0x5351f1(0x3c5,'\x64\x39\x23\x5e')](_0x3647e6[_0x3d6bdb[_0x15db7f]],_0x1f2e6a)&&_0x528b0a[_0x5351f1(0x2a2,'\x79\x58\x67\x50')](_0x3d6bdb[_0x15db7f]);}return _0x528b0a;}function _0x4bcd6a({genes:_0x148cfd,capsules:_0x5bcdb5,signals:_0x47ffe4,memoryAdvice:_0x5958e8,driftEnabled:_0x337572,failedCapsules:_0xdc799a,capabilityGaps:_0x298cb3,noveltyScore:_0x5a37a2,plateauOverride:_0x16c046}){const _0x170939=_0x28c0a0,_0x226a22={'\x7a\x64\x77\x71\x4a':function(_0x20fd29,_0x3a6d4d){return _0x20fd29 instanceof _0x3a6d4d;},'\x54\x42\x73\x51\x6e':function(_0x27087b,_0x41a679){return _0x27087b(_0x41a679);},'\x70\x62\x6a\x6c\x46':function(_0x6e0bc5,_0x2d03a3,_0x4ad6a9,_0x5756b8){return _0x6e0bc5(_0x2d03a3,_0x4ad6a9,_0x5756b8);},'\x54\x4d\x45\x6b\x50':function(_0x2b7eb2,_0xd02994){return _0x2b7eb2(_0xd02994);},'\x6f\x63\x6c\x67\x45':function(_0x41c9f1,_0x4c8ad0){return _0x41c9f1||_0x4c8ad0;},'\x72\x51\x6f\x4d\x79':function(_0x1e2860,_0x540a9e,_0x5b3d2e){return _0x1e2860(_0x540a9e,_0x5b3d2e);},'\x46\x63\x73\x48\x66':function(_0x4ea9bd,_0x42815b){return _0x4ea9bd&&_0x42815b;},'\x6a\x49\x6d\x45\x64':function(_0x597e97,_0x479442){return _0x597e97===_0x479442;},'\x71\x72\x70\x67\x4f':_0x170939(0x1fb,'\x37\x21\x41\x31')+'\x6e','\x52\x47\x55\x78\x43':_0x170939(0x1ff,'\x45\x45\x6f\x6d')+_0x170939(0x16b,'\x45\x45\x6f\x6d'),'\x58\x75\x68\x55\x69':function(_0x12eba5,_0x460115){return _0x12eba5(_0x460115);}},_0x347dd0=_0x5958e8&&_0x226a22[_0x170939(0x15a,'\x5d\x2a\x44\x44')](_0x5958e8[_0x170939(0x27d,'\x35\x73\x61\x31')+_0x170939(0x9a,'\x48\x7a\x50\x56')],Set)?_0x5958e8['\x62\x61\x6e\x6e\x65\x64\x47\x65'+_0x170939(0x3f8,'\x79\x58\x67\x50')]:new Set(),_0x508f2f=_0x5958e8&&_0x5958e8[_0x170939(0x1bd,'\x55\x24\x4f\x57')+_0x170939(0x233,'\x55\x58\x70\x5a')]?_0x5958e8[_0x170939(0x2d8,'\x66\x66\x44\x2a')+_0x170939(0x32f,'\x79\x5b\x47\x25')]:null,_0x53fae1=_0x5958e8&&Number[_0x170939(0x97,'\x34\x5e\x30\x5e')](_0x226a22['\x54\x42\x73\x51\x6e'](Number,_0x5958e8[_0x170939(0x2f2,'\x44\x7a\x62\x79')+_0x170939(0xba,'\x28\x51\x49\x71')]))?Number(_0x5958e8['\x74\x6f\x74\x61\x6c\x41\x74\x74'+_0x170939(0x2ad,'\x47\x44\x78\x4a')]):-0x7da+0x34+0x7a6,_0x402f0c=_0x3e5a64(Array[_0x170939(0x124,'\x78\x56\x6f\x44')](_0xdc799a)?_0xdc799a:[],_0x47ffe4,_0x347dd0),{selected:_0x514083,alternatives:_0x44e3da,driftIntensity:_0xedef13,driftMode:_0x389574}=_0x226a22['\x70\x62\x6a\x6c\x46'](_0x430c8e,_0x148cfd,_0x47ffe4,{'\x62\x61\x6e\x6e\x65\x64\x47\x65\x6e\x65\x49\x64\x73':_0x402f0c,'\x70\x72\x65\x66\x65\x72\x72\x65\x64\x47\x65\x6e\x65\x49\x64':_0x508f2f,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':!!_0x337572,'\x6d\x65\x6d\x6f\x72\x79\x45\x76\x69\x64\x65\x6e\x63\x65':_0x53fae1,'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':Array['\x69\x73\x41\x72\x72\x61\x79'](_0x298cb3)?_0x298cb3:[],'\x6e\x6f\x76\x65\x6c\x74\x79\x53\x63\x6f\x72\x65':Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](Number(_0x5a37a2))?_0x226a22[_0x170939(0x416,'\x79\x5b\x47\x25')](Number,_0x5a37a2):null,'\x70\x6c\x61\x74\x65\x61\x75\x4f\x76\x65\x72\x72\x69\x64\x65':_0x226a22['\x6f\x63\x6c\x67\x45'](_0x16c046,null)}),_0x43644b=_0x226a22[_0x170939(0x3f6,'\x67\x35\x32\x31')](_0x2cee3a,_0x5bcdb5,_0x47ffe4),_0x52c765=!!(_0x226a22[_0x170939(0x29c,'\x74\x47\x43\x35')](_0x508f2f,_0x514083)&&_0x226a22[_0x170939(0x34b,'\x28\x40\x4b\x40')](_0x514083['\x69\x64'],_0x508f2f)),_0x1b7110=_0x226a22['\x6a\x49\x6d\x45\x64'](_0x389574,_0x226a22['\x71\x72\x70\x67\x4f'])?_0x226a22[_0x170939(0x80,'\x66\x66\x44\x2a')]:_0x389574,_0xef6a6={};_0xef6a6[_0x170939(0x8b,'\x43\x51\x4c\x42')]=_0x514083,_0xef6a6['\x63\x61\x70\x73\x75\x6c\x65']=_0x43644b,_0xef6a6[_0x170939(0x232,'\x72\x58\x21\x45')]=_0x47ffe4,_0xef6a6['\x61\x6c\x74\x65\x72\x6e\x61\x74'+'\x69\x76\x65\x73']=_0x44e3da,_0xef6a6[_0x170939(0x1bb,'\x78\x56\x6f\x44')+'\x76\x69\x63\x65']=_0x5958e8,_0xef6a6[_0x170939(0x277,'\x37\x6e\x48\x72')+_0x170939(0x31b,'\x2a\x35\x4d\x65')]=_0x337572,_0xef6a6[_0x170939(0x19a,'\x58\x59\x74\x74')+_0x170939(0x2b0,'\x71\x45\x55\x66')]=_0xedef13,_0xef6a6[_0x170939(0x2eb,'\x78\x56\x6f\x44')+_0x170939(0x370,'\x63\x54\x4a\x6d')]=_0x1b7110,_0xef6a6['\x6d\x65\x6d\x6f\x72\x79\x55\x73'+'\x65\x64']=_0x52c765;const _0x52c4b1=_0x226a22[_0x170939(0x39c,'\x52\x54\x4c\x4d')](_0x12c796,_0xef6a6),_0x3c0c29={};return _0x3c0c29[_0x170939(0x3b1,'\x55\x58\x70\x5a')+'\x47\x65\x6e\x65']=_0x514083,_0x3c0c29[_0x170939(0x144,'\x34\x5e\x30\x5e')+_0x170939(0x23d,'\x52\x54\x4c\x4d')+'\x73']=_0x43644b?[_0x43644b]:[],_0x3c0c29['\x73\x65\x6c\x65\x63\x74\x6f\x72']=_0x52c4b1,_0x3c0c29[_0x170939(0x162,'\x78\x56\x6f\x44')+'\x65\x6e\x73\x69\x74\x79']=_0xedef13,_0x3c0c29[_0x170939(0x2bc,'\x55\x24\x4f\x57')+_0x170939(0x3e5,'\x35\x73\x61\x31')]=_0x1b7110,_0x3c0c29['\x6d\x65\x6d\x6f\x72\x79\x55\x73'+'\x65\x64']=_0x52c765,_0x3c0c29[_0x170939(0x373,'\x6a\x28\x5a\x40')+_0x170939(0x349,'\x64\x39\x23\x5e')]=_0x53fae1,_0x3c0c29;}function _0x12c796({gene:_0x3939ce,capsule:_0xa83c23,signals:_0x1c4002,alternatives:_0x27409d,memoryAdvice:_0x8d82ab,driftEnabled:_0x3bcd1c,driftIntensity:_0x3a3a8d,selectionPath:_0x29c058,memoryUsed:_0x300e67}){const _0x2a1975=_0x28c0a0,_0x31b317={};_0x31b317[_0x2a1975(0x237,'\x70\x55\x70\x56')]=function(_0x3866a4,_0xf50a69){return _0x3866a4-_0xf50a69;},_0x31b317[_0x2a1975(0x303,'\x26\x68\x58\x43')]='\x6e\x6f\x20\x6d\x61\x74\x63\x68'+_0x2a1975(0x295,'\x34\x5e\x30\x5e')+_0x2a1975(0x307,'\x28\x51\x49\x71')+_0x2a1975(0x192,'\x55\x58\x70\x5a')+_0x2a1975(0x265,'\x67\x35\x32\x31')+_0x2a1975(0x207,'\x79\x58\x67\x50'),_0x31b317[_0x2a1975(0x1d0,'\x43\x51\x4c\x42')]=_0x2a1975(0x19b,'\x26\x68\x58\x43'),_0x31b317[_0x2a1975(0x2e9,'\x4b\x6e\x49\x33')]=function(_0x1541e7,_0x4889bd){return _0x1541e7!==_0x4889bd;},_0x31b317[_0x2a1975(0x194,'\x78\x56\x6f\x44')]=_0x2a1975(0x32c,'\x52\x54\x4c\x4d'),_0x31b317[_0x2a1975(0xf7,'\x78\x56\x6f\x44')]=_0x2a1975(0xc3,'\x47\x44\x78\x4a')+_0x2a1975(0x3c4,'\x6a\x28\x5a\x40')+_0x2a1975(0xbb,'\x5d\x2a\x44\x44')+'\x72\x75\x65',_0x31b317[_0x2a1975(0x304,'\x64\x6b\x39\x63')]=function(_0x29f813,_0x110547){return _0x29f813>_0x110547;},_0x31b317[_0x2a1975(0x101,'\x6f\x49\x46\x37')]=function(_0x29ce16,_0xa29abf){return _0x29ce16===_0xa29abf;},_0x31b317[_0x2a1975(0x14f,'\x43\x51\x4c\x42')]=_0x2a1975(0x33c,'\x23\x58\x5d\x26'),_0x31b317[_0x2a1975(0x317,'\x4a\x25\x43\x21')]=_0x2a1975(0x3ff,'\x79\x58\x67\x50')+_0x2a1975(0x1eb,'\x44\x7a\x62\x79')+_0x2a1975(0x2a1,'\x47\x44\x78\x4a')+_0x2a1975(0x1e4,'\x28\x40\x4b\x40'),_0x31b317['\x50\x42\x73\x65\x70']=_0x2a1975(0x13f,'\x55\x24\x4f\x57');const _0x3e6e01=_0x31b317,_0x44938b=[];if(_0x3939ce)_0x44938b['\x70\x75\x73\x68']('\x73\x69\x67\x6e\x61\x6c\x73\x20'+_0x2a1975(0x3ea,'\x43\x51\x4c\x42')+_0x2a1975(0x12a,'\x52\x54\x4c\x4d')+_0x2a1975(0x230,'\x4a\x25\x43\x21'));if(_0xa83c23)_0x44938b[_0x2a1975(0x2ac,'\x64\x39\x23\x5e')](_0x2a1975(0x229,'\x28\x40\x4b\x40')+'\x74\x72\x69\x67\x67\x65\x72\x20'+_0x2a1975(0x1d8,'\x41\x50\x6e\x72')+_0x2a1975(0x3a6,'\x50\x42\x75\x41'));if(!_0x3939ce)_0x44938b[_0x2a1975(0xe6,'\x36\x47\x70\x36')](_0x3e6e01[_0x2a1975(0x1d7,'\x64\x39\x23\x5e')]);if(_0x1c4002&&_0x1c4002[_0x2a1975(0x3e1,'\x63\x54\x4a\x6d')])_0x44938b[_0x2a1975(0xd6,'\x37\x6e\x48\x72')](_0x2a1975(0x2a0,'\x53\x23\x75\x30')+'\x20'+_0x1c4002[_0x2a1975(0x360,'\x37\x6e\x48\x72')]('\x2c\x20'));_0x8d82ab&&Array[_0x2a1975(0x35b,'\x28\x40\x4b\x40')](_0x8d82ab[_0x2a1975(0x40c,'\x4a\x25\x43\x21')+_0x2a1975(0xe1,'\x71\x45\x55\x66')])&&_0x8d82ab[_0x2a1975(0x9c,'\x34\x5e\x30\x5e')+_0x2a1975(0x2b7,'\x68\x49\x68\x68')][_0x2a1975(0x209,'\x49\x77\x74\x59')]&&_0x44938b['\x70\x75\x73\x68'](_0x2a1975(0x36d,'\x70\x55\x70\x56')+_0x2a1975(0xe4,'\x58\x31\x42\x4b')+_0x8d82ab[_0x2a1975(0x148,'\x44\x7a\x62\x79')+_0x2a1975(0x417,'\x57\x49\x5b\x68')][_0x2a1975(0x17c,'\x6a\x28\x5a\x40')](_0x3e6e01[_0x2a1975(0xc0,'\x53\x6d\x56\x21')]));if(_0x3bcd1c){if(_0x3e6e01['\x61\x45\x4b\x6f\x53'](_0x3e6e01[_0x2a1975(0x110,'\x26\x68\x58\x43')],_0x3e6e01[_0x2a1975(0x2e6,'\x71\x45\x55\x66')]))return _0x3e6e01[_0x2a1975(0x3e6,'\x44\x7a\x62\x79')](_0x4db795[_0x2a1975(0x385,'\x58\x31\x42\x4b')],_0x348c2f[_0x2a1975(0x407,'\x4b\x6e\x49\x33')]);else _0x44938b[_0x2a1975(0x28c,'\x2a\x35\x4d\x65')](_0x3e6e01[_0x2a1975(0x30b,'\x5d\x2a\x44\x44')]);}Number[_0x2a1975(0xfe,'\x44\x7a\x62\x79')](_0x3a3a8d)&&_0x3e6e01[_0x2a1975(0x1b5,'\x78\x56\x6f\x44')](_0x3a3a8d,0x1*-0x20ec+0x1*-0x705+-0x199*-0x19)&&_0x44938b[_0x2a1975(0x93,'\x58\x31\x42\x4b')]('\x64\x72\x69\x66\x74\x5f\x69\x6e'+_0x2a1975(0xb2,'\x48\x45\x65\x7a')+'\x20'+_0x3a3a8d[_0x2a1975(0xf8,'\x6a\x28\x5a\x40')](-0x6*-0x2+0x1c8d*0x1+-0x1c96));_0x29c058&&_0x44938b[_0x2a1975(0x41b,'\x43\x51\x4c\x42')]('\x73\x65\x6c\x65\x63\x74\x69\x6f'+_0x2a1975(0x3cb,'\x52\x54\x4c\x4d')+_0x29c058);if(_0x300e67){if(_0x3e6e01[_0x2a1975(0x9e,'\x64\x6b\x39\x63')](_0x3e6e01[_0x2a1975(0x41c,'\x64\x6b\x39\x63')],_0x2a1975(0x133,'\x78\x56\x6f\x44')))_0x44938b[_0x2a1975(0x115,'\x28\x51\x49\x71')](_0x3e6e01[_0x2a1975(0x236,'\x32\x39\x21\x5a')]);else{const _0x35210a=_0x5791b6[_0x2a1975(0x154,'\x57\x49\x5b\x68')]('\x7c')[_0x2a1975(0x18a,'\x49\x77\x74\x59')](_0x25e5ee=>_0x25e5ee[_0x2a1975(0x111,'\x43\x51\x4c\x42')]()[_0x2a1975(0x250,'\x64\x39\x23\x5e')+_0x2a1975(0x275,'\x53\x6d\x56\x21')]())[_0x2a1975(0x87,'\x52\x54\x4c\x4d')](_0x451b05);return _0x35210a[_0x2a1975(0x263,'\x79\x5b\x47\x25')](_0x117239=>_0x1fc269[_0x2a1975(0x345,'\x48\x45\x65\x7a')](_0x7f556a=>_0x7f556a[_0x2a1975(0xeb,'\x66\x57\x41\x7a')+_0x2a1975(0x28b,'\x48\x7a\x50\x56')]()[_0x2a1975(0xc8,'\x74\x47\x43\x35')](_0x117239)));}}return{'\x73\x65\x6c\x65\x63\x74\x65\x64':_0x3939ce?_0x3939ce['\x69\x64']:null,'\x72\x65\x61\x73\x6f\x6e':_0x44938b,'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':Array[_0x2a1975(0x3ee,'\x45\x45\x6f\x6d')](_0x27409d)?_0x27409d[_0x2a1975(0x1e9,'\x44\x7a\x62\x79')](_0x272e9f=>_0x272e9f['\x69\x64']):[],'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x61\x74\x68':_0x29c058||_0x3e6e01['\x50\x42\x73\x65\x70'],'\x6d\x65\x6d\x6f\x72\x79\x55\x73\x65\x64':!!_0x300e67};}const _0x179ce7=0x6*-0x197+-0x1a74+0x2401,_0x421646=0x3d9+0x14ff+-0x13e*0x14+0.3;function _0x46e269(_0x59e3ed,_0x22a9b9){const _0x27772f=_0x28c0a0,_0x42b9e3={'\x6c\x6d\x79\x41\x55':_0x27772f(0x2b3,'\x64\x6b\x39\x63'),'\x4b\x61\x73\x41\x50':function(_0x437bd3,_0x209fab){return _0x437bd3(_0x209fab);},'\x51\x58\x45\x50\x6d':function(_0x4e086b,_0x5250a2){return _0x4e086b===_0x5250a2;},'\x62\x54\x43\x7a\x7a':function(_0x212f9e,_0xd953c9){return _0x212f9e===_0xd953c9;},'\x66\x54\x56\x72\x74':function(_0x7e246e,_0x15b747){return _0x7e246e-_0x15b747;},'\x41\x6d\x42\x5a\x46':function(_0x35b49b,_0x404184){return _0x35b49b+_0x404184;},'\x44\x50\x74\x59\x71':function(_0x46f273,_0x1ef067){return _0x46f273/_0x1ef067;}},_0x5bfced=new Set((Array[_0x27772f(0x2d7,'\x48\x45\x65\x7a')](_0x59e3ed[_0x27772f(0x7c,'\x68\x49\x68\x68')+_0x27772f(0x118,'\x4b\x6e\x49\x33')])?_0x59e3ed['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x27772f(0x26b,'\x72\x58\x21\x45')]:[])[_0x27772f(0x123,'\x55\x45\x5b\x75')](function(_0x559319){const _0x3cb65e=_0x27772f;if(_0x3cb65e(0x410,'\x79\x58\x67\x50')!==_0x42b9e3[_0x3cb65e(0x1dd,'\x44\x7a\x62\x79')])return _0x42b9e3[_0x3cb65e(0x126,'\x79\x58\x67\x50')](String,_0x559319)[_0x3cb65e(0x274,'\x58\x31\x42\x4b')+_0x3cb65e(0xfb,'\x70\x68\x5b\x45')]();else _0x1205be[_0x3cb65e(0x3e4,'\x47\x44\x78\x4a')](_0x3cb65e(0x3de,'\x6a\x28\x5a\x40')+_0x3cb65e(0xad,'\x48\x7a\x50\x56')+_0x29205c);})),_0x398a14=new Set((Array['\x69\x73\x41\x72\x72\x61\x79'](_0x22a9b9[_0x27772f(0x17b,'\x43\x51\x4c\x42')+_0x27772f(0x19c,'\x79\x5b\x47\x25')])?_0x22a9b9[_0x27772f(0x26a,'\x71\x45\x55\x66')+_0x27772f(0xe0,'\x54\x37\x53\x45')]:[])[_0x27772f(0x390,'\x45\x45\x6f\x6d')](function(_0x956545){const _0x1c20ad=_0x27772f;return String(_0x956545)[_0x1c20ad(0x357,'\x41\x50\x6e\x72')+_0x1c20ad(0x25e,'\x26\x68\x58\x43')]();}));if(_0x42b9e3['\x51\x58\x45\x50\x6d'](_0x5bfced[_0x27772f(0x413,'\x35\x73\x61\x31')],0x1972+0x2*-0xa2a+-0xa*0x83)&&_0x42b9e3[_0x27772f(0x29b,'\x2a\x35\x4d\x65')](_0x398a14[_0x27772f(0x1d5,'\x55\x24\x4f\x57')],0x105*0x8+-0x11e2+0x9ba))return 0x318+-0x1d3e+0x1a26*0x1;if(_0x42b9e3[_0x27772f(0x16a,'\x53\x6d\x56\x21')](_0x5bfced[_0x27772f(0x2c5,'\x34\x5e\x30\x5e')],-0x7e0+0x1891+-0x10b1*0x1)||_0x42b9e3[_0x27772f(0xfa,'\x48\x7a\x50\x56')](_0x398a14[_0x27772f(0x11b,'\x70\x55\x70\x56')],0x3d*-0x75+-0x2223+0x3e04))return 0x15cd+0x187*-0x1+0x3*-0x6c2;let _0xf7d578=-0x269b+0x1*0xc0+0x25db;for(const _0x17b601 of _0x5bfced)if(_0x398a14[_0x27772f(0x145,'\x79\x5b\x47\x25')](_0x17b601))_0xf7d578++;const _0x4c704e=_0x42b9e3[_0x27772f(0x238,'\x79\x58\x67\x50')](_0x42b9e3[_0x27772f(0xf9,'\x55\x58\x70\x5a')](_0x5bfced['\x73\x69\x7a\x65'],_0x398a14[_0x27772f(0x359,'\x41\x50\x6e\x72')]),_0xf7d578);return _0x42b9e3[_0x27772f(0x96,'\x53\x23\x75\x30')](_0x4c704e,0x1023+0x1*0x1258+-0x4ed*0x7)?0x140a+-0x158d+0x183:_0x42b9e3[_0x27772f(0xa2,'\x78\x56\x6f\x44')](_0xf7d578,_0x4c704e);}function _0x41ca8c({genes:_0x145f93,signals:_0x3a0d1f,memoryAdvice:_0x40784c,driftEnabled:_0x388275,failedCapsules:_0x2e02f1,capabilityGaps:_0x5a79a6,noveltyScore:_0xa958e0,plateauOverride:_0x51d2b7}){const _0x403e98=_0x28c0a0,_0x1602a6={'\x79\x61\x69\x68\x5a':function(_0x5b08ee,_0x2fd979){return _0x5b08ee===_0x2fd979;},'\x74\x73\x49\x69\x6f':_0x403e98(0x402,'\x34\x5e\x30\x5e'),'\x4a\x68\x68\x55\x61':_0x403e98(0x2fe,'\x45\x45\x6f\x6d'),'\x71\x50\x6e\x76\x45':function(_0x4ab422,_0x315ad0,_0x4572f9){return _0x4ab422(_0x315ad0,_0x4572f9);},'\x4c\x64\x53\x6c\x71':function(_0x148f11,_0x48a1c0){return _0x148f11===_0x48a1c0;},'\x70\x72\x46\x6f\x50':function(_0x458bd4,_0x31a276){return _0x458bd4!==_0x31a276;},'\x76\x75\x6d\x64\x6a':_0x403e98(0x3d8,'\x64\x6b\x39\x63'),'\x56\x64\x6e\x59\x4c':_0x403e98(0x344,'\x72\x58\x21\x45'),'\x64\x54\x48\x67\x59':function(_0x40cb56,_0x5f055a,_0x569b7f,_0x8ad2a8){return _0x40cb56(_0x5f055a,_0x569b7f,_0x8ad2a8);},'\x65\x42\x6e\x4a\x73':function(_0x5cce1c,_0x41b183){return _0x5cce1c||_0x41b183;},'\x5a\x7a\x71\x51\x46':function(_0x36a31f,_0x555122){return _0x36a31f!==_0x555122;},'\x4c\x6f\x53\x76\x4f':_0x403e98(0xea,'\x54\x37\x53\x45'),'\x6d\x67\x6d\x49\x69':function(_0x459a7e,_0xc5f48d){return _0x459a7e>_0xc5f48d;},'\x54\x69\x42\x73\x4e':function(_0xfe2c0e,_0x4d971b){return _0xfe2c0e-_0x4d971b;},'\x75\x57\x47\x78\x54':function(_0x1341eb,_0x59642b){return _0x1341eb*_0x59642b;},'\x55\x6d\x54\x4b\x68':function(_0x293eb6,_0x40baa2){return _0x293eb6*_0x40baa2;},'\x4b\x72\x55\x51\x4d':function(_0x3b12be,_0x1add29){return _0x3b12be instanceof _0x1add29;},'\x78\x70\x74\x70\x45':function(_0x4bbc0e){return _0x4bbc0e();},'\x44\x73\x59\x4c\x6e':function(_0x494f28,_0x498fca){return _0x494f28<_0x498fca;},'\x74\x69\x4a\x43\x4a':function(_0x33b021,_0x87c7b3){return _0x33b021<_0x87c7b3;},'\x52\x58\x59\x4c\x66':_0x403e98(0x38e,'\x23\x58\x5d\x26'),'\x79\x6e\x42\x56\x6e':'\x44\x6b\x4c\x6d\x78','\x45\x5a\x4e\x65\x62':function(_0x96531d,_0x25595e){return _0x96531d<_0x25595e;},'\x77\x71\x74\x58\x4c':function(_0x4484ae,_0x1309d0){return _0x4484ae===_0x1309d0;},'\x52\x5a\x4c\x56\x70':_0x403e98(0x3e8,'\x54\x37\x53\x45')},_0x52d3bb={};_0x52d3bb[_0x403e98(0x1d2,'\x5d\x2a\x44\x44')]=_0x145f93,_0x52d3bb[_0x403e98(0x1de,'\x53\x6d\x56\x21')]=[],_0x52d3bb[_0x403e98(0x337,'\x4b\x6e\x49\x33')]=_0x3a0d1f,_0x52d3bb['\x6d\x65\x6d\x6f\x72\x79\x41\x64'+_0x403e98(0x403,'\x55\x45\x5b\x75')]=_0x40784c,_0x52d3bb[_0x403e98(0x196,'\x53\x6d\x56\x21')+_0x403e98(0x1f7,'\x66\x57\x41\x7a')]=_0x388275,_0x52d3bb['\x66\x61\x69\x6c\x65\x64\x43\x61'+_0x403e98(0x79,'\x23\x58\x5d\x26')]=_0x2e02f1,_0x52d3bb[_0x403e98(0x11d,'\x4a\x25\x43\x21')+_0x403e98(0xbc,'\x6f\x49\x46\x37')]=_0x5a79a6,_0x52d3bb[_0x403e98(0xa0,'\x58\x59\x74\x74')+_0x403e98(0x3a3,'\x23\x58\x5d\x26')]=_0xa958e0,_0x52d3bb[_0x403e98(0x38d,'\x55\x24\x4f\x57')+_0x403e98(0x386,'\x48\x7a\x50\x56')]=_0x51d2b7;const _0x46e8f1=_0x4bcd6a(_0x52d3bb);if(!_0x46e8f1[_0x403e98(0xe8,'\x28\x40\x4b\x40')+_0x403e98(0x2c7,'\x48\x45\x65\x7a')])return{'\x67\x65\x6e\x65\x73':[],'\x70\x72\x69\x6d\x61\x72\x79':_0x46e8f1};const _0x211c9e=Array[_0x403e98(0x35b,'\x28\x40\x4b\x40')](_0x145f93)?_0x145f93:[],_0x56040a=_0x40784c&&_0x1602a6[_0x403e98(0x2f8,'\x71\x45\x55\x66')](_0x40784c[_0x403e98(0xce,'\x49\x77\x74\x59')+_0x403e98(0x313,'\x70\x55\x70\x56')],Set)?_0x40784c[_0x403e98(0x364,'\x48\x45\x65\x7a')+'\x6e\x65\x49\x64\x73']:new Set(),_0xea9da4=_0x1602a6['\x78\x70\x74\x70\x45'](_0xed4a88),_0x20b6d8=_0x211c9e[_0x403e98(0x186,'\x79\x58\x67\x50')](function(_0x1fe406){const _0x17f422=_0x403e98,_0x4c884e={};_0x4c884e['\x64\x42\x75\x68\x7a']=_0x17f422(0x1ef,'\x48\x45\x65\x7a')+_0x17f422(0x15c,'\x28\x51\x49\x71')+'\x63\x6b';const _0x12cc00=_0x4c884e;if(_0x1602a6[_0x17f422(0x283,'\x50\x42\x75\x41')](_0x1602a6[_0x17f422(0x234,'\x44\x7a\x62\x79')],_0x1602a6[_0x17f422(0x240,'\x78\x56\x6f\x44')])){const _0x2eea47={};return _0x2eea47[_0x17f422(0x298,'\x53\x23\x75\x30')]=_0x199d4d,_0x2eea47[_0x17f422(0x1c9,'\x55\x45\x5b\x75')+_0x17f422(0x3ce,'\x79\x5b\x47\x25')]=[],_0x2eea47['\x64\x72\x69\x66\x74\x49\x6e\x74'+'\x65\x6e\x73\x69\x74\x79']=_0x301638,_0x2eea47[_0x17f422(0x3e7,'\x34\x5e\x30\x5e')+'\x65']=VtHoBT['\x64\x42\x75\x68\x7a'],_0x2eea47;}else{const _0x1c0653=('\x34\x7c\x33\x7c\x31\x7c\x30\x7c'+'\x32')[_0x17f422(0x1fc,'\x64\x6b\x39\x63')]('\x7c');let _0x295d2d=0x1a9+-0xe8c+0xce3;while(!![]){switch(_0x1c0653[_0x295d2d++]){case'\x30':if(_0x1602a6[_0x17f422(0x200,'\x70\x55\x70\x56')](_0x1388fe,_0x1fe406,_0xea9da4))return![];continue;case'\x31':if(_0x56040a[_0x17f422(0x40b,'\x79\x58\x67\x50')](_0x1fe406['\x69\x64']))return![];continue;case'\x32':return!![];case'\x33':if(_0x1602a6[_0x17f422(0x31e,'\x4b\x6e\x49\x33')](_0x1fe406['\x69\x64'],_0x46e8f1[_0x17f422(0x3a8,'\x67\x35\x32\x31')+_0x17f422(0x2c7,'\x48\x45\x65\x7a')]['\x69\x64']))return![];continue;case'\x34':if(!_0x1fe406||_0x1602a6[_0x17f422(0xac,'\x47\x44\x78\x4a')](_0x1fe406[_0x17f422(0x35d,'\x66\x57\x41\x7a')],_0x1602a6[_0x17f422(0x39e,'\x58\x59\x74\x74')])||!_0x1fe406['\x69\x64'])return![];continue;}break;}}})[_0x403e98(0x343,'\x6a\x28\x5a\x40')](function(_0x11ef10){const _0xc80037=_0x403e98;if(_0x1602a6[_0xc80037(0x122,'\x57\x49\x5b\x68')](_0x1602a6[_0xc80037(0xb4,'\x55\x45\x5b\x75')],_0x1602a6[_0xc80037(0x1f5,'\x66\x66\x44\x2a')])){let _0x17de7e=_0x1602a6[_0xc80037(0x3aa,'\x64\x6b\x39\x63')](_0x3cac2f,_0x11ef10,_0x3a0d1f);_0x17de7e+=_0x1602a6['\x64\x54\x48\x67\x59'](_0x302210,_0x11ef10,_0x3a0d1f,_0xea9da4);const _0x52031={};return _0x52031[_0xc80037(0x2c1,'\x78\x56\x6f\x44')]=_0x11ef10,_0x52031[_0xc80037(0x2e8,'\x43\x51\x4c\x42')]=_0x17de7e,_0x52031;}else _0x4272a8[_0xc80037(0x1ed,'\x64\x6b\x39\x63')](_0x202d6c[_0x20995e]);})[_0x403e98(0xe9,'\x44\x7a\x62\x79')](function(_0x41eb8e){const _0x1ff44a=_0x403e98;if(_0x1602a6[_0x1ff44a(0x22f,'\x5d\x2a\x44\x44')](_0x1ff44a(0x20c,'\x2a\x35\x4d\x65'),_0x1602a6[_0x1ff44a(0xdd,'\x79\x58\x67\x50')])){const _0x4388a2=new _0xa1fc45(_0x21f06f,iGaNTs['\x65\x42\x6e\x4a\x73'](_0x16cb68,'\x69'));return _0x480509[_0x1ff44a(0x29d,'\x5d\x2a\x44\x44')](_0x3d07c5=>_0x4388a2[_0x1ff44a(0x9f,'\x28\x40\x4b\x40')](_0x3d07c5));}else return _0x1602a6[_0x1ff44a(0x2ef,'\x48\x7a\x50\x56')](_0x41eb8e[_0x1ff44a(0x157,'\x6f\x49\x46\x37')],0x1*-0x79d+-0xb65*-0x1+-0x3c8);})['\x73\x6f\x72\x74'](function(_0x1d4377,_0x2b0db7){const _0x553c62=_0x403e98;return _0x1602a6['\x54\x69\x42\x73\x4e'](_0x2b0db7[_0x553c62(0x2f6,'\x71\x45\x55\x66')],_0x1d4377[_0x553c62(0x25a,'\x70\x55\x70\x56')]);}),_0xc7f204=[_0x46e8f1[_0x403e98(0x330,'\x6a\x28\x5a\x40')+_0x403e98(0x129,'\x55\x58\x70\x5a')]];for(let _0xc570ff=-0x1*-0x63d+-0x2e3*0xd+-0x216*-0xf;_0x1602a6[_0x403e98(0x365,'\x5d\x2a\x44\x44')](_0xc570ff,_0x20b6d8[_0x403e98(0xc1,'\x74\x47\x43\x35')])&&_0x1602a6[_0x403e98(0x409,'\x53\x6d\x56\x21')](_0xc7f204[_0x403e98(0xb8,'\x68\x49\x68\x68')],_0x179ce7);_0xc570ff++){if(_0x1602a6[_0x403e98(0x414,'\x2a\x35\x4d\x65')]===_0x1602a6[_0x403e98(0x12c,'\x70\x55\x70\x56')]){const _0x13cc40=_0x1db57b['\x6d\x69\x6e'](_0x108d43[_0x403e98(0x3e1,'\x63\x54\x4a\x6d')],_0x2bbde4[_0x403e98(0x3ae,'\x78\x56\x6f\x44')](0x11b*-0x2+0x1*0x4e1+0x3*-0xe3,_0x4ba711[_0x403e98(0x3b3,'\x58\x59\x74\x74')](iGaNTs[_0x403e98(0x14e,'\x28\x51\x49\x71')](_0x185c75[_0x403e98(0x244,'\x70\x68\x5b\x45')],_0x42c3c2))));_0x2f9dd1=_0x1c4dae[_0x403e98(0x1e0,'\x53\x23\x75\x30')](iGaNTs['\x55\x6d\x54\x4b\x68'](_0x5bd801[_0x403e98(0x3c8,'\x78\x56\x6f\x44')](),_0x13cc40)),_0x12b3e6='\x72\x61\x6e\x64\x6f\x6d';}else{const _0x39152d=_0x20b6d8[_0xc570ff]['\x67\x65\x6e\x65'];let _0x24078b=![];for(let _0xbf0b1f=-0x1a83+-0xc90+0x2713;_0x1602a6['\x45\x5a\x4e\x65\x62'](_0xbf0b1f,_0xc7f204[_0x403e98(0x103,'\x4b\x6e\x49\x33')]);_0xbf0b1f++){if(_0x1602a6[_0x403e98(0x7d,'\x50\x42\x75\x41')](_0x403e98(0x41d,'\x66\x66\x44\x2a'),_0x1602a6[_0x403e98(0x16f,'\x44\x7a\x62\x79')])){if(iGaNTs[_0x403e98(0x2af,'\x68\x49\x68\x68')](_0x31f68b,_0x451f77,_0x3cff6c))_0x18d3d9+=0x2*0xdff+0x1*0x270e+0x3*-0x1659;}else{if(_0x1602a6[_0x403e98(0x1f8,'\x78\x56\x6f\x44')](_0x46e269,_0x39152d,_0xc7f204[_0xbf0b1f])>=_0x421646){_0x24078b=!![];break;}}}if(!_0x24078b)_0xc7f204[_0x403e98(0x290,'\x57\x49\x5b\x68')](_0x39152d);}}const _0x79adb={};return _0x79adb['\x67\x65\x6e\x65\x73']=_0xc7f204,_0x79adb[_0x403e98(0x224,'\x34\x5e\x30\x5e')]=_0x46e8f1,_0x79adb;}const _0x20c8b9={};_0x20c8b9[_0x28c0a0(0x1d9,'\x2a\x35\x4d\x65')+_0x28c0a0(0x34e,'\x43\x51\x4c\x42')+_0x28c0a0(0x13a,'\x58\x59\x74\x74')]=_0x4bcd6a,_0x20c8b9[_0x28c0a0(0xca,'\x58\x31\x42\x4b')+'\x6e\x65']=_0x430c8e,_0x20c8b9[_0x28c0a0(0x273,'\x28\x51\x49\x71')+_0x28c0a0(0x204,'\x37\x6e\x48\x72')]=_0x2cee3a,_0x20c8b9[_0x28c0a0(0x1b2,'\x78\x56\x6f\x44')+_0x28c0a0(0x418,'\x55\x45\x5b\x75')+_0x28c0a0(0x25f,'\x57\x49\x5b\x68')]=_0x12c796,_0x20c8b9[_0x28c0a0(0x30e,'\x66\x57\x41\x7a')+_0x28c0a0(0x318,'\x66\x57\x41\x7a')+_0x28c0a0(0x27b,'\x48\x7a\x50\x56')]=_0xe22016,_0x20c8b9[_0x28c0a0(0x199,'\x58\x59\x74\x74')+_0x28c0a0(0x181,'\x28\x51\x49\x71')+'\x63']=_0x23a12a,_0x20c8b9[_0x28c0a0(0x1a0,'\x71\x45\x55\x66')+_0x28c0a0(0x25b,'\x4b\x6e\x49\x33')]=_0x1b24de,_0x20c8b9[_0x28c0a0(0x38b,'\x6f\x49\x46\x37')]=_0x46fe03,_0x20c8b9[_0x28c0a0(0x10c,'\x55\x45\x5b\x75')+_0x28c0a0(0x366,'\x35\x73\x61\x31')+_0x28c0a0(0x1e3,'\x49\x77\x74\x59')]=_0x1a0b18,_0x20c8b9[_0x28c0a0(0x127,'\x4b\x6e\x49\x33')+_0x28c0a0(0x2c0,'\x63\x54\x4a\x6d')]=_0x27f097,_0x20c8b9[_0x28c0a0(0x20b,'\x64\x39\x23\x5e')+_0x28c0a0(0x20d,'\x32\x39\x21\x5a')+'\x53\x75\x70\x70\x72\x65\x73\x73'+'\x65\x64']=_0x1388fe,_0x20c8b9['\x73\x65\x6c\x65\x63\x74\x4d\x75'+_0x28c0a0(0x2c2,'\x67\x35\x32\x31')+_0x28c0a0(0x276,'\x67\x35\x32\x31')]=_0x41ca8c,_0x20c8b9[_0x28c0a0(0xa7,'\x36\x47\x70\x36')+'\x42\x4c\x41\x53\x54\x5f\x4d\x41'+_0x28c0a0(0x30d,'\x79\x58\x67\x50')]=_0x240bf1,_0x20c8b9[_0x28c0a0(0x3ec,'\x63\x54\x4a\x6d')+'\x42\x4c\x41\x53\x54\x5f\x4d\x41'+_0x28c0a0(0x1b9,'\x63\x54\x4a\x6d')]=_0x3c71c7,module['\x65\x78\x70\x6f\x72\x74\x73']=_0x20c8b9;
|
|
1
|
+
const { scoreTagOverlap, expandSignals } = require('./learningSignals');
|
|
2
|
+
const { captureEnvFingerprint } = require('./envFingerprint');
|
|
3
|
+
const { getEpigeneticBoost, isEpigeneticallySuppressed } = require('./epigenetics');
|
|
4
|
+
|
|
5
|
+
// ---------------------------------------------------------------------------
|
|
6
|
+
// Lightweight semantic similarity (bag-of-words cosine) for Gene selection.
|
|
7
|
+
// Acts as a complement to exact signals_match pattern matching.
|
|
8
|
+
// When EMBEDDING_PROVIDER is configured, can be replaced with real embeddings.
|
|
9
|
+
// ---------------------------------------------------------------------------
|
|
10
|
+
const SEMANTIC_WEIGHT = parseFloat(process.env.SEMANTIC_MATCH_WEIGHT || '0.4') || 0.4;
|
|
11
|
+
const STOP_WORDS = new Set([
|
|
12
|
+
'the', 'and', 'for', 'with', 'from', 'that', 'this', 'into', 'when',
|
|
13
|
+
'are', 'was', 'has', 'had', 'not', 'but', 'its', 'can', 'will', 'all',
|
|
14
|
+
'any', 'use', 'may', 'also', 'should', 'would', 'could',
|
|
15
|
+
]);
|
|
16
|
+
|
|
17
|
+
// Issue #98: tokenize was latin-only (`[^a-z0-9_\-]+`), which silently dropped
|
|
18
|
+
// CJK / Cyrillic / Arabic content from the bag-of-words. CN/JA/KO users whose
|
|
19
|
+
// hooks emit signals like '[错误]' / 'タスク失敗' got tokens=[], scoreGene=0,
|
|
20
|
+
// and selector returned null on every cycle. Switching to a Unicode-aware
|
|
21
|
+
// regex (\p{L}\p{N}) preserves non-ASCII characters; we still strip
|
|
22
|
+
// punctuation and symbols so 'error.' and 'error' tokenize identically.
|
|
23
|
+
function tokenize(text) {
|
|
24
|
+
return String(text || '').toLowerCase()
|
|
25
|
+
.replace(/[^\p{L}\p{N}_\-]+/gu, ' ')
|
|
26
|
+
.split(/\s+/)
|
|
27
|
+
.filter(function (w) { return w.length >= 2 && !STOP_WORDS.has(w); });
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function buildTermFrequency(tokens) {
|
|
31
|
+
var tf = {};
|
|
32
|
+
for (var i = 0; i < tokens.length; i++) {
|
|
33
|
+
tf[tokens[i]] = (tf[tokens[i]] || 0) + 1;
|
|
34
|
+
}
|
|
35
|
+
return tf;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function cosineSimilarity(tfA, tfB) {
|
|
39
|
+
var keys = new Set(Object.keys(tfA).concat(Object.keys(tfB)));
|
|
40
|
+
var dotProduct = 0;
|
|
41
|
+
var normA = 0;
|
|
42
|
+
var normB = 0;
|
|
43
|
+
keys.forEach(function (k) {
|
|
44
|
+
var a = tfA[k] || 0;
|
|
45
|
+
var b = tfB[k] || 0;
|
|
46
|
+
dotProduct += a * b;
|
|
47
|
+
normA += a * a;
|
|
48
|
+
normB += b * b;
|
|
49
|
+
});
|
|
50
|
+
if (normA === 0 || normB === 0) return 0;
|
|
51
|
+
return dotProduct / (Math.sqrt(normA) * Math.sqrt(normB));
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function scoreGeneSemantic(gene, signals) {
|
|
55
|
+
if (!gene || !signals || signals.length === 0) return 0;
|
|
56
|
+
|
|
57
|
+
var signalTokens = [];
|
|
58
|
+
signals.forEach(function (s) {
|
|
59
|
+
signalTokens = signalTokens.concat(tokenize(s));
|
|
60
|
+
});
|
|
61
|
+
if (signalTokens.length === 0) return 0;
|
|
62
|
+
|
|
63
|
+
var geneTokens = [];
|
|
64
|
+
if (Array.isArray(gene.signals_match)) {
|
|
65
|
+
gene.signals_match.forEach(function (s) {
|
|
66
|
+
geneTokens = geneTokens.concat(tokenize(s));
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
if (gene.summary) geneTokens = geneTokens.concat(tokenize(gene.summary));
|
|
70
|
+
if (gene.id) geneTokens = geneTokens.concat(tokenize(gene.id));
|
|
71
|
+
if (geneTokens.length === 0) return 0;
|
|
72
|
+
|
|
73
|
+
var tfSignals = buildTermFrequency(signalTokens);
|
|
74
|
+
var tfGene = buildTermFrequency(geneTokens);
|
|
75
|
+
return cosineSimilarity(tfSignals, tfGene);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
const MAX_REGEX_PATTERN_LEN = 1024;
|
|
79
|
+
function matchPatternToSignals(pattern, signals) {
|
|
80
|
+
if (!pattern || !signals || signals.length === 0) return false;
|
|
81
|
+
const p = String(pattern);
|
|
82
|
+
const sig = signals.map(s => String(s));
|
|
83
|
+
|
|
84
|
+
// Regex pattern: /body/flags
|
|
85
|
+
const regexLike = p.length >= 2 && p.startsWith('/') && p.lastIndexOf('/') > 0;
|
|
86
|
+
if (regexLike) {
|
|
87
|
+
if (p.length > MAX_REGEX_PATTERN_LEN) return false;
|
|
88
|
+
const lastSlash = p.lastIndexOf('/');
|
|
89
|
+
const body = p.slice(1, lastSlash);
|
|
90
|
+
const flags = p.slice(lastSlash + 1);
|
|
91
|
+
try {
|
|
92
|
+
const re = new RegExp(body, flags || 'i');
|
|
93
|
+
return sig.some(s => re.test(s));
|
|
94
|
+
} catch (e) {
|
|
95
|
+
// fallback to substring
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// Multi-language alias: "en_term|zh_term|ja_term" -- any branch matching = hit
|
|
100
|
+
if (p.includes('|') && !p.startsWith('/')) {
|
|
101
|
+
const branches = p.split('|').map(b => b.trim().toLowerCase()).filter(Boolean);
|
|
102
|
+
return branches.some(needle => sig.some(s => s.toLowerCase().includes(needle)));
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
const needle = p.toLowerCase();
|
|
106
|
+
return sig.some(s => s.toLowerCase().includes(needle));
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
function scoreGene(gene, signals) {
|
|
110
|
+
if (!gene || gene.type !== 'Gene') return 0;
|
|
111
|
+
const patterns = Array.isArray(gene.signals_match) ? gene.signals_match : [];
|
|
112
|
+
const tagScore = scoreTagOverlap(gene, signals);
|
|
113
|
+
if (patterns.length === 0) return tagScore > 0 ? tagScore * 0.6 : 0;
|
|
114
|
+
let score = 0;
|
|
115
|
+
for (const pat of patterns) {
|
|
116
|
+
if (matchPatternToSignals(pat, signals)) score += 1;
|
|
117
|
+
}
|
|
118
|
+
const semanticScore = scoreGeneSemantic(gene, signals) * SEMANTIC_WEIGHT;
|
|
119
|
+
return score + (tagScore * 0.6) + semanticScore;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
// Hard suppression based on epigenetic marks. Independent of memoryGraph's
|
|
124
|
+
// per-signal-key ban, this acts as a second layer that catches genes which
|
|
125
|
+
// have accumulated severe negative environmental marks. The biology metaphor
|
|
126
|
+
// stays intact for marks above the threshold (soft score adjustment), but
|
|
127
|
+
// once boost decays past the hard threshold (default -0.3, ~3 failures in
|
|
128
|
+
// the same env), the gene is excluded from selection entirely until either
|
|
129
|
+
// time decay erases the mark or a successful run rebuilds the boost.
|
|
130
|
+
|
|
131
|
+
function scoreGeneLearning(gene, signals, envFingerprint) {
|
|
132
|
+
if (!gene || gene.type !== 'Gene') return 0;
|
|
133
|
+
let boost = 0;
|
|
134
|
+
|
|
135
|
+
const history = Array.isArray(gene.learning_history) ? gene.learning_history.slice(-8) : [];
|
|
136
|
+
for (let i = 0; i < history.length; i++) {
|
|
137
|
+
const entry = history[i];
|
|
138
|
+
if (!entry) continue;
|
|
139
|
+
if (entry.outcome === 'success') boost += 0.12;
|
|
140
|
+
else if (entry.mode === 'hard') boost -= 0.22;
|
|
141
|
+
else if (entry.mode === 'soft') boost -= 0.08;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
boost += getEpigeneticBoost(gene, envFingerprint);
|
|
145
|
+
|
|
146
|
+
if (Array.isArray(gene.anti_patterns) && gene.anti_patterns.length > 0) {
|
|
147
|
+
let overlapPenalty = 0;
|
|
148
|
+
const signalTags = new Set(expandSignals(signals, ''));
|
|
149
|
+
const recentAntiPatterns = gene.anti_patterns.slice(-6);
|
|
150
|
+
for (let j = 0; j < recentAntiPatterns.length; j++) {
|
|
151
|
+
const anti = recentAntiPatterns[j];
|
|
152
|
+
if (!anti || !Array.isArray(anti.learning_signals)) continue;
|
|
153
|
+
const overlap = anti.learning_signals.some(function (tag) { return signalTags.has(String(tag)); });
|
|
154
|
+
if (overlap) overlapPenalty += anti.mode === 'hard' ? 0.4 : 0.18;
|
|
155
|
+
}
|
|
156
|
+
boost -= overlapPenalty;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
return Math.max(-1.5, Math.min(1.5, boost));
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
// Population-size-dependent drift intensity with adaptive decay.
|
|
163
|
+
//
|
|
164
|
+
// Base formula: intensity = 1 / sqrt(Ne) + offset
|
|
165
|
+
// The offset decays from 0.3 toward near-zero as the memory graph
|
|
166
|
+
// accumulates evidence, shifting mature pools from exploration to
|
|
167
|
+
// exploitation. memoryEvidence (total attempts across genes) controls
|
|
168
|
+
// the decay: once memoryEvidence >= Ne * MATURITY_ATTEMPTS_PER_GENE
|
|
169
|
+
// the pool is considered mature and the constant offset drops to the
|
|
170
|
+
// floor. This addresses the drift-dominance finding where the fixed
|
|
171
|
+
// 0.3 offset overwhelms memory graph guidance.
|
|
172
|
+
const MATURITY_ATTEMPTS_PER_GENE = 10;
|
|
173
|
+
const DRIFT_OFFSET_MAX = 0.3;
|
|
174
|
+
const DRIFT_OFFSET_MIN = 0.02;
|
|
175
|
+
|
|
176
|
+
function computeDriftIntensity(opts) {
|
|
177
|
+
const driftEnabled = !!(opts && opts.driftEnabled);
|
|
178
|
+
|
|
179
|
+
const effectivePopulationSize = opts && Number.isFinite(Number(opts.effectivePopulationSize))
|
|
180
|
+
? Number(opts.effectivePopulationSize)
|
|
181
|
+
: null;
|
|
182
|
+
|
|
183
|
+
const genePoolSize = opts && Number.isFinite(Number(opts.genePoolSize))
|
|
184
|
+
? Number(opts.genePoolSize)
|
|
185
|
+
: null;
|
|
186
|
+
|
|
187
|
+
const ne = effectivePopulationSize || genePoolSize || null;
|
|
188
|
+
|
|
189
|
+
if (driftEnabled) {
|
|
190
|
+
if (!ne || ne <= 1) return 0.7;
|
|
191
|
+
|
|
192
|
+
const memoryEvidence = opts && Number.isFinite(Number(opts.memoryEvidence))
|
|
193
|
+
? Number(opts.memoryEvidence) : 0;
|
|
194
|
+
const maturityThreshold = ne * MATURITY_ATTEMPTS_PER_GENE;
|
|
195
|
+
const maturity = maturityThreshold > 0
|
|
196
|
+
? Math.min(1, memoryEvidence / maturityThreshold)
|
|
197
|
+
: 0;
|
|
198
|
+
const offset = DRIFT_OFFSET_MAX - (DRIFT_OFFSET_MAX - DRIFT_OFFSET_MIN) * maturity;
|
|
199
|
+
return Math.min(1, 1 / Math.sqrt(ne) + offset);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
if (ne != null && ne > 0) {
|
|
203
|
+
return Math.min(1, 1 / Math.sqrt(ne));
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
return 0;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
const INPLACE_BLAST_MAX_FILES = 5;
|
|
210
|
+
const INPLACE_BLAST_MAX_LINES = 100;
|
|
211
|
+
|
|
212
|
+
function isInplaceGene(gene) {
|
|
213
|
+
return gene && gene.execution_mode === 'inplace';
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
function selectGene(genes, signals, opts) {
|
|
217
|
+
const genesList = Array.isArray(genes) ? genes : [];
|
|
218
|
+
const bannedGeneIds = opts && opts.bannedGeneIds ? opts.bannedGeneIds : new Set();
|
|
219
|
+
const driftEnabled = !!(opts && opts.driftEnabled);
|
|
220
|
+
const preferredGeneId = opts && typeof opts.preferredGeneId === 'string' ? opts.preferredGeneId : null;
|
|
221
|
+
|
|
222
|
+
// Plateau override: when active, bypass memory preferences and force high drift
|
|
223
|
+
const plateauOverride = opts && opts.plateauOverride ? opts.plateauOverride : null;
|
|
224
|
+
|
|
225
|
+
// Diversity-directed drift: capability_gaps from Hub heartbeat
|
|
226
|
+
const capabilityGaps = opts && Array.isArray(opts.capabilityGaps) ? opts.capabilityGaps : [];
|
|
227
|
+
const noveltyScore = opts && Number.isFinite(Number(opts.noveltyScore)) ? Number(opts.noveltyScore) : null;
|
|
228
|
+
|
|
229
|
+
// In-Place Gene preference: when enabled, prefer lightweight inplace genes
|
|
230
|
+
const preferInplace = !!(opts && opts.preferInplace);
|
|
231
|
+
|
|
232
|
+
// Compute continuous drift intensity based on effective population size
|
|
233
|
+
let driftIntensity = computeDriftIntensity({
|
|
234
|
+
driftEnabled: driftEnabled,
|
|
235
|
+
effectivePopulationSize: opts && opts.effectivePopulationSize,
|
|
236
|
+
genePoolSize: genesList.length,
|
|
237
|
+
memoryEvidence: opts && opts.memoryEvidence,
|
|
238
|
+
});
|
|
239
|
+
|
|
240
|
+
// Plateau override: force maximum drift when plateau is detected
|
|
241
|
+
if (plateauOverride && plateauOverride.active) {
|
|
242
|
+
driftIntensity = Math.max(driftIntensity, plateauOverride.severity === 'required' ? 1.0 : 0.7);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
const useDrift = driftEnabled || driftIntensity > 0.15;
|
|
246
|
+
|
|
247
|
+
const DISTILLED_PREFIX = 'gene_distilled_';
|
|
248
|
+
const DISTILLED_SCORE_FACTOR = 0.8;
|
|
249
|
+
|
|
250
|
+
const envFingerprint = captureEnvFingerprint();
|
|
251
|
+
const scored = genesList
|
|
252
|
+
.filter(g => !isEpigeneticallySuppressed(g, envFingerprint))
|
|
253
|
+
.map(g => {
|
|
254
|
+
let s = scoreGene(g, signals);
|
|
255
|
+
s += scoreGeneLearning(g, signals, envFingerprint);
|
|
256
|
+
if (s > 0 && g.id && String(g.id).startsWith(DISTILLED_PREFIX)) s *= DISTILLED_SCORE_FACTOR;
|
|
257
|
+
return { gene: g, score: s };
|
|
258
|
+
})
|
|
259
|
+
.filter(x => x.score > 0)
|
|
260
|
+
.sort((a, b) => b.score - a.score);
|
|
261
|
+
|
|
262
|
+
// Issue #97: when no gene matches at all (every score == 0), fall back to
|
|
263
|
+
// the highest-scoring distilled gene if one is available and not banned.
|
|
264
|
+
// The previous behavior returned selected:null on every cycle for nodes
|
|
265
|
+
// whose live signals don't overlap any seed signals_match -- daemon mode
|
|
266
|
+
// then auto-rejects (with EVOLVE_BRIDGE=false default) and produces no
|
|
267
|
+
// EvolutionEvent. On Aurora this caused 27 no_outcome candidates and 0
|
|
268
|
+
// events in 33 days.
|
|
269
|
+
//
|
|
270
|
+
// We only fall back to a *distilled* gene because (a) those are
|
|
271
|
+
// skill-derived and broadly applicable, (b) returning a non-distilled gene
|
|
272
|
+
// here would let a high-blast-radius gene get applied with zero signal
|
|
273
|
+
// evidence, which is exactly the noise the score>0 filter exists to avoid.
|
|
274
|
+
// We still return null when no distilled gene exists, preserving the
|
|
275
|
+
// upstream contract that "null -> mutation creates a new gene" (see
|
|
276
|
+
// test/selector.test.js: "all suppressed -> selector returns null so the
|
|
277
|
+
// caller can mutate a new gene").
|
|
278
|
+
if (scored.length === 0) {
|
|
279
|
+
const distilledFallback = genesList.find(g =>
|
|
280
|
+
g && g.id && String(g.id).startsWith(DISTILLED_PREFIX) &&
|
|
281
|
+
!bannedGeneIds.has(g.id) &&
|
|
282
|
+
!isEpigeneticallySuppressed(g, envFingerprint)
|
|
283
|
+
);
|
|
284
|
+
if (distilledFallback) {
|
|
285
|
+
return {
|
|
286
|
+
selected: distilledFallback,
|
|
287
|
+
alternatives: [],
|
|
288
|
+
driftIntensity: driftIntensity,
|
|
289
|
+
driftMode: 'distilled_fallback',
|
|
290
|
+
};
|
|
291
|
+
}
|
|
292
|
+
return { selected: null, alternatives: [], driftIntensity: driftIntensity, driftMode: 'none' };
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
// Memory graph preference: apply as a score multiplier instead of a hard
|
|
296
|
+
// override. The old behavior (`return preferred` unconditionally) caused a
|
|
297
|
+
// negative-feedback loop: a globally popular gene would be forced onto every
|
|
298
|
+
// scenario regardless of its pattern score, accumulate mixed outcomes, and
|
|
299
|
+
// stay preferred indefinitely. A 1.5x multiplier lets the memory graph
|
|
300
|
+
// break ties and boost borderline candidates, but never overpower a gene
|
|
301
|
+
// that genuinely matches the current signals much better.
|
|
302
|
+
const MEMORY_PREFERENCE_MULTIPLIER = 1.5;
|
|
303
|
+
if (preferredGeneId && !(plateauOverride && plateauOverride.active)) {
|
|
304
|
+
const idx = scored.findIndex(x => x.gene && x.gene.id === preferredGeneId);
|
|
305
|
+
// Banned genes are filtered out below regardless of mode, so do not
|
|
306
|
+
// boost a preferred gene that is already on the ban list.
|
|
307
|
+
if (idx >= 0 && !bannedGeneIds.has(preferredGeneId)) {
|
|
308
|
+
scored[idx] = { ...scored[idx], score: scored[idx].score * MEMORY_PREFERENCE_MULTIPLIER };
|
|
309
|
+
scored.sort((a, b) => b.score - a.score);
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
// Hard suppression: bannedGeneIds applies in all modes including drift.
|
|
314
|
+
// Drift exists to explore new combinations, not to resurrect proven failures.
|
|
315
|
+
// The previous `useDrift ? scored : ...` branch was a self-defeating loop:
|
|
316
|
+
// repeated failure -> plateau detection -> drift on -> ban bypassed -> same
|
|
317
|
+
// failed gene re-selected. See memoryGraph.js ban computation for context.
|
|
318
|
+
const filtered = scored.filter(x => x.gene && !bannedGeneIds.has(x.gene.id));
|
|
319
|
+
if (filtered.length === 0) return { selected: null, alternatives: scored.slice(0, 4).map(x => x.gene), driftIntensity: driftIntensity, driftMode: 'none' };
|
|
320
|
+
|
|
321
|
+
// TTT-inspired In-Place Gene preference: when the top scored gene is a full gene but
|
|
322
|
+
// an inplace gene scores within 70% of top, prefer the inplace gene for lower blast radius.
|
|
323
|
+
if (preferInplace && filtered.length > 1) {
|
|
324
|
+
const topScore = filtered[0].score;
|
|
325
|
+
const INPLACE_THRESHOLD = 0.7;
|
|
326
|
+
const inplaceIdx = filtered.findIndex(function (x) {
|
|
327
|
+
return x.gene && x.gene.execution_mode === 'inplace' && x.score >= topScore * INPLACE_THRESHOLD;
|
|
328
|
+
});
|
|
329
|
+
if (inplaceIdx > 0 && filtered[0].gene && filtered[0].gene.execution_mode !== 'inplace') {
|
|
330
|
+
const inplaceEntry = filtered[inplaceIdx];
|
|
331
|
+
filtered.splice(inplaceIdx, 1);
|
|
332
|
+
filtered.unshift(inplaceEntry);
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
// Diversity-directed drift: when capability gaps are available, prefer genes that
|
|
337
|
+
// cover gap areas instead of pure random selection. This replaces the blind
|
|
338
|
+
// random drift with an informed exploration toward under-covered capabilities.
|
|
339
|
+
let selectedIdx = 0;
|
|
340
|
+
let driftMode = 'selection';
|
|
341
|
+
if (driftIntensity > 0 && filtered.length > 1 && Math.random() < driftIntensity) {
|
|
342
|
+
if (capabilityGaps.length > 0) {
|
|
343
|
+
// Directed drift: score each candidate by how well its signals_match
|
|
344
|
+
// covers the capability gap dimensions
|
|
345
|
+
const gapScores = filtered.map(function(entry, idx) {
|
|
346
|
+
const g = entry.gene;
|
|
347
|
+
const patterns = Array.isArray(g.signals_match) ? g.signals_match : [];
|
|
348
|
+
let gapHits = 0;
|
|
349
|
+
for (let gi = 0; gi < capabilityGaps.length && gi < 5; gi++) {
|
|
350
|
+
const gapSignal = capabilityGaps[gi];
|
|
351
|
+
if (typeof gapSignal === 'string' && patterns.some(function(p) { return matchPatternToSignals(p, [gapSignal]); })) {
|
|
352
|
+
gapHits++;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
return { idx: idx, gapHits: gapHits, baseScore: entry.score };
|
|
356
|
+
});
|
|
357
|
+
|
|
358
|
+
const hasGapHits = gapScores.some(function(gs) { return gs.gapHits > 0; });
|
|
359
|
+
if (hasGapHits) {
|
|
360
|
+
// Sort by gap coverage first, then by base score
|
|
361
|
+
gapScores.sort(function(a, b) {
|
|
362
|
+
return b.gapHits - a.gapHits || b.baseScore - a.baseScore;
|
|
363
|
+
});
|
|
364
|
+
selectedIdx = gapScores[0].idx;
|
|
365
|
+
driftMode = 'diversity_directed';
|
|
366
|
+
} else {
|
|
367
|
+
// No gap match: fall back to novelty-weighted random selection
|
|
368
|
+
let topN = Math.min(filtered.length, Math.max(2, Math.ceil(filtered.length * driftIntensity)));
|
|
369
|
+
// If novelty score is low (agent is too similar to others), increase exploration range
|
|
370
|
+
if (noveltyScore != null && noveltyScore < 0.3 && topN < filtered.length) {
|
|
371
|
+
topN = Math.min(filtered.length, topN + 1);
|
|
372
|
+
}
|
|
373
|
+
selectedIdx = Math.floor(Math.random() * topN);
|
|
374
|
+
driftMode = 'random_weighted';
|
|
375
|
+
}
|
|
376
|
+
} else {
|
|
377
|
+
// No capability gap data: original random drift behavior
|
|
378
|
+
const topN = Math.min(filtered.length, Math.max(2, Math.ceil(filtered.length * driftIntensity)));
|
|
379
|
+
selectedIdx = Math.floor(Math.random() * topN);
|
|
380
|
+
driftMode = 'random';
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
return {
|
|
385
|
+
selected: filtered[selectedIdx].gene,
|
|
386
|
+
alternatives: filtered.filter(function(_, i) { return i !== selectedIdx; }).slice(0, 4).map(x => x.gene),
|
|
387
|
+
driftIntensity: driftIntensity,
|
|
388
|
+
driftMode: driftMode,
|
|
389
|
+
};
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
function selectCapsule(capsules, signals) {
|
|
393
|
+
const scored = (capsules || [])
|
|
394
|
+
.map(c => {
|
|
395
|
+
const triggers = Array.isArray(c.trigger) ? c.trigger : [];
|
|
396
|
+
const score = triggers.reduce((acc, t) => (matchPatternToSignals(t, signals) ? acc + 1 : acc), 0);
|
|
397
|
+
return { capsule: c, score };
|
|
398
|
+
})
|
|
399
|
+
.filter(x => x.score > 0)
|
|
400
|
+
.sort((a, b) => b.score - a.score);
|
|
401
|
+
return scored.length ? scored[0].capsule : null;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
function computeSignalOverlap(signalsA, signalsB) {
|
|
405
|
+
if (!Array.isArray(signalsA) || !Array.isArray(signalsB)) return 0;
|
|
406
|
+
if (signalsA.length === 0 || signalsB.length === 0) return 0;
|
|
407
|
+
const setB = new Set(signalsB.map(function (s) { return String(s).toLowerCase(); }));
|
|
408
|
+
let hits = 0;
|
|
409
|
+
for (let i = 0; i < signalsA.length; i++) {
|
|
410
|
+
if (setB.has(String(signalsA[i]).toLowerCase())) hits++;
|
|
411
|
+
}
|
|
412
|
+
return hits / Math.max(signalsA.length, 1);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
const FAILED_CAPSULE_BAN_THRESHOLD = 2;
|
|
416
|
+
const FAILED_CAPSULE_OVERLAP_MIN = 0.6;
|
|
417
|
+
|
|
418
|
+
function banGenesFromFailedCapsules(failedCapsules, signals, existingBans) {
|
|
419
|
+
const bans = existingBans instanceof Set ? new Set(existingBans) : new Set();
|
|
420
|
+
if (!Array.isArray(failedCapsules) || failedCapsules.length === 0) return bans;
|
|
421
|
+
const geneFailCounts = {};
|
|
422
|
+
for (let i = 0; i < failedCapsules.length; i++) {
|
|
423
|
+
const fc = failedCapsules[i];
|
|
424
|
+
if (!fc || !fc.gene) continue;
|
|
425
|
+
const overlap = computeSignalOverlap(signals, fc.trigger || []);
|
|
426
|
+
if (overlap < FAILED_CAPSULE_OVERLAP_MIN) continue;
|
|
427
|
+
const gid = String(fc.gene);
|
|
428
|
+
geneFailCounts[gid] = (geneFailCounts[gid] || 0) + 1;
|
|
429
|
+
}
|
|
430
|
+
const keys = Object.keys(geneFailCounts);
|
|
431
|
+
for (let j = 0; j < keys.length; j++) {
|
|
432
|
+
if (geneFailCounts[keys[j]] >= FAILED_CAPSULE_BAN_THRESHOLD) {
|
|
433
|
+
bans.add(keys[j]);
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
return bans;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
function selectGeneAndCapsule({ genes, capsules, signals, memoryAdvice, driftEnabled, failedCapsules, capabilityGaps, noveltyScore, plateauOverride }) {
|
|
440
|
+
const bannedGeneIds =
|
|
441
|
+
memoryAdvice && memoryAdvice.bannedGeneIds instanceof Set ? memoryAdvice.bannedGeneIds : new Set();
|
|
442
|
+
const preferredGeneId = memoryAdvice && memoryAdvice.preferredGeneId ? memoryAdvice.preferredGeneId : null;
|
|
443
|
+
|
|
444
|
+
// Extract total evidence count from memoryAdvice for adaptive drift decay.
|
|
445
|
+
const memoryEvidence = memoryAdvice && Number.isFinite(Number(memoryAdvice.totalAttempts))
|
|
446
|
+
? Number(memoryAdvice.totalAttempts) : 0;
|
|
447
|
+
|
|
448
|
+
const effectiveBans = banGenesFromFailedCapsules(
|
|
449
|
+
Array.isArray(failedCapsules) ? failedCapsules : [],
|
|
450
|
+
signals,
|
|
451
|
+
bannedGeneIds
|
|
452
|
+
);
|
|
453
|
+
|
|
454
|
+
const { selected, alternatives, driftIntensity, driftMode } = selectGene(genes, signals, {
|
|
455
|
+
bannedGeneIds: effectiveBans,
|
|
456
|
+
preferredGeneId,
|
|
457
|
+
driftEnabled: !!driftEnabled,
|
|
458
|
+
memoryEvidence,
|
|
459
|
+
capabilityGaps: Array.isArray(capabilityGaps) ? capabilityGaps : [],
|
|
460
|
+
noveltyScore: Number.isFinite(Number(noveltyScore)) ? Number(noveltyScore) : null,
|
|
461
|
+
plateauOverride: plateauOverride || null,
|
|
462
|
+
});
|
|
463
|
+
const capsule = selectCapsule(capsules, signals);
|
|
464
|
+
|
|
465
|
+
const memoryUsed = !!(preferredGeneId && selected && selected.id === preferredGeneId);
|
|
466
|
+
const selectionPath = driftMode === 'selection' ? 'score_ranked' : driftMode;
|
|
467
|
+
|
|
468
|
+
const selector = buildSelectorDecision({
|
|
469
|
+
gene: selected,
|
|
470
|
+
capsule,
|
|
471
|
+
signals,
|
|
472
|
+
alternatives,
|
|
473
|
+
memoryAdvice,
|
|
474
|
+
driftEnabled,
|
|
475
|
+
driftIntensity,
|
|
476
|
+
selectionPath,
|
|
477
|
+
memoryUsed,
|
|
478
|
+
});
|
|
479
|
+
return {
|
|
480
|
+
selectedGene: selected,
|
|
481
|
+
capsuleCandidates: capsule ? [capsule] : [],
|
|
482
|
+
selector,
|
|
483
|
+
driftIntensity,
|
|
484
|
+
selectionPath,
|
|
485
|
+
memoryUsed,
|
|
486
|
+
memoryEvidence,
|
|
487
|
+
};
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
function buildSelectorDecision({ gene, capsule, signals, alternatives, memoryAdvice, driftEnabled, driftIntensity, selectionPath, memoryUsed }) {
|
|
491
|
+
const reason = [];
|
|
492
|
+
if (gene) reason.push('signals match gene.signals_match');
|
|
493
|
+
if (capsule) reason.push('capsule trigger matches signals');
|
|
494
|
+
if (!gene) reason.push('no matching gene found; new gene may be required');
|
|
495
|
+
if (signals && signals.length) reason.push(`signals: ${signals.join(', ')}`);
|
|
496
|
+
|
|
497
|
+
if (memoryAdvice && Array.isArray(memoryAdvice.explanation) && memoryAdvice.explanation.length) {
|
|
498
|
+
reason.push(`memory_graph: ${memoryAdvice.explanation.join(' | ')}`);
|
|
499
|
+
}
|
|
500
|
+
if (driftEnabled) {
|
|
501
|
+
reason.push('random_drift_override: true');
|
|
502
|
+
}
|
|
503
|
+
if (Number.isFinite(driftIntensity) && driftIntensity > 0) {
|
|
504
|
+
reason.push(`drift_intensity: ${driftIntensity.toFixed(3)}`);
|
|
505
|
+
}
|
|
506
|
+
if (selectionPath) {
|
|
507
|
+
reason.push(`selection_path: ${selectionPath}`);
|
|
508
|
+
}
|
|
509
|
+
if (memoryUsed) {
|
|
510
|
+
reason.push('memory_preference_followed: true');
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
return {
|
|
514
|
+
selected: gene ? gene.id : null,
|
|
515
|
+
reason,
|
|
516
|
+
alternatives: Array.isArray(alternatives) ? alternatives.map(g => g.id) : [],
|
|
517
|
+
selectionPath: selectionPath || 'unknown',
|
|
518
|
+
memoryUsed: !!memoryUsed,
|
|
519
|
+
};
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
// TTT-inspired: select multiple non-conflicting Genes for parallel execution
|
|
523
|
+
// within a single evolution chunk, analogous to chunk-wise parallel weight updates.
|
|
524
|
+
const CHUNK_MAX_GENES = 3;
|
|
525
|
+
const CHUNK_CONFLICT_JACCARD_THRESHOLD = 0.3;
|
|
526
|
+
|
|
527
|
+
function computeGeneConflict(geneA, geneB) {
|
|
528
|
+
const sigA = new Set(
|
|
529
|
+
(Array.isArray(geneA.signals_match) ? geneA.signals_match : []).map(function (s) { return String(s).toLowerCase(); })
|
|
530
|
+
);
|
|
531
|
+
const sigB = new Set(
|
|
532
|
+
(Array.isArray(geneB.signals_match) ? geneB.signals_match : []).map(function (s) { return String(s).toLowerCase(); })
|
|
533
|
+
);
|
|
534
|
+
if (sigA.size === 0 && sigB.size === 0) return 0;
|
|
535
|
+
if (sigA.size === 0 || sigB.size === 0) return 0;
|
|
536
|
+
let inter = 0;
|
|
537
|
+
for (const x of sigA) if (sigB.has(x)) inter++;
|
|
538
|
+
const union = sigA.size + sigB.size - inter;
|
|
539
|
+
return union === 0 ? 0 : inter / union;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
function selectMultiGeneChunk({ genes, signals, memoryAdvice, driftEnabled, failedCapsules, capabilityGaps, noveltyScore, plateauOverride }) {
|
|
543
|
+
const primary = selectGeneAndCapsule({
|
|
544
|
+
genes, capsules: [], signals, memoryAdvice, driftEnabled,
|
|
545
|
+
failedCapsules, capabilityGaps, noveltyScore, plateauOverride,
|
|
546
|
+
});
|
|
547
|
+
if (!primary.selectedGene) return { genes: [], primary };
|
|
548
|
+
|
|
549
|
+
const genesList = Array.isArray(genes) ? genes : [];
|
|
550
|
+
const bannedGeneIds = memoryAdvice && memoryAdvice.bannedGeneIds instanceof Set
|
|
551
|
+
? memoryAdvice.bannedGeneIds : new Set();
|
|
552
|
+
const envFingerprint = captureEnvFingerprint();
|
|
553
|
+
|
|
554
|
+
const scored = genesList
|
|
555
|
+
.filter(function (g) {
|
|
556
|
+
if (!g || g.type !== 'Gene' || !g.id) return false;
|
|
557
|
+
if (g.id === primary.selectedGene.id) return false;
|
|
558
|
+
if (bannedGeneIds.has(g.id)) return false;
|
|
559
|
+
if (isEpigeneticallySuppressed(g, envFingerprint)) return false;
|
|
560
|
+
return true;
|
|
561
|
+
})
|
|
562
|
+
.map(function (g) {
|
|
563
|
+
let s = scoreGene(g, signals);
|
|
564
|
+
s += scoreGeneLearning(g, signals, envFingerprint);
|
|
565
|
+
return { gene: g, score: s };
|
|
566
|
+
})
|
|
567
|
+
.filter(function (x) { return x.score > 0; })
|
|
568
|
+
.sort(function (a, b) { return b.score - a.score; });
|
|
569
|
+
|
|
570
|
+
const chunk = [primary.selectedGene];
|
|
571
|
+
for (let i = 0; i < scored.length && chunk.length < CHUNK_MAX_GENES; i++) {
|
|
572
|
+
const candidate = scored[i].gene;
|
|
573
|
+
let hasConflict = false;
|
|
574
|
+
for (let j = 0; j < chunk.length; j++) {
|
|
575
|
+
if (computeGeneConflict(candidate, chunk[j]) >= CHUNK_CONFLICT_JACCARD_THRESHOLD) {
|
|
576
|
+
hasConflict = true;
|
|
577
|
+
break;
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
if (!hasConflict) chunk.push(candidate);
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
return { genes: chunk, primary };
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
module.exports = {
|
|
587
|
+
selectGeneAndCapsule,
|
|
588
|
+
selectGene,
|
|
589
|
+
selectCapsule,
|
|
590
|
+
buildSelectorDecision,
|
|
591
|
+
matchPatternToSignals,
|
|
592
|
+
scoreGeneSemantic,
|
|
593
|
+
cosineSimilarity,
|
|
594
|
+
tokenize,
|
|
595
|
+
computeDriftIntensity,
|
|
596
|
+
isInplaceGene,
|
|
597
|
+
isEpigeneticallySuppressed,
|
|
598
|
+
selectMultiGeneChunk,
|
|
599
|
+
INPLACE_BLAST_MAX_FILES,
|
|
600
|
+
INPLACE_BLAST_MAX_LINES,
|
|
601
|
+
};
|
|
602
|
+
|