@evomap/evolver 1.89.2 → 1.89.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. package/.cursor/BUGBOT.md +182 -0
  2. package/.env.example +68 -0
  3. package/.git-commit-guard-token +1 -0
  4. package/.github/CODEOWNERS +63 -0
  5. package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
  6. package/.github/pull_request_template.md +45 -0
  7. package/.github/workflows/test.yml +75 -0
  8. package/CHANGELOG.md +1237 -0
  9. package/README.ja-JP.md +1 -3
  10. package/README.ko-KR.md +1 -3
  11. package/README.md +86 -530
  12. package/README.public.md +569 -0
  13. package/README.zh-CN.md +1 -3
  14. package/SECURITY.md +108 -0
  15. package/assets/gep/events.jsonl +3 -0
  16. package/assets/gep/genes.json +496 -0
  17. package/examples/atp-consumer-quickstart.md +100 -0
  18. package/examples/hello-world.md +38 -0
  19. package/index.js +44 -48
  20. package/package.json +6 -17
  21. package/proxy-package.json +39 -0
  22. package/public.manifest.json +143 -0
  23. package/src/adapters/hookAdapter.js +2 -0
  24. package/src/adapters/scripts/_lockPaths.js +74 -0
  25. package/src/adapters/scripts/evolver-session-start.js +19 -27
  26. package/src/config.js +23 -0
  27. package/src/evolve/guards.js +721 -1
  28. package/src/evolve/pipeline/collect.js +1283 -1
  29. package/src/evolve/pipeline/dispatch.js +421 -1
  30. package/src/evolve/pipeline/enrich.js +440 -1
  31. package/src/evolve/pipeline/hub.js +319 -1
  32. package/src/evolve/pipeline/select.js +274 -1
  33. package/src/evolve/pipeline/signals.js +206 -1
  34. package/src/evolve/utils.js +264 -1
  35. package/src/evolve.js +350 -1
  36. package/src/experiment/agentRunner.js +229 -0
  37. package/src/experiment/cli.js +159 -0
  38. package/src/experiment/comparison.js +233 -0
  39. package/src/experiment/metrics.js +75 -0
  40. package/src/forceUpdate.js +311 -30
  41. package/src/gep/a2aProtocol.js +4455 -1
  42. package/src/gep/antiAbuseTelemetry.js +233 -0
  43. package/src/gep/autoDistillConv.js +205 -1
  44. package/src/gep/autoDistillLlm.js +315 -1
  45. package/src/gep/candidateEval.js +92 -1
  46. package/src/gep/candidates.js +198 -1
  47. package/src/gep/contentHash.js +30 -1
  48. package/src/gep/conversationSniffer.js +266 -1
  49. package/src/gep/crypto.js +89 -1
  50. package/src/gep/curriculum.js +163 -1
  51. package/src/gep/deviceId.js +218 -1
  52. package/src/gep/envFingerprint.js +118 -1
  53. package/src/gep/epigenetics.js +31 -1
  54. package/src/gep/execBridge.js +711 -1
  55. package/src/gep/explore.js +289 -1
  56. package/src/gep/hash.js +15 -1
  57. package/src/gep/hubFetch.js +359 -1
  58. package/src/gep/hubReview.js +207 -1
  59. package/src/gep/hubSearch.js +526 -1
  60. package/src/gep/hubVerify.js +306 -1
  61. package/src/gep/learningSignals.js +89 -1
  62. package/src/gep/memoryGraph.js +1374 -1
  63. package/src/gep/memoryGraphAdapter.js +203 -1
  64. package/src/gep/mutation.js +203 -1
  65. package/src/gep/narrativeMemory.js +108 -1
  66. package/src/gep/openPRRegistry.js +205 -1
  67. package/src/gep/personality.js +423 -1
  68. package/src/gep/policyCheck.js +599 -1
  69. package/src/gep/prompt.js +836 -1
  70. package/src/gep/recallInject.js +409 -1
  71. package/src/gep/recallVerifier.js +318 -1
  72. package/src/gep/reflection.js +177 -1
  73. package/src/gep/sanitize.js +9 -0
  74. package/src/gep/selector.js +602 -1
  75. package/src/gep/skillDistiller.js +1294 -1
  76. package/src/gep/solidify.js +1699 -1
  77. package/src/gep/strategy.js +136 -1
  78. package/src/gep/tokenSavings.js +88 -1
  79. package/src/gep/validator/sandboxExecutor.js +29 -1
  80. package/src/gep/workspaceKeychain.js +174 -1
  81. package/src/proxy/extensions/traceControl.js +99 -1
  82. package/src/proxy/index.js +14 -5
  83. package/src/proxy/inject.js +52 -1
  84. package/src/proxy/lifecycle/manager.js +30 -0
  85. package/src/proxy/mailbox/store.js +2 -1
  86. package/src/proxy/router/messages_route.js +13 -2
  87. package/src/proxy/trace/extractor.js +646 -1
  88. package/src/proxy/trace/usage.js +105 -1
  89. package/CONTRIBUTING.md +0 -19
  90. package/assets/cover.png +0 -0
  91. package/assets/gep/genes.seed.json +0 -245
  92. package/scripts/a2a_export.js +0 -63
  93. package/scripts/a2a_ingest.js +0 -79
  94. package/scripts/a2a_promote.js +0 -118
  95. package/scripts/analyze_by_skill.js +0 -121
  96. package/scripts/build_binaries.js +0 -479
  97. package/scripts/check-changelog.js +0 -166
  98. package/scripts/extract_log.js +0 -85
  99. package/scripts/generate_history.js +0 -75
  100. package/scripts/gep_append_event.js +0 -96
  101. package/scripts/gep_personality_report.js +0 -234
  102. package/scripts/human_report.js +0 -147
  103. package/scripts/recall-verify-report.js +0 -234
  104. package/scripts/recover_loop.js +0 -61
  105. package/scripts/seed-merchants.js +0 -91
  106. package/scripts/suggest_version.js +0 -89
  107. package/scripts/validate-modules.js +0 -38
  108. package/scripts/validate-suite.js +0 -78
  109. package/skills/index.json +0 -14
  110. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,602 @@
