@evomap/evolver 1.89.11 → 1.89.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) 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 +1367 -0
  9. package/README.md +90 -537
  10. package/README.public.md +578 -0
  11. package/SECURITY.md +108 -0
  12. package/assets/gep/events.jsonl +3 -0
  13. package/examples/atp-consumer-quickstart.md +100 -0
  14. package/examples/hello-world.md +38 -0
  15. package/package.json +6 -18
  16. package/proxy-package.json +39 -0
  17. package/public.manifest.json +145 -0
  18. package/src/evolve/guards.js +721 -1
  19. package/src/evolve/pipeline/collect.js +1283 -1
  20. package/src/evolve/pipeline/dispatch.js +421 -1
  21. package/src/evolve/pipeline/enrich.js +440 -1
  22. package/src/evolve/pipeline/hub.js +319 -1
  23. package/src/evolve/pipeline/select.js +274 -1
  24. package/src/evolve/pipeline/signals.js +206 -1
  25. package/src/evolve/utils.js +264 -1
  26. package/src/evolve.js +350 -1
  27. package/src/gep/a2aProtocol.js +4463 -1
  28. package/src/gep/antiAbuseTelemetry.js +233 -1
  29. package/src/gep/autoDistillConv.js +205 -1
  30. package/src/gep/autoDistillLlm.js +315 -1
  31. package/src/gep/candidateEval.js +92 -1
  32. package/src/gep/candidates.js +198 -1
  33. package/src/gep/contentHash.js +30 -1
  34. package/src/gep/conversationDistiller.js +270 -0
  35. package/src/gep/conversationSniffer.js +266 -1
  36. package/src/gep/crypto.js +89 -1
  37. package/src/gep/curriculum.js +163 -1
  38. package/src/gep/deviceId.js +218 -1
  39. package/src/gep/envFingerprint.js +118 -1
  40. package/src/gep/epigenetics.js +31 -1
  41. package/src/gep/execBridge.js +712 -1
  42. package/src/gep/explore.js +289 -1
  43. package/src/gep/hash.js +15 -1
  44. package/src/gep/hubFetch.js +608 -1
  45. package/src/gep/hubReview.js +207 -1
  46. package/src/gep/hubSearch.js +526 -1
  47. package/src/gep/hubVerify.js +306 -1
  48. package/src/gep/learningSignals.js +89 -1
  49. package/src/gep/memoryGraph.js +1449 -1
  50. package/src/gep/memoryGraphAdapter.js +203 -1
  51. package/src/gep/mutation.js +203 -1
  52. package/src/gep/narrativeMemory.js +108 -1
  53. package/src/gep/openPRRegistry.js +205 -1
  54. package/src/gep/personality.js +423 -1
  55. package/src/gep/policyCheck.js +599 -1
  56. package/src/gep/prompt.js +836 -1
  57. package/src/gep/questionGenerator.js +103 -0
  58. package/src/gep/recallInject.js +409 -1
  59. package/src/gep/recallVerifier.js +318 -1
  60. package/src/gep/reflection.js +177 -1
  61. package/src/gep/savingsCore.js +112 -1
  62. package/src/gep/selector.js +602 -1
  63. package/src/gep/skillDistiller.js +1294 -1
  64. package/src/gep/solidify.js +1699 -1
  65. package/src/gep/strategy.js +136 -1
  66. package/src/gep/tokenSavings.js +95 -1
  67. package/src/gep/workspaceKeychain.js +174 -1
  68. package/src/proxy/extensions/traceControl.js +109 -1
  69. package/src/proxy/inject.js +52 -1
  70. package/src/proxy/lifecycle/manager.js +108 -7
  71. package/src/proxy/server/routes.js +31 -0
  72. package/src/proxy/server/settings.js +6 -2
  73. package/src/proxy/sync/engine.js +31 -15
  74. package/src/proxy/sync/inbound.js +87 -9
  75. package/src/proxy/sync/outbound.js +57 -4
  76. package/src/proxy/trace/extractor.js +1403 -1
  77. package/src/proxy/trace/usage.js +105 -1
  78. package/CONTRIBUTING.md +0 -19
  79. package/assets/cover.png +0 -0
  80. package/scripts/a2a_export.js +0 -63
  81. package/scripts/a2a_ingest.js +0 -79
  82. package/scripts/a2a_promote.js +0 -118
  83. package/scripts/analyze_by_skill.js +0 -121
  84. package/scripts/build_binaries.js +0 -479
  85. package/scripts/check-changelog.js +0 -166
  86. package/scripts/extract_log.js +0 -85
  87. package/scripts/generate_history.js +0 -75
  88. package/scripts/gep_append_event.js +0 -96
  89. package/scripts/gep_personality_report.js +0 -234
  90. package/scripts/human_report.js +0 -147
  91. package/scripts/recall-verify-report.js +0 -234
  92. package/scripts/recover_loop.js +0 -61
  93. package/scripts/refresh_stars_badge.js +0 -168
  94. package/scripts/seed-merchants.js +0 -91
  95. package/scripts/suggest_version.js +0 -89
  96. package/scripts/validate-modules.js +0 -38
  97. package/scripts/validate-suite.js +0 -78
  98. package/skills/index.json +0 -14
  99. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  100. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,602 @@
1
- const _0x177a91=_0x5b4c;(function(_0x5b72db,_0x3273d4){const _0x58b46c=_0x5b4c,_0x2b1447=_0x5b72db();while(!![]){try{const _0x5b1ca7=parseInt(_0x58b46c(0x22d,'\x76\x51\x23\x68'))/(-0x22e+0x1ca4+-0x1a75)*(parseInt(_0x58b46c(0x39e,'\x35\x37\x78\x74'))/(-0x1a5e+-0x1a5c+0x546*0xa))+-parseInt(_0x58b46c(0x453,'\x55\x6b\x56\x76'))/(0x470+-0x32*0x56+0x1*0xc5f)+-parseInt(_0x58b46c(0x31c,'\x52\x54\x2a\x6e'))/(0x4*0x457+-0xc64+-0x4f4)*(-parseInt(_0x58b46c(0x3c8,'\x72\x4c\x34\x72'))/(0x8fb+0x2ae+-0xba4))+parseInt(_0x58b46c(0x31e,'\x41\x30\x2a\x70'))/(-0xdbe+-0x2a1+0x577*0x3)+parseInt(_0x58b46c(0x2bd,'\x6b\x6c\x74\x7a'))/(-0x1ff4+-0x213c+0x13b*0x35)+-parseInt(_0x58b46c(0x345,'\x69\x43\x7a\x4e'))/(0xd17*0x1+0x160c+-0x231b)*(parseInt(_0x58b46c(0x320,'\x55\x6b\x56\x76'))/(0x13*-0xf4+0x5bf+-0x633*-0x2))+-parseInt(_0x58b46c(0x1b8,'\x7a\x74\x54\x6c'))/(-0x4d*0x25+-0x9*0x6b+-0xe*-0x111);if(_0x5b1ca7===_0x3273d4)break;else _0x2b1447['push'](_0x2b1447['shift']());}catch(_0x360d1a){_0x2b1447['push'](_0x2b1447['shift']());}}}(_0x5cb2,-0x1177bb+0x12817b+0xac99b));const _0x1e4646=(function(){let _0xb7566c=!![];return function(_0x386132,_0x51b1c5){const _0x4cca4a=_0xb7566c?function(){const _0x106696=_0x5b4c;if(_0x51b1c5){const _0x3c60b6=_0x51b1c5[_0x106696(0x3c2,'\x5e\x47\x53\x39')](_0x386132,arguments);return _0x51b1c5=null,_0x3c60b6;}}:function(){};return _0xb7566c=![],_0x4cca4a;};}()),_0x52c5f0=_0x1e4646(this,function(){const _0x10ca9a=_0x5b4c,_0x58f4a2={};_0x58f4a2[_0x10ca9a(0x168,'\x44\x31\x6b\x21')]=_0x10ca9a(0x28b,'\x35\x37\x78\x74')+'\x2b\x29\x2b\x24';const _0x19c287=_0x58f4a2;return _0x52c5f0[_0x10ca9a(0x3e4,'\x24\x5a\x58\x36')]()[_0x10ca9a(0x1bb,'\x5e\x28\x4f\x45')](_0x19c287[_0x10ca9a(0x3d6,'\x56\x39\x4c\x62')])[_0x10ca9a(0x1a1,'\x4e\x21\x42\x53')]()[_0x10ca9a(0x210,'\x5e\x5b\x45\x39')+'\x74\x6f\x72'](_0x52c5f0)[_0x10ca9a(0x2e0,'\x6b\x5a\x21\x5b')](_0x19c287['\x51\x6b\x71\x63\x50']);});_0x52c5f0();const {scoreTagOverlap:_0x5f3632,expandSignals:_0x249640}=require(_0x177a91(0x3d3,'\x5b\x77\x4d\x28')+_0x177a91(0x43c,'\x40\x5a\x65\x54')+'\x73'),{captureEnvFingerprint:_0x5d64b1}=require(_0x177a91(0x43d,'\x55\x6b\x56\x76')+'\x67\x65\x72\x70\x72\x69\x6e\x74'),{getEpigeneticBoost:_0x4ced5d,isEpigeneticallySuppressed:_0x52c3da}=require(_0x177a91(0x28a,'\x61\x33\x2a\x23')+_0x177a91(0x3f9,'\x38\x53\x6b\x73')),_0xa0f148=parseFloat(process.env.SEMANTIC_MATCH_WEIGHT||_0x177a91(0x246,'\x6a\x5b\x61\x23'))||-0x26ba+0x11d2*0x1+0x14e8+0.4,_0x5c1364=new Set(['\x74\x68\x65',_0x177a91(0x442,'\x72\x4c\x34\x72'),_0x177a91(0x1ff,'\x25\x59\x77\x62'),_0x177a91(0x448,'\x73\x4c\x34\x69'),_0x177a91(0x176,'\x25\x51\x4f\x34'),_0x177a91(0x443,'\x5a\x40\x43\x4f'),'\x74\x68\x69\x73',_0x177a91(0x3a5,'\x35\x37\x78\x74'),'\x77\x68\x65\x6e',_0x177a91(0x2f3,'\x62\x45\x68\x4c'),_0x177a91(0x165,'\x39\x51\x33\x55'),_0x177a91(0x364,'\x48\x51\x4b\x70'),_0x177a91(0x23a,'\x70\x41\x62\x30'),_0x177a91(0x18d,'\x39\x51\x33\x55'),_0x177a91(0x471,'\x38\x53\x6b\x73'),_0x177a91(0x125,'\x56\x39\x4c\x62'),_0x177a91(0x206,'\x72\x4c\x34\x72'),_0x177a91(0x3d5,'\x35\x37\x78\x74'),_0x177a91(0x43a,'\x54\x32\x41\x2a'),_0x177a91(0x436,'\x6b\x76\x40\x39'),_0x177a91(0x323,'\x40\x5a\x65\x54'),_0x177a91(0x142,'\x41\x75\x6b\x51'),'\x61\x6c\x73\x6f','\x73\x68\x6f\x75\x6c\x64','\x77\x6f\x75\x6c\x64',_0x177a91(0x37e,'\x4e\x77\x6c\x5e')]);function _0x2f808d(_0x3826c5){const _0x195909=_0x177a91,_0x608eda={'\x66\x41\x74\x4d\x69':function(_0x3f0106,_0x1bff70){return _0x3f0106-_0x1bff70;},'\x4c\x65\x68\x4e\x78':function(_0x447986,_0x2abbbd){return _0x447986===_0x2abbbd;},'\x6b\x4b\x6e\x43\x66':_0x195909(0x1c7,'\x25\x51\x50\x72'),'\x78\x71\x6b\x72\x43':_0x195909(0x12e,'\x46\x23\x55\x7a'),'\x76\x6a\x5a\x53\x45':function(_0x1084e7,_0x192895){return _0x1084e7(_0x192895);},'\x6b\x6f\x78\x53\x75':function(_0x5ec8d1,_0x2ed601){return _0x5ec8d1||_0x2ed601;}};return _0x608eda[_0x195909(0x417,'\x62\x45\x68\x4c')](String,_0x608eda[_0x195909(0x217,'\x31\x26\x70\x4a')](_0x3826c5,''))[_0x195909(0x36c,'\x62\x58\x5b\x6a')+_0x195909(0x2e6,'\x4d\x68\x40\x4e')]()[_0x195909(0x3f0,'\x56\x39\x4c\x62')](/[^\p{L}\p{N}_\-]+/gu,'\x20')[_0x195909(0x2df,'\x4b\x31\x36\x39')](/\s+/)[_0x195909(0x388,'\x4b\x31\x36\x39')](function(_0x3ca447){const _0x5359f8=_0x195909,_0xebf1c1={'\x77\x42\x46\x64\x4a':function(_0x20c47f,_0x1b7a8b){const _0x49c38c=_0x5b4c;return _0x608eda[_0x49c38c(0x1e5,'\x5e\x5b\x45\x39')](_0x20c47f,_0x1b7a8b);},'\x5a\x43\x59\x72\x64':function(_0x4323d9,_0x4f727d){return _0x4323d9-_0x4f727d;}};return _0x608eda[_0x5359f8(0x221,'\x54\x32\x41\x2a')](_0x608eda[_0x5359f8(0x1c3,'\x6a\x5b\x61\x23')],_0x608eda[_0x5359f8(0x43f,'\x6a\x5b\x61\x23')])?_0xebf1c1[_0x5359f8(0x40e,'\x55\x6b\x56\x76')](_0x3196d2[_0x5359f8(0x1ef,'\x41\x75\x6b\x51')],_0x2b5bc9[_0x5359f8(0x3ca,'\x48\x51\x4b\x70')])||_0xebf1c1['\x5a\x43\x59\x72\x64'](_0x55b5f6[_0x5359f8(0x32c,'\x55\x6b\x56\x76')+'\x65'],_0x21ef2c[_0x5359f8(0x1de,'\x5a\x40\x43\x4f')+'\x65']):_0x3ca447[_0x5359f8(0x260,'\x56\x39\x4c\x62')]>=0x223e+-0x207c+-0x2*0xe0&&!_0x5c1364[_0x5359f8(0x394,'\x46\x23\x55\x7a')](_0x3ca447);});}function _0x59f25c(_0x1a25e5){const _0xf37382=_0x177a91,_0x54898a={};_0x54898a[_0xf37382(0x332,'\x52\x54\x2a\x6e')]=function(_0x5e469e,_0x3fcb3b){return _0x5e469e===_0x3fcb3b;},_0x54898a[_0xf37382(0x3b6,'\x4d\x68\x40\x4e')]=_0xf37382(0x32b,'\x4e\x25\x30\x30'),_0x54898a[_0xf37382(0x211,'\x6a\x5b\x61\x23')]=function(_0x3b7745,_0x1f0b72){return _0x3b7745<_0x1f0b72;},_0x54898a[_0xf37382(0x13b,'\x46\x23\x55\x7a')]=_0xf37382(0x16b,'\x25\x51\x4f\x34'),_0x54898a[_0xf37382(0x1a5,'\x24\x5a\x58\x36')]=_0xf37382(0x186,'\x64\x69\x48\x54'),_0x54898a[_0xf37382(0x3eb,'\x30\x37\x24\x71')]=function(_0x23242d,_0xd9d5df){return _0x23242d+_0xd9d5df;};const _0x7b0927=_0x54898a;var _0x94e83c={};for(var _0x22d8af=0x62f*-0x5+0x8da*0x2+0xd37;_0x7b0927[_0xf37382(0x1f6,'\x5a\x40\x43\x4f')](_0x22d8af,_0x1a25e5[_0xf37382(0x29f,'\x25\x59\x77\x62')]);_0x22d8af++){_0x7b0927[_0xf37382(0x473,'\x5e\x47\x53\x39')]!==_0x7b0927[_0xf37382(0x390,'\x69\x43\x7a\x4e')]?_0x94e83c[_0x1a25e5[_0x22d8af]]=_0x7b0927[_0xf37382(0x199,'\x56\x39\x4c\x62')](_0x94e83c[_0x1a25e5[_0x22d8af]]||0x15*-0xa7+-0x78*0x33+-0x3*-0xc89,-0x2*-0x8c3+0x1f8d+0x16*-0x23b):_0xe6dd8c=_0x3fac41[_0xf37382(0x25b,'\x67\x2a\x23\x5d')](_0x1a2ec8,_0x7b0927[_0xf37382(0x23b,'\x5e\x5b\x45\x39')](_0x5f4141[_0xf37382(0x441,'\x25\x51\x50\x72')],_0x7b0927['\x54\x64\x41\x65\x49'])?-0xf1c*-0x2+-0x1a84*0x1+-0x3b3:-0x1f76+0x1*0x221f+-0x2a9+0.7);}return _0x94e83c;}function _0x2aee4b(_0x2d7e81,_0x421394){const _0x45efeb=_0x177a91,_0x3926f5={};_0x3926f5[_0x45efeb(0x28e,'\x69\x43\x7a\x4e')]=function(_0x580a0b,_0x5f4a9f){return _0x580a0b!==_0x5f4a9f;},_0x3926f5['\x53\x6f\x44\x52\x57']=_0x45efeb(0x1aa,'\x38\x53\x6b\x73'),_0x3926f5[_0x45efeb(0x1e9,'\x4d\x68\x40\x4e')]=_0x45efeb(0x18f,'\x40\x5a\x65\x54')+'\x31',_0x3926f5[_0x45efeb(0x1f9,'\x25\x51\x50\x72')]=function(_0xa4f3c1,_0x22ac31){return _0xa4f3c1*_0x22ac31;},_0x3926f5[_0x45efeb(0x293,'\x38\x53\x6b\x73')]=function(_0x297e9b,_0x112b51){return _0x297e9b*_0x112b51;},_0x3926f5[_0x45efeb(0x351,'\x6b\x76\x40\x39')]=function(_0x32a41e,_0x2cfc10){return _0x32a41e===_0x2cfc10;},_0x3926f5[_0x45efeb(0x255,'\x69\x43\x7a\x4e')]=function(_0x1de108,_0x41051b){return _0x1de108===_0x41051b;},_0x3926f5[_0x45efeb(0x350,'\x6a\x5b\x61\x23')]=function(_0x3875e1,_0x26d2b5){return _0x3875e1/_0x26d2b5;};const _0x54206f=_0x3926f5;var _0x3768e7=new Set(Object[_0x45efeb(0x2ee,'\x41\x30\x2a\x70')](_0x2d7e81)[_0x45efeb(0x214,'\x70\x41\x62\x30')](Object['\x6b\x65\x79\x73'](_0x421394))),_0x1c4e72=-0xa48*-0x1+0xb56+0x159e*-0x1,_0x4d6dbc=0x66d+0x1*-0x17a8+0xb*0x191,_0x52cfb2=0xf42+0x2552+-0xd25*0x4;_0x3768e7[_0x45efeb(0x463,'\x7a\x74\x54\x6c')](function(_0x4d75af){const _0x5805ff=_0x45efeb;if(_0x54206f[_0x5805ff(0x25c,'\x5e\x47\x53\x39')](_0x54206f[_0x5805ff(0x47a,'\x38\x53\x6b\x73')],_0x5805ff(0x2dc,'\x70\x41\x62\x30'))){const _0x5f549e=_0x54206f[_0x5805ff(0x1ab,'\x72\x4c\x34\x72')][_0x5805ff(0x248,'\x4d\x68\x40\x4e')]('\x7c');let _0x29a91b=-0x26cf+-0x4+0x26d3;while(!![]){switch(_0x5f549e[_0x29a91b++]){case'\x30':var _0x3ba856=_0x2d7e81[_0x4d75af]||-0xd8+0x1d*-0xac+0x1454;continue;case'\x31':_0x52cfb2+=_0x54206f[_0x5805ff(0x202,'\x5e\x28\x4f\x45')](_0x2b8415,_0x2b8415);continue;case'\x32':var _0x2b8415=_0x421394[_0x4d75af]||0x2419*0x1+-0x3*-0x71d+-0x3970;continue;case'\x33':_0x4d6dbc+=_0x3ba856*_0x3ba856;continue;case'\x34':_0x1c4e72+=_0x54206f[_0x5805ff(0x1d3,'\x5a\x40\x43\x4f')](_0x3ba856,_0x2b8415);continue;}break;}}else{const _0x13ae54={};return _0x13ae54[_0x5805ff(0x280,'\x29\x23\x5d\x56')]=_0x9e9008,_0x13ae54[_0x5805ff(0x3db,'\x52\x54\x2a\x6e')+_0x5805ff(0x40f,'\x48\x51\x4b\x70')]=[],_0x13ae54[_0x5805ff(0x17d,'\x4e\x77\x6c\x5e')+_0x5805ff(0x16e,'\x7a\x74\x54\x6c')]=_0x14d5ba,_0x13ae54['\x64\x72\x69\x66\x74\x4d\x6f\x64'+'\x65']='\x64\x69\x73\x74\x69\x6c\x6c\x65'+_0x5805ff(0x2a1,'\x52\x73\x66\x45')+'\x63\x6b',_0x13ae54;}});if(_0x54206f[_0x45efeb(0x17b,'\x54\x32\x41\x2a')](_0x4d6dbc,0x1*-0x1436+-0xcaa+0x20e0)||_0x54206f[_0x45efeb(0x437,'\x61\x33\x2a\x23')](_0x52cfb2,0x3*0x92+0x3*-0x71+-0x63))return-0x259e+0x1*0x158f+-0x100f*-0x1;return _0x54206f[_0x45efeb(0x153,'\x31\x26\x70\x4a')](_0x1c4e72,_0x54206f[_0x45efeb(0x3e1,'\x6a\x5b\x61\x23')](Math[_0x45efeb(0x175,'\x69\x43\x7a\x4e')](_0x4d6dbc),Math[_0x45efeb(0x244,'\x29\x23\x5d\x56')](_0x52cfb2)));}function _0x2e3895(_0x45ce1e,_0x5e8d1a){const _0x546ca1=_0x177a91,_0x1342ad={'\x72\x42\x44\x62\x79':function(_0x188338,_0x537121){return _0x188338(_0x537121);},'\x5a\x45\x53\x50\x46':function(_0x5ab649,_0x24480a){return _0x5ab649!==_0x24480a;},'\x70\x63\x76\x46\x4c':_0x546ca1(0x177,'\x5e\x47\x53\x39'),'\x63\x4a\x49\x6d\x64':function(_0x4f1696,_0x27d73a){return _0x4f1696(_0x27d73a);},'\x56\x6a\x54\x42\x52':function(_0x416b24,_0xb6834d){return _0x416b24(_0xb6834d);},'\x5a\x41\x43\x7a\x57':function(_0xc2308f,_0x359c6b){return _0xc2308f||_0x359c6b;},'\x6e\x68\x48\x47\x7a':function(_0x1e83c9,_0x1d3990){return _0x1e83c9===_0x1d3990;},'\x41\x58\x62\x55\x70':function(_0x5aa786,_0x322e48){return _0x5aa786===_0x322e48;}};if(_0x1342ad['\x5a\x41\x43\x7a\x57'](!_0x45ce1e,!_0x5e8d1a)||_0x1342ad[_0x546ca1(0x2a0,'\x56\x39\x4c\x62')](_0x5e8d1a[_0x546ca1(0x3a3,'\x30\x37\x24\x71')],0x218*-0x8+0x58d+0xb33))return 0x104a+0x2541+-0x358b;var _0x46446c=[];_0x5e8d1a[_0x546ca1(0x439,'\x72\x5e\x70\x39')](function(_0x2a98e4){const _0x1c58da=_0x546ca1;_0x1342ad[_0x1c58da(0x2de,'\x55\x6b\x56\x76')](_0x1342ad[_0x1c58da(0x2c6,'\x5e\x28\x4f\x45')],_0x1342ad['\x70\x63\x76\x46\x4c'])?_0x63de2f=_0x5b8d59['\x63\x6f\x6e\x63\x61\x74'](_0x1342ad[_0x1c58da(0x2b4,'\x7a\x74\x54\x6c')](_0x323ec7,_0x580424)):_0x46446c=_0x46446c[_0x1c58da(0x1e8,'\x52\x54\x2a\x6e')](_0x1342ad[_0x1c58da(0x348,'\x67\x2a\x23\x5d')](_0x2f808d,_0x2a98e4));});if(_0x1342ad[_0x546ca1(0x2c1,'\x25\x59\x77\x62')](_0x46446c[_0x546ca1(0x14c,'\x54\x32\x41\x2a')],-0x1e2*-0x6+0x1*-0x1ba7+0x105b))return-0x20f*-0x11+0x196*0x17+-0x4779;var _0x3e6071=[];Array[_0x546ca1(0x2e2,'\x46\x23\x55\x7a')](_0x45ce1e[_0x546ca1(0x43b,'\x5e\x28\x4f\x45')+'\x6d\x61\x74\x63\x68'])&&_0x45ce1e[_0x546ca1(0x396,'\x7a\x74\x54\x6c')+_0x546ca1(0x30c,'\x56\x39\x4c\x62')]['\x66\x6f\x72\x45\x61\x63\x68'](function(_0x28aef2){const _0x3c8c1a=_0x546ca1;_0x3e6071=_0x3e6071[_0x3c8c1a(0x378,'\x39\x51\x33\x55')](_0x1342ad[_0x3c8c1a(0x207,'\x29\x23\x5d\x56')](_0x2f808d,_0x28aef2));});if(_0x45ce1e[_0x546ca1(0x1c2,'\x4e\x66\x4c\x25')])_0x3e6071=_0x3e6071[_0x546ca1(0x3aa,'\x4b\x31\x36\x39')](_0x1342ad[_0x546ca1(0x218,'\x39\x51\x33\x55')](_0x2f808d,_0x45ce1e[_0x546ca1(0x1b9,'\x5b\x77\x4d\x28')]));if(_0x45ce1e['\x69\x64'])_0x3e6071=_0x3e6071[_0x546ca1(0x384,'\x5b\x77\x4d\x28')](_0x1342ad[_0x546ca1(0x3f5,'\x30\x37\x24\x71')](_0x2f808d,_0x45ce1e['\x69\x64']));if(_0x1342ad[_0x546ca1(0x1d5,'\x46\x23\x55\x7a')](_0x3e6071[_0x546ca1(0x2b2,'\x72\x5e\x70\x39')],-0x956+0x103*0x3+0x64d))return-0x108+-0xb8+0x1c0;var _0x444504=_0x59f25c(_0x46446c),_0x595a78=_0x1342ad['\x72\x42\x44\x62\x79'](_0x59f25c,_0x3e6071);return _0x2aee4b(_0x444504,_0x595a78);}function _0x5cb2(){const _0x5d36df=['\x57\x50\x70\x63\x50\x4c\x52\x63\x49\x53\x6b\x61\x57\x52\x57\x73\x68\x71','\x57\x37\x68\x63\x56\x76\x48\x76','\x57\x52\x76\x66\x57\x4f\x2f\x63\x4a\x38\x6f\x76','\x7a\x48\x43\x5a\x57\x36\x4a\x63\x4f\x71','\x6b\x78\x74\x63\x4d\x78\x56\x64\x50\x72\x62\x6f\x67\x47','\x57\x35\x4e\x64\x51\x6d\x6b\x58\x57\x4f\x43\x78\x69\x38\x6f\x78\x57\x52\x34','\x57\x50\x70\x64\x51\x6d\x6f\x73\x44\x38\x6f\x6d','\x6b\x43\x6f\x63\x74\x43\x6b\x42\x74\x63\x75\x65\x6f\x71','\x57\x51\x4a\x64\x48\x4a\x38\x62','\x73\x43\x6f\x6a\x67\x5a\x79','\x79\x77\x7a\x36\x64\x38\x6f\x4e','\x57\x36\x6e\x37\x57\x51\x71\x56','\x57\x50\x54\x49\x76\x38\x6b\x76\x6d\x66\x34','\x57\x4f\x58\x67\x75\x6d\x6b\x45\x68\x61','\x41\x6d\x6b\x65\x57\x37\x68\x63\x54\x6d\x6b\x34','\x41\x43\x6f\x69\x72\x49\x42\x64\x51\x6d\x6b\x6a\x69\x76\x71','\x57\x50\x62\x61\x64\x6d\x6f\x52\x74\x43\x6b\x31\x57\x35\x54\x76','\x57\x34\x46\x64\x4a\x53\x6b\x6d\x57\x50\x65\x33','\x79\x32\x6e\x55\x57\x50\x70\x63\x55\x57','\x57\x37\x53\x65\x42\x53\x6b\x4b\x6c\x47','\x57\x37\x62\x36\x66\x38\x6b\x66\x57\x34\x65\x59\x79\x43\x6f\x50','\x71\x6d\x6f\x55\x57\x36\x4f','\x57\x37\x78\x63\x53\x31\x50\x34\x57\x4f\x78\x64\x4f\x43\x6b\x73','\x6f\x53\x6f\x43\x79\x71','\x73\x38\x6f\x47\x57\x36\x50\x7a\x57\x34\x4a\x64\x4b\x4c\x46\x64\x49\x57','\x61\x5a\x33\x63\x4f\x6d\x6b\x74\x72\x47','\x79\x38\x6f\x69\x72\x73\x5a\x64\x49\x53\x6b\x46\x63\x30\x34','\x57\x51\x4a\x64\x4e\x43\x6f\x30\x44\x6d\x6f\x71','\x62\x57\x4e\x64\x56\x6d\x6f\x72\x73\x4b\x37\x63\x49\x31\x61','\x41\x6d\x6f\x63\x57\x52\x6c\x63\x4e\x53\x6f\x39\x65\x48\x68\x64\x47\x57','\x57\x52\x78\x63\x50\x66\x37\x63\x53\x43\x6b\x6f','\x6e\x72\x35\x6a\x57\x52\x56\x63\x47\x62\x68\x64\x53\x31\x38','\x57\x51\x64\x63\x4f\x4e\x68\x63\x47\x53\x6b\x55','\x61\x47\x78\x64\x54\x53\x6f\x79','\x76\x6d\x6f\x6d\x57\x51\x37\x63\x4b\x53\x6f\x46','\x41\x66\x6a\x6b\x57\x51\x5a\x63\x48\x61','\x57\x36\x56\x64\x4c\x6d\x6b\x66\x57\x36\x6c\x63\x4a\x43\x6f\x51\x75\x38\x6f\x50','\x57\x34\x2f\x64\x55\x38\x6b\x32\x57\x4f\x75\x6d\x62\x38\x6f\x4d\x57\x52\x30','\x57\x4f\x4e\x63\x52\x68\x4a\x63\x47\x6d\x6b\x62','\x45\x6d\x6f\x56\x57\x36\x78\x63\x4a\x31\x37\x63\x49\x43\x6b\x64\x62\x71','\x46\x43\x6f\x4f\x57\x52\x4b','\x45\x71\x61\x71\x79\x61','\x57\x4f\x46\x63\x52\x78\x65','\x57\x52\x44\x42\x6e\x4a\x4e\x63\x4e\x72\x6c\x63\x4e\x4c\x4f','\x57\x50\x68\x64\x56\x4d\x65\x5a\x57\x52\x39\x30\x6e\x43\x6f\x72','\x57\x35\x33\x64\x4b\x53\x6b\x5a\x57\x34\x37\x63\x53\x47','\x57\x36\x68\x63\x54\x30\x7a\x76\x57\x4f\x2f\x64\x4f\x43\x6b\x65\x72\x47','\x57\x35\x47\x71\x43\x71','\x57\x4f\x4e\x64\x54\x66\x6d\x31\x57\x51\x6e\x30\x6e\x43\x6f\x72','\x57\x50\x66\x57\x57\x34\x38\x4d\x67\x66\x52\x63\x4a\x53\x6b\x4a','\x57\x4f\x5a\x64\x48\x4a\x47\x69','\x57\x51\x37\x64\x55\x66\x33\x63\x56\x71','\x57\x50\x4a\x64\x51\x76\x4f\x4d\x57\x34\x65','\x57\x34\x30\x72\x46\x43\x6b\x55','\x44\x38\x6b\x62\x57\x34\x78\x64\x4e\x53\x6f\x64\x57\x35\x70\x63\x47\x66\x43','\x66\x4d\x68\x63\x50\x4c\x68\x63\x52\x47','\x57\x51\x4e\x64\x4d\x6d\x6b\x6b\x57\x37\x78\x64\x49\x6d\x6f\x53\x43\x43\x6b\x53','\x70\x4e\x42\x63\x4e\x68\x74\x64\x50\x71','\x57\x51\x69\x4d\x6e\x6d\x6b\x64\x57\x35\x47\x31\x77\x6d\x6f\x41','\x57\x50\x4e\x63\x50\x78\x54\x53','\x44\x38\x6f\x63\x57\x51\x2f\x63\x4e\x43\x6f\x55\x63\x64\x65','\x57\x50\x74\x64\x49\x38\x6f\x31\x41\x53\x6f\x6b\x45\x4c\x48\x46','\x57\x50\x70\x64\x52\x4b\x43\x72\x57\x35\x74\x63\x47\x61','\x70\x53\x6b\x63\x46\x78\x64\x64\x56\x38\x6f\x44','\x79\x47\x65\x33\x57\x36\x4a\x63\x56\x43\x6b\x38\x44\x6d\x6f\x44','\x6b\x75\x5a\x63\x51\x67\x74\x63\x49\x61','\x57\x50\x4c\x58\x78\x6d\x6b\x78\x6f\x4b\x66\x77\x72\x57','\x6e\x77\x68\x63\x51\x76\x2f\x64\x47\x57','\x57\x35\x34\x67\x45\x53\x6b\x4d\x6e\x47','\x68\x6d\x6b\x78\x72\x77\x2f\x64\x4b\x71','\x57\x4f\x2f\x64\x56\x75\x4b\x79\x57\x4f\x71','\x42\x53\x6b\x72\x57\x36\x2f\x63\x56\x71','\x41\x38\x6f\x69\x57\x52\x68\x63\x4c\x61','\x57\x51\x70\x64\x52\x53\x6b\x61\x57\x37\x56\x63\x51\x71','\x79\x38\x6f\x42\x57\x50\x34\x53\x57\x35\x5a\x64\x48\x61\x4f\x2f','\x45\x43\x6f\x6e\x57\x52\x6d\x37\x57\x34\x33\x64\x4b\x72\x4f','\x41\x53\x6b\x41\x57\x4f\x74\x64\x47\x43\x6f\x77\x57\x35\x74\x63\x54\x66\x79','\x57\x4f\x75\x51\x6e\x76\x52\x64\x55\x59\x61','\x67\x4a\x52\x63\x48\x53\x6b\x42\x71\x61','\x6d\x65\x4c\x70\x57\x35\x76\x50','\x57\x51\x56\x63\x47\x43\x6b\x70\x57\x4f\x70\x64\x4a\x63\x61','\x62\x47\x4e\x64\x54\x74\x42\x63\x4d\x43\x6f\x48\x57\x4f\x56\x63\x4f\x47','\x57\x50\x56\x64\x55\x38\x6f\x58\x44\x38\x6f\x4e','\x44\x53\x6f\x6f\x57\x51\x78\x63\x4c\x61','\x57\x4f\x35\x57\x57\x34\x30\x4b\x64\x30\x79','\x76\x38\x6f\x42\x57\x50\x57\x53','\x57\x4f\x70\x64\x48\x4a\x38\x64\x66\x78\x71','\x64\x57\x68\x64\x53\x57','\x75\x48\x33\x63\x52\x72\x38','\x57\x50\x62\x6b\x62\x6d\x6f\x33\x73\x71','\x57\x34\x52\x64\x4d\x6d\x6b\x45\x57\x4f\x75\x50','\x57\x37\x56\x63\x50\x65\x39\x64','\x57\x4f\x33\x64\x51\x4b\x43\x73\x57\x34\x2f\x63\x48\x78\x62\x50','\x57\x4f\x48\x57\x78\x61','\x57\x51\x62\x6d\x6d\x5a\x52\x63\x49\x49\x70\x63\x4d\x76\x71','\x45\x53\x6b\x61\x57\x36\x64\x63\x51\x53\x6b\x31\x57\x4f\x62\x32\x70\x47','\x66\x53\x6b\x77\x77\x67\x2f\x64\x4a\x43\x6b\x74\x57\x36\x61','\x72\x38\x6f\x31\x72\x63\x68\x64\x55\x61','\x42\x61\x53\x30\x57\x36\x74\x63\x52\x53\x6b\x58','\x57\x50\x39\x50\x79\x38\x6b\x49\x67\x47','\x57\x52\x75\x55\x79\x5a\x71\x52','\x6f\x38\x6b\x35\x66\x53\x6b\x79\x57\x50\x46\x64\x51\x4e\x69\x47','\x57\x51\x6c\x64\x4c\x53\x6b\x31\x57\x37\x4a\x63\x51\x61','\x41\x38\x6f\x52\x65\x64\x33\x63\x56\x61','\x57\x4f\x65\x44\x73\x72\x79\x45','\x6f\x6d\x6b\x38\x79\x57','\x41\x6d\x6b\x78\x57\x37\x78\x63\x53\x43\x6b\x33\x57\x50\x79','\x69\x43\x6b\x6f\x57\x34\x54\x37\x57\x4f\x52\x63\x48\x48\x53\x4c\x69\x77\x46\x63\x54\x53\x6f\x36','\x45\x43\x6f\x6e\x57\x52\x53\x4e\x57\x34\x2f\x64\x4e\x61\x69\x5a','\x57\x50\x53\x6e\x79\x61\x30\x76\x57\x52\x66\x35\x6c\x57','\x79\x43\x6f\x47\x57\x52\x52\x63\x4e\x38\x6f\x51\x69\x4a\x61','\x71\x31\x48\x68\x65\x43\x6f\x4a','\x7a\x57\x47\x45\x7a\x53\x6b\x46','\x62\x47\x70\x64\x54\x38\x6f\x72','\x57\x51\x57\x73\x69\x53\x6b\x5a\x57\x35\x57','\x57\x52\x44\x42\x6c\x64\x4e\x63\x4a\x61\x2f\x63\x47\x30\x57','\x66\x49\x70\x64\x55\x6d\x6f\x64\x71\x47','\x57\x35\x2f\x64\x4f\x6d\x6b\x36\x57\x36\x42\x63\x53\x47','\x57\x4f\x56\x63\x56\x32\x71','\x64\x67\x64\x63\x54\x32\x78\x64\x4c\x47','\x71\x64\x57\x73\x44\x53\x6b\x51\x57\x4f\x50\x4a\x57\x36\x38','\x57\x52\x4a\x64\x4b\x4b\x4f\x54\x57\x50\x61','\x67\x48\x56\x63\x51\x38\x6b\x5a\x43\x62\x6c\x64\x4a\x6d\x6f\x62','\x72\x48\x46\x63\x52\x48\x38','\x57\x52\x43\x5a\x62\x38\x6b\x68\x57\x35\x4f\x4f','\x57\x52\x64\x64\x4f\x4d\x75\x36\x57\x36\x6d','\x57\x36\x74\x64\x4c\x6d\x6b\x42','\x57\x50\x4a\x64\x51\x6d\x6f\x43\x43\x38\x6f\x72\x46\x30\x31\x6f','\x41\x53\x6f\x59\x57\x36\x70\x63\x4e\x47','\x6d\x6d\x6b\x54\x46\x65\x64\x64\x4f\x38\x6b\x39\x57\x34\x62\x68','\x42\x38\x6f\x63\x64\x61','\x57\x50\x42\x64\x4b\x59\x53\x30\x64\x71','\x68\x38\x6b\x6b\x71\x68\x4a\x64\x48\x38\x6b\x6d','\x70\x6d\x6f\x7a\x78\x53\x6b\x53\x77\x74\x75\x37','\x41\x57\x75\x67','\x57\x4f\x48\x2f\x57\x34\x53\x37\x57\x37\x52\x63\x4c\x43\x6b\x30\x46\x57','\x57\x4f\x74\x63\x51\x31\x6a\x47\x41\x38\x6b\x41\x61\x43\x6b\x63','\x57\x50\x70\x63\x54\x43\x6b\x39\x57\x4f\x38\x76\x6c\x6d\x6f\x71\x57\x51\x71','\x65\x75\x70\x63\x54\x75\x6c\x63\x51\x71','\x57\x37\x68\x64\x48\x6d\x6b\x61\x57\x37\x37\x63\x51\x57','\x46\x38\x6f\x51\x57\x37\x33\x63\x4e\x4b\x4e\x63\x4c\x71','\x65\x71\x78\x64\x54\x74\x42\x63\x4d\x43\x6f\x37\x57\x50\x42\x63\x52\x57','\x57\x51\x69\x4b\x6a\x61','\x69\x53\x6b\x30\x67\x53\x6b\x64','\x57\x4f\x39\x6d\x62\x43\x6f\x49\x77\x6d\x6b\x58','\x57\x36\x72\x4a\x57\x4f\x61\x35\x6d\x53\x6b\x6c\x57\x51\x79','\x57\x52\x4e\x64\x51\x65\x64\x63\x53\x61','\x57\x51\x72\x4e\x57\x36\x71\x71\x6e\x57','\x6c\x6d\x6f\x67\x43\x6d\x6f\x32','\x57\x4f\x31\x72\x73\x53\x6b\x71\x66\x57','\x57\x4f\x2f\x64\x55\x4b\x79\x49\x57\x35\x43','\x42\x76\x48\x35\x6b\x6d\x6f\x39','\x57\x51\x58\x44\x6d\x38\x6f\x58\x77\x61','\x57\x4f\x70\x63\x4f\x4d\x6a\x4c\x45\x43\x6b\x71\x62\x43\x6b\x44','\x63\x65\x6c\x63\x51\x78\x6c\x64\x53\x57','\x6d\x53\x6f\x62\x44\x6d\x6f\x59\x57\x4f\x62\x36\x66\x71','\x42\x48\x53\x64\x79\x38\x6b\x64\x57\x34\x46\x63\x49\x58\x34','\x57\x35\x56\x64\x55\x53\x6b\x65\x57\x36\x46\x63\x50\x57','\x68\x61\x70\x64\x54\x61','\x57\x4f\x4a\x63\x4f\x38\x6f\x4f\x57\x35\x72\x71\x77\x6d\x6f\x46\x57\x52\x37\x64\x48\x78\x7a\x65\x6a\x47','\x44\x43\x6f\x6c\x57\x52\x37\x63\x4b\x53\x6f\x51','\x45\x66\x62\x76\x57\x51\x33\x63\x4c\x61\x2f\x64\x55\x61','\x57\x4f\x37\x64\x55\x67\x38\x5a\x57\x52\x71','\x57\x50\x6a\x47\x57\x35\x61\x52','\x79\x53\x6f\x6a\x67\x5a\x74\x63\x52\x74\x65','\x76\x48\x4e\x63\x53\x57\x4e\x63\x54\x72\x42\x63\x4e\x71','\x6e\x53\x6b\x45\x75\x4d\x56\x64\x4d\x61','\x44\x53\x6f\x59\x57\x36\x31\x71\x57\x34\x70\x64\x4c\x33\x5a\x64\x4e\x71','\x62\x72\x37\x64\x53\x38\x6f\x7a\x77\x76\x4e\x63\x4e\x61','\x57\x50\x35\x57\x57\x34\x4f\x57\x57\x37\x4a\x63\x4a\x43\x6b\x55\x76\x47','\x44\x43\x6f\x6d\x7a\x73\x78\x64\x55\x71','\x46\x43\x6f\x46\x57\x4f\x69','\x57\x4f\x43\x51\x65\x4c\x4e\x64\x56\x61','\x7a\x6d\x6b\x72\x57\x36\x5a\x63\x54\x38\x6b\x5a\x57\x4f\x50\x30\x6a\x61','\x57\x50\x58\x5a\x57\x34\x69\x57\x57\x34\x74\x63\x4e\x43\x6b\x55\x75\x57','\x57\x4f\x2f\x64\x54\x38\x6b\x72\x57\x37\x6c\x63\x48\x53\x6f\x58\x74\x61','\x46\x61\x34\x64\x78\x43\x6b\x36','\x57\x37\x33\x64\x4d\x53\x6b\x4e\x57\x36\x70\x63\x4e\x38\x6f\x52\x7a\x53\x6f\x70','\x57\x50\x43\x71\x76\x71\x30\x70\x57\x51\x65','\x6d\x43\x6f\x51\x79\x6d\x6f\x6d\x57\x52\x69','\x6b\x38\x6f\x44\x79\x43\x6f\x34\x57\x4f\x72\x52\x61\x4b\x69','\x44\x38\x6f\x65\x74\x63\x46\x64\x55\x38\x6b\x43\x66\x58\x47','\x65\x78\x42\x63\x4e\x76\x6c\x63\x53\x47','\x57\x50\x48\x5a\x57\x34\x75\x35','\x71\x38\x6f\x6f\x57\x4f\x79\x6e\x57\x34\x4b','\x79\x30\x5a\x63\x52\x5a\x75\x53','\x46\x43\x6f\x34\x57\x35\x72\x47\x57\x36\x47','\x57\x51\x2f\x64\x53\x66\x46\x63\x4e\x75\x34','\x57\x4f\x74\x64\x56\x43\x6b\x6f\x57\x35\x4a\x63\x4c\x43\x6f\x52\x79\x73\x79','\x67\x38\x6b\x77\x77\x61','\x65\x53\x6b\x69\x79\x78\x46\x64\x49\x61','\x74\x6d\x6b\x54\x57\x37\x56\x63\x51\x6d\x6b\x31','\x63\x43\x6f\x52\x41\x6d\x6f\x69\x57\x51\x71','\x57\x4f\x4f\x36\x41\x63\x75\x6a','\x57\x36\x4c\x78\x57\x51\x71\x4c\x6a\x43\x6b\x4a\x57\x52\x53','\x57\x52\x52\x64\x54\x66\x74\x63\x54\x4d\x72\x68\x45\x68\x69','\x57\x51\x69\x72\x79\x58\x71\x32','\x41\x6d\x6b\x68\x57\x36\x71','\x6b\x53\x6b\x6d\x41\x66\x37\x64\x54\x71','\x57\x36\x58\x66\x57\x52\x71\x41\x6b\x47','\x57\x50\x64\x63\x51\x76\x64\x63\x4a\x43\x6b\x62\x57\x52\x4b\x48\x68\x71','\x57\x35\x75\x67\x45\x53\x6b\x4b\x6d\x43\x6f\x79','\x78\x38\x6f\x35\x57\x35\x62\x6f\x57\x37\x53','\x6b\x6d\x6f\x78\x78\x6d\x6b\x62\x61\x4e\x79','\x57\x4f\x56\x64\x49\x30\x30\x59\x57\x52\x69','\x6d\x53\x6f\x78\x78\x57','\x6f\x38\x6b\x39\x63\x57','\x57\x35\x68\x63\x56\x33\x48\x37\x57\x51\x4b','\x46\x58\x43\x56\x57\x36\x56\x63\x51\x53\x6b\x32','\x62\x47\x4e\x64\x54\x53\x6f\x72\x77\x31\x2f\x63\x4f\x4c\x79','\x76\x49\x65\x6f\x46\x38\x6b\x4f\x57\x50\x62\x4e\x57\x37\x38','\x57\x50\x4e\x63\x4f\x67\x48\x51\x41\x71','\x57\x36\x61\x54\x44\x53\x6b\x61\x6e\x57','\x63\x43\x6b\x30\x65\x53\x6b\x65\x57\x50\x68\x64\x56\x66\x38\x2b','\x73\x53\x6f\x47\x57\x37\x72\x65\x57\x35\x4a\x64\x4d\x4e\x78\x64\x4e\x71','\x42\x6d\x6f\x74\x57\x51\x57','\x57\x35\x68\x64\x56\x38\x6b\x32\x57\x4f\x79\x78\x61\x47','\x6b\x43\x6f\x6b\x79\x6d\x6f\x52\x57\x4f\x6a\x38','\x45\x71\x57\x67\x79\x6d\x6b\x75\x57\x37\x37\x63\x47\x72\x34','\x71\x38\x6f\x49\x57\x50\x52\x63\x50\x38\x6f\x54','\x79\x43\x6b\x6a\x57\x52\x5a\x64\x53\x43\x6f\x57','\x57\x52\x44\x72\x6b\x63\x47','\x57\x4f\x37\x64\x49\x6d\x6f\x46\x41\x53\x6f\x71','\x57\x52\x61\x4c\x6c\x43\x6b\x64','\x77\x65\x70\x63\x47\x71\x4f\x38','\x43\x43\x6f\x71\x57\x50\x79\x47\x57\x35\x56\x64\x4b\x72\x43\x31','\x62\x71\x68\x64\x53\x58\x56\x63\x47\x53\x6f\x4d\x57\x50\x65','\x57\x4f\x6a\x52\x61\x38\x6f\x6e\x79\x57','\x45\x71\x61\x6e\x41\x38\x6b\x77\x57\x36\x42\x63\x4c\x57','\x78\x31\x2f\x63\x4b\x58\x6d\x38','\x57\x50\x33\x64\x54\x38\x6b\x72','\x57\x4f\x42\x63\x55\x67\x48\x6f\x41\x43\x6b\x41\x62\x43\x6b\x54','\x44\x76\x72\x53\x57\x52\x52\x63\x4b\x47','\x74\x73\x57\x46\x75\x38\x6b\x6e','\x7a\x5a\x43\x5a\x57\x36\x4a\x63\x4d\x71','\x41\x53\x6f\x53\x57\x37\x5a\x63\x4a\x57','\x6b\x4d\x70\x63\x4e\x4e\x47','\x75\x33\x5a\x63\x52\x63\x4f\x37','\x45\x57\x53\x77\x57\x36\x4a\x63\x55\x6d\x6b\x47\x71\x38\x6f\x4f','\x57\x4f\x72\x38\x57\x34\x38\x33\x68\x4c\x57','\x61\x68\x7a\x4c\x57\x36\x50\x34\x66\x76\x69','\x75\x53\x6b\x50\x57\x4f\x4a\x64\x51\x43\x6f\x6f','\x64\x6d\x6b\x52\x42\x77\x2f\x64\x48\x47','\x57\x35\x61\x76\x43\x43\x6b\x57','\x57\x50\x38\x46\x78\x57','\x73\x58\x34\x57\x71\x6d\x6b\x68','\x57\x37\x64\x63\x56\x4b\x39\x75','\x57\x4f\x5a\x64\x47\x49\x65\x78\x66\x68\x64\x64\x47\x6d\x6f\x6a','\x57\x4f\x37\x64\x56\x43\x6b\x6e\x57\x35\x69','\x57\x50\x4a\x64\x53\x4d\x43\x50\x57\x51\x76\x34\x70\x57','\x57\x4f\x37\x64\x4b\x43\x6f\x75\x42\x43\x6f\x66\x46\x31\x38','\x57\x34\x4c\x4c\x57\x51\x79\x4d\x65\x61','\x6f\x6d\x6b\x6d\x76\x68\x46\x64\x54\x61','\x6e\x53\x6b\x30\x46\x4e\x56\x64\x4b\x53\x6f\x77\x46\x53\x6b\x4e','\x7a\x47\x57\x65\x79\x53\x6b\x64\x57\x36\x69','\x41\x53\x6b\x68\x57\x4f\x6c\x64\x4e\x43\x6f\x64\x57\x34\x56\x63\x4b\x67\x61','\x71\x77\x44\x4e\x6c\x53\x6f\x4f','\x57\x50\x4a\x64\x52\x4b\x43\x74','\x72\x67\x37\x63\x50\x64\x61\x6c','\x57\x50\x38\x78\x73\x61','\x71\x43\x6f\x62\x57\x4f\x42\x63\x4d\x53\x6f\x62','\x57\x4f\x46\x63\x51\x31\x56\x63\x4a\x38\x6b\x4a','\x6f\x43\x6f\x31\x71\x43\x6f\x77\x57\x50\x65','\x79\x57\x65\x30\x57\x36\x64\x63\x55\x38\x6b\x54','\x41\x66\x76\x4d\x6e\x6d\x6f\x36\x61\x4c\x75','\x57\x4f\x39\x2b\x57\x52\x37\x63\x49\x38\x6f\x4f\x69\x43\x6b\x73\x6b\x71','\x57\x50\x42\x63\x4f\x4c\x52\x63\x47\x43\x6b\x77','\x64\x58\x68\x63\x51\x53\x6b\x4c\x78\x63\x70\x64\x4d\x53\x6f\x66','\x57\x51\x74\x63\x4d\x38\x6b\x4c\x57\x50\x37\x64\x48\x5a\x54\x39\x57\x37\x34','\x76\x58\x34\x42\x46\x43\x6b\x53\x57\x52\x44\x49','\x57\x50\x70\x64\x4b\x38\x6f\x77\x7a\x57','\x45\x61\x56\x63\x49\x72\x4a\x63\x53\x61','\x57\x37\x47\x49\x43\x65\x6e\x54\x6e\x72\x57','\x57\x50\x5a\x64\x56\x43\x6b\x4b\x57\x35\x68\x63\x56\x57','\x57\x35\x30\x72\x46\x43\x6b\x4c\x6d\x43\x6f\x56\x65\x4d\x53','\x57\x4f\x65\x46\x6d\x43\x6b\x6f\x57\x37\x4b','\x57\x50\x5a\x64\x54\x33\x71\x4b\x57\x51\x6e\x5a\x6f\x53\x6f\x63','\x6e\x38\x6f\x6b\x41\x53\x6f\x35\x57\x50\x76\x58','\x57\x52\x56\x63\x47\x38\x6f\x41\x57\x36\x52\x63\x49\x38\x6f\x2b\x7a\x38\x6f\x51\x57\x35\x57','\x71\x48\x4e\x63\x53\x61','\x57\x50\x37\x64\x4f\x61\x47\x70\x6d\x61','\x57\x37\x78\x64\x56\x6d\x6b\x36\x57\x51\x75\x58','\x57\x51\x5a\x64\x4b\x38\x6f\x63\x79\x6d\x6f\x30','\x57\x36\x78\x64\x4b\x6d\x6b\x66\x57\x36\x56\x63\x4e\x6d\x6f\x4d','\x63\x58\x70\x64\x48\x74\x52\x63\x48\x43\x6f\x37\x57\x50\x42\x63\x53\x57','\x57\x50\x64\x64\x4f\x77\x43\x4a\x57\x37\x43','\x6f\x32\x70\x63\x47\x4d\x2f\x64\x55\x64\x31\x66','\x69\x53\x6b\x5a\x65\x6d\x6b\x73\x57\x4f\x56\x64\x55\x4c\x43\x49','\x57\x4f\x5a\x64\x54\x53\x6b\x71\x57\x35\x37\x63\x4b\x38\x6f\x52','\x71\x64\x4f\x72\x79\x43\x6b\x53','\x6a\x53\x6b\x50\x63\x6d\x6b\x46','\x70\x53\x6f\x63\x44\x6d\x6f\x51\x57\x50\x69','\x6c\x6d\x6f\x78\x57\x35\x78\x63\x48\x53\x6b\x72\x57\x50\x78\x63\x48\x75\x54\x36\x69\x43\x6b\x70\x71\x71','\x57\x50\x74\x64\x4e\x6d\x6f\x77\x42\x43\x6f\x68\x44\x47','\x45\x53\x6f\x71\x71\x38\x6b\x43\x76\x4a\x6a\x4f\x43\x61','\x57\x50\x66\x4b\x57\x35\x65\x33','\x57\x50\x4e\x64\x55\x75\x79\x42','\x43\x6d\x6b\x57\x57\x35\x70\x63\x4d\x53\x6b\x75','\x57\x36\x68\x63\x54\x30\x7a\x76\x57\x4f\x2f\x64\x4f\x43\x6b\x6f\x75\x61','\x57\x50\x37\x63\x54\x75\x7a\x4f\x46\x6d\x6b\x68','\x57\x50\x4e\x63\x50\x4b\x43','\x78\x58\x53\x63\x76\x43\x6b\x35','\x68\x72\x46\x63\x49\x6d\x6b\x55\x79\x49\x4a\x64\x4a\x6d\x6f\x4a','\x74\x43\x6f\x5a\x57\x36\x31\x72\x57\x35\x4e\x64\x56\x33\x37\x64\x4d\x47','\x57\x35\x56\x64\x53\x38\x6b\x30\x57\x50\x75\x67\x67\x61','\x63\x68\x50\x56\x57\x36\x31\x2b\x63\x78\x46\x64\x4d\x71','\x44\x6d\x6f\x51\x57\x37\x38','\x44\x6d\x6f\x49\x57\x36\x4b','\x7a\x38\x6f\x65\x45\x58\x5a\x64\x53\x57','\x76\x32\x6d\x5a\x57\x37\x34\x34\x64\x61\x78\x64\x47\x71','\x57\x50\x52\x64\x56\x43\x6b\x70\x57\x35\x6c\x63\x48\x6d\x6f\x4d\x71\x74\x71','\x57\x35\x78\x64\x55\x38\x6b\x52','\x44\x6d\x6f\x77\x57\x50\x38\x54\x57\x34\x79','\x57\x4f\x6e\x61\x57\x51\x64\x63\x48\x6d\x6f\x35\x6c\x43\x6f\x56\x42\x61','\x79\x57\x79\x65\x76\x53\x6b\x45\x57\x37\x64\x63\x47\x71','\x66\x6d\x6b\x63\x77\x67\x2f\x64\x49\x47','\x57\x50\x52\x64\x56\x4d\x34\x4b','\x57\x50\x66\x32\x57\x34\x57\x58\x68\x47','\x57\x36\x6c\x63\x50\x31\x4c\x79','\x77\x58\x46\x63\x54\x57','\x67\x58\x70\x63\x56\x6d\x6b\x66\x75\x61','\x57\x35\x52\x63\x53\x64\x6e\x31\x6f\x6d\x6b\x69\x75\x38\x6b\x73','\x57\x51\x44\x6e\x57\x37\x6d\x73\x67\x61','\x45\x6d\x6f\x4e\x57\x37\x75','\x57\x37\x33\x64\x4d\x53\x6b\x34\x57\x37\x4a\x63\x4d\x53\x6f\x4e\x45\x53\x6f\x52','\x45\x66\x54\x4b\x6d\x57','\x57\x50\x50\x47\x76\x53\x6b\x64\x6f\x47','\x57\x50\x52\x64\x55\x38\x6b\x6d\x57\x34\x78\x63\x47\x53\x6f\x6e\x76\x4a\x65','\x57\x4f\x37\x64\x4e\x43\x6f\x46\x7a\x53\x6f\x68\x7a\x32\x66\x70','\x78\x43\x6f\x66\x64\x5a\x79','\x61\x53\x6b\x35\x72\x31\x64\x64\x4c\x71','\x42\x6d\x6f\x47\x57\x4f\x78\x63\x48\x53\x6f\x37','\x46\x4b\x74\x63\x50\x64\x34','\x6a\x53\x6b\x67\x57\x34\x6e\x36\x57\x4f\x52\x63\x49\x66\x65\x44\x70\x77\x4e\x63\x49\x43\x6f\x51\x68\x57','\x74\x59\x30\x5a\x41\x53\x6b\x76','\x44\x31\x72\x6c\x57\x52\x4e\x63\x4c\x71\x53','\x64\x48\x33\x63\x51\x53\x6b\x4b\x72\x73\x6c\x64\x4b\x43\x6f\x6d','\x57\x50\x6a\x76\x57\x52\x5a\x63\x47\x38\x6f\x59\x6c\x47','\x57\x4f\x68\x63\x54\x65\x68\x63\x49\x6d\x6b\x61','\x57\x52\x4e\x63\x48\x38\x6b\x57\x57\x4f\x70\x64\x4d\x5a\x54\x4e\x57\x37\x57','\x7a\x6d\x6b\x76\x57\x37\x4b','\x79\x32\x37\x63\x55\x72\x57\x79','\x57\x37\x43\x37\x7a\x4e\x76\x4d','\x57\x52\x4e\x64\x51\x77\x79\x4e\x57\x50\x4f','\x57\x51\x6e\x58\x64\x48\x78\x63\x49\x57','\x76\x61\x56\x63\x50\x47','\x63\x43\x6b\x56\x72\x4e\x52\x64\x54\x47','\x57\x50\x6c\x64\x51\x4c\x30\x76\x57\x34\x4a\x63\x55\x65\x35\x35','\x61\x38\x6b\x4d\x42\x32\x56\x64\x47\x57','\x57\x4f\x57\x61\x6a\x53\x6b\x6d\x57\x37\x34','\x79\x53\x6f\x46\x57\x52\x70\x63\x49\x43\x6f\x45','\x57\x34\x4e\x64\x54\x43\x6b\x53\x57\x4f\x61\x70\x6b\x38\x6f\x6e\x57\x52\x34','\x57\x50\x56\x64\x4b\x43\x6f\x46\x44\x38\x6f\x62\x79\x71','\x57\x4f\x6e\x53\x75\x6d\x6b\x46','\x42\x4d\x72\x35\x6e\x38\x6f\x36\x61\x4c\x68\x64\x51\x61','\x57\x52\x61\x4a\x6a\x38\x6b\x69\x57\x34\x53\x33\x73\x47','\x57\x50\x66\x50\x57\x51\x2f\x63\x4f\x53\x6f\x59','\x57\x50\x37\x63\x4f\x30\x44\x47\x44\x6d\x6b\x72\x62\x61','\x6e\x78\x78\x63\x4a\x75\x2f\x63\x56\x71','\x41\x53\x6b\x63\x57\x4f\x5a\x64\x4b\x6d\x6f\x68','\x66\x6d\x6b\x67\x71\x77\x70\x64\x4b\x6d\x6b\x68\x57\x34\x72\x38','\x57\x50\x6d\x6e\x71\x57','\x57\x35\x52\x63\x51\x43\x6f\x78\x57\x4f\x2f\x64\x4b\x38\x6b\x47\x65\x32\x61\x52\x57\x34\x50\x4b\x57\x4f\x78\x63\x56\x6d\x6b\x72','\x41\x65\x72\x69\x57\x52\x70\x63\x47\x62\x68\x64\x50\x61','\x66\x75\x64\x63\x53\x78\x70\x64\x51\x61','\x57\x4f\x48\x5a\x57\x34\x30\x4e\x57\x37\x4a\x63\x4b\x71','\x76\x57\x37\x64\x4c\x61\x4a\x64\x53\x71\x61\x77\x57\x35\x69','\x57\x34\x4f\x61\x45\x38\x6b\x58\x69\x6d\x6f\x33\x68\x4d\x53','\x57\x37\x39\x58\x57\x51\x38\x56\x6c\x38\x6b\x68','\x57\x51\x46\x63\x52\x66\x68\x63\x51\x38\x6b\x6f','\x57\x4f\x2f\x63\x4f\x4e\x6a\x47\x45\x6d\x6b\x6e','\x57\x51\x4a\x64\x4d\x4e\x42\x63\x52\x32\x71','\x57\x50\x4f\x36\x6e\x4c\x64\x64\x52\x4a\x4f\x50','\x57\x36\x6c\x64\x56\x53\x6b\x66\x57\x34\x2f\x63\x4a\x47','\x57\x50\x57\x42\x42\x57\x61\x69','\x75\x62\x37\x63\x50\x72\x2f\x63\x4f\x57\x37\x63\x4b\x43\x6f\x4a','\x6b\x66\x4e\x63\x4c\x4e\x6c\x64\x56\x74\x76\x70\x67\x71','\x64\x64\x78\x64\x47\x63\x42\x63\x55\x57','\x7a\x38\x6f\x46\x6d\x5a\x52\x63\x54\x5a\x61\x55\x62\x47','\x70\x43\x6f\x74\x71\x53\x6b\x6d','\x46\x71\x61\x31\x57\x35\x70\x63\x49\x71','\x6b\x38\x6f\x42\x57\x35\x6c\x63\x48\x38\x6b\x41\x57\x50\x37\x64\x4b\x77\x76\x6c\x6d\x6d\x6b\x78\x71\x53\x6b\x6b','\x57\x52\x33\x63\x4e\x43\x6b\x71\x57\x50\x38','\x57\x50\x6e\x33\x57\x35\x38','\x57\x50\x6a\x4c\x57\x36\x30\x4e\x57\x36\x4e\x63\x4d\x6d\x6b\x2b','\x57\x37\x4c\x2f\x57\x4f\x30\x4b\x6e\x38\x6b\x70\x57\x51\x33\x63\x52\x61','\x43\x43\x6f\x64\x77\x63\x68\x64\x53\x38\x6b\x77\x65\x61','\x57\x37\x54\x58\x57\x51\x61\x6a\x65\x47','\x57\x50\x35\x55\x57\x34\x4b\x32\x57\x36\x37\x63\x4a\x43\x6b\x55\x74\x57','\x70\x43\x6b\x79\x6b\x38\x6b\x30\x57\x4f\x79','\x71\x38\x6f\x6e\x57\x52\x38\x74\x57\x36\x30','\x76\x33\x33\x63\x54\x61\x38\x2f','\x57\x50\x66\x61\x64\x43\x6f\x58\x7a\x43\x6b\x33\x57\x35\x58\x56','\x57\x4f\x4e\x64\x4c\x38\x6f\x47\x44\x38\x6f\x77\x45\x4b\x6a\x44','\x7a\x75\x42\x63\x55\x73\x47\x51','\x57\x4f\x31\x67\x68\x43\x6f\x47\x71\x6d\x6b\x54\x57\x35\x66\x7a','\x57\x37\x56\x64\x4c\x6d\x6b\x66\x57\x36\x4a\x63\x48\x38\x6f\x4a','\x45\x71\x57\x67\x79\x6d\x6b\x75\x57\x37\x37\x63\x4f\x58\x38','\x57\x51\x4e\x63\x4d\x53\x6b\x6b\x57\x50\x68\x64\x4e\x72\x54\x4e\x57\x36\x38','\x46\x30\x6e\x6d\x57\x52\x4a\x63\x4c\x73\x37\x64\x53\x4c\x69','\x6e\x6d\x6b\x39\x63\x6d\x6b\x73\x57\x52\x42\x64\x53\x65\x69\x31','\x57\x52\x2f\x64\x4a\x5a\x43\x56\x69\x57','\x46\x71\x65\x51\x57\x36\x56\x63\x52\x53\x6b\x4d\x76\x61','\x57\x36\x38\x37\x42\x4b\x48\x57\x6c\x61','\x57\x4f\x72\x4d\x76\x6d\x6b\x45\x6c\x75\x50\x37\x75\x47','\x57\x50\x5a\x63\x50\x4b\x64\x63\x48\x38\x6b\x6e','\x57\x51\x4e\x64\x4a\x53\x6f\x52\x43\x6d\x6f\x67','\x57\x36\x54\x72\x57\x52\x75\x67\x6b\x71','\x61\x61\x68\x64\x52\x74\x33\x63\x4a\x53\x6f\x32\x57\x51\x78\x63\x53\x57','\x57\x52\x35\x51\x64\x49\x5a\x63\x51\x47','\x45\x53\x6f\x53\x57\x37\x2f\x63\x49\x75\x33\x63\x4b\x57','\x57\x51\x35\x52\x57\x51\x4a\x63\x47\x6d\x6f\x69','\x42\x4d\x54\x57\x6b\x6d\x6f\x4a\x61\x4c\x2f\x64\x51\x57','\x57\x36\x34\x31\x42\x75\x4b','\x64\x31\x7a\x4d\x57\x35\x50\x76','\x76\x53\x6f\x58\x57\x4f\x4a\x63\x51\x38\x6f\x65','\x57\x37\x4f\x2f\x42\x4b\x4b','\x57\x50\x75\x46\x76\x49\x57\x73\x57\x51\x58\x2b','\x57\x50\x68\x64\x4d\x30\x47\x63\x57\x34\x47','\x57\x50\x70\x64\x4e\x43\x6f\x36\x7a\x38\x6f\x78','\x41\x38\x6f\x34\x57\x52\x6c\x63\x4e\x53\x6f\x52\x64\x47','\x79\x6d\x6b\x42\x57\x36\x38','\x57\x36\x30\x6b\x44\x38\x6b\x50\x6d\x47','\x72\x6d\x6f\x2f\x62\x64\x52\x63\x56\x47','\x62\x43\x6b\x53\x68\x43\x6b\x30\x57\x52\x6d','\x41\x6d\x6f\x69\x73\x4a\x56\x64\x54\x6d\x6b\x7a\x63\x4b\x75','\x62\x67\x58\x4e','\x6e\x47\x46\x64\x4d\x58\x68\x63\x53\x71','\x62\x49\x46\x64\x50\x4a\x33\x63\x4a\x53\x6f\x42\x57\x4f\x79','\x57\x4f\x54\x4a\x57\x35\x38\x39','\x77\x64\x65\x51\x57\x34\x64\x63\x4c\x57','\x57\x50\x74\x64\x49\x38\x6f\x32\x43\x38\x6f\x6e\x44\x65\x4c\x75','\x42\x61\x53\x50\x57\x36\x37\x63\x4f\x43\x6b\x47\x79\x53\x6f\x63','\x57\x51\x2f\x64\x53\x4b\x65','\x70\x6d\x6b\x34\x43\x77\x33\x64\x54\x43\x6f\x72\x44\x6d\x6b\x4c','\x42\x43\x6f\x6a\x68\x64\x38','\x57\x51\x39\x58\x57\x37\x71\x78\x57\x34\x65','\x57\x51\x4a\x64\x53\x58\x71\x30\x6d\x71','\x61\x68\x58\x32\x57\x36\x31\x2b\x6e\x66\x70\x64\x4e\x47','\x57\x36\x42\x63\x56\x76\x35\x72\x57\x4f\x64\x64\x4c\x6d\x6b\x76\x76\x47','\x57\x51\x61\x52\x6c\x47','\x57\x50\x6a\x75\x64\x48\x37\x63\x52\x61','\x57\x4f\x57\x43\x65\x4b\x78\x64\x55\x71','\x43\x4c\x46\x63\x56\x5a\x57\x37\x57\x52\x39\x6e\x6c\x47','\x46\x61\x30\x39\x57\x36\x4e\x63\x52\x53\x6b\x50\x71\x53\x6f\x30','\x6f\x43\x6f\x34\x42\x43\x6b\x2b\x46\x47','\x57\x51\x52\x64\x49\x38\x6f\x78\x44\x43\x6f\x6f','\x57\x4f\x6e\x35\x57\x35\x43\x4d\x63\x75\x64\x63\x49\x53\x6b\x5a','\x7a\x43\x6b\x72\x57\x36\x2f\x63\x56\x38\x6b\x31\x57\x50\x53','\x79\x38\x6f\x6f\x57\x52\x70\x63\x48\x43\x6f\x51\x67\x71','\x57\x36\x35\x2f\x57\x51\x38\x34\x6e\x6d\x6b\x79\x57\x51\x52\x63\x4a\x61','\x57\x35\x52\x64\x48\x43\x6b\x6e\x57\x34\x2f\x63\x56\x47','\x79\x53\x6f\x7a\x57\x35\x6e\x4e\x57\x36\x69','\x42\x38\x6f\x74\x57\x35\x5a\x63\x4d\x75\x38','\x6d\x38\x6b\x59\x46\x4e\x5a\x64\x55\x53\x6f\x6d','\x57\x37\x56\x63\x54\x4c\x69','\x57\x36\x74\x64\x4b\x6d\x6b\x67\x57\x36\x70\x63\x4d\x53\x6f\x33\x71\x43\x6f\x2f','\x57\x50\x52\x63\x51\x65\x5a\x63\x54\x38\x6b\x71','\x76\x4a\x6c\x63\x49\x48\x46\x63\x50\x61','\x67\x71\x33\x63\x54\x38\x6b\x50','\x79\x38\x6f\x56\x57\x4f\x52\x63\x49\x43\x6f\x32','\x57\x50\x74\x63\x54\x67\x42\x63\x4f\x6d\x6b\x62','\x57\x50\x33\x63\x54\x30\x42\x63\x49\x6d\x6b\x55','\x76\x49\x34\x32\x57\x52\x4f\x34\x71\x47\x68\x63\x4a\x78\x76\x7a\x71\x32\x58\x42\x57\x37\x30','\x64\x66\x42\x63\x4b\x65\x2f\x63\x52\x47','\x57\x50\x68\x64\x56\x4d\x34\x4d\x57\x51\x76\x31','\x57\x4f\x37\x64\x53\x4e\x4f\x4b','\x72\x47\x57\x63\x73\x38\x6b\x70','\x7a\x4c\x76\x4d','\x57\x52\x65\x71\x68\x78\x74\x64\x47\x57\x30\x64','\x57\x51\x31\x6e\x67\x59\x37\x63\x4a\x61\x46\x63\x4a\x47','\x57\x4f\x62\x30\x57\x35\x61\x4d\x6b\x65\x33\x63\x48\x6d\x6b\x31','\x57\x51\x46\x64\x53\x4b\x78\x63\x56\x77\x4c\x46\x43\x4e\x34','\x72\x53\x6b\x44\x57\x34\x33\x63\x4c\x6d\x6b\x63','\x57\x51\x38\x38\x68\x76\x4e\x64\x49\x47','\x41\x53\x6b\x6e\x57\x4f\x52\x64\x47\x43\x6f\x68','\x7a\x53\x6f\x50\x57\x50\x37\x63\x50\x53\x6f\x6a','\x57\x51\x68\x63\x49\x43\x6b\x71\x57\x4f\x70\x64\x4f\x64\x58\x54\x57\x37\x34','\x57\x4f\x4a\x63\x52\x77\x39\x4e\x41\x43\x6b\x71\x6a\x38\x6b\x6c','\x77\x63\x4e\x63\x4a\x38\x6b\x47\x46\x74\x33\x64\x4d\x47','\x6f\x30\x70\x63\x47\x4b\x2f\x64\x4f\x57','\x57\x4f\x56\x64\x52\x4c\x53\x79\x57\x37\x74\x63\x48\x33\x58\x4b','\x57\x35\x61\x71\x75\x53\x6b\x51\x6b\x38\x6f\x7a\x64\x32\x61','\x44\x38\x6f\x69\x72\x59\x5a\x64\x55\x43\x6b\x65\x64\x75\x30','\x57\x50\x64\x64\x47\x68\x47\x72\x57\x36\x6d','\x57\x50\x76\x72\x63\x43\x6f\x6e\x42\x71','\x57\x52\x44\x73\x6d\x5a\x2f\x63\x4d\x57','\x6d\x53\x6f\x43\x72\x43\x6f\x53\x57\x50\x6e\x34\x63\x71','\x57\x51\x64\x64\x50\x31\x52\x63\x55\x30\x79','\x43\x31\x2f\x63\x4f\x59\x69\x37','\x68\x5a\x37\x63\x53\x43\x6b\x31\x74\x57','\x63\x58\x70\x64\x47\x49\x68\x63\x4d\x43\x6f\x5a\x57\x50\x53','\x6f\x6d\x6b\x38\x44\x61','\x57\x35\x54\x51\x57\x52\x61\x63\x6e\x47','\x6c\x67\x52\x63\x48\x68\x4a\x64\x4f\x5a\x44\x62\x67\x47','\x6b\x53\x6b\x6b\x76\x4d\x4b','\x44\x53\x6f\x77\x57\x51\x33\x63\x48\x71','\x6e\x43\x6f\x4e\x75\x43\x6f\x6c\x57\x51\x53','\x57\x37\x61\x32\x43\x53\x6b\x41\x57\x50\x34\x4e\x63\x43\x6f\x73','\x57\x50\x56\x64\x4a\x63\x75\x66\x64\x76\x33\x64\x4b\x43\x6b\x44','\x57\x51\x70\x64\x4c\x53\x6b\x35\x57\x35\x56\x63\x4e\x57','\x41\x43\x6f\x69\x72\x49\x42\x64\x51\x6d\x6b\x6a\x6d\x76\x65','\x57\x52\x44\x70\x6b\x63\x47','\x61\x57\x6c\x64\x4c\x74\x52\x63\x49\x71','\x57\x52\x4e\x63\x4d\x38\x6f\x46','\x7a\x4c\x46\x63\x53\x5a\x57\x51\x57\x4f\x48\x51\x69\x71','\x57\x50\x6a\x72\x57\x51\x6c\x63\x47\x38\x6f\x4f','\x70\x53\x6f\x6c\x70\x53\x6b\x2b\x57\x50\x76\x52\x62\x75\x69','\x68\x61\x70\x64\x54\x6d\x6f\x4e\x75\x76\x68\x63\x47\x61','\x42\x49\x43\x69\x57\x37\x70\x63\x4f\x47','\x57\x4f\x5a\x64\x4f\x4c\x6d\x74','\x57\x52\x33\x64\x4e\x4c\x47\x45\x57\x37\x6d','\x46\x48\x53\x64\x79\x53\x6b\x71\x57\x36\x2f\x63\x4c\x47','\x63\x77\x33\x63\x4a\x4e\x6c\x63\x51\x71','\x57\x4f\x35\x61\x62\x71','\x67\x6d\x6f\x66\x73\x43\x6b\x45\x44\x71','\x78\x5a\x57\x71\x44\x6d\x6b\x39\x57\x50\x79','\x57\x50\x74\x64\x56\x32\x75\x56\x57\x52\x6a\x34','\x57\x50\x2f\x63\x51\x65\x6c\x63\x47\x43\x6b\x6a\x57\x51\x57\x53\x6b\x57','\x57\x50\x54\x4c\x57\x35\x4b\x74\x66\x57','\x67\x53\x6b\x6f\x79\x78\x42\x64\x56\x61','\x57\x4f\x4e\x64\x4c\x38\x6f\x68\x79\x53\x6f\x69\x75\x4c\x48\x6f','\x66\x4c\x78\x63\x56\x76\x74\x63\x51\x65\x48\x65','\x42\x48\x53\x64\x79\x38\x6b\x64\x57\x34\x2f\x63\x49\x48\x53','\x57\x50\x5a\x64\x48\x4a\x30\x62\x61\x4d\x4a\x64\x4a\x6d\x6b\x67','\x57\x4f\x35\x69\x65\x57','\x7a\x38\x6b\x53\x57\x37\x6c\x63\x4c\x38\x6b\x55','\x64\x62\x78\x63\x54\x6d\x6b\x31\x7a\x47','\x70\x43\x6f\x67\x41\x6d\x6f\x51\x57\x4f\x72\x52','\x43\x4c\x76\x61\x57\x52\x64\x63\x47\x47\x79','\x41\x43\x6f\x63\x57\x52\x68\x63\x4c\x53\x6f\x37\x61\x57','\x57\x52\x70\x63\x49\x33\x78\x63\x54\x38\x6b\x58\x57\x4f\x43\x79\x6f\x71','\x57\x4f\x56\x63\x4f\x68\x76\x53\x46\x53\x6b\x41\x61\x43\x6b\x41','\x41\x38\x6b\x62\x57\x36\x4a\x63\x54\x6d\x6b\x4c\x57\x51\x62\x65\x6f\x57','\x57\x36\x34\x35\x42\x31\x35\x36','\x57\x4f\x37\x64\x54\x68\x69\x31','\x57\x52\x54\x6b\x63\x53\x6f\x74\x72\x57','\x7a\x6d\x6f\x6f\x57\x50\x68\x63\x4e\x6d\x6f\x55','\x57\x36\x37\x64\x4b\x6d\x6b\x66\x57\x36\x4b','\x57\x50\x34\x42\x73\x61\x6d\x70\x57\x52\x61','\x45\x71\x65\x4f\x57\x37\x78\x63\x50\x53\x6b\x48\x76\x61','\x67\x48\x68\x63\x4f\x38\x6b\x56\x44\x63\x68\x64\x4a\x43\x6f\x2f','\x57\x52\x46\x63\x47\x53\x6b\x78\x57\x52\x37\x64\x55\x71','\x72\x43\x6f\x57\x57\x34\x35\x48\x57\x36\x65','\x45\x63\x34\x79\x71\x43\x6b\x45','\x57\x50\x79\x6a\x73\x59\x53\x74','\x75\x4a\x75\x6b\x44\x53\x6b\x37\x57\x50\x62\x4e\x57\x37\x38','\x44\x4c\x62\x72\x57\x52\x33\x63\x49\x71\x42\x64\x52\x48\x79','\x57\x4f\x33\x63\x51\x77\x39\x53','\x57\x50\x46\x64\x4b\x38\x6f\x4e\x74\x53\x6f\x76','\x78\x53\x6b\x6c\x57\x4f\x56\x64\x4c\x47','\x43\x43\x6f\x49\x57\x37\x33\x63\x52\x32\x30','\x57\x50\x78\x64\x4a\x43\x6f\x44\x41\x61','\x57\x50\x65\x46\x76\x47\x75\x7a\x57\x52\x66\x48\x69\x57','\x57\x50\x52\x64\x56\x43\x6b\x70\x57\x35\x6c\x63\x48\x6d\x6f\x4d\x74\x74\x38','\x57\x37\x47\x30\x43\x30\x76\x52\x6f\x61','\x7a\x47\x57\x6c\x44\x38\x6b\x7a\x57\x36\x70\x63\x49\x48\x30','\x57\x50\x33\x63\x50\x4b\x46\x63\x4b\x6d\x6b\x53\x57\x52\x79\x58\x68\x71','\x57\x4f\x54\x56\x78\x6d\x6b\x76','\x57\x50\x74\x64\x49\x38\x6f\x59\x43\x43\x6f\x77\x43\x4c\x75','\x41\x38\x6f\x58\x57\x37\x4a\x63\x4a\x4b\x4e\x64\x4e\x43\x6f\x63\x62\x71','\x57\x50\x6c\x64\x51\x4c\x4b','\x57\x52\x44\x42\x6e\x4a\x4e\x63\x4e\x72\x6c\x63\x4b\x4c\x65','\x57\x4f\x43\x5a\x6a\x43\x6b\x31\x57\x37\x4f','\x57\x4f\x58\x61\x57\x52\x34','\x76\x58\x34\x4b\x75\x6d\x6b\x6d','\x57\x37\x33\x64\x4b\x6d\x6b\x66\x57\x37\x2f\x63\x47\x43\x6f\x36\x42\x43\x6b\x32','\x71\x64\x64\x63\x47\x48\x4e\x63\x50\x61','\x57\x4f\x70\x63\x50\x4c\x52\x63\x47\x6d\x6b\x6b\x57\x52\x75','\x65\x78\x7a\x55\x57\x36\x35\x50\x66\x67\x4b','\x79\x6d\x6b\x71\x57\x36\x74\x63\x54\x53\x6b\x49\x57\x50\x79','\x78\x53\x6b\x6a\x57\x4f\x42\x64\x4c\x53\x6f\x56','\x57\x34\x68\x63\x4a\x64\x71\x75\x63\x68\x56\x64\x47\x6d\x6b\x68','\x78\x75\x74\x63\x53\x53\x6b\x41\x65\x57\x6c\x64\x4a\x48\x4f','\x57\x37\x4b\x44\x7a\x75\x6a\x36\x63\x61\x53','\x57\x52\x52\x64\x56\x4d\x34\x4b','\x57\x4f\x58\x6e\x57\x35\x61\x6d\x66\x61','\x57\x34\x4f\x67\x44\x43\x6b\x58\x6a\x53\x6f\x79','\x72\x47\x5a\x63\x53\x72\x70\x63\x52\x48\x30','\x42\x38\x6f\x74\x57\x36\x6e\x73\x57\x34\x43','\x57\x37\x38\x37\x43\x30\x4c\x6d\x69\x47\x61\x6a','\x65\x53\x6b\x4e\x46\x65\x2f\x64\x47\x71','\x57\x51\x68\x64\x56\x65\x61','\x57\x51\x4f\x55\x6a\x43\x6b\x69\x57\x34\x4b\x2b','\x7a\x57\x61\x65','\x6d\x71\x2f\x64\x53\x6d\x6f\x48\x75\x57','\x6f\x38\x6b\x51\x77\x4e\x74\x64\x52\x61','\x66\x4e\x7a\x34\x57\x36\x43','\x57\x34\x37\x64\x55\x43\x6b\x33\x57\x50\x6d\x67','\x57\x4f\x50\x41\x6b\x53\x6f\x33\x78\x53\x6b\x34\x57\x35\x65','\x57\x4f\x39\x30\x57\x35\x53','\x68\x62\x2f\x64\x4e\x6d\x6f\x44\x76\x4b\x6c\x63\x4b\x76\x79','\x79\x6d\x6b\x68\x57\x34\x64\x63\x51\x53\x6b\x5a\x57\x50\x6a\x79','\x57\x51\x78\x64\x55\x66\x33\x63\x56\x33\x66\x64','\x41\x38\x6f\x70\x57\x50\x46\x63\x54\x53\x6f\x31','\x79\x6d\x6f\x59\x74\x73\x4a\x64\x54\x53\x6b\x43\x62\x4b\x6d','\x6f\x43\x6b\x73\x57\x34\x75','\x57\x4f\x4e\x64\x4e\x43\x6f\x62\x42\x43\x6f\x78','\x57\x50\x6c\x64\x51\x4c\x30\x76\x57\x34\x47','\x57\x4f\x6c\x63\x50\x66\x56\x63\x4c\x53\x6b\x61','\x44\x38\x6f\x42\x57\x50\x57\x53','\x73\x6d\x6f\x37\x6d\x48\x6c\x63\x53\x47','\x73\x63\x69\x30\x57\x36\x6c\x63\x47\x47','\x57\x35\x37\x64\x54\x6d\x6b\x57\x57\x51\x69\x61','\x57\x4f\x4a\x64\x4f\x47\x69\x52\x69\x61','\x43\x38\x6f\x78\x57\x52\x6c\x63\x51\x6d\x6f\x53','\x57\x4f\x6e\x6e\x57\x51\x56\x63\x4a\x47','\x63\x68\x35\x36','\x43\x48\x53\x6d\x73\x6d\x6b\x32','\x44\x38\x6f\x43\x57\x36\x68\x63\x49\x31\x4a\x63\x4a\x38\x6f\x79\x75\x71','\x57\x51\x69\x55\x6a\x61','\x57\x50\x4b\x42\x78\x58\x43','\x6e\x53\x6f\x74\x71\x53\x6b\x6f\x74\x64\x34','\x57\x36\x4b\x2f\x43\x4b\x6a\x53','\x57\x50\x56\x64\x4d\x53\x6b\x4e\x57\x35\x78\x63\x4e\x47','\x64\x57\x4e\x64\x52\x71','\x41\x6d\x6f\x69\x72\x73\x37\x64\x52\x53\x6b\x79','\x57\x50\x52\x64\x52\x75\x46\x63\x4e\x68\x6d','\x57\x4f\x5a\x64\x51\x53\x6b\x70\x57\x35\x56\x63\x48\x47','\x71\x43\x6f\x47\x57\x37\x43','\x45\x30\x52\x63\x53\x4a\x38','\x57\x50\x4a\x63\x49\x33\x70\x63\x4b\x6d\x6b\x49','\x44\x43\x6f\x71\x57\x4f\x65\x47\x57\x34\x56\x64\x49\x71','\x57\x4f\x35\x42\x6a\x38\x6f\x32\x44\x43\x6b\x65\x74\x32\x61\x67\x77\x6d\x6b\x6f\x75\x38\x6b\x35','\x68\x43\x6b\x6b\x78\x33\x4a\x64\x49\x38\x6b\x73\x57\x36\x4c\x39','\x57\x35\x70\x64\x4b\x53\x6b\x6e\x57\x52\x71\x50','\x6e\x53\x6f\x6f\x46\x61','\x57\x51\x46\x64\x54\x78\x56\x63\x4e\x33\x38','\x64\x61\x64\x63\x54\x6d\x6b\x54\x44\x63\x70\x64\x4e\x38\x6f\x75','\x57\x4f\x74\x64\x56\x43\x6b\x6f\x57\x35\x4a\x63\x4c\x43\x6f\x52\x7a\x74\x71','\x57\x50\x62\x67\x64\x43\x6f\x58','\x64\x62\x2f\x63\x51\x6d\x6b\x78\x77\x61','\x57\x4f\x54\x31\x57\x35\x4f\x74\x57\x35\x43','\x57\x50\x6e\x42\x64\x53\x6f\x4a\x73\x43\x6b\x52\x57\x35\x50\x56','\x57\x50\x4a\x64\x55\x68\x42\x63\x56\x4b\x34','\x70\x6d\x6f\x71\x74\x43\x6b\x49\x75\x61','\x57\x50\x56\x64\x4a\x62\x30\x6c\x66\x4e\x4e\x64\x4c\x38\x6b\x51','\x42\x6d\x6f\x75\x57\x50\x37\x63\x47\x38\x6f\x39\x63\x49\x30','\x7a\x38\x6f\x78\x57\x36\x48\x45\x57\x35\x75','\x57\x52\x4a\x64\x52\x4b\x43\x74','\x57\x4f\x5a\x64\x55\x30\x75\x46\x57\x34\x70\x63\x4a\x71','\x57\x36\x5a\x64\x4d\x38\x6b\x79\x57\x36\x78\x63\x4e\x6d\x6f\x33','\x57\x50\x64\x64\x55\x4e\x71\x49\x57\x52\x4b','\x57\x37\x4e\x64\x48\x38\x6b\x6f\x57\x36\x52\x63\x4a\x43\x6f\x38\x7a\x53\x6f\x50','\x57\x50\x4a\x63\x52\x77\x39\x54\x79\x38\x6b\x7a\x70\x38\x6b\x7a','\x77\x47\x79\x56\x44\x43\x6b\x36','\x45\x66\x62\x76\x57\x51\x33\x63\x4c\x61\x2f\x64\x55\x68\x75','\x72\x5a\x57\x71\x79\x6d\x6b\x47\x57\x4f\x50\x2f\x57\x52\x65','\x57\x50\x56\x64\x4e\x43\x6f\x4c\x71\x53\x6f\x4e','\x6c\x68\x78\x63\x4c\x71','\x57\x50\x64\x64\x4d\x43\x6f\x68\x79\x6d\x6f\x6d','\x57\x35\x74\x64\x51\x43\x6b\x7a\x57\x50\x6d\x72\x63\x38\x6f\x61','\x74\x43\x6f\x5a\x57\x36\x31\x72\x57\x35\x4e\x64\x53\x33\x37\x64\x4a\x57','\x57\x50\x4b\x35\x70\x77\x46\x64\x49\x47','\x6f\x38\x6b\x77\x75\x4d\x4e\x64\x4c\x71','\x69\x4a\x4e\x64\x51\x53\x6f\x5a\x79\x61','\x57\x36\x46\x64\x4e\x38\x6b\x6c\x57\x52\x65\x4c','\x45\x65\x72\x36\x6c\x53\x6f\x37','\x41\x53\x6b\x6c\x57\x4f\x74\x64\x47\x43\x6f\x62\x57\x34\x38','\x57\x34\x4a\x64\x56\x38\x6b\x46\x57\x4f\x43\x37','\x46\x31\x42\x63\x4c\x59\x47\x39\x57\x50\x54\x41','\x6c\x53\x6b\x63\x44\x67\x33\x64\x4a\x47','\x57\x51\x70\x64\x4a\x4e\x74\x63\x4c\x4b\x61','\x57\x50\x52\x64\x55\x38\x6b\x6d\x57\x34\x78\x63\x47\x47','\x57\x4f\x62\x73\x57\x51\x53','\x57\x34\x33\x64\x49\x6d\x6b\x32\x57\x50\x4b\x6b','\x57\x52\x2f\x64\x4b\x4e\x79\x35\x57\x50\x38','\x6b\x43\x6f\x74\x71\x6d\x6b\x6d\x77\x59\x69\x32\x6e\x61','\x57\x50\x37\x64\x49\x68\x53\x63\x57\x34\x30','\x69\x78\x78\x63\x52\x33\x64\x64\x53\x63\x31\x64\x62\x47','\x57\x37\x43\x6f\x64\x74\x2f\x63\x4c\x71\x2f\x63\x52\x33\x69','\x57\x4f\x46\x64\x4a\x43\x6b\x4f\x57\x34\x74\x63\x53\x71','\x7a\x61\x65\x4a\x57\x37\x71','\x57\x36\x64\x64\x48\x53\x6b\x54\x57\x36\x78\x63\x48\x53\x6f\x4e\x79\x6d\x6f\x50','\x57\x51\x74\x63\x56\x65\x72\x48\x41\x71','\x44\x6d\x6f\x48\x57\x50\x71\x4f\x57\x35\x70\x64\x4e\x61\x65\x58','\x77\x38\x6f\x6a\x6d\x49\x74\x63\x52\x71','\x57\x4f\x48\x58\x78\x61','\x71\x64\x75\x78\x43\x6d\x6b\x53','\x45\x30\x5a\x63\x55\x61','\x45\x57\x65\x50\x57\x37\x6d','\x70\x6d\x6b\x34\x46\x4e\x4a\x64\x52\x38\x6f\x71','\x68\x4e\x70\x63\x49\x78\x46\x63\x53\x61','\x57\x4f\x56\x64\x53\x4d\x6d\x4b','\x57\x51\x6a\x7a\x77\x6d\x6b\x47\x6c\x47','\x57\x52\x4e\x63\x48\x38\x6b\x56\x57\x50\x4a\x64\x4e\x4a\x44\x37\x57\x35\x47','\x7a\x38\x6f\x46\x6e\x63\x68\x63\x51\x5a\x47\x4a','\x6f\x76\x2f\x63\x4f\x68\x42\x64\x51\x71','\x57\x35\x71\x75\x75\x67\x62\x45\x61\x49\x4f\x4b','\x41\x53\x6f\x47\x57\x37\x37\x63\x4d\x65\x4b','\x41\x43\x6f\x6e\x62\x72\x56\x63\x53\x63\x30\x50','\x57\x51\x42\x64\x55\x33\x68\x63\x4a\x30\x65','\x57\x37\x52\x64\x4e\x6d\x6b\x6d\x57\x36\x6c\x63\x49\x43\x6f\x49\x7a\x38\x6f\x74','\x79\x6d\x6f\x6c\x57\x4f\x65\x48','\x57\x4f\x48\x31\x57\x34\x6d\x4e\x57\x37\x34','\x57\x51\x56\x63\x49\x43\x6b\x6b\x57\x50\x56\x64\x4a\x64\x7a\x6b\x57\x37\x4f','\x42\x53\x6b\x51\x57\x4f\x6c\x64\x54\x53\x6f\x58','\x57\x4f\x79\x68\x76\x47\x65','\x44\x62\x65\x6f\x45\x38\x6b\x5a','\x6c\x4d\x46\x63\x47\x68\x5a\x64\x53\x5a\x62\x6d\x62\x57','\x57\x51\x6e\x42\x6e\x64\x4b','\x62\x47\x78\x64\x56\x43\x6f\x41\x77\x75\x46\x63\x4c\x4d\x57','\x41\x6d\x6f\x67\x57\x51\x56\x63\x4b\x53\x6f\x4e','\x6e\x6d\x6b\x56\x45\x78\x4e\x64\x52\x38\x6f\x58\x44\x6d\x6b\x32','\x6d\x53\x6b\x58\x44\x78\x53','\x45\x38\x6b\x72\x57\x37\x64\x63\x52\x43\x6b\x4f\x57\x4f\x66\x65\x6d\x57','\x57\x4f\x58\x69\x57\x51\x61','\x77\x78\x31\x4b\x57\x4f\x33\x63\x54\x74\x5a\x64\x4b\x68\x43','\x77\x66\x31\x53\x69\x47','\x64\x61\x6c\x64\x4a\x6d\x6f\x6e\x73\x71','\x6b\x43\x6f\x46\x76\x53\x6b\x6d','\x57\x50\x6c\x64\x52\x4b\x71\x7a\x57\x35\x6c\x63\x4b\x77\x50\x37','\x62\x48\x6c\x64\x51\x4a\x78\x63\x4e\x38\x6f\x78\x57\x4f\x5a\x63\x54\x57','\x75\x38\x6f\x56\x57\x37\x5a\x63\x56\x4e\x71','\x79\x38\x6f\x78\x57\x50\x75\x4e\x57\x35\x37\x64\x4e\x62\x61\x70','\x42\x6d\x6f\x6a\x57\x52\x5a\x63\x4e\x43\x6f\x36\x64\x5a\x68\x64\x48\x47','\x57\x52\x72\x53\x57\x36\x71\x35\x57\x35\x65','\x57\x52\x58\x38\x6d\x58\x4a\x63\x48\x57','\x6c\x38\x6b\x33\x57\x51\x4a\x64\x4d\x72\x37\x64\x4e\x38\x6b\x52\x67\x38\x6b\x4f\x57\x51\x42\x63\x52\x64\x69','\x66\x6d\x6b\x6c\x6c\x53\x6b\x58\x57\x51\x38','\x6f\x76\x58\x52\x57\x52\x74\x64\x55\x53\x6f\x39\x61\x38\x6f\x4d\x57\x36\x52\x63\x4b\x53\x6f\x2b\x57\x52\x76\x50','\x45\x65\x62\x33\x6e\x43\x6f\x37\x68\x77\x46\x64\x54\x71','\x57\x4f\x2f\x63\x52\x6d\x6f\x50\x57\x4f\x43\x61\x67\x53\x6f\x6b\x57\x51\x5a\x64\x55\x47','\x46\x6d\x6f\x42\x57\x50\x57\x55\x57\x34\x56\x64\x4d\x61','\x57\x34\x57\x32\x46\x6d\x6b\x4d\x69\x71','\x57\x50\x2f\x63\x56\x32\x71','\x57\x36\x47\x30\x41\x30\x6a\x57\x6e\x47\x65','\x6a\x43\x6b\x31\x61\x43\x6b\x73','\x57\x4f\x62\x54\x77\x53\x6b\x44\x6b\x4c\x44\x62\x75\x71','\x79\x4c\x46\x63\x56\x5a\x30\x4f\x57\x50\x39\x72','\x57\x35\x75\x32\x75\x78\x50\x5a','\x45\x6d\x6f\x54\x57\x36\x78\x63\x47\x33\x70\x63\x4c\x38\x6b\x64\x62\x71','\x57\x50\x7a\x58\x6e\x74\x46\x63\x53\x71','\x66\x33\x50\x5a\x57\x37\x44\x4c\x61\x4c\x70\x64\x4d\x71','\x57\x35\x2f\x64\x55\x38\x6b\x52\x57\x4f\x71\x57\x63\x43\x6f\x77\x57\x52\x47','\x57\x50\x74\x64\x4c\x38\x6f\x44\x75\x6d\x6f\x6e\x41\x75\x4b','\x6b\x30\x37\x63\x50\x77\x78\x64\x51\x61','\x57\x4f\x58\x68\x74\x43\x6b\x33\x66\x71','\x69\x4e\x50\x53\x57\x36\x43','\x72\x38\x6f\x4b\x57\x34\x76\x7a\x57\x34\x4e\x64\x54\x78\x68\x64\x4e\x47','\x74\x38\x6f\x35\x57\x36\x64\x63\x4f\x31\x4f','\x44\x6d\x6f\x4d\x57\x37\x5a\x63\x48\x76\x37\x63\x4e\x53\x6b\x39\x61\x71','\x57\x52\x5a\x64\x4e\x53\x6b\x72\x57\x37\x78\x63\x4a\x47','\x57\x51\x5a\x64\x51\x76\x52\x63\x55\x32\x72\x68\x7a\x31\x71','\x57\x50\x6a\x75\x57\x51\x33\x63\x49\x43\x6f\x35\x6f\x53\x6f\x42','\x57\x52\x31\x39\x57\x34\x4f\x57\x64\x30\x68\x63\x4d\x43\x6b\x2b','\x57\x51\x56\x64\x4c\x38\x6f\x6a\x72\x43\x6f\x6d','\x57\x4f\x44\x42\x61\x53\x6f\x4a\x77\x6d\x6b\x71\x57\x34\x7a\x2b','\x57\x50\x7a\x35\x57\x34\x47\x57','\x72\x53\x6f\x6b\x57\x34\x6e\x43\x57\x37\x57','\x57\x4f\x33\x64\x4b\x31\x64\x63\x4c\x33\x61','\x57\x4f\x31\x42\x57\x34\x47\x78\x57\x35\x34','\x57\x50\x52\x64\x53\x43\x6b\x65\x57\x35\x4e\x63\x48\x53\x6f\x2b\x76\x33\x61','\x77\x5a\x47\x6e','\x78\x6d\x6f\x75\x57\x36\x58\x73\x57\x34\x4b','\x6d\x38\x6b\x59\x63\x6d\x6b\x45\x57\x50\x68\x64\x51\x47','\x63\x33\x50\x6c\x57\x36\x7a\x2f','\x41\x76\x76\x34\x6b\x43\x6f\x51\x63\x4e\x46\x64\x55\x71','\x57\x35\x5a\x64\x53\x38\x6b\x77\x57\x4f\x57\x63','\x57\x35\x6d\x4c\x57\x50\x50\x58\x74\x48\x4a\x63\x4b\x38\x6b\x59\x57\x35\x44\x63\x57\x50\x69\x70','\x57\x50\x33\x64\x54\x38\x6b\x56\x57\x35\x4a\x63\x4b\x6d\x6f\x33\x76\x48\x6d','\x57\x50\x5a\x63\x51\x78\x6e\x37\x7a\x43\x6b\x71\x62\x71','\x57\x4f\x62\x4a\x69\x53\x6f\x4f\x73\x61','\x70\x6d\x6b\x5a\x65\x53\x6b\x7a','\x44\x53\x6f\x63\x57\x52\x70\x63\x4c\x6d\x6f\x53\x68\x5a\x33\x64\x4d\x47','\x57\x4f\x54\x37\x57\x35\x6d\x56\x67\x4b\x33\x63\x4a\x47','\x68\x76\x54\x6d\x57\x34\x6e\x2b','\x6c\x53\x6f\x7a\x79\x6d\x6b\x67\x74\x5a\x6d\x48\x65\x57','\x44\x38\x6b\x6c\x57\x50\x6c\x63\x4b\x38\x6f\x66\x57\x34\x6c\x63\x4a\x76\x4f','\x57\x4f\x64\x64\x52\x53\x6b\x67\x57\x34\x71','\x57\x37\x2f\x64\x4d\x43\x6b\x65\x57\x36\x46\x63\x52\x47','\x77\x38\x6f\x45\x68\x71\x70\x63\x4c\x57','\x57\x36\x5a\x64\x4b\x43\x6f\x72\x57\x51\x5a\x63\x4e\x6d\x6f\x38\x79\x43\x6f\x50','\x57\x4f\x78\x64\x56\x43\x6b\x6e\x57\x35\x64\x63\x4b\x38\x6f\x36','\x41\x43\x6f\x6d\x77\x57','\x78\x61\x56\x63\x47\x47\x4a\x63\x53\x48\x56\x63\x47\x71','\x6f\x4a\x56\x64\x56\x6d\x6f\x68\x75\x61','\x57\x51\x5a\x63\x50\x31\x48\x47\x41\x57','\x46\x43\x6f\x6a\x66\x63\x68\x63\x55\x4a\x65','\x45\x53\x6f\x45\x68\x64\x74\x63\x56\x4a\x57\x4f','\x7a\x76\x78\x63\x55\x4a\x6d\x37','\x74\x47\x38\x5a\x42\x53\x6b\x35','\x57\x51\x4c\x46\x6c\x4a\x2f\x63\x4c\x47','\x7a\x53\x6f\x6e\x62\x47','\x69\x38\x6f\x47\x79\x47','\x57\x37\x46\x63\x54\x65\x58\x76\x57\x4f\x2f\x64\x4f\x43\x6b\x69\x76\x61','\x45\x65\x54\x6f\x57\x51\x33\x63\x55\x61','\x42\x4c\x6a\x70\x70\x53\x6f\x4e','\x61\x61\x56\x63\x48\x43\x6b\x5a\x7a\x59\x5a\x64\x48\x57','\x57\x50\x5a\x64\x54\x78\x71\x4f\x57\x4f\x35\x54\x6f\x53\x6f\x63','\x57\x37\x52\x63\x53\x31\x4b','\x57\x4f\x52\x63\x4a\x43\x6b\x6e\x57\x50\x69','\x57\x51\x64\x63\x4a\x43\x6b\x6f\x57\x50\x4a\x64\x4d\x59\x54\x6d\x57\x36\x30','\x6a\x53\x6b\x57\x67\x53\x6b\x64\x57\x4f\x64\x64\x53\x4c\x47\x69','\x45\x43\x6f\x76\x57\x51\x4f\x48\x57\x35\x69','\x74\x78\x7a\x62\x64\x43\x6f\x4d','\x42\x61\x53\x4f\x57\x36\x69','\x57\x4f\x43\x71\x6e\x4c\x6c\x64\x51\x59\x30','\x72\x5a\x79\x59\x46\x6d\x6b\x2b\x57\x50\x54\x30\x57\x34\x47','\x46\x53\x6f\x42\x57\x35\x57\x36\x57\x35\x42\x64\x4c\x57\x30\x58','\x57\x4f\x64\x64\x51\x38\x6b\x49\x57\x34\x78\x63\x4c\x43\x6f\x5a\x78\x71','\x73\x6d\x6f\x68\x57\x34\x7a\x41\x57\x36\x4f','\x57\x50\x52\x64\x4d\x30\x79\x67\x57\x35\x78\x63\x48\x65\x35\x35','\x57\x51\x62\x6d\x6d\x5a\x52\x63\x49\x4a\x4e\x63\x4e\x4c\x53','\x57\x4f\x76\x57\x57\x34\x30\x4d','\x57\x35\x64\x64\x55\x38\x6b\x4f','\x57\x50\x6a\x65\x57\x51\x6c\x63\x4a\x38\x6f\x2f\x70\x43\x6f\x6e\x42\x71','\x41\x31\x31\x65\x57\x51\x52\x63\x48\x61\x6c\x64\x51\x68\x4b','\x57\x50\x33\x64\x49\x4a\x43\x71\x70\x4e\x70\x64\x4b\x38\x6b\x6d','\x57\x35\x4f\x71\x71\x32\x7a\x35','\x76\x48\x46\x63\x52\x72\x4e\x63\x4f\x71\x34','\x57\x50\x56\x64\x4b\x74\x47\x64\x62\x4e\x4e\x64\x4c\x38\x6f\x6a','\x66\x43\x6f\x59\x46\x6d\x6b\x67\x44\x57','\x70\x38\x6f\x4c\x73\x43\x6b\x65\x77\x74\x47\x4e\x6f\x71','\x7a\x6d\x6f\x68\x57\x4f\x69\x53','\x57\x50\x68\x64\x52\x4d\x61\x73\x57\x35\x6d','\x73\x53\x6f\x55\x57\x37\x66\x42\x57\x34\x4b','\x45\x43\x6f\x41\x57\x4f\x4f','\x44\x48\x4e\x63\x4d\x4a\x70\x63\x54\x71','\x57\x35\x52\x64\x55\x38\x6b\x4f\x57\x51\x4b\x6b\x68\x53\x6f\x6b','\x63\x47\x68\x64\x53\x61','\x67\x71\x4e\x64\x54\x6d\x6f\x74\x74\x65\x6d','\x45\x66\x35\x6c\x57\x52\x33\x63\x47\x62\x43','\x57\x50\x33\x64\x4f\x43\x6b\x4b\x57\x35\x42\x63\x4c\x38\x6f\x48','\x79\x4b\x6a\x5a\x6e\x61','\x57\x4f\x6c\x64\x47\x49\x65','\x42\x76\x31\x36\x6d\x38\x6f\x51\x68\x61','\x64\x67\x58\x65\x57\x36\x54\x49\x67\x75\x6c\x64\x4d\x61','\x57\x51\x54\x4d\x6f\x61\x4e\x63\x49\x61','\x6e\x43\x6b\x5a\x79\x33\x42\x64\x52\x38\x6f\x62','\x57\x37\x64\x63\x50\x67\x7a\x58\x57\x52\x34','\x69\x53\x6f\x4a\x76\x53\x6b\x6d\x76\x71','\x64\x48\x68\x64\x49\x71\x78\x63\x50\x57','\x42\x43\x6f\x6e\x62\x73\x64\x63\x52\x64\x75\x2f','\x57\x51\x7a\x4e\x57\x34\x75\x4c\x6d\x61','\x42\x38\x6f\x4b\x57\x37\x4a\x63\x53\x4d\x65','\x63\x58\x42\x64\x50\x49\x61','\x57\x52\x72\x33\x57\x36\x38\x35\x70\x71','\x46\x4b\x74\x63\x50\x71','\x57\x36\x38\x56\x7a\x71','\x57\x50\x52\x64\x53\x43\x6b\x65\x57\x35\x4e\x63\x48\x53\x6f\x2b\x76\x57\x38','\x57\x51\x65\x38\x64\x6d\x6b\x4e\x57\x37\x47','\x6b\x78\x74\x63\x4d\x78\x56\x64\x50\x72\x72\x70\x63\x47','\x57\x36\x53\x6d\x46\x38\x6b\x67\x61\x57','\x61\x61\x4e\x64\x4e\x43\x6f\x73\x79\x61','\x57\x4f\x54\x4b\x57\x34\x4b\x5a\x57\x37\x37\x63\x49\x38\x6b\x31\x72\x71','\x57\x4f\x52\x64\x53\x43\x6f\x76\x44\x43\x6f\x59','\x64\x53\x6b\x64\x6e\x38\x6b\x2b\x57\x51\x56\x64\x4c\x4e\x34','\x72\x31\x4e\x63\x52\x43\x6b\x61\x61\x62\x6c\x64\x4c\x32\x4e\x63\x52\x72\x4e\x63\x4d\x53\x6b\x55\x45\x57','\x57\x50\x44\x5a\x57\x34\x69\x59\x57\x36\x2f\x63\x4b\x71','\x69\x67\x46\x63\x48\x68\x37\x64\x55\x71','\x63\x30\x4e\x63\x53\x65\x4e\x63\x52\x75\x58\x70\x57\x52\x47','\x65\x6d\x6b\x76\x73\x78\x38','\x65\x30\x70\x63\x4b\x4b\x68\x63\x52\x4b\x65','\x57\x4f\x78\x63\x56\x4b\x74\x63\x47\x71','\x68\x61\x6c\x64\x52\x53\x6f\x42','\x65\x53\x6b\x6b\x72\x76\x4e\x64\x4b\x71','\x57\x36\x62\x58\x57\x52\x75\x4f\x6b\x6d\x6f\x6b\x57\x52\x4a\x63\x49\x47','\x57\x4f\x74\x64\x54\x76\x68\x63\x49\x32\x4f','\x66\x6d\x6b\x63\x78\x61','\x41\x66\x54\x34\x6a\x6d\x6f\x55\x67\x47','\x72\x72\x30\x69\x57\x34\x2f\x63\x51\x71','\x57\x34\x65\x4b\x77\x53\x6b\x71\x63\x57','\x6b\x6d\x6f\x74\x78\x43\x6b\x43\x75\x73\x71\x32\x6e\x61','\x57\x36\x74\x64\x4e\x6d\x6b\x66','\x44\x38\x6f\x65\x75\x73\x57','\x45\x31\x48\x33\x6d\x38\x6f\x51\x64\x30\x78\x64\x4b\x57','\x57\x50\x53\x4b\x69\x33\x4e\x64\x49\x47','\x66\x33\x50\x4b\x57\x36\x44\x2b\x66\x76\x4a\x64\x4e\x47','\x68\x6d\x6b\x55\x42\x78\x4e\x64\x52\x47'];_0x5cb2=function(){return _0x5d36df;};return _0x5cb2();}const _0x148b74=-0x1102+0x1c51*0x1+-0x74f;function _0x57bcdd(_0x486ec6,_0x5b3511){const _0x356847=_0x177a91,_0x22b7cd={'\x78\x47\x4e\x53\x4e':function(_0x1a37aa,_0x58914d){return _0x1a37aa||_0x58914d;},'\x66\x65\x56\x41\x43':function(_0x270b18,_0x52b5e3){return _0x270b18===_0x52b5e3;},'\x44\x64\x77\x6a\x46':function(_0x22491e,_0x12bf10){return _0x22491e(_0x12bf10);},'\x58\x63\x61\x56\x6b':function(_0x1f2c67,_0x1d1ec6){return _0x1f2c67>=_0x1d1ec6;},'\x63\x4e\x41\x57\x46':function(_0x5efdda,_0x13f0ec){return _0x5efdda>_0x13f0ec;}};if(_0x22b7cd[_0x356847(0x3ac,'\x6b\x6c\x74\x7a')](!_0x486ec6,!_0x5b3511)||_0x22b7cd[_0x356847(0x2d6,'\x44\x31\x6b\x21')](_0x5b3511[_0x356847(0x408,'\x69\x43\x7a\x4e')],-0x1780+-0xeca+0x264a))return![];const _0x438cf6=_0x22b7cd['\x44\x64\x77\x6a\x46'](String,_0x486ec6),_0x34c6d4=_0x5b3511[_0x356847(0x222,'\x4b\x31\x36\x39')](_0x16e5c3=>String(_0x16e5c3)),_0x3fd139=_0x22b7cd[_0x356847(0x266,'\x67\x2a\x23\x5d')](_0x438cf6[_0x356847(0x39f,'\x5e\x28\x4f\x45')],0x134b*0x1+-0x1065+-0x2e4)&&_0x438cf6[_0x356847(0x31f,'\x4b\x31\x36\x39')+'\x74\x68']('\x2f')&&_0x22b7cd[_0x356847(0x22a,'\x56\x39\x4c\x62')](_0x438cf6[_0x356847(0x27b,'\x31\x26\x70\x4a')+_0x356847(0x35e,'\x73\x4c\x34\x69')]('\x2f'),-0x554*0x6+-0x12b*0x1a+0x3e56);if(_0x3fd139){if(_0x22b7cd[_0x356847(0x20b,'\x72\x5e\x70\x39')](_0x438cf6[_0x356847(0x321,'\x64\x69\x48\x54')],_0x148b74))return![];const _0x48266e=_0x438cf6[_0x356847(0x22b,'\x4e\x21\x42\x53')+_0x356847(0x3dc,'\x56\x39\x4c\x62')]('\x2f'),_0x434563=_0x438cf6[_0x356847(0x487,'\x40\x5a\x65\x54')](-0x1*0xc37+0x3ca+-0x53*-0x1a,_0x48266e),_0x22a5c2=_0x438cf6['\x73\x6c\x69\x63\x65'](_0x48266e+(-0x12b6+0xe74+0x443));try{const _0x4e88f4=new RegExp(_0x434563,_0x22b7cd[_0x356847(0x143,'\x62\x58\x5b\x6a')](_0x22a5c2,'\x69'));return _0x34c6d4[_0x356847(0x12d,'\x72\x4c\x34\x72')](_0x3ceb40=>_0x4e88f4[_0x356847(0x2f6,'\x41\x30\x2a\x70')](_0x3ceb40));}catch(_0x431fd7){}}if(_0x438cf6[_0x356847(0x319,'\x56\x39\x4c\x62')]('\x7c')&&!_0x438cf6[_0x356847(0x413,'\x5e\x47\x53\x39')+'\x74\x68']('\x2f')){const _0x1aa98e=_0x438cf6[_0x356847(0x35a,'\x46\x23\x55\x7a')]('\x7c')[_0x356847(0x3de,'\x40\x5a\x65\x54')](_0x59757d=>_0x59757d[_0x356847(0x3e9,'\x6b\x6c\x74\x7a')]()[_0x356847(0x34d,'\x72\x5e\x70\x39')+'\x61\x73\x65']())['\x66\x69\x6c\x74\x65\x72'](Boolean);return _0x1aa98e['\x73\x6f\x6d\x65'](_0x357db=>_0x34c6d4[_0x356847(0x425,'\x35\x37\x78\x74')](_0x27419b=>_0x27419b[_0x356847(0x346,'\x7a\x74\x54\x6c')+'\x61\x73\x65']()[_0x356847(0x326,'\x62\x45\x68\x4c')](_0x357db)));}const _0x4a7f9d=_0x438cf6[_0x356847(0x2ca,'\x61\x33\x2a\x23')+_0x356847(0x42a,'\x40\x5a\x65\x54')]();return _0x34c6d4['\x73\x6f\x6d\x65'](_0x383de5=>_0x383de5[_0x356847(0x2fb,'\x4e\x21\x42\x53')+_0x356847(0x3e3,'\x6b\x6c\x74\x7a')]()[_0x356847(0x44d,'\x40\x5a\x65\x54')](_0x4a7f9d));}function _0x219ee0(_0x4d3d4e,_0x3f6c91){const _0x2b5e74=_0x177a91,_0x1977cc={'\x4b\x58\x57\x50\x4f':function(_0x3512eb,_0x2a8db9){return _0x3512eb!==_0x2a8db9;},'\x75\x71\x74\x7a\x6e':function(_0x358f9d,_0x1124c3,_0x7c9bb9){return _0x358f9d(_0x1124c3,_0x7c9bb9);},'\x55\x56\x4d\x57\x65':function(_0x4d93fd,_0x3c1cd9){return _0x4d93fd===_0x3c1cd9;},'\x4a\x4e\x5a\x6c\x78':function(_0x165d4a,_0x422b1c){return _0x165d4a*_0x422b1c;},'\x4e\x70\x45\x68\x65':function(_0x4cc568,_0x3bfa35,_0x43dcd8){return _0x4cc568(_0x3bfa35,_0x43dcd8);},'\x59\x4e\x62\x43\x72':function(_0xf0ef20,_0x4cb5ae){return _0xf0ef20*_0x4cb5ae;},'\x67\x41\x53\x4f\x41':function(_0x502a4d,_0x3202f9){return _0x502a4d+_0x3202f9;}};if(!_0x4d3d4e||_0x1977cc[_0x2b5e74(0x212,'\x4e\x77\x6c\x5e')](_0x4d3d4e[_0x2b5e74(0x37c,'\x64\x69\x48\x54')],_0x2b5e74(0x2cd,'\x25\x51\x4f\x34')))return 0x24f0+0x57f+0x27f*-0x11;const _0x31867c=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x4d3d4e[_0x2b5e74(0x302,'\x6a\x5b\x61\x23')+_0x2b5e74(0x1e3,'\x31\x26\x70\x4a')])?_0x4d3d4e[_0x2b5e74(0x318,'\x64\x69\x48\x54')+_0x2b5e74(0x2d0,'\x24\x5a\x58\x36')]:[],_0x1d6c2f=_0x1977cc['\x75\x71\x74\x7a\x6e'](_0x5f3632,_0x4d3d4e,_0x3f6c91);if(_0x1977cc[_0x2b5e74(0x403,'\x4e\x25\x30\x30')](_0x31867c[_0x2b5e74(0x163,'\x73\x4c\x34\x69')],0x129e+0xcf9+0x1f97*-0x1))return _0x1d6c2f>0x19de+0x8a*0xe+-0x216a?_0x1977cc['\x4a\x4e\x5a\x6c\x78'](_0x1d6c2f,0x1db*-0x1+0x1186+-0xfab+0.6):0x1a97*-0x1+-0x2152+0x3be9;let _0x4b0410=-0x16ac+0x2594+-0x2*0x774;for(const _0x19ce44 of _0x31867c){if(_0x1977cc[_0x2b5e74(0x2f0,'\x40\x5a\x65\x54')](_0x57bcdd,_0x19ce44,_0x3f6c91))_0x4b0410+=0x6*0x3b7+-0xa0*-0x32+-0x3589;}const _0x2f9583=_0x1977cc[_0x2b5e74(0x488,'\x6b\x6c\x74\x7a')](_0x2e3895(_0x4d3d4e,_0x3f6c91),_0xa0f148);return _0x1977cc[_0x2b5e74(0x2aa,'\x61\x33\x2a\x23')](_0x4b0410+_0x1977cc[_0x2b5e74(0x242,'\x7a\x74\x54\x6c')](_0x1d6c2f,0x1f79+-0x1689+-0x23c*0x4+0.6),_0x2f9583);}function _0x5b58fe(_0x595384,_0x4575ee,_0x40ee79){const _0x578050=_0x177a91,_0x17e280={'\x43\x58\x6f\x68\x62':function(_0x5e4532,_0x5955e8){return _0x5e4532>=_0x5955e8;},'\x64\x52\x73\x61\x48':function(_0x300534,_0x4be567){return _0x300534(_0x4be567);},'\x45\x49\x4a\x6c\x41':function(_0x5bd5ee,_0x2efd3c){return _0x5bd5ee-_0x2efd3c;},'\x4f\x69\x4c\x4c\x43':function(_0x4195fb,_0x9bda74){return _0x4195fb!==_0x9bda74;},'\x77\x44\x67\x45\x53':function(_0x257b7f,_0x4c6fc5){return _0x257b7f<_0x4c6fc5;},'\x42\x55\x71\x68\x53':function(_0xf952f7,_0x2e3b8d){return _0xf952f7===_0x2e3b8d;},'\x42\x73\x65\x77\x4d':_0x578050(0x357,'\x40\x5a\x65\x54'),'\x76\x4b\x72\x54\x73':_0x578050(0x336,'\x4d\x68\x40\x4e'),'\x61\x62\x56\x69\x62':'\x68\x61\x72\x64','\x44\x50\x74\x44\x4a':function(_0x3af79c,_0x1d220f,_0x44cc71){return _0x3af79c(_0x1d220f,_0x44cc71);},'\x56\x55\x51\x6a\x5a':function(_0x4e810d,_0x55ad2b){return _0x4e810d>_0x55ad2b;},'\x44\x4e\x63\x4f\x75':_0x578050(0x3a6,'\x70\x41\x62\x30'),'\x4f\x43\x58\x4b\x77':function(_0x2a9126,_0x21785c){return _0x2a9126<_0x21785c;},'\x4f\x7a\x48\x6c\x4a':_0x578050(0x2a9,'\x55\x6b\x56\x76'),'\x4a\x76\x63\x4c\x4e':function(_0x5d9c1b,_0x403048){return _0x5d9c1b===_0x403048;}};if(!_0x595384||_0x17e280[_0x578050(0x431,'\x25\x51\x4f\x34')](_0x595384['\x74\x79\x70\x65'],_0x578050(0x274,'\x6b\x5a\x21\x5b')))return-0x1*0x29b+0x38*-0x20+0x99b;let _0xa6d449=-0x1b7f*-0x1+-0x83c+0x1*-0x1343;const _0x5026a3=Array[_0x578050(0x235,'\x73\x4c\x34\x69')](_0x595384[_0x578050(0x1f7,'\x52\x73\x66\x45')+_0x578050(0x123,'\x5a\x40\x43\x4f')])?_0x595384[_0x578050(0x27a,'\x54\x32\x41\x2a')+_0x578050(0x337,'\x69\x43\x7a\x4e')][_0x578050(0x234,'\x29\x23\x5d\x56')](-(0xc38+-0x8e1+-0x34f)):[];for(let _0xb543ce=0x493*0x1+0xc39+-0x10cc;_0x17e280[_0x578050(0x306,'\x6b\x5a\x21\x5b')](_0xb543ce,_0x5026a3[_0x578050(0x3a3,'\x30\x37\x24\x71')]);_0xb543ce++){if(_0x17e280[_0x578050(0x24d,'\x25\x51\x4f\x34')](_0x17e280[_0x578050(0x251,'\x72\x5e\x70\x39')],'\x46\x6b\x59\x69\x67')){const _0x39e0b8=_0x5026a3[_0xb543ce];if(!_0x39e0b8)continue;if(_0x17e280[_0x578050(0x472,'\x70\x41\x62\x30')](_0x39e0b8[_0x578050(0x414,'\x38\x53\x6b\x73')],_0x17e280[_0x578050(0x24f,'\x30\x37\x24\x71')]))_0xa6d449+=-0x87+0x18fc+-0x1875+0.12;else{if(_0x39e0b8['\x6d\x6f\x64\x65']===_0x17e280[_0x578050(0x245,'\x25\x51\x50\x72')])_0xa6d449-=-0xbd*-0xe+-0x1e77+0x1421+0.22;else{if(_0x17e280['\x42\x55\x71\x68\x53'](_0x39e0b8[_0x578050(0x2ba,'\x46\x23\x55\x7a')],_0x578050(0x2c4,'\x67\x2a\x23\x5d')))_0xa6d449-=-0x11b1+-0x1e4f*-0x1+-0xc9e+0.08;}}}else return _0x576a21(_0x12fad1)[_0x578050(0x13c,'\x41\x30\x2a\x70')+_0x578050(0x411,'\x62\x45\x68\x4c')]();}_0xa6d449+=_0x17e280['\x44\x50\x74\x44\x4a'](_0x4ced5d,_0x595384,_0x40ee79);if(Array['\x69\x73\x41\x72\x72\x61\x79'](_0x595384[_0x578050(0x363,'\x24\x5a\x58\x36')+_0x578050(0x2a3,'\x44\x31\x6b\x21')])&&_0x17e280[_0x578050(0x429,'\x6a\x5b\x61\x23')](_0x595384[_0x578050(0x329,'\x52\x54\x2a\x6e')+_0x578050(0x2b3,'\x57\x39\x26\x4c')][_0x578050(0x401,'\x4e\x66\x4c\x25')],-0x1b5d+0x2e1*-0x3+-0xc00*-0x3)){if(_0x17e280[_0x578050(0x227,'\x5e\x47\x53\x39')](_0x17e280[_0x578050(0x33c,'\x25\x59\x77\x62')],_0x578050(0x31d,'\x5a\x40\x43\x4f')))return ODVnqF[_0x578050(0x415,'\x52\x73\x66\x45')](_0x4e45f2[_0x578050(0x126,'\x55\x6b\x56\x76')],-0x100e+-0x3f6*-0x7+-0xbaa)&&!_0x3c0e91[_0x578050(0x17a,'\x31\x26\x70\x4a')](_0x529e86);else{let _0x4d7b19=0x1*-0x188a+0x38b*0x3+0x1*0xde9;const _0x29db86=new Set(_0x17e280['\x44\x50\x74\x44\x4a'](_0x249640,_0x4575ee,'')),_0x1d94e3=_0x595384['\x61\x6e\x74\x69\x5f\x70\x61\x74'+_0x578050(0x2b3,'\x57\x39\x26\x4c')]['\x73\x6c\x69\x63\x65'](-(-0x6ab+-0x1a39+0x17f*0x16));for(let _0x1ee593=-0xc90+-0x2693+0x2b1*0x13;_0x17e280['\x4f\x43\x58\x4b\x77'](_0x1ee593,_0x1d94e3[_0x578050(0x14c,'\x54\x32\x41\x2a')]);_0x1ee593++){if(_0x17e280[_0x578050(0x161,'\x72\x4c\x34\x72')](_0x17e280['\x4f\x7a\x48\x6c\x4a'],_0x17e280[_0x578050(0x31a,'\x5e\x28\x4f\x45')])){const _0x29e293=_0x1d94e3[_0x1ee593];if(!_0x29e293||!Array[_0x578050(0x355,'\x39\x51\x33\x55')](_0x29e293[_0x578050(0x200,'\x70\x41\x62\x30')+_0x578050(0x45b,'\x4e\x77\x6c\x5e')]))continue;const _0x3004bc=_0x29e293[_0x578050(0x3e0,'\x24\x5a\x58\x36')+'\x5f\x73\x69\x67\x6e\x61\x6c\x73'][_0x578050(0x42f,'\x39\x51\x33\x55')](function(_0x19e8bf){const _0x2fa3e8=_0x578050;return _0x29db86[_0x2fa3e8(0x33f,'\x62\x58\x5b\x6a')](_0x17e280[_0x2fa3e8(0x449,'\x62\x45\x68\x4c')](String,_0x19e8bf));});if(_0x3004bc)_0x4d7b19+=_0x17e280[_0x578050(0x3fd,'\x7a\x74\x54\x6c')](_0x29e293[_0x578050(0x33a,'\x5e\x28\x4f\x45')],_0x578050(0x19a,'\x46\x23\x55\x7a'))?0x43*-0x3a+-0x9*0x14+0x7f1*0x2+0.4:0xb10+0x15db+-0x20eb+0.18;}else return _0x17e280[_0x578050(0x42d,'\x24\x5a\x58\x36')](_0x259403[_0x578050(0x1d8,'\x46\x23\x55\x7a')],_0x1277b1[_0x578050(0x3d7,'\x5b\x77\x4d\x28')]);}_0xa6d449-=_0x4d7b19;}}return Math['\x6d\x61\x78'](-(0x1*0xb08+0x782+-0x1289+0.5),Math[_0x578050(0x310,'\x4d\x68\x40\x4e')](-0x2348+0xe17*0x1+-0xa99*-0x2+0.5,_0xa6d449));}const _0x295e22=-0x255b+-0x5b6+0x2b1b,_0x387b46=0xe58*0x1+0xabb+0x395*-0x7+0.3,_0x26cbe8=0xc*0x141+-0x2012+-0x1*-0x1106+0.02;function _0x196f52(_0x34b46b){const _0x43ac7f=_0x177a91,_0x3ff24f={'\x4b\x47\x6d\x5a\x6c':function(_0x53cd8d,_0x4f18de){return _0x53cd8d(_0x4f18de);},'\x6f\x58\x62\x55\x76':function(_0x451662,_0x444919){return _0x451662===_0x444919;},'\x78\x42\x69\x44\x79':function(_0x54c526,_0x148280){return _0x54c526===_0x148280;},'\x69\x4c\x47\x74\x47':function(_0x4b2d3d,_0xa7a2ae){return _0x4b2d3d===_0xa7a2ae;},'\x59\x69\x50\x55\x7a':function(_0x43e37d,_0x2b0488){return _0x43e37d+_0x2b0488;},'\x75\x4b\x6f\x46\x57':function(_0x4e5677,_0x2c8262){return _0x4e5677===_0x2c8262;},'\x55\x65\x47\x77\x74':function(_0x158e70,_0x360c1e){return _0x158e70/_0x360c1e;},'\x76\x45\x72\x52\x72':function(_0x2572f5,_0x3f1154){return _0x2572f5(_0x3f1154);},'\x76\x46\x75\x74\x5a':function(_0x2c9cd3,_0x183cf6){return _0x2c9cd3(_0x183cf6);},'\x68\x51\x44\x68\x6f':function(_0x4a6f9e,_0x1ce9e1){return _0x4a6f9e(_0x1ce9e1);},'\x4e\x56\x6c\x69\x78':function(_0x144a0e,_0x1f0e3c){return _0x144a0e||_0x1f0e3c;},'\x44\x79\x65\x53\x50':function(_0x37ed63,_0x5a29d0){return _0x37ed63(_0x5a29d0);},'\x47\x48\x70\x68\x7a':function(_0x22e9a0,_0x1fc820){return _0x22e9a0(_0x1fc820);},'\x6a\x52\x6c\x48\x68':function(_0xc44f1,_0xfbdfa){return _0xc44f1*_0xfbdfa;},'\x44\x66\x59\x6b\x4e':function(_0x2986a0,_0x1f1e0e){return _0x2986a0>_0x1f1e0e;},'\x61\x69\x4e\x6d\x61':function(_0x243c47,_0x47a0a9){return _0x243c47-_0x47a0a9;},'\x68\x53\x69\x6f\x56':function(_0x53a5c3,_0x314c84){return _0x53a5c3+_0x314c84;},'\x74\x59\x50\x6b\x78':function(_0x292ad6,_0x42e775){return _0x292ad6!=_0x42e775;},'\x63\x69\x50\x55\x69':function(_0x1f9c75,_0x9e3a8c){return _0x1f9c75!==_0x9e3a8c;},'\x53\x73\x4d\x5a\x52':_0x43ac7f(0x393,'\x69\x43\x7a\x4e'),'\x6f\x4b\x51\x67\x43':_0x43ac7f(0x21c,'\x31\x26\x70\x4a'),'\x4a\x6c\x6d\x54\x58':function(_0x21ad4d,_0x91575a){return _0x21ad4d/_0x91575a;}},_0x265181=!!(_0x34b46b&&_0x34b46b[_0x43ac7f(0x412,'\x29\x23\x5d\x56')+_0x43ac7f(0x30e,'\x70\x41\x62\x30')]),_0x55a4da=_0x34b46b&&Number[_0x43ac7f(0x16a,'\x25\x51\x50\x72')](_0x3ff24f[_0x43ac7f(0x22e,'\x53\x5d\x6c\x59')](Number,_0x34b46b[_0x43ac7f(0x35f,'\x48\x51\x4b\x70')+'\x65\x50\x6f\x70\x75\x6c\x61\x74'+'\x69\x6f\x6e\x53\x69\x7a\x65']))?_0x3ff24f[_0x43ac7f(0x238,'\x76\x51\x23\x68')](Number,_0x34b46b[_0x43ac7f(0x1c5,'\x39\x51\x33\x55')+_0x43ac7f(0x1b0,'\x4b\x31\x36\x39')+_0x43ac7f(0x32d,'\x44\x31\x6b\x21')]):null,_0x182240=_0x34b46b&&Number[_0x43ac7f(0x389,'\x4e\x25\x30\x30')](Number(_0x34b46b[_0x43ac7f(0x3ce,'\x52\x73\x66\x45')+_0x43ac7f(0x23d,'\x38\x53\x6b\x73')]))?_0x3ff24f[_0x43ac7f(0x14a,'\x70\x41\x62\x30')](Number,_0x34b46b[_0x43ac7f(0x19e,'\x76\x51\x23\x68')+_0x43ac7f(0x197,'\x6b\x76\x40\x39')]):null,_0x277c51=_0x3ff24f[_0x43ac7f(0x2cc,'\x4e\x77\x6c\x5e')](_0x55a4da,_0x182240)||null;if(_0x265181){if(!_0x277c51||_0x277c51<=0x1*-0x590+0xa+-0x587*-0x1)return 0x18d5+0x3*-0x9fe+0x525+0.7;const _0x3e9eea=_0x34b46b&&Number[_0x43ac7f(0x2ef,'\x6a\x5b\x61\x23')](_0x3ff24f[_0x43ac7f(0x281,'\x72\x4c\x34\x72')](Number,_0x34b46b[_0x43ac7f(0x3d1,'\x56\x39\x4c\x62')+_0x43ac7f(0x295,'\x72\x4c\x34\x72')]))?_0x3ff24f[_0x43ac7f(0x308,'\x62\x58\x5b\x6a')](Number,_0x34b46b[_0x43ac7f(0x3c3,'\x52\x73\x66\x45')+_0x43ac7f(0x25f,'\x5b\x77\x4d\x28')]):0x9b6+-0xb7d+0x1c7,_0x1a7ff1=_0x3ff24f[_0x43ac7f(0x3be,'\x4b\x31\x36\x39')](_0x277c51,_0x295e22),_0x258d27=_0x3ff24f[_0x43ac7f(0x152,'\x56\x39\x4c\x62')](_0x1a7ff1,0x102+-0x192a+0x1828)?Math['\x6d\x69\x6e'](0x1b*0x1+0x1774+0x14f*-0x12,_0x3ff24f[_0x43ac7f(0x2f2,'\x6b\x76\x40\x39')](_0x3e9eea,_0x1a7ff1)):-0x8fb+0xd5e+-0x463,_0x33f823=_0x3ff24f[_0x43ac7f(0x344,'\x55\x6b\x56\x76')](_0x387b46,_0x3ff24f[_0x43ac7f(0x267,'\x56\x39\x4c\x62')](_0x387b46,_0x26cbe8)*_0x258d27);return Math[_0x43ac7f(0x2f5,'\x46\x23\x55\x7a')](0x1*0x11d+0x9b*0x3a+-0x243a,_0x3ff24f[_0x43ac7f(0x138,'\x41\x30\x2a\x70')]((0x2*0x7d5+0x1753+-0x9bf*0x4)/Math['\x73\x71\x72\x74'](_0x277c51),_0x33f823));}if(_0x3ff24f[_0x43ac7f(0x2fd,'\x53\x5d\x6c\x59')](_0x277c51,null)&&_0x3ff24f[_0x43ac7f(0x35b,'\x54\x32\x41\x2a')](_0x277c51,-0xef7*0x2+-0x164+0x1f52*0x1)){if(_0x3ff24f[_0x43ac7f(0x182,'\x52\x73\x66\x45')](_0x3ff24f[_0x43ac7f(0x1d4,'\x64\x69\x48\x54')],_0x3ff24f[_0x43ac7f(0x232,'\x25\x51\x4f\x34')]))return Math[_0x43ac7f(0x296,'\x54\x32\x41\x2a')](0x92f*-0x4+-0x19ee*-0x1+0xacf,_0x3ff24f[_0x43ac7f(0x317,'\x52\x54\x2a\x6e')](-0x4*0x440+-0x2*0x1181+0x5*0xa67,Math[_0x43ac7f(0x434,'\x52\x54\x2a\x6e')](_0x277c51)));else{const _0x267344={'\x42\x49\x76\x78\x4e':function(_0x29c819,_0x425032){const _0x1d7ba2=_0x43ac7f;return _0x3ff24f[_0x1d7ba2(0x13f,'\x6b\x5a\x21\x5b')](_0x29c819,_0x425032);}},_0x4dea8f=new _0x1fc061((_0x59e594[_0x43ac7f(0x224,'\x29\x23\x5d\x56')](_0x12e0b6[_0x43ac7f(0x3c4,'\x67\x2a\x23\x5d')+_0x43ac7f(0x189,'\x38\x53\x6b\x73')])?_0x54502d[_0x43ac7f(0x318,'\x64\x69\x48\x54')+_0x43ac7f(0x35c,'\x29\x23\x5d\x56')]:[])[_0x43ac7f(0x282,'\x4d\x68\x40\x4e')](function(_0x13460c){const _0x407aa8=_0x43ac7f;return _0x267344[_0x407aa8(0x298,'\x38\x53\x6b\x73')](_0x5c9385,_0x13460c)[_0x407aa8(0x1cf,'\x5e\x5b\x45\x39')+_0x407aa8(0x479,'\x5e\x47\x53\x39')]();})),_0x17be81=new _0x31fe76((_0x2e96b8[_0x43ac7f(0x362,'\x76\x51\x23\x68')](_0x2ff4fd['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+'\x6d\x61\x74\x63\x68'])?_0x2baadd['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x43ac7f(0x2d0,'\x24\x5a\x58\x36')]:[])[_0x43ac7f(0x387,'\x61\x33\x2a\x23')](function(_0x1b59df){const _0x5b01dc=_0x43ac7f;return _0x267344[_0x5b01dc(0x2e8,'\x24\x5a\x58\x36')](_0x206b18,_0x1b59df)[_0x5b01dc(0x17c,'\x76\x51\x23\x68')+_0x5b01dc(0x1a7,'\x39\x51\x33\x55')]();}));if(_0x3ff24f[_0x43ac7f(0x426,'\x72\x4c\x34\x72')](_0x4dea8f[_0x43ac7f(0x407,'\x56\x39\x4c\x62')],0x6*-0x2c2+-0xf55+0x1fe1)&&_0x3ff24f[_0x43ac7f(0x31b,'\x29\x23\x5d\x56')](_0x17be81[_0x43ac7f(0x3af,'\x52\x73\x66\x45')],0xec*0x1+-0x6d9*0x5+0xb1b*0x3))return 0x4*0x121+-0xc32+0x7ae;if(_0x3ff24f[_0x43ac7f(0x38a,'\x29\x23\x5d\x56')](_0x4dea8f[_0x43ac7f(0x314,'\x72\x5e\x70\x39')],-0x1e8b+0xd95*-0x2+-0x53f*-0xb)||_0x3ff24f[_0x43ac7f(0x2bb,'\x31\x26\x70\x4a')](_0x17be81['\x73\x69\x7a\x65'],-0x1*-0x1f+-0xce4+0xcc5))return 0x2090+-0x509*-0x7+0x43cf*-0x1;let _0x1fccd8=-0xf*-0x212+-0x36+0xe*-0x234;for(const _0xb6c409 of _0x4dea8f)if(_0x17be81[_0x43ac7f(0x2b9,'\x4e\x77\x6c\x5e')](_0xb6c409))_0x1fccd8++;const _0x530304=_0x3ff24f['\x59\x69\x50\x55\x7a'](_0x4dea8f[_0x43ac7f(0x299,'\x4e\x25\x30\x30')],_0x17be81[_0x43ac7f(0x325,'\x5a\x40\x43\x4f')])-_0x1fccd8;return _0x3ff24f[_0x43ac7f(0x1a3,'\x46\x23\x55\x7a')](_0x530304,0x13*0x1e7+0x812*-0x4+-0x3dd)?0x157f+0x1*0xd03+0x2282*-0x1:_0x3ff24f[_0x43ac7f(0x3cf,'\x44\x31\x6b\x21')](_0x1fccd8,_0x530304);}}return-0x1*-0x37+-0x1b1d+0x1ae6;}const _0x4601ab=0x197c+-0x731*0x1+-0x1246*0x1,_0x399c24=0x12cf*0x2+-0xcd*0xf+0x5*-0x50b;function _0x5b4c(_0x5d3980,_0x4fb40e){_0x5d3980=_0x5d3980-(-0x1dde*-0x1+0x753+0x1207*-0x2);const _0x45939a=_0x5cb2();let _0x2dbe2c=_0x45939a[_0x5d3980];if(_0x5b4c['\x63\x6c\x72\x76\x67\x49']===undefined){var _0xfc14ae=function(_0x5f2747){const _0xadf0d1='\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 _0x1f6fac='',_0xa27ba8='',_0x35122c=_0x1f6fac+_0xfc14ae,_0xe6b0b9=(''+function(){return-0xa*0x2bd+0x17*-0xe2+0x2fb0;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x1244+0x21ee*-0x1+-0x539*-0x3);for(let _0x31db18=-0x84b+-0x1f95+0x27e0,_0x28421b,_0x3db260,_0x201bbf=0xd*-0x6a+0x1471*0x1+-0xf0f;_0x3db260=_0x5f2747['\x63\x68\x61\x72\x41\x74'](_0x201bbf++);~_0x3db260&&(_0x28421b=_0x31db18%(-0x526*-0x7+0x1*0x2d3+0x451*-0x9)?_0x28421b*(-0x47*0x76+-0xe68+0x2f62)+_0x3db260:_0x3db260,_0x31db18++%(0x1cf8+0x7*-0x20f+-0xe8b))?_0x1f6fac+=_0xe6b0b9||_0x35122c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x201bbf+(0x1ce8+-0xec0+0xe1e*-0x1))-(-0x2251+-0x5ae+0x2809)!==0x276+0x1b3+-0x429?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1*-0x909+-0xaba+0x14c2&_0x28421b>>(-(0x21bd+-0xfd5+-0x11e6)*_0x31db18&0x555+0x526+-0xa75*0x1)):_0x31db18:0x23ef+0x2f8+-0x26e7){_0x3db260=_0xadf0d1['\x69\x6e\x64\x65\x78\x4f\x66'](_0x3db260);}for(let _0x1c1807=-0x1*-0x91d+0x1c*-0xbb+0xb57,_0x40b091=_0x1f6fac['\x6c\x65\x6e\x67\x74\x68'];_0x1c1807<_0x40b091;_0x1c1807++){_0xa27ba8+='\x25'+('\x30\x30'+_0x1f6fac['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1c1807)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1*0x22f9+-0x9f8+-0x18f1))['\x73\x6c\x69\x63\x65'](-(-0x1b80+-0x89*-0x1a+-0x1d*-0x78));}return decodeURIComponent(_0xa27ba8);};const _0x125586=function(_0x54c121,_0x42a3c8){let _0x1127fa=[],_0x1445cf=-0x69*0x45+-0x2*-0x380+0x154d,_0x428ff0,_0x415844='';_0x54c121=_0xfc14ae(_0x54c121);let _0x6d604e;for(_0x6d604e=0x71f+-0x1*-0x18a5+0x1ac*-0x13;_0x6d604e<0x1617+0x13*-0x3d+-0x1090;_0x6d604e++){_0x1127fa[_0x6d604e]=_0x6d604e;}for(_0x6d604e=0x2*-0x24f+-0x1af2+0x1f90;_0x6d604e<-0x20c+-0x8*-0x248+-0x3cd*0x4;_0x6d604e++){_0x1445cf=(_0x1445cf+_0x1127fa[_0x6d604e]+_0x42a3c8['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x6d604e%_0x42a3c8['\x6c\x65\x6e\x67\x74\x68']))%(-0x1eea+-0x1339+0x3323),_0x428ff0=_0x1127fa[_0x6d604e],_0x1127fa[_0x6d604e]=_0x1127fa[_0x1445cf],_0x1127fa[_0x1445cf]=_0x428ff0;}_0x6d604e=-0x2*0x6d9+-0x581*-0x2+0x2b0,_0x1445cf=-0x4db*0x4+-0xd85+-0x1*-0x20f1;for(let _0x561b23=-0x357*0x5+0x1*-0x817+0xc65*0x2;_0x561b23<_0x54c121['\x6c\x65\x6e\x67\x74\x68'];_0x561b23++){_0x6d604e=(_0x6d604e+(0x1af*-0xa+0x1*0x1a5f+0x2*-0x4c4))%(-0x1cea+-0x1*-0x25c5+0x7db*-0x1),_0x1445cf=(_0x1445cf+_0x1127fa[_0x6d604e])%(-0x4c1+-0x551*0x1+0xb12),_0x428ff0=_0x1127fa[_0x6d604e],_0x1127fa[_0x6d604e]=_0x1127fa[_0x1445cf],_0x1127fa[_0x1445cf]=_0x428ff0,_0x415844+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x54c121['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x561b23)^_0x1127fa[(_0x1127fa[_0x6d604e]+_0x1127fa[_0x1445cf])%(0x74*-0x2e+0x9cf*-0x3+0x3345)]);}return _0x415844;};_0x5b4c['\x62\x69\x4e\x67\x42\x46']=_0x125586,_0x5b4c['\x61\x65\x6a\x65\x5a\x79']={},_0x5b4c['\x63\x6c\x72\x76\x67\x49']=!![];}const _0x5e8083=_0x45939a[0xf93+0x2b*0xd9+0x3406*-0x1],_0x5e3533=_0x5d3980+_0x5e8083,_0x15caec=_0x5b4c['\x61\x65\x6a\x65\x5a\x79'][_0x5e3533];if(!_0x15caec){if(_0x5b4c['\x6e\x57\x41\x66\x4f\x46']===undefined){const _0x529b62=function(_0x43906e){this['\x66\x50\x45\x67\x6a\x54']=_0x43906e,this['\x71\x6c\x6f\x6d\x73\x4f']=[-0x1de0+0x209*0x1+-0x2c*-0xa2,-0x2de+0x8dc+-0x5fe,-0x1ee7+-0x119*0x2+0x2119],this['\x74\x6e\x6b\x59\x6f\x53']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x54\x42\x77\x70\x55\x58']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x51\x51\x5a\x53\x74\x61']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x529b62['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x58\x66\x6c\x5a\x42\x51']=function(){const _0x1f1081=new RegExp(this['\x54\x42\x77\x70\x55\x58']+this['\x51\x51\x5a\x53\x74\x61']),_0x3c8788=_0x1f1081['\x74\x65\x73\x74'](this['\x74\x6e\x6b\x59\x6f\x53']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x71\x6c\x6f\x6d\x73\x4f'][0x2*0x3b0+-0x2*-0x1d9+0xb11*-0x1]:--this['\x71\x6c\x6f\x6d\x73\x4f'][0xdd9+0x18*0x48+0x1*-0x1499];return this['\x55\x52\x64\x57\x49\x51'](_0x3c8788);},_0x529b62['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x55\x52\x64\x57\x49\x51']=function(_0x34ce49){if(!Boolean(~_0x34ce49))return _0x34ce49;return this['\x78\x4b\x42\x49\x55\x47'](this['\x66\x50\x45\x67\x6a\x54']);},_0x529b62['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x78\x4b\x42\x49\x55\x47']=function(_0x844224){for(let _0xeeb7b2=0x1f4b+0x1*0x1f24+-0x3e6f,_0x64d273=this['\x71\x6c\x6f\x6d\x73\x4f']['\x6c\x65\x6e\x67\x74\x68'];_0xeeb7b2<_0x64d273;_0xeeb7b2++){this['\x71\x6c\x6f\x6d\x73\x4f']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x64d273=this['\x71\x6c\x6f\x6d\x73\x4f']['\x6c\x65\x6e\x67\x74\x68'];}return _0x844224(this['\x71\x6c\x6f\x6d\x73\x4f'][0x1462+-0x44a+0x1*-0x1018]);},(''+function(){return 0x1805+-0xb07*-0x1+-0x230c;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x7*0x3f5+-0x441*-0x7+0x213*-0x1)&&new _0x529b62(_0x5b4c)['\x58\x66\x6c\x5a\x42\x51'](),_0x5b4c['\x6e\x57\x41\x66\x4f\x46']=!![];}_0x2dbe2c=_0x5b4c['\x62\x69\x4e\x67\x42\x46'](_0x2dbe2c,_0x4fb40e),_0x5b4c['\x61\x65\x6a\x65\x5a\x79'][_0x5e3533]=_0x2dbe2c;}else _0x2dbe2c=_0x15caec;return _0x2dbe2c;}function _0x5f3d6e(_0x4e887c){const _0x337f20=_0x177a91,_0xa6fc81={};_0xa6fc81[_0x337f20(0x418,'\x41\x75\x6b\x51')]=function(_0x1d6713,_0x40d98c){return _0x1d6713===_0x40d98c;};const _0x2f3aec=_0xa6fc81;return _0x4e887c&&_0x2f3aec[_0x337f20(0x203,'\x61\x33\x2a\x23')](_0x4e887c['\x65\x78\x65\x63\x75\x74\x69\x6f'+_0x337f20(0x3f3,'\x70\x41\x62\x30')],_0x337f20(0x34b,'\x69\x43\x7a\x4e'));}function _0x57e904(_0x4e3e5c,_0x2aeec6,_0x30f826){const _0x122c77=_0x177a91,_0x1bab85={'\x65\x4d\x41\x75\x4c':function(_0x5ebb70,_0x4e75ab,_0x27eb3f){return _0x5ebb70(_0x4e75ab,_0x27eb3f);},'\x78\x44\x4e\x41\x72':function(_0x2d9d90,_0x37c011){return _0x2d9d90>_0x37c011;},'\x6a\x45\x64\x52\x53':function(_0x2e1c87,_0x52a67e){return _0x2e1c87(_0x52a67e);},'\x48\x6c\x51\x56\x6c':_0x122c77(0x2be,'\x38\x53\x6b\x73')+_0x122c77(0x2f1,'\x64\x69\x48\x54')+'\x63\x6b','\x75\x65\x47\x66\x58':_0x122c77(0x3fc,'\x56\x39\x4c\x62'),'\x4a\x53\x71\x69\x67':function(_0x104921,_0x15cfd5){return _0x104921===_0x15cfd5;},'\x45\x58\x50\x51\x63':_0x122c77(0x1bf,'\x31\x26\x70\x4a'),'\x47\x45\x75\x56\x7a':_0x122c77(0x2ed,'\x7a\x74\x54\x6c'),'\x51\x65\x45\x66\x4b':_0x122c77(0x44f,'\x73\x4c\x34\x69'),'\x56\x6f\x7a\x46\x68':function(_0x10364c,_0xb5662d){return _0x10364c>=_0xb5662d;},'\x6e\x48\x55\x55\x4a':_0x122c77(0x1bc,'\x30\x37\x24\x71')+'\x2b\x29\x2b\x24','\x72\x49\x69\x4d\x45':function(_0x32414a,_0x411221){return _0x32414a instanceof _0x411221;},'\x70\x6c\x42\x48\x4c':function(_0x160c87,_0x59ce16){return _0x160c87(_0x59ce16);},'\x62\x5a\x45\x48\x70':function(_0x22813f,_0x1e4871,_0x4a7c83,_0x374fd3){return _0x22813f(_0x1e4871,_0x4a7c83,_0x374fd3);},'\x43\x6d\x52\x4b\x45':function(_0x49686d,_0x24a34a,_0x2a97af,_0x3361b3){return _0x49686d(_0x24a34a,_0x2a97af,_0x3361b3);},'\x53\x70\x74\x44\x76':function(_0x284337,_0x4923b2){return _0x284337(_0x4923b2);},'\x76\x78\x54\x79\x56':function(_0x197f35,_0x26da1b){return _0x197f35||_0x26da1b;},'\x73\x42\x42\x5a\x55':function(_0x13e067,_0x3afe8f,_0x352fd9){return _0x13e067(_0x3afe8f,_0x352fd9);},'\x6f\x4b\x47\x6b\x51':function(_0x2c7693,_0xfa4939){return _0x2c7693===_0xfa4939;},'\x75\x48\x41\x63\x64':_0x122c77(0x3df,'\x29\x23\x5d\x56')+'\x6e','\x70\x71\x6f\x54\x77':_0x122c77(0x42e,'\x76\x51\x23\x68')+_0x122c77(0x3bf,'\x5e\x5b\x45\x39'),'\x41\x66\x47\x78\x47':function(_0x2ad72f,_0x46084a){return _0x2ad72f!==_0x46084a;},'\x44\x51\x53\x47\x56':_0x122c77(0x1c1,'\x25\x59\x77\x62'),'\x66\x48\x55\x78\x79':function(_0x591563,_0x2d5009){return _0x591563<_0x2d5009;},'\x6c\x54\x43\x58\x62':function(_0x59562e,_0x38db57){return _0x59562e===_0x38db57;},'\x6c\x71\x4a\x56\x4c':_0x122c77(0x45e,'\x52\x73\x66\x45'),'\x75\x55\x68\x65\x64':function(_0x56333c,_0x2b3f57){return _0x56333c>_0x2b3f57;},'\x65\x44\x74\x46\x4a':function(_0x1aeb10,_0x4c19a7){return _0x1aeb10-_0x4c19a7;},'\x49\x7a\x45\x49\x73':function(_0x2fc43e,_0x564b5a){return _0x2fc43e!=_0x564b5a;},'\x72\x64\x6f\x54\x46':function(_0x1140dd,_0x18b138){return _0x1140dd<_0x18b138;},'\x52\x4f\x6f\x6b\x4f':function(_0x31b352,_0x25960f){return _0x31b352+_0x25960f;},'\x62\x71\x6e\x6b\x4d':function(_0x539e93,_0xf8a9e3){return _0x539e93===_0xf8a9e3;},'\x63\x7a\x6b\x73\x59':_0x122c77(0x19f,'\x4d\x68\x40\x4e'),'\x4d\x68\x62\x53\x6f':function(_0xccb14b,_0x3d8fa0){return _0xccb14b(_0x3d8fa0);},'\x59\x67\x4a\x48\x67':function(_0x51f9c6,_0x3c2894){return _0x51f9c6(_0x3c2894);},'\x61\x43\x52\x74\x6d':function(_0x586655,_0x40ea20){return _0x586655===_0x40ea20;},'\x66\x6d\x64\x45\x4b':_0x122c77(0x30f,'\x5e\x47\x53\x39'),'\x4b\x5a\x61\x51\x71':_0x122c77(0x462,'\x5e\x28\x4f\x45')+_0x122c77(0x287,'\x4e\x25\x30\x30'),'\x46\x6d\x71\x4c\x56':function(_0x569a32,_0x230790){return _0x569a32===_0x230790;},'\x43\x61\x59\x49\x75':_0x122c77(0x480,'\x24\x5a\x58\x36'),'\x61\x55\x75\x51\x6a':function(_0x167656,_0x307900){return _0x167656*_0x307900;},'\x70\x4c\x6a\x76\x54':function(_0x5d3f3d,_0xd976e0){return _0x5d3f3d>_0xd976e0;},'\x54\x76\x58\x73\x62':function(_0x19f83b,_0x5e4b2a){return _0x19f83b!==_0x5e4b2a;},'\x67\x62\x73\x50\x61':function(_0x5121b7,_0x9b713a){return _0x5121b7>_0x9b713a;},'\x77\x49\x66\x76\x56':function(_0x16ee0a,_0x77e30b){return _0x16ee0a<_0x77e30b;},'\x74\x47\x50\x56\x62':_0x122c77(0x405,'\x25\x51\x50\x72')+'\x79\x5f\x64\x69\x72\x65\x63\x74'+'\x65\x64','\x62\x76\x4c\x41\x52':function(_0x1ac629,_0x352676){return _0x1ac629*_0x352676;},'\x70\x52\x6e\x78\x69':function(_0x55132b,_0x1ebbe3){return _0x55132b!=_0x1ebbe3;},'\x48\x66\x62\x44\x52':function(_0x1e81e7,_0x210d42){return _0x1e81e7<_0x210d42;},'\x61\x42\x68\x48\x4f':_0x122c77(0x2d2,'\x40\x5a\x65\x54')+_0x122c77(0x13e,'\x4e\x25\x30\x30'),'\x46\x57\x47\x41\x6b':_0x122c77(0x2dd,'\x35\x37\x78\x74')},_0x2d0058=Array[_0x122c77(0x2cb,'\x56\x39\x4c\x62')](_0x4e3e5c)?_0x4e3e5c:[],_0x195da6=_0x30f826&&_0x30f826[_0x122c77(0x343,'\x4b\x31\x36\x39')+_0x122c77(0x43e,'\x30\x37\x24\x71')]?_0x30f826[_0x122c77(0x22c,'\x40\x5a\x65\x54')+_0x122c77(0x1c4,'\x41\x75\x6b\x51')]:new Set(),_0x2bfe2a=!!(_0x30f826&&_0x30f826[_0x122c77(0x2da,'\x4e\x77\x6c\x5e')+_0x122c77(0x27c,'\x62\x45\x68\x4c')]),_0x5374e1=_0x30f826&&_0x1bab85['\x62\x71\x6e\x6b\x4d'](typeof _0x30f826[_0x122c77(0x39b,'\x5e\x28\x4f\x45')+_0x122c77(0x1fa,'\x25\x51\x50\x72')],_0x1bab85[_0x122c77(0x360,'\x5b\x77\x4d\x28')])?_0x30f826[_0x122c77(0x468,'\x73\x4c\x34\x69')+'\x64\x47\x65\x6e\x65\x49\x64']:null,_0x2086da=_0x30f826&&_0x30f826[_0x122c77(0x375,'\x5b\x77\x4d\x28')+_0x122c77(0x347,'\x40\x5a\x65\x54')]?_0x30f826[_0x122c77(0x3b0,'\x4b\x31\x36\x39')+_0x122c77(0x26a,'\x41\x30\x2a\x70')]:null,_0x5d8268=_0x30f826&&Array['\x69\x73\x41\x72\x72\x61\x79'](_0x30f826[_0x122c77(0x277,'\x41\x75\x6b\x51')+_0x122c77(0x430,'\x72\x4c\x34\x72')])?_0x30f826[_0x122c77(0x309,'\x53\x5d\x6c\x59')+_0x122c77(0x179,'\x40\x5a\x65\x54')]:[],_0x175477=_0x30f826&&Number[_0x122c77(0x230,'\x6b\x6c\x74\x7a')](_0x1bab85[_0x122c77(0x3a8,'\x25\x59\x77\x62')](Number,_0x30f826[_0x122c77(0x1d9,'\x67\x2a\x23\x5d')+_0x122c77(0x36a,'\x41\x30\x2a\x70')]))?_0x1bab85['\x59\x67\x4a\x48\x67'](Number,_0x30f826[_0x122c77(0x254,'\x31\x26\x70\x4a')+'\x63\x6f\x72\x65']):null,_0x49dcb2=!!(_0x30f826&&_0x30f826[_0x122c77(0x247,'\x46\x23\x55\x7a')+_0x122c77(0x454,'\x56\x39\x4c\x62')]),_0x48f124={};_0x48f124['\x64\x72\x69\x66\x74\x45\x6e\x61'+'\x62\x6c\x65\x64']=_0x2bfe2a,_0x48f124[_0x122c77(0x45d,'\x5e\x28\x4f\x45')+_0x122c77(0x433,'\x44\x31\x6b\x21')+_0x122c77(0x24a,'\x35\x37\x78\x74')]=_0x30f826&&_0x30f826['\x65\x66\x66\x65\x63\x74\x69\x76'+_0x122c77(0x370,'\x25\x51\x4f\x34')+_0x122c77(0x188,'\x54\x32\x41\x2a')],_0x48f124['\x67\x65\x6e\x65\x50\x6f\x6f\x6c'+_0x122c77(0x312,'\x4b\x31\x36\x39')]=_0x2d0058[_0x122c77(0x2f7,'\x70\x41\x62\x30')],_0x48f124['\x6d\x65\x6d\x6f\x72\x79\x45\x76'+'\x69\x64\x65\x6e\x63\x65']=_0x30f826&&_0x30f826['\x6d\x65\x6d\x6f\x72\x79\x45\x76'+_0x122c77(0x288,'\x5e\x47\x53\x39')];let _0x3443ba=_0x1bab85[_0x122c77(0x467,'\x73\x4c\x34\x69')](_0x196f52,_0x48f124);_0x2086da&&_0x2086da['\x61\x63\x74\x69\x76\x65']&&(_0x3443ba=Math[_0x122c77(0x1a2,'\x5e\x47\x53\x39')](_0x3443ba,_0x1bab85[_0x122c77(0x2ea,'\x25\x51\x4f\x34')](_0x2086da[_0x122c77(0x427,'\x29\x23\x5d\x56')],_0x1bab85[_0x122c77(0x46f,'\x25\x59\x77\x62')])?-0xce9+-0x1bf7*0x1+0x28e1:0x31*-0x11+0x1667+-0x1326+0.7));const _0x4cdd4d=_0x2bfe2a||_0x1bab85[_0x122c77(0x475,'\x41\x75\x6b\x51')](_0x3443ba,0x1*-0x1669+0x1c1*-0x6+0x20ef*0x1+0.15),_0x544db6=_0x1bab85[_0x122c77(0x2fa,'\x62\x45\x68\x4c')],_0x1deaf9=-0x1bb9+0x1dd7*0x1+-0x21e+0.8,_0x2a7279=_0x5d64b1(),_0x5cf2bb=_0x2d0058[_0x122c77(0x438,'\x38\x53\x6b\x73')](_0x352e57=>!_0x52c3da(_0x352e57,_0x2a7279))['\x6d\x61\x70'](_0x373d8d=>{const _0x3b83f0=_0x122c77;let _0x4229b3=_0x1bab85[_0x3b83f0(0x3b3,'\x38\x53\x6b\x73')](_0x219ee0,_0x373d8d,_0x2aeec6);_0x4229b3+=_0x5b58fe(_0x373d8d,_0x2aeec6,_0x2a7279);if(_0x1bab85[_0x3b83f0(0x34c,'\x4e\x25\x30\x30')](_0x4229b3,-0x4*0x731+-0x2448+0x410c)&&_0x373d8d['\x69\x64']&&_0x1bab85['\x6a\x45\x64\x52\x53'](String,_0x373d8d['\x69\x64'])[_0x3b83f0(0x400,'\x6b\x5a\x21\x5b')+'\x74\x68'](_0x544db6))_0x4229b3*=_0x1deaf9;const _0x1ec092={};return _0x1ec092[_0x3b83f0(0x372,'\x69\x43\x7a\x4e')]=_0x373d8d,_0x1ec092[_0x3b83f0(0x2e5,'\x7a\x74\x54\x6c')]=_0x4229b3,_0x1ec092;})[_0x122c77(0x404,'\x4e\x21\x42\x53')](_0x675f4e=>_0x675f4e[_0x122c77(0x1d8,'\x46\x23\x55\x7a')]>-0x192e+-0x5b*0x21+0x35b*0xb)['\x73\x6f\x72\x74']((_0x3637cd,_0x2235a7)=>_0x2235a7[_0x122c77(0x264,'\x57\x39\x26\x4c')]-_0x3637cd[_0x122c77(0x29a,'\x55\x6b\x56\x76')]);if(_0x1bab85['\x46\x6d\x71\x4c\x56'](_0x5cf2bb[_0x122c77(0x2f7,'\x70\x41\x62\x30')],-0x1c5a+-0x2547*0x1+0x41a1)){if(_0x1bab85['\x41\x66\x47\x78\x47'](_0x122c77(0x399,'\x6b\x6c\x74\x7a'),_0x122c77(0x44c,'\x67\x2a\x23\x5d'))){const _0x325c9d=_0x2d0058['\x66\x69\x6e\x64'](_0x188f1b=>_0x188f1b&&_0x188f1b['\x69\x64']&&String(_0x188f1b['\x69\x64'])['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x544db6)&&!_0x195da6[_0x122c77(0x35d,'\x6b\x76\x40\x39')](_0x188f1b['\x69\x64'])&&!_0x52c3da(_0x188f1b,_0x2a7279));if(_0x325c9d){const _0x81624d={};return _0x81624d[_0x122c77(0x184,'\x7a\x74\x54\x6c')]=_0x325c9d,_0x81624d[_0x122c77(0x162,'\x24\x5a\x58\x36')+_0x122c77(0x386,'\x4b\x31\x36\x39')]=[],_0x81624d[_0x122c77(0x3b9,'\x55\x6b\x56\x76')+'\x65\x6e\x73\x69\x74\x79']=_0x3443ba,_0x81624d[_0x122c77(0x1dd,'\x5b\x77\x4d\x28')+'\x65']=_0x1bab85[_0x122c77(0x328,'\x57\x39\x26\x4c')],_0x81624d;}const _0x35a84f={};return _0x35a84f[_0x122c77(0x3e5,'\x69\x43\x7a\x4e')]=null,_0x35a84f[_0x122c77(0x3ee,'\x72\x4c\x34\x72')+_0x122c77(0x3a2,'\x38\x53\x6b\x73')]=[],_0x35a84f[_0x122c77(0x1dc,'\x4e\x21\x42\x53')+_0x122c77(0x341,'\x5a\x40\x43\x4f')]=_0x3443ba,_0x35a84f[_0x122c77(0x450,'\x54\x32\x41\x2a')+'\x65']=_0x1bab85[_0x122c77(0x39a,'\x35\x37\x78\x74')],_0x35a84f;}else{const _0x19cdf5=_0x2d9412['\x66\x69\x6e\x64'](_0x42c858=>_0x42c858&&_0x42c858['\x69\x64']&&_0x40d061(_0x42c858['\x69\x64'])[_0x122c77(0x3bb,'\x72\x5e\x70\x39')+'\x74\x68'](_0x2874c3)&&!_0x3f3afe[_0x122c77(0x481,'\x72\x5e\x70\x39')](_0x42c858['\x69\x64'])&&!_0x116ce7(_0x42c858,_0x4fe93a));if(_0x19cdf5){const _0x3a0ae5={};return _0x3a0ae5['\x73\x65\x6c\x65\x63\x74\x65\x64']=_0x19cdf5,_0x3a0ae5[_0x122c77(0x270,'\x62\x58\x5b\x6a')+_0x122c77(0x141,'\x6b\x6c\x74\x7a')]=[],_0x3a0ae5[_0x122c77(0x30d,'\x70\x41\x62\x30')+_0x122c77(0x466,'\x41\x75\x6b\x51')]=_0x3ecb9f,_0x3a0ae5[_0x122c77(0x398,'\x53\x5d\x6c\x59')+'\x65']=_0x1bab85[_0x122c77(0x423,'\x4b\x31\x36\x39')],_0x3a0ae5;}const _0x1aefb7={};return _0x1aefb7['\x73\x65\x6c\x65\x63\x74\x65\x64']=null,_0x1aefb7[_0x122c77(0x23c,'\x53\x5d\x6c\x59')+_0x122c77(0x386,'\x4b\x31\x36\x39')]=[],_0x1aefb7['\x64\x72\x69\x66\x74\x49\x6e\x74'+_0x122c77(0x279,'\x57\x39\x26\x4c')]=_0x2ed23b,_0x1aefb7['\x64\x72\x69\x66\x74\x4d\x6f\x64'+'\x65']=_0x1bab85[_0x122c77(0x2e1,'\x55\x6b\x56\x76')],_0x1aefb7;}}const _0x1e0f4d=-0x12a9+0x21ac+0x71*-0x22+0.5;if(_0x5374e1&&!(_0x2086da&&_0x2086da[_0x122c77(0x41e,'\x5e\x47\x53\x39')])){if(_0x1bab85[_0x122c77(0x24b,'\x41\x30\x2a\x70')](_0x122c77(0x213,'\x52\x54\x2a\x6e'),_0x1bab85[_0x122c77(0x380,'\x39\x51\x33\x55')])){const _0x41f3ea=_0x5cf2bb[_0x122c77(0x14b,'\x70\x41\x62\x30')+'\x78'](_0x83ac16=>_0x83ac16[_0x122c77(0x3fb,'\x5e\x47\x53\x39')]&&_0x83ac16[_0x122c77(0x272,'\x40\x5a\x65\x54')]['\x69\x64']===_0x5374e1);_0x41f3ea>=0x1e0b*0x1+-0x66*0x11+0x353*-0x7&&!_0x195da6[_0x122c77(0x382,'\x25\x51\x50\x72')](_0x5374e1)&&(_0x5cf2bb[_0x41f3ea]={..._0x5cf2bb[_0x41f3ea],'\x73\x63\x6f\x72\x65':_0x1bab85[_0x122c77(0x2f8,'\x30\x37\x24\x71')](_0x5cf2bb[_0x41f3ea][_0x122c77(0x40d,'\x67\x2a\x23\x5d')],_0x1e0f4d)},_0x5cf2bb['\x73\x6f\x72\x74']((_0x2b234f,_0x582eb3)=>_0x582eb3['\x73\x63\x6f\x72\x65']-_0x2b234f[_0x122c77(0x16f,'\x62\x58\x5b\x6a')]));}else _0x4c3be3[_0x122c77(0x446,'\x25\x59\x77\x62')](_0x122c77(0x160,'\x6b\x6c\x74\x7a')+_0x122c77(0x2d5,'\x62\x58\x5b\x6a')+'\x20'+_0x1577d8[_0x122c77(0x1b3,'\x40\x5a\x65\x54')](-0x321*-0x5+-0x896*-0x1+0xc8*-0x1f));}const _0x25c602=_0x5cf2bb[_0x122c77(0x20f,'\x56\x39\x4c\x62')](_0x333f39=>_0x333f39['\x67\x65\x6e\x65']&&!_0x195da6['\x68\x61\x73'](_0x333f39[_0x122c77(0x2a6,'\x64\x69\x48\x54')]['\x69\x64']));if(_0x1bab85[_0x122c77(0x2ea,'\x25\x51\x4f\x34')](_0x25c602[_0x122c77(0x47d,'\x6b\x6c\x74\x7a')],0x2*0x62f+0x7fa*0x2+0x3a*-0x7d))return{'\x73\x65\x6c\x65\x63\x74\x65\x64':null,'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':_0x5cf2bb[_0x122c77(0x2f4,'\x62\x58\x5b\x6a')](-0x2643+-0x4*0x779+0x4427,-0x3d7+0x1cac+-0x18d1)[_0x122c77(0x354,'\x52\x73\x66\x45')](_0x63883e=>_0x63883e[_0x122c77(0x18a,'\x24\x5a\x58\x36')]),'\x64\x72\x69\x66\x74\x49\x6e\x74\x65\x6e\x73\x69\x74\x79':_0x3443ba,'\x64\x72\x69\x66\x74\x4d\x6f\x64\x65':_0x1bab85[_0x122c77(0x15f,'\x7a\x74\x54\x6c')]};if(_0x49dcb2&&_0x1bab85[_0x122c77(0x1a8,'\x38\x53\x6b\x73')](_0x25c602[_0x122c77(0x401,'\x4e\x66\x4c\x25')],0x1*0x1c9a+0x155a*-0x1+-0x73f)){const _0x4a4b54=_0x25c602[-0x198e+-0x505+0x1e93]['\x73\x63\x6f\x72\x65'],_0x5e19ae=-0x92*0xd+-0x7a*-0x1b+-0x1*0x574+0.7,_0x1e9f96=_0x25c602[_0x122c77(0x159,'\x76\x51\x23\x68')+'\x78'](function(_0x57824a){const _0x4d2af4=_0x122c77;if(_0x1bab85[_0x4d2af4(0x1b4,'\x30\x37\x24\x71')](_0x1bab85[_0x4d2af4(0x190,'\x69\x43\x7a\x4e')],_0x1bab85[_0x4d2af4(0x137,'\x54\x32\x41\x2a')]))_0x651630=_0x638ab9[_0x4d2af4(0x416,'\x41\x30\x2a\x70')](gKTeFS[_0x4d2af4(0x3cd,'\x76\x51\x23\x68')](_0xed569b,_0x1ef8f1));else return _0x57824a['\x67\x65\x6e\x65']&&_0x1bab85[_0x4d2af4(0x1f5,'\x6b\x76\x40\x39')](_0x57824a[_0x4d2af4(0x40c,'\x39\x51\x33\x55')]['\x65\x78\x65\x63\x75\x74\x69\x6f'+_0x4d2af4(0x36b,'\x4e\x66\x4c\x25')],_0x1bab85[_0x4d2af4(0x2c8,'\x25\x59\x77\x62')])&&_0x1bab85[_0x4d2af4(0x338,'\x44\x31\x6b\x21')](_0x57824a[_0x4d2af4(0x2a5,'\x31\x26\x70\x4a')],_0x4a4b54*_0x5e19ae);});if(_0x1bab85[_0x122c77(0x340,'\x4e\x77\x6c\x5e')](_0x1e9f96,-0x1bb9+0xbbb+0xffe)&&_0x25c602[-0x1ffb+0x11d5+-0xe26*-0x1][_0x122c77(0x13a,'\x53\x5d\x6c\x59')]&&_0x1bab85[_0x122c77(0x1e4,'\x44\x31\x6b\x21')](_0x25c602[-0x1728+0x2a0+0x1488][_0x122c77(0x268,'\x6a\x5b\x61\x23')][_0x122c77(0x1d2,'\x5e\x28\x4f\x45')+'\x6e\x5f\x6d\x6f\x64\x65'],_0x1bab85[_0x122c77(0x3d4,'\x31\x26\x70\x4a')])){const _0x2bdb30=_0x25c602[_0x1e9f96];_0x25c602[_0x122c77(0x2ce,'\x25\x51\x4f\x34')](_0x1e9f96,0x80*-0xe+0x2442+-0x1d41*0x1),_0x25c602[_0x122c77(0x1d0,'\x52\x73\x66\x45')](_0x2bdb30);}}let _0x291948=-0x13*-0xc5+-0x19ab+0xb0c,_0x17bad5=_0x1bab85[_0x122c77(0x140,'\x38\x53\x6b\x73')];if(_0x3443ba>-0xd9e+-0x256+0xff4&&_0x1bab85[_0x122c77(0x3e8,'\x25\x51\x4f\x34')](_0x25c602[_0x122c77(0x19d,'\x5b\x77\x4d\x28')],-0x3b*0xa0+0xd*-0x214+-0x5cf*-0xb)&&_0x1bab85[_0x122c77(0x39c,'\x44\x31\x6b\x21')](Math[_0x122c77(0x3c0,'\x62\x45\x68\x4c')](),_0x3443ba)){if(_0x1bab85[_0x122c77(0x322,'\x6b\x6c\x74\x7a')](_0x5d8268['\x6c\x65\x6e\x67\x74\x68'],0x5*-0x38b+0x2141+-0xdd*0x12)){const _0x51bed6=_0x25c602[_0x122c77(0x3a9,'\x38\x53\x6b\x73')](function(_0x3d8b3b,_0x3662a4){const _0x2f3929=_0x122c77;if(_0x1bab85[_0x2f3929(0x42b,'\x53\x5d\x6c\x59')](_0x2f3929(0x38d,'\x72\x5e\x70\x39'),_0x1bab85['\x44\x51\x53\x47\x56'])){const _0x423c56=_0x3d8b3b[_0x2f3929(0x3e7,'\x25\x59\x77\x62')],_0x2fec83=Array[_0x2f3929(0x27d,'\x44\x31\x6b\x21')](_0x423c56[_0x2f3929(0x30b,'\x35\x37\x78\x74')+_0x2f3929(0x2d8,'\x44\x31\x6b\x21')])?_0x423c56[_0x2f3929(0x477,'\x25\x59\x77\x62')+_0x2f3929(0x424,'\x54\x32\x41\x2a')]:[];let _0xae6932=0x151*-0x14+-0x6d*-0x1b+0xed5;for(let _0x230d6d=-0x1949+-0xecc*0x2+-0x7*-0x7d7;_0x1bab85[_0x2f3929(0x21a,'\x56\x39\x4c\x62')](_0x230d6d,_0x5d8268[_0x2f3929(0x14c,'\x54\x32\x41\x2a')])&&_0x230d6d<0x12a*-0x1d+-0x66e+-0x8d*-0x49;_0x230d6d++){const _0x183f94=_0x5d8268[_0x230d6d];if(_0x1bab85[_0x2f3929(0x14e,'\x4b\x31\x36\x39')](typeof _0x183f94,_0x2f3929(0x290,'\x39\x51\x33\x55'))&&_0x2fec83[_0x2f3929(0x139,'\x52\x54\x2a\x6e')](function(_0x83222){return _0x57bcdd(_0x83222,[_0x183f94]);})){if(_0x1bab85['\x6c\x54\x43\x58\x62'](_0x1bab85[_0x2f3929(0x26d,'\x4e\x77\x6c\x5e')],_0x1bab85[_0x2f3929(0x38e,'\x25\x51\x50\x72')]))_0xae6932++;else return _0x6464c9[_0x2f3929(0x192,'\x6a\x5b\x61\x23')]()[_0x2f3929(0x28f,'\x6b\x6c\x74\x7a')](gKTeFS[_0x2f3929(0x23f,'\x73\x4c\x34\x69')])[_0x2f3929(0x1d7,'\x44\x31\x6b\x21')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x2f3929(0x134,'\x7a\x74\x54\x6c')](_0xba9c13)[_0x2f3929(0x358,'\x6b\x76\x40\x39')](gKTeFS[_0x2f3929(0x2bf,'\x55\x6b\x56\x76')]);}}const _0x2bac92={};return _0x2bac92[_0x2f3929(0x37f,'\x64\x69\x48\x54')]=_0x3662a4,_0x2bac92[_0x2f3929(0x130,'\x25\x51\x50\x72')]=_0xae6932,_0x2bac92[_0x2f3929(0x1de,'\x5a\x40\x43\x4f')+'\x65']=_0x3d8b3b[_0x2f3929(0x304,'\x5e\x28\x4f\x45')],_0x2bac92;}else{const _0x26da66=_0x58872f&&_0x1bab85['\x72\x49\x69\x4d\x45'](_0x18a6eb[_0x2f3929(0x3cc,'\x4e\x77\x6c\x5e')+_0x2f3929(0x460,'\x4e\x66\x4c\x25')],_0x397ec2)?_0x5c1885[_0x2f3929(0x1e6,'\x25\x51\x50\x72')+_0x2f3929(0x136,'\x5b\x77\x4d\x28')]:new _0x39fb3f(),_0x52360a=_0x456760&&_0x8e1710[_0x2f3929(0x2c7,'\x67\x2a\x23\x5d')+_0x2f3929(0x422,'\x56\x39\x4c\x62')]?_0x5515d9[_0x2f3929(0x2d1,'\x6a\x5b\x61\x23')+_0x2f3929(0x28c,'\x57\x39\x26\x4c')]:null,_0x483089=_0x57d29e&&_0x5e3b16[_0x2f3929(0x16a,'\x25\x51\x50\x72')](_0x1bab85['\x70\x6c\x42\x48\x4c'](_0x6d0312,_0x438865[_0x2f3929(0x205,'\x48\x51\x4b\x70')+_0x2f3929(0x171,'\x73\x4c\x34\x69')]))?_0x52e9ae(_0x3c88f4[_0x2f3929(0x241,'\x61\x33\x2a\x23')+_0x2f3929(0x25d,'\x76\x51\x23\x68')]):-0x412+-0xdec+0x11fe,_0x447f8a=_0x1bab85[_0x2f3929(0x154,'\x73\x4c\x34\x69')](_0x178c4b,_0x1aa93a[_0x2f3929(0x29b,'\x67\x2a\x23\x5d')](_0x33695e)?_0x424e58:[],_0x49e543,_0x26da66),{selected:_0x521b52,alternatives:_0x27205d,driftIntensity:_0x4d78d6,driftMode:_0x5b4d0c}=_0x1bab85[_0x2f3929(0x483,'\x48\x51\x4b\x70')](_0x1ac240,_0x1e2546,_0x218db0,{'\x62\x61\x6e\x6e\x65\x64\x47\x65\x6e\x65\x49\x64\x73':_0x447f8a,'\x70\x72\x65\x66\x65\x72\x72\x65\x64\x47\x65\x6e\x65\x49\x64':_0x52360a,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':!!_0xfd02a,'\x6d\x65\x6d\x6f\x72\x79\x45\x76\x69\x64\x65\x6e\x63\x65':_0x483089,'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':_0x9ae5ef[_0x2f3929(0x2fc,'\x6b\x76\x40\x39')](_0x52ff5d)?_0x59d515:[],'\x6e\x6f\x76\x65\x6c\x74\x79\x53\x63\x6f\x72\x65':_0x536753[_0x2f3929(0x29d,'\x35\x37\x78\x74')](_0x1bab85[_0x2f3929(0x46c,'\x64\x69\x48\x54')](_0x10d0e9,_0x4023b6))?_0x1bab85[_0x2f3929(0x2b7,'\x25\x59\x77\x62')](_0x56f736,_0xfc8e36):null,'\x70\x6c\x61\x74\x65\x61\x75\x4f\x76\x65\x72\x72\x69\x64\x65':_0x1bab85[_0x2f3929(0x47e,'\x4e\x77\x6c\x5e')](_0x1873a8,null)}),_0x1c1fc1=_0x1bab85[_0x2f3929(0x402,'\x76\x51\x23\x68')](_0x166735,_0x136a13,_0x3d878c),_0x297a07=!!(_0x52360a&&_0x521b52&&_0x1bab85[_0x2f3929(0x33b,'\x4e\x77\x6c\x5e')](_0x521b52['\x69\x64'],_0x52360a)),_0x5b5e36=_0x1bab85[_0x2f3929(0x256,'\x70\x41\x62\x30')](_0x5b4d0c,_0x1bab85[_0x2f3929(0x285,'\x39\x51\x33\x55')])?_0x1bab85[_0x2f3929(0x44a,'\x25\x51\x4f\x34')]:_0x5b4d0c,_0x4d404a={};_0x4d404a[_0x2f3929(0x30a,'\x29\x23\x5d\x56')]=_0x521b52,_0x4d404a[_0x2f3929(0x459,'\x39\x51\x33\x55')]=_0x1c1fc1,_0x4d404a[_0x2f3929(0x1b1,'\x72\x4c\x34\x72')]=_0x2975de,_0x4d404a[_0x2f3929(0x262,'\x40\x5a\x65\x54')+_0x2f3929(0x34f,'\x7a\x74\x54\x6c')]=_0x27205d,_0x4d404a[_0x2f3929(0x17f,'\x4e\x25\x30\x30')+'\x76\x69\x63\x65']=_0x1bfd34,_0x4d404a[_0x2f3929(0x209,'\x46\x23\x55\x7a')+'\x62\x6c\x65\x64']=_0x3b32e8,_0x4d404a[_0x2f3929(0x339,'\x67\x2a\x23\x5d')+_0x2f3929(0x38b,'\x70\x41\x62\x30')]=_0x4d78d6,_0x4d404a[_0x2f3929(0x34a,'\x56\x39\x4c\x62')+'\x6e\x50\x61\x74\x68']=_0x5b5e36,_0x4d404a[_0x2f3929(0x461,'\x5e\x47\x53\x39')+'\x65\x64']=_0x297a07;const _0x4a2059=_0x23d39b(_0x4d404a),_0x2b92da={};return _0x2b92da[_0x2f3929(0x2e9,'\x72\x5e\x70\x39')+_0x2f3929(0x28d,'\x24\x5a\x58\x36')]=_0x521b52,_0x2b92da['\x63\x61\x70\x73\x75\x6c\x65\x43'+_0x2f3929(0x47c,'\x31\x26\x70\x4a')+'\x73']=_0x1c1fc1?[_0x1c1fc1]:[],_0x2b92da['\x73\x65\x6c\x65\x63\x74\x6f\x72']=_0x4a2059,_0x2b92da[_0x2f3929(0x3b8,'\x53\x5d\x6c\x59')+_0x2f3929(0x1c0,'\x40\x5a\x65\x54')]=_0x4d78d6,_0x2b92da[_0x2f3929(0x3fe,'\x64\x69\x48\x54')+_0x2f3929(0x3ba,'\x44\x31\x6b\x21')]=_0x5b5e36,_0x2b92da[_0x2f3929(0x243,'\x52\x73\x66\x45')+'\x65\x64']=_0x297a07,_0x2b92da[_0x2f3929(0x315,'\x25\x51\x4f\x34')+'\x69\x64\x65\x6e\x63\x65']=_0x483089,_0x2b92da;}}),_0x3a571a=_0x51bed6[_0x122c77(0x1eb,'\x57\x39\x26\x4c')](function(_0xb1cdf0){const _0x2bf27b=_0x122c77;return _0x1bab85['\x75\x55\x68\x65\x64'](_0xb1cdf0[_0x2bf27b(0x300,'\x6b\x76\x40\x39')],-0x1*0x2191+0xe8+0x20a9);});if(_0x3a571a)_0x51bed6[_0x122c77(0x265,'\x24\x5a\x58\x36')](function(_0x467fa7,_0x4302ce){const _0x5243f6=_0x122c77;return _0x4302ce['\x67\x61\x70\x48\x69\x74\x73']-_0x467fa7[_0x5243f6(0x381,'\x55\x6b\x56\x76')]||_0x1bab85[_0x5243f6(0x32f,'\x62\x45\x68\x4c')](_0x4302ce[_0x5243f6(0x292,'\x57\x39\x26\x4c')+'\x65'],_0x467fa7[_0x5243f6(0x225,'\x69\x43\x7a\x4e')+'\x65']);}),_0x291948=_0x51bed6[-0xf0f*-0x1+0x7bb*0x2+-0x1*0x1e85][_0x122c77(0x215,'\x48\x51\x4b\x70')],_0x17bad5=_0x1bab85['\x74\x47\x50\x56\x62'];else{let _0x5765a7=Math[_0x122c77(0x180,'\x52\x54\x2a\x6e')](_0x25c602['\x6c\x65\x6e\x67\x74\x68'],Math[_0x122c77(0x181,'\x52\x54\x2a\x6e')](-0x10c5+-0x245c+-0xdf*-0x3d,Math[_0x122c77(0x3e6,'\x61\x33\x2a\x23')](_0x1bab85[_0x122c77(0x38c,'\x48\x51\x4b\x70')](_0x25c602[_0x122c77(0x155,'\x41\x30\x2a\x70')],_0x3443ba))));_0x1bab85[_0x122c77(0x2e7,'\x55\x6b\x56\x76')](_0x175477,null)&&_0x1bab85[_0x122c77(0x167,'\x55\x6b\x56\x76')](_0x175477,0x240d+-0xb*0x241+-0xb42+0.3)&&_0x5765a7<_0x25c602[_0x122c77(0x353,'\x7a\x74\x54\x6c')]&&(_0x5765a7=Math[_0x122c77(0x2b5,'\x25\x51\x50\x72')](_0x25c602[_0x122c77(0x408,'\x69\x43\x7a\x4e')],_0x1bab85[_0x122c77(0x32a,'\x29\x23\x5d\x56')](_0x5765a7,-0xef*-0x23+-0x13d3+-0xcd9))),_0x291948=Math[_0x122c77(0x44b,'\x4b\x31\x36\x39')](_0x1bab85[_0x122c77(0x47b,'\x5e\x5b\x45\x39')](Math[_0x122c77(0x1da,'\x6a\x5b\x61\x23')](),_0x5765a7)),_0x17bad5=_0x1bab85[_0x122c77(0x131,'\x67\x2a\x23\x5d')];}}else{if(_0x122c77(0x1fc,'\x41\x30\x2a\x70')!==_0x1bab85[_0x122c77(0x2a7,'\x6b\x76\x40\x39')]){let _0x4fcb04=_0x48f3e8['\x6d\x69\x6e'](_0xf79c05[_0x122c77(0x21f,'\x24\x5a\x58\x36')],_0x15d449[_0x122c77(0x29c,'\x69\x43\x7a\x4e')](0x11*0x155+-0x264f+-0xec*-0x11,_0x4fafe9[_0x122c77(0x201,'\x6b\x76\x40\x39')](_0x269c91[_0x122c77(0x458,'\x6b\x76\x40\x39')]*_0x537fea)));_0x1bab85[_0x122c77(0x133,'\x46\x23\x55\x7a')](_0x3f3ff2,null)&&_0x1bab85[_0x122c77(0x1ca,'\x41\x30\x2a\x70')](_0x32211c,0x15*-0x14e+-0x2616+0x417c+0.3)&&_0x1bab85[_0x122c77(0x32e,'\x53\x5d\x6c\x59')](_0x4fcb04,_0x3e158e[_0x122c77(0x20e,'\x5e\x47\x53\x39')])&&(_0x4fcb04=_0x229f55[_0x122c77(0x250,'\x67\x2a\x23\x5d')](_0x16770b['\x6c\x65\x6e\x67\x74\x68'],_0x1bab85[_0x122c77(0x451,'\x6a\x5b\x61\x23')](_0x4fcb04,-0x20*0x42+0x6d*0x43+-0x1e*0xad))),_0x66da1b=_0x2c9a19['\x66\x6c\x6f\x6f\x72'](_0x52340e[_0x122c77(0x1be,'\x5e\x5b\x45\x39')]()*_0x4fcb04),_0x474501=_0x122c77(0x3d9,'\x55\x6b\x56\x76')+_0x122c77(0x147,'\x24\x5a\x58\x36');}else{const _0x483a4c=Math[_0x122c77(0x3ae,'\x6a\x5b\x61\x23')](_0x25c602[_0x122c77(0x20e,'\x5e\x47\x53\x39')],Math[_0x122c77(0x2c0,'\x73\x4c\x34\x69')](0x1d27+0x1abc+0x5*-0xb2d,Math[_0x122c77(0x46b,'\x5e\x28\x4f\x45')](_0x1bab85[_0x122c77(0x397,'\x72\x4c\x34\x72')](_0x25c602[_0x122c77(0x39f,'\x5e\x28\x4f\x45')],_0x3443ba))));_0x291948=Math['\x66\x6c\x6f\x6f\x72'](_0x1bab85['\x61\x55\x75\x51\x6a'](Math[_0x122c77(0x1e1,'\x57\x39\x26\x4c')](),_0x483a4c)),_0x17bad5=_0x122c77(0x286,'\x31\x26\x70\x4a');}}}return{'\x73\x65\x6c\x65\x63\x74\x65\x64':_0x25c602[_0x291948][_0x122c77(0x40c,'\x39\x51\x33\x55')],'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':_0x25c602[_0x122c77(0x13d,'\x69\x43\x7a\x4e')](function(_0x41777f,_0x2041de){return _0x2041de!==_0x291948;})[_0x122c77(0x1b5,'\x6b\x5a\x21\x5b')](-0x12ec+-0x3e3+0x16cf,0x2*-0x3dd+0x10dd*0x1+-0x5*0x1d3)[_0x122c77(0x27f,'\x25\x51\x4f\x34')](_0x310d8e=>_0x310d8e['\x67\x65\x6e\x65']),'\x64\x72\x69\x66\x74\x49\x6e\x74\x65\x6e\x73\x69\x74\x79':_0x3443ba,'\x64\x72\x69\x66\x74\x4d\x6f\x64\x65':_0x17bad5};}function _0x563f02(_0x3b3d7d,_0x52c1af){const _0x246d50=_0x177a91,_0x2ec83f=(_0x3b3d7d||[])['\x6d\x61\x70'](_0x17b9f4=>{const _0x5a7edb=_0x5b4c,_0x483911=Array[_0x5a7edb(0x3ff,'\x64\x69\x48\x54')](_0x17b9f4[_0x5a7edb(0x327,'\x46\x23\x55\x7a')])?_0x17b9f4[_0x5a7edb(0x24e,'\x54\x32\x41\x2a')]:[],_0x2fc965=_0x483911[_0x5a7edb(0x127,'\x73\x4c\x34\x69')]((_0x3aadf7,_0xe57f45)=>_0x57bcdd(_0xe57f45,_0x52c1af)?_0x3aadf7+(-0x4*0x587+-0x70+0x168d):_0x3aadf7,-0x243d+0x10ec+0x1351),_0x1a7098={};return _0x1a7098[_0x5a7edb(0x156,'\x4b\x31\x36\x39')]=_0x17b9f4,_0x1a7098[_0x5a7edb(0x41c,'\x41\x75\x6b\x51')]=_0x2fc965,_0x1a7098;})[_0x246d50(0x440,'\x52\x54\x2a\x6e')](_0x352c46=>_0x352c46[_0x246d50(0x456,'\x24\x5a\x58\x36')]>0x408+-0x15bc+0x11b4)[_0x246d50(0x193,'\x4b\x31\x36\x39')]((_0x354b04,_0x464230)=>_0x464230[_0x246d50(0x194,'\x62\x45\x68\x4c')]-_0x354b04[_0x246d50(0x18b,'\x69\x43\x7a\x4e')]);return _0x2ec83f[_0x246d50(0x3f2,'\x25\x51\x4f\x34')]?_0x2ec83f[-0x18*-0x13f+0x1*0x1598+-0x3380][_0x246d50(0x38f,'\x6b\x76\x40\x39')]:null;}function _0xff286(_0x23ba74,_0x159fe){const _0x930689=_0x177a91,_0x4637a3={'\x67\x78\x6c\x78\x51':function(_0x1204b4,_0x4f052c){return _0x1204b4(_0x4f052c);},'\x65\x7a\x75\x78\x74':function(_0x21a0e0,_0x50a3de){return _0x21a0e0===_0x50a3de;},'\x51\x41\x42\x73\x65':function(_0x5dac4f,_0x2b09bd){return _0x5dac4f<_0x2b09bd;},'\x66\x66\x61\x4b\x68':function(_0xc60afa,_0x458b69){return _0xc60afa/_0x458b69;}};if(!Array[_0x930689(0x445,'\x5e\x5b\x45\x39')](_0x23ba74)||!Array['\x69\x73\x41\x72\x72\x61\x79'](_0x159fe))return 0x1*-0x3ce+-0x1*0x204a+-0x8c*-0x42;if(_0x23ba74[_0x930689(0x40a,'\x61\x33\x2a\x23')]===-0x1939+0x15*-0x1b5+0x1e89*0x2||_0x4637a3[_0x930689(0x237,'\x46\x23\x55\x7a')](_0x159fe['\x6c\x65\x6e\x67\x74\x68'],-0x539*0x2+0xdfc+0x12e*-0x3))return-0x64d*-0x5+-0x2c4*-0xd+-0x4375;const _0x516db3=new Set(_0x159fe[_0x930689(0x40b,'\x25\x51\x50\x72')](function(_0x190b8d){const _0x2e79ff=_0x930689;return _0x4637a3[_0x2e79ff(0x1ac,'\x56\x39\x4c\x62')](String,_0x190b8d)[_0x2e79ff(0x465,'\x6a\x5b\x61\x23')+_0x2e79ff(0x42a,'\x40\x5a\x65\x54')]();}));let _0x29ef41=0x246e+0x741+-0x2baf;for(let _0x139c1d=-0x15c6+0x1d02+-0x73c;_0x4637a3['\x51\x41\x42\x73\x65'](_0x139c1d,_0x23ba74[_0x930689(0x2b6,'\x52\x73\x66\x45')]);_0x139c1d++){if(_0x516db3[_0x930689(0x41d,'\x70\x41\x62\x30')](String(_0x23ba74[_0x139c1d])[_0x930689(0x465,'\x6a\x5b\x61\x23')+_0x930689(0x1f8,'\x4e\x25\x30\x30')]()))_0x29ef41++;}return _0x4637a3[_0x930689(0x2c9,'\x72\x5e\x70\x39')](_0x29ef41,Math[_0x930689(0x2ad,'\x4e\x25\x30\x30')](_0x23ba74[_0x930689(0x269,'\x41\x75\x6b\x51')],-0x12*-0xdb+-0x13a+-0xe2b));}const _0x92baf7=-0x99b*-0x2+-0x8*0x44f+-0x3d1*-0x4,_0x170750=0x23*-0xb7+0x1*-0x296+0x1*0x1b9b+0.6;function _0x3efb14(_0x171031,_0x596d65,_0x2879a7){const _0x189527=_0x177a91,_0x18b523={'\x52\x4b\x72\x6a\x44':function(_0x2e5bbf,_0x576de9){return _0x2e5bbf(_0x576de9);},'\x44\x75\x67\x6d\x50':function(_0x5c9f18,_0x81d80e){return _0x5c9f18 instanceof _0x81d80e;},'\x75\x69\x79\x6f\x63':function(_0x282d65,_0x3bc71e){return _0x282d65===_0x3bc71e;},'\x54\x79\x50\x57\x45':function(_0x5aa573,_0x165ca2,_0x2dc82a){return _0x5aa573(_0x165ca2,_0x2dc82a);},'\x6f\x66\x42\x57\x44':function(_0xb858db,_0x404a5e){return _0xb858db<_0x404a5e;},'\x78\x6b\x4c\x64\x64':function(_0x1acff1,_0x13548b){return _0x1acff1(_0x13548b);},'\x52\x64\x57\x4f\x4e':function(_0x33920d,_0x1a7265){return _0x33920d<_0x1a7265;},'\x46\x73\x46\x64\x45':function(_0x2a19c3,_0x36a6b2){return _0x2a19c3!==_0x36a6b2;},'\x76\x79\x51\x4d\x4a':_0x189527(0x3c1,'\x62\x45\x68\x4c'),'\x79\x63\x57\x44\x56':'\x41\x79\x56\x6d\x66'},_0xba309a=_0x18b523[_0x189527(0x149,'\x5e\x5b\x45\x39')](_0x2879a7,Set)?new Set(_0x2879a7):new Set();if(!Array[_0x189527(0x1ce,'\x5e\x28\x4f\x45')](_0x171031)||_0x18b523[_0x189527(0x46d,'\x46\x23\x55\x7a')](_0x171031[_0x189527(0x252,'\x62\x58\x5b\x6a')],-0x1*-0x22a1+0x983+-0x2c24))return _0xba309a;const _0x92fbe7={};for(let _0x5b609f=-0x104f+-0x18e2+-0x13*-0x22b;_0x5b609f<_0x171031[_0x189527(0x163,'\x73\x4c\x34\x69')];_0x5b609f++){if(_0x189527(0x1d1,'\x5e\x5b\x45\x39')!==_0x189527(0x233,'\x67\x2a\x23\x5d')){const _0x55061d=_0x171031[_0x5b609f];if(!_0x55061d||!_0x55061d[_0x189527(0x14f,'\x25\x51\x4f\x34')])continue;const _0xacdda7=_0x18b523[_0x189527(0x46e,'\x4e\x77\x6c\x5e')](_0xff286,_0x596d65,_0x55061d[_0x189527(0x359,'\x6b\x76\x40\x39')]||[]);if(_0x18b523[_0x189527(0x301,'\x25\x59\x77\x62')](_0xacdda7,_0x170750))continue;const _0x5856c0=_0x18b523[_0x189527(0x3da,'\x31\x26\x70\x4a')](String,_0x55061d[_0x189527(0x1ee,'\x57\x39\x26\x4c')]);_0x92fbe7[_0x5856c0]=(_0x92fbe7[_0x5856c0]||-0x1*-0xcb7+-0x88c+-0x42b)+(0x17cc+0x1cbc+-0x3487);}else return _0x562a38[_0x189527(0x1cd,'\x5e\x28\x4f\x45')](EKjJGU[_0x189527(0x150,'\x46\x23\x55\x7a')](_0x7e1cde,_0x36fb8c));}const _0x1cd670=Object[_0x189527(0x2b1,'\x41\x75\x6b\x51')](_0x92fbe7);for(let _0x24302f=0x1*-0xb8+0x1694+-0x15dc;_0x18b523[_0x189527(0x198,'\x70\x41\x62\x30')](_0x24302f,_0x1cd670[_0x189527(0x444,'\x67\x2a\x23\x5d')]);_0x24302f++){_0x92fbe7[_0x1cd670[_0x24302f]]>=_0x92baf7&&(_0x18b523[_0x189527(0x228,'\x4e\x66\x4c\x25')](_0x18b523['\x76\x79\x51\x4d\x4a'],_0x18b523['\x79\x63\x57\x44\x56'])?_0xba309a[_0x189527(0x2b0,'\x72\x4c\x34\x72')](_0x1cd670[_0x24302f]):_0x4680fd['\x70\x75\x73\x68']('\x73\x65\x6c\x65\x63\x74\x69\x6f'+_0x189527(0x157,'\x4d\x68\x40\x4e')+_0x346ff1));}return _0xba309a;}function _0x4f62e4({genes:_0x13b83c,capsules:_0x1f01dd,signals:_0x111958,memoryAdvice:_0x5255ea,driftEnabled:_0x2d2381,failedCapsules:_0x46b34c,capabilityGaps:_0x5b231f,noveltyScore:_0x4f86e1,plateauOverride:_0x29f91d}){const _0x1eee17=_0x177a91,_0x345eaa={'\x65\x66\x59\x79\x68':function(_0x2cdafd,_0x22c6b9){return _0x2cdafd instanceof _0x22c6b9;},'\x53\x56\x57\x5a\x4b':function(_0x585839,_0x4f025f){return _0x585839(_0x4f025f);},'\x67\x4f\x54\x49\x75':function(_0x1fd051,_0x1e5f6d,_0x2b9152,_0x306d83){return _0x1fd051(_0x1e5f6d,_0x2b9152,_0x306d83);},'\x72\x6b\x78\x44\x45':function(_0x17f7ac,_0x5abca8){return _0x17f7ac(_0x5abca8);},'\x42\x67\x7a\x67\x6b':function(_0x33d58c,_0x41a067){return _0x33d58c(_0x41a067);},'\x46\x52\x67\x65\x6a':function(_0x3b6f6f,_0x3b5cca){return _0x3b6f6f||_0x3b5cca;},'\x76\x4d\x64\x42\x45':function(_0x260bb5,_0x338f4b,_0x97aa45){return _0x260bb5(_0x338f4b,_0x97aa45);},'\x4a\x79\x52\x48\x66':function(_0x363449,_0x49a824){return _0x363449&&_0x49a824;},'\x64\x47\x5a\x43\x45':function(_0x12df46,_0x4624de){return _0x12df46===_0x4624de;},'\x76\x70\x6d\x59\x63':_0x1eee17(0x278,'\x7a\x74\x54\x6c')+'\x6e','\x43\x44\x58\x53\x57':_0x1eee17(0x195,'\x7a\x74\x54\x6c')+_0x1eee17(0x15c,'\x44\x31\x6b\x21')},_0xb41e9a=_0x5255ea&&_0x345eaa[_0x1eee17(0x361,'\x4b\x31\x36\x39')](_0x5255ea[_0x1eee17(0x3b4,'\x31\x26\x70\x4a')+_0x1eee17(0x1f1,'\x44\x31\x6b\x21')],Set)?_0x5255ea[_0x1eee17(0x343,'\x4b\x31\x36\x39')+_0x1eee17(0x342,'\x4e\x25\x30\x30')]:new Set(),_0x5a5e4c=_0x5255ea&&_0x5255ea[_0x1eee17(0x3f6,'\x62\x45\x68\x4c')+_0x1eee17(0x476,'\x5e\x5b\x45\x39')]?_0x5255ea['\x70\x72\x65\x66\x65\x72\x72\x65'+_0x1eee17(0x15b,'\x62\x58\x5b\x6a')]:null,_0x553ea8=_0x5255ea&&Number[_0x1eee17(0x1c8,'\x6b\x76\x40\x39')](Number(_0x5255ea[_0x1eee17(0x257,'\x44\x31\x6b\x21')+'\x65\x6d\x70\x74\x73']))?_0x345eaa[_0x1eee17(0x1ed,'\x56\x39\x4c\x62')](Number,_0x5255ea[_0x1eee17(0x1ad,'\x55\x6b\x56\x76')+'\x65\x6d\x70\x74\x73']):-0x1*-0xbcc+-0xe41*0x2+-0x45*-0x3e,_0x4e5279=_0x3efb14(Array['\x69\x73\x41\x72\x72\x61\x79'](_0x46b34c)?_0x46b34c:[],_0x111958,_0xb41e9a),{selected:_0x34ce97,alternatives:_0x4096ac,driftIntensity:_0x13aa30,driftMode:_0x549944}=_0x345eaa[_0x1eee17(0x1a6,'\x29\x23\x5d\x56')](_0x57e904,_0x13b83c,_0x111958,{'\x62\x61\x6e\x6e\x65\x64\x47\x65\x6e\x65\x49\x64\x73':_0x4e5279,'\x70\x72\x65\x66\x65\x72\x72\x65\x64\x47\x65\x6e\x65\x49\x64':_0x5a5e4c,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':!!_0x2d2381,'\x6d\x65\x6d\x6f\x72\x79\x45\x76\x69\x64\x65\x6e\x63\x65':_0x553ea8,'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':Array[_0x1eee17(0x239,'\x25\x51\x50\x72')](_0x5b231f)?_0x5b231f:[],'\x6e\x6f\x76\x65\x6c\x74\x79\x53\x63\x6f\x72\x65':Number[_0x1eee17(0x421,'\x41\x75\x6b\x51')](_0x345eaa[_0x1eee17(0x18e,'\x76\x51\x23\x68')](Number,_0x4f86e1))?_0x345eaa[_0x1eee17(0x3c7,'\x6b\x6c\x74\x7a')](Number,_0x4f86e1):null,'\x70\x6c\x61\x74\x65\x61\x75\x4f\x76\x65\x72\x72\x69\x64\x65':_0x345eaa[_0x1eee17(0x291,'\x4e\x77\x6c\x5e')](_0x29f91d,null)}),_0x1dc42c=_0x345eaa[_0x1eee17(0x33d,'\x5e\x28\x4f\x45')](_0x563f02,_0x1f01dd,_0x111958),_0x530193=!!(_0x345eaa[_0x1eee17(0x3ab,'\x41\x30\x2a\x70')](_0x5a5e4c,_0x34ce97)&&_0x345eaa[_0x1eee17(0x283,'\x62\x58\x5b\x6a')](_0x34ce97['\x69\x64'],_0x5a5e4c)),_0x468c22=_0x549944===_0x345eaa[_0x1eee17(0x2ab,'\x56\x39\x4c\x62')]?_0x345eaa['\x43\x44\x58\x53\x57']:_0x549944,_0x2bb19c={};_0x2bb19c[_0x1eee17(0x146,'\x7a\x74\x54\x6c')]=_0x34ce97,_0x2bb19c[_0x1eee17(0x455,'\x5b\x77\x4d\x28')]=_0x1dc42c,_0x2bb19c[_0x1eee17(0x148,'\x44\x31\x6b\x21')]=_0x111958,_0x2bb19c[_0x1eee17(0x20d,'\x69\x43\x7a\x4e')+_0x1eee17(0x392,'\x25\x51\x50\x72')]=_0x4096ac,_0x2bb19c[_0x1eee17(0x2c3,'\x7a\x74\x54\x6c')+_0x1eee17(0x2f9,'\x24\x5a\x58\x36')]=_0x5255ea,_0x2bb19c[_0x1eee17(0x316,'\x25\x51\x50\x72')+_0x1eee17(0x2ac,'\x4d\x68\x40\x4e')]=_0x2d2381,_0x2bb19c['\x64\x72\x69\x66\x74\x49\x6e\x74'+_0x1eee17(0x2bc,'\x64\x69\x48\x54')]=_0x13aa30,_0x2bb19c[_0x1eee17(0x231,'\x52\x73\x66\x45')+_0x1eee17(0x1f0,'\x25\x51\x4f\x34')]=_0x468c22,_0x2bb19c[_0x1eee17(0x216,'\x6a\x5b\x61\x23')+'\x65\x64']=_0x530193;const _0x498ac0=_0x345eaa[_0x1eee17(0x3b1,'\x4e\x66\x4c\x25')](_0x78e4a3,_0x2bb19c),_0x5bb6af={};return _0x5bb6af[_0x1eee17(0x3e2,'\x48\x51\x4b\x70')+_0x1eee17(0x3bd,'\x6b\x76\x40\x39')]=_0x34ce97,_0x5bb6af[_0x1eee17(0x2d4,'\x5b\x77\x4d\x28')+_0x1eee17(0x12f,'\x64\x69\x48\x54')+'\x73']=_0x1dc42c?[_0x1dc42c]:[],_0x5bb6af[_0x1eee17(0x178,'\x48\x51\x4b\x70')]=_0x498ac0,_0x5bb6af['\x64\x72\x69\x66\x74\x49\x6e\x74'+_0x1eee17(0x2cf,'\x6a\x5b\x61\x23')]=_0x13aa30,_0x5bb6af[_0x1eee17(0x25a,'\x61\x33\x2a\x23')+_0x1eee17(0x46a,'\x30\x37\x24\x71')]=_0x468c22,_0x5bb6af['\x6d\x65\x6d\x6f\x72\x79\x55\x73'+'\x65\x64']=_0x530193,_0x5bb6af[_0x1eee17(0x3f4,'\x41\x30\x2a\x70')+'\x69\x64\x65\x6e\x63\x65']=_0x553ea8,_0x5bb6af;}function _0x78e4a3({gene:_0x5ce4d0,capsule:_0x4282b9,signals:_0x3a2a03,alternatives:_0x1048f2,memoryAdvice:_0x528b05,driftEnabled:_0x2a2da4,driftIntensity:_0x26b751,selectionPath:_0x438e48,memoryUsed:_0x5ae9e9}){const _0x196d6f=_0x177a91,_0xd13d42={'\x47\x67\x63\x65\x4d':function(_0x9b6181,_0x27f4f0){return _0x9b6181===_0x27f4f0;},'\x7a\x6a\x74\x49\x50':function(_0x5256ae,_0x1163da){return _0x5256ae>=_0x1163da;},'\x78\x72\x66\x4d\x41':function(_0x47c259,_0x9b1917){return _0x47c259(_0x9b1917);},'\x70\x76\x66\x5a\x45':function(_0x505c91,_0x3b5e4e){return _0x505c91||_0x3b5e4e;},'\x46\x42\x57\x4a\x69':_0x196d6f(0x33e,'\x7a\x74\x54\x6c')+_0x196d6f(0x3a7,'\x5e\x5b\x45\x39')+_0x196d6f(0x36d,'\x64\x69\x48\x54')+_0x196d6f(0x2eb,'\x53\x5d\x6c\x59'),'\x65\x67\x6c\x56\x4d':_0x196d6f(0x145,'\x61\x33\x2a\x23')+_0x196d6f(0x379,'\x61\x33\x2a\x23')+_0x196d6f(0x271,'\x5b\x77\x4d\x28')+_0x196d6f(0x132,'\x54\x32\x41\x2a'),'\x54\x4f\x5a\x69\x73':_0x196d6f(0x3ea,'\x6b\x5a\x21\x5b')+'\x69\x6e\x67\x20\x67\x65\x6e\x65'+_0x196d6f(0x174,'\x72\x5e\x70\x39')+_0x196d6f(0x34e,'\x6b\x5a\x21\x5b')+_0x196d6f(0x3ec,'\x6a\x5b\x61\x23')+_0x196d6f(0x3ad,'\x72\x5e\x70\x39'),'\x78\x52\x4b\x4d\x5a':_0x196d6f(0x2a2,'\x6b\x5a\x21\x5b'),'\x65\x53\x49\x78\x76':function(_0x1c0527,_0x4c4dfe){return _0x1c0527!==_0x4c4dfe;},'\x76\x67\x69\x58\x4d':_0x196d6f(0x377,'\x57\x39\x26\x4c'),'\x57\x61\x58\x61\x6c':_0x196d6f(0x410,'\x25\x51\x4f\x34')+_0x196d6f(0x376,'\x61\x33\x2a\x23')+_0x196d6f(0x27e,'\x52\x54\x2a\x6e')+_0x196d6f(0x395,'\x57\x39\x26\x4c'),'\x63\x4f\x62\x77\x7a':function(_0x14e7f1,_0xd4d73b){return _0x14e7f1>_0xd4d73b;},'\x6c\x61\x76\x4f\x72':function(_0x40de45,_0x2c8881){return _0x40de45!==_0x2c8881;},'\x71\x43\x59\x6b\x51':_0x196d6f(0x15d,'\x39\x51\x33\x55'),'\x6a\x49\x64\x58\x59':'\x6f\x4f\x48\x78\x4f','\x70\x48\x61\x48\x6e':_0x196d6f(0x333,'\x52\x54\x2a\x6e')+_0x196d6f(0x3d0,'\x35\x37\x78\x74')+_0x196d6f(0x1ea,'\x4b\x31\x36\x39')+_0x196d6f(0x352,'\x6a\x5b\x61\x23')},_0x3333cf=[];if(_0x5ce4d0)_0x3333cf['\x70\x75\x73\x68'](_0xd13d42[_0x196d6f(0x369,'\x4b\x31\x36\x39')]);if(_0x4282b9)_0x3333cf[_0x196d6f(0x1fb,'\x5e\x28\x4f\x45')](_0xd13d42[_0x196d6f(0x2c5,'\x76\x51\x23\x68')]);if(!_0x5ce4d0)_0x3333cf[_0x196d6f(0x457,'\x69\x43\x7a\x4e')](_0xd13d42['\x54\x4f\x5a\x69\x73']);if(_0x3a2a03&&_0x3a2a03['\x6c\x65\x6e\x67\x74\x68'])_0x3333cf[_0x196d6f(0x18c,'\x48\x51\x4b\x70')](_0x196d6f(0x469,'\x52\x73\x66\x45')+'\x20'+_0x3a2a03[_0x196d6f(0x349,'\x5a\x40\x43\x4f')]('\x2c\x20'));_0x528b05&&Array[_0x196d6f(0x239,'\x25\x51\x50\x72')](_0x528b05['\x65\x78\x70\x6c\x61\x6e\x61\x74'+_0x196d6f(0x3c9,'\x4e\x77\x6c\x5e')])&&_0x528b05[_0x196d6f(0x486,'\x62\x58\x5b\x6a')+_0x196d6f(0x452,'\x35\x37\x78\x74')][_0x196d6f(0x169,'\x6a\x5b\x61\x23')]&&_0x3333cf[_0x196d6f(0x303,'\x64\x69\x48\x54')](_0x196d6f(0x419,'\x5a\x40\x43\x4f')+_0x196d6f(0x47f,'\x72\x5e\x70\x39')+_0x528b05[_0x196d6f(0x2c2,'\x76\x51\x23\x68')+_0x196d6f(0x1f3,'\x5e\x47\x53\x39')][_0x196d6f(0x1af,'\x62\x45\x68\x4c')](_0xd13d42[_0x196d6f(0x3c6,'\x5b\x77\x4d\x28')]));if(_0x2a2da4){if(_0xd13d42[_0x196d6f(0x208,'\x4e\x66\x4c\x25')](_0xd13d42[_0x196d6f(0x464,'\x54\x32\x41\x2a')],_0xd13d42[_0x196d6f(0x391,'\x52\x54\x2a\x6e')]))return _0x46a860&&VKVNxZ[_0x196d6f(0x289,'\x6b\x5a\x21\x5b')](_0x529dc9['\x65\x78\x65\x63\x75\x74\x69\x6f'+_0x196d6f(0x1f2,'\x56\x39\x4c\x62')],'\x69\x6e\x70\x6c\x61\x63\x65');else _0x3333cf[_0x196d6f(0x219,'\x76\x51\x23\x68')](_0xd13d42[_0x196d6f(0x2e3,'\x38\x53\x6b\x73')]);}Number[_0x196d6f(0x15a,'\x4e\x21\x42\x53')](_0x26b751)&&_0xd13d42[_0x196d6f(0x428,'\x35\x37\x78\x74')](_0x26b751,-0x315+0x4*-0x6b9+0x1df9)&&(_0xd13d42['\x6c\x61\x76\x4f\x72'](_0xd13d42[_0x196d6f(0x166,'\x61\x33\x2a\x23')],_0x196d6f(0x313,'\x35\x37\x78\x74'))?_0x3333cf[_0x196d6f(0x1fb,'\x5e\x28\x4f\x45')](_0x196d6f(0x371,'\x29\x23\x5d\x56')+_0x196d6f(0x284,'\x6a\x5b\x61\x23')+'\x20'+_0x26b751['\x74\x6f\x46\x69\x78\x65\x64'](-0x1183+-0x1a7a+0x2c00)):_0x546dbe[_0x196d6f(0x191,'\x52\x54\x2a\x6e')](_0x9eb729[_0x392aad]));if(_0x438e48){if(_0xd13d42['\x6c\x61\x76\x4f\x72'](_0xd13d42['\x6a\x49\x64\x58\x59'],_0xd13d42[_0x196d6f(0x1ec,'\x4e\x25\x30\x30')]))return VKVNxZ[_0x196d6f(0x2ae,'\x54\x32\x41\x2a')](_0xa67446,VKVNxZ[_0x196d6f(0x2db,'\x4e\x66\x4c\x25')](_0x25912b,''))['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x196d6f(0x1b7,'\x41\x75\x6b\x51')]()[_0x196d6f(0x1e0,'\x41\x30\x2a\x70')](/[^\p{L}\p{N}_\-]+/gu,'\x20')[_0x196d6f(0x3ed,'\x53\x5d\x6c\x59')](/\s+/)[_0x196d6f(0x1ae,'\x44\x31\x6b\x21')](function(_0x263ee7){const _0x2c5c0e=_0x196d6f;return VKVNxZ[_0x2c5c0e(0x26c,'\x4e\x21\x42\x53')](_0x263ee7[_0x2c5c0e(0x401,'\x4e\x66\x4c\x25')],-0xf3+-0x94d*0x4+0x2629)&&!_0xa69fdb[_0x2c5c0e(0x2b9,'\x4e\x77\x6c\x5e')](_0x263ee7);});else _0x3333cf[_0x196d6f(0x170,'\x5a\x40\x43\x4f')](_0x196d6f(0x278,'\x7a\x74\x54\x6c')+_0x196d6f(0x2af,'\x52\x54\x2a\x6e')+_0x438e48);}return _0x5ae9e9&&_0x3333cf['\x70\x75\x73\x68'](_0xd13d42[_0x196d6f(0x1b2,'\x4d\x68\x40\x4e')]),{'\x73\x65\x6c\x65\x63\x74\x65\x64':_0x5ce4d0?_0x5ce4d0['\x69\x64']:null,'\x72\x65\x61\x73\x6f\x6e':_0x3333cf,'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':Array[_0x196d6f(0x36e,'\x7a\x74\x54\x6c')](_0x1048f2)?_0x1048f2[_0x196d6f(0x45f,'\x64\x69\x48\x54')](_0x1d7955=>_0x1d7955['\x69\x64']):[],'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x61\x74\x68':_0xd13d42['\x70\x76\x66\x5a\x45'](_0x438e48,_0x196d6f(0x324,'\x57\x39\x26\x4c')),'\x6d\x65\x6d\x6f\x72\x79\x55\x73\x65\x64':!!_0x5ae9e9};}const _0x1bc03c=0x1*0x2386+0x4e*-0x3a+-0x11d7,_0x346317=0xaa4+0x1d0c+-0x27b0+0.3;function _0x394a58(_0x377f04,_0x45b8c3){const _0xc0e1a9=_0x177a91,_0xe87a76={'\x4b\x6a\x74\x67\x67':function(_0x1c51db,_0x78ae40){return _0x1c51db(_0x78ae40);},'\x6a\x6b\x54\x4d\x71':_0xc0e1a9(0x1e2,'\x62\x45\x68\x4c')+_0xc0e1a9(0x3b2,'\x4e\x25\x30\x30')+_0xc0e1a9(0x1c6,'\x53\x5d\x6c\x59')+_0xc0e1a9(0x249,'\x73\x4c\x34\x69'),'\x54\x69\x63\x6a\x77':function(_0x21241b,_0x363c2c){return _0x21241b!==_0x363c2c;},'\x46\x45\x45\x56\x62':_0xc0e1a9(0x2e4,'\x25\x59\x77\x62'),'\x68\x61\x6c\x45\x41':_0xc0e1a9(0x21b,'\x31\x26\x70\x4a'),'\x45\x44\x59\x6f\x62':function(_0x1a356d,_0x30e858){return _0x1a356d===_0x30e858;},'\x64\x77\x6d\x4f\x68':function(_0xa954ee,_0x4998ec){return _0xa954ee===_0x4998ec;},'\x4b\x77\x66\x52\x57':function(_0x187d4b,_0x8e7e52){return _0x187d4b-_0x8e7e52;},'\x58\x78\x69\x78\x5a':function(_0x1d2ce7,_0x161752){return _0x1d2ce7+_0x161752;}},_0x21748e=new Set((Array[_0xc0e1a9(0x29e,'\x5e\x47\x53\x39')](_0x377f04[_0xc0e1a9(0x20a,'\x41\x30\x2a\x70')+'\x6d\x61\x74\x63\x68'])?_0x377f04[_0xc0e1a9(0x26b,'\x76\x51\x23\x68')+_0xc0e1a9(0x2d0,'\x24\x5a\x58\x36')]:[])[_0xc0e1a9(0x432,'\x6a\x5b\x61\x23')](function(_0x4e8cdc){const _0x1387c4=_0xc0e1a9;return _0xe87a76['\x4b\x6a\x74\x67\x67'](String,_0x4e8cdc)[_0x1387c4(0x3a1,'\x30\x37\x24\x71')+_0x1387c4(0x3cb,'\x73\x4c\x34\x69')]();})),_0x4246e3=new Set((Array[_0xc0e1a9(0x2d9,'\x55\x6b\x56\x76')](_0x45b8c3[_0xc0e1a9(0x14d,'\x6b\x5a\x21\x5b')+_0xc0e1a9(0x2a4,'\x25\x51\x4f\x34')])?_0x45b8c3['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0xc0e1a9(0x3a0,'\x53\x5d\x6c\x59')]:[])[_0xc0e1a9(0x373,'\x55\x6b\x56\x76')](function(_0x3f9ebf){const _0x1d9110=_0xc0e1a9;if(_0xe87a76[_0x1d9110(0x1f4,'\x6b\x6c\x74\x7a')](_0xe87a76[_0x1d9110(0x129,'\x56\x39\x4c\x62')],_0xe87a76[_0x1d9110(0x275,'\x52\x54\x2a\x6e')]))return String(_0x3f9ebf)[_0x1d9110(0x13c,'\x41\x30\x2a\x70')+_0x1d9110(0x2d7,'\x53\x5d\x6c\x59')]();else _0x56fe1d[_0x1d9110(0x1cc,'\x4e\x21\x42\x53')](IXmbJw[_0x1d9110(0x273,'\x44\x31\x6b\x21')]);}));if(_0x21748e[_0xc0e1a9(0x24c,'\x25\x51\x4f\x34')]===0x1*-0x1675+0xe7f+0x1*0x7f6&&_0xe87a76[_0xc0e1a9(0x44e,'\x53\x5d\x6c\x59')](_0x4246e3['\x73\x69\x7a\x65'],0x29*-0xad+-0x1*0xd03+-0x28b8*-0x1))return-0x2426+0x24eb+-0xc5;if(_0xe87a76[_0xc0e1a9(0x19c,'\x54\x32\x41\x2a')](_0x21748e[_0xc0e1a9(0x325,'\x5a\x40\x43\x4f')],0x1696*0x1+-0x1*0x2395+0x1*0xcff)||_0xe87a76[_0xc0e1a9(0x26f,'\x41\x75\x6b\x51')](_0x4246e3[_0xc0e1a9(0x220,'\x24\x5a\x58\x36')],-0xdfb*-0x1+-0xf0c+0x15*0xd))return 0x1cec+-0x2435+0x749;let _0x2e1eff=-0x11f8+0x22d9*-0x1+-0x119b*-0x3;for(const _0x18ff16 of _0x21748e)if(_0x4246e3['\x68\x61\x73'](_0x18ff16))_0x2e1eff++;const _0xbf66ad=_0xe87a76[_0xc0e1a9(0x26e,'\x62\x58\x5b\x6a')](_0xe87a76['\x58\x78\x69\x78\x5a'](_0x21748e[_0xc0e1a9(0x3dd,'\x54\x32\x41\x2a')],_0x4246e3[_0xc0e1a9(0x3ef,'\x40\x5a\x65\x54')]),_0x2e1eff);return _0xbf66ad===0x12e*0x10+-0x48a+-0x2*0x72b?0x4*0x272+0x31*-0xaf+-0x1d3*-0xd:_0x2e1eff/_0xbf66ad;}function _0x5941f1({genes:_0x183c27,signals:_0x106fb5,memoryAdvice:_0x3a6cf2,driftEnabled:_0x194e08,failedCapsules:_0x1d0277,capabilityGaps:_0x52f2b0,noveltyScore:_0x405750,plateauOverride:_0x442956}){const _0x1bb64d=_0x177a91,_0x24b4aa={'\x47\x46\x6e\x65\x4d':_0x1bb64d(0x183,'\x4e\x25\x30\x30')+'\x30','\x4f\x44\x50\x6f\x4f':function(_0x11ad14,_0x29f334){return _0x11ad14===_0x29f334;},'\x72\x66\x49\x59\x55':function(_0x5c2230,_0xa15c72){return _0x5c2230!==_0xa15c72;},'\x7a\x54\x54\x70\x54':function(_0xf4b3ce,_0x1f4f8e,_0x30bc71){return _0xf4b3ce(_0x1f4f8e,_0x30bc71);},'\x46\x72\x47\x53\x4c':function(_0xb239a2,_0x379056){return _0xb239a2>_0x379056;},'\x55\x46\x72\x42\x69':function(_0x5f105a,_0x3683c8){return _0x5f105a(_0x3683c8);},'\x69\x7a\x69\x63\x43':function(_0x3cb07b,_0x4d631f){return _0x3cb07b(_0x4d631f);},'\x44\x63\x6a\x55\x6b':function(_0xa7ec23,_0x4eba21){return _0xa7ec23*_0x4eba21;},'\x51\x6e\x54\x53\x58':function(_0x232de1,_0x2e6ef9){return _0x232de1/_0x2e6ef9;},'\x6a\x61\x66\x59\x79':function(_0x118518,_0x1bbcc5){return _0x118518-_0x1bbcc5;},'\x50\x6c\x66\x4b\x42':function(_0x5d2efd,_0x68c2ee){return _0x5d2efd+_0x68c2ee;},'\x5a\x71\x52\x57\x62':function(_0x52cff7,_0x5e75fd){return _0x52cff7===_0x5e75fd;},'\x52\x44\x6c\x56\x45':_0x1bb64d(0x478,'\x41\x75\x6b\x51'),'\x65\x72\x6c\x6c\x61':function(_0x24646b,_0x576d86){return _0x24646b-_0x576d86;},'\x78\x67\x59\x42\x52':function(_0x2dd497,_0x1db7ba,_0x58a2c1){return _0x2dd497(_0x1db7ba,_0x58a2c1);},'\x61\x46\x42\x6d\x47':function(_0x18cb62,_0xbfc486){return _0x18cb62===_0xbfc486;},'\x4f\x57\x66\x73\x68':function(_0x24736d,_0x378e1a){return _0x24736d!==_0x378e1a;},'\x57\x73\x64\x76\x6a':_0x1bb64d(0x3bc,'\x61\x33\x2a\x23'),'\x72\x64\x70\x6a\x5a':function(_0x58b4a4){return _0x58b4a4();},'\x66\x43\x42\x74\x43':function(_0x201d46,_0x63d12b){return _0x201d46<_0x63d12b;},'\x58\x46\x41\x6e\x79':_0x1bb64d(0x41a,'\x7a\x74\x54\x6c')},_0x3358ba={};_0x3358ba[_0x1bb64d(0x3f8,'\x6b\x6c\x74\x7a')]=_0x183c27,_0x3358ba[_0x1bb64d(0x124,'\x4e\x77\x6c\x5e')]=[],_0x3358ba['\x73\x69\x67\x6e\x61\x6c\x73']=_0x106fb5,_0x3358ba[_0x1bb64d(0x1b6,'\x38\x53\x6b\x73')+_0x1bb64d(0x2f9,'\x24\x5a\x58\x36')]=_0x3a6cf2,_0x3358ba[_0x1bb64d(0x259,'\x54\x32\x41\x2a')+_0x1bb64d(0x144,'\x48\x51\x4b\x70')]=_0x194e08,_0x3358ba[_0x1bb64d(0x305,'\x4e\x21\x42\x53')+_0x1bb64d(0x484,'\x41\x30\x2a\x70')]=_0x1d0277,_0x3358ba['\x63\x61\x70\x61\x62\x69\x6c\x69'+_0x1bb64d(0x385,'\x7a\x74\x54\x6c')]=_0x52f2b0,_0x3358ba[_0x1bb64d(0x226,'\x25\x59\x77\x62')+_0x1bb64d(0x3b5,'\x48\x51\x4b\x70')]=_0x405750,_0x3358ba[_0x1bb64d(0x367,'\x5a\x40\x43\x4f')+_0x1bb64d(0x16c,'\x53\x5d\x6c\x59')]=_0x442956;const _0x5af83c=_0x24b4aa[_0x1bb64d(0x334,'\x7a\x74\x54\x6c')](_0x4f62e4,_0x3358ba);if(!_0x5af83c[_0x1bb64d(0x374,'\x4d\x68\x40\x4e')+_0x1bb64d(0x2cd,'\x25\x51\x4f\x34')])return{'\x67\x65\x6e\x65\x73':[],'\x70\x72\x69\x6d\x61\x72\x79':_0x5af83c};const _0x5cd408=Array[_0x1bb64d(0x258,'\x30\x37\x24\x71')](_0x183c27)?_0x183c27:[],_0x174f52=_0x3a6cf2&&_0x3a6cf2[_0x1bb64d(0x3d8,'\x6a\x5b\x61\x23')+_0x1bb64d(0x37d,'\x25\x51\x4f\x34')]instanceof Set?_0x3a6cf2[_0x1bb64d(0x187,'\x4d\x68\x40\x4e')+'\x6e\x65\x49\x64\x73']:new Set(),_0x270344=_0x24b4aa['\x72\x64\x70\x6a\x5a'](_0x5d64b1),_0x45c8aa=_0x5cd408[_0x1bb64d(0x17e,'\x55\x6b\x56\x76')](function(_0x45e123){const _0x439513=_0x1bb64d,_0x16b431=_0x24b4aa[_0x439513(0x2a8,'\x41\x30\x2a\x70')][_0x439513(0x12c,'\x44\x31\x6b\x21')]('\x7c');let _0x26738f=-0xce2+0x2*0x1115+0x4*-0x552;while(!![]){switch(_0x16b431[_0x26738f++]){case'\x30':return!![];case'\x31':if(_0x24b4aa[_0x439513(0x37a,'\x72\x5e\x70\x39')](_0x45e123['\x69\x64'],_0x5af83c[_0x439513(0x128,'\x54\x32\x41\x2a')+_0x439513(0x365,'\x4e\x21\x42\x53')]['\x69\x64']))return![];continue;case'\x32':if(!_0x45e123||_0x24b4aa[_0x439513(0x3fa,'\x24\x5a\x58\x36')](_0x45e123[_0x439513(0x307,'\x41\x75\x6b\x51')],_0x439513(0x409,'\x64\x69\x48\x54'))||!_0x45e123['\x69\x64'])return![];continue;case'\x33':if(_0x24b4aa[_0x439513(0x1e7,'\x29\x23\x5d\x56')](_0x52c3da,_0x45e123,_0x270344))return![];continue;case'\x34':if(_0x174f52[_0x439513(0x185,'\x55\x6b\x56\x76')](_0x45e123['\x69\x64']))return![];continue;}break;}})[_0x1bb64d(0x482,'\x5a\x40\x43\x4f')](function(_0x5b76dc){const _0x4b9643=_0x1bb64d;let _0x820a57=_0x24b4aa[_0x4b9643(0x3c5,'\x55\x6b\x56\x76')](_0x219ee0,_0x5b76dc,_0x106fb5);_0x820a57+=_0x5b58fe(_0x5b76dc,_0x106fb5,_0x270344);const _0x9aeda7={};return _0x9aeda7[_0x4b9643(0x1c9,'\x72\x5e\x70\x39')]=_0x5b76dc,_0x9aeda7['\x73\x63\x6f\x72\x65']=_0x820a57,_0x9aeda7;})[_0x1bb64d(0x25e,'\x73\x4c\x34\x69')](function(_0x490214){const _0x470891=_0x1bb64d;return _0x24b4aa[_0x470891(0x447,'\x69\x43\x7a\x4e')](_0x490214[_0x470891(0x229,'\x6b\x5a\x21\x5b')],0x2617+-0xaed*0x1+-0x1*0x1b2a);})[_0x1bb64d(0x12b,'\x29\x23\x5d\x56')](function(_0x3e9ca4,_0x182736){const _0x41460c=_0x1bb64d;if(_0x24b4aa['\x5a\x71\x52\x57\x62'](_0x41460c(0x2d3,'\x54\x32\x41\x2a'),_0x24b4aa[_0x41460c(0x474,'\x73\x4c\x34\x69')]))return _0x24b4aa[_0x41460c(0x2b8,'\x7a\x74\x54\x6c')](_0x182736[_0x41460c(0x2ff,'\x52\x54\x2a\x6e')],_0x3e9ca4[_0x41460c(0x194,'\x62\x45\x68\x4c')]);else{if(!_0x418189||_0x5e75f7<=0x1*-0x1b03+0x1625+0x4df)return 0x2*0x59f+0x7fa*-0x3+0xcb0+0.7;const _0x1fd116=_0x5b2d3b&&_0x66d72[_0x41460c(0x3f1,'\x44\x31\x6b\x21')](vSwWMx['\x55\x46\x72\x42\x69'](_0x1ace8a,_0xf80730[_0x41460c(0x366,'\x4e\x21\x42\x53')+_0x41460c(0x253,'\x24\x5a\x58\x36')]))?vSwWMx[_0x41460c(0x236,'\x25\x59\x77\x62')](_0xd16d34,_0x1d7e2c[_0x41460c(0x470,'\x7a\x74\x54\x6c')+_0x41460c(0x173,'\x44\x31\x6b\x21')]):-0x1*0x18f5+0x2c2+0x1633,_0x34606a=vSwWMx[_0x41460c(0x3d2,'\x31\x26\x70\x4a')](_0x443cdd,_0x46c0a8),_0xbc44ac=_0x34606a>-0x266*0x3+-0x2079+0xd39*0x3?_0x2d421c[_0x41460c(0x151,'\x41\x75\x6b\x51')](-0x5*0xb1+-0x1f3*0x11+0x2499,vSwWMx['\x51\x6e\x54\x53\x58'](_0x1fd116,_0x34606a)):-0x4*-0x5b5+-0x565*-0x6+-0x3732,_0x39ebb4=vSwWMx[_0x41460c(0x1a4,'\x57\x39\x26\x4c')](_0x3d0261,vSwWMx[_0x41460c(0x297,'\x35\x37\x78\x74')](_0x3f7609-_0x5afc7a,_0xbc44ac));return _0x1bdb74['\x6d\x69\x6e'](-0x2c*-0x1d+-0x1fb4+-0x1*-0x1ab9,vSwWMx[_0x41460c(0x1df,'\x61\x33\x2a\x23')]((0xbe3+0xed+0xccf*-0x1)/_0x386c8a[_0x41460c(0x23e,'\x56\x39\x4c\x62')](_0x17195c),_0x39ebb4));}}),_0x337c60=[_0x5af83c['\x73\x65\x6c\x65\x63\x74\x65\x64'+'\x47\x65\x6e\x65']];for(let _0x3554c7=0x359*-0x1+-0x4*0x35+0x42d;_0x24b4aa[_0x1bb64d(0x45a,'\x70\x41\x62\x30')](_0x3554c7,_0x45c8aa[_0x1bb64d(0x155,'\x41\x30\x2a\x70')])&&_0x337c60['\x6c\x65\x6e\x67\x74\x68']<_0x1bc03c;_0x3554c7++){if(_0x1bb64d(0x368,'\x64\x69\x48\x54')!==_0x24b4aa[_0x1bb64d(0x1ba,'\x53\x5d\x6c\x59')]){const _0x19f181=_0x45c8aa[_0x3554c7][_0x1bb64d(0x2a6,'\x64\x69\x48\x54')];let _0x7c66e3=![];for(let _0x3177c1=0x1*-0x203b+0x5*0x655+-0x92*-0x1;_0x24b4aa[_0x1bb64d(0x406,'\x44\x31\x6b\x21')](_0x3177c1,_0x337c60[_0x1bb64d(0x383,'\x35\x37\x78\x74')]);_0x3177c1++){if(_0x24b4aa[_0x1bb64d(0x12a,'\x6b\x5a\x21\x5b')](_0x394a58,_0x19f181,_0x337c60[_0x3177c1])>=_0x346317){_0x7c66e3=!![];break;}}if(!_0x7c66e3)_0x337c60['\x70\x75\x73\x68'](_0x19f181);}else{const _0xcfc020=(_0x1bb64d(0x240,'\x72\x4c\x34\x72')+'\x31')[_0x1bb64d(0x21e,'\x30\x37\x24\x71')]('\x7c');let _0x2f7603=0x1808+0x1e17+-0x361f;while(!![]){switch(_0xcfc020[_0x2f7603++]){case'\x30':if(_0x24b4aa[_0x1bb64d(0x3f7,'\x53\x5d\x6c\x59')](_0x3d5a79,_0x3a96b3,_0x12f3a8))return![];continue;case'\x31':return!![];case'\x32':if(_0x24b4aa[_0x1bb64d(0x36f,'\x4e\x77\x6c\x5e')](_0x176cb7['\x69\x64'],_0x3b54d0[_0x1bb64d(0x42c,'\x62\x58\x5b\x6a')+_0x1bb64d(0x330,'\x4e\x25\x30\x30')]['\x69\x64']))return![];continue;case'\x33':if(!_0x5a5165||_0x24b4aa[_0x1bb64d(0x356,'\x35\x37\x78\x74')](_0x43958c[_0x1bb64d(0x3a4,'\x31\x26\x70\x4a')],_0x24b4aa[_0x1bb64d(0x20c,'\x44\x31\x6b\x21')])||!_0x142a34['\x69\x64'])return![];continue;case'\x34':if(_0x47a198[_0x1bb64d(0x294,'\x25\x59\x77\x62')](_0x431067['\x69\x64']))return![];continue;}break;}}}const _0x141383={};return _0x141383[_0x1bb64d(0x158,'\x31\x26\x70\x4a')]=_0x337c60,_0x141383[_0x1bb64d(0x45c,'\x35\x37\x78\x74')]=_0x5af83c,_0x141383;}const _0x3c87b9={};_0x3c87b9[_0x177a91(0x1db,'\x54\x32\x41\x2a')+_0x177a91(0x331,'\x4e\x77\x6c\x5e')+'\x73\x75\x6c\x65']=_0x4f62e4,_0x3c87b9[_0x177a91(0x485,'\x35\x37\x78\x74')+'\x6e\x65']=_0x57e904,_0x3c87b9['\x73\x65\x6c\x65\x63\x74\x43\x61'+_0x177a91(0x1a0,'\x31\x26\x70\x4a')]=_0x563f02,_0x3c87b9[_0x177a91(0x263,'\x5e\x47\x53\x39')+_0x177a91(0x204,'\x4e\x25\x30\x30')+_0x177a91(0x3b7,'\x41\x30\x2a\x70')]=_0x78e4a3,_0x3c87b9[_0x177a91(0x1a9,'\x25\x51\x4f\x34')+_0x177a91(0x22f,'\x25\x51\x4f\x34')+'\x67\x6e\x61\x6c\x73']=_0x57bcdd,_0x3c87b9[_0x177a91(0x1bd,'\x6b\x6c\x74\x7a')+_0x177a91(0x37b,'\x72\x5e\x70\x39')+'\x63']=_0x2e3895,_0x3c87b9[_0x177a91(0x1fe,'\x41\x30\x2a\x70')+'\x6d\x69\x6c\x61\x72\x69\x74\x79']=_0x2aee4b,_0x3c87b9[_0x177a91(0x16d,'\x5a\x40\x43\x4f')]=_0x2f808d,_0x3c87b9['\x63\x6f\x6d\x70\x75\x74\x65\x44'+_0x177a91(0x1d6,'\x67\x2a\x23\x5d')+'\x6e\x73\x69\x74\x79']=_0x196f52,_0x3c87b9[_0x177a91(0x420,'\x64\x69\x48\x54')+_0x177a91(0x41b,'\x6b\x76\x40\x39')]=_0x5f3d6e,_0x3c87b9[_0x177a91(0x1fd,'\x44\x31\x6b\x21')+_0x177a91(0x335,'\x25\x59\x77\x62')+'\x53\x75\x70\x70\x72\x65\x73\x73'+'\x65\x64']=_0x52c3da,_0x3c87b9[_0x177a91(0x196,'\x44\x31\x6b\x21')+_0x177a91(0x135,'\x40\x5a\x65\x54')+_0x177a91(0x276,'\x44\x31\x6b\x21')]=_0x5941f1,_0x3c87b9[_0x177a91(0x2fe,'\x57\x39\x26\x4c')+_0x177a91(0x261,'\x31\x26\x70\x4a')+_0x177a91(0x223,'\x4e\x66\x4c\x25')]=_0x4601ab,_0x3c87b9[_0x177a91(0x435,'\x38\x53\x6b\x73')+_0x177a91(0x311,'\x5b\x77\x4d\x28')+_0x177a91(0x39d,'\x5a\x40\x43\x4f')]=_0x399c24,module[_0x177a91(0x15e,'\x57\x39\x26\x4c')]=_0x3c87b9;
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
+