1
- const _0x238cfb=_0x2077;(function(_0x1c82ab,_0x4fa350){const _0x3987cf=_0x2077,_0x22654f=_0x1c82ab();while(!![]){try{const _0x52aa43=-parseInt(_0x3987cf(0x1db,'\x6a\x6a\x63\x28'))/(0x213f+0xa0c*0x1+-0x2b4a)*(parseInt(_0x3987cf(0x34e,'\x31\x32\x26\x5b'))/(0x1e7*0x1+0x123a+-0x141f*0x1))+parseInt(_0x3987cf(0x172,'\x58\x57\x50\x42'))/(0x33*0xb+0x11*-0xad+0x94f)*(parseInt(_0x3987cf(0x24a,'\x26\x70\x57\x4b'))/(-0xafd*0x2+-0x252+0x1850))+parseInt(_0x3987cf(0x10e,'\x44\x5d\x26\x26'))/(0x10b8+-0x1d*-0x1f+-0xa1b*0x2)*(parseInt(_0x3987cf(0x1cb,'\x33\x79\x66\x69'))/(0x26a+-0x4d*0x2b+0xa8b))+-parseInt(_0x3987cf(0x190,'\x66\x34\x55\x39'))/(0x293*0xa+0x1*0xa57+0x39b*-0xa)+parseInt(_0x3987cf(0x1fa,'\x4f\x39\x46\x77'))/(0x1d08+0x8*-0x4bd+0x14*0x72)+-parseInt(_0x3987cf(0x3dc,'\x34\x21\x35\x24'))/(-0x26f5+-0x473+0x2b71)*(parseInt(_0x3987cf(0x1b4,'\x32\x70\x26\x75'))/(0x1ccb+-0xd85+0x514*-0x3))+parseInt(_0x3987cf(0x258,'\x25\x6b\x73\x36'))/(-0x44*0x8b+0xad*0x37+-0x2*0x1a);if(_0x52aa43===_0x4fa350)break;else _0x22654f['push'](_0x22654f['shift']());}catch(_0x173534){_0x22654f['push'](_0x22654f['shift']());}}}(_0x5007,0x1*-0xa3c9a+-0x6c7d*0x9+0x139198));const _0x1d7709=(function(){let _0x48a8c0=!![];return function(_0x4d39bb,_0x42176d){const _0x326205=_0x48a8c0?function(){const _0x227b38=_0x2077;if(_0x42176d){const _0xdec556=_0x42176d[_0x227b38(0x1ff,'\x28\x41\x57\x47')](_0x4d39bb,arguments);return _0x42176d=null,_0xdec556;}}:function(){};return _0x48a8c0=![],_0x326205;};}()),_0x1e8e4b=_0x1d7709(this,function(){const _0xe9c2b3=_0x2077,_0x11150b={};_0x11150b[_0xe9c2b3(0x10f,'\x33\x79\x66\x69')]=_0xe9c2b3(0x219,'\x37\x62\x49\x58')+_0xe9c2b3(0x156,'\x29\x42\x53\x4c');const _0x210aca=_0x11150b;return _0x1e8e4b['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0xe9c2b3(0x186,'\x44\x41\x31\x77')](_0x210aca[_0xe9c2b3(0x158,'\x44\x4d\x28\x40')])[_0xe9c2b3(0x2fd,'\x39\x40\x47\x62')]()[_0xe9c2b3(0x174,'\x76\x55\x42\x4f')+_0xe9c2b3(0x2fe,'\x57\x4b\x71\x38')](_0x1e8e4b)[_0xe9c2b3(0x151,'\x4f\x67\x4a\x49')](_0xe9c2b3(0x33f,'\x29\x42\x53\x4c')+'\x2b\x29\x2b\x24');});_0x1e8e4b();const {scoreTagOverlap:_0x59e43c,expandSignals:_0x4f85ab}=require(_0x238cfb(0x2a5,'\x31\x32\x26\x5b')+'\x6e\x67\x53\x69\x67\x6e\x61\x6c'+'\x73'),{captureEnvFingerprint:_0x595791}=require(_0x238cfb(0x14d,'\x52\x5a\x46\x4a')+_0x238cfb(0x205,'\x40\x59\x4e\x66')),{getEpigeneticBoost:_0x1121e6,isEpigeneticallySuppressed:_0x40da6f}=require(_0x238cfb(0x291,'\x4e\x4f\x37\x62')+_0x238cfb(0x288,'\x52\x24\x4f\x6d')),_0x5eed8b=parseFloat(process.env.SEMANTIC_MATCH_WEIGHT||_0x238cfb(0x367,'\x34\x5e\x51\x62'))||0x1*0x7d3+0x1273+-0x1a46*0x1+0.4,_0xbc1a65=new Set(['\x74\x68\x65',_0x238cfb(0x18e,'\x37\x62\x49\x58'),_0x238cfb(0x11e,'\x24\x76\x53\x54'),_0x238cfb(0x23a,'\x36\x6d\x6b\x38'),_0x238cfb(0x359,'\x72\x69\x40\x38'),_0x238cfb(0x2c1,'\x64\x47\x55\x42'),'\x74\x68\x69\x73',_0x238cfb(0x139,'\x53\x47\x71\x51'),'\x77\x68\x65\x6e',_0x238cfb(0x3f1,'\x58\x23\x29\x78'),_0x238cfb(0x3d3,'\x52\x5a\x46\x4a'),_0x238cfb(0x303,'\x41\x31\x70\x49'),_0x238cfb(0x3f4,'\x69\x4f\x68\x62'),_0x238cfb(0x1f0,'\x31\x32\x26\x5b'),_0x238cfb(0x248,'\x31\x32\x26\x5b'),_0x238cfb(0x132,'\x52\x24\x4f\x6d'),_0x238cfb(0x377,'\x69\x4f\x68\x62'),_0x238cfb(0x349,'\x29\x42\x53\x4c'),_0x238cfb(0x187,'\x4f\x39\x46\x77'),_0x238cfb(0x281,'\x34\x21\x35\x24'),_0x238cfb(0x3b0,'\x25\x28\x65\x25'),_0x238cfb(0x209,'\x34\x5e\x51\x62'),'\x61\x6c\x73\x6f',_0x238cfb(0x253,'\x4f\x39\x46\x77'),_0x238cfb(0x405,'\x4e\x4f\x37\x62'),'\x63\x6f\x75\x6c\x64']);function _0x5ebd06(_0x128df1){const _0x3a8159=_0x238cfb,_0x48d2f9={};_0x48d2f9[_0x3a8159(0x293,'\x62\x4e\x68\x70')]=function(_0x4fb3de,_0x4a7cc5){return _0x4fb3de>=_0x4a7cc5;},_0x48d2f9['\x63\x66\x4c\x50\x47']=function(_0x14ebf9,_0x128e61){return _0x14ebf9||_0x128e61;};const _0x5d557b=_0x48d2f9;return String(_0x5d557b['\x63\x66\x4c\x50\x47'](_0x128df1,''))[_0x3a8159(0x302,'\x76\x55\x42\x4f')+_0x3a8159(0x2b7,'\x29\x42\x53\x4c')]()[_0x3a8159(0x16b,'\x32\x70\x26\x75')](/[^\p{L}\p{N}_\-]+/gu,'\x20')[_0x3a8159(0x32c,'\x32\x70\x26\x75')](/\s+/)[_0x3a8159(0x19f,'\x4d\x36\x50\x78')](function(_0x475c34){const _0x56d8c4=_0x3a8159;return _0x5d557b['\x54\x77\x4f\x4c\x64'](_0x475c34[_0x56d8c4(0x16f,'\x31\x32\x26\x5b')],0x12*-0x44+-0x8b0+-0x47e*-0x3)&&!_0xbc1a65[_0x56d8c4(0x16a,'\x73\x23\x29\x77')](_0x475c34);});}function _0x565150(_0x48b81e){const _0x2a0230=_0x238cfb,_0xbfa703={};_0xbfa703[_0x2a0230(0x124,'\x64\x47\x55\x42')]=function(_0x2ff196,_0x11a8e4){return _0x2ff196<_0x11a8e4;},_0xbfa703['\x6b\x76\x4f\x48\x54']='\x50\x65\x55\x4d\x72';const _0x27042a=_0xbfa703;var _0x4773cc={};for(var _0x3b156d=0x1f6c+-0x1082+0x17*-0xa6;_0x27042a[_0x2a0230(0x230,'\x4f\x67\x4a\x49')](_0x3b156d,_0x48b81e[_0x2a0230(0x2d0,'\x53\x34\x65\x5e')]);_0x3b156d++){_0x27042a[_0x2a0230(0x3d5,'\x44\x4d\x28\x40')]===_0x2a0230(0x277,'\x51\x47\x29\x5b')?_0x3e0af5[_0x2a0230(0x279,'\x36\x6d\x6b\x38')](_0x2a0230(0x31b,'\x31\x32\x26\x5b')+_0x2a0230(0x224,'\x36\x6d\x6b\x38')+_0x5b2e4a[_0x2a0230(0x260,'\x33\x79\x66\x69')+_0x2a0230(0x102,'\x4d\x36\x50\x78')][_0x2a0230(0x2ff,'\x4f\x67\x4a\x49')](_0x2a0230(0x29d,'\x4e\x4f\x37\x62'))):_0x4773cc[_0x48b81e[_0x3b156d]]=(_0x4773cc[_0x48b81e[_0x3b156d]]||-0x1*-0xcbb+0x49*-0x44+0x1f*0x37)+(0x12da+-0x7*-0x259+-0x2348);}return _0x4773cc;}function _0x30c8e2(_0x4b9dc4,_0x419357){const _0x2c8428=_0x238cfb,_0x1b1882={};_0x1b1882['\x64\x50\x67\x51\x4d']=_0x2c8428(0x256,'\x65\x77\x6f\x5e')+'\x31',_0x1b1882[_0x2c8428(0xe9,'\x25\x28\x65\x25')]=function(_0x5819c3,_0x21b432){return _0x5819c3*_0x21b432;},_0x1b1882[_0x2c8428(0x18a,'\x29\x42\x53\x4c')]=function(_0x3840ff,_0x2b37a0){return _0x3840ff*_0x2b37a0;},_0x1b1882[_0x2c8428(0x12b,'\x65\x45\x5b\x45')]=function(_0x20151d,_0x47628e){return _0x20151d===_0x47628e;},_0x1b1882[_0x2c8428(0x3e4,'\x57\x4b\x71\x38')]=function(_0x33cdec,_0x39d41f){return _0x33cdec===_0x39d41f;},_0x1b1882[_0x2c8428(0x331,'\x4e\x4f\x37\x62')]=function(_0x1b7662,_0x2db094){return _0x1b7662/_0x2db094;};const _0x4f3a47=_0x1b1882;var _0x2bd196=new Set(Object['\x6b\x65\x79\x73'](_0x4b9dc4)[_0x2c8428(0x1fe,'\x25\x6b\x73\x36')](Object[_0x2c8428(0x1f4,'\x51\x47\x29\x5b')](_0x419357))),_0x7d4795=0x1e93*0x1+-0x1*-0x35f+0x5*-0x6ca,_0x20ffcb=0x2*-0x10b9+0x2*0x43+0x4b4*0x7,_0xeed83=0x1f*-0x5+-0xc6e+0xd09;_0x2bd196[_0x2c8428(0x27b,'\x72\x69\x40\x38')](function(_0x51ee3b){const _0x479be5=_0x2c8428,_0x593edf=_0x4f3a47['\x64\x50\x67\x51\x4d'][_0x479be5(0xfc,'\x34\x26\x37\x44')]('\x7c');let _0x5af18a=0xf1+-0x10ed*-0x1+-0x11de;while(!![]){switch(_0x593edf[_0x5af18a++]){case'\x30':_0x20ffcb+=_0x4f3a47[_0x479be5(0xfb,'\x4d\x36\x50\x78')](_0x3f4198,_0x3f4198);continue;case'\x31':_0xeed83+=_0x4f3a47['\x62\x50\x67\x4a\x4a'](_0xda93af,_0xda93af);continue;case'\x32':var _0xda93af=_0x419357[_0x51ee3b]||0xc5*-0x3+-0xd*-0x199+-0x1276;continue;case'\x33':_0x7d4795+=_0x4f3a47[_0x479be5(0x408,'\x6a\x6a\x63\x28')](_0x3f4198,_0xda93af);continue;case'\x34':var _0x3f4198=_0x4b9dc4[_0x51ee3b]||0x1d8c+0x882+-0x260e;continue;}break;}});if(_0x4f3a47[_0x2c8428(0x324,'\x52\x24\x4f\x6d')](_0x20ffcb,0x1*0x16b9+-0x10a+-0x15af)||_0x4f3a47[_0x2c8428(0x282,'\x66\x34\x55\x39')](_0xeed83,-0x72f*0x4+-0x24e0+0x419c))return-0x583*0x1+-0x26bd+0x8*0x588;return _0x4f3a47['\x49\x70\x6e\x71\x75'](_0x7d4795,_0x4f3a47[_0x2c8428(0x20e,'\x52\x5a\x46\x4a')](Math[_0x2c8428(0x117,'\x73\x23\x29\x77')](_0x20ffcb),Math[_0x2c8428(0xe0,'\x65\x77\x6f\x5e')](_0xeed83)));}function _0x1d8197(_0x31cea8,_0x16cd79){const _0x583809=_0x238cfb,_0x26f3e8={'\x76\x46\x69\x55\x55':function(_0x1899fd,_0x18f774){return _0x1899fd(_0x18f774);},'\x64\x5a\x43\x79\x4d':function(_0x1cd0c7,_0x20e29a){return _0x1cd0c7||_0x20e29a;},'\x73\x78\x4d\x58\x6c':function(_0x4e2e82,_0x547d4f){return _0x4e2e82===_0x547d4f;},'\x44\x4c\x78\x4f\x41':function(_0x4c2ac9,_0x2922e4){return _0x4c2ac9(_0x2922e4);}};if(_0x26f3e8[_0x583809(0x391,'\x33\x79\x66\x69')](!_0x31cea8,!_0x16cd79)||_0x26f3e8[_0x583809(0x3d7,'\x62\x4e\x68\x70')](_0x16cd79[_0x583809(0x318,'\x24\x76\x53\x54')],-0x2*0x1316+-0x1a7a+0x40a6))return 0x17*-0x74+0x195d+0x9*-0x1a9;var _0x2ab8c7=[];_0x16cd79['\x66\x6f\x72\x45\x61\x63\x68'](function(_0x19da56){const _0x42b0b2=_0x583809;_0x2ab8c7=_0x2ab8c7[_0x42b0b2(0x1e8,'\x31\x32\x26\x5b')](_0x5ebd06(_0x19da56));});if(_0x2ab8c7[_0x583809(0x1ea,'\x52\x24\x4f\x6d')]===0x3*0xc6b+0x655+-0x2b96)return 0x115a*0x1+0x1664+-0x2*0x13df;var _0x4836cf=[];Array[_0x583809(0x135,'\x30\x70\x77\x6e')](_0x31cea8[_0x583809(0x1c5,'\x52\x24\x4f\x6d')+_0x583809(0x374,'\x76\x55\x42\x4f')])&&_0x31cea8[_0x583809(0x372,'\x6a\x6a\x63\x28')+_0x583809(0x290,'\x6c\x57\x55\x64')][_0x583809(0x2cf,'\x59\x21\x36\x77')](function(_0x24a919){const _0x25bf82=_0x583809;_0x4836cf=_0x4836cf[_0x25bf82(0x37f,'\x53\x47\x71\x51')](_0x26f3e8[_0x25bf82(0x12f,'\x65\x77\x6f\x5e')](_0x5ebd06,_0x24a919));});if(_0x31cea8[_0x583809(0x154,'\x41\x31\x70\x49')])_0x4836cf=_0x4836cf[_0x583809(0x27a,'\x58\x23\x29\x78')](_0x26f3e8[_0x583809(0x3c1,'\x4d\x36\x50\x78')](_0x5ebd06,_0x31cea8[_0x583809(0x2e3,'\x70\x68\x6f\x40')]));if(_0x31cea8['\x69\x64'])_0x4836cf=_0x4836cf[_0x583809(0x232,'\x4f\x39\x46\x77')](_0x5ebd06(_0x31cea8['\x69\x64']));if(_0x26f3e8[_0x583809(0x2c9,'\x26\x70\x57\x4b')](_0x4836cf[_0x583809(0x1c2,'\x40\x59\x4e\x66')],0x26e5+0x230+-0x2915))return 0x1cca+0xcab+0x1*-0x2975;var _0x10439b=_0x26f3e8[_0x583809(0x28c,'\x33\x79\x66\x69')](_0x565150,_0x2ab8c7),_0x4c47e1=_0x565150(_0x4836cf);return _0x30c8e2(_0x10439b,_0x4c47e1);}const _0x5c553f=0xebf*0x1+-0x67*0x4+-0x923;function _0x42f73e(_0x968081,_0x4de7e2){const _0x30f44d=_0x238cfb,_0x45ef1d={'\x77\x4a\x6f\x54\x74':function(_0x32b51e,_0x2d2f13){return _0x32b51e===_0x2d2f13;},'\x4a\x7a\x4f\x6a\x4b':_0x30f44d(0x13d,'\x72\x69\x40\x38'),'\x55\x51\x72\x79\x73':function(_0x1981d7,_0x233b5f){return _0x1981d7>=_0x233b5f;},'\x5a\x6d\x6a\x45\x75':function(_0xe5e1c7,_0xc4bde4){return _0xe5e1c7||_0xc4bde4;},'\x79\x69\x5a\x67\x6b':function(_0xf960ac,_0x5ce054){return _0xf960ac===_0x5ce054;},'\x4e\x63\x5a\x6e\x61':function(_0x5e6d87,_0x1e97a8){return _0x5e6d87(_0x1e97a8);},'\x66\x72\x69\x44\x75':function(_0x26bf12,_0x3bea06){return _0x26bf12>=_0x3bea06;},'\x76\x4f\x50\x44\x50':function(_0x335a00,_0x481456){return _0x335a00>_0x481456;},'\x63\x43\x77\x5a\x79':function(_0x131a92,_0xa9bef){return _0x131a92+_0xa9bef;},'\x6b\x42\x49\x76\x62':_0x30f44d(0x385,'\x52\x5a\x46\x4a'),'\x76\x66\x45\x66\x4f':function(_0x1536f9,_0x364eef){return _0x1536f9||_0x364eef;}};if(_0x45ef1d[_0x30f44d(0x182,'\x54\x76\x48\x54')](!_0x968081,!_0x4de7e2)||_0x45ef1d[_0x30f44d(0x12e,'\x44\x4d\x28\x40')](_0x4de7e2[_0x30f44d(0x3a5,'\x4f\x39\x46\x77')],-0x28a+0xa8e+-0x804))return![];const _0xa09e54=_0x45ef1d[_0x30f44d(0xe7,'\x53\x47\x71\x51')](String,_0x968081),_0x47e757=_0x4de7e2[_0x30f44d(0x145,'\x44\x4d\x28\x40')](_0x5cfe69=>String(_0x5cfe69)),_0x50d42a=_0x45ef1d[_0x30f44d(0x242,'\x4e\x4f\x37\x62')](_0xa09e54[_0x30f44d(0x400,'\x33\x79\x66\x69')],0x79f+0x1987+0xe*-0x25e)&&_0xa09e54[_0x30f44d(0x265,'\x26\x70\x57\x4b')+'\x74\x68']('\x2f')&&_0x45ef1d[_0x30f44d(0x2eb,'\x44\x4d\x28\x40')](_0xa09e54['\x6c\x61\x73\x74\x49\x6e\x64\x65'+'\x78\x4f\x66']('\x2f'),0x2592+0x1377+0x5d*-0x9d);if(_0x50d42a){if(_0xa09e54[_0x30f44d(0x397,'\x4e\x43\x78\x28')]>_0x5c553f)return![];const _0xad1d9e=_0xa09e54[_0x30f44d(0x3e8,'\x51\x47\x29\x5b')+_0x30f44d(0x304,'\x44\x41\x31\x77')]('\x2f'),_0xa5de51=_0xa09e54[_0x30f44d(0x19a,'\x40\x59\x4e\x66')](-0x9*0x1b9+-0x271+-0x5*-0x397,_0xad1d9e),_0x57e7c1=_0xa09e54[_0x30f44d(0x185,'\x4f\x39\x46\x77')](_0x45ef1d[_0x30f44d(0x2be,'\x34\x21\x35\x24')](_0xad1d9e,0x812+0x1856+-0x2067));try{if(_0x45ef1d['\x77\x4a\x6f\x54\x74'](_0x45ef1d[_0x30f44d(0x3ad,'\x53\x47\x71\x51')],_0x30f44d(0x2af,'\x40\x59\x4e\x66')))return _0xc6c857[_0x30f44d(0x1cd,'\x4e\x43\x78\x28')]&&_0x45ef1d[_0x30f44d(0x27c,'\x70\x68\x6f\x40')](_0x3fc6f9[_0x30f44d(0x280,'\x4f\x63\x43\x4e')][_0x30f44d(0x1c1,'\x34\x5e\x51\x62')+_0x30f44d(0x3b1,'\x52\x24\x4f\x6d')],_0x45ef1d[_0x30f44d(0x2cb,'\x6a\x6a\x63\x28')])&&_0x45ef1d[_0x30f44d(0x1b3,'\x39\x40\x47\x62')](_0x1d9747[_0x30f44d(0x103,'\x59\x21\x36\x77')],_0x5878cd*_0x3de025);else{const _0x5c92e3=new RegExp(_0xa5de51,_0x45ef1d[_0x30f44d(0x2b4,'\x70\x68\x6f\x40')](_0x57e7c1,'\x69'));return _0x47e757[_0x30f44d(0x326,'\x36\x6d\x6b\x38')](_0x5700d9=>_0x5c92e3['\x74\x65\x73\x74'](_0x5700d9));}}catch(_0x3fdd66){}}if(_0xa09e54[_0x30f44d(0x2f2,'\x66\x34\x55\x39')]('\x7c')&&!_0xa09e54[_0x30f44d(0x40f,'\x34\x5e\x51\x62')+'\x74\x68']('\x2f')){const _0x5af144=_0xa09e54['\x73\x70\x6c\x69\x74']('\x7c')[_0x30f44d(0x206,'\x34\x5e\x51\x62')](_0x2c52e8=>_0x2c52e8['\x74\x72\x69\x6d']()[_0x30f44d(0x1ba,'\x59\x21\x36\x77')+_0x30f44d(0x226,'\x53\x47\x71\x51')]())[_0x30f44d(0x3d2,'\x77\x62\x37\x51')](Boolean);return _0x5af144[_0x30f44d(0x164,'\x41\x31\x70\x49')](_0x5309c5=>_0x47e757['\x73\x6f\x6d\x65'](_0x1fa4e0=>_0x1fa4e0[_0x30f44d(0x1de,'\x72\x69\x40\x38')+_0x30f44d(0x40d,'\x40\x59\x4e\x66')]()[_0x30f44d(0x2d1,'\x44\x4d\x28\x40')](_0x5309c5)));}const _0x5b9968=_0xa09e54[_0x30f44d(0x176,'\x62\x4e\x68\x70')+_0x30f44d(0xde,'\x26\x70\x57\x4b')]();return _0x47e757[_0x30f44d(0x1d3,'\x4f\x67\x4a\x49')](_0x19e4e2=>_0x19e4e2[_0x30f44d(0xe6,'\x26\x70\x57\x4b')+_0x30f44d(0xec,'\x34\x26\x37\x44')]()['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x5b9968));}function _0x19379a(_0x6ea418,_0x2e77e1){const _0x274e62=_0x238cfb,_0x2dcc3a={'\x49\x54\x6c\x6b\x54':function(_0x43ee08,_0xdb6be){return _0x43ee08!==_0xdb6be;},'\x57\x42\x50\x66\x73':'\x47\x65\x6e\x65','\x77\x68\x58\x46\x59':function(_0xe7dc8c,_0xfbc201,_0x56c7b3){return _0xe7dc8c(_0xfbc201,_0x56c7b3);},'\x62\x51\x58\x73\x59':function(_0x1ba0fa,_0x571602){return _0x1ba0fa===_0x571602;},'\x77\x49\x6e\x42\x7a':function(_0x30e2f7,_0x1c40d6){return _0x30e2f7>_0x1c40d6;},'\x62\x7a\x75\x77\x6d':function(_0x19bc9e,_0x1d60b2){return _0x19bc9e*_0x1d60b2;},'\x58\x51\x62\x55\x70':function(_0x4f1baa,_0x226850,_0x303927){return _0x4f1baa(_0x226850,_0x303927);},'\x55\x57\x50\x63\x61':function(_0x22c92c,_0x42a055){return _0x22c92c*_0x42a055;},'\x56\x75\x57\x6d\x7a':function(_0x33d284,_0x36f7e6,_0x45c495){return _0x33d284(_0x36f7e6,_0x45c495);},'\x76\x6e\x51\x6d\x6c':function(_0x2db299,_0x118a9c){return _0x2db299+_0x118a9c;}};if(!_0x6ea418||_0x2dcc3a[_0x274e62(0x32b,'\x24\x76\x53\x54')](_0x6ea418[_0x274e62(0x2e0,'\x4f\x39\x46\x77')],_0x2dcc3a[_0x274e62(0x355,'\x6a\x6a\x63\x28')]))return-0x24cf+0x656+0x1e79;const _0x43935c=Array[_0x274e62(0x2f8,'\x34\x26\x37\x44')](_0x6ea418[_0x274e62(0x284,'\x39\x40\x47\x62')+_0x274e62(0x2f0,'\x31\x32\x26\x5b')])?_0x6ea418[_0x274e62(0x347,'\x25\x6b\x73\x36')+_0x274e62(0x39d,'\x58\x23\x29\x78')]:[],_0x3ca7d5=_0x2dcc3a[_0x274e62(0x1c8,'\x64\x47\x55\x42')](_0x59e43c,_0x6ea418,_0x2e77e1);if(_0x2dcc3a[_0x274e62(0x376,'\x4d\x36\x50\x78')](_0x43935c[_0x274e62(0x1c3,'\x44\x41\x31\x77')],0x1*-0x2375+0x168d*-0x1+-0xf*-0x3de))return _0x2dcc3a[_0x274e62(0x149,'\x44\x4d\x28\x40')](_0x3ca7d5,0x154f+0x53b+-0x1a8a)?_0x2dcc3a[_0x274e62(0x264,'\x32\x70\x26\x75')](_0x3ca7d5,-0x1*-0xe86+0x419*-0x4+-0x1de*-0x1+0.6):-0x1aaf+-0x1b7*0xd+0x30fa;let _0x205604=-0xae6+-0x4a*0x84+0x310e;for(const _0x2fe90b of _0x43935c){if(_0x2dcc3a[_0x274e62(0x33e,'\x29\x42\x53\x4c')](_0x42f73e,_0x2fe90b,_0x2e77e1))_0x205604+=0x2669*0x1+0x7*-0x2a7+-0x13d7;}const _0x48db5c=_0x2dcc3a[_0x274e62(0x11d,'\x70\x68\x6f\x40')](_0x2dcc3a[_0x274e62(0x30b,'\x37\x62\x49\x58')](_0x1d8197,_0x6ea418,_0x2e77e1),_0x5eed8b);return _0x2dcc3a[_0x274e62(0x19d,'\x73\x23\x29\x77')](_0x205604,_0x2dcc3a[_0x274e62(0x2c6,'\x4d\x36\x50\x78')](_0x3ca7d5,-0x1*0x25ce+0x242d+0x8b*0x3+0.6))+_0x48db5c;}function _0x5007(){const _0x18606b=['\x57\x37\x56\x63\x54\x63\x54\x6e\x57\x36\x75','\x57\x35\x66\x69\x41\x63\x5a\x63\x49\x43\x6f\x69\x67\x73\x34','\x45\x61\x38\x58\x57\x37\x43\x55\x41\x57','\x57\x51\x37\x64\x53\x53\x6f\x4b\x57\x37\x78\x63\x4b\x61','\x57\x37\x39\x2f\x57\x37\x56\x64\x4f\x71','\x57\x34\x42\x63\x52\x59\x35\x51\x64\x77\x34\x36\x44\x71','\x44\x4c\x64\x63\x4a\x6d\x6b\x73','\x76\x38\x6f\x6b\x6f\x43\x6f\x6c\x57\x36\x78\x63\x51\x43\x6b\x73\x57\x50\x57','\x57\x4f\x56\x64\x52\x43\x6f\x47\x57\x36\x56\x63\x51\x61','\x43\x38\x6f\x74\x70\x4b\x46\x64\x4d\x32\x70\x63\x4b\x57','\x45\x43\x6f\x7a\x57\x4f\x61\x4f','\x43\x30\x70\x63\x49\x6d\x6b\x74\x61\x4c\x42\x63\x4a\x43\x6f\x77','\x79\x38\x6f\x36\x57\x36\x69\x2f\x46\x47','\x66\x74\x4c\x6c\x57\x4f\x37\x64\x4b\x57','\x65\x4e\x4e\x64\x52\x68\x54\x57\x74\x38\x6f\x54\x77\x47','\x57\x51\x70\x63\x48\x62\x42\x64\x4d\x38\x6b\x33','\x57\x4f\x38\x4c\x46\x61','\x79\x38\x6f\x67\x57\x4f\x69\x57\x57\x50\x78\x63\x52\x59\x69','\x77\x62\x33\x63\x4e\x31\x50\x45\x43\x6d\x6b\x4a\x57\x35\x30','\x61\x4c\x64\x64\x4c\x76\x35\x48','\x6a\x53\x6f\x42\x70\x38\x6b\x72\x57\x52\x79','\x42\x53\x6f\x7a\x64\x31\x61','\x57\x37\x66\x52\x71\x4a\x64\x63\x53\x47','\x45\x38\x6b\x49\x57\x51\x33\x64\x4d\x43\x6f\x4d','\x45\x38\x6f\x74\x67\x47','\x43\x75\x70\x63\x4f\x6d\x6b\x66\x68\x57','\x7a\x53\x6f\x6e\x57\x50\x57\x37\x57\x4f\x64\x63\x50\x61','\x57\x35\x5a\x64\x4a\x4d\x58\x48\x64\x47','\x57\x35\x35\x52\x6a\x53\x6b\x6f\x42\x76\x79\x37\x6d\x61','\x57\x34\x5a\x63\x47\x43\x6b\x53\x57\x36\x75','\x6a\x6d\x6f\x4c\x57\x51\x35\x31\x44\x75\x6e\x6d\x41\x71','\x57\x36\x74\x64\x51\x53\x6b\x5a\x68\x71','\x74\x38\x6f\x63\x6c\x72\x52\x63\x51\x61','\x74\x6d\x6f\x55\x63\x65\x6c\x64\x4e\x71','\x73\x43\x6f\x6b\x6f\x6d\x6f\x62\x57\x37\x74\x63\x50\x6d\x6b\x59\x57\x4f\x34','\x62\x53\x6f\x49\x44\x67\x4e\x63\x53\x72\x4e\x63\x4d\x59\x4f','\x6b\x73\x48\x71\x57\x52\x68\x64\x4c\x4c\x76\x39\x6d\x71','\x75\x53\x6f\x71\x6c\x62\x78\x63\x50\x71','\x42\x57\x38\x52\x57\x37\x75\x4a\x78\x53\x6b\x42\x6a\x71','\x57\x52\x56\x64\x4e\x53\x6b\x53\x63\x6d\x6b\x49\x57\x37\x30\x34\x57\x35\x38','\x6a\x4d\x6e\x38\x68\x53\x6b\x32\x64\x61','\x57\x34\x54\x45\x71\x49\x64\x63\x48\x6d\x6f\x76\x63\x63\x38','\x57\x4f\x33\x63\x4b\x61\x6c\x64\x48\x38\x6b\x70','\x46\x49\x38\x68\x57\x34\x69\x79','\x73\x58\x64\x63\x52\x43\x6b\x33\x78\x38\x6b\x51\x6b\x43\x6f\x66','\x6c\x48\x66\x64\x57\x50\x78\x64\x4f\x61','\x57\x4f\x71\x79\x57\x36\x7a\x50\x57\x37\x56\x63\x4b\x43\x6f\x4a\x64\x47','\x57\x36\x75\x59\x42\x48\x78\x64\x4b\x43\x6f\x72\x66\x57','\x43\x63\x69\x77\x57\x36\x69\x54','\x42\x65\x70\x63\x48\x43\x6b\x65\x64\x30\x56\x63\x4a\x6d\x6f\x64','\x57\x37\x46\x64\x47\x38\x6f\x76\x68\x65\x37\x63\x53\x47','\x57\x50\x75\x63\x57\x37\x61','\x44\x61\x35\x73\x57\x50\x31\x68\x69\x71','\x57\x36\x4a\x63\x47\x38\x6b\x62\x57\x34\x68\x63\x55\x38\x6f\x32\x57\x34\x38\x34','\x57\x4f\x46\x64\x51\x53\x6f\x37\x57\x35\x68\x63\x50\x68\x4b','\x57\x36\x6e\x6a\x69\x38\x6b\x73\x75\x61','\x75\x6d\x6b\x32\x57\x52\x46\x64\x52\x43\x6f\x66','\x57\x36\x68\x64\x4d\x43\x6f\x71\x57\x50\x76\x6f\x57\x36\x4e\x64\x48\x6d\x6f\x31\x57\x36\x4f','\x70\x38\x6b\x69\x57\x51\x30','\x57\x51\x4c\x6d\x57\x51\x4a\x63\x4b\x47','\x6c\x6d\x6f\x54\x57\x52\x6e\x55\x44\x61','\x68\x4e\x46\x64\x55\x77\x71','\x6b\x53\x6f\x47\x64\x57','\x57\x4f\x65\x7a\x57\x34\x34\x30\x57\x50\x79','\x57\x4f\x34\x77\x72\x77\x53\x50','\x57\x37\x33\x63\x54\x76\x64\x63\x54\x47','\x71\x6d\x6b\x47\x57\x51\x2f\x64\x4f\x43\x6f\x31\x57\x37\x34\x50\x6e\x71','\x6c\x43\x6b\x79\x57\x51\x44\x33\x76\x71','\x6f\x58\x58\x71\x57\x4f\x6c\x64\x54\x57','\x61\x53\x6f\x72\x57\x4f\x58\x57\x76\x61','\x73\x53\x6b\x4c\x57\x51\x43','\x57\x34\x5a\x64\x52\x38\x6b\x52\x57\x37\x42\x63\x48\x68\x39\x6d\x57\x52\x4f','\x74\x58\x74\x63\x4b\x65\x53','\x64\x6d\x6f\x49\x57\x51\x62\x47\x73\x57','\x67\x4c\x4f\x56\x79\x38\x6b\x44\x46\x6d\x6b\x4b','\x57\x36\x75\x63\x43\x48\x42\x64\x48\x61','\x70\x4a\x39\x76\x57\x52\x6c\x64\x47\x77\x48\x75\x69\x61','\x57\x34\x52\x63\x49\x6d\x6b\x32\x57\x36\x78\x63\x4e\x6d\x6b\x39\x57\x4f\x43\x48','\x70\x30\x34\x58\x57\x4f\x74\x64\x49\x65\x62\x47\x69\x61','\x57\x51\x37\x63\x4a\x72\x5a\x64\x4b\x38\x6b\x53\x57\x37\x71','\x57\x37\x68\x64\x4f\x43\x6b\x37\x57\x34\x4a\x63\x4a\x61','\x57\x34\x68\x63\x52\x57\x66\x66','\x57\x4f\x37\x63\x51\x53\x6b\x7a\x57\x36\x78\x63\x4d\x47','\x61\x53\x6f\x49\x57\x51\x35\x52\x42\x57','\x57\x50\x6d\x73\x57\x37\x50\x56\x57\x37\x43','\x57\x4f\x71\x4c\x46\x4c\x6d\x4c\x57\x50\x71','\x57\x50\x37\x64\x4c\x6d\x6f\x4c','\x45\x38\x6b\x4e\x57\x50\x52\x64\x51\x6d\x6f\x47','\x72\x61\x2f\x63\x4c\x6d\x6b\x41\x45\x71','\x57\x37\x46\x64\x48\x38\x6f\x6b\x64\x75\x4a\x63\x52\x43\x6f\x34\x57\x50\x34','\x57\x52\x68\x63\x4b\x64\x2f\x64\x52\x6d\x6b\x30','\x71\x31\x4a\x64\x55\x71','\x67\x38\x6b\x31\x57\x4f\x35\x76\x43\x47','\x6b\x6d\x6f\x68\x57\x36\x4e\x63\x54\x65\x30','\x57\x35\x62\x41\x78\x71','\x57\x36\x70\x64\x4d\x43\x6f\x77\x57\x35\x75\x5a\x57\x51\x2f\x64\x4b\x6d\x6f\x30\x57\x34\x78\x64\x55\x43\x6b\x74\x57\x50\x79','\x78\x47\x69\x38\x57\x36\x34\x64','\x63\x30\x34\x47\x79\x43\x6b\x7a\x42\x43\x6b\x2f\x57\x37\x69','\x6f\x77\x4c\x47\x64\x71','\x44\x64\x71\x72\x57\x4f\x66\x6b\x69\x38\x6b\x54\x69\x57','\x62\x6d\x6f\x6a\x57\x4f\x62\x46\x71\x57','\x57\x36\x68\x63\x4c\x77\x56\x63\x53\x6d\x6f\x43','\x57\x50\x71\x45\x57\x35\x4c\x59\x57\x36\x78\x63\x4d\x6d\x6f\x39\x6b\x61','\x57\x34\x56\x64\x55\x30\x31\x32\x6f\x71','\x65\x4e\x4f\x41\x57\x50\x56\x64\x4c\x61','\x57\x35\x39\x4e\x6e\x53\x6b\x46\x76\x4c\x65\x37\x6c\x61','\x57\x51\x70\x64\x55\x38\x6b\x30\x68\x6d\x6b\x33','\x57\x35\x70\x64\x50\x38\x6b\x2f\x57\x36\x5a\x63\x52\x68\x31\x42\x57\x4f\x61','\x57\x4f\x69\x31\x57\x34\x39\x42\x57\x35\x34','\x57\x50\x61\x64\x57\x34\x30','\x79\x43\x6b\x63\x6b\x43\x6f\x4a\x43\x61','\x57\x35\x76\x41\x78\x47','\x57\x4f\x4b\x76\x57\x37\x62\x5a\x57\x37\x68\x63\x4d\x61','\x74\x71\x79\x58\x57\x34\x30\x6a','\x73\x38\x6f\x71\x67\x61\x56\x63\x53\x53\x6f\x53\x74\x47','\x57\x37\x38\x67\x6b\x53\x6b\x72','\x71\x38\x6f\x72\x70\x61','\x57\x52\x4f\x44\x57\x37\x4b\x6e\x57\x4f\x71','\x78\x61\x4a\x63\x55\x75\x39\x6c\x79\x47','\x44\x30\x46\x63\x4a\x71','\x77\x43\x6f\x62\x57\x4f\x47\x35','\x78\x62\x52\x63\x54\x6d\x6b\x47\x73\x61','\x66\x43\x6b\x77\x57\x52\x4c\x6a\x76\x47','\x75\x43\x6b\x6a\x57\x52\x4a\x64\x54\x38\x6f\x75','\x57\x35\x37\x64\x49\x6d\x6b\x4e\x57\x37\x5a\x63\x4a\x47','\x57\x36\x38\x41\x6b\x58\x42\x64\x4c\x43\x6f\x53\x65\x66\x61','\x72\x38\x6f\x51\x43\x53\x6b\x62\x6c\x72\x61\x51\x57\x37\x35\x53\x57\x4f\x47\x6d\x57\x51\x30\x6e','\x57\x51\x30\x30\x79\x4c\x71\x78','\x57\x50\x43\x7a\x57\x34\x79\x56','\x57\x4f\x6d\x56\x7a\x4b\x34\x32\x57\x4f\x6d','\x57\x4f\x43\x71\x57\x36\x76\x76\x57\x37\x56\x63\x49\x43\x6f\x38','\x6c\x53\x6f\x4b\x65\x53\x6b\x70\x57\x4f\x2f\x64\x48\x57','\x6c\x4b\x66\x33\x66\x38\x6b\x4e\x6c\x78\x4f','\x74\x53\x6b\x47\x57\x51\x43','\x67\x53\x6b\x44\x63\x6d\x6f\x38\x78\x71','\x57\x4f\x68\x64\x49\x78\x4a\x63\x4c\x57','\x57\x35\x54\x35\x57\x37\x74\x64\x51\x61\x69','\x79\x38\x6f\x42\x57\x52\x71\x31\x57\x50\x52\x63\x50\x74\x6e\x6c','\x57\x36\x4a\x64\x50\x53\x6b\x4a\x65\x75\x4e\x63\x4d\x57','\x57\x52\x71\x67\x57\x35\x30\x65\x57\x52\x6d','\x57\x36\x52\x63\x53\x43\x6b\x52\x6d\x4e\x38','\x57\x36\x56\x64\x53\x53\x6f\x41\x64\x65\x4b','\x6f\x77\x39\x31\x66\x38\x6b\x4a\x63\x67\x30','\x57\x52\x4c\x55\x57\x50\x70\x63\x56\x68\x34','\x57\x34\x31\x58\x6a\x71','\x57\x52\x56\x64\x53\x58\x78\x63\x52\x53\x6f\x57\x44\x43\x6b\x53\x57\x37\x6e\x32','\x75\x6d\x6b\x31\x57\x52\x37\x64\x53\x53\x6f\x4a\x57\x36\x71\x73\x6e\x71','\x57\x37\x78\x63\x52\x67\x68\x63\x51\x38\x6f\x4f','\x57\x52\x5a\x63\x49\x53\x6b\x49\x57\x35\x56\x63\x4f\x53\x6f\x33\x57\x4f\x7a\x42','\x6c\x75\x75\x35\x57\x4f\x4a\x64\x4a\x31\x76\x58\x69\x71','\x57\x34\x76\x4c\x57\x34\x64\x64\x54\x48\x71\x49\x64\x57','\x44\x6d\x6f\x55\x6d\x71\x56\x63\x51\x57','\x77\x38\x6f\x43\x6d\x71','\x57\x36\x47\x67\x73\x47\x4e\x64\x48\x53\x6f\x35\x63\x47','\x57\x34\x54\x6b\x78\x64\x65','\x57\x36\x47\x41\x7a\x73\x4a\x64\x4e\x43\x6f\x49\x66\x47','\x78\x62\x64\x63\x4f\x43\x6b\x33','\x57\x37\x68\x64\x48\x38\x6f\x6a\x66\x4e\x78\x63\x53\x6d\x6f\x6f\x57\x50\x6d','\x57\x51\x64\x63\x4d\x43\x6b\x74\x57\x4f\x34','\x63\x43\x6f\x76\x57\x37\x42\x63\x52\x65\x44\x67','\x74\x53\x6f\x61\x67\x6d\x6f\x6c\x57\x36\x64\x63\x54\x43\x6b\x4c\x57\x51\x4b','\x76\x71\x6d\x66\x57\x37\x4f\x55','\x45\x43\x6f\x68\x57\x50\x38\x35','\x57\x4f\x69\x48\x57\x37\x6a\x78\x57\x35\x47','\x74\x43\x6f\x6e\x57\x50\x57\x35','\x45\x43\x6f\x43\x57\x50\x6d\x55\x57\x4f\x64\x63\x56\x58\x62\x68','\x57\x34\x30\x43\x6e\x71','\x57\x52\x64\x63\x4b\x38\x6b\x53\x57\x37\x6c\x63\x4a\x61','\x57\x34\x48\x4b\x57\x36\x4a\x64\x4f\x48\x69\x67\x67\x6d\x6b\x72','\x57\x50\x69\x67\x57\x35\x6e\x75\x57\x36\x61','\x57\x34\x4e\x63\x53\x38\x6b\x36\x57\x35\x4a\x63\x49\x71','\x67\x53\x6f\x70\x77\x31\x42\x63\x4b\x71','\x57\x4f\x6c\x64\x48\x33\x64\x63\x4e\x61\x46\x63\x4c\x53\x6f\x75\x6c\x61','\x57\x4f\x6d\x71\x57\x36\x76\x55\x57\x36\x46\x63\x4b\x43\x6f\x51\x67\x61','\x57\x35\x72\x78\x62\x43\x6b\x64\x71\x71','\x57\x50\x79\x66\x71\x67\x6d\x66','\x57\x34\x2f\x64\x4a\x4d\x58\x33\x66\x67\x52\x63\x4f\x6d\x6f\x58','\x6f\x38\x6f\x68\x57\x51\x72\x72\x41\x57','\x44\x38\x6f\x62\x64\x57','\x64\x6d\x6f\x75\x57\x37\x33\x63\x50\x76\x62\x6c','\x73\x53\x6f\x63\x6b\x47','\x6c\x57\x50\x45\x57\x50\x33\x64\x51\x61','\x57\x35\x38\x46\x70\x6d\x6b\x44\x79\x71','\x57\x37\x2f\x63\x50\x76\x6c\x63\x51\x38\x6f\x34\x46\x53\x6b\x4c\x57\x37\x34','\x68\x38\x6f\x39\x76\x67\x2f\x63\x50\x48\x4e\x63\x4c\x57','\x57\x36\x79\x71\x7a\x72\x34','\x57\x4f\x46\x64\x47\x32\x34','\x72\x48\x42\x63\x54\x43\x6b\x62\x72\x6d\x6b\x4a\x6a\x71','\x6a\x64\x76\x78','\x57\x51\x4c\x61\x57\x52\x78\x63\x4c\x67\x6d','\x57\x51\x70\x63\x51\x6d\x6b\x2f\x57\x36\x64\x63\x54\x47','\x45\x38\x6f\x56\x57\x37\x30\x69\x45\x43\x6b\x48\x57\x50\x57\x43','\x46\x76\x4a\x64\x52\x71\x71','\x57\x51\x2f\x63\x4a\x72\x2f\x64\x4d\x38\x6b\x51\x57\x36\x76\x78\x57\x4f\x4b','\x57\x52\x6e\x68\x57\x52\x2f\x63\x49\x67\x76\x58','\x75\x43\x6f\x61\x6e\x47\x56\x63\x50\x71','\x43\x38\x6f\x65\x67\x4c\x56\x64\x49\x4d\x43','\x78\x38\x6f\x62\x6a\x38\x6f\x6e\x57\x36\x70\x63\x51\x71','\x71\x78\x74\x64\x55\x49\x61\x72','\x57\x50\x43\x49\x79\x75\x38\x50\x57\x4f\x64\x64\x48\x71','\x57\x4f\x46\x64\x50\x65\x43\x7a\x57\x50\x52\x64\x4f\x38\x6f\x53\x46\x75\x35\x4f\x57\x51\x69','\x69\x43\x6f\x6c\x63\x53\x6b\x66\x57\x4f\x4b','\x75\x43\x6f\x56\x57\x37\x34\x63','\x66\x43\x6f\x62\x57\x36\x68\x63\x4d\x4c\x65','\x57\x34\x52\x64\x48\x4b\x50\x43\x63\x57','\x71\x48\x4a\x63\x52\x38\x6b\x58\x72\x71','\x57\x34\x54\x5a\x57\x36\x2f\x64\x4f\x74\x79\x53\x67\x43\x6b\x43','\x57\x34\x4b\x2f\x70\x38\x6b\x65\x79\x6d\x6b\x4b\x57\x34\x47\x52','\x74\x61\x70\x63\x4c\x30\x48\x70\x76\x6d\x6b\x34\x57\x37\x6d','\x57\x37\x76\x31\x6a\x74\x38','\x57\x52\x68\x64\x49\x53\x6b\x53\x64\x71','\x6f\x53\x6f\x57\x57\x51\x39\x5a\x43\x57','\x57\x37\x5a\x64\x4c\x6d\x6b\x45\x6d\x75\x38','\x57\x50\x30\x76\x57\x34\x79\x53\x57\x4f\x42\x64\x4a\x47','\x42\x43\x6f\x41\x6f\x58\x64\x63\x50\x61','\x57\x50\x33\x63\x53\x53\x6b\x2b\x57\x35\x46\x63\x54\x61','\x57\x36\x43\x41\x45\x71','\x57\x50\x2f\x64\x53\x6d\x6b\x31\x6e\x38\x6b\x69','\x57\x35\x5a\x64\x50\x78\x54\x70\x6e\x57','\x57\x35\x33\x64\x51\x53\x6b\x50\x57\x37\x57','\x73\x43\x6f\x6b\x6f\x6d\x6f\x62\x57\x37\x74\x63\x50\x6d\x6b\x2b\x57\x4f\x75','\x67\x38\x6f\x4f\x66\x38\x6b\x73\x57\x50\x61','\x57\x52\x71\x58\x57\x37\x30\x36\x57\x52\x71','\x73\x73\x6a\x59\x57\x50\x44\x31','\x46\x5a\x44\x7a\x57\x50\x44\x61\x6d\x6d\x6b\x51\x6e\x61','\x68\x75\x43\x30\x43\x61','\x78\x31\x74\x64\x4c\x61\x38\x50','\x57\x34\x42\x63\x55\x72\x58\x66','\x57\x36\x37\x64\x4f\x6d\x6b\x35\x68\x71','\x6e\x38\x6f\x2f\x57\x34\x68\x63\x4f\x68\x34','\x74\x59\x69\x31\x57\x34\x34\x76','\x57\x36\x70\x63\x4e\x64\x44\x31\x57\x34\x71','\x76\x48\x64\x63\x47\x43\x6b\x31\x72\x47','\x57\x34\x35\x39\x72\x58\x64\x63\x53\x47','\x44\x4c\x78\x63\x52\x38\x6b\x69\x61\x4c\x42\x63\x4c\x38\x6f\x75','\x75\x62\x6c\x63\x49\x68\x50\x70','\x43\x59\x76\x6d','\x65\x30\x53\x72\x57\x50\x74\x64\x51\x47','\x57\x34\x30\x62\x6a\x6d\x6b\x44\x73\x53\x6b\x34\x57\x34\x47\x52','\x71\x71\x6c\x63\x56\x31\x58\x6a\x43\x6d\x6b\x56','\x67\x53\x6b\x41\x70\x38\x6f\x79\x73\x61','\x57\x35\x44\x4c\x61\x49\x42\x64\x48\x57','\x73\x43\x6f\x61\x6a\x53\x6f\x71','\x43\x47\x34\x52\x57\x37\x53','\x57\x52\x2f\x63\x4e\x43\x6b\x49\x57\x34\x68\x63\x50\x47','\x57\x36\x66\x6c\x61\x38\x6b\x2f\x79\x61','\x76\x6d\x6b\x74\x68\x43\x6f\x74\x42\x33\x57','\x57\x4f\x42\x64\x4a\x67\x33\x63\x4e\x58\x74\x63\x4a\x6d\x6f\x4b','\x57\x36\x6e\x56\x57\x36\x70\x64\x52\x71\x69','\x57\x34\x42\x63\x4d\x6d\x6b\x59\x63\x75\x52\x63\x56\x74\x57','\x65\x38\x6b\x56\x64\x53\x6f\x6f\x43\x61','\x73\x58\x64\x63\x4a\x4c\x31\x6f\x46\x43\x6b\x5a\x57\x35\x65','\x57\x4f\x48\x70\x57\x4f\x70\x63\x4a\x78\x43','\x57\x51\x4b\x32\x57\x37\x34\x36\x57\x50\x4f','\x57\x34\x33\x63\x4f\x74\x62\x6e\x57\x36\x30','\x71\x48\x4a\x63\x51\x57','\x57\x36\x6e\x37\x69\x53\x6b\x74\x71\x61','\x57\x37\x4c\x30\x6a\x38\x6b\x61\x79\x71','\x57\x52\x30\x31\x57\x35\x71\x65\x57\x51\x4c\x4b\x57\x50\x38\x66','\x77\x64\x64\x63\x54\x43\x6b\x71\x76\x57','\x57\x35\x56\x63\x48\x38\x6b\x47\x57\x4f\x46\x64\x54\x76\x64\x64\x4a\x6d\x6f\x37\x57\x34\x46\x64\x51\x6d\x6f\x69','\x57\x34\x64\x63\x56\x63\x4c\x49\x68\x65\x38\x74\x43\x71','\x57\x51\x2f\x63\x56\x58\x5a\x64\x4d\x6d\x6b\x4f','\x57\x34\x46\x63\x4d\x53\x6f\x5a\x57\x35\x64\x63\x54\x4c\x52\x64\x56\x43\x6f\x2b','\x57\x51\x5a\x63\x48\x57\x74\x64\x4b\x43\x6b\x30\x57\x36\x48\x52\x57\x51\x57','\x65\x53\x6f\x49\x6d\x53\x6b\x7a\x57\x50\x71','\x57\x51\x6c\x63\x49\x43\x6b\x67\x57\x4f\x6e\x59\x57\x37\x33\x64\x48\x53\x6f\x76','\x6f\x53\x6f\x4c\x57\x51\x6a\x4f\x7a\x66\x69','\x57\x4f\x69\x65\x57\x34\x4b\x35\x57\x4f\x42\x64\x4c\x43\x6f\x4d\x57\x34\x71','\x57\x52\x79\x31\x57\x35\x71','\x57\x35\x68\x63\x51\x63\x50\x48\x67\x66\x4b\x54','\x44\x5a\x62\x70','\x78\x63\x4a\x63\x54\x5a\x6d','\x57\x34\x5a\x63\x4a\x73\x7a\x34\x65\x71','\x74\x64\x70\x63\x52\x43\x6b\x2f\x78\x57','\x78\x43\x6b\x6f\x66\x53\x6f\x78\x42\x4d\x62\x69\x63\x71','\x57\x50\x64\x64\x4e\x6d\x6b\x53\x64\x43\x6b\x6e','\x57\x35\x33\x64\x51\x53\x6b\x46\x57\x34\x4e\x63\x4f\x57','\x68\x4e\x6c\x64\x4d\x4e\x35\x2f\x73\x6d\x6f\x34\x73\x57','\x57\x52\x4a\x63\x4b\x6d\x6b\x44\x57\x35\x57','\x78\x4d\x2f\x63\x50\x38\x6b\x5a\x70\x71','\x57\x34\x4b\x6a\x6e\x53\x6b\x72\x44\x53\x6b\x38\x57\x34\x61\x50','\x57\x4f\x42\x64\x4c\x38\x6b\x52\x66\x43\x6b\x5a\x57\x37\x79\x6e\x57\x34\x6d','\x57\x34\x78\x63\x55\x63\x4c\x50','\x57\x35\x38\x45\x69\x53\x6b\x61','\x57\x51\x4b\x42\x57\x35\x30\x52\x57\x4f\x57','\x57\x35\x68\x63\x53\x49\x50\x50','\x57\x51\x6a\x75\x57\x51\x5a\x63\x53\x30\x69','\x57\x50\x61\x44\x57\x37\x72\x50\x57\x37\x46\x63\x4e\x6d\x6f\x36\x6a\x61','\x44\x38\x6f\x4d\x66\x38\x6f\x48\x57\x35\x6d','\x57\x37\x69\x71\x7a\x58\x37\x64\x4c\x38\x6f\x53\x70\x4b\x30','\x57\x35\x33\x64\x48\x32\x31\x52\x64\x57','\x57\x36\x35\x4c\x6a\x61','\x78\x66\x74\x64\x50\x57\x30\x44\x57\x37\x79\x78','\x57\x51\x42\x63\x47\x6d\x6b\x4e\x57\x35\x64\x63\x50\x47','\x57\x36\x46\x63\x52\x47\x66\x53\x57\x35\x30','\x57\x34\x46\x63\x55\x59\x66\x50\x67\x4c\x38\x39\x79\x47','\x57\x52\x78\x64\x4d\x53\x6b\x53\x61\x43\x6b\x5a\x57\x37\x65','\x78\x62\x5a\x63\x54\x38\x6b\x33\x74\x53\x6b\x54\x6c\x38\x6f\x64','\x43\x53\x6f\x6e\x57\x37\x75\x6a\x42\x53\x6b\x72\x57\x51\x30','\x57\x52\x74\x63\x4b\x76\x42\x63\x4a\x6d\x6f\x47\x42\x43\x6b\x79','\x57\x51\x33\x64\x48\x53\x6b\x66\x62\x38\x6b\x33\x57\x36\x4f','\x57\x36\x52\x64\x51\x53\x6b\x35\x63\x30\x56\x63\x4a\x6d\x6f\x6a\x57\x34\x43','\x57\x35\x39\x45\x71\x63\x64\x63\x55\x6d\x6f\x66\x62\x64\x47','\x57\x52\x42\x63\x48\x5a\x37\x64\x4d\x38\x6b\x56\x57\x37\x4c\x47\x57\x52\x57','\x57\x35\x64\x63\x54\x71\x76\x70\x57\x35\x33\x64\x51\x38\x6f\x72\x44\x71','\x57\x35\x31\x50\x7a\x59\x4e\x63\x49\x71','\x57\x36\x71\x6e\x45\x58\x46\x64\x4c\x43\x6f\x32\x65\x4b\x57','\x73\x38\x6b\x74\x68\x38\x6f\x72\x45\x67\x62\x69\x63\x71','\x57\x34\x53\x2b\x6f\x53\x6b\x2b\x45\x61','\x73\x6d\x6b\x64\x61\x6d\x6f\x43','\x73\x6d\x6f\x6f\x6f\x53\x6f\x61\x57\x37\x4a\x63\x56\x71','\x57\x51\x42\x63\x47\x6d\x6b\x56\x57\x35\x52\x63\x53\x43\x6f\x72\x57\x50\x76\x4f','\x57\x36\x5a\x64\x4b\x43\x6f\x39\x65\x75\x2f\x63\x54\x53\x6f\x50\x57\x50\x38','\x71\x38\x6f\x71\x70\x61','\x78\x6d\x6f\x67\x6f\x6d\x6f\x71\x57\x37\x6c\x63\x4f\x47','\x6e\x65\x75\x53\x71\x43\x6b\x70','\x57\x35\x65\x44\x57\x34\x4b\x59\x57\x35\x6c\x64\x48\x6d\x6f\x75\x57\x4f\x30','\x57\x36\x57\x75\x45\x57','\x6f\x77\x50\x37\x67\x53\x6b\x4e','\x62\x43\x6b\x35\x6a\x38\x6f\x66\x45\x30\x4f','\x6b\x32\x50\x2b','\x57\x4f\x56\x64\x4c\x6d\x6f\x34\x57\x35\x64\x63\x50\x78\x4a\x64\x4b\x38\x6f\x31','\x64\x43\x6f\x71\x57\x36\x53','\x6d\x4e\x46\x64\x51\x76\x48\x71','\x78\x53\x6b\x41\x68\x6d\x6f\x42\x41\x71','\x75\x6d\x6b\x4b\x57\x52\x70\x64\x50\x43\x6f\x30\x57\x36\x6d\x47\x6f\x61','\x72\x4a\x70\x63\x52\x63\x38\x4a\x66\x38\x6b\x34\x41\x31\x46\x64\x50\x6d\x6b\x36\x6c\x6d\x6b\x43','\x77\x43\x6b\x79\x66\x57','\x57\x52\x69\x4e\x72\x4c\x6d\x51','\x72\x6d\x6b\x39\x69\x73\x4e\x64\x4f\x75\x52\x64\x4d\x48\x2f\x64\x56\x38\x6f\x50\x43\x47\x4c\x7a','\x67\x32\x74\x64\x53\x4e\x62\x4c\x73\x71','\x57\x36\x64\x64\x52\x43\x6f\x4a\x6c\x4e\x79','\x71\x66\x74\x64\x4e\x47\x75\x70','\x57\x35\x4a\x63\x47\x43\x6b\x55\x57\x36\x78\x63\x4a\x43\x6b\x4e\x57\x4f\x6d\x58','\x6c\x77\x6e\x38\x68\x61','\x46\x38\x6f\x67\x67\x76\x64\x64\x49\x4e\x42\x63\x47\x38\x6f\x2b','\x63\x65\x65\x4f\x79\x6d\x6b\x5a\x44\x38\x6b\x59\x57\x36\x65','\x62\x53\x6f\x71\x57\x37\x52\x63\x52\x4b\x66\x68\x57\x52\x75\x4d','\x6e\x6d\x6b\x4c\x64\x38\x6f\x57\x44\x47','\x57\x35\x39\x55\x6b\x43\x6b\x7a\x71\x71','\x57\x52\x42\x63\x4a\x71\x64\x64\x4d\x53\x6b\x52','\x41\x61\x76\x6e\x57\x52\x7a\x62','\x57\x37\x62\x51\x62\x49\x42\x64\x49\x47','\x46\x57\x68\x63\x56\x43\x6b\x4c\x79\x71','\x6b\x5a\x6e\x76\x57\x51\x70\x64\x48\x32\x34','\x57\x4f\x6c\x64\x48\x33\x64\x63\x4e\x61\x46\x63\x4c\x53\x6f\x65\x6b\x71','\x73\x43\x6f\x67\x6d\x38\x6f\x6b\x57\x37\x42\x63\x56\x6d\x6b\x4b\x57\x52\x75','\x75\x43\x6f\x74\x6e\x72\x64\x63\x54\x61','\x57\x36\x6e\x42\x6d\x73\x74\x64\x49\x4c\x34\x71\x57\x4f\x71','\x78\x43\x6f\x66\x65\x76\x61','\x57\x36\x4b\x67\x72\x63\x6c\x64\x56\x71','\x66\x6d\x6f\x56\x45\x33\x70\x63\x53\x72\x5a\x63\x51\x71\x61','\x57\x35\x42\x63\x53\x47\x54\x4a\x64\x4b\x34\x4d\x76\x57','\x57\x35\x4a\x63\x47\x43\x6b\x55\x57\x36\x78\x63\x4a\x43\x6b\x4e\x57\x4f\x38\x36','\x57\x4f\x70\x64\x4e\x53\x6f\x39\x57\x37\x52\x63\x54\x61','\x70\x73\x48\x43\x57\x52\x68\x64\x48\x32\x35\x48\x69\x61','\x57\x4f\x53\x2f\x45\x30\x47\x55','\x57\x34\x38\x6f\x69\x6d\x6b\x68\x79\x6d\x6b\x4b\x57\x34\x57','\x67\x4d\x64\x64\x51\x68\x72\x35\x43\x43\x6f\x54\x77\x47','\x57\x52\x6e\x6e\x57\x52\x33\x64\x48\x4d\x66\x58\x7a\x47\x79','\x57\x51\x4e\x63\x4e\x47\x74\x64\x53\x38\x6b\x30','\x57\x37\x5a\x63\x4e\x38\x6b\x34\x61\x61','\x57\x51\x2f\x63\x4e\x49\x68\x64\x53\x38\x6b\x35','\x57\x50\x37\x63\x4a\x53\x6b\x36\x57\x4f\x54\x6b','\x74\x38\x6f\x58\x64\x75\x5a\x64\x4d\x47','\x68\x57\x74\x63\x50\x58\x69\x59\x57\x36\x71\x45\x6a\x6d\x6b\x57','\x77\x6d\x6f\x41\x70\x43\x6f\x69\x57\x37\x70\x63\x47\x38\x6b\x59\x57\x4f\x79','\x57\x52\x37\x64\x55\x6d\x6b\x56\x6e\x43\x6b\x62','\x6c\x4c\x75\x4d\x57\x4f\x75','\x78\x75\x68\x64\x55\x57\x47\x46\x57\x37\x61','\x57\x34\x4c\x39\x6e\x73\x6c\x64\x47\x47','\x57\x51\x35\x6d\x57\x50\x42\x63\x49\x78\x66\x58\x45\x49\x61','\x57\x50\x4a\x63\x4b\x73\x64\x64\x52\x6d\x6b\x6c','\x41\x30\x2f\x63\x48\x43\x6b\x6e\x63\x76\x56\x63\x56\x61','\x57\x36\x64\x64\x53\x53\x6f\x75\x63\x66\x74\x63\x53\x38\x6f\x38\x57\x4f\x34','\x6f\x5a\x6e\x41\x57\x52\x69','\x6f\x73\x6e\x2b\x57\x52\x42\x64\x4b\x4d\x38','\x57\x34\x65\x6b\x70\x43\x6b\x42\x7a\x38\x6b\x58\x57\x36\x57\x50','\x72\x53\x6b\x35\x57\x52\x52\x64\x4f\x38\x6f\x49\x57\x36\x6d\x53\x6d\x57','\x57\x34\x62\x4e\x6c\x53\x6b\x44\x75\x66\x61','\x67\x53\x6b\x35\x6b\x6d\x6f\x71\x42\x65\x4f','\x6c\x75\x35\x41\x6b\x53\x6b\x4f','\x41\x74\x48\x79\x57\x50\x58\x63\x6b\x6d\x6b\x57\x68\x71','\x73\x62\x5a\x63\x54\x43\x6b\x33','\x57\x51\x43\x75\x57\x37\x54\x34','\x57\x51\x57\x30\x57\x36\x69\x4d\x57\x52\x4b','\x57\x36\x37\x64\x51\x38\x6b\x32\x66\x65\x57','\x42\x38\x6f\x67\x57\x4f\x65\x31\x57\x4f\x64\x63\x54\x71','\x44\x6d\x6b\x59\x73\x53\x6b\x79\x57\x50\x52\x64\x4c\x4d\x6c\x63\x4e\x53\x6f\x51','\x6d\x6d\x6f\x4b\x67\x6d\x6b\x44\x57\x50\x4a\x64\x49\x47','\x42\x43\x6f\x6e\x57\x50\x57\x35','\x57\x52\x33\x63\x4a\x43\x6b\x75\x57\x4f\x76\x4f','\x57\x34\x47\x44\x6f\x43\x6b\x73\x79\x43\x6b\x62\x57\x34\x43\x52','\x46\x4d\x78\x63\x48\x6d\x6b\x37\x6c\x57','\x57\x34\x42\x63\x4d\x43\x6b\x53\x6e\x4b\x6c\x63\x50\x64\x57','\x57\x50\x71\x55\x57\x34\x34\x34\x57\x4f\x57','\x6f\x53\x6f\x56\x57\x51\x35\x2f','\x57\x34\x42\x63\x50\x57\x6e\x75','\x57\x36\x39\x33\x65\x73\x6c\x64\x49\x66\x53\x6c\x57\x50\x79','\x57\x36\x54\x6f\x78\x4a\x78\x63\x4c\x43\x6f\x65\x68\x4a\x47','\x62\x43\x6f\x54\x45\x4d\x2f\x63\x53\x71','\x57\x51\x6c\x64\x50\x68\x42\x63\x47\x47\x71','\x57\x34\x2f\x63\x56\x64\x6e\x56\x65\x71\x53\x5a\x43\x71','\x72\x6d\x6f\x6b\x57\x51\x47\x58\x57\x52\x34','\x57\x34\x6e\x62\x57\x50\x4f\x74\x57\x50\x46\x64\x4a\x38\x6f\x7a\x57\x36\x5a\x64\x4d\x61','\x57\x4f\x52\x64\x4a\x67\x37\x63\x4d\x47\x68\x63\x4c\x47','\x76\x30\x70\x64\x53\x47\x4f\x6d','\x57\x50\x56\x64\x4a\x76\x68\x63\x4e\x61\x6c\x63\x49\x53\x6f\x5a\x68\x61','\x57\x34\x72\x4a\x6d\x53\x6b\x45','\x57\x36\x48\x48\x68\x49\x2f\x64\x4c\x71','\x71\x31\x64\x64\x50\x57','\x57\x4f\x71\x72\x57\x37\x47\x58\x57\x4f\x6d','\x46\x71\x4b\x5a\x57\x36\x61\x51\x42\x71','\x57\x34\x56\x63\x49\x59\x7a\x65\x6c\x47','\x71\x58\x5a\x63\x54\x43\x6b\x31\x77\x43\x6b\x58','\x68\x75\x43\x47\x43\x61','\x65\x53\x6f\x35\x57\x37\x74\x63\x54\x77\x43','\x57\x52\x52\x64\x4b\x6d\x6b\x53\x62\x43\x6b\x4d\x57\x36\x30','\x68\x4e\x6c\x64\x4e\x77\x76\x4a\x71\x6d\x6f\x31','\x44\x4a\x72\x72\x57\x50\x76\x78\x6c\x61','\x6a\x6d\x6f\x4f\x65\x6d\x6b\x43\x57\x50\x37\x64\x4e\x71','\x57\x34\x50\x41\x78\x49\x33\x64\x4e\x43\x6b\x62','\x46\x48\x47\x36\x57\x37\x43\x36\x41\x38\x6b\x67\x70\x47','\x57\x52\x56\x63\x4a\x6d\x6b\x6a\x57\x35\x52\x63\x54\x6d\x6f\x2b\x57\x4f\x44\x68','\x72\x62\x74\x63\x4b\x65\x4c\x70\x45\x71','\x57\x52\x46\x64\x4b\x6d\x6b\x32','\x57\x35\x57\x41\x69\x38\x6b\x43','\x75\x43\x6f\x58\x6d\x66\x2f\x64\x55\x47','\x62\x43\x6b\x2f\x6b\x43\x6f\x66\x46\x71','\x57\x35\x74\x64\x4f\x38\x6b\x31\x57\x36\x53','\x65\x33\x70\x64\x54\x78\x66\x4c\x7a\x6d\x6f\x49\x74\x57','\x6a\x67\x4c\x4b\x68\x6d\x6b\x55\x65\x67\x43\x5a','\x57\x52\x47\x5a\x57\x34\x47\x66','\x57\x35\x72\x45\x71\x63\x6c\x63\x4b\x38\x6f\x6a','\x41\x72\x4a\x63\x49\x43\x6b\x31\x45\x47','\x45\x5a\x71\x49\x71\x43\x6f\x57\x75\x49\x4f\x4c\x71\x33\x6d\x67\x73\x33\x57','\x57\x52\x38\x42\x57\x35\x38\x6f\x57\x4f\x76\x64\x57\x50\x38','\x71\x6d\x6b\x4b\x57\x52\x42\x64\x52\x61','\x73\x31\x78\x63\x52\x75\x65\x69\x57\x36\x43\x68\x61\x47','\x57\x36\x42\x64\x4a\x43\x6f\x76\x67\x30\x64\x63\x51\x57','\x44\x38\x6f\x36\x57\x36\x61\x6c\x43\x47','\x57\x34\x42\x63\x48\x43\x6b\x36','\x57\x37\x65\x45\x73\x72\x46\x64\x53\x47','\x75\x53\x6f\x77\x6b\x48\x65','\x57\x35\x66\x46\x73\x59\x56\x63\x48\x6d\x6f\x65','\x57\x52\x78\x63\x47\x43\x6b\x71\x57\x50\x6a\x5a','\x57\x34\x54\x4e\x6d\x53\x6b\x6b\x76\x4c\x65\x48\x69\x71','\x74\x53\x6b\x47\x57\x51\x38','\x57\x34\x76\x54\x6c\x53\x6b\x50\x74\x75\x69\x51','\x57\x50\x46\x64\x53\x38\x6b\x6b\x66\x38\x6b\x6d','\x74\x53\x6b\x47\x57\x51\x79','\x46\x38\x6f\x35\x57\x35\x65\x76\x45\x43\x6b\x35\x57\x52\x61','\x73\x53\x6f\x63\x6b\x58\x30','\x57\x34\x61\x6b\x70\x53\x6b\x74\x79\x43\x6b\x47','\x68\x38\x6b\x56\x62\x38\x6f\x66\x41\x4b\x6e\x4e','\x57\x4f\x56\x64\x50\x43\x6f\x58\x57\x37\x74\x63\x49\x47','\x57\x50\x31\x67\x57\x52\x74\x63\x47\x57','\x78\x43\x6f\x65\x57\x35\x71\x70\x42\x61','\x65\x38\x6f\x73\x57\x37\x5a\x63\x53\x65\x65','\x57\x34\x33\x64\x50\x38\x6b\x49\x57\x37\x5a\x63\x49\x4e\x35\x47\x57\x50\x69','\x57\x34\x6c\x63\x4c\x38\x6b\x32\x62\x4b\x6d','\x57\x34\x39\x54\x6c\x53\x6b\x7a\x72\x75\x57','\x57\x35\x66\x69\x42\x5a\x46\x63\x4c\x43\x6f\x61\x66\x61','\x69\x53\x6f\x6d\x77\x78\x4e\x63\x48\x61','\x77\x38\x6f\x71\x65\x5a\x56\x63\x47\x57','\x57\x36\x68\x63\x4e\x49\x7a\x32\x65\x71','\x65\x6d\x6f\x45\x77\x38\x6b\x41\x6d\x64\x30\x6b\x74\x57','\x65\x6d\x6f\x63\x57\x36\x42\x63\x52\x4b\x66\x71','\x57\x4f\x5a\x64\x4a\x43\x6f\x4d\x57\x35\x68\x63\x53\x4d\x4a\x64\x50\x57','\x57\x36\x64\x64\x54\x53\x6b\x72\x65\x76\x68\x63\x4c\x38\x6f\x69\x57\x34\x65','\x57\x34\x74\x63\x4c\x6d\x6b\x66\x63\x4c\x38','\x57\x50\x6c\x64\x56\x6d\x6b\x59\x69\x53\x6b\x6b','\x57\x50\x38\x4a\x57\x52\x46\x63\x54\x31\x76\x30\x64\x53\x6b\x59\x6e\x61\x5a\x64\x47\x61\x79','\x70\x43\x6f\x4a\x71\x68\x37\x63\x4d\x47','\x57\x34\x69\x7a\x63\x6d\x6b\x7a\x75\x57','\x78\x38\x6f\x38\x6d\x43\x6f\x6a\x57\x37\x42\x63\x56\x53\x6b\x4a\x57\x4f\x6d','\x75\x43\x6f\x42\x70\x71\x5a\x63\x50\x57','\x6c\x6d\x6b\x41\x57\x52\x48\x54\x63\x4b\x71','\x57\x50\x6d\x44\x57\x37\x58\x2b\x57\x37\x43','\x45\x48\x6d\x36','\x57\x34\x46\x64\x50\x38\x6b\x6e\x66\x78\x75','\x6f\x43\x6b\x31\x57\x52\x66\x6f\x45\x47','\x57\x35\x66\x46\x76\x47','\x57\x52\x72\x76\x57\x4f\x6c\x63\x49\x30\x61','\x6e\x31\x6d\x74\x57\x4f\x74\x64\x47\x4b\x48\x47\x69\x61','\x57\x35\x68\x63\x56\x49\x48\x2b\x68\x61','\x57\x35\x38\x6d\x70\x38\x6b\x67\x43\x61','\x44\x5a\x48\x74\x57\x50\x6e\x72\x6c\x43\x6b\x33\x6f\x57','\x65\x77\x37\x64\x52\x4c\x6a\x57\x71\x53\x6f\x4b','\x6a\x53\x6f\x54\x57\x4f\x72\x61\x75\x57','\x57\x37\x42\x64\x4a\x53\x6f\x73\x67\x30\x71','\x6b\x77\x4c\x38\x67\x53\x6b\x4a\x65\x61','\x46\x53\x6f\x6e\x57\x4f\x61\x59\x57\x4f\x43','\x46\x47\x4b\x34\x57\x37\x57\x37\x45\x53\x6b\x6c','\x57\x34\x4a\x64\x48\x68\x62\x57','\x61\x32\x74\x64\x52\x4e\x4c\x49','\x71\x48\x5a\x63\x54\x53\x6b\x39\x78\x38\x6b\x47\x62\x43\x6f\x68','\x57\x34\x66\x2f\x57\x36\x38','\x67\x38\x6f\x48\x43\x78\x47','\x6b\x43\x6b\x73\x57\x52\x58\x54','\x57\x51\x2f\x63\x47\x72\x57','\x6f\x75\x75\x37\x57\x4f\x4a\x64\x4e\x57','\x57\x34\x39\x75\x57\x34\x64\x64\x4f\x4a\x61','\x57\x35\x52\x64\x51\x6d\x6b\x2f\x57\x37\x68\x63\x4b\x77\x4f','\x70\x6d\x6b\x41\x57\x51\x7a\x52\x76\x71\x64\x63\x52\x4e\x47','\x62\x43\x6b\x35\x6b\x53\x6f\x73\x45\x31\x7a\x33\x57\x37\x43','\x6e\x38\x6b\x69\x57\x4f\x4c\x33\x71\x47\x78\x63\x4b\x61','\x57\x34\x50\x4b\x57\x36\x4a\x64\x47\x62\x6d','\x79\x53\x6f\x4c\x57\x35\x57\x69\x46\x6d\x6b\x39\x57\x52\x53\x53','\x57\x36\x44\x47\x6d\x57','\x57\x35\x74\x63\x54\x63\x72\x50','\x57\x52\x6e\x6d\x57\x52\x71','\x74\x53\x6f\x67\x6e\x58\x37\x63\x54\x6d\x6f\x4c','\x57\x52\x56\x64\x49\x53\x6b\x32','\x77\x38\x6b\x71\x6f\x6d\x6f\x54\x45\x71','\x61\x53\x6b\x42\x79\x38\x6b\x71\x57\x51\x6c\x64\x4f\x53\x6b\x43\x57\x51\x64\x63\x4c\x76\x33\x63\x4a\x53\x6b\x52','\x57\x4f\x43\x30\x79\x4b\x53\x48\x57\x4f\x4a\x64\x4b\x6d\x6f\x6b','\x63\x76\x61\x77\x57\x51\x70\x64\x4a\x47','\x57\x36\x46\x64\x4d\x53\x6b\x4e\x67\x75\x56\x63\x4c\x53\x6b\x67\x57\x4f\x71','\x57\x52\x42\x63\x4d\x48\x56\x64\x4b\x38\x6b\x2f\x57\x37\x4c\x47','\x68\x43\x6f\x50\x66\x43\x6b\x42\x57\x4f\x2f\x64\x47\x68\x5a\x63\x4a\x47','\x6d\x53\x6b\x45\x57\x51\x7a\x49\x72\x61\x57','\x6a\x74\x54\x6b','\x57\x51\x2f\x63\x47\x6d\x6b\x61\x57\x35\x68\x63\x48\x43\x6f\x39\x57\x50\x54\x30','\x6f\x77\x35\x39\x64\x6d\x6b\x55\x61\x61','\x7a\x43\x6f\x50\x57\x37\x38\x76\x42\x47','\x57\x34\x5a\x64\x53\x53\x6b\x54\x57\x36\x52\x63\x4b\x77\x62\x4f\x57\x4f\x57','\x57\x4f\x58\x68\x68\x64\x4e\x64\x4c\x6d\x6f\x44\x78\x74\x43','\x57\x34\x37\x64\x48\x77\x4c\x51\x65\x4d\x4e\x63\x54\x57','\x57\x52\x74\x63\x4c\x6d\x6b\x70\x74\x48\x74\x64\x52\x43\x6b\x50\x57\x50\x58\x41\x57\x50\x74\x64\x55\x43\x6b\x63\x66\x47','\x57\x37\x4e\x64\x54\x38\x6b\x59\x68\x4c\x52\x63\x4a\x6d\x6f\x6f\x57\x34\x65','\x57\x52\x56\x63\x48\x53\x6b\x62\x57\x34\x42\x63\x53\x61','\x44\x76\x68\x63\x52\x53\x6b\x6d\x69\x71','\x76\x6d\x6f\x6b\x68\x43\x6f\x61\x57\x36\x71','\x65\x6d\x6f\x4e\x45\x77\x4e\x63\x53\x71\x4f','\x42\x65\x70\x63\x48\x43\x6b\x65\x64\x30\x56\x63\x48\x53\x6f\x76','\x57\x52\x4a\x63\x4a\x43\x6b\x74','\x6a\x38\x6f\x35\x64\x6d\x6b\x65\x57\x50\x52\x64\x47\x77\x2f\x63\x47\x57','\x76\x38\x6f\x6b\x6f\x43\x6f\x6c\x57\x36\x78\x63\x51\x43\x6b\x63\x57\x50\x4b','\x6f\x53\x6b\x6a\x57\x51\x66\x4a\x72\x63\x68\x63\x48\x33\x57','\x57\x50\x79\x76\x57\x34\x79\x55','\x74\x65\x56\x64\x4f\x48\x79\x72','\x73\x43\x6f\x42\x6e\x43\x6f\x77\x57\x36\x70\x63\x4f\x38\x6b\x61\x57\x4f\x6d','\x44\x4b\x6c\x63\x4a\x6d\x6b\x70\x64\x31\x4f','\x57\x50\x75\x63\x57\x34\x65\x54\x57\x4f\x42\x64\x52\x38\x6f\x46\x57\x35\x4b','\x7a\x38\x6f\x6a\x57\x4f\x69','\x74\x6d\x6b\x37\x57\x50\x42\x64\x51\x6d\x6f\x46','\x57\x34\x61\x6b\x6d\x43\x6b\x67\x45\x38\x6b\x48\x57\x34\x43\x34','\x76\x6d\x6b\x6b\x57\x52\x6c\x64\x47\x53\x6f\x59','\x62\x49\x31\x39\x57\x50\x37\x64\x52\x47','\x57\x51\x6e\x38\x57\x52\x37\x63\x4a\x33\x72\x58\x41\x58\x43','\x57\x52\x6c\x63\x4e\x71\x68\x64\x4e\x61','\x77\x65\x68\x63\x4d\x53\x6b\x76\x6c\x71','\x67\x53\x6f\x36\x46\x66\x52\x63\x53\x72\x42\x63\x49\x59\x79','\x57\x4f\x75\x48\x57\x37\x50\x54\x57\x36\x46\x63\x4b\x43\x6f\x55\x68\x57','\x6d\x43\x6f\x49\x65\x38\x6b\x41\x57\x50\x37\x64\x53\x68\x5a\x63\x4c\x47','\x71\x53\x6b\x61\x57\x50\x5a\x64\x52\x43\x6f\x5a','\x72\x43\x6f\x67\x6e\x58\x57','\x70\x72\x54\x6d\x57\x51\x64\x64\x50\x47','\x57\x50\x71\x4c\x43\x75\x69','\x57\x34\x42\x64\x50\x43\x6b\x62\x57\x35\x33\x63\x51\x61','\x70\x5a\x54\x78\x57\x52\x70\x64\x4a\x78\x65','\x6c\x53\x6b\x6f\x57\x52\x54\x54','\x71\x43\x6f\x6d\x6e\x58\x52\x63\x4f\x43\x6f\x35','\x57\x4f\x4e\x64\x4a\x77\x2f\x63\x54\x48\x74\x63\x4a\x6d\x6f\x50','\x57\x52\x2f\x63\x52\x38\x6b\x62\x57\x36\x64\x63\x4f\x71','\x57\x51\x42\x64\x4c\x6d\x6f\x44\x57\x36\x56\x63\x4a\x57','\x44\x57\x75\x58\x57\x37\x6d\x37\x44\x57','\x57\x34\x5a\x64\x54\x43\x6b\x6b\x57\x37\x64\x63\x4f\x57','\x6f\x75\x75\x37\x57\x4f\x47','\x57\x52\x68\x63\x47\x53\x6b\x7a','\x62\x53\x6f\x45\x77\x4d\x2f\x63\x4b\x61','\x43\x38\x6f\x6d\x6f\x53\x6f\x70\x57\x35\x30','\x41\x43\x6f\x6a\x67\x66\x56\x64\x49\x67\x37\x63\x4d\x43\x6f\x78','\x6d\x43\x6f\x4f\x67\x38\x6b\x67\x57\x50\x52\x64\x47\x33\x33\x64\x4c\x57','\x6c\x4a\x76\x6c\x57\x52\x69','\x73\x57\x56\x63\x53\x53\x6b\x30\x77\x43\x6b\x67\x6b\x43\x6f\x46','\x46\x59\x76\x77\x57\x50\x66\x71','\x57\x36\x33\x64\x4d\x53\x6b\x58\x67\x76\x70\x63\x4b\x53\x6f\x45\x57\x34\x75','\x71\x57\x75\x6c\x57\x37\x53\x35','\x57\x4f\x78\x64\x4b\x6d\x6f\x33\x57\x34\x5a\x63\x52\x4e\x78\x64\x55\x53\x6f\x33','\x62\x53\x6f\x6e\x62\x6d\x6b\x4e\x57\x52\x4f','\x75\x43\x6f\x6e\x64\x4e\x4e\x64\x4a\x57','\x77\x43\x6b\x66\x66\x47','\x71\x47\x35\x5a\x57\x52\x54\x54\x61\x43\x6b\x71','\x57\x34\x42\x63\x48\x43\x6b\x32\x57\x36\x70\x63\x48\x47','\x57\x4f\x69\x35\x57\x36\x74\x64\x54\x61\x38\x4b\x65\x38\x6b\x45','\x78\x47\x44\x6e\x57\x51\x62\x51','\x57\x50\x42\x63\x4e\x5a\x33\x64\x55\x6d\x6b\x38','\x61\x30\x4b\x2b','\x6b\x38\x6f\x48\x57\x51\x31\x30\x79\x4c\x35\x6b\x41\x61','\x72\x62\x5a\x63\x4f\x53\x6b\x48','\x67\x38\x6b\x31\x6b\x61','\x78\x53\x6f\x31\x64\x77\x74\x64\x4e\x47','\x57\x37\x62\x31\x69\x59\x42\x64\x52\x71','\x6d\x6d\x6b\x45\x57\x4f\x66\x48\x71\x57','\x57\x36\x52\x64\x4c\x38\x6f\x4f\x64\x78\x47','\x41\x61\x4b\x4c\x57\x37\x65','\x57\x4f\x58\x51\x57\x51\x65','\x78\x76\x74\x64\x55\x57\x71\x46\x57\x36\x65\x58\x62\x47','\x57\x50\x56\x64\x53\x38\x6b\x64\x6e\x43\x6b\x74\x57\x34\x79\x59\x57\x37\x53','\x57\x4f\x61\x47\x44\x30\x6d','\x78\x64\x62\x54\x57\x50\x76\x30','\x42\x65\x70\x63\x48\x43\x6b\x65\x64\x30\x56\x63\x49\x53\x6f\x45','\x77\x73\x72\x51\x57\x52\x7a\x66','\x57\x50\x52\x64\x4d\x53\x6f\x4b\x57\x34\x4f','\x57\x37\x46\x63\x4b\x6d\x6b\x55\x61\x38\x6b\x4d\x57\x36\x53\x72\x57\x35\x6d','\x45\x64\x31\x41\x57\x50\x79','\x7a\x49\x2f\x63\x4e\x53\x6b\x77\x72\x47','\x77\x72\x61\x5a\x57\x35\x6d\x64','\x6a\x53\x6f\x31\x57\x52\x44\x35\x41\x66\x44\x4f','\x44\x53\x6f\x66\x65\x76\x6c\x64\x4e\x77\x4f','\x72\x30\x6c\x64\x4c\x48\x6d\x6f\x57\x37\x71\x6c','\x57\x51\x47\x57\x57\x35\x6d\x64\x57\x4f\x75','\x6b\x47\x54\x74\x57\x50\x33\x64\x4a\x57','\x7a\x53\x6f\x34\x57\x37\x75\x62\x42\x53\x6b\x51\x57\x52\x53\x6b','\x57\x37\x39\x56\x6b\x38\x6b\x75\x75\x61','\x57\x51\x78\x63\x48\x6d\x6b\x45','\x7a\x38\x6f\x6a\x57\x4f\x4f','\x57\x51\x58\x67\x57\x51\x4a\x63\x4c\x67\x39\x57\x42\x71','\x57\x50\x56\x64\x4c\x6d\x6f\x34\x57\x35\x52\x63\x52\x33\x65','\x57\x52\x37\x63\x47\x38\x6b\x52\x57\x35\x6c\x63\x4d\x47','\x57\x34\x42\x63\x54\x72\x35\x73\x57\x34\x4f','\x74\x38\x6f\x77\x6f\x38\x6f\x57\x57\x34\x30','\x66\x4e\x6c\x64\x55\x71','\x6a\x38\x6f\x75\x57\x37\x33\x63\x50\x57','\x57\x36\x79\x71\x7a\x72\x37\x64\x50\x6d\x6f\x33\x68\x66\x71','\x6c\x5a\x7a\x43\x57\x52\x6d','\x57\x50\x70\x63\x4f\x78\x72\x57\x73\x76\x44\x47\x41\x61','\x46\x65\x4e\x63\x4d\x38\x6b\x65','\x57\x36\x46\x64\x47\x38\x6f\x69\x68\x78\x6c\x63\x56\x6d\x6f\x59\x57\x4f\x47','\x57\x52\x70\x63\x52\x38\x6b\x78\x57\x52\x58\x35','\x57\x34\x70\x63\x53\x5a\x6e\x4c\x6a\x4c\x53\x31\x79\x61','\x44\x43\x6f\x52\x57\x36\x61\x75\x46\x53\x6b\x30\x57\x51\x57','\x57\x51\x38\x30\x57\x35\x53\x75','\x57\x37\x33\x63\x47\x53\x6b\x53\x57\x35\x4e\x63\x51\x61','\x76\x53\x6f\x51\x63\x5a\x33\x63\x48\x71','\x57\x52\x4c\x63\x57\x51\x52\x63\x48\x32\x72\x39\x7a\x61\x4f','\x42\x38\x6f\x34\x57\x50\x30\x53\x57\x4f\x68\x63\x4f\x63\x7a\x41','\x6c\x59\x62\x6d\x57\x51\x64\x64\x4a\x57','\x76\x38\x6f\x6f\x6a\x61','\x44\x71\x38\x50\x57\x37\x65\x4a\x41\x38\x6b\x77\x61\x47','\x73\x43\x6f\x78\x67\x43\x6f\x38\x57\x37\x53','\x71\x6d\x6b\x55\x57\x51\x5a\x64\x51\x43\x6f\x35\x57\x37\x69\x77\x6e\x71','\x57\x52\x53\x6b\x57\x36\x43\x48\x57\x52\x4b','\x62\x38\x6f\x47\x57\x37\x4e\x63\x49\x65\x4b','\x57\x4f\x5a\x64\x53\x53\x6f\x5a\x57\x35\x64\x63\x50\x71','\x6a\x32\x6e\x2f\x66\x53\x6b\x57\x68\x76\x53\x77','\x57\x52\x58\x6d\x57\x51\x4a\x63\x4f\x32\x44\x33\x79\x61','\x57\x34\x70\x63\x4b\x38\x6b\x53\x61\x4c\x2f\x63\x54\x47','\x72\x48\x46\x63\x55\x6d\x6b\x2b\x77\x6d\x6b\x39\x6a\x43\x6f\x63','\x41\x38\x6f\x5a\x6e\x71\x5a\x63\x4c\x71','\x44\x61\x54\x6d\x57\x4f\x78\x64\x4b\x33\x31\x6c','\x46\x61\x75\x58\x57\x37\x65','\x57\x35\x39\x52\x6f\x53\x6b\x46','\x57\x36\x70\x64\x49\x38\x6f\x78\x64\x65\x74\x63\x52\x71','\x43\x75\x4e\x63\x48\x38\x6b\x65','\x57\x52\x68\x64\x54\x53\x6f\x55\x57\x35\x68\x63\x4c\x57','\x70\x4d\x4c\x45\x66\x53\x6b\x31\x61\x77\x57\x4a','\x72\x6d\x6b\x4b\x57\x52\x68\x64\x50\x71','\x6e\x30\x38\x37','\x43\x59\x6a\x35\x57\x50\x54\x6e\x6c\x43\x6b\x33\x6a\x57','\x57\x34\x42\x63\x51\x66\x68\x63\x49\x53\x6f\x4a','\x57\x50\x52\x64\x4e\x6d\x6f\x53\x57\x35\x53','\x57\x34\x6c\x63\x4c\x38\x6b\x64\x57\x37\x6c\x63\x4e\x6d\x6b\x59\x57\x50\x38','\x70\x4e\x39\x49\x68\x61','\x57\x36\x5a\x64\x4b\x43\x6f\x36\x63\x4c\x70\x63\x56\x53\x6f\x4b','\x57\x52\x68\x63\x4a\x72\x37\x64\x4b\x43\x6b\x37\x57\x36\x48\x37\x57\x50\x61','\x57\x52\x56\x63\x4b\x6d\x6b\x64\x57\x35\x4e\x63\x54\x6d\x6f\x47\x57\x4f\x30','\x57\x4f\x34\x48\x57\x37\x72\x50\x57\x37\x4f','\x57\x52\x46\x63\x49\x43\x6b\x6f\x57\x4f\x6d','\x75\x53\x6f\x6f\x6a\x57','\x57\x34\x42\x63\x51\x6d\x6b\x55\x57\x36\x33\x63\x51\x61','\x79\x43\x6f\x2f\x57\x37\x75\x44\x77\x57','\x57\x35\x4e\x63\x53\x58\x39\x68\x57\x35\x56\x64\x48\x57','\x57\x4f\x65\x44\x57\x36\x66\x34\x57\x36\x64\x63\x4b\x38\x6f\x55\x68\x57','\x77\x74\x42\x63\x49\x38\x6b\x77\x46\x71','\x46\x57\x66\x71\x57\x4f\x6a\x77\x6b\x6d\x6b\x49\x6e\x47','\x77\x58\x48\x58\x57\x51\x62\x59','\x57\x52\x74\x64\x4c\x53\x6b\x53','\x64\x53\x6f\x35\x76\x68\x64\x63\x4c\x47','\x57\x52\x74\x64\x4e\x53\x6b\x32\x62\x43\x6b\x56','\x57\x35\x47\x61\x68\x6d\x6b\x42\x79\x53\x6b\x54\x57\x35\x53\x43','\x68\x38\x6f\x47\x44\x4e\x68\x63\x4f\x72\x5a\x63\x49\x58\x79','\x62\x67\x71\x2f\x57\x51\x4a\x64\x48\x71','\x57\x35\x76\x45\x71\x59\x52\x63\x4c\x43\x6f\x79\x6f\x64\x47','\x57\x37\x44\x64\x77\x4a\x78\x63\x52\x57','\x57\x37\x4e\x64\x4c\x6d\x6f\x78\x57\x4f\x5a\x63\x47\x38\x6f\x45\x57\x52\x7a\x38\x57\x50\x72\x4a','\x72\x38\x6b\x67\x57\x51\x33\x64\x49\x6d\x6f\x59','\x57\x34\x75\x43\x65\x43\x6b\x67\x7a\x38\x6b\x50\x57\x35\x61','\x79\x59\x72\x41\x57\x50\x4c\x74','\x57\x51\x33\x63\x47\x38\x6b\x69\x57\x35\x68\x63\x54\x53\x6f\x4d\x57\x50\x31\x55','\x57\x35\x76\x45\x71\x59\x52\x63\x4c\x43\x6f\x79\x6d\x4a\x53','\x57\x36\x64\x63\x4f\x76\x6d','\x42\x53\x6f\x70\x6c\x65\x68\x64\x4d\x32\x56\x63\x48\x6d\x6f\x56','\x57\x34\x2f\x64\x48\x68\x61','\x69\x38\x6f\x56\x57\x51\x50\x30','\x6a\x63\x58\x43\x57\x51\x71','\x57\x52\x75\x33\x57\x35\x38\x65','\x57\x37\x33\x64\x51\x53\x6b\x42\x66\x30\x4a\x63\x4d\x38\x6f\x6f\x57\x36\x43','\x57\x34\x52\x63\x56\x64\x71','\x64\x53\x6b\x74\x69\x61','\x57\x4f\x69\x74\x57\x34\x43\x35\x57\x50\x43','\x6f\x38\x6b\x2b\x57\x51\x31\x48\x45\x47','\x65\x65\x4e\x64\x4c\x65\x72\x37','\x57\x35\x39\x2f\x57\x37\x56\x64\x4f\x71','\x41\x53\x6f\x73\x66\x4c\x4a\x64\x49\x68\x64\x63\x4b\x57','\x73\x43\x6f\x45\x6a\x53\x6f\x71','\x42\x53\x6b\x64\x6a\x6d\x6f\x7a\x79\x71','\x61\x32\x31\x38\x64\x53\x6b\x54','\x57\x37\x56\x64\x50\x6d\x6b\x35\x68\x66\x64\x63\x4b\x57','\x57\x35\x47\x77\x69\x6d\x6b\x72','\x57\x52\x4a\x63\x4c\x38\x6b\x6c\x57\x35\x6c\x63\x53\x6d\x6f\x47\x57\x4f\x7a\x39','\x57\x34\x35\x55\x6a\x43\x6b\x45','\x62\x30\x39\x72\x70\x6d\x6b\x67','\x57\x52\x71\x77\x57\x34\x38\x79\x57\x51\x4f','\x57\x34\x2f\x63\x4c\x53\x6b\x52\x57\x36\x42\x63\x4d\x53\x6b\x41\x57\x4f\x47\x48','\x57\x36\x64\x64\x51\x38\x6b\x4e\x66\x66\x37\x63\x4e\x43\x6f\x7a','\x75\x43\x6b\x4b\x57\x51\x2f\x64\x52\x6d\x6f\x32\x57\x37\x71\x47','\x57\x36\x47\x72\x42\x48\x78\x64\x4c\x38\x6f\x39','\x57\x52\x68\x63\x47\x72\x78\x64\x4d\x53\x6b\x35\x57\x37\x62\x48','\x57\x36\x30\x71\x7a\x72\x5a\x64\x47\x6d\x6f\x57','\x57\x50\x6e\x31\x57\x50\x2f\x63\x4f\x4d\x30','\x57\x50\x6d\x79\x57\x37\x6a\x5a\x57\x37\x70\x63\x4b\x43\x6f\x38\x6e\x61','\x57\x52\x74\x64\x4d\x53\x6b\x56\x63\x43\x6b\x31\x57\x36\x61\x47\x57\x35\x30','\x62\x6d\x6f\x38\x46\x68\x4e\x63\x53\x75\x6c\x64\x4a\x48\x65','\x57\x34\x4a\x63\x4b\x38\x6b\x53\x61\x61','\x57\x4f\x4a\x64\x48\x33\x70\x63\x4c\x47','\x73\x47\x68\x63\x56\x53\x6b\x58\x77\x6d\x6b\x54\x6b\x43\x6f\x45','\x69\x74\x39\x78\x57\x52\x64\x64\x4c\x4e\x71','\x57\x36\x66\x4c\x6a\x57\x70\x64\x4a\x30\x79\x6d','\x57\x35\x6c\x64\x50\x38\x6b\x30','\x57\x4f\x78\x64\x4b\x6d\x6f\x34\x57\x35\x4e\x63\x54\x68\x71','\x74\x72\x39\x54\x57\x50\x62\x35','\x57\x52\x64\x64\x49\x43\x6b\x4e\x66\x71','\x6c\x43\x6b\x75\x57\x51\x76\x47','\x57\x36\x5a\x64\x53\x53\x6b\x64\x57\x36\x68\x63\x4f\x47','\x69\x43\x6f\x64\x70\x43\x6b\x6f\x57\x51\x30','\x57\x37\x52\x64\x52\x6d\x6b\x57\x66\x4c\x37\x63\x4b\x53\x6f\x70\x57\x37\x53','\x57\x34\x2f\x63\x56\x64\x6e\x56\x65\x71','\x57\x34\x47\x48\x7a\x58\x64\x64\x4f\x61','\x78\x75\x68\x64\x55\x57\x47\x69','\x57\x34\x70\x63\x48\x43\x6b\x58','\x72\x43\x6b\x4f\x57\x52\x70\x64\x54\x6d\x6f\x59\x57\x36\x75','\x6f\x6d\x6b\x42\x57\x34\x7a\x4f\x57\x34\x68\x64\x56\x4e\x6e\x75\x57\x50\x4e\x64\x55\x4b\x66\x4e\x57\x36\x69','\x57\x51\x37\x64\x4b\x6d\x6f\x34\x57\x35\x53','\x57\x36\x76\x4d\x57\x36\x2f\x64\x54\x72\x6d','\x57\x4f\x5a\x64\x4a\x78\x70\x63\x4b\x62\x74\x63\x4d\x57','\x57\x37\x42\x64\x47\x43\x6f\x75\x63\x4b\x71','\x57\x4f\x37\x64\x4a\x4d\x4e\x63\x4c\x47\x46\x63\x47\x43\x6f\x47\x6b\x57','\x43\x47\x71\x36\x57\x37\x4f\x53\x45\x47','\x57\x36\x47\x67\x71\x48\x78\x64\x48\x6d\x6f\x30\x65\x4c\x53','\x57\x34\x58\x75\x79\x49\x52\x63\x4b\x6d\x6f\x65\x68\x57\x47','\x6c\x75\x4b\x56\x57\x4f\x47','\x57\x34\x6a\x6a\x57\x36\x5a\x64\x51\x57\x69\x4d','\x69\x57\x76\x75\x57\x52\x4a\x64\x48\x4e\x4b','\x73\x58\x64\x63\x4a\x4c\x31\x6f\x46\x43\x6b\x5a\x57\x52\x69','\x57\x35\x70\x64\x54\x43\x6b\x74\x57\x37\x78\x63\x48\x67\x44\x43\x57\x4f\x30','\x57\x34\x78\x63\x4f\x57\x6a\x69','\x6c\x31\x64\x64\x56\x4b\x6a\x48','\x78\x59\x4e\x63\x54\x64\x4b\x36\x63\x6d\x6b\x4e\x62\x57','\x57\x34\x5a\x64\x50\x43\x6b\x4a\x57\x36\x52\x63\x47\x61','\x6f\x78\x66\x36\x66\x6d\x6b\x71','\x57\x51\x64\x64\x55\x32\x52\x63\x51\x47\x6d','\x76\x6d\x6f\x6b\x69\x38\x6b\x65\x57\x37\x64\x63\x54\x43\x6b\x35\x57\x4f\x38','\x6b\x38\x6f\x53\x57\x51\x7a\x2b','\x73\x64\x52\x63\x54\x6d\x6b\x43\x45\x57','\x57\x37\x4a\x64\x4e\x4c\x44\x61\x67\x57','\x57\x37\x42\x64\x49\x38\x6f\x43\x66\x4b\x64\x63\x53\x38\x6f\x55\x57\x51\x75','\x57\x36\x4b\x6a\x6e\x38\x6b\x4e\x74\x71','\x61\x67\x4a\x64\x53\x68\x53','\x71\x6d\x6f\x78\x69\x63\x37\x63\x4b\x57','\x57\x35\x56\x63\x48\x6d\x6b\x52\x61\x4b\x5a\x63\x55\x59\x56\x64\x4a\x71','\x65\x53\x6b\x42\x69\x38\x6f\x7a\x46\x77\x54\x36','\x57\x35\x42\x64\x54\x43\x6b\x6b\x57\x37\x68\x63\x49\x33\x50\x6c\x57\x4f\x61','\x57\x36\x4a\x63\x4a\x53\x6f\x37\x78\x53\x6b\x72\x57\x35\x75\x39\x57\x35\x35\x2b\x57\x51\x53','\x57\x50\x5a\x64\x48\x33\x68\x63\x4c\x48\x42\x63\x4d\x38\x6f\x4b\x6f\x57','\x57\x37\x76\x58\x6f\x59\x34','\x45\x43\x6f\x4b\x66\x32\x33\x64\x4e\x61','\x46\x38\x6b\x74\x68\x43\x6f\x72','\x57\x35\x70\x63\x4c\x53\x6b\x68\x57\x35\x4a\x63\x4c\x61','\x57\x4f\x30\x71\x57\x36\x30','\x57\x51\x79\x59\x57\x37\x47\x54\x57\x4f\x65','\x57\x52\x75\x5a\x57\x35\x71\x66','\x57\x35\x6c\x64\x4f\x38\x6b\x48\x57\x37\x46\x63\x4c\x32\x50\x2b\x57\x4f\x65','\x70\x6d\x6f\x75\x57\x50\x54\x54\x76\x47','\x57\x4f\x4e\x64\x4b\x68\x6c\x63\x4e\x47','\x57\x35\x6a\x75\x72\x59\x53','\x57\x52\x4b\x57\x57\x35\x38\x65','\x57\x34\x2f\x64\x54\x6d\x6b\x50\x57\x37\x37\x63\x47\x67\x66\x6e\x57\x4f\x61','\x57\x34\x2f\x64\x48\x68\x7a\x4c\x65\x76\x2f\x63\x52\x43\x6b\x2f','\x57\x52\x46\x63\x49\x43\x6b\x6f\x57\x4f\x6e\x71\x57\x37\x46\x64\x48\x38\x6f\x41','\x57\x52\x38\x55\x57\x35\x6d\x67\x57\x50\x72\x68\x57\x50\x71\x65','\x57\x35\x4e\x63\x4d\x4c\x74\x63\x51\x43\x6f\x36','\x71\x71\x6c\x63\x55\x65\x44\x76\x45\x6d\x6b\x49\x57\x37\x43','\x57\x34\x4e\x64\x4e\x4d\x43','\x57\x35\x58\x36\x57\x36\x64\x64\x50\x57\x6d','\x6d\x43\x6f\x4f\x67\x38\x6b\x67\x57\x50\x52\x64\x47\x33\x33\x64\x4a\x71','\x61\x77\x35\x47\x6c\x43\x6b\x57','\x57\x34\x66\x32\x77\x61\x4a\x63\x4b\x57','\x65\x38\x6f\x56\x57\x36\x53','\x57\x4f\x71\x56\x57\x35\x6d\x68\x57\x4f\x35\x52\x57\x50\x43\x74','\x75\x6d\x6b\x49\x57\x52\x64\x64\x53\x53\x6f\x59\x57\x34\x47\x33\x70\x71','\x57\x35\x7a\x44\x61\x72\x4e\x64\x4b\x61','\x76\x53\x6b\x4d\x65\x53\x6f\x61\x43\x57','\x57\x34\x4e\x63\x4c\x53\x6b\x65\x57\x37\x42\x63\x56\x71','\x57\x34\x68\x63\x55\x71\x76\x62\x57\x34\x70\x64\x52\x53\x6f\x61\x79\x47','\x57\x51\x4f\x64\x57\x35\x6a\x79\x57\x37\x38','\x57\x50\x48\x41\x57\x50\x70\x63\x4f\x77\x47','\x57\x34\x68\x63\x55\x72\x50\x66\x57\x34\x68\x64\x48\x53\x6f\x6f\x43\x57','\x64\x64\x62\x45\x57\x52\x78\x64\x53\x47','\x57\x4f\x69\x7a\x57\x34\x38\x4c\x57\x50\x70\x64\x49\x53\x6f\x63\x57\x37\x69','\x77\x53\x6b\x78\x61\x6d\x6f\x72\x73\x68\x44\x6f\x66\x61','\x57\x36\x74\x64\x50\x6d\x6b\x4a\x67\x31\x43','\x73\x38\x6b\x7a\x68\x53\x6f\x72','\x6c\x57\x54\x48\x57\x51\x74\x64\x55\x57','\x46\x65\x46\x63\x48\x57','\x78\x48\x46\x63\x4a\x67\x66\x31','\x77\x6d\x6f\x53\x70\x4d\x42\x64\x56\x76\x33\x63\x50\x38\x6f\x6a','\x57\x34\x39\x4a\x6d\x6d\x6b\x6a\x75\x76\x71\x51\x66\x47','\x57\x50\x38\x76\x57\x36\x65\x56\x57\x4f\x65','\x57\x51\x30\x35\x57\x34\x47\x73\x57\x4f\x4c\x55\x57\x50\x34'];_0x5007=function(){return _0x18606b;};return _0x5007();}function _0x18cd5d(_0xb11c15,_0x3ffab8,_0xa11982){const _0x4e4650=_0x238cfb,_0x53513e={'\x78\x77\x41\x6d\x42':function(_0x5b8040,_0x17256c){return _0x5b8040!==_0x17256c;},'\x6e\x76\x58\x6d\x46':_0x4e4650(0x1c7,'\x25\x28\x65\x25'),'\x4b\x51\x4f\x6a\x53':function(_0x39f334,_0xb3f0e){return _0x39f334===_0xb3f0e;},'\x45\x66\x67\x53\x58':function(_0x1439fd,_0x704d8d,_0x422185){return _0x1439fd(_0x704d8d,_0x422185);},'\x4e\x67\x77\x50\x69':'\x6d\x76\x53\x47\x61','\x71\x6d\x48\x58\x76':function(_0x4ed601,_0x598a04){return _0x4ed601(_0x598a04);},'\x78\x72\x45\x58\x7a':function(_0x409028,_0x2fdc87){return _0x409028!==_0x2fdc87;},'\x54\x42\x6a\x5a\x5a':function(_0x15ef30,_0x47e2f){return _0x15ef30<_0x47e2f;},'\x6f\x75\x53\x75\x59':_0x4e4650(0x1df,'\x40\x59\x4e\x66'),'\x6b\x55\x69\x71\x56':function(_0x417cfa,_0x329996){return _0x417cfa===_0x329996;},'\x70\x6b\x42\x6c\x46':_0x4e4650(0x1e6,'\x54\x76\x48\x54'),'\x6b\x4d\x51\x54\x63':function(_0x1b5439,_0x199fa5){return _0x1b5439>_0x199fa5;},'\x64\x77\x79\x6d\x70':function(_0xccc2c9,_0xa5a5c4){return _0xccc2c9<_0xa5a5c4;}};if(!_0xb11c15||_0x53513e[_0x4e4650(0x353,'\x6c\x57\x55\x64')](_0xb11c15[_0x4e4650(0x30e,'\x34\x26\x37\x44')],_0x53513e[_0x4e4650(0x221,'\x34\x26\x37\x44')]))return 0x5c2+0x14d*0x19+-0x29*0xef;let _0x433fdf=0x251f+0x23bb+-0x48da;const _0x4bed5c=Array[_0x4e4650(0x386,'\x39\x40\x47\x62')](_0xb11c15[_0x4e4650(0x388,'\x69\x4f\x68\x62')+_0x4e4650(0x24f,'\x33\x79\x66\x69')])?_0xb11c15['\x6c\x65\x61\x72\x6e\x69\x6e\x67'+_0x4e4650(0x160,'\x31\x32\x26\x5b')]['\x73\x6c\x69\x63\x65'](-(-0x94+0xc97*-0x1+0xd33)):[];for(let _0x4a1515=0x555*-0x5+0x71e+0x138b;_0x53513e[_0x4e4650(0x12c,'\x53\x47\x71\x51')](_0x4a1515,_0x4bed5c['\x6c\x65\x6e\x67\x74\x68']);_0x4a1515++){const _0x41f3d1=_0x4bed5c[_0x4a1515];if(!_0x41f3d1)continue;if(_0x53513e[_0x4e4650(0x3c2,'\x4f\x67\x4a\x49')](_0x41f3d1[_0x4e4650(0x2a9,'\x4f\x67\x4a\x49')],'\x73\x75\x63\x63\x65\x73\x73'))_0x433fdf+=-0x53+-0x1c5*0x1+0x86*0x4+0.12;else{if(_0x53513e['\x4b\x51\x4f\x6a\x53'](_0x41f3d1[_0x4e4650(0x39c,'\x76\x55\x42\x4f')],_0x53513e[_0x4e4650(0x29b,'\x25\x6b\x73\x36')]))_0x433fdf-=-0x1940+0x3c4*-0x1+0x1d04+0.22;else{if(_0x53513e['\x6b\x55\x69\x71\x56'](_0x41f3d1[_0x4e4650(0x239,'\x66\x34\x55\x39')],_0x53513e[_0x4e4650(0x201,'\x24\x76\x53\x54')]))_0x433fdf-=0x1250+0x1ee+0xa1f*-0x2+0.08;}}}_0x433fdf+=_0x1121e6(_0xb11c15,_0xa11982);if(Array[_0x4e4650(0x215,'\x65\x77\x6f\x5e')](_0xb11c15['\x61\x6e\x74\x69\x5f\x70\x61\x74'+_0x4e4650(0x19b,'\x62\x4e\x68\x70')])&&_0x53513e[_0x4e4650(0x104,'\x70\x68\x6f\x40')](_0xb11c15[_0x4e4650(0x134,'\x34\x26\x37\x44')+_0x4e4650(0x236,'\x29\x42\x53\x4c')][_0x4e4650(0x2aa,'\x39\x40\x47\x62')],-0x14a5+-0x3bc*-0x1+0x1e1*0x9)){let _0x2e104f=-0x15b7+0x2b*-0xc9+0x377a;const _0x5b24d4=new Set(_0x53513e[_0x4e4650(0x312,'\x6a\x6a\x63\x28')](_0x4f85ab,_0x3ffab8,'')),_0x22bc2b=_0xb11c15[_0x4e4650(0x2bf,'\x41\x31\x70\x49')+_0x4e4650(0x233,'\x4e\x43\x78\x28')][_0x4e4650(0x231,'\x25\x6b\x73\x36')](-(-0x171b+0x1fec+0x1*-0x8cb));for(let _0xde8e65=0xc6d+0xc49+-0xc5b*0x2;_0x53513e[_0x4e4650(0x3c8,'\x24\x76\x53\x54')](_0xde8e65,_0x22bc2b[_0x4e4650(0x1f8,'\x65\x77\x6f\x5e')]);_0xde8e65++){const _0x47ea6a=_0x22bc2b[_0xde8e65];if(!_0x47ea6a||!Array[_0x4e4650(0x20a,'\x28\x41\x57\x47')](_0x47ea6a[_0x4e4650(0x26a,'\x34\x26\x37\x44')+'\x5f\x73\x69\x67\x6e\x61\x6c\x73']))continue;const _0x1fa233=_0x47ea6a[_0x4e4650(0x28b,'\x52\x5a\x46\x4a')+_0x4e4650(0x368,'\x64\x47\x55\x42')][_0x4e4650(0x129,'\x44\x5d\x26\x26')](function(_0x43aaa7){const _0x4396c5=_0x4e4650,_0x3f8584={'\x55\x76\x67\x7a\x45':_0x4396c5(0x2bb,'\x41\x31\x70\x49')+'\x32','\x5a\x44\x6a\x45\x69':function(_0x551882,_0xb5c16f){const _0x3f6798=_0x4396c5;return _0x53513e[_0x3f6798(0x144,'\x44\x5d\x26\x26')](_0x551882,_0xb5c16f);},'\x6c\x46\x79\x6f\x50':_0x53513e[_0x4396c5(0x22a,'\x59\x21\x36\x77')],'\x58\x46\x56\x71\x68':function(_0x121228,_0x217c5f){const _0xdbc7ca=_0x4396c5;return _0x53513e[_0xdbc7ca(0x1f2,'\x39\x40\x47\x62')](_0x121228,_0x217c5f);},'\x74\x72\x71\x71\x43':function(_0x235e55,_0x5d38d3,_0x50f75d){const _0x38c7df=_0x4396c5;return _0x53513e[_0x38c7df(0x348,'\x34\x26\x37\x44')](_0x235e55,_0x5d38d3,_0x50f75d);}};if(_0x53513e[_0x4396c5(0x2ef,'\x66\x34\x55\x39')](_0x4396c5(0x1b1,'\x62\x4e\x68\x70'),_0x53513e[_0x4396c5(0x3cd,'\x51\x47\x29\x5b')])){const _0x18c8b0=_0x3f8584[_0x4396c5(0x147,'\x40\x59\x4e\x66')][_0x4396c5(0x119,'\x4f\x67\x4a\x49')]('\x7c');let _0x3e9b85=-0x546+-0x1*-0x24f4+-0xa*0x32b;while(!![]){switch(_0x18c8b0[_0x3e9b85++]){case'\x30':if(_0x2db41f[_0x4396c5(0x3db,'\x65\x77\x6f\x5e')](_0x285e7f['\x69\x64']))return![];continue;case'\x31':if(!_0xd78035||_0x3f8584[_0x4396c5(0x2f3,'\x4f\x63\x43\x4e')](_0x32d7e9[_0x4396c5(0x3ce,'\x44\x5d\x26\x26')],_0x3f8584[_0x4396c5(0x136,'\x44\x41\x31\x77')])||!_0x47ebea['\x69\x64'])return![];continue;case'\x32':return!![];case'\x33':if(_0x3f8584[_0x4396c5(0x143,'\x6a\x6a\x63\x28')](_0x58cfe1['\x69\x64'],_0xa7aef0[_0x4396c5(0x3a6,'\x65\x77\x6f\x5e')+_0x4396c5(0xea,'\x4e\x43\x78\x28')]['\x69\x64']))return![];continue;case'\x34':if(_0x3f8584['\x74\x72\x71\x71\x43'](_0x24e044,_0x1b67f1,_0x3050fa))return![];continue;}break;}}else return _0x5b24d4['\x68\x61\x73'](_0x53513e[_0x4396c5(0x112,'\x57\x4b\x71\x38')](String,_0x43aaa7));});if(_0x1fa233)_0x2e104f+=_0x47ea6a['\x6d\x6f\x64\x65']===_0x4e4650(0x20b,'\x58\x23\x29\x78')?0xed0+-0x3*-0x7cd+-0x2637+0.4:0x18da+0x537+-0x1e11+0.18;}_0x433fdf-=_0x2e104f;}return Math[_0x4e4650(0x2b1,'\x4e\x43\x78\x28')](-(0x10c5+0x246*-0xb+0x83e+0.5),Math['\x6d\x69\x6e'](0x2*-0x1172+0xb*-0x77+0x2802+0.5,_0x433fdf));}function _0x2077(_0x1c48f5,_0x251fae){_0x1c48f5=_0x1c48f5-(-0x1b37+-0x21e7+0x343*0x13);const _0x8d7f03=_0x5007();let _0x986d0e=_0x8d7f03[_0x1c48f5];if(_0x2077['\x53\x5a\x61\x6d\x66\x72']===undefined){var _0x2a3185=function(_0x7c9b9b){const _0x3f5c95='\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 _0x52a0e2='',_0x131ad4='',_0x5574aa=_0x52a0e2+_0x2a3185,_0x376e3d=(''+function(){return 0xc79*-0x1+0xb27*0x1+0x152;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x2*-0x8b9+-0x26dd+0x156c);for(let _0x32cb5f=-0x2681+-0x19a1+0x4022,_0xf623f3,_0x37572a,_0x3a8094=0x7c4+-0x1a1b+0x1257;_0x37572a=_0x7c9b9b['\x63\x68\x61\x72\x41\x74'](_0x3a8094++);~_0x37572a&&(_0xf623f3=_0x32cb5f%(-0x1*0x1caf+0x265b+0x26a*-0x4)?_0xf623f3*(-0x1*-0x73d+0x1ccf+-0x23cc*0x1)+_0x37572a:_0x37572a,_0x32cb5f++%(0x1*0x2149+-0x1*0x69d+-0x1aa8))?_0x52a0e2+=_0x376e3d||_0x5574aa['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3a8094+(0x24c9+-0xd17*-0x1+-0x31d6))-(-0x2e6*0xd+-0x18da+0x3e92)!==-0x2*0x2a0+-0x1999*-0x1+-0x1459?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0xc0*0xc+-0x32*-0x22+-0x1*-0x35b&_0xf623f3>>(-(-0x852+0x25e7+-0x1d93)*_0x32cb5f&0x73*-0x1+0xb*-0x10+0x3*0x63)):_0x32cb5f:0x351*0x9+0x1*0x1c4+-0x1f9d){_0x37572a=_0x3f5c95['\x69\x6e\x64\x65\x78\x4f\x66'](_0x37572a);}for(let _0x5f2883=0x9cc+-0x6f7+-0x2d5,_0x569e60=_0x52a0e2['\x6c\x65\x6e\x67\x74\x68'];_0x5f2883<_0x569e60;_0x5f2883++){_0x131ad4+='\x25'+('\x30\x30'+_0x52a0e2['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5f2883)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x2*0x84b+0xf5b+-0x1*0x1fe1))['\x73\x6c\x69\x63\x65'](-(0xdb0*0x1+-0x5*0x375+0x39b));}return decodeURIComponent(_0x131ad4);};const _0x447977=function(_0x5ae318,_0x382485){let _0x18bd38=[],_0x541e9c=0x1ea1+-0x6+0x1e9b*-0x1,_0x476753,_0x5ec353='';_0x5ae318=_0x2a3185(_0x5ae318);let _0x5e2285;for(_0x5e2285=0x321+0xa34+-0xd55;_0x5e2285<0x2*0xe8f+0xc08+-0x23b*0x12;_0x5e2285++){_0x18bd38[_0x5e2285]=_0x5e2285;}for(_0x5e2285=0x2456+-0x981+-0x1ad5;_0x5e2285<0x5fd+-0x1*0x168b+0x141*0xe;_0x5e2285++){_0x541e9c=(_0x541e9c+_0x18bd38[_0x5e2285]+_0x382485['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5e2285%_0x382485['\x6c\x65\x6e\x67\x74\x68']))%(-0xa*0xf6+-0x23a9+0x2e45),_0x476753=_0x18bd38[_0x5e2285],_0x18bd38[_0x5e2285]=_0x18bd38[_0x541e9c],_0x18bd38[_0x541e9c]=_0x476753;}_0x5e2285=-0x6*-0x1d9+-0x1*-0x1651+-0x11*0x1f7,_0x541e9c=0x47*-0x5+0x1b6f+-0x1a0c;for(let _0x27a2b4=0x1af+-0x1692+-0x14e3*-0x1;_0x27a2b4<_0x5ae318['\x6c\x65\x6e\x67\x74\x68'];_0x27a2b4++){_0x5e2285=(_0x5e2285+(0x265*0xf+-0x1a12+0x78*-0x15))%(0x49*0x2e+0x12*0xd5+0x484*-0x6),_0x541e9c=(_0x541e9c+_0x18bd38[_0x5e2285])%(-0x180e*-0x1+0x1b*-0x1+-0x16f3),_0x476753=_0x18bd38[_0x5e2285],_0x18bd38[_0x5e2285]=_0x18bd38[_0x541e9c],_0x18bd38[_0x541e9c]=_0x476753,_0x5ec353+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x5ae318['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x27a2b4)^_0x18bd38[(_0x18bd38[_0x5e2285]+_0x18bd38[_0x541e9c])%(-0x5bc*0x1+0xb1b*0x2+-0xf7a)]);}return _0x5ec353;};_0x2077['\x62\x6e\x4d\x6d\x77\x4d']=_0x447977,_0x2077['\x79\x59\x4e\x69\x6e\x4d']={},_0x2077['\x53\x5a\x61\x6d\x66\x72']=!![];}const _0x362eae=_0x8d7f03[0x1e36+0x231f+0x5*-0xd11],_0x4bfb18=_0x1c48f5+_0x362eae,_0x36fe19=_0x2077['\x79\x59\x4e\x69\x6e\x4d'][_0x4bfb18];if(!_0x36fe19){if(_0x2077['\x68\x6d\x55\x65\x41\x63']===undefined){const _0x102ad8=function(_0x43c50b){this['\x42\x64\x66\x4d\x63\x55']=_0x43c50b,this['\x51\x6e\x66\x74\x72\x63']=[-0x3df*-0x4+0x2117*-0x1+-0x2*-0x8ce,0x2e6*-0x1+-0x1*-0xfd3+-0xced*0x1,-0x9*-0x3b+-0x2*-0x31+-0x275],this['\x72\x74\x76\x4b\x65\x75']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x43\x73\x4f\x50\x73\x6d']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x41\x65\x65\x6d\x49\x68']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x102ad8['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4b\x6d\x74\x42\x50\x43']=function(){const _0x30294d=new RegExp(this['\x43\x73\x4f\x50\x73\x6d']+this['\x41\x65\x65\x6d\x49\x68']),_0x3d65ce=_0x30294d['\x74\x65\x73\x74'](this['\x72\x74\x76\x4b\x65\x75']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x51\x6e\x66\x74\x72\x63'][0xe1+-0x1*-0x1535+-0x1*0x1615]:--this['\x51\x6e\x66\x74\x72\x63'][0x1079+0x520+0x1*-0x1599];return this['\x62\x61\x76\x45\x58\x54'](_0x3d65ce);},_0x102ad8['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x62\x61\x76\x45\x58\x54']=function(_0x540883){if(!Boolean(~_0x540883))return _0x540883;return this['\x4d\x4c\x44\x79\x67\x4d'](this['\x42\x64\x66\x4d\x63\x55']);},_0x102ad8['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4d\x4c\x44\x79\x67\x4d']=function(_0x195039){for(let _0x5486ad=0x1c5*-0x2+0x2051*-0x1+-0x1*-0x23db,_0x6b3aec=this['\x51\x6e\x66\x74\x72\x63']['\x6c\x65\x6e\x67\x74\x68'];_0x5486ad<_0x6b3aec;_0x5486ad++){this['\x51\x6e\x66\x74\x72\x63']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x6b3aec=this['\x51\x6e\x66\x74\x72\x63']['\x6c\x65\x6e\x67\x74\x68'];}return _0x195039(this['\x51\x6e\x66\x74\x72\x63'][0x1e9+-0x1b*-0x3c+-0x83d]);},(''+function(){return-0x1*-0x126d+-0x1b83*-0x1+-0x2df0;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x44+0x1950+-0x1993)&&new _0x102ad8(_0x2077)['\x4b\x6d\x74\x42\x50\x43'](),_0x2077['\x68\x6d\x55\x65\x41\x63']=!![];}_0x986d0e=_0x2077['\x62\x6e\x4d\x6d\x77\x4d'](_0x986d0e,_0x251fae),_0x2077['\x79\x59\x4e\x69\x6e\x4d'][_0x4bfb18]=_0x986d0e;}else _0x986d0e=_0x36fe19;return _0x986d0e;}const _0x50fc5a=0xba8+-0x1*0x2647+0x1aa9,_0x4e9be3=-0xd10+0x1*-0x20f9+0x2e09+0.3,_0x13e453=0x531*-0x2+0x1521+-0xabf+0.02;function _0x3b62d9(_0x494969){const _0x55b7e3=_0x238cfb,_0x2057c9={'\x6c\x55\x48\x6e\x4d':function(_0x24ef0b,_0x485b54){return _0x24ef0b(_0x485b54);},'\x49\x56\x45\x44\x6b':function(_0x2758d4,_0x386e73){return _0x2758d4(_0x386e73);},'\x4c\x5a\x4f\x76\x78':function(_0x17368e,_0x3da9d0,_0x5d7676,_0x42c03b){return _0x17368e(_0x3da9d0,_0x5d7676,_0x42c03b);},'\x77\x78\x4c\x75\x73':function(_0x3a55c9,_0x24ebea,_0x33f0fb,_0x35ef35){return _0x3a55c9(_0x24ebea,_0x33f0fb,_0x35ef35);},'\x4f\x78\x70\x73\x57':function(_0x55c396,_0x9dc9e0){return _0x55c396||_0x9dc9e0;},'\x65\x45\x65\x64\x4a':function(_0x5e4ea3,_0x514528,_0x5f4a22){return _0x5e4ea3(_0x514528,_0x5f4a22);},'\x59\x74\x5a\x57\x6b':function(_0x233cb0,_0x370d36){return _0x233cb0&&_0x370d36;},'\x58\x43\x78\x6f\x57':function(_0x1cebe5,_0x5ad9a5){return _0x1cebe5===_0x5ad9a5;},'\x49\x6b\x6e\x77\x6f':'\x73\x65\x6c\x65\x63\x74\x69\x6f'+'\x6e','\x75\x79\x6f\x54\x5a':_0x55b7e3(0x272,'\x33\x79\x66\x69')+_0x55b7e3(0x404,'\x72\x69\x40\x38'),'\x61\x4e\x6b\x64\x6b':function(_0x4880e1,_0x386bb9){return _0x4880e1(_0x386bb9);},'\x50\x59\x56\x52\x76':function(_0x51e4ca,_0x146a55){return _0x51e4ca===_0x146a55;},'\x6c\x41\x4e\x4b\x45':'\x62\x77\x7a\x6b\x45','\x77\x4b\x6d\x42\x65':function(_0x37b42a,_0x1ed107){return _0x37b42a<=_0x1ed107;},'\x48\x76\x7a\x76\x69':function(_0x1098ef,_0x2cbe91){return _0x1098ef(_0x2cbe91);},'\x4b\x48\x50\x61\x62':function(_0xc05834,_0xbe1b4f){return _0xc05834*_0xbe1b4f;},'\x4f\x4b\x63\x68\x74':function(_0x427402,_0x3ff66a){return _0x427402>_0x3ff66a;},'\x58\x63\x72\x59\x71':function(_0x3f66d3,_0x498172){return _0x3f66d3/_0x498172;},'\x63\x42\x41\x66\x56':function(_0x3e4c00,_0x234aa4){return _0x3e4c00-_0x234aa4;},'\x57\x70\x43\x4e\x62':function(_0x192c76,_0x38d02f){return _0x192c76*_0x38d02f;},'\x73\x73\x46\x68\x46':function(_0x212f07,_0xd51928){return _0x212f07+_0xd51928;},'\x6d\x57\x6e\x6c\x70':function(_0x19786c,_0xc01012){return _0x19786c/_0xc01012;},'\x63\x54\x78\x56\x43':function(_0x51bede,_0x334870){return _0x51bede!=_0x334870;},'\x4c\x58\x55\x57\x78':function(_0x29127d,_0x3e669a){return _0x29127d!==_0x3e669a;},'\x4f\x78\x74\x70\x48':_0x55b7e3(0x15a,'\x31\x32\x26\x5b')},_0x42569f=!!(_0x494969&&_0x494969['\x64\x72\x69\x66\x74\x45\x6e\x61'+_0x55b7e3(0x2ba,'\x4d\x36\x50\x78')]),_0x5db21c=_0x494969&&Number[_0x55b7e3(0x22b,'\x4f\x63\x43\x4e')](_0x2057c9[_0x55b7e3(0x3f9,'\x51\x47\x29\x5b')](Number,_0x494969[_0x55b7e3(0x15f,'\x34\x26\x37\x44')+_0x55b7e3(0x2c5,'\x4e\x43\x78\x28')+'\x69\x6f\x6e\x53\x69\x7a\x65']))?Number(_0x494969[_0x55b7e3(0x2fa,'\x70\x68\x6f\x40')+_0x55b7e3(0x115,'\x34\x26\x37\x44')+_0x55b7e3(0x1d1,'\x53\x34\x65\x5e')]):null,_0x217dbe=_0x494969&&Number[_0x55b7e3(0x34d,'\x51\x47\x29\x5b')](_0x2057c9[_0x55b7e3(0x319,'\x59\x21\x36\x77')](Number,_0x494969[_0x55b7e3(0x252,'\x70\x68\x6f\x40')+_0x55b7e3(0x381,'\x4e\x4f\x37\x62')]))?Number(_0x494969[_0x55b7e3(0x114,'\x4e\x4f\x37\x62')+_0x55b7e3(0x3f0,'\x34\x26\x37\x44')]):null,_0x487c3e=_0x2057c9[_0x55b7e3(0x3a7,'\x62\x4e\x68\x70')](_0x5db21c,_0x217dbe)||null;if(_0x42569f){if(_0x2057c9[_0x55b7e3(0x36a,'\x73\x23\x29\x77')](_0x2057c9[_0x55b7e3(0x403,'\x44\x41\x31\x77')],_0x2057c9[_0x55b7e3(0xf1,'\x66\x34\x55\x39')])){if(!_0x487c3e||_0x2057c9[_0x55b7e3(0x26b,'\x34\x5e\x51\x62')](_0x487c3e,-0x1e61+-0x611+-0x1f*-0x12d))return 0x5aa+-0x1045+0xa9b+0.7;const _0x17f6d8=_0x494969&&Number[_0x55b7e3(0x2dc,'\x52\x24\x4f\x6d')](Number(_0x494969['\x6d\x65\x6d\x6f\x72\x79\x45\x76'+_0x55b7e3(0x10a,'\x39\x40\x47\x62')]))?_0x2057c9[_0x55b7e3(0x3da,'\x65\x45\x5b\x45')](Number,_0x494969[_0x55b7e3(0x1c0,'\x34\x26\x37\x44')+_0x55b7e3(0x316,'\x24\x76\x53\x54')]):0x3bc*-0x1+-0x1689+-0x1*-0x1a45,_0x15b1be=_0x2057c9['\x4b\x48\x50\x61\x62'](_0x487c3e,_0x50fc5a),_0x52dd26=_0x2057c9[_0x55b7e3(0x3b4,'\x40\x59\x4e\x66')](_0x15b1be,0x490*-0x2+-0x34e*-0x5+0x1*-0x766)?Math[_0x55b7e3(0x23b,'\x62\x4e\x68\x70')](0x1dbd+-0x1*-0x2353+0xd03*-0x5,_0x2057c9[_0x55b7e3(0x394,'\x34\x5e\x51\x62')](_0x17f6d8,_0x15b1be)):-0x1533+0x817*-0x3+0x61*0x78,_0x4523b9=_0x2057c9[_0x55b7e3(0x23d,'\x4e\x4f\x37\x62')](_0x4e9be3,_0x2057c9[_0x55b7e3(0x24c,'\x4f\x63\x43\x4e')](_0x2057c9[_0x55b7e3(0x328,'\x33\x79\x66\x69')](_0x4e9be3,_0x13e453),_0x52dd26));return Math[_0x55b7e3(0x23b,'\x62\x4e\x68\x70')](0x1c56+-0x1*0x4c0+-0x1795,_0x2057c9[_0x55b7e3(0x27f,'\x51\x47\x29\x5b')](_0x2057c9[_0x55b7e3(0x14c,'\x62\x4e\x68\x70')](-0xa2+-0x185*-0x2+-0x267,Math[_0x55b7e3(0x30a,'\x26\x70\x57\x4b')](_0x487c3e)),_0x4523b9));}else _0x52bfa2['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x55b7e3(0x1ce,'\x34\x21\x35\x24')][_0x55b7e3(0x22f,'\x29\x42\x53\x4c')](function(_0x549575){const _0x4cc600=_0x55b7e3;_0x51de8d=_0x1d03ed[_0x4cc600(0x214,'\x40\x59\x4e\x66')](_0x2dfe82(_0x549575));});}if(_0x2057c9['\x63\x54\x78\x56\x43'](_0x487c3e,null)&&_0x487c3e>0x1950+0xec4+-0x2814){if(_0x2057c9['\x4c\x58\x55\x57\x78'](_0x2057c9[_0x55b7e3(0x2f5,'\x65\x77\x6f\x5e')],_0x55b7e3(0x283,'\x26\x70\x57\x4b'))){const _0x5787da=_0x1acea3&&_0x3a1c2c['\x62\x61\x6e\x6e\x65\x64\x47\x65'+_0x55b7e3(0x37b,'\x6a\x6a\x63\x28')]instanceof _0x2d65bd?_0x1285d7[_0x55b7e3(0x188,'\x52\x5a\x46\x4a')+'\x6e\x65\x49\x64\x73']:new _0xd4ba09(),_0x7d7438=_0x6398e3&&_0x458784[_0x55b7e3(0x30f,'\x70\x68\x6f\x40')+_0x55b7e3(0x3ac,'\x24\x76\x53\x54')]?_0x49b87e[_0x55b7e3(0x259,'\x76\x55\x42\x4f')+_0x55b7e3(0x34c,'\x44\x41\x31\x77')]:null,_0x316eb3=_0xd566c0&&_0x2894f1[_0x55b7e3(0x21c,'\x76\x55\x42\x4f')](_0x2057c9[_0x55b7e3(0x3e2,'\x58\x57\x50\x42')](_0x191094,_0x3ee4b4[_0x55b7e3(0x35d,'\x57\x4b\x71\x38')+_0x55b7e3(0x204,'\x34\x21\x35\x24')]))?_0x2057c9[_0x55b7e3(0x2a7,'\x44\x4d\x28\x40')](_0x29734c,_0x3b73ef[_0x55b7e3(0x36d,'\x44\x5d\x26\x26')+'\x65\x6d\x70\x74\x73']):-0x499*-0x3+-0x3d*-0x8b+0xa*-0x4b1,_0x290312=_0x2057c9[_0x55b7e3(0x3e5,'\x4f\x63\x43\x4e')](_0x5722b8,_0x4c3f3a[_0x55b7e3(0xdf,'\x24\x76\x53\x54')](_0x5866b5)?_0x46708c:[],_0x985491,_0x5787da),{selected:_0x4da635,alternatives:_0x1d4f0c,driftIntensity:_0x1e6b38,driftMode:_0x2335dd}=_0x2057c9[_0x55b7e3(0x13a,'\x70\x68\x6f\x40')](_0x1f178e,_0x261ccd,_0x16c128,{'\x62\x61\x6e\x6e\x65\x64\x47\x65\x6e\x65\x49\x64\x73':_0x290312,'\x70\x72\x65\x66\x65\x72\x72\x65\x64\x47\x65\x6e\x65\x49\x64':_0x7d7438,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':!!_0x135141,'\x6d\x65\x6d\x6f\x72\x79\x45\x76\x69\x64\x65\x6e\x63\x65':_0x316eb3,'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':_0x557a28[_0x55b7e3(0x2df,'\x6c\x57\x55\x64')](_0x51086b)?_0x39a967:[],'\x6e\x6f\x76\x65\x6c\x74\x79\x53\x63\x6f\x72\x65':_0x3a5e29[_0x55b7e3(0x130,'\x69\x4f\x68\x62')](_0x954f7f(_0x4248b3))?_0x51845f(_0x2274f1):null,'\x70\x6c\x61\x74\x65\x61\x75\x4f\x76\x65\x72\x72\x69\x64\x65':_0x2057c9[_0x55b7e3(0x3fc,'\x77\x62\x37\x51')](_0x17370a,null)}),_0x8620a=_0x2057c9[_0x55b7e3(0x306,'\x36\x6d\x6b\x38')](_0x25fe25,_0x1913e4,_0x5c2e36),_0x440731=!!(_0x2057c9[_0x55b7e3(0x3eb,'\x37\x62\x49\x58')](_0x7d7438,_0x4da635)&&_0x4da635['\x69\x64']===_0x7d7438),_0x4ed363=_0x2057c9[_0x55b7e3(0x2d8,'\x52\x5a\x46\x4a')](_0x2335dd,_0x2057c9[_0x55b7e3(0x30c,'\x4f\x39\x46\x77')])?_0x2057c9[_0x55b7e3(0x2b6,'\x26\x70\x57\x4b')]:_0x2335dd,_0x4017ff={};_0x4017ff['\x67\x65\x6e\x65']=_0x4da635,_0x4017ff['\x63\x61\x70\x73\x75\x6c\x65']=_0x8620a,_0x4017ff[_0x55b7e3(0x40b,'\x4f\x39\x46\x77')]=_0x117927,_0x4017ff[_0x55b7e3(0x334,'\x72\x69\x40\x38')+_0x55b7e3(0x300,'\x4d\x36\x50\x78')]=_0x1d4f0c,_0x4017ff['\x6d\x65\x6d\x6f\x72\x79\x41\x64'+_0x55b7e3(0x1be,'\x4d\x36\x50\x78')]=_0x356a42,_0x4017ff[_0x55b7e3(0x382,'\x41\x31\x70\x49')+_0x55b7e3(0x2a0,'\x77\x62\x37\x51')]=_0x2165f9,_0x4017ff['\x64\x72\x69\x66\x74\x49\x6e\x74'+_0x55b7e3(0x10b,'\x26\x70\x57\x4b')]=_0x1e6b38,_0x4017ff[_0x55b7e3(0x2e2,'\x62\x4e\x68\x70')+_0x55b7e3(0x40a,'\x25\x6b\x73\x36')]=_0x4ed363,_0x4017ff[_0x55b7e3(0x261,'\x26\x70\x57\x4b')+'\x65\x64']=_0x440731;const _0x3ed8d2=_0x474554(_0x4017ff),_0x44151b={};return _0x44151b[_0x55b7e3(0x25e,'\x69\x4f\x68\x62')+_0x55b7e3(0x110,'\x28\x41\x57\x47')]=_0x4da635,_0x44151b[_0x55b7e3(0x141,'\x30\x70\x77\x6e')+'\x61\x6e\x64\x69\x64\x61\x74\x65'+'\x73']=_0x8620a?[_0x8620a]:[],_0x44151b[_0x55b7e3(0x3ae,'\x69\x4f\x68\x62')]=_0x3ed8d2,_0x44151b[_0x55b7e3(0x3a1,'\x4d\x36\x50\x78')+'\x65\x6e\x73\x69\x74\x79']=_0x1e6b38,_0x44151b[_0x55b7e3(0x17a,'\x37\x62\x49\x58')+_0x55b7e3(0x2e4,'\x25\x28\x65\x25')]=_0x4ed363,_0x44151b[_0x55b7e3(0x105,'\x28\x41\x57\x47')+'\x65\x64']=_0x440731,_0x44151b[_0x55b7e3(0x384,'\x26\x70\x57\x4b')+_0x55b7e3(0x335,'\x53\x47\x71\x51')]=_0x316eb3,_0x44151b;}else return Math['\x6d\x69\x6e'](0x2098+0x202c*-0x1+-0x6b,_0x2057c9[_0x55b7e3(0x38a,'\x4d\x36\x50\x78')](0x1*0x1d71+0xf4f*0x2+-0x2*0x1e07,Math[_0x55b7e3(0x162,'\x34\x26\x37\x44')](_0x487c3e)));}return-0x94+-0x7+0x9b;}const _0x3a3e8a=0x2*-0x185+-0x19*0x8d+0x6*0x2ce,_0x30b135=-0x54*0x3+-0xb09+0x1*0xc69;function _0x32780e(_0x473f3c){const _0x1732a0=_0x238cfb;return _0x473f3c&&_0x473f3c[_0x1732a0(0x159,'\x37\x62\x49\x58')+_0x1732a0(0x339,'\x4e\x4f\x37\x62')]===_0x1732a0(0x314,'\x76\x55\x42\x4f');}function _0x4689ea(_0x576e19,_0x25f1a2,_0x5e7778){const _0x4b958b=_0x238cfb,_0x3ae87b={'\x4e\x62\x5a\x6d\x4a':function(_0xf405ec,_0x540298){return _0xf405ec(_0x540298);},'\x4f\x79\x62\x69\x64':function(_0x3b35c7,_0xdd349c){return _0x3b35c7>_0xdd349c;},'\x4d\x46\x6b\x71\x71':function(_0x2ec7f6,_0x330b09){return _0x2ec7f6(_0x330b09);},'\x63\x44\x68\x58\x75':function(_0x3bb504,_0x5ea2de){return _0x3bb504===_0x5ea2de;},'\x62\x6c\x53\x51\x46':_0x4b958b(0x13f,'\x53\x34\x65\x5e'),'\x42\x79\x49\x47\x6e':function(_0x431aea,_0x261b60){return _0x431aea*_0x261b60;},'\x77\x74\x6e\x41\x6d':function(_0x53beda,_0x46ab45,_0x5027cf){return _0x53beda(_0x46ab45,_0x5027cf);},'\x75\x70\x72\x58\x75':function(_0x2458c4,_0x4bf072){return _0x2458c4!==_0x4bf072;},'\x68\x73\x4f\x59\x49':_0x4b958b(0x1e7,'\x65\x45\x5b\x45'),'\x4d\x49\x43\x45\x44':function(_0x6d142e,_0x595408){return _0x6d142e<_0x595408;},'\x67\x48\x48\x53\x6a':function(_0x34434a,_0x539418){return _0x34434a===_0x539418;},'\x46\x4f\x77\x51\x4f':'\x73\x74\x72\x69\x6e\x67','\x56\x4d\x68\x72\x6b':function(_0x2a372c,_0x249550){return _0x2a372c-_0x249550;},'\x72\x47\x67\x4b\x6c':function(_0x33ffb1,_0x5c70a4){return _0x33ffb1*_0x5c70a4;},'\x4b\x6d\x71\x4c\x66':function(_0x141696,_0x923a69){return _0x141696(_0x923a69);},'\x78\x55\x45\x79\x65':function(_0x3cd9d9,_0x4c2ff5){return _0x3cd9d9||_0x4c2ff5;},'\x6f\x7a\x49\x68\x48':function(_0x45eb05,_0x285217){return _0x45eb05===_0x285217;},'\x45\x62\x63\x7a\x4c':function(_0x28ca05,_0xbbf820){return _0x28ca05/_0xbbf820;},'\x62\x72\x46\x76\x53':function(_0x1e480f,_0x16eb5c){return _0x1e480f||_0x16eb5c;},'\x7a\x44\x76\x7a\x70':function(_0x117e38,_0x5ea000){return _0x117e38<=_0x5ea000;},'\x6a\x6b\x6b\x44\x74':function(_0x1f078b,_0x41455c){return _0x1f078b(_0x41455c);},'\x54\x42\x49\x53\x52':function(_0x2d6e5d,_0xaf280b){return _0x2d6e5d>_0xaf280b;},'\x4b\x68\x72\x54\x72':function(_0x5d38b8,_0x22f683){return _0x5d38b8-_0x22f683;},'\x62\x57\x78\x58\x67':function(_0x222684,_0x568caf){return _0x222684*_0x568caf;},'\x58\x65\x54\x6f\x76':function(_0x33a184,_0x58bdcc){return _0x33a184+_0x58bdcc;},'\x50\x78\x66\x77\x4c':function(_0x47cc8a,_0x103898){return _0x47cc8a!=_0x103898;},'\x74\x49\x52\x44\x45':function(_0x37d7c1,_0xf1e572){return _0x37d7c1!==_0xf1e572;},'\x4b\x6d\x55\x63\x4e':function(_0x10c9de,_0xb59a24){return _0x10c9de(_0xb59a24);},'\x58\x66\x45\x68\x77':function(_0x7b539d,_0x579e2b){return _0x7b539d===_0x579e2b;},'\x63\x66\x4b\x59\x62':_0x4b958b(0x3bc,'\x64\x47\x55\x42'),'\x61\x6c\x64\x6f\x6f':function(_0x38099f,_0x32ead1){return _0x38099f===_0x32ead1;},'\x53\x74\x4f\x79\x47':_0x4b958b(0xfd,'\x58\x57\x50\x42'),'\x52\x6c\x59\x6b\x71':_0x4b958b(0x175,'\x65\x77\x6f\x5e')+_0x4b958b(0x1bc,'\x69\x4f\x68\x62'),'\x54\x42\x4c\x64\x50':function(_0x4aa0bc){return _0x4aa0bc();},'\x73\x78\x64\x75\x67':function(_0x2a4834,_0x3d963b){return _0x2a4834===_0x3d963b;},'\x70\x41\x75\x77\x44':_0x4b958b(0x3ab,'\x25\x28\x65\x25')+_0x4b958b(0x289,'\x76\x55\x42\x4f')+'\x63\x6b','\x79\x72\x65\x6b\x70':function(_0x1cc7ca,_0x3652e9){return _0x1cc7ca>=_0x3652e9;},'\x67\x4e\x79\x4b\x4a':function(_0x3ff060,_0x208ed2){return _0x3ff060===_0x208ed2;},'\x63\x4b\x7a\x42\x42':_0x4b958b(0x2d7,'\x69\x4f\x68\x62'),'\x41\x49\x4e\x52\x51':function(_0x2e484d,_0x329949){return _0x2e484d>_0x329949;},'\x72\x54\x72\x44\x62':function(_0x4db1d3,_0x1f9c38){return _0x4db1d3!==_0x1f9c38;},'\x5a\x79\x52\x58\x53':_0x4b958b(0x165,'\x59\x21\x36\x77'),'\x50\x63\x4e\x71\x6f':_0x4b958b(0x131,'\x30\x70\x77\x6e'),'\x62\x74\x79\x57\x53':_0x4b958b(0x3a9,'\x44\x4d\x28\x40')+_0x4b958b(0x26d,'\x59\x21\x36\x77')+'\x65\x64','\x42\x70\x6c\x47\x4c':_0x4b958b(0x342,'\x72\x69\x40\x38'),'\x71\x65\x43\x6e\x55':function(_0x3b2b97,_0x2fd0c6){return _0x3b2b97!==_0x2fd0c6;},'\x73\x77\x68\x6d\x52':_0x4b958b(0x409,'\x53\x34\x65\x5e'),'\x44\x55\x72\x51\x77':_0x4b958b(0x212,'\x51\x47\x29\x5b')+_0x4b958b(0x234,'\x53\x47\x71\x51'),'\x6f\x45\x6d\x41\x6d':_0x4b958b(0x12d,'\x44\x5d\x26\x26'),'\x77\x75\x65\x7a\x50':function(_0x5305ba,_0x2cbc0c){return _0x5305ba*_0x2cbc0c;},'\x4f\x61\x4b\x55\x4f':'\x72\x61\x6e\x64\x6f\x6d'},_0x13a2bb=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x576e19)?_0x576e19:[],_0xd41472=_0x5e7778&&_0x5e7778[_0x4b958b(0x23f,'\x36\x6d\x6b\x38')+_0x4b958b(0x1e0,'\x73\x23\x29\x77')]?_0x5e7778[_0x4b958b(0x295,'\x4f\x67\x4a\x49')+_0x4b958b(0x29a,'\x36\x6d\x6b\x38')]:new Set(),_0x43874a=!!(_0x5e7778&&_0x5e7778[_0x4b958b(0x1f5,'\x29\x42\x53\x4c')+_0x4b958b(0x2a6,'\x52\x24\x4f\x6d')]),_0x30e1e4=_0x5e7778&&_0x3ae87b[_0x4b958b(0x351,'\x39\x40\x47\x62')](typeof _0x5e7778[_0x4b958b(0x1aa,'\x4d\x36\x50\x78')+'\x64\x47\x65\x6e\x65\x49\x64'],_0x3ae87b[_0x4b958b(0x11f,'\x31\x32\x26\x5b')])?_0x5e7778['\x70\x72\x65\x66\x65\x72\x72\x65'+_0x4b958b(0x401,'\x4f\x39\x46\x77')]:null,_0x3cc85d=_0x5e7778&&_0x5e7778[_0x4b958b(0x166,'\x25\x28\x65\x25')+_0x4b958b(0x37c,'\x64\x47\x55\x42')]?_0x5e7778[_0x4b958b(0x38f,'\x30\x70\x77\x6e')+'\x76\x65\x72\x72\x69\x64\x65']:null,_0x35c1b1=_0x5e7778&&Array[_0x4b958b(0x20a,'\x28\x41\x57\x47')](_0x5e7778[_0x4b958b(0x2c4,'\x59\x21\x36\x77')+_0x4b958b(0x173,'\x31\x32\x26\x5b')])?_0x5e7778['\x63\x61\x70\x61\x62\x69\x6c\x69'+_0x4b958b(0x3f3,'\x30\x70\x77\x6e')]:[],_0x4cbde9=_0x5e7778&&Number[_0x4b958b(0x17f,'\x25\x6b\x73\x36')](_0x3ae87b[_0x4b958b(0x220,'\x66\x34\x55\x39')](Number,_0x5e7778[_0x4b958b(0x2c8,'\x53\x47\x71\x51')+_0x4b958b(0x1f7,'\x64\x47\x55\x42')]))?_0x3ae87b['\x4e\x62\x5a\x6d\x4a'](Number,_0x5e7778[_0x4b958b(0x1f6,'\x4f\x39\x46\x77')+_0x4b958b(0x2bc,'\x69\x4f\x68\x62')]):null,_0x5f4789=!!(_0x5e7778&&_0x5e7778['\x70\x72\x65\x66\x65\x72\x49\x6e'+_0x4b958b(0x363,'\x4e\x4f\x37\x62')]),_0x5b0675={};_0x5b0675['\x64\x72\x69\x66\x74\x45\x6e\x61'+_0x4b958b(0x35b,'\x64\x47\x55\x42')]=_0x43874a,_0x5b0675[_0x4b958b(0x3de,'\x54\x76\x48\x54')+'\x65\x50\x6f\x70\x75\x6c\x61\x74'+_0x4b958b(0xe1,'\x24\x76\x53\x54')]=_0x5e7778&&_0x5e7778[_0x4b958b(0x126,'\x52\x24\x4f\x6d')+_0x4b958b(0x271,'\x25\x28\x65\x25')+_0x4b958b(0x1d1,'\x53\x34\x65\x5e')],_0x5b0675[_0x4b958b(0x35e,'\x34\x21\x35\x24')+_0x4b958b(0x1b0,'\x53\x34\x65\x5e')]=_0x13a2bb[_0x4b958b(0x2e9,'\x44\x5d\x26\x26')],_0x5b0675[_0x4b958b(0x2ce,'\x4f\x39\x46\x77')+_0x4b958b(0x203,'\x65\x77\x6f\x5e')]=_0x5e7778&&_0x5e7778[_0x4b958b(0x107,'\x62\x4e\x68\x70')+_0x4b958b(0x3ed,'\x25\x28\x65\x25')];let _0x372a3e=_0x3b62d9(_0x5b0675);_0x3cc85d&&_0x3cc85d[_0x4b958b(0x3fe,'\x77\x62\x37\x51')]&&(_0x3ae87b[_0x4b958b(0x3d4,'\x34\x5e\x51\x62')](_0x3ae87b['\x63\x66\x4b\x59\x62'],_0x3ae87b[_0x4b958b(0x249,'\x37\x62\x49\x58')])?_0x372a3e=Math[_0x4b958b(0x189,'\x65\x45\x5b\x45')](_0x372a3e,_0x3ae87b[_0x4b958b(0x38c,'\x62\x4e\x68\x70')](_0x3cc85d[_0x4b958b(0x3e6,'\x40\x59\x4e\x66')],_0x3ae87b[_0x4b958b(0x327,'\x51\x47\x29\x5b')])?0x208c+0x1*0x209a+0x73d*-0x9:0x1*0xfa1+-0x1*0x2de+-0xcc3+0.7):_0x23f52e=_0x42a816[_0x4b958b(0x332,'\x72\x69\x40\x38')](BGpHmy[_0x4b958b(0x1da,'\x4e\x43\x78\x28')](_0x3064ed,_0x22db26)));const _0x50d733=_0x43874a||_0x3ae87b[_0x4b958b(0x13e,'\x4e\x4f\x37\x62')](_0x372a3e,0x1f96+-0x22ff+0x369+0.15),_0x1e48a4=_0x3ae87b[_0x4b958b(0x142,'\x59\x21\x36\x77')],_0x2961e9=0x9*-0x390+-0x22+0x2032+0.8,_0xec5b83=_0x3ae87b[_0x4b958b(0x216,'\x66\x34\x55\x39')](_0x595791),_0x2b11fc=_0x13a2bb[_0x4b958b(0x2d6,'\x25\x6b\x73\x36')](_0x432570=>!_0x40da6f(_0x432570,_0xec5b83))[_0x4b958b(0x1e1,'\x32\x70\x26\x75')](_0x33c948=>{const _0x35b26=_0x4b958b;let _0x287a3f=_0x19379a(_0x33c948,_0x25f1a2);_0x287a3f+=_0x18cd5d(_0x33c948,_0x25f1a2,_0xec5b83);if(_0x3ae87b['\x4f\x79\x62\x69\x64'](_0x287a3f,0xa8*-0x31+-0x754+0x277c)&&_0x33c948['\x69\x64']&&_0x3ae87b[_0x35b26(0x1d8,'\x72\x69\x40\x38')](String,_0x33c948['\x69\x64'])[_0x35b26(0x255,'\x51\x47\x29\x5b')+'\x74\x68'](_0x1e48a4))_0x287a3f*=_0x2961e9;const _0x49e48b={};return _0x49e48b['\x67\x65\x6e\x65']=_0x33c948,_0x49e48b[_0x35b26(0x211,'\x65\x45\x5b\x45')]=_0x287a3f,_0x49e48b;})[_0x4b958b(0x1eb,'\x33\x79\x66\x69')](_0x525a1a=>_0x525a1a[_0x4b958b(0x1f3,'\x44\x41\x31\x77')]>0x17*0x196+0x6c4+-0x2b3e)[_0x4b958b(0x3b8,'\x59\x21\x36\x77')]((_0xedc36e,_0x374586)=>_0x374586['\x73\x63\x6f\x72\x65']-_0xedc36e[_0x4b958b(0x3f6,'\x44\x4d\x28\x40')]);if(_0x3ae87b[_0x4b958b(0x223,'\x58\x23\x29\x78')](_0x2b11fc[_0x4b958b(0x3cc,'\x62\x4e\x68\x70')],0x12c4+-0x31*0x20+-0xca4)){const _0x12726a=_0x13a2bb[_0x4b958b(0x3fd,'\x6a\x6a\x63\x28')](_0x3cc79b=>_0x3cc79b&&_0x3cc79b['\x69\x64']&&String(_0x3cc79b['\x69\x64'])[_0x4b958b(0x152,'\x6a\x6a\x63\x28')+'\x74\x68'](_0x1e48a4)&&!_0xd41472[_0x4b958b(0x303,'\x41\x31\x70\x49')](_0x3cc79b['\x69\x64'])&&!_0x40da6f(_0x3cc79b,_0xec5b83));if(_0x12726a){const _0x2b5e17={};return _0x2b5e17[_0x4b958b(0x39f,'\x26\x70\x57\x4b')]=_0x12726a,_0x2b5e17[_0x4b958b(0x2ea,'\x25\x28\x65\x25')+_0x4b958b(0x325,'\x31\x32\x26\x5b')]=[],_0x2b5e17[_0x4b958b(0x1cf,'\x34\x26\x37\x44')+'\x65\x6e\x73\x69\x74\x79']=_0x372a3e,_0x2b5e17[_0x4b958b(0x35f,'\x64\x47\x55\x42')+'\x65']=_0x3ae87b[_0x4b958b(0x275,'\x4d\x36\x50\x78')],_0x2b5e17;}const _0x1595fc={};return _0x1595fc[_0x4b958b(0xdb,'\x4f\x63\x43\x4e')]=null,_0x1595fc['\x61\x6c\x74\x65\x72\x6e\x61\x74'+_0x4b958b(0x3ba,'\x29\x42\x53\x4c')]=[],_0x1595fc[_0x4b958b(0x267,'\x6a\x6a\x63\x28')+_0x4b958b(0x23e,'\x51\x47\x29\x5b')]=_0x372a3e,_0x1595fc['\x64\x72\x69\x66\x74\x4d\x6f\x64'+'\x65']=_0x4b958b(0x356,'\x64\x47\x55\x42'),_0x1595fc;}const _0x532eb7=0x7b0+-0xa40+0x291+0.5;if(_0x30e1e4&&!(_0x3cc85d&&_0x3cc85d[_0x4b958b(0x407,'\x76\x55\x42\x4f')])){const _0x2739a4=_0x2b11fc[_0x4b958b(0x148,'\x64\x47\x55\x42')+'\x78'](_0x208a21=>_0x208a21[_0x4b958b(0x195,'\x4f\x39\x46\x77')]&&_0x208a21[_0x4b958b(0x12a,'\x76\x55\x42\x4f')]['\x69\x64']===_0x30e1e4);_0x3ae87b[_0x4b958b(0x1dd,'\x32\x70\x26\x75')](_0x2739a4,-0x8e*0x26+-0x1bf+0x16d3)&&!_0xd41472[_0x4b958b(0xfa,'\x58\x23\x29\x78')](_0x30e1e4)&&(_0x2b11fc[_0x2739a4]={..._0x2b11fc[_0x2739a4],'\x73\x63\x6f\x72\x65':_0x3ae87b[_0x4b958b(0x163,'\x64\x47\x55\x42')](_0x2b11fc[_0x2739a4][_0x4b958b(0x1d7,'\x66\x34\x55\x39')],_0x532eb7)},_0x2b11fc[_0x4b958b(0x2a4,'\x52\x5a\x46\x4a')]((_0x25eb53,_0x4d1bea)=>_0x4d1bea[_0x4b958b(0x109,'\x58\x23\x29\x78')]-_0x25eb53[_0x4b958b(0x2b5,'\x44\x5d\x26\x26')]));}const _0x491544=_0x2b11fc[_0x4b958b(0x181,'\x26\x70\x57\x4b')](_0x250b3b=>_0x250b3b[_0x4b958b(0x31e,'\x72\x69\x40\x38')]&&!_0xd41472[_0x4b958b(0x3bb,'\x33\x79\x66\x69')](_0x250b3b[_0x4b958b(0x2da,'\x34\x5e\x51\x62')]['\x69\x64']));if(_0x3ae87b[_0x4b958b(0x120,'\x57\x4b\x71\x38')](_0x491544[_0x4b958b(0xf9,'\x65\x45\x5b\x45')],-0x1563+0x2*-0x36f+0x1c41))return{'\x73\x65\x6c\x65\x63\x74\x65\x64':null,'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':_0x2b11fc[_0x4b958b(0x2ac,'\x64\x47\x55\x42')](0x16e3+-0x17ae+0xcb,-0x35b+-0x34d*-0x4+-0x9d5*0x1)[_0x4b958b(0x268,'\x4e\x43\x78\x28')](_0x3bb958=>_0x3bb958[_0x4b958b(0x3c5,'\x30\x70\x77\x6e')]),'\x64\x72\x69\x66\x74\x49\x6e\x74\x65\x6e\x73\x69\x74\x79':_0x372a3e,'\x64\x72\x69\x66\x74\x4d\x6f\x64\x65':_0x3ae87b[_0x4b958b(0x3aa,'\x4d\x36\x50\x78')]};if(_0x5f4789&&_0x3ae87b[_0x4b958b(0x1b9,'\x73\x23\x29\x77')](_0x491544[_0x4b958b(0xf9,'\x65\x45\x5b\x45')],0x943+-0x5dd+0x4f*-0xb)){const _0x147a93=_0x491544[-0x3d4*-0x9+0x33+-0x22a7][_0x4b958b(0x3c0,'\x36\x6d\x6b\x38')],_0x8cf2a6=-0x74*-0xb+0x1106+-0x1602+0.7,_0x4ea014=_0x491544[_0x4b958b(0x197,'\x54\x76\x48\x54')+'\x78'](function(_0x158a68){const _0x113702=_0x4b958b;return _0x158a68[_0x113702(0x31d,'\x53\x34\x65\x5e')]&&_0x3ae87b['\x63\x44\x68\x58\x75'](_0x158a68[_0x113702(0x39a,'\x6c\x57\x55\x64')][_0x113702(0x31f,'\x44\x4d\x28\x40')+_0x113702(0x3b3,'\x52\x5a\x46\x4a')],_0x3ae87b[_0x113702(0x15b,'\x51\x47\x29\x5b')])&&_0x158a68['\x73\x63\x6f\x72\x65']>=_0x3ae87b[_0x113702(0x36f,'\x59\x21\x36\x77')](_0x147a93,_0x8cf2a6);});if(_0x4ea014>0x1ddf*-0x1+-0x1247*-0x1+-0x8*-0x173&&_0x491544[-0x2f*-0x89+-0x19d1+0x55*0x2][_0x4b958b(0xff,'\x24\x76\x53\x54')]&&_0x3ae87b['\x74\x49\x52\x44\x45'](_0x491544[-0x1f99+0x14b*0x8+0x1541]['\x67\x65\x6e\x65'][_0x4b958b(0x1ed,'\x53\x47\x71\x51')+_0x4b958b(0x33a,'\x4d\x36\x50\x78')],_0x4b958b(0x38e,'\x4e\x43\x78\x28'))){const _0x2131d0=_0x491544[_0x4ea014];_0x491544[_0x4b958b(0x1b8,'\x32\x70\x26\x75')](_0x4ea014,-0x44*0xc+-0x10ed+0x141e*0x1),_0x491544[_0x4b958b(0x10d,'\x77\x62\x37\x51')](_0x2131d0);}}let _0x240f75=0x19cc*-0x1+0x1*0x769+-0x621*-0x3,_0x36c3f7=_0x4b958b(0x2a2,'\x69\x4f\x68\x62')+'\x6e';if(_0x3ae87b[_0x4b958b(0x15e,'\x69\x4f\x68\x62')](_0x372a3e,0x1d0b+-0x1*0x260+-0x1aab)&&_0x3ae87b[_0x4b958b(0x11c,'\x58\x23\x29\x78')](_0x491544[_0x4b958b(0x191,'\x29\x42\x53\x4c')],-0x5b*-0x2f+-0x9d5+-0x6df)&&Math[_0x4b958b(0x2b3,'\x52\x5a\x46\x4a')]()<_0x372a3e){if(_0x3ae87b[_0x4b958b(0x2ed,'\x52\x24\x4f\x6d')](_0x35c1b1[_0x4b958b(0x2e9,'\x44\x5d\x26\x26')],-0x7ed*0x3+-0x3*-0x87e+-0x1b3)){if(_0x3ae87b[_0x4b958b(0x19c,'\x52\x24\x4f\x6d')](_0x3ae87b[_0x4b958b(0x1bb,'\x62\x4e\x68\x70')],_0x3ae87b[_0x4b958b(0x14f,'\x33\x79\x66\x69')])){const _0x4acee3=_0x491544[_0x4b958b(0x2b0,'\x70\x68\x6f\x40')](function(_0xea951a,_0x373b8e){const _0x1b9159=_0x4b958b,_0x4c8da6={};_0x4c8da6[_0x1b9159(0x3a8,'\x53\x47\x71\x51')]=function(_0x51d978,_0x1c7f3b){return _0x51d978!==_0x1c7f3b;};const _0x20aa58=_0x4c8da6;if(_0x3ae87b[_0x1b9159(0x389,'\x28\x41\x57\x47')](_0x1b9159(0x3f8,'\x34\x5e\x51\x62'),_0x3ae87b[_0x1b9159(0x1a5,'\x24\x76\x53\x54')]))return _0x20aa58[_0x1b9159(0x192,'\x25\x6b\x73\x36')](_0x1c6e31,_0x1ed4db);else{const _0x195548=_0xea951a[_0x1b9159(0x2e5,'\x34\x21\x35\x24')],_0x5c30d6=Array[_0x1b9159(0x241,'\x36\x6d\x6b\x38')](_0x195548[_0x1b9159(0x1a1,'\x26\x70\x57\x4b')+_0x1b9159(0x113,'\x44\x4d\x28\x40')])?_0x195548[_0x1b9159(0x1ee,'\x70\x68\x6f\x40')+_0x1b9159(0x290,'\x6c\x57\x55\x64')]:[];let _0x5c678b=-0x2c0*-0xe+0x170+-0x4*0x9fc;for(let _0x1f9211=0x98f+-0xc51*0x1+-0x2*-0x161;_0x3ae87b[_0x1b9159(0x311,'\x4f\x39\x46\x77')](_0x1f9211,_0x35c1b1[_0x1b9159(0x247,'\x58\x23\x29\x78')])&&_0x3ae87b[_0x1b9159(0x3e1,'\x4f\x67\x4a\x49')](_0x1f9211,0xf*-0x6a+-0x7*-0x211+-0x83c);_0x1f9211++){const _0x4f0ae1=_0x35c1b1[_0x1f9211];_0x3ae87b[_0x1b9159(0x307,'\x29\x42\x53\x4c')](typeof _0x4f0ae1,_0x3ae87b[_0x1b9159(0x3cf,'\x70\x68\x6f\x40')])&&_0x5c30d6[_0x1b9159(0xe8,'\x4e\x43\x78\x28')](function(_0x296a5e){return _0x3ae87b['\x77\x74\x6e\x41\x6d'](_0x42f73e,_0x296a5e,[_0x4f0ae1]);})&&_0x5c678b++;}const _0x35b078={};return _0x35b078[_0x1b9159(0x229,'\x65\x77\x6f\x5e')]=_0x373b8e,_0x35b078[_0x1b9159(0x321,'\x73\x23\x29\x77')]=_0x5c678b,_0x35b078['\x62\x61\x73\x65\x53\x63\x6f\x72'+'\x65']=_0xea951a[_0x1b9159(0x254,'\x28\x41\x57\x47')],_0x35b078;}}),_0x1e8c3f=_0x4acee3[_0x4b958b(0x375,'\x37\x62\x49\x58')](function(_0xfd0b59){const _0x593f9d=_0x4b958b;return _0x3ae87b[_0x593f9d(0x146,'\x40\x59\x4e\x66')](_0xfd0b59[_0x593f9d(0x3ff,'\x25\x28\x65\x25')],0x4a8+-0x481+0x27*-0x1);});if(_0x1e8c3f)_0x4acee3[_0x4b958b(0x138,'\x26\x70\x57\x4b')](function(_0x316f09,_0x567138){const _0x3a1d4f=_0x4b958b;return _0x567138['\x67\x61\x70\x48\x69\x74\x73']-_0x316f09['\x67\x61\x70\x48\x69\x74\x73']||_0x3ae87b[_0x3a1d4f(0xdd,'\x58\x23\x29\x78')](_0x567138[_0x3a1d4f(0x2bd,'\x25\x6b\x73\x36')+'\x65'],_0x316f09[_0x3a1d4f(0x373,'\x37\x62\x49\x58')+'\x65']);}),_0x240f75=_0x4acee3[-0x253d*0x1+0xfa2+0x1*0x159b][_0x4b958b(0x3c3,'\x34\x5e\x51\x62')],_0x36c3f7=_0x3ae87b[_0x4b958b(0x34a,'\x58\x23\x29\x78')];else{if(_0x3ae87b[_0x4b958b(0x228,'\x36\x6d\x6b\x38')](_0x4b958b(0x21e,'\x31\x32\x26\x5b'),_0x3ae87b[_0x4b958b(0x2a8,'\x53\x47\x71\x51')]))_0x80f3dd[_0x52465f]={..._0xa5ffa6[_0x834f19],'\x73\x63\x6f\x72\x65':_0x3ae87b[_0x4b958b(0xf7,'\x4f\x67\x4a\x49')](_0x35f9e5[_0x95f4b5][_0x4b958b(0x333,'\x25\x6b\x73\x36')],_0x45127d)},_0x5b445d[_0x4b958b(0x3df,'\x4f\x39\x46\x77')]((_0x5b78e9,_0x35e106)=>_0x35e106[_0x4b958b(0x22c,'\x41\x31\x70\x49')]-_0x5b78e9[_0x4b958b(0x305,'\x6a\x6a\x63\x28')]);else{let _0x1c98d1=Math[_0x4b958b(0x238,'\x4e\x4f\x37\x62')](_0x491544[_0x4b958b(0x11b,'\x6a\x6a\x63\x28')],Math[_0x4b958b(0x200,'\x6c\x57\x55\x64')](0x1540+-0xe26*-0x1+-0x2364,Math['\x63\x65\x69\x6c'](_0x491544[_0x4b958b(0x13c,'\x37\x62\x49\x58')]*_0x372a3e)));if(_0x3ae87b['\x50\x78\x66\x77\x4c'](_0x4cbde9,null)&&_0x4cbde9<0x2e6+-0x12b+-0x1bb+0.3&&_0x3ae87b[_0x4b958b(0x13b,'\x40\x59\x4e\x66')](_0x1c98d1,_0x491544[_0x4b958b(0x27e,'\x53\x47\x71\x51')])){if(_0x3ae87b[_0x4b958b(0x128,'\x32\x70\x26\x75')](_0x3ae87b[_0x4b958b(0x341,'\x4f\x39\x46\x77')],_0x3ae87b[_0x4b958b(0x3b5,'\x34\x5e\x51\x62')]))return _0x3ae87b[_0x4b958b(0x3f7,'\x36\x6d\x6b\x38')](_0xc5fb89,_0xf7ff3)[_0x4b958b(0x2d9,'\x4f\x39\x46\x77')+'\x61\x73\x65']();else _0x1c98d1=Math[_0x4b958b(0x297,'\x44\x41\x31\x77')](_0x491544['\x6c\x65\x6e\x67\x74\x68'],_0x1c98d1+(-0x329*0xc+0x1*-0x1f3e+0x452b));}_0x240f75=Math[_0x4b958b(0x18b,'\x37\x62\x49\x58')](Math[_0x4b958b(0x30d,'\x76\x55\x42\x4f')]()*_0x1c98d1),_0x36c3f7=_0x3ae87b[_0x4b958b(0x298,'\x39\x40\x47\x62')];}}}else return _0x106822(BGpHmy[_0x4b958b(0xf4,'\x40\x59\x4e\x66')](_0x141ae7,''))[_0x4b958b(0x337,'\x65\x77\x6f\x5e')+_0x4b958b(0x28e,'\x37\x62\x49\x58')]()[_0x4b958b(0x315,'\x34\x5e\x51\x62')](/[^\p{L}\p{N}_\-]+/gu,'\x20')['\x73\x70\x6c\x69\x74'](/\s+/)['\x66\x69\x6c\x74\x65\x72'](function(_0x3c141d){const _0x2d0db5=_0x4b958b;return _0x3c141d[_0x2d0db5(0x1f8,'\x65\x77\x6f\x5e')]>=0x256c+0x127*0x1f+-0x4923&&!_0x14b679[_0x2d0db5(0x3bb,'\x33\x79\x66\x69')](_0x3c141d);});}else{if(_0x3ae87b[_0x4b958b(0x111,'\x65\x45\x5b\x45')]('\x56\x4a\x46\x55\x6b',_0x3ae87b[_0x4b958b(0x10c,'\x32\x70\x26\x75')])){if(!_0x1d00bc[_0x4b958b(0x2ab,'\x32\x70\x26\x75')](_0x59c574)||!_0x456af5[_0x4b958b(0xdf,'\x24\x76\x53\x54')](_0x3a322c))return 0x1a81+0x2285+-0x3d06;if(_0x3ae87b[_0x4b958b(0x1c4,'\x4f\x39\x46\x77')](_0x24c89e['\x6c\x65\x6e\x67\x74\x68'],-0x1d80+0x1*0x72b+0x1655*0x1)||_0x3ae87b[_0x4b958b(0x269,'\x34\x5e\x51\x62')](_0x2920b0[_0x4b958b(0x397,'\x4e\x43\x78\x28')],-0x4de+-0x5*0x37+0x5f1))return-0x52*0x2e+0x1989+-0xacd;const _0x3c63a4=new _0x5692af(_0x3a3f32['\x6d\x61\x70'](function(_0x1cc577){const _0x63f47b=_0x4b958b;return _0x5d4832(_0x1cc577)[_0x63f47b(0x1a7,'\x41\x31\x70\x49')+_0x63f47b(0x180,'\x58\x23\x29\x78')]();}));let _0x55bc60=0x2567+-0x2692*-0x1+-0x4bf9;for(let _0x4edbc6=0x8d*0x25+0x2052+-0x34b3;_0x3ae87b[_0x4b958b(0x167,'\x26\x70\x57\x4b')](_0x4edbc6,_0x140026['\x6c\x65\x6e\x67\x74\x68']);_0x4edbc6++){if(_0x3c63a4[_0x4b958b(0x2e6,'\x26\x70\x57\x4b')](_0x1ea5b0(_0x246f43[_0x4edbc6])[_0x4b958b(0x3e3,'\x25\x28\x65\x25')+_0x4b958b(0x3ea,'\x6a\x6a\x63\x28')]()))_0x55bc60++;}return _0x3ae87b[_0x4b958b(0x3dd,'\x53\x47\x71\x51')](_0x55bc60,_0x289e59[_0x4b958b(0x294,'\x54\x76\x48\x54')](_0x33c4f0['\x6c\x65\x6e\x67\x74\x68'],-0x374+-0xe62+0x11d7));}else{const _0x346e45=Math[_0x4b958b(0x2ee,'\x31\x32\x26\x5b')](_0x491544['\x6c\x65\x6e\x67\x74\x68'],Math[_0x4b958b(0x322,'\x51\x47\x29\x5b')](0x1f*-0x6b+0x4b2+0x845,Math[_0x4b958b(0x1fc,'\x34\x5e\x51\x62')](_0x491544[_0x4b958b(0x1c2,'\x40\x59\x4e\x66')]*_0x372a3e)));_0x240f75=Math[_0x4b958b(0x169,'\x57\x4b\x71\x38')](_0x3ae87b[_0x4b958b(0x2e8,'\x28\x41\x57\x47')](Math[_0x4b958b(0x17d,'\x26\x70\x57\x4b')](),_0x346e45)),_0x36c3f7=_0x3ae87b[_0x4b958b(0x27d,'\x52\x5a\x46\x4a')];}}}return{'\x73\x65\x6c\x65\x63\x74\x65\x64':_0x491544[_0x240f75][_0x4b958b(0x31d,'\x53\x34\x65\x5e')],'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':_0x491544[_0x4b958b(0x25d,'\x66\x34\x55\x39')](function(_0x504a91,_0x38bd76){const _0x93513b=_0x4b958b;if(_0x3ae87b[_0x93513b(0xf5,'\x77\x62\x37\x51')](_0x93513b(0x3ee,'\x53\x47\x71\x51'),_0x93513b(0x2c2,'\x6c\x57\x55\x64'))){const _0x57fad7=!!(_0x541e9c&&_0x476753[_0x93513b(0x262,'\x36\x6d\x6b\x38')+_0x93513b(0x121,'\x51\x47\x29\x5b')]),_0x546385=_0x5ec353&&_0x5e2285[_0x93513b(0x15c,'\x29\x42\x53\x4c')](BGpHmy[_0x93513b(0x227,'\x76\x55\x42\x4f')](_0x27a2b4,_0x102ad8[_0x93513b(0x16e,'\x41\x31\x70\x49')+_0x93513b(0x1bd,'\x25\x6b\x73\x36')+_0x93513b(0x207,'\x40\x59\x4e\x66')]))?_0x43c50b(_0x30294d[_0x93513b(0x196,'\x39\x40\x47\x62')+_0x93513b(0x2ec,'\x52\x24\x4f\x6d')+_0x93513b(0x101,'\x44\x4d\x28\x40')]):null,_0x279dbb=_0x3d65ce&&_0x540883[_0x93513b(0x361,'\x30\x70\x77\x6e')](BGpHmy[_0x93513b(0x37d,'\x44\x5d\x26\x26')](_0x195039,_0x5486ad[_0x93513b(0x2b9,'\x24\x76\x53\x54')+_0x93513b(0x3f5,'\x4e\x43\x78\x28')]))?BGpHmy[_0x93513b(0x28d,'\x39\x40\x47\x62')](_0x6b3aec,_0x1b9314['\x67\x65\x6e\x65\x50\x6f\x6f\x6c'+_0x93513b(0x106,'\x32\x70\x26\x75')]):null,_0x57f4a9=BGpHmy[_0x93513b(0x36c,'\x6c\x57\x55\x64')](_0x546385,_0x279dbb)||null;if(_0x57fad7){if(!_0x57f4a9||BGpHmy[_0x93513b(0x3e7,'\x31\x32\x26\x5b')](_0x57f4a9,-0x695+0x1698+-0x1002))return 0xf38+0x2*-0x9e1+0x2*0x245+0.7;const _0x4d91da=_0x485d05&&_0x4cffe3[_0x93513b(0x1d5,'\x73\x23\x29\x77')](BGpHmy[_0x93513b(0x1a9,'\x52\x5a\x46\x4a')](_0x527094,_0x2f08af[_0x93513b(0x1a0,'\x72\x69\x40\x38')+_0x93513b(0x108,'\x59\x21\x36\x77')]))?BGpHmy[_0x93513b(0x1b2,'\x34\x21\x35\x24')](_0x16a435,_0x150dd0[_0x93513b(0x1c0,'\x34\x26\x37\x44')+_0x93513b(0xe5,'\x65\x45\x5b\x45')]):-0xb68+-0x2b9+-0x1*-0xe21,_0x382b89=BGpHmy[_0x93513b(0x199,'\x44\x41\x31\x77')](_0x57f4a9,_0x9f3c93),_0x5db26f=BGpHmy['\x54\x42\x49\x53\x52'](_0x382b89,0x21c5+0x5*0x5b+0x2bc*-0xd)?_0x450fe5['\x6d\x69\x6e'](-0x1c88+-0x5*-0x44b+0x712*0x1,_0x4d91da/_0x382b89):0x24c2+-0xd50+-0x1772*0x1,_0x489916=BGpHmy[_0x93513b(0x365,'\x4f\x39\x46\x77')](_0x525e85,BGpHmy[_0x93513b(0xf0,'\x6c\x57\x55\x64')](BGpHmy[_0x93513b(0x2dd,'\x58\x57\x50\x42')](_0x543da8,_0x1e897b),_0x5db26f));return _0xaef6de[_0x93513b(0x153,'\x64\x47\x55\x42')](-0x9bc+-0xfbd+0x197a,BGpHmy[_0x93513b(0x28a,'\x53\x47\x71\x51')](BGpHmy[_0x93513b(0x3c6,'\x4f\x67\x4a\x49')](-0x7*-0xd7+0x1e1a+0x2*-0x11fd,_0x1c79c8[_0x93513b(0x1d4,'\x44\x5d\x26\x26')](_0x57f4a9)),_0x489916));}if(BGpHmy[_0x93513b(0x19e,'\x44\x4d\x28\x40')](_0x57f4a9,null)&&_0x57f4a9>0x1*-0x1a88+0x1*-0x57+0x1adf)return _0x3f3a1d[_0x93513b(0x3d8,'\x32\x70\x26\x75')](-0x409*0x7+-0xb27+-0x5a1*-0x7,(-0x1c0c+-0x2b*0x7+-0x1*-0x1d3a)/_0x1f8e71[_0x93513b(0x387,'\x4e\x43\x78\x28')](_0x57f4a9));return-0x19eb+0x1f00*-0x1+0x38eb;}else return _0x3ae87b[_0x93513b(0x2c3,'\x58\x23\x29\x78')](_0x38bd76,_0x240f75);})[_0x4b958b(0x225,'\x25\x28\x65\x25')](-0xea9*0x1+0x2139+-0x1290,-0x1f*-0x76+-0x207*-0x1+-0x104d)[_0x4b958b(0x155,'\x52\x24\x4f\x6d')](_0x2c6722=>_0x2c6722['\x67\x65\x6e\x65']),'\x64\x72\x69\x66\x74\x49\x6e\x74\x65\x6e\x73\x69\x74\x79':_0x372a3e,'\x64\x72\x69\x66\x74\x4d\x6f\x64\x65':_0x36c3f7};}function _0x39fcca(_0x21c33f,_0xd901ea){const _0x5ba069=_0x238cfb,_0x3a6333=(_0x21c33f||[])[_0x5ba069(0xf8,'\x39\x40\x47\x62')](_0x53c585=>{const _0x4727e2=_0x5ba069,_0x1cbfa9=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x53c585['\x74\x72\x69\x67\x67\x65\x72'])?_0x53c585[_0x4727e2(0x3c7,'\x54\x76\x48\x54')]:[],_0x389810=_0x1cbfa9[_0x4727e2(0x1cc,'\x33\x79\x66\x69')]((_0x3d7ee4,_0x48c1b5)=>_0x42f73e(_0x48c1b5,_0xd901ea)?_0x3d7ee4+(0x138f+0xd84+-0x2112):_0x3d7ee4,-0xf44+-0xe06+0x17*0x146),_0x4e6f42={};return _0x4e6f42[_0x4727e2(0x2c0,'\x28\x41\x57\x47')]=_0x53c585,_0x4e6f42['\x73\x63\x6f\x72\x65']=_0x389810,_0x4e6f42;})[_0x5ba069(0x1e3,'\x53\x47\x71\x51')](_0x287800=>_0x287800['\x73\x63\x6f\x72\x65']>-0x1b43+0x303+-0x2*-0xc20)[_0x5ba069(0x127,'\x54\x76\x48\x54')]((_0x27d813,_0x1adfd1)=>_0x1adfd1[_0x5ba069(0x2b5,'\x44\x5d\x26\x26')]-_0x27d813[_0x5ba069(0x1f3,'\x44\x41\x31\x77')]);return _0x3a6333[_0x5ba069(0x1ef,'\x30\x70\x77\x6e')]?_0x3a6333[-0x1b44+-0xbf7+0x53*0x79][_0x5ba069(0x1ac,'\x34\x26\x37\x44')]:null;}function _0x2cbb4d(_0x3d9b9c,_0x334361){const _0x2a441c=_0x238cfb,_0x58dc9f={'\x4f\x72\x74\x58\x6c':function(_0x189fdb,_0x148533){return _0x189fdb(_0x148533);},'\x78\x76\x42\x46\x59':function(_0x5aef01,_0xc594ab){return _0x5aef01===_0xc594ab;},'\x47\x67\x73\x74\x41':function(_0x10bb6f,_0x416107){return _0x10bb6f<_0x416107;},'\x6b\x76\x76\x47\x6c':function(_0x1ccddd,_0x4e3a9b){return _0x1ccddd(_0x4e3a9b);},'\x56\x4e\x77\x77\x74':function(_0x264808,_0x4983c9){return _0x264808/_0x4983c9;}};if(!Array[_0x2a441c(0x20d,'\x44\x41\x31\x77')](_0x3d9b9c)||!Array[_0x2a441c(0xfe,'\x66\x34\x55\x39')](_0x334361))return-0x1*-0xec5+-0xb0d+-0x1*0x3b8;if(_0x58dc9f[_0x2a441c(0xed,'\x70\x68\x6f\x40')](_0x3d9b9c[_0x2a441c(0x16f,'\x31\x32\x26\x5b')],-0x23e5+0x155f+0xe86)||_0x58dc9f['\x78\x76\x42\x46\x59'](_0x334361[_0x2a441c(0x320,'\x4d\x36\x50\x78')],-0x521*0x7+0x5*0x497+0xcf4))return-0x3*-0x59b+-0x1a6+0x1*-0xf2b;const _0x48ea7e=new Set(_0x334361[_0x2a441c(0x2fc,'\x58\x57\x50\x42')](function(_0x50257a){const _0xf43e70=_0x2a441c;return _0x58dc9f[_0xf43e70(0x1d2,'\x64\x47\x55\x42')](String,_0x50257a)[_0xf43e70(0x3e3,'\x25\x28\x65\x25')+'\x61\x73\x65']();}));let _0x15feef=-0x1fee+-0x16f7+-0xd*-0x439;for(let _0x528fd0=-0x1769+-0x86c+0x119*0x1d;_0x58dc9f[_0x2a441c(0x26f,'\x69\x4f\x68\x62')](_0x528fd0,_0x3d9b9c[_0x2a441c(0x250,'\x36\x6d\x6b\x38')]);_0x528fd0++){if(_0x48ea7e[_0x2a441c(0x251,'\x4d\x36\x50\x78')](_0x58dc9f[_0x2a441c(0x1af,'\x62\x4e\x68\x70')](String,_0x3d9b9c[_0x528fd0])[_0x2a441c(0x176,'\x62\x4e\x68\x70')+_0x2a441c(0xec,'\x34\x26\x37\x44')]()))_0x15feef++;}return _0x58dc9f[_0x2a441c(0x39e,'\x39\x40\x47\x62')](_0x15feef,Math[_0x2a441c(0x354,'\x25\x28\x65\x25')](_0x3d9b9c['\x6c\x65\x6e\x67\x74\x68'],-0x6*0x515+0x5*-0x64d+-0x1*-0x3e00));}const _0x2cfbc0=0x17ce+-0x817+0x1*-0xfb5,_0x4db557=-0x271*0xd+-0x21c9+0x1*0x4186+0.6;function _0x30200c(_0x18e680,_0x57db79,_0x11a9f5){const _0x24eb70=_0x238cfb,_0x4ede0f={'\x75\x54\x58\x77\x51':function(_0x5e2295,_0x2dae2a){return _0x5e2295*_0x2dae2a;},'\x51\x61\x55\x6d\x61':_0x24eb70(0x3af,'\x25\x6b\x73\x36'),'\x4b\x4e\x44\x68\x67':function(_0x4f5087,_0x190738){return _0x4f5087 instanceof _0x190738;},'\x67\x51\x6a\x4a\x6d':function(_0x58c710,_0x1690d5){return _0x58c710<_0x1690d5;},'\x65\x73\x48\x79\x68':function(_0x8f5f8f,_0x508268){return _0x8f5f8f!==_0x508268;},'\x54\x5a\x77\x77\x6b':_0x24eb70(0x26c,'\x4d\x36\x50\x78'),'\x44\x56\x72\x52\x49':_0x24eb70(0x2f9,'\x52\x24\x4f\x6d'),'\x4d\x6b\x44\x79\x46':function(_0x27ea7d,_0x3353e0){return _0x27ea7d(_0x3353e0);},'\x50\x6b\x54\x74\x6a':function(_0x510194,_0x285c01){return _0x510194>=_0x285c01;}},_0x4c7bc2=_0x4ede0f[_0x24eb70(0x210,'\x28\x41\x57\x47')](_0x11a9f5,Set)?new Set(_0x11a9f5):new Set();if(!Array[_0x24eb70(0xdc,'\x4e\x4f\x37\x62')](_0x18e680)||_0x18e680['\x6c\x65\x6e\x67\x74\x68']===0x1*0x1919+-0x17*-0x88+-0x2551)return _0x4c7bc2;const _0xaf3a99={};for(let _0xaf1da7=0xb*0x2e7+-0x5*0x69b+-0x3*-0x5e;_0x4ede0f[_0x24eb70(0x17b,'\x34\x26\x37\x44')](_0xaf1da7,_0x18e680[_0x24eb70(0x20c,'\x34\x26\x37\x44')]);_0xaf1da7++){if(_0x4ede0f[_0x24eb70(0x140,'\x44\x41\x31\x77')](_0x4ede0f[_0x24eb70(0x360,'\x58\x57\x50\x42')],_0x4ede0f[_0x24eb70(0x292,'\x52\x24\x4f\x6d')])){const _0x2cad23=_0x18e680[_0xaf1da7];if(!_0x2cad23||!_0x2cad23[_0x24eb70(0x274,'\x58\x23\x29\x78')])continue;const _0x525a43=_0x2cbb4d(_0x57db79,_0x2cad23[_0x24eb70(0x24e,'\x62\x4e\x68\x70')]||[]);if(_0x4ede0f[_0x24eb70(0x2ad,'\x4d\x36\x50\x78')](_0x525a43,_0x4db557))continue;const _0x3b69ae=_0x4ede0f[_0x24eb70(0x133,'\x4f\x63\x43\x4e')](String,_0x2cad23[_0x24eb70(0x263,'\x6a\x6a\x63\x28')]);_0xaf3a99[_0x3b69ae]=(_0xaf3a99[_0x3b69ae]||-0x1*-0x25cd+-0x3*-0x79d+-0x3ca4)+(-0xbb*-0x34+-0x1953+0x48*-0x2d);}else{const _0x4b3e8e=_0x35d7c3[_0x24eb70(0x38d,'\x77\x62\x37\x51')](_0x1db789[_0x24eb70(0x323,'\x52\x5a\x46\x4a')],_0x249faa[_0x24eb70(0x402,'\x34\x5e\x51\x62')](-0x11ba+0x1e2b+-0xc6f,_0x325285['\x63\x65\x69\x6c'](_0x240b63[_0x24eb70(0x3cc,'\x62\x4e\x68\x70')]*_0xf5abcb)));_0x252c90=_0x25ffb8['\x66\x6c\x6f\x6f\x72'](rVzkSJ[_0x24eb70(0x358,'\x4f\x67\x4a\x49')](_0x4e6af8[_0x24eb70(0x278,'\x4d\x36\x50\x78')](),_0x4b3e8e)),_0x5c6e83=rVzkSJ[_0x24eb70(0x137,'\x73\x23\x29\x77')];}}const _0x316157=Object[_0x24eb70(0x296,'\x44\x4d\x28\x40')](_0xaf3a99);for(let _0x38b07c=-0x1f2f+-0x403*0x4+0x2f3b;_0x4ede0f[_0x24eb70(0x2cc,'\x65\x45\x5b\x45')](_0x38b07c,_0x316157['\x6c\x65\x6e\x67\x74\x68']);_0x38b07c++){_0x4ede0f[_0x24eb70(0x18f,'\x77\x62\x37\x51')](_0xaf3a99[_0x316157[_0x38b07c]],_0x2cfbc0)&&_0x4c7bc2[_0x24eb70(0x244,'\x73\x23\x29\x77')](_0x316157[_0x38b07c]);}return _0x4c7bc2;}function _0x32dc8e({genes:_0x5ce33d,capsules:_0x1c4a8a,signals:_0x3e496e,memoryAdvice:_0x14b178,driftEnabled:_0x3ffc58,failedCapsules:_0x11bec7,capabilityGaps:_0x1c3a26,noveltyScore:_0x214b04,plateauOverride:_0x9b0bba}){const _0x51f739=_0x238cfb,_0x2a218a={'\x45\x4e\x46\x50\x42':function(_0x48567e,_0x45e736){return _0x48567e instanceof _0x45e736;},'\x4b\x62\x6d\x71\x68':function(_0x303d31,_0x2d89f1,_0x49d8a2,_0x590c91){return _0x303d31(_0x2d89f1,_0x49d8a2,_0x590c91);},'\x75\x61\x50\x7a\x71':function(_0x1fa758,_0x315f2b,_0x57f070,_0xbae42b){return _0x1fa758(_0x315f2b,_0x57f070,_0xbae42b);},'\x75\x51\x49\x49\x70':function(_0x5527de,_0x2a2d77){return _0x5527de(_0x2a2d77);},'\x43\x64\x68\x68\x47':function(_0x41b0d1,_0x27a34a){return _0x41b0d1||_0x27a34a;},'\x53\x73\x4d\x65\x56':function(_0x573dde,_0x3194f1,_0xf62e96){return _0x573dde(_0x3194f1,_0xf62e96);},'\x72\x77\x46\x49\x72':function(_0x498ce3,_0x3b6226){return _0x498ce3===_0x3b6226;},'\x6c\x5a\x57\x4c\x69':'\x73\x65\x6c\x65\x63\x74\x69\x6f'+'\x6e','\x6e\x59\x71\x49\x50':_0x51f739(0x369,'\x34\x5e\x51\x62')+_0x51f739(0x301,'\x64\x47\x55\x42')},_0x776448=_0x14b178&&_0x2a218a[_0x51f739(0x3d9,'\x36\x6d\x6b\x38')](_0x14b178[_0x51f739(0x14b,'\x41\x31\x70\x49')+_0x51f739(0x25c,'\x26\x70\x57\x4b')],Set)?_0x14b178[_0x51f739(0x3a4,'\x31\x32\x26\x5b')+_0x51f739(0x396,'\x69\x4f\x68\x62')]:new Set(),_0x2dfa30=_0x14b178&&_0x14b178[_0x51f739(0x2ae,'\x28\x41\x57\x47')+_0x51f739(0x1fb,'\x64\x47\x55\x42')]?_0x14b178[_0x51f739(0x35c,'\x51\x47\x29\x5b')+_0x51f739(0x171,'\x28\x41\x57\x47')]:null,_0x33403b=_0x14b178&&Number[_0x51f739(0x406,'\x4e\x43\x78\x28')](Number(_0x14b178[_0x51f739(0x3a3,'\x53\x47\x71\x51')+_0x51f739(0x3b9,'\x4f\x67\x4a\x49')]))?Number(_0x14b178['\x74\x6f\x74\x61\x6c\x41\x74\x74'+'\x65\x6d\x70\x74\x73']):-0x149b+0x3*-0x725+0x2a0a,_0x4ef7a7=_0x2a218a[_0x51f739(0x3d0,'\x4f\x67\x4a\x49')](_0x30200c,Array[_0x51f739(0x3ef,'\x58\x23\x29\x78')](_0x11bec7)?_0x11bec7:[],_0x3e496e,_0x776448),{selected:_0x1db51c,alternatives:_0x5bd37f,driftIntensity:_0x4652b3,driftMode:_0x31aed9}=_0x2a218a[_0x51f739(0x1e2,'\x6a\x6a\x63\x28')](_0x4689ea,_0x5ce33d,_0x3e496e,{'\x62\x61\x6e\x6e\x65\x64\x47\x65\x6e\x65\x49\x64\x73':_0x4ef7a7,'\x70\x72\x65\x66\x65\x72\x72\x65\x64\x47\x65\x6e\x65\x49\x64':_0x2dfa30,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':!!_0x3ffc58,'\x6d\x65\x6d\x6f\x72\x79\x45\x76\x69\x64\x65\x6e\x63\x65':_0x33403b,'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':Array['\x69\x73\x41\x72\x72\x61\x79'](_0x1c3a26)?_0x1c3a26:[],'\x6e\x6f\x76\x65\x6c\x74\x79\x53\x63\x6f\x72\x65':Number[_0x51f739(0x37e,'\x65\x77\x6f\x5e')](_0x2a218a[_0x51f739(0x390,'\x29\x42\x53\x4c')](Number,_0x214b04))?Number(_0x214b04):null,'\x70\x6c\x61\x74\x65\x61\x75\x4f\x76\x65\x72\x72\x69\x64\x65':_0x2a218a['\x43\x64\x68\x68\x47'](_0x9b0bba,null)}),_0x1caf54=_0x2a218a[_0x51f739(0x125,'\x52\x24\x4f\x6d')](_0x39fcca,_0x1c4a8a,_0x3e496e),_0x5cdcec=!!(_0x2dfa30&&_0x1db51c&&_0x1db51c['\x69\x64']===_0x2dfa30),_0x55c801=_0x2a218a[_0x51f739(0xef,'\x25\x28\x65\x25')](_0x31aed9,_0x2a218a[_0x51f739(0x3bd,'\x77\x62\x37\x51')])?_0x2a218a['\x6e\x59\x71\x49\x50']:_0x31aed9,_0xbee93e={};_0xbee93e[_0x51f739(0x1c6,'\x44\x4d\x28\x40')]=_0x1db51c,_0xbee93e['\x63\x61\x70\x73\x75\x6c\x65']=_0x1caf54,_0xbee93e['\x73\x69\x67\x6e\x61\x6c\x73']=_0x3e496e,_0xbee93e[_0x51f739(0x3ca,'\x6c\x57\x55\x64')+_0x51f739(0x383,'\x69\x4f\x68\x62')]=_0x5bd37f,_0xbee93e[_0x51f739(0x357,'\x51\x47\x29\x5b')+_0x51f739(0x276,'\x77\x62\x37\x51')]=_0x14b178,_0xbee93e[_0x51f739(0x116,'\x30\x70\x77\x6e')+_0x51f739(0x310,'\x40\x59\x4e\x66')]=_0x3ffc58,_0xbee93e['\x64\x72\x69\x66\x74\x49\x6e\x74'+_0x51f739(0x1dc,'\x72\x69\x40\x38')]=_0x4652b3,_0xbee93e[_0x51f739(0x240,'\x44\x41\x31\x77')+_0x51f739(0x36b,'\x37\x62\x49\x58')]=_0x55c801,_0xbee93e[_0x51f739(0xf2,'\x72\x69\x40\x38')+'\x65\x64']=_0x5cdcec;const _0x5bca11=_0x2a218a[_0x51f739(0x11a,'\x76\x55\x42\x4f')](_0x312005,_0xbee93e),_0x384501={};return _0x384501[_0x51f739(0x34f,'\x72\x69\x40\x38')+_0x51f739(0x352,'\x37\x62\x49\x58')]=_0x1db51c,_0x384501[_0x51f739(0x37a,'\x40\x59\x4e\x66')+_0x51f739(0x3cb,'\x4f\x63\x43\x4e')+'\x73']=_0x1caf54?[_0x1caf54]:[],_0x384501[_0x51f739(0x170,'\x44\x4d\x28\x40')]=_0x5bca11,_0x384501[_0x51f739(0x313,'\x6c\x57\x55\x64')+_0x51f739(0x1ca,'\x4e\x43\x78\x28')]=_0x4652b3,_0x384501[_0x51f739(0x122,'\x26\x70\x57\x4b')+_0x51f739(0x157,'\x41\x31\x70\x49')]=_0x55c801,_0x384501[_0x51f739(0x2f4,'\x65\x77\x6f\x5e')+'\x65\x64']=_0x5cdcec,_0x384501[_0x51f739(0x237,'\x44\x4d\x28\x40')+_0x51f739(0x266,'\x69\x4f\x68\x62')]=_0x33403b,_0x384501;}function _0x312005({gene:_0x2602b8,capsule:_0x2c476c,signals:_0x13a4b7,alternatives:_0x29b8cd,memoryAdvice:_0x108926,driftEnabled:_0x2d85e8,driftIntensity:_0xa3835d,selectionPath:_0x2044a3,memoryUsed:_0x4271c6}){const _0x39a1ba=_0x238cfb,_0x1217f9={'\x67\x47\x6d\x53\x46':function(_0x2e91c6,_0x424f99,_0x318b02){return _0x2e91c6(_0x424f99,_0x318b02);},'\x4a\x72\x47\x45\x6d':function(_0x546265,_0x4b375d,_0x485b79,_0x46a7d4){return _0x546265(_0x4b375d,_0x485b79,_0x46a7d4);},'\x79\x4d\x76\x4d\x74':function(_0x211314,_0x5c7061){return _0x211314>_0x5c7061;},'\x6d\x4c\x6c\x6d\x46':_0x39a1ba(0x3fa,'\x24\x76\x53\x54')+_0x39a1ba(0x1ae,'\x59\x21\x36\x77')+_0x39a1ba(0x3b2,'\x70\x68\x6f\x40')+_0x39a1ba(0x343,'\x26\x70\x57\x4b')+_0x39a1ba(0x183,'\x6a\x6a\x63\x28')+_0x39a1ba(0x3d6,'\x25\x6b\x73\x36'),'\x65\x52\x49\x6c\x6e':_0x39a1ba(0x2f7,'\x34\x5e\x51\x62'),'\x63\x4d\x49\x5a\x78':'\x72\x61\x6e\x64\x6f\x6d\x5f\x64'+'\x72\x69\x66\x74\x5f\x6f\x76\x65'+_0x39a1ba(0x31c,'\x66\x34\x55\x39')+_0x39a1ba(0x362,'\x57\x4b\x71\x38'),'\x41\x6a\x67\x62\x50':function(_0x3689b2,_0x492afc){return _0x3689b2>_0x492afc;},'\x6b\x62\x47\x6f\x74':_0x39a1ba(0x2fb,'\x65\x77\x6f\x5e')+_0x39a1ba(0x150,'\x34\x21\x35\x24')+_0x39a1ba(0x1a3,'\x73\x23\x29\x77')+_0x39a1ba(0x1fd,'\x32\x70\x26\x75'),'\x78\x6c\x42\x75\x79':function(_0x223592,_0x44c861){return _0x223592||_0x44c861;}},_0x168813=[];if(_0x2602b8)_0x168813[_0x39a1ba(0x279,'\x36\x6d\x6b\x38')](_0x39a1ba(0x285,'\x33\x79\x66\x69')+_0x39a1ba(0x1d9,'\x41\x31\x70\x49')+_0x39a1ba(0x3e0,'\x52\x24\x4f\x6d')+_0x39a1ba(0x33c,'\x51\x47\x29\x5b'));if(_0x2c476c)_0x168813[_0x39a1ba(0x3be,'\x58\x57\x50\x42')](_0x39a1ba(0x33b,'\x30\x70\x77\x6e')+_0x39a1ba(0x34b,'\x53\x34\x65\x5e')+'\x6d\x61\x74\x63\x68\x65\x73\x20'+'\x73\x69\x67\x6e\x61\x6c\x73');if(!_0x2602b8)_0x168813[_0x39a1ba(0x1f1,'\x34\x26\x37\x44')](_0x1217f9[_0x39a1ba(0x2e7,'\x6c\x57\x55\x64')]);if(_0x13a4b7&&_0x13a4b7[_0x39a1ba(0x1c3,'\x44\x41\x31\x77')])_0x168813[_0x39a1ba(0x17c,'\x37\x62\x49\x58')](_0x39a1ba(0x364,'\x33\x79\x66\x69')+'\x20'+_0x13a4b7['\x6a\x6f\x69\x6e']('\x2c\x20'));if(_0x108926&&Array[_0x39a1ba(0x1e9,'\x29\x42\x53\x4c')](_0x108926[_0x39a1ba(0x179,'\x24\x76\x53\x54')+'\x69\x6f\x6e'])&&_0x108926[_0x39a1ba(0x38b,'\x29\x42\x53\x4c')+_0x39a1ba(0x246,'\x59\x21\x36\x77')][_0x39a1ba(0x2aa,'\x39\x40\x47\x62')]){if(_0x1217f9[_0x39a1ba(0x178,'\x65\x77\x6f\x5e')]!==_0x1217f9[_0x39a1ba(0x178,'\x65\x77\x6f\x5e')]){let _0x1b084e=JChAwZ[_0x39a1ba(0x1b6,'\x31\x32\x26\x5b')](_0x545041,_0x17ef40,_0x1ef916);_0x1b084e+=JChAwZ[_0x39a1ba(0x36e,'\x25\x28\x65\x25')](_0x1eb704,_0x307288,_0x15a38a,_0x188213);if(JChAwZ[_0x39a1ba(0x366,'\x65\x77\x6f\x5e')](_0x1b084e,0x1ba5+-0xde5+-0xb0*0x14)&&_0x4b0db0['\x69\x64']&&_0x32b660(_0x476aec['\x69\x64'])[_0x39a1ba(0xeb,'\x4e\x43\x78\x28')+'\x74\x68'](_0x14c4fc))_0x1b084e*=_0x16e9f7;const _0x1a91c1={};return _0x1a91c1[_0x39a1ba(0x2d4,'\x53\x47\x71\x51')]=_0x3da034,_0x1a91c1[_0x39a1ba(0x25a,'\x70\x68\x6f\x40')]=_0x1b084e,_0x1a91c1;}else _0x168813[_0x39a1ba(0x202,'\x58\x23\x29\x78')]('\x6d\x65\x6d\x6f\x72\x79\x5f\x67'+_0x39a1ba(0x1ec,'\x65\x77\x6f\x5e')+_0x108926[_0x39a1ba(0x24b,'\x77\x62\x37\x51')+_0x39a1ba(0x2db,'\x4f\x63\x43\x4e')][_0x39a1ba(0x35a,'\x65\x77\x6f\x5e')](_0x39a1ba(0x29d,'\x4e\x4f\x37\x62')));}return _0x2d85e8&&_0x168813[_0x39a1ba(0x33d,'\x44\x5d\x26\x26')](_0x1217f9[_0x39a1ba(0x40c,'\x59\x21\x36\x77')]),Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0xa3835d)&&_0x1217f9[_0x39a1ba(0x371,'\x4d\x36\x50\x78')](_0xa3835d,-0x1*-0x15bf+0xbb*-0x16+-0x5ad)&&_0x168813[_0x39a1ba(0x26e,'\x62\x4e\x68\x70')](_0x39a1ba(0x287,'\x44\x4d\x28\x40')+_0x39a1ba(0xf6,'\x57\x4b\x71\x38')+'\x20'+_0xa3835d['\x74\x6f\x46\x69\x78\x65\x64'](-0x99d+0x554+-0x44c*-0x1)),_0x2044a3&&_0x168813[_0x39a1ba(0x1b7,'\x4f\x63\x43\x4e')](_0x39a1ba(0x1a8,'\x6c\x57\x55\x64')+_0x39a1ba(0x24d,'\x76\x55\x42\x4f')+_0x2044a3),_0x4271c6&&_0x168813[_0x39a1ba(0x15d,'\x70\x68\x6f\x40')](_0x1217f9[_0x39a1ba(0x21d,'\x53\x34\x65\x5e')]),{'\x73\x65\x6c\x65\x63\x74\x65\x64':_0x2602b8?_0x2602b8['\x69\x64']:null,'\x72\x65\x61\x73\x6f\x6e':_0x168813,'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':Array['\x69\x73\x41\x72\x72\x61\x79'](_0x29b8cd)?_0x29b8cd[_0x39a1ba(0x206,'\x34\x5e\x51\x62')](_0x363e9e=>_0x363e9e['\x69\x64']):[],'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x61\x74\x68':_0x1217f9[_0x39a1ba(0x410,'\x58\x57\x50\x42')](_0x2044a3,_0x39a1ba(0x257,'\x57\x4b\x71\x38')),'\x6d\x65\x6d\x6f\x72\x79\x55\x73\x65\x64':!!_0x4271c6};}const _0x219534=0x1e63+-0x1b32+-0x4a*0xb,_0x1ecdaa=0x1a3f+-0x727+-0x1318+0.3;function _0x5cfc76(_0x50944e,_0x31236f){const _0x1f5053=_0x238cfb,_0x57070d={'\x4e\x4c\x48\x71\x4b':function(_0x5a447e,_0x4d59bb){return _0x5a447e(_0x4d59bb);},'\x43\x75\x55\x44\x66':function(_0xf21f8,_0x5db192){return _0xf21f8===_0x5db192;},'\x51\x4f\x50\x65\x58':function(_0x320d52,_0xd8acbe){return _0x320d52===_0xd8acbe;},'\x62\x44\x5a\x46\x4c':function(_0x1d57b8,_0x535caa){return _0x1d57b8-_0x535caa;},'\x45\x45\x58\x69\x57':function(_0x1620af,_0x3588dc){return _0x1620af+_0x3588dc;},'\x59\x69\x6b\x7a\x6b':function(_0x2def7a,_0x1220e0){return _0x2def7a===_0x1220e0;}},_0x24d99c=new Set((Array[_0x1f5053(0x20d,'\x44\x41\x31\x77')](_0x50944e[_0x1f5053(0x3c4,'\x51\x47\x29\x5b')+_0x1f5053(0x213,'\x53\x34\x65\x5e')])?_0x50944e[_0x1f5053(0x329,'\x76\x55\x42\x4f')+_0x1f5053(0x213,'\x53\x34\x65\x5e')]:[])[_0x1f5053(0x184,'\x24\x76\x53\x54')](function(_0x4744f5){const _0x10241a=_0x1f5053;return String(_0x4744f5)[_0x10241a(0x2f1,'\x34\x26\x37\x44')+_0x10241a(0xec,'\x34\x26\x37\x44')]();})),_0x5f268d=new Set((Array[_0x1f5053(0x2e1,'\x25\x6b\x73\x36')](_0x31236f[_0x1f5053(0x31a,'\x25\x28\x65\x25')+_0x1f5053(0x32a,'\x41\x31\x70\x49')])?_0x31236f[_0x1f5053(0x1c5,'\x52\x24\x4f\x6d')+_0x1f5053(0x213,'\x53\x34\x65\x5e')]:[])[_0x1f5053(0x2c7,'\x26\x70\x57\x4b')](function(_0x488316){const _0xad8dbe=_0x1f5053;return _0x57070d[_0xad8dbe(0x208,'\x31\x32\x26\x5b')](String,_0x488316)[_0xad8dbe(0x243,'\x28\x41\x57\x47')+_0xad8dbe(0x3b7,'\x36\x6d\x6b\x38')]();}));if(_0x57070d[_0x1f5053(0x2a3,'\x52\x24\x4f\x6d')](_0x24d99c[_0x1f5053(0x2d5,'\x40\x59\x4e\x66')],-0x353*0x7+0xe0b+0x93a)&&_0x57070d[_0x1f5053(0x346,'\x57\x4b\x71\x38')](_0x5f268d[_0x1f5053(0x308,'\x4e\x4f\x37\x62')],-0xa*-0x367+0x1266+-0x3d*0xdc))return 0xea*-0x25+0x1a9c+0x47*0x1a;if(_0x57070d['\x51\x4f\x50\x65\x58'](_0x24d99c[_0x1f5053(0x2de,'\x52\x5a\x46\x4a')],-0x6d1*0x1+0x2619+-0x16*0x16c)||_0x5f268d[_0x1f5053(0xe2,'\x44\x4d\x28\x40')]===0x4fd+0x155a+-0x1a57)return-0x262*0x1+0x2*-0x129a+0x2796;let _0x31fb29=0x2135+-0x11c*0x4+-0x1cc5;for(const _0x630f07 of _0x24d99c)if(_0x5f268d[_0x1f5053(0x25f,'\x34\x21\x35\x24')](_0x630f07))_0x31fb29++;const _0x59b412=_0x57070d[_0x1f5053(0x3e9,'\x25\x28\x65\x25')](_0x57070d['\x45\x45\x58\x69\x57'](_0x24d99c[_0x1f5053(0x29c,'\x53\x47\x71\x51')],_0x5f268d[_0x1f5053(0x338,'\x4f\x63\x43\x4e')]),_0x31fb29);return _0x57070d[_0x1f5053(0x123,'\x33\x79\x66\x69')](_0x59b412,0x1252+-0x2*-0x926+0x6d*-0x56)?0x718*0x2+0x1adf+-0x290f:_0x31fb29/_0x59b412;}function _0x255367({genes:_0x5039f3,signals:_0x4a5062,memoryAdvice:_0x2d028c,driftEnabled:_0x2db680,failedCapsules:_0x32f7bd,capabilityGaps:_0x4b2916,noveltyScore:_0x595026,plateauOverride:_0x4aa542}){const _0x2799f6=_0x238cfb,_0x3afdc7={'\x61\x41\x43\x6d\x64':function(_0x1fd98d,_0x187a9d){return _0x1fd98d(_0x187a9d);},'\x69\x56\x61\x48\x57':function(_0x150713,_0x176fd7){return _0x150713===_0x176fd7;},'\x67\x43\x6f\x4e\x56':_0x2799f6(0x393,'\x65\x77\x6f\x5e'),'\x61\x43\x6d\x5a\x43':_0x2799f6(0x1a4,'\x39\x40\x47\x62'),'\x46\x61\x52\x67\x57':function(_0x3ae1eb,_0x4fec52){return _0x3ae1eb>_0x4fec52;},'\x47\x47\x72\x4b\x50':function(_0x2136bc,_0x565502){return _0x2136bc!==_0x565502;},'\x4e\x6b\x56\x50\x53':'\x73\x54\x5a\x4a\x72','\x76\x71\x74\x6d\x4b':function(_0xf645bb,_0xcb5782){return _0xf645bb-_0xcb5782;},'\x43\x43\x61\x7a\x68':function(_0x25f557){return _0x25f557();},'\x6a\x77\x47\x6d\x4d':function(_0xddc455,_0x5a119a){return _0xddc455<_0x5a119a;},'\x76\x66\x72\x4f\x4e':function(_0x52c08a,_0x27db09){return _0x52c08a<_0x27db09;},'\x52\x78\x70\x4c\x72':function(_0x448096,_0x38c045){return _0x448096>=_0x38c045;}},_0x3a0461={};_0x3a0461[_0x2799f6(0x23c,'\x4f\x63\x43\x4e')]=_0x5039f3,_0x3a0461[_0x2799f6(0xf3,'\x25\x28\x65\x25')]=[],_0x3a0461[_0x2799f6(0x317,'\x62\x4e\x68\x70')]=_0x4a5062,_0x3a0461[_0x2799f6(0x39b,'\x4f\x67\x4a\x49')+_0x2799f6(0x245,'\x41\x31\x70\x49')]=_0x2d028c,_0x3a0461[_0x2799f6(0xee,'\x4e\x4f\x37\x62')+_0x2799f6(0x344,'\x4f\x67\x4a\x49')]=_0x2db680,_0x3a0461[_0x2799f6(0x198,'\x65\x45\x5b\x45')+_0x2799f6(0x21a,'\x65\x45\x5b\x45')]=_0x32f7bd,_0x3a0461[_0x2799f6(0x3bf,'\x34\x5e\x51\x62')+_0x2799f6(0x1bf,'\x4d\x36\x50\x78')]=_0x4b2916,_0x3a0461[_0x2799f6(0x14e,'\x62\x4e\x68\x70')+_0x2799f6(0x286,'\x4d\x36\x50\x78')]=_0x595026,_0x3a0461[_0x2799f6(0x3a0,'\x66\x34\x55\x39')+_0x2799f6(0x2b2,'\x59\x21\x36\x77')]=_0x4aa542;const _0x2cf346=_0x3afdc7[_0x2799f6(0x273,'\x34\x5e\x51\x62')](_0x32dc8e,_0x3a0461);if(!_0x2cf346[_0x2799f6(0x18c,'\x34\x5e\x51\x62')+_0x2799f6(0x330,'\x52\x5a\x46\x4a')])return{'\x67\x65\x6e\x65\x73':[],'\x70\x72\x69\x6d\x61\x72\x79':_0x2cf346};const _0x5a4da4=Array[_0x2799f6(0xfe,'\x66\x34\x55\x39')](_0x5039f3)?_0x5039f3:[],_0xb7e111=_0x2d028c&&_0x2d028c['\x62\x61\x6e\x6e\x65\x64\x47\x65'+_0x2799f6(0x16c,'\x70\x68\x6f\x40')]instanceof Set?_0x2d028c[_0x2799f6(0x1a6,'\x66\x34\x55\x39')+_0x2799f6(0x193,'\x32\x70\x26\x75')]:new Set(),_0x5f4758=_0x3afdc7[_0x2799f6(0x218,'\x41\x31\x70\x49')](_0x595791),_0x1a8b02=_0x5a4da4[_0x2799f6(0x32e,'\x34\x5e\x51\x62')](function(_0x162c19){const _0x34dd4e=_0x2799f6;if(_0x3afdc7[_0x34dd4e(0x1e4,'\x41\x31\x70\x49')](_0x34dd4e(0x2d2,'\x58\x23\x29\x78'),_0x3afdc7[_0x34dd4e(0x345,'\x44\x4d\x28\x40')])){const _0x314a58=('\x31\x7c\x32\x7c\x33\x7c\x34\x7c'+'\x30')[_0x34dd4e(0x1a2,'\x58\x23\x29\x78')]('\x7c');let _0x375031=-0x1f0c+-0x5cf*0x2+-0x2*-0x1555;while(!![]){switch(_0x314a58[_0x375031++]){case'\x30':return!![];case'\x31':if(!_0x162c19||_0x162c19[_0x34dd4e(0x392,'\x39\x40\x47\x62')]!==_0x3afdc7[_0x34dd4e(0x1d0,'\x69\x4f\x68\x62')]||!_0x162c19['\x69\x64'])return![];continue;case'\x32':if(_0x162c19['\x69\x64']===_0x2cf346[_0x34dd4e(0x18c,'\x34\x5e\x51\x62')+_0x34dd4e(0x20f,'\x59\x21\x36\x77')]['\x69\x64'])return![];continue;case'\x33':if(_0xb7e111[_0x34dd4e(0x100,'\x72\x69\x40\x38')](_0x162c19['\x69\x64']))return![];continue;case'\x34':if(_0x40da6f(_0x162c19,_0x5f4758))return![];continue;}break;}}else{if(_0x4c41a6[_0x34dd4e(0x32d,'\x6c\x57\x55\x64')](fsRLXX[_0x34dd4e(0x3f2,'\x64\x47\x55\x42')](_0x3e63a2,_0x3bda92[_0x2efcde])[_0x34dd4e(0x411,'\x70\x68\x6f\x40')+_0x34dd4e(0x395,'\x39\x40\x47\x62')]()))_0x24d1b9++;}})[_0x2799f6(0x3ec,'\x65\x77\x6f\x5e')](function(_0x55d23e){const _0x2fbbd2=_0x2799f6;let _0x4314d0=_0x19379a(_0x55d23e,_0x4a5062);_0x4314d0+=_0x18cd5d(_0x55d23e,_0x4a5062,_0x5f4758);const _0x2ac778={};return _0x2ac778['\x67\x65\x6e\x65']=_0x55d23e,_0x2ac778[_0x2fbbd2(0x3d1,'\x25\x28\x65\x25')]=_0x4314d0,_0x2ac778;})[_0x2799f6(0x3d2,'\x77\x62\x37\x51')](function(_0x333c8f){const _0x58d096=_0x2799f6;return _0x3afdc7[_0x58d096(0x380,'\x52\x5a\x46\x4a')](_0x58d096(0x217,'\x58\x23\x29\x78'),_0x3afdc7['\x4e\x6b\x56\x50\x53'])?_0x3afdc7[_0x58d096(0x2a1,'\x52\x24\x4f\x6d')](_0x333c8f[_0x58d096(0x340,'\x51\x47\x29\x5b')],-0x2481+-0x170f+0x3b90):_0x3afdc7[_0x58d096(0x1f9,'\x44\x4d\x28\x40')](_0x69cb11[_0x58d096(0x22d,'\x34\x26\x37\x44')],-0x1fa*0x8+-0x1e2f*0x1+-0x19*-0x1d7);})[_0x2799f6(0x235,'\x57\x4b\x71\x38')](function(_0x3997b1,_0x59046f){const _0x373640=_0x2799f6;return _0x3afdc7[_0x373640(0x299,'\x73\x23\x29\x77')](_0x59046f['\x73\x63\x6f\x72\x65'],_0x3997b1[_0x373640(0x25a,'\x70\x68\x6f\x40')]);}),_0x8d2c37=[_0x2cf346[_0x2799f6(0x194,'\x6c\x57\x55\x64')+_0x2799f6(0x2b8,'\x65\x45\x5b\x45')]];for(let _0x1e7b84=0xba*-0x1f+-0x4*0x4ac+0x2936;_0x3afdc7[_0x2799f6(0x25b,'\x69\x4f\x68\x62')](_0x1e7b84,_0x1a8b02[_0x2799f6(0x400,'\x33\x79\x66\x69')])&&_0x3afdc7[_0x2799f6(0x378,'\x30\x70\x77\x6e')](_0x8d2c37['\x6c\x65\x6e\x67\x74\x68'],_0x219534);_0x1e7b84++){const _0x3d62d9=_0x1a8b02[_0x1e7b84][_0x2799f6(0x161,'\x41\x31\x70\x49')];let _0x355f99=![];for(let _0x478b1a=0x1ce0+0x775*-0x1+-0x156b;_0x478b1a<_0x8d2c37[_0x2799f6(0x1e5,'\x44\x4d\x28\x40')];_0x478b1a++){if(_0x3afdc7[_0x2799f6(0x16d,'\x44\x5d\x26\x26')](_0x5cfc76(_0x3d62d9,_0x8d2c37[_0x478b1a]),_0x1ecdaa)){_0x355f99=!![];break;}}if(!_0x355f99)_0x8d2c37[_0x2799f6(0xe4,'\x34\x21\x35\x24')](_0x3d62d9);}const _0x33f3a8={};return _0x33f3a8[_0x2799f6(0x398,'\x57\x4b\x71\x38')]=_0x8d2c37,_0x33f3a8[_0x2799f6(0x309,'\x39\x40\x47\x62')]=_0x2cf346,_0x33f3a8;}const _0x52e92b={};_0x52e92b[_0x238cfb(0x3c9,'\x4d\x36\x50\x78')+_0x238cfb(0x17e,'\x70\x68\x6f\x40')+_0x238cfb(0x350,'\x73\x23\x29\x77')]=_0x32dc8e,_0x52e92b['\x73\x65\x6c\x65\x63\x74\x47\x65'+'\x6e\x65']=_0x4689ea,_0x52e92b[_0x238cfb(0x29e,'\x32\x70\x26\x75')+_0x238cfb(0x3a2,'\x58\x23\x29\x78')]=_0x39fcca,_0x52e92b[_0x238cfb(0x1b5,'\x26\x70\x57\x4b')+_0x238cfb(0x177,'\x44\x5d\x26\x26')+_0x238cfb(0x1ab,'\x77\x62\x37\x51')]=_0x312005,_0x52e92b[_0x238cfb(0x1ad,'\x29\x42\x53\x4c')+_0x238cfb(0xe3,'\x25\x6b\x73\x36')+_0x238cfb(0x1c9,'\x76\x55\x42\x4f')]=_0x42f73e,_0x52e92b['\x73\x63\x6f\x72\x65\x47\x65\x6e'+_0x238cfb(0x222,'\x26\x70\x57\x4b')+'\x63']=_0x1d8197,_0x52e92b[_0x238cfb(0x2ca,'\x34\x5e\x51\x62')+_0x238cfb(0x22e,'\x52\x24\x4f\x6d')]=_0x30c8e2,_0x52e92b[_0x238cfb(0x370,'\x44\x5d\x26\x26')]=_0x5ebd06,_0x52e92b['\x63\x6f\x6d\x70\x75\x74\x65\x44'+_0x238cfb(0x399,'\x40\x59\x4e\x66')+'\x6e\x73\x69\x74\x79']=_0x3b62d9,_0x52e92b[_0x238cfb(0x336,'\x24\x76\x53\x54')+_0x238cfb(0x2cd,'\x52\x5a\x46\x4a')]=_0x32780e,_0x52e92b['\x69\x73\x45\x70\x69\x67\x65\x6e'+'\x65\x74\x69\x63\x61\x6c\x6c\x79'+_0x238cfb(0x1d6,'\x65\x77\x6f\x5e')+'\x65\x64']=_0x40da6f,_0x52e92b[_0x238cfb(0x168,'\x24\x76\x53\x54')+_0x238cfb(0x270,'\x66\x34\x55\x39')+_0x238cfb(0x118,'\x31\x32\x26\x5b')]=_0x255367,_0x52e92b['\x49\x4e\x50\x4c\x41\x43\x45\x5f'+_0x238cfb(0x379,'\x39\x40\x47\x62')+'\x58\x5f\x46\x49\x4c\x45\x53']=_0x3a3e8a,_0x52e92b['\x49\x4e\x50\x4c\x41\x43\x45\x5f'+_0x238cfb(0x29f,'\x31\x32\x26\x5b')+_0x238cfb(0x28f,'\x52\x24\x4f\x6d')]=_0x30b135,module[_0x238cfb(0x21b,'\x52\x5a\x46\x4a')]=_0x52e92b;
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
+