@evomap/evolver 1.89.3 → 1.89.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/.cursor/BUGBOT.md +182 -0
  2. package/.env.example +68 -0
  3. package/.git-commit-guard-token +1 -0
  4. package/.github/CODEOWNERS +63 -0
  5. package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
  6. package/.github/pull_request_template.md +45 -0
  7. package/.github/workflows/test.yml +75 -0
  8. package/CHANGELOG.md +1237 -0
  9. package/README.md +86 -528
  10. package/README.public.md +569 -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/index.js +30 -1
  16. package/package.json +6 -17
  17. package/proxy-package.json +39 -0
  18. package/public.manifest.json +143 -0
  19. package/src/config.js +23 -0
  20. package/src/evolve/guards.js +721 -1
  21. package/src/evolve/pipeline/collect.js +1283 -1
  22. package/src/evolve/pipeline/dispatch.js +421 -1
  23. package/src/evolve/pipeline/enrich.js +440 -1
  24. package/src/evolve/pipeline/hub.js +319 -1
  25. package/src/evolve/pipeline/select.js +274 -1
  26. package/src/evolve/pipeline/signals.js +206 -1
  27. package/src/evolve/utils.js +264 -1
  28. package/src/evolve.js +350 -1
  29. package/src/experiment/agentRunner.js +229 -0
  30. package/src/experiment/cli.js +159 -0
  31. package/src/experiment/comparison.js +233 -0
  32. package/src/experiment/metrics.js +75 -0
  33. package/src/forceUpdate.js +147 -59
  34. package/src/gep/a2aProtocol.js +4455 -1
  35. package/src/gep/antiAbuseTelemetry.js +233 -0
  36. package/src/gep/autoDistillConv.js +205 -1
  37. package/src/gep/autoDistillLlm.js +315 -1
  38. package/src/gep/candidateEval.js +92 -1
  39. package/src/gep/candidates.js +198 -1
  40. package/src/gep/contentHash.js +30 -1
  41. package/src/gep/conversationSniffer.js +266 -1
  42. package/src/gep/crypto.js +89 -1
  43. package/src/gep/curriculum.js +163 -1
  44. package/src/gep/deviceId.js +218 -1
  45. package/src/gep/envFingerprint.js +118 -1
  46. package/src/gep/epigenetics.js +31 -1
  47. package/src/gep/execBridge.js +711 -1
  48. package/src/gep/explore.js +289 -1
  49. package/src/gep/hash.js +15 -1
  50. package/src/gep/hubFetch.js +359 -1
  51. package/src/gep/hubReview.js +207 -1
  52. package/src/gep/hubSearch.js +526 -1
  53. package/src/gep/hubVerify.js +306 -1
  54. package/src/gep/learningSignals.js +89 -1
  55. package/src/gep/memoryGraph.js +1374 -1
  56. package/src/gep/memoryGraphAdapter.js +203 -1
  57. package/src/gep/mutation.js +203 -1
  58. package/src/gep/narrativeMemory.js +108 -1
  59. package/src/gep/openPRRegistry.js +205 -1
  60. package/src/gep/personality.js +423 -1
  61. package/src/gep/policyCheck.js +599 -1
  62. package/src/gep/prompt.js +836 -1
  63. package/src/gep/recallInject.js +409 -1
  64. package/src/gep/recallVerifier.js +318 -1
  65. package/src/gep/reflection.js +177 -1
  66. package/src/gep/sanitize.js +9 -0
  67. package/src/gep/selector.js +602 -1
  68. package/src/gep/skillDistiller.js +1294 -1
  69. package/src/gep/solidify.js +1699 -1
  70. package/src/gep/strategy.js +136 -1
  71. package/src/gep/tokenSavings.js +88 -1
  72. package/src/gep/validator/sandboxExecutor.js +29 -1
  73. package/src/gep/workspaceKeychain.js +174 -1
  74. package/src/proxy/extensions/traceControl.js +99 -1
  75. package/src/proxy/index.js +10 -1
  76. package/src/proxy/inject.js +52 -1
  77. package/src/proxy/lifecycle/manager.js +19 -0
  78. package/src/proxy/mailbox/store.js +2 -1
  79. package/src/proxy/router/messages_route.js +5 -2
  80. package/src/proxy/trace/extractor.js +646 -1
  81. package/src/proxy/trace/usage.js +105 -1
  82. package/CONTRIBUTING.md +0 -19
  83. package/assets/cover.png +0 -0
  84. package/scripts/a2a_export.js +0 -63
  85. package/scripts/a2a_ingest.js +0 -79
  86. package/scripts/a2a_promote.js +0 -118
  87. package/scripts/analyze_by_skill.js +0 -121
  88. package/scripts/build_binaries.js +0 -479
  89. package/scripts/check-changelog.js +0 -166
  90. package/scripts/extract_log.js +0 -85
  91. package/scripts/generate_history.js +0 -75
  92. package/scripts/gep_append_event.js +0 -96
  93. package/scripts/gep_personality_report.js +0 -234
  94. package/scripts/human_report.js +0 -147
  95. package/scripts/recall-verify-report.js +0 -234
  96. package/scripts/recover_loop.js +0 -61
  97. package/scripts/refresh_stars_badge.js +0 -168
  98. package/scripts/seed-merchants.js +0 -91
  99. package/scripts/suggest_version.js +0 -89
  100. package/scripts/validate-modules.js +0 -38
  101. package/scripts/validate-suite.js +0 -78
  102. package/skills/index.json +0 -14
  103. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  104. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,602 @@
1
- const _0x446d32=_0x41a4;(function(_0x37668c,_0x354306){const _0x2401b7=_0x41a4,_0x2656a9=_0x37668c();while(!![]){try{const _0xdf7fa3=-parseInt(_0x2401b7(0x318,'\x66\x6f\x42\x30'))/(0x9*-0x227+-0x17*-0x191+0x93*-0x1d)*(-parseInt(_0x2401b7(0x1f9,'\x67\x24\x5b\x55'))/(0x7c3*0x1+0x1d22+0x7*-0x545))+-parseInt(_0x2401b7(0x383,'\x68\x46\x38\x30'))/(0x7*-0x326+0x1a9b+0x48e*-0x1)*(-parseInt(_0x2401b7(0x23c,'\x57\x72\x62\x40'))/(-0x1*0x1f70+0x1d9b*-0x1+0x1*0x3d0f))+-parseInt(_0x2401b7(0x28b,'\x78\x5d\x33\x71'))/(-0xa54+-0x13*-0x18f+-0x12*0x112)*(-parseInt(_0x2401b7(0x34d,'\x43\x39\x26\x7a'))/(0xdf*-0x1a+-0xee8+0x2594))+-parseInt(_0x2401b7(0x39c,'\x64\x64\x5a\x69'))/(0x10ea+0x1718+-0x27fb*0x1)*(parseInt(_0x2401b7(0x9d,'\x26\x23\x54\x38'))/(-0x7a*-0x3b+-0x14ed+-0x729))+parseInt(_0x2401b7(0x272,'\x25\x5b\x77\x66'))/(-0x2361*0x1+0x5e9+0x1d81*0x1)+parseInt(_0x2401b7(0x37f,'\x74\x50\x25\x41'))/(-0x85f+0xfd6+-0x76d)*(parseInt(_0x2401b7(0x30a,'\x30\x55\x4f\x31'))/(-0x13e6+0x17*-0x1d+0x168c))+-parseInt(_0x2401b7(0x20c,'\x36\x57\x50\x38'))/(-0x17e+0xe2d+-0xca3);if(_0xdf7fa3===_0x354306)break;else _0x2656a9['push'](_0x2656a9['shift']());}catch(_0x223731){_0x2656a9['push'](_0x2656a9['shift']());}}}(_0x47cc,-0x48c3c+-0x8438b*0x1+-0x1*-0x129c5c));const _0x4e5de7=(function(){const _0x4783ee=_0x41a4,_0x192912={};_0x192912[_0x4783ee(0x2dd,'\x6e\x32\x53\x39')]=function(_0x1d1b5f,_0x21582e){return _0x1d1b5f>_0x21582e;},_0x192912[_0x4783ee(0xfa,'\x5b\x77\x76\x36')]=_0x4783ee(0x1aa,'\x77\x34\x26\x25'),_0x192912['\x4c\x74\x61\x79\x79']=function(_0x2e9206,_0xbd579f){return _0x2e9206===_0xbd579f;},_0x192912[_0x4783ee(0x2b7,'\x64\x78\x25\x39')]=_0x4783ee(0x3b6,'\x41\x78\x57\x63');const _0x1dcfc6=_0x192912;let _0x585da3=!![];return function(_0x25fb28,_0x2e357e){const _0x292a27=_0x4783ee,_0x3c74c6={};_0x3c74c6[_0x292a27(0x1ad,'\x26\x24\x46\x33')]=_0x292a27(0x23a,'\x74\x50\x25\x41'),_0x3c74c6[_0x292a27(0x1f2,'\x5a\x45\x49\x52')]=_0x1dcfc6['\x6e\x47\x7a\x74\x59'];const _0x23126a=_0x3c74c6;if(_0x1dcfc6[_0x292a27(0xbe,'\x74\x50\x25\x41')](_0x292a27(0x353,'\x6a\x24\x6d\x29'),_0x1dcfc6[_0x292a27(0x36b,'\x5a\x45\x49\x52')]))return _0x1dcfc6[_0x292a27(0xc2,'\x6f\x52\x6c\x63')](_0x5cbf44[_0x292a27(0xfc,'\x6c\x68\x4d\x32')],0x296+0x1*-0x543+0x2ad);else{const _0x40ad6d=_0x585da3?function(){const _0x466f21=_0x292a27;if(_0x23126a[_0x466f21(0x30c,'\x30\x55\x4f\x31')]===_0x23126a[_0x466f21(0x3c3,'\x6a\x24\x6d\x29')])return _0x2200d1(_0x3faf96)[_0x466f21(0x11a,'\x70\x4c\x46\x4e')+_0x466f21(0xc5,'\x75\x70\x36\x72')]();else{if(_0x2e357e){const _0x439510=_0x2e357e[_0x466f21(0x13b,'\x23\x57\x50\x78')](_0x25fb28,arguments);return _0x2e357e=null,_0x439510;}}}:function(){};return _0x585da3=![],_0x40ad6d;}};}()),_0x4ad29d=_0x4e5de7(this,function(){const _0x4d5ac7=_0x41a4,_0x3fed99={};_0x3fed99[_0x4d5ac7(0xec,'\x66\x78\x72\x39')]=_0x4d5ac7(0xbc,'\x36\x57\x50\x38')+_0x4d5ac7(0x236,'\x4a\x65\x43\x54');const _0x402330=_0x3fed99;return _0x4ad29d[_0x4d5ac7(0x3a6,'\x64\x64\x5a\x69')]()[_0x4d5ac7(0x150,'\x6e\x32\x53\x39')](_0x402330[_0x4d5ac7(0x106,'\x35\x5d\x70\x4e')])[_0x4d5ac7(0x361,'\x43\x39\x26\x7a')]()[_0x4d5ac7(0x3c1,'\x67\x58\x2a\x24')+_0x4d5ac7(0x251,'\x78\x5d\x33\x71')](_0x4ad29d)[_0x4d5ac7(0x327,'\x78\x5d\x33\x71')](_0x4d5ac7(0x81,'\x28\x2a\x68\x39')+'\x2b\x29\x2b\x24');});_0x4ad29d();const {scoreTagOverlap:_0x17a5f5,expandSignals:_0x4e291f}=require(_0x446d32(0x210,'\x4d\x73\x75\x79')+_0x446d32(0x2df,'\x77\x34\x26\x25')+'\x73'),{captureEnvFingerprint:_0x4dfbf1}=require(_0x446d32(0x256,'\x4c\x5d\x40\x66')+_0x446d32(0x298,'\x48\x74\x61\x59')),{getEpigeneticBoost:_0x32983f,isEpigeneticallySuppressed:_0x326608}=require(_0x446d32(0x1b0,'\x23\x57\x50\x78')+_0x446d32(0x110,'\x41\x33\x66\x51')),_0x57c0bb=parseFloat(process.env.SEMANTIC_MATCH_WEIGHT||'\x30\x2e\x34')||-0xe28+-0x17ba+0x25e2+0.4,_0xa55771=new Set([_0x446d32(0x2fd,'\x23\x57\x50\x78'),_0x446d32(0x294,'\x26\x23\x54\x38'),_0x446d32(0xc1,'\x57\x72\x62\x40'),_0x446d32(0x3b5,'\x72\x6e\x53\x70'),_0x446d32(0x278,'\x7a\x62\x38\x6a'),_0x446d32(0x23e,'\x68\x46\x38\x30'),_0x446d32(0x12a,'\x30\x55\x4f\x31'),_0x446d32(0x2d0,'\x26\x24\x46\x33'),_0x446d32(0x273,'\x66\x78\x72\x39'),_0x446d32(0xa8,'\x40\x41\x51\x7a'),_0x446d32(0x1bb,'\x70\x4c\x46\x4e'),'\x68\x61\x73',_0x446d32(0x331,'\x72\x6e\x53\x70'),_0x446d32(0x2c3,'\x36\x57\x50\x38'),_0x446d32(0x133,'\x64\x78\x25\x39'),'\x69\x74\x73','\x63\x61\x6e',_0x446d32(0x264,'\x48\x74\x61\x59'),_0x446d32(0x178,'\x55\x4c\x72\x26'),_0x446d32(0x25a,'\x5b\x77\x76\x36'),_0x446d32(0x176,'\x77\x34\x26\x25'),_0x446d32(0x29e,'\x77\x34\x26\x25'),_0x446d32(0x2c1,'\x64\x64\x5a\x69'),_0x446d32(0x22c,'\x49\x57\x72\x5e'),_0x446d32(0x279,'\x36\x57\x50\x38'),_0x446d32(0x2fe,'\x67\x58\x2a\x24')]);function _0x5cd049(_0x504e55){const _0x5b25ec=_0x446d32,_0x592ec4={'\x4a\x42\x46\x77\x73':function(_0x31d02d,_0x5bc503,_0x27ba51){return _0x31d02d(_0x5bc503,_0x27ba51);},'\x4d\x76\x49\x6e\x43':function(_0xed1527,_0x12b72f){return _0xed1527!==_0x12b72f;},'\x6a\x4e\x6e\x43\x51':_0x5b25ec(0x2b1,'\x41\x78\x57\x63'),'\x45\x53\x62\x43\x58':function(_0x7cfdc7,_0x1c98b7){return _0x7cfdc7>=_0x1c98b7;},'\x6d\x4d\x4e\x62\x6b':function(_0x25aa98,_0x52e51c){return _0x25aa98(_0x52e51c);},'\x4e\x68\x4d\x64\x54':function(_0x154400,_0x4f19ed){return _0x154400||_0x4f19ed;}};return _0x592ec4[_0x5b25ec(0x3b9,'\x57\x72\x62\x40')](String,_0x592ec4[_0x5b25ec(0x7e,'\x51\x44\x59\x56')](_0x504e55,''))['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x5b25ec(0x3d5,'\x30\x55\x4f\x31')]()['\x72\x65\x70\x6c\x61\x63\x65'](/[^\p{L}\p{N}_\-]+/gu,'\x20')[_0x5b25ec(0x266,'\x35\x5d\x70\x4e')](/\s+/)[_0x5b25ec(0xaa,'\x41\x78\x57\x63')](function(_0xf359dd){const _0x357258=_0x5b25ec;return _0x592ec4[_0x357258(0x34e,'\x67\x24\x5b\x55')](_0x592ec4[_0x357258(0x104,'\x74\x50\x25\x41')],_0x592ec4[_0x357258(0x333,'\x6f\x52\x31\x71')])?_0x592ec4[_0x357258(0x253,'\x48\x76\x52\x30')](_0x7d0f8a,_0x57a6b4,[_0x50c768]):_0x592ec4[_0x357258(0x153,'\x74\x50\x25\x41')](_0xf359dd[_0x357258(0x1c0,'\x57\x72\x62\x40')],-0x99f*0x2+0x4aa+0xe96)&&!_0xa55771[_0x357258(0x3d6,'\x49\x57\x72\x5e')](_0xf359dd);});}function _0x541afb(_0x22a61c){const _0x2365e8=_0x446d32,_0x31524f={};_0x31524f[_0x2365e8(0xa9,'\x66\x78\x72\x39')]=function(_0x3240db,_0x338116){return _0x3240db<_0x338116;},_0x31524f[_0x2365e8(0x382,'\x64\x64\x5a\x69')]=function(_0x11fc63,_0x4c14b3){return _0x11fc63+_0x4c14b3;};const _0x4c98e4=_0x31524f;var _0x2715c7={};for(var _0x568ad0=-0x1*-0x1729+-0x1*-0x721+-0x1e4a;_0x4c98e4[_0x2365e8(0x195,'\x74\x50\x25\x41')](_0x568ad0,_0x22a61c[_0x2365e8(0x13f,'\x7a\x62\x38\x6a')]);_0x568ad0++){_0x2715c7[_0x22a61c[_0x568ad0]]=_0x4c98e4[_0x2365e8(0x386,'\x6f\x52\x31\x71')](_0x2715c7[_0x22a61c[_0x568ad0]]||0x1114+0xf0f+0x1*-0x2023,0x1dda+0x1*0x3ec+-0x41*0x85);}return _0x2715c7;}function _0x5812f9(_0x5766c9,_0x12da18){const _0x1f941a=_0x446d32,_0x17fd0a={};_0x17fd0a[_0x1f941a(0x199,'\x5b\x77\x76\x36')]=_0x1f941a(0x2f6,'\x57\x72\x62\x40')+'\x32',_0x17fd0a[_0x1f941a(0x8e,'\x48\x76\x52\x30')]=function(_0x3775ea,_0x43fd30){return _0x3775ea*_0x43fd30;},_0x17fd0a[_0x1f941a(0x371,'\x7a\x62\x38\x6a')]=function(_0xc3a015,_0xd10135){return _0xc3a015*_0xd10135;},_0x17fd0a[_0x1f941a(0x312,'\x68\x69\x67\x79')]=function(_0x529bcb,_0x3b01f6){return _0x529bcb===_0x3b01f6;},_0x17fd0a['\x75\x48\x41\x56\x77']=function(_0x24c63a,_0x379538){return _0x24c63a===_0x379538;},_0x17fd0a['\x6f\x79\x4b\x43\x59']=function(_0x2568df,_0x193c14){return _0x2568df/_0x193c14;};const _0x48307e=_0x17fd0a;var _0x24b90c=new Set(Object[_0x1f941a(0x124,'\x64\x64\x5a\x69')](_0x5766c9)['\x63\x6f\x6e\x63\x61\x74'](Object[_0x1f941a(0xde,'\x70\x4c\x46\x4e')](_0x12da18))),_0x598cb2=-0x151f+-0x1c23+0x3142,_0x3df891=0x946+-0x292+-0x6b4,_0x4ecf9c=0x739*0x1+-0x705*0x3+0xdd6;_0x24b90c[_0x1f941a(0x35a,'\x43\x39\x26\x7a')](function(_0x353b97){const _0x2aa0d3=_0x1f941a,_0x2b77df=_0x48307e[_0x2aa0d3(0x2d7,'\x66\x6f\x42\x30')][_0x2aa0d3(0x187,'\x67\x24\x5b\x55')]('\x7c');let _0x1ae3c5=-0x19f3+-0x1*0x1676+-0x2d9*-0x11;while(!![]){switch(_0x2b77df[_0x1ae3c5++]){case'\x30':var _0x172516=_0x5766c9[_0x353b97]||0x91c+-0x253a+0x1c1e;continue;case'\x31':_0x3df891+=_0x48307e[_0x2aa0d3(0x391,'\x40\x41\x51\x7a')](_0x172516,_0x172516);continue;case'\x32':_0x4ecf9c+=_0x4d7232*_0x4d7232;continue;case'\x33':var _0x4d7232=_0x12da18[_0x353b97]||-0x6f*0x1f+0x1*-0x1cbe+-0x2a2f*-0x1;continue;case'\x34':_0x598cb2+=_0x48307e[_0x2aa0d3(0x80,'\x75\x21\x4e\x4b')](_0x172516,_0x4d7232);continue;}break;}});if(_0x48307e['\x6e\x65\x79\x62\x6d'](_0x3df891,-0x1*-0x211+0x1bb8+0x1dc9*-0x1)||_0x48307e[_0x1f941a(0x143,'\x57\x72\x62\x40')](_0x4ecf9c,0x4*0x8c5+-0x1f*0xf5+-0x1*0x569))return-0x3e5+-0xb*0x1d9+-0x32*-0x7c;return _0x48307e[_0x1f941a(0x389,'\x24\x62\x5b\x43')](_0x598cb2,_0x48307e[_0x1f941a(0xa6,'\x4a\x65\x43\x54')](Math['\x73\x71\x72\x74'](_0x3df891),Math[_0x1f941a(0x396,'\x63\x57\x55\x39')](_0x4ecf9c)));}function _0x551f7b(_0x3b1b59,_0x3f6105){const _0x1482fd=_0x446d32,_0x4023e9={'\x48\x74\x62\x42\x6a':function(_0x56dcca,_0x296a01){return _0x56dcca(_0x296a01);},'\x51\x67\x71\x70\x76':function(_0x2197b9,_0x33426d){return _0x2197b9===_0x33426d;},'\x4d\x4d\x42\x55\x74':_0x1482fd(0x39b,'\x5b\x77\x76\x36'),'\x41\x6c\x59\x41\x6d':function(_0x2dc7c9,_0x3cc941){return _0x2dc7c9===_0x3cc941;},'\x68\x69\x4d\x6f\x42':_0x1482fd(0x393,'\x48\x74\x61\x59'),'\x4d\x55\x70\x57\x65':function(_0x398644,_0x474462){return _0x398644(_0x474462);},'\x75\x4a\x4c\x50\x43':function(_0xa6e570,_0x355e85,_0x4e9b85){return _0xa6e570(_0x355e85,_0x4e9b85);}};if(!_0x3b1b59||!_0x3f6105||_0x4023e9[_0x1482fd(0x11f,'\x57\x72\x62\x40')](_0x3f6105[_0x1482fd(0x398,'\x25\x5b\x77\x66')],0x1949+-0xd*0x155+0x28*-0x33))return-0x1*0x1cf9+0x2*-0x1154+0x3fa1;var _0x5c5a7b=[];_0x3f6105[_0x1482fd(0xf1,'\x48\x74\x61\x59')](function(_0x3ec5b7){const _0x5c10ac=_0x1482fd;_0x5c5a7b=_0x5c5a7b[_0x5c10ac(0x233,'\x64\x78\x25\x39')](_0x4023e9['\x48\x74\x62\x42\x6a'](_0x5cd049,_0x3ec5b7));});if(_0x4023e9['\x41\x6c\x59\x41\x6d'](_0x5c5a7b['\x6c\x65\x6e\x67\x74\x68'],0x1ca*0x3+-0x229b+0x1d3d))return 0xe*0x1b+0xad6+-0x2*0x628;var _0x451ff4=[];Array[_0x1482fd(0x357,'\x6e\x32\x53\x39')](_0x3b1b59[_0x1482fd(0x97,'\x57\x72\x62\x40')+_0x1482fd(0x268,'\x55\x4c\x72\x26')])&&(_0x4023e9[_0x1482fd(0x2af,'\x41\x66\x46\x76')](_0x4023e9[_0x1482fd(0x306,'\x41\x66\x46\x76')],_0x4023e9[_0x1482fd(0x14d,'\x74\x50\x25\x41')])?_0x3b1b59[_0x1482fd(0x28f,'\x6a\x24\x6d\x29')+'\x6d\x61\x74\x63\x68'][_0x1482fd(0x19a,'\x77\x34\x26\x25')](function(_0x357b28){const _0xb2c498=_0x1482fd;if(_0x4023e9['\x51\x67\x71\x70\x76'](_0x4023e9[_0xb2c498(0x1b4,'\x35\x5d\x70\x4e')],_0x4023e9[_0xb2c498(0x3da,'\x68\x46\x38\x30')]))_0x451ff4=_0x451ff4[_0xb2c498(0xcd,'\x4d\x73\x75\x79')](_0x5cd049(_0x357b28));else{const _0x27f833=_0x3a8f59[_0x44a798];_0x3aec4f[_0xb2c498(0x9a,'\x49\x57\x72\x5e')](_0x3c0a92,-0xb*0x53+0x6c*0x37+-0x13a2*0x1),_0x27c45a[_0xb2c498(0x2e2,'\x24\x62\x5b\x43')](_0x27f833);}}):_0x2403c9[_0x1482fd(0x27c,'\x75\x21\x4e\x4b')](_0x1482fd(0x29b,'\x63\x57\x55\x39')+_0x1482fd(0x2b5,'\x64\x64\x5a\x69')+'\x20'+_0x541a34[_0x1482fd(0x9f,'\x43\x39\x26\x7a')](-0x1fed*0x1+-0x172c+0x371c)));if(_0x3b1b59[_0x1482fd(0x1e4,'\x34\x5d\x64\x49')])_0x451ff4=_0x451ff4[_0x1482fd(0x202,'\x48\x76\x52\x30')](_0x4023e9[_0x1482fd(0x374,'\x5a\x45\x49\x52')](_0x5cd049,_0x3b1b59[_0x1482fd(0xca,'\x23\x57\x50\x78')]));if(_0x3b1b59['\x69\x64'])_0x451ff4=_0x451ff4[_0x1482fd(0x26a,'\x25\x5b\x77\x66')](_0x5cd049(_0x3b1b59['\x69\x64']));if(_0x4023e9[_0x1482fd(0x1e9,'\x26\x24\x46\x33')](_0x451ff4[_0x1482fd(0x1dc,'\x75\x70\x36\x72')],-0x7*-0x2ef+-0x3a*0x66+-0x1*-0x293))return 0x1d4a+-0x126*0x3+0x676*-0x4;var _0x2a173b=_0x4023e9[_0x1482fd(0x2a0,'\x57\x72\x62\x40')](_0x541afb,_0x5c5a7b),_0x723b25=_0x4023e9['\x4d\x55\x70\x57\x65'](_0x541afb,_0x451ff4);return _0x4023e9[_0x1482fd(0x14f,'\x68\x46\x38\x30')](_0x5812f9,_0x2a173b,_0x723b25);}const _0x45b40b=-0xc0b+-0x1d90+-0x19*-0x1d3;function _0x12a4fd(_0x4ead26,_0x4f9511){const _0x404137=_0x446d32,_0x5a4598={'\x5a\x42\x5a\x75\x54':function(_0x44ec0f,_0xc34d3b){return _0x44ec0f(_0xc34d3b);},'\x53\x5a\x63\x6b\x63':function(_0x21ce38,_0x79888e){return _0x21ce38>=_0x79888e;},'\x51\x62\x62\x42\x63':function(_0x5651ad,_0x56ef28){return _0x5651ad>_0x56ef28;},'\x4e\x56\x77\x44\x66':function(_0x2398fc,_0x2af657){return _0x2398fc+_0x2af657;},'\x71\x62\x44\x57\x66':function(_0x570749,_0x197ed7){return _0x570749||_0x197ed7;}};if(!_0x4ead26||!_0x4f9511||_0x4f9511[_0x404137(0x13f,'\x7a\x62\x38\x6a')]===0x5*-0x269+0x3*-0x903+0x2716)return![];const _0x10fe9a=_0x5a4598[_0x404137(0x87,'\x6e\x32\x53\x39')](String,_0x4ead26),_0x61b636=_0x4f9511[_0x404137(0x2a9,'\x68\x69\x67\x79')](_0x301b44=>String(_0x301b44)),_0x5e7209=_0x5a4598[_0x404137(0xc6,'\x40\x41\x51\x7a')](_0x10fe9a[_0x404137(0x11c,'\x6f\x52\x31\x71')],-0x1*-0xa21+0x254a+-0x2f69)&&_0x10fe9a[_0x404137(0x336,'\x4c\x5d\x40\x66')+'\x74\x68']('\x2f')&&_0x5a4598[_0x404137(0x2ce,'\x48\x74\x61\x59')](_0x10fe9a[_0x404137(0x384,'\x63\x57\x55\x39')+_0x404137(0x148,'\x67\x58\x2a\x24')]('\x2f'),0x3*0x7d7+0x3*-0x702+-0x27f);if(_0x5e7209){if(_0x5a4598[_0x404137(0x399,'\x41\x66\x46\x76')](_0x10fe9a[_0x404137(0x1d1,'\x55\x4c\x72\x26')],_0x45b40b))return![];const _0x2b23d6=_0x10fe9a[_0x404137(0x13a,'\x6f\x52\x31\x71')+'\x78\x4f\x66']('\x2f'),_0x41de04=_0x10fe9a[_0x404137(0x28e,'\x76\x6d\x4a\x4c')](-0x11cd+0x23db+-0x120d,_0x2b23d6),_0x46be52=_0x10fe9a[_0x404137(0x1de,'\x41\x78\x57\x63')](_0x5a4598[_0x404137(0x130,'\x70\x4c\x46\x4e')](_0x2b23d6,0x1063+-0x8cb+-0x797));try{const _0x3d5094=new RegExp(_0x41de04,_0x5a4598[_0x404137(0x1b1,'\x55\x4c\x72\x26')](_0x46be52,'\x69'));return _0x61b636[_0x404137(0x1d7,'\x34\x5d\x64\x49')](_0x1cf78d=>_0x3d5094[_0x404137(0x295,'\x41\x78\x57\x63')](_0x1cf78d));}catch(_0x156f9f){}}if(_0x10fe9a['\x69\x6e\x63\x6c\x75\x64\x65\x73']('\x7c')&&!_0x10fe9a[_0x404137(0x283,'\x78\x5d\x33\x71')+'\x74\x68']('\x2f')){const _0x585b4e=_0x10fe9a[_0x404137(0x2a5,'\x49\x57\x72\x5e')]('\x7c')[_0x404137(0x2a9,'\x68\x69\x67\x79')](_0x25cd1f=>_0x25cd1f[_0x404137(0x8a,'\x43\x39\x26\x7a')]()[_0x404137(0x2c9,'\x4a\x65\x43\x54')+_0x404137(0x101,'\x4a\x65\x43\x54')]())[_0x404137(0xc8,'\x26\x24\x46\x33')](Boolean);return _0x585b4e[_0x404137(0x3d4,'\x78\x5d\x33\x71')](_0x2258da=>_0x61b636[_0x404137(0x1a7,'\x48\x74\x61\x59')](_0x5c8d2a=>_0x5c8d2a['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+'\x61\x73\x65']()[_0x404137(0x323,'\x6f\x52\x6c\x63')](_0x2258da)));}const _0x775c72=_0x10fe9a[_0x404137(0x229,'\x28\x2a\x68\x39')+_0x404137(0x3d0,'\x41\x66\x46\x76')]();return _0x61b636[_0x404137(0x2d3,'\x5b\x77\x76\x36')](_0x5809b0=>_0x5809b0['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x404137(0x2da,'\x6a\x21\x58\x63')]()[_0x404137(0x8b,'\x35\x5d\x70\x4e')](_0x775c72));}function _0x4172e9(_0x31ce16,_0x233002){const _0x4db45c=_0x446d32,_0x55ab9d={'\x77\x49\x47\x51\x61':function(_0x485c82,_0x57ebb9){return _0x485c82!==_0x57ebb9;},'\x49\x4a\x73\x70\x78':'\x47\x65\x6e\x65','\x79\x49\x43\x77\x6b':function(_0x322543,_0x58089e,_0x256d75){return _0x322543(_0x58089e,_0x256d75);},'\x6e\x7a\x74\x41\x6d':function(_0x134a0f,_0x60fd15){return _0x134a0f===_0x60fd15;},'\x44\x48\x74\x55\x50':function(_0x3d8bf6,_0x1d6126){return _0x3d8bf6*_0x1d6126;},'\x48\x6c\x5a\x4f\x62':function(_0x38693a,_0x182f41,_0x571175){return _0x38693a(_0x182f41,_0x571175);},'\x73\x54\x6e\x76\x6f':function(_0x8a39c8,_0x3670b8){return _0x8a39c8+_0x3670b8;},'\x76\x4a\x6a\x54\x4b':function(_0x26fe08,_0x3ab6ee){return _0x26fe08+_0x3ab6ee;}};if(!_0x31ce16||_0x55ab9d[_0x4db45c(0x16e,'\x41\x66\x46\x76')](_0x31ce16[_0x4db45c(0x213,'\x6a\x24\x6d\x29')],_0x55ab9d[_0x4db45c(0xb3,'\x4a\x65\x43\x54')]))return 0x2*0x29c+-0x12d+-0x40b;const _0x16fc45=Array[_0x4db45c(0x27a,'\x70\x4c\x46\x4e')](_0x31ce16['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x4db45c(0x346,'\x64\x78\x25\x39')])?_0x31ce16['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x4db45c(0x1e1,'\x30\x55\x4f\x31')]:[],_0x4bcb24=_0x55ab9d[_0x4db45c(0x1c1,'\x75\x21\x4e\x4b')](_0x17a5f5,_0x31ce16,_0x233002);if(_0x55ab9d[_0x4db45c(0x20f,'\x51\x44\x59\x56')](_0x16fc45[_0x4db45c(0x397,'\x6e\x32\x53\x39')],-0x1*0x26ff+-0x1145+0x3844))return _0x4bcb24>0x2cb+0x47*-0x3+-0x1f6?_0x4bcb24*(-0x3*0x502+-0x917+-0x1*-0x181d+0.6):0x98c+-0xf1d+0x3*0x1db;let _0x4387ba=-0x1285+0x7*0x391+-0x672;for(const _0x26b2a5 of _0x16fc45){if(_0x55ab9d['\x79\x49\x43\x77\x6b'](_0x12a4fd,_0x26b2a5,_0x233002))_0x4387ba+=-0x513+-0x1c8a+0x219e;}const _0x4a3bec=_0x55ab9d[_0x4db45c(0x204,'\x35\x5d\x70\x4e')](_0x55ab9d[_0x4db45c(0x2fb,'\x64\x64\x5a\x69')](_0x551f7b,_0x31ce16,_0x233002),_0x57c0bb);return _0x55ab9d['\x73\x54\x6e\x76\x6f'](_0x55ab9d[_0x4db45c(0x15e,'\x30\x55\x4f\x31')](_0x4387ba,_0x55ab9d[_0x4db45c(0x17b,'\x49\x57\x72\x5e')](_0x4bcb24,0xa*0x97+-0x8b+0x1c9*-0x3+0.6)),_0x4a3bec);}function _0x3e1b95(_0x4a3d0d,_0x47d803,_0x2f364f){const _0x4a6afd=_0x446d32,_0x3e48f8={'\x44\x4d\x53\x6f\x44':function(_0x582887,_0x5eae12){return _0x582887(_0x5eae12);},'\x54\x6f\x76\x46\x4c':function(_0x3703cb,_0x43e477){return _0x3703cb===_0x43e477;},'\x55\x73\x4b\x53\x6f':function(_0x5edadb,_0x592a86){return _0x5edadb<_0x592a86;},'\x6e\x65\x4c\x6f\x4d':function(_0x3a1c17,_0x522337){return _0x3a1c17/_0x522337;},'\x77\x46\x61\x46\x43':function(_0x4af332,_0xeee8c9){return _0x4af332!==_0xeee8c9;},'\x47\x66\x63\x65\x72':function(_0x2bdbc5,_0x28d06f){return _0x2bdbc5===_0x28d06f;},'\x5a\x51\x67\x42\x6c':_0x4a6afd(0x121,'\x78\x5d\x33\x71'),'\x58\x68\x4b\x6a\x73':function(_0x58e87b,_0x177961){return _0x58e87b>_0x177961;},'\x4c\x5a\x6d\x4b\x58':function(_0x365c78,_0x581c50,_0x4e9132){return _0x365c78(_0x581c50,_0x4e9132);},'\x55\x73\x53\x45\x57':_0x4a6afd(0xe5,'\x64\x78\x25\x39')};if(!_0x4a3d0d||_0x3e48f8[_0x4a6afd(0x163,'\x43\x39\x26\x7a')](_0x4a3d0d[_0x4a6afd(0x213,'\x6a\x24\x6d\x29')],_0x4a6afd(0x189,'\x66\x6f\x42\x30')))return 0xb3a+-0x9*-0x3e7+-0x2e59;let _0x1995d8=-0x1*-0x168d+0xe4d+-0x24da;const _0x966c08=Array[_0x4a6afd(0x357,'\x6e\x32\x53\x39')](_0x4a3d0d[_0x4a6afd(0x184,'\x63\x57\x55\x39')+_0x4a6afd(0x2e7,'\x48\x76\x52\x30')])?_0x4a3d0d[_0x4a6afd(0x1a2,'\x7a\x62\x38\x6a')+_0x4a6afd(0x2c4,'\x70\x4c\x46\x4e')][_0x4a6afd(0x1ce,'\x68\x69\x67\x79')](-(-0x14e3*0x1+-0xc*-0x33d+-0x11f1)):[];for(let _0x1f9989=-0xcd9*0x3+0x105*0x3+0x237c;_0x3e48f8[_0x4a6afd(0x358,'\x48\x76\x52\x30')](_0x1f9989,_0x966c08[_0x4a6afd(0x302,'\x68\x46\x38\x30')]);_0x1f9989++){const _0x2ccc43=_0x966c08[_0x1f9989];if(!_0x2ccc43)continue;if(_0x3e48f8[_0x4a6afd(0x2c0,'\x4a\x65\x43\x54')](_0x2ccc43['\x6f\x75\x74\x63\x6f\x6d\x65'],'\x73\x75\x63\x63\x65\x73\x73'))_0x1995d8+=0x16ee+-0xc75+-0xa79+0.12;else{if(_0x3e48f8[_0x4a6afd(0x305,'\x68\x69\x67\x79')](_0x2ccc43[_0x4a6afd(0x3aa,'\x48\x76\x52\x30')],_0x3e48f8['\x5a\x51\x67\x42\x6c']))_0x1995d8-=-0x707+-0x1*0x2638+-0x1*-0x2d3f+0.22;else{if(_0x3e48f8[_0x4a6afd(0x1ef,'\x57\x72\x62\x40')](_0x2ccc43[_0x4a6afd(0x186,'\x43\x39\x26\x7a')],_0x4a6afd(0x16a,'\x57\x72\x62\x40')))_0x1995d8-=0x1de6+-0x147e+-0x7*0x158+0.08;}}}_0x1995d8+=_0x32983f(_0x4a3d0d,_0x2f364f);if(Array[_0x4a6afd(0x34f,'\x72\x6e\x53\x70')](_0x4a3d0d[_0x4a6afd(0x2b4,'\x78\x5d\x33\x71')+'\x74\x65\x72\x6e\x73'])&&_0x3e48f8['\x58\x68\x4b\x6a\x73'](_0x4a3d0d[_0x4a6afd(0x340,'\x28\x2a\x68\x39')+_0x4a6afd(0xe9,'\x7a\x62\x38\x6a')][_0x4a6afd(0xdf,'\x77\x34\x26\x25')],-0x2*-0x235+-0x224e*-0x1+-0x19d*0x18)){let _0x16d2ba=0x111b+-0x9*0x38b+-0x56*-0x2c;const _0x2a45cb=new Set(_0x3e48f8['\x4c\x5a\x6d\x4b\x58'](_0x4e291f,_0x47d803,'')),_0x1aaa40=_0x4a3d0d[_0x4a6afd(0x19c,'\x25\x5b\x77\x66')+_0x4a6afd(0x15b,'\x40\x41\x51\x7a')][_0x4a6afd(0x18c,'\x67\x58\x2a\x24')](-(-0xcb4+0xd02+-0x48));for(let _0x46229f=0xb19+-0x1b6b+0x1052;_0x3e48f8['\x55\x73\x4b\x53\x6f'](_0x46229f,_0x1aaa40[_0x4a6afd(0x21e,'\x6c\x68\x4d\x32')]);_0x46229f++){if(_0x3e48f8[_0x4a6afd(0x22a,'\x6c\x68\x4d\x32')](_0x3e48f8[_0x4a6afd(0x1d2,'\x66\x78\x72\x39')],'\x4d\x6f\x55\x6b\x49')){if(!_0xb1bac['\x69\x73\x41\x72\x72\x61\x79'](_0x5a9dd4)||!_0x2ad331[_0x4a6afd(0x3b1,'\x78\x5d\x33\x71')](_0x3b3f61))return-0x9*0x24a+-0x1455+0x28ef;if(_0x3e48f8[_0x4a6afd(0x128,'\x6c\x68\x4d\x32')](_0x11decf[_0x4a6afd(0x10d,'\x41\x33\x66\x51')],-0xfd0+0x736+-0x2de*-0x3)||_0x3e48f8[_0x4a6afd(0x219,'\x55\x4c\x72\x26')](_0x544010[_0x4a6afd(0x26b,'\x68\x69\x67\x79')],-0x798+0xab*-0x11+0x651*0x3))return 0x2145+-0x1*0xe81+-0x12c4;const _0x9a378=new _0x2aa7e5(_0x113d0b[_0x4a6afd(0x356,'\x78\x5d\x33\x71')](function(_0x559107){const _0x1ceb29=_0x4a6afd;return _0x3e48f8[_0x1ceb29(0x203,'\x49\x57\x72\x5e')](_0x332805,_0x559107)[_0x1ceb29(0x85,'\x6a\x21\x58\x63')+_0x1ceb29(0xd4,'\x6f\x52\x31\x71')]();}));let _0x1e509c=-0x65e*0x1+0x7*0x4cc+-0x1b36;for(let _0xb36bb2=-0x4*0x8a1+-0x1*-0x68b+0x1bf9;_0x3e48f8['\x55\x73\x4b\x53\x6f'](_0xb36bb2,_0x45a577[_0x4a6afd(0x167,'\x70\x4c\x46\x4e')]);_0xb36bb2++){if(_0x9a378[_0x4a6afd(0x185,'\x74\x50\x25\x41')](_0x3f070b(_0x48564b[_0xb36bb2])[_0x4a6afd(0x172,'\x41\x66\x46\x76')+_0x4a6afd(0x1e6,'\x34\x5d\x64\x49')]()))_0x1e509c++;}return _0x3e48f8[_0x4a6afd(0x119,'\x78\x5d\x33\x71')](_0x1e509c,_0x284580[_0x4a6afd(0x1a4,'\x40\x41\x51\x7a')](_0x36e74a['\x6c\x65\x6e\x67\x74\x68'],0xfc0+-0x1*0xde1+-0x1de*0x1));}else{const _0x324186=_0x1aaa40[_0x46229f];if(!_0x324186||!Array['\x69\x73\x41\x72\x72\x61\x79'](_0x324186[_0x4a6afd(0x1c6,'\x6a\x24\x6d\x29')+_0x4a6afd(0x1da,'\x25\x5b\x77\x66')]))continue;const _0x3b0bee=_0x324186[_0x4a6afd(0x194,'\x40\x41\x51\x7a')+_0x4a6afd(0x19e,'\x57\x72\x62\x40')][_0x4a6afd(0x26c,'\x6a\x21\x58\x63')](function(_0x1173ee){const _0x219dc8=_0x4a6afd;return _0x2a45cb['\x68\x61\x73'](_0x3e48f8[_0x219dc8(0x3d3,'\x64\x78\x25\x39')](String,_0x1173ee));});if(_0x3b0bee)_0x16d2ba+=_0x3e48f8[_0x4a6afd(0x197,'\x6a\x21\x58\x63')](_0x324186[_0x4a6afd(0x249,'\x35\x5d\x70\x4e')],_0x3e48f8[_0x4a6afd(0x1fd,'\x51\x44\x59\x56')])?0x254*-0x4+0x2*0xcc4+-0x1038+0.4:-0x1f3*0x1+-0x1*0x2423+-0x186*-0x19+0.18;}}_0x1995d8-=_0x16d2ba;}return Math[_0x4a6afd(0x3bc,'\x66\x6f\x42\x30')](-(-0x1d8a+0x1a*-0xc2+-0x1*-0x313f+0.5),Math[_0x4a6afd(0x243,'\x4a\x65\x43\x54')](-0x3*-0xa07+0x56*0x71+-0x440a+0.5,_0x1995d8));}function _0x41a4(_0x196fa4,_0x331556){_0x196fa4=_0x196fa4-(0x1f03*-0x1+-0xe45+0x1*0x2dc5);const _0x17e6e5=_0x47cc();let _0x2a8782=_0x17e6e5[_0x196fa4];if(_0x41a4['\x58\x76\x62\x46\x6e\x5a']===undefined){var _0x4d4cc7=function(_0x38f43c){const _0x3da709='\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 _0x34587a='',_0x1ead3b='',_0x49252e=_0x34587a+_0x4d4cc7,_0x47e96d=(''+function(){return-0x1b3b*-0x1+-0x4f*-0x20+0x1*-0x251b;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x2187+0x18c5+-0x3a4b*0x1);for(let _0x3ae063=-0xbe*0x17+0x13*0x85+0x733,_0x111597,_0x4ddac3,_0x14b33b=-0x2bd+0xce*0xd+-0x293*0x3;_0x4ddac3=_0x38f43c['\x63\x68\x61\x72\x41\x74'](_0x14b33b++);~_0x4ddac3&&(_0x111597=_0x3ae063%(0x12*-0x3b+0x1f1c+-0x2*0xd79)?_0x111597*(0xd93*-0x1+-0xee1+0x1cb4)+_0x4ddac3:_0x4ddac3,_0x3ae063++%(0x200e+-0x3d7*-0x1+0x343*-0xb))?_0x34587a+=_0x47e96d||_0x49252e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x14b33b+(0xc8*-0x31+0x13*0x1ed+0x1bb))-(-0x1ef3+0xc9+0x1e34)!==-0x1*0x221d+0xad2+0x174b?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0xf94*0x1+0x10e+0x89*0x1d&_0x111597>>(-(0x34a*-0x9+-0x11*0x1c4+0x3ba0)*_0x3ae063&0xe12*-0x1+-0x1397+0x21af)):_0x3ae063:0x70c*0x1+-0x1ad2+0x13c6){_0x4ddac3=_0x3da709['\x69\x6e\x64\x65\x78\x4f\x66'](_0x4ddac3);}for(let _0x242f38=0x13d*0x3+0x745+-0x25*0x4c,_0x149baf=_0x34587a['\x6c\x65\x6e\x67\x74\x68'];_0x242f38<_0x149baf;_0x242f38++){_0x1ead3b+='\x25'+('\x30\x30'+_0x34587a['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x242f38)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x28+0x125f*-0x1+-0x1297*-0x1))['\x73\x6c\x69\x63\x65'](-(0xef4+-0x2410+-0x2*-0xa8f));}return decodeURIComponent(_0x1ead3b);};const _0x3e8926=function(_0x1a4a33,_0x52df77){let _0x51249b=[],_0x163aac=-0x1a11+0x1*0x1445+0x5cc,_0x2eb29a,_0x3a9922='';_0x1a4a33=_0x4d4cc7(_0x1a4a33);let _0x3f59dc;for(_0x3f59dc=-0x1749+-0x1*0x196b+0x30b4;_0x3f59dc<-0x1c74+0x1dc8+-0xe*0x6;_0x3f59dc++){_0x51249b[_0x3f59dc]=_0x3f59dc;}for(_0x3f59dc=0x3a3*-0x4+-0xaeb*0x1+-0x1*-0x1977;_0x3f59dc<-0x1*-0xbd8+0x1*-0x245a+-0x1982*-0x1;_0x3f59dc++){_0x163aac=(_0x163aac+_0x51249b[_0x3f59dc]+_0x52df77['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3f59dc%_0x52df77['\x6c\x65\x6e\x67\x74\x68']))%(0x2b7*0x9+-0x912*0x4+0xcd9),_0x2eb29a=_0x51249b[_0x3f59dc],_0x51249b[_0x3f59dc]=_0x51249b[_0x163aac],_0x51249b[_0x163aac]=_0x2eb29a;}_0x3f59dc=-0x1*-0x527+-0x9d7+0x4b0,_0x163aac=0x1237*0x2+0x1104+0x2*-0x1ab9;for(let _0x6ea094=-0x1a18+-0xa6*-0xd+-0x143*-0xe;_0x6ea094<_0x1a4a33['\x6c\x65\x6e\x67\x74\x68'];_0x6ea094++){_0x3f59dc=(_0x3f59dc+(-0x157a+0xdc1*-0x2+0x30fd))%(0x1692+-0x1e87+0x8f5),_0x163aac=(_0x163aac+_0x51249b[_0x3f59dc])%(0xc9b+-0x5e7*0x1+-0x5b4),_0x2eb29a=_0x51249b[_0x3f59dc],_0x51249b[_0x3f59dc]=_0x51249b[_0x163aac],_0x51249b[_0x163aac]=_0x2eb29a,_0x3a9922+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x1a4a33['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x6ea094)^_0x51249b[(_0x51249b[_0x3f59dc]+_0x51249b[_0x163aac])%(-0x3f6*0x2+0x1*-0xfe8+0x18d4)]);}return _0x3a9922;};_0x41a4['\x61\x69\x69\x74\x56\x59']=_0x3e8926,_0x41a4['\x69\x4b\x6e\x6c\x4f\x65']={},_0x41a4['\x58\x76\x62\x46\x6e\x5a']=!![];}const _0x2c4609=_0x17e6e5[0x21e3+-0x14+0xf*-0x241],_0x26dba3=_0x196fa4+_0x2c4609,_0x124e8f=_0x41a4['\x69\x4b\x6e\x6c\x4f\x65'][_0x26dba3];if(!_0x124e8f){if(_0x41a4['\x4e\x74\x53\x63\x4a\x6a']===undefined){const _0x2af538=function(_0x42db92){this['\x51\x58\x73\x74\x4e\x4b']=_0x42db92,this['\x61\x4a\x74\x4c\x75\x52']=[0x1f12+-0x23fe+0x4ed,0x9d*0x6+-0x59*0x2c+-0x2*-0x5cf,0xe*-0x233+0x14f8+0x9d2],this['\x4d\x65\x56\x4a\x4b\x61']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x76\x4e\x51\x6b\x47\x42']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x43\x47\x48\x58\x69\x54']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x2af538['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4c\x56\x69\x77\x4c\x50']=function(){const _0x48506d=new RegExp(this['\x76\x4e\x51\x6b\x47\x42']+this['\x43\x47\x48\x58\x69\x54']),_0x665dd2=_0x48506d['\x74\x65\x73\x74'](this['\x4d\x65\x56\x4a\x4b\x61']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x61\x4a\x74\x4c\x75\x52'][-0x2*0xfd+0x2b3+-0xb8]:--this['\x61\x4a\x74\x4c\x75\x52'][0x1c43*-0x1+0x20f6+0x1*-0x4b3];return this['\x69\x44\x51\x70\x5a\x53'](_0x665dd2);},_0x2af538['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x69\x44\x51\x70\x5a\x53']=function(_0x270eb4){if(!Boolean(~_0x270eb4))return _0x270eb4;return this['\x47\x55\x6c\x6e\x54\x4d'](this['\x51\x58\x73\x74\x4e\x4b']);},_0x2af538['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x47\x55\x6c\x6e\x54\x4d']=function(_0x14f2ce){for(let _0xcba47c=0x1c8*-0x7+0x1ffe+-0x3*0x682,_0x4c4f92=this['\x61\x4a\x74\x4c\x75\x52']['\x6c\x65\x6e\x67\x74\x68'];_0xcba47c<_0x4c4f92;_0xcba47c++){this['\x61\x4a\x74\x4c\x75\x52']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x4c4f92=this['\x61\x4a\x74\x4c\x75\x52']['\x6c\x65\x6e\x67\x74\x68'];}return _0x14f2ce(this['\x61\x4a\x74\x4c\x75\x52'][-0x1*-0x22d2+-0x3cd+-0x1f05]);},(''+function(){return 0x5b*0x7+0x1737+-0x3ac*0x7;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x1f45+-0x1f*0x33+0x2573)&&new _0x2af538(_0x41a4)['\x4c\x56\x69\x77\x4c\x50'](),_0x41a4['\x4e\x74\x53\x63\x4a\x6a']=!![];}_0x2a8782=_0x41a4['\x61\x69\x69\x74\x56\x59'](_0x2a8782,_0x331556),_0x41a4['\x69\x4b\x6e\x6c\x4f\x65'][_0x26dba3]=_0x2a8782;}else _0x2a8782=_0x124e8f;return _0x2a8782;}const _0x51fcac=-0x13a1+-0x5*0x1b2+0x1c25,_0x3e7486=0x26*-0x12+0x13bf+-0x1113+0.3,_0x5ca441=-0x1142+-0x1d*-0x8+-0x5b*-0x2e+0.02;function _0x23744c(_0x2c6ed2){const _0x2be5ac=_0x446d32,_0x547771={'\x7a\x59\x62\x51\x6b':_0x2be5ac(0x31b,'\x34\x5d\x64\x49')+_0x2be5ac(0x33a,'\x49\x57\x72\x5e')+'\x63\x6b','\x56\x4a\x64\x45\x43':_0x2be5ac(0x30d,'\x6c\x68\x4d\x32'),'\x75\x6c\x72\x51\x7a':function(_0x214875,_0x515220){return _0x214875(_0x515220);},'\x52\x52\x6b\x4e\x70':function(_0x3aee64,_0x5de17e){return _0x3aee64(_0x5de17e);},'\x4b\x7a\x78\x75\x62':function(_0x1aded3,_0x103e84){return _0x1aded3||_0x103e84;},'\x4e\x66\x79\x53\x46':function(_0x432c64,_0x1190be){return _0x432c64!==_0x1190be;},'\x65\x76\x6f\x4e\x46':'\x50\x57\x72\x69\x78','\x45\x4d\x59\x5a\x57':function(_0x2da055,_0x3ce9ea){return _0x2da055<=_0x3ce9ea;},'\x4e\x46\x57\x53\x4b':function(_0x41175d,_0x19a5c5){return _0x41175d(_0x19a5c5);},'\x6d\x59\x42\x4f\x5a':function(_0x4da368,_0x2a4f31){return _0x4da368>_0x2a4f31;},'\x62\x74\x65\x6d\x5a':function(_0x23a0b1,_0x39d7b3){return _0x23a0b1-_0x39d7b3;},'\x6f\x59\x6d\x48\x48':function(_0x29fd00,_0x1afd48){return _0x29fd00*_0x1afd48;},'\x73\x42\x45\x58\x74':function(_0x38f282,_0x36973b){return _0x38f282+_0x36973b;},'\x68\x51\x52\x66\x56':function(_0x188cac,_0x3f3ffc){return _0x188cac/_0x3f3ffc;},'\x69\x64\x67\x41\x7a':function(_0x11a50d,_0x2cb61c){return _0x11a50d!=_0x2cb61c;},'\x46\x7a\x62\x54\x57':_0x2be5ac(0x1b6,'\x24\x62\x5b\x43'),'\x4f\x6d\x56\x79\x4f':function(_0x3587ba,_0x59169d){return _0x3587ba/_0x59169d;}},_0x33d0fe=!!(_0x2c6ed2&&_0x2c6ed2[_0x2be5ac(0x254,'\x6a\x24\x6d\x29')+_0x2be5ac(0x3c0,'\x25\x5b\x77\x66')]),_0x17a997=_0x2c6ed2&&Number[_0x2be5ac(0x17a,'\x70\x4c\x46\x4e')](_0x547771[_0x2be5ac(0xb7,'\x5a\x45\x49\x52')](Number,_0x2c6ed2[_0x2be5ac(0x196,'\x35\x5d\x70\x4e')+_0x2be5ac(0x39a,'\x48\x76\x52\x30')+_0x2be5ac(0x30b,'\x4d\x73\x75\x79')]))?Number(_0x2c6ed2[_0x2be5ac(0x259,'\x6f\x52\x31\x71')+_0x2be5ac(0x3c4,'\x41\x66\x46\x76')+_0x2be5ac(0x179,'\x67\x24\x5b\x55')]):null,_0x51a8e0=_0x2c6ed2&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](Number(_0x2c6ed2[_0x2be5ac(0x355,'\x78\x5d\x33\x71')+_0x2be5ac(0x280,'\x49\x57\x72\x5e')]))?_0x547771['\x52\x52\x6b\x4e\x70'](Number,_0x2c6ed2[_0x2be5ac(0x1cb,'\x26\x23\x54\x38')+_0x2be5ac(0xd1,'\x5b\x77\x76\x36')]):null,_0x1ae0ff=_0x547771[_0x2be5ac(0x2db,'\x67\x24\x5b\x55')](_0x17a997,_0x51a8e0)||null;if(_0x33d0fe){if(_0x547771[_0x2be5ac(0x21b,'\x41\x33\x66\x51')](_0x547771['\x65\x76\x6f\x4e\x46'],_0x547771[_0x2be5ac(0x38a,'\x76\x6d\x4a\x4c')]))_0x169adf[_0x2be5ac(0x274,'\x77\x34\x26\x25')](_0x18afca[_0x2c9af8]);else{if(!_0x1ae0ff||_0x547771['\x45\x4d\x59\x5a\x57'](_0x1ae0ff,0x7*0xa5+0x1*-0x1d36+-0x66*-0x3e))return-0xf6+0x19e5+-0x18ef+0.7;const _0x2f1c06=_0x2c6ed2&&Number[_0x2be5ac(0x2be,'\x49\x57\x72\x5e')](_0x547771[_0x2be5ac(0x2bc,'\x64\x64\x5a\x69')](Number,_0x2c6ed2[_0x2be5ac(0x33d,'\x64\x78\x25\x39')+_0x2be5ac(0xd8,'\x70\x4c\x46\x4e')]))?_0x547771['\x4e\x46\x57\x53\x4b'](Number,_0x2c6ed2[_0x2be5ac(0x3d9,'\x4a\x65\x43\x54')+_0x2be5ac(0x2e0,'\x6e\x32\x53\x39')]):-0x1d9*-0xe+-0x43*0x2d+-0xe17,_0x4499c5=_0x1ae0ff*_0x51fcac,_0x3567a0=_0x547771[_0x2be5ac(0x2eb,'\x4d\x73\x75\x79')](_0x4499c5,0xc5*0x1+0x11d2*0x2+-0x3*0xc23)?Math[_0x2be5ac(0x192,'\x36\x57\x50\x38')](-0x50a*0x1+-0x695*-0x3+0x1*-0xeb4,_0x2f1c06/_0x4499c5):-0x23bb*-0x1+-0xc2*0x21+-0xab9,_0x497699=_0x547771[_0x2be5ac(0x1ac,'\x75\x70\x36\x72')](_0x3e7486,_0x547771['\x6f\x59\x6d\x48\x48'](_0x547771[_0x2be5ac(0x35b,'\x43\x39\x26\x7a')](_0x3e7486,_0x5ca441),_0x3567a0));return Math[_0x2be5ac(0x2d1,'\x68\x69\x67\x79')](-0x183*-0x9+-0x2*-0x131e+-0x33d6,_0x547771[_0x2be5ac(0x18b,'\x26\x24\x46\x33')](_0x547771[_0x2be5ac(0x240,'\x35\x5d\x70\x4e')](-0x6d*0x2e+-0x53*-0x27+-0x7*-0xfe,Math[_0x2be5ac(0x20a,'\x25\x5b\x77\x66')](_0x1ae0ff)),_0x497699));}}if(_0x547771[_0x2be5ac(0x95,'\x28\x2a\x68\x39')](_0x1ae0ff,null)&&_0x547771[_0x2be5ac(0x3bb,'\x74\x50\x25\x41')](_0x1ae0ff,0x12ca+-0x3*-0x28e+-0x1a74)){if(_0x547771[_0x2be5ac(0x113,'\x77\x34\x26\x25')](_0x547771['\x46\x7a\x62\x54\x57'],_0x2be5ac(0x1d9,'\x6f\x52\x31\x71'))){const _0x140559=_0x5cad3a['\x66\x69\x6e\x64'](_0x4fdd75=>_0x4fdd75&&_0x4fdd75['\x69\x64']&&_0xc734ae(_0x4fdd75['\x69\x64'])[_0x2be5ac(0xb0,'\x70\x4c\x46\x4e')+'\x74\x68'](_0x107b5b)&&!_0x15a920[_0x2be5ac(0x36e,'\x7a\x62\x38\x6a')](_0x4fdd75['\x69\x64'])&&!_0x464969(_0x4fdd75,_0x13ffdd));if(_0x140559){const _0x42c945={};return _0x42c945[_0x2be5ac(0x38d,'\x36\x57\x50\x38')]=_0x140559,_0x42c945[_0x2be5ac(0x288,'\x26\x23\x54\x38')+_0x2be5ac(0x369,'\x66\x78\x72\x39')]=[],_0x42c945[_0x2be5ac(0x2f4,'\x72\x6e\x53\x70')+'\x65\x6e\x73\x69\x74\x79']=_0x31b0b5,_0x42c945[_0x2be5ac(0x218,'\x4c\x5d\x40\x66')+'\x65']=_0x547771[_0x2be5ac(0x10b,'\x57\x72\x62\x40')],_0x42c945;}const _0x53fb4a={};return _0x53fb4a[_0x2be5ac(0x322,'\x67\x58\x2a\x24')]=null,_0x53fb4a[_0x2be5ac(0xd7,'\x51\x44\x59\x56')+_0x2be5ac(0xe1,'\x48\x76\x52\x30')]=[],_0x53fb4a[_0x2be5ac(0x29d,'\x4a\x65\x43\x54')+'\x65\x6e\x73\x69\x74\x79']=_0x4aa47f,_0x53fb4a['\x64\x72\x69\x66\x74\x4d\x6f\x64'+'\x65']=_0x547771[_0x2be5ac(0x304,'\x77\x34\x26\x25')],_0x53fb4a;}else return Math[_0x2be5ac(0xb5,'\x41\x33\x66\x51')](-0x34a+-0x8*0x137+0xd03,_0x547771[_0x2be5ac(0x1e0,'\x43\x39\x26\x7a')](-0x2*-0x71f+-0xdc7+0x1*-0x76,Math[_0x2be5ac(0x18e,'\x43\x39\x26\x7a')](_0x1ae0ff)));}return 0x236e+-0x37*-0x33+0x271*-0x13;}const _0x3a7120=-0x207b+-0x289*-0x8+-0xc38*-0x1,_0x552559=-0x107b+0x1f0d+-0xe2e;function _0x3bca25(_0x4f7c89){const _0x1d3917=_0x446d32,_0x57bfab={};_0x57bfab['\x62\x71\x61\x74\x76']=function(_0x51a268,_0x111c79){return _0x51a268===_0x111c79;},_0x57bfab[_0x1d3917(0x26f,'\x24\x62\x5b\x43')]=_0x1d3917(0x2ea,'\x66\x6f\x42\x30');const _0x4b6ca4=_0x57bfab;return _0x4f7c89&&_0x4b6ca4[_0x1d3917(0x18d,'\x77\x34\x26\x25')](_0x4f7c89[_0x1d3917(0xce,'\x76\x6d\x4a\x4c')+_0x1d3917(0x3ce,'\x43\x39\x26\x7a')],_0x4b6ca4[_0x1d3917(0x275,'\x68\x69\x67\x79')]);}function _0x5a1c8e(_0x5222f9,_0x2c0345,_0x38e4ec){const _0x272192=_0x446d32,_0x6d7a60={'\x71\x44\x6d\x72\x4a':function(_0x3e68f4,_0x218cc0){return _0x3e68f4(_0x218cc0);},'\x55\x7a\x67\x78\x74':function(_0x1f5b5e,_0x2f9bee){return _0x1f5b5e||_0x2f9bee;},'\x51\x6c\x67\x6a\x4e':function(_0x37f172,_0x323f2a){return _0x37f172===_0x323f2a;},'\x6b\x4d\x63\x6f\x4d':function(_0xe28e7b,_0x3a903){return _0xe28e7b(_0x3a903);},'\x4f\x42\x6a\x55\x7a':function(_0x4da3d9,_0x931d83,_0x279455){return _0x4da3d9(_0x931d83,_0x279455);},'\x49\x74\x72\x67\x63':function(_0x41bd04,_0x55d54d){return _0x41bd04===_0x55d54d;},'\x59\x42\x62\x6b\x4c':_0x272192(0x91,'\x43\x39\x26\x7a'),'\x45\x53\x79\x46\x6c':_0x272192(0x1be,'\x55\x4c\x72\x26'),'\x74\x4a\x76\x6f\x6f':function(_0x1b3cee,_0x2acf55,_0x1167b5){return _0x1b3cee(_0x2acf55,_0x1167b5);},'\x56\x51\x5a\x51\x58':function(_0x378d5e,_0x246145,_0x3b8486,_0x58010b){return _0x378d5e(_0x246145,_0x3b8486,_0x58010b);},'\x53\x52\x6b\x6e\x43':function(_0x467754,_0x865e6b){return _0x467754>_0x865e6b;},'\x64\x78\x6b\x49\x68':function(_0x28f619,_0x1e5c63){return _0x28f619(_0x1e5c63);},'\x54\x47\x58\x75\x75':function(_0x9e6557,_0x4f99f6){return _0x9e6557>=_0x4f99f6;},'\x70\x46\x59\x43\x43':function(_0x56b20f,_0x15f98a){return _0x56b20f!==_0x15f98a;},'\x47\x69\x69\x75\x7a':_0x272192(0x83,'\x74\x50\x25\x41'),'\x6f\x43\x59\x4e\x74':_0x272192(0x232,'\x26\x23\x54\x38'),'\x55\x48\x66\x65\x50':'\x69\x6e\x70\x6c\x61\x63\x65','\x4f\x4e\x6a\x61\x63':function(_0x4c90a4,_0x27859b){return _0x4c90a4*_0x27859b;},'\x58\x68\x47\x64\x64':function(_0x4d8932,_0x20bc47,_0x3bc5a4){return _0x4d8932(_0x20bc47,_0x3bc5a4);},'\x56\x79\x75\x59\x77':function(_0x189ec1,_0x5e8971){return _0x189ec1>=_0x5e8971;},'\x66\x54\x71\x64\x73':function(_0x9f9d70,_0x4da1d9){return _0x9f9d70<_0x4da1d9;},'\x55\x46\x64\x67\x68':function(_0x4e5844,_0x1c8f4b){return _0x4e5844<_0x1c8f4b;},'\x64\x7a\x71\x54\x77':_0x272192(0xc9,'\x68\x69\x67\x79'),'\x54\x42\x4c\x75\x42':_0x272192(0x1b3,'\x77\x34\x26\x25'),'\x6e\x61\x6f\x5a\x4c':_0x272192(0xa1,'\x72\x6e\x53\x70')+'\x34','\x71\x43\x68\x4d\x78':_0x272192(0x1af,'\x40\x41\x51\x7a'),'\x63\x77\x44\x76\x55':function(_0x32194d,_0x4db6c0){return _0x32194d-_0x4db6c0;},'\x73\x7a\x4f\x4f\x65':function(_0x12d876,_0x2bf342){return _0x12d876-_0x2bf342;},'\x48\x58\x76\x78\x63':function(_0x5d1870,_0x571c98){return _0x5d1870===_0x571c98;},'\x4a\x6f\x61\x51\x72':function(_0x2b5350,_0x464233){return _0x2b5350===_0x464233;},'\x70\x57\x4c\x47\x51':function(_0x407fd4,_0x3ef3ab){return _0x407fd4+_0x3ef3ab;},'\x66\x74\x43\x54\x4c':function(_0x47d4f9,_0x3d5cb0){return _0x47d4f9===_0x3d5cb0;},'\x75\x4a\x4c\x63\x45':function(_0x4b6214,_0x58f4a2){return _0x4b6214/_0x58f4a2;},'\x55\x49\x59\x58\x6c':function(_0x46d5a8,_0x17ec04){return _0x46d5a8!==_0x17ec04;},'\x77\x6f\x71\x4c\x53':'\x6f\x41\x68\x4c\x5a','\x41\x6a\x74\x62\x77':function(_0x3a5090,_0x591230){return _0x3a5090(_0x591230);},'\x66\x58\x43\x66\x49':function(_0x34c365,_0x5616d9){return _0x34c365===_0x5616d9;},'\x6c\x64\x43\x75\x7a':_0x272192(0x3c9,'\x6a\x24\x6d\x29')+_0x272192(0x315,'\x49\x57\x72\x5e'),'\x52\x49\x74\x76\x68':function(_0x463dbe){return _0x463dbe();},'\x77\x63\x65\x70\x6f':function(_0x593bdc,_0x3fd709){return _0x593bdc!==_0x3fd709;},'\x6d\x63\x76\x43\x69':_0x272192(0x216,'\x75\x21\x4e\x4b'),'\x4d\x70\x6f\x48\x63':_0x272192(0x1c8,'\x67\x24\x5b\x55'),'\x67\x49\x4f\x5a\x56':function(_0x291456,_0x26625){return _0x291456>=_0x26625;},'\x50\x77\x47\x64\x4f':function(_0x495f1f,_0x5eed7c){return _0x495f1f*_0x5eed7c;},'\x68\x58\x69\x71\x46':_0x272192(0x1bc,'\x41\x78\x57\x63')+'\x6e','\x77\x5a\x52\x75\x50':function(_0x114e2f,_0x4516a2){return _0x114e2f>_0x4516a2;},'\x65\x48\x53\x79\x44':function(_0xf1a2a0,_0x16e9ad){return _0xf1a2a0>_0x16e9ad;},'\x52\x55\x58\x46\x66':function(_0x400f84,_0x5013cc){return _0x400f84<_0x5013cc;},'\x6d\x4e\x6b\x47\x66':'\x49\x78\x6a\x5a\x68','\x4b\x47\x6e\x75\x4c':_0x272192(0x102,'\x77\x34\x26\x25')+_0x272192(0x200,'\x6a\x21\x58\x63')+'\x65\x64','\x64\x56\x58\x62\x4c':_0x272192(0x9b,'\x41\x66\x46\x76'),'\x6d\x59\x4b\x45\x51':_0x272192(0x2fc,'\x72\x6e\x53\x70'),'\x5a\x6a\x6c\x6f\x52':function(_0x423cc9,_0xaf9638){return _0x423cc9*_0xaf9638;},'\x45\x4b\x59\x6d\x51':function(_0x1eef7e,_0x312ddb){return _0x1eef7e!=_0x312ddb;},'\x55\x68\x6c\x6d\x6f':function(_0xc79b93,_0x1cca2b){return _0xc79b93<_0x1cca2b;},'\x4f\x43\x54\x78\x7a':function(_0x21dc25,_0x1ee2cd){return _0x21dc25<_0x1ee2cd;},'\x52\x62\x68\x6e\x66':function(_0x5454b4,_0x2e729c){return _0x5454b4===_0x2e729c;},'\x68\x56\x76\x67\x50':_0x272192(0x2a6,'\x35\x5d\x70\x4e'),'\x6c\x6d\x4b\x4a\x44':_0x272192(0x368,'\x25\x5b\x77\x66')+_0x272192(0xe2,'\x48\x76\x52\x30'),'\x59\x67\x4a\x4a\x68':_0x272192(0x103,'\x75\x70\x36\x72'),'\x77\x53\x61\x50\x6a':'\x79\x4c\x69\x72\x51'},_0x15a914=Array[_0x272192(0x2cd,'\x55\x4c\x72\x26')](_0x5222f9)?_0x5222f9:[],_0x39fb23=_0x38e4ec&&_0x38e4ec[_0x272192(0x15c,'\x64\x64\x5a\x69')+_0x272192(0x2d8,'\x6e\x32\x53\x39')]?_0x38e4ec['\x62\x61\x6e\x6e\x65\x64\x47\x65'+_0x272192(0x3bd,'\x41\x78\x57\x63')]:new Set(),_0x2fa9bf=!!(_0x38e4ec&&_0x38e4ec[_0x272192(0x2de,'\x48\x74\x61\x59')+_0x272192(0x1cc,'\x30\x55\x4f\x31')]),_0x21d1e0=_0x38e4ec&&typeof _0x38e4ec[_0x272192(0x131,'\x55\x4c\x72\x26')+_0x272192(0x314,'\x4d\x73\x75\x79')]==='\x73\x74\x72\x69\x6e\x67'?_0x38e4ec[_0x272192(0x17f,'\x48\x74\x61\x59')+_0x272192(0xda,'\x68\x69\x67\x79')]:null,_0x1201b6=_0x38e4ec&&_0x38e4ec[_0x272192(0x3c8,'\x35\x5d\x70\x4e')+_0x272192(0x349,'\x6e\x32\x53\x39')]?_0x38e4ec[_0x272192(0xfb,'\x25\x5b\x77\x66')+_0x272192(0x28c,'\x75\x21\x4e\x4b')]:null,_0x1d88d8=_0x38e4ec&&Array[_0x272192(0x225,'\x49\x57\x72\x5e')](_0x38e4ec['\x63\x61\x70\x61\x62\x69\x6c\x69'+_0x272192(0x1cf,'\x72\x6e\x53\x70')])?_0x38e4ec[_0x272192(0x261,'\x24\x62\x5b\x43')+_0x272192(0x301,'\x23\x57\x50\x78')]:[],_0x3e9b22=_0x38e4ec&&Number[_0x272192(0x2b3,'\x77\x34\x26\x25')](_0x6d7a60[_0x272192(0x1c4,'\x25\x5b\x77\x66')](Number,_0x38e4ec[_0x272192(0x1e7,'\x24\x62\x5b\x43')+'\x63\x6f\x72\x65']))?_0x6d7a60[_0x272192(0x15f,'\x74\x50\x25\x41')](Number,_0x38e4ec[_0x272192(0x32d,'\x6f\x52\x31\x71')+'\x63\x6f\x72\x65']):null,_0x1dbaa0=!!(_0x38e4ec&&_0x38e4ec['\x70\x72\x65\x66\x65\x72\x49\x6e'+'\x70\x6c\x61\x63\x65']),_0x46d5ad={};_0x46d5ad[_0x272192(0xf8,'\x4d\x73\x75\x79')+_0x272192(0x1fb,'\x48\x74\x61\x59')]=_0x2fa9bf,_0x46d5ad[_0x272192(0x2ef,'\x26\x24\x46\x33')+_0x272192(0x39a,'\x48\x76\x52\x30')+_0x272192(0xbf,'\x64\x78\x25\x39')]=_0x38e4ec&&_0x38e4ec['\x65\x66\x66\x65\x63\x74\x69\x76'+'\x65\x50\x6f\x70\x75\x6c\x61\x74'+_0x272192(0xb1,'\x70\x4c\x46\x4e')],_0x46d5ad[_0x272192(0x21d,'\x4d\x73\x75\x79')+_0x272192(0x164,'\x23\x57\x50\x78')]=_0x15a914[_0x272192(0x23f,'\x64\x64\x5a\x69')],_0x46d5ad['\x6d\x65\x6d\x6f\x72\x79\x45\x76'+_0x272192(0xb9,'\x5b\x77\x76\x36')]=_0x38e4ec&&_0x38e4ec[_0x272192(0x241,'\x75\x70\x36\x72')+'\x69\x64\x65\x6e\x63\x65'];let _0x240835=_0x23744c(_0x46d5ad);_0x1201b6&&_0x1201b6[_0x272192(0x3ca,'\x6a\x21\x58\x63')]&&(_0x240835=Math[_0x272192(0x146,'\x48\x74\x61\x59')](_0x240835,_0x6d7a60[_0x272192(0x120,'\x77\x34\x26\x25')](_0x1201b6['\x73\x65\x76\x65\x72\x69\x74\x79'],_0x272192(0x342,'\x6e\x32\x53\x39'))?0x1959+0x3*-0xb87+0x2b*0x37:0x350*0x3+0x1906+0x2*-0x117b+0.7));const _0x274b14=_0x2fa9bf||_0x240835>-0xdf*-0x2+0x18c8+-0x1a86+0.15,_0x353b3f=_0x6d7a60[_0x272192(0x359,'\x6e\x32\x53\x39')],_0x588c87=-0x1*0x139+-0x23*-0x5+0x8a+0.8,_0x4be5b2=_0x6d7a60[_0x272192(0x2d4,'\x67\x58\x2a\x24')](_0x4dfbf1),_0x1b551e=_0x15a914[_0x272192(0x14a,'\x6a\x21\x58\x63')](_0x11d98b=>!_0x326608(_0x11d98b,_0x4be5b2))[_0x272192(0x38b,'\x36\x57\x50\x38')](_0x387f80=>{const _0x1b9b5d=_0x272192,_0x4b2bd4={'\x65\x68\x43\x62\x57':function(_0x224273,_0x2fd19a){return _0x224273(_0x2fd19a);},'\x54\x70\x4d\x4a\x58':function(_0x385c80,_0x7b9385){const _0x2f101c=_0x41a4;return _0x6d7a60[_0x2f101c(0x1ed,'\x24\x62\x5b\x43')](_0x385c80,_0x7b9385);},'\x54\x77\x6d\x4c\x71':function(_0x3396b3,_0x5da7cc){const _0x4d2962=_0x41a4;return _0x6d7a60[_0x4d2962(0x27b,'\x49\x57\x72\x5e')](_0x3396b3,_0x5da7cc);},'\x45\x71\x6c\x51\x70':function(_0x478716,_0x581519){return _0x478716===_0x581519;},'\x43\x75\x4b\x61\x66':function(_0x3a8c05,_0x32d0e1){const _0x601fd=_0x41a4;return _0x6d7a60[_0x601fd(0x15d,'\x43\x39\x26\x7a')](_0x3a8c05,_0x32d0e1);},'\x66\x6f\x52\x78\x75':function(_0x1a2759,_0x4f0ae5){const _0x4d5f55=_0x41a4;return _0x6d7a60[_0x4d5f55(0x271,'\x41\x78\x57\x63')](_0x1a2759,_0x4f0ae5);},'\x72\x42\x44\x6d\x42':function(_0x2ceb5c,_0x528845){const _0x3291a9=_0x41a4;return _0x6d7a60[_0x3291a9(0xdc,'\x68\x69\x67\x79')](_0x2ceb5c,_0x528845);},'\x6e\x42\x49\x4c\x47':function(_0xae6d4a,_0xb2ecd1,_0x168116){const _0x2dc030=_0x41a4;return _0x6d7a60[_0x2dc030(0x105,'\x40\x41\x51\x7a')](_0xae6d4a,_0xb2ecd1,_0x168116);}};if(_0x6d7a60[_0x1b9b5d(0x284,'\x63\x57\x55\x39')](_0x6d7a60['\x59\x42\x62\x6b\x4c'],_0x6d7a60[_0x1b9b5d(0xc4,'\x48\x76\x52\x30')])){const _0x6e0ff5={'\x57\x4c\x42\x47\x4a':function(_0x40c302,_0x3ab189){const _0xcdda10=_0x1b9b5d;return ObcpJB[_0xcdda10(0x26d,'\x36\x57\x50\x38')](_0x40c302,_0x3ab189);}};if(ObcpJB[_0x1b9b5d(0x2d2,'\x6f\x52\x6c\x63')](!_0x3ac176,!_0xd9c1c1)||ObcpJB[_0x1b9b5d(0x127,'\x55\x4c\x72\x26')](_0x23e836[_0x1b9b5d(0x1cd,'\x72\x6e\x53\x70')],-0xd*0x2fb+-0x29*-0x3b+0x1d4c))return-0x1ac*-0xa+-0x5d*0x53+0x13*0xb5;var _0x25efc2=[];_0x447978[_0x1b9b5d(0x19a,'\x77\x34\x26\x25')](function(_0x9667ff){const _0x2277d7=_0x1b9b5d;_0x25efc2=_0x25efc2[_0x2277d7(0x2b9,'\x57\x72\x62\x40')](_0x6e0ff5[_0x2277d7(0x328,'\x41\x78\x57\x63')](_0x5409b8,_0x9667ff));});if(ObcpJB[_0x1b9b5d(0x152,'\x6f\x52\x6c\x63')](_0x25efc2[_0x1b9b5d(0x366,'\x43\x39\x26\x7a')],0x1ede+-0xf09*0x1+-0xfd5))return 0x5*0x72d+0x49c+-0x287d;var _0x37101e=[];_0xfdfb46[_0x1b9b5d(0x1f0,'\x67\x58\x2a\x24')](_0x486d74[_0x1b9b5d(0x2e8,'\x68\x46\x38\x30')+_0x1b9b5d(0x293,'\x35\x5d\x70\x4e')])&&_0x145e02[_0x1b9b5d(0x136,'\x34\x5d\x64\x49')+_0x1b9b5d(0x31d,'\x4c\x5d\x40\x66')]['\x66\x6f\x72\x45\x61\x63\x68'](function(_0x43bef8){const _0x32f577=_0x1b9b5d;_0x37101e=_0x37101e[_0x32f577(0x2a7,'\x41\x78\x57\x63')](ObcpJB[_0x32f577(0x1d5,'\x6c\x68\x4d\x32')](_0x35360b,_0x43bef8));});if(_0x3db0ea[_0x1b9b5d(0x255,'\x48\x74\x61\x59')])_0x37101e=_0x37101e[_0x1b9b5d(0xb4,'\x6e\x32\x53\x39')](ObcpJB[_0x1b9b5d(0x277,'\x68\x46\x38\x30')](_0xad704b,_0x134431[_0x1b9b5d(0x354,'\x76\x6d\x4a\x4c')]));if(_0x10aaae['\x69\x64'])_0x37101e=_0x37101e[_0x1b9b5d(0x1ec,'\x28\x2a\x68\x39')](ObcpJB[_0x1b9b5d(0xa5,'\x64\x78\x25\x39')](_0x6f48e9,_0x368d9a['\x69\x64']));if(ObcpJB[_0x1b9b5d(0x385,'\x40\x41\x51\x7a')](_0x37101e[_0x1b9b5d(0x151,'\x4d\x73\x75\x79')],-0x24c2+0x1*-0x18b3+-0x1*-0x3d75))return 0x1ec0+-0x422+0x1*-0x1a9e;var _0x4094eb=_0x2e1a5d(_0x25efc2),_0xb08d1=ObcpJB[_0x1b9b5d(0x94,'\x6f\x52\x6c\x63')](_0x2ab824,_0x37101e);return ObcpJB[_0x1b9b5d(0x107,'\x48\x74\x61\x59')](_0xcf5be9,_0x4094eb,_0xb08d1);}else{let _0x5a170c=_0x6d7a60[_0x1b9b5d(0x17e,'\x75\x70\x36\x72')](_0x4172e9,_0x387f80,_0x2c0345);_0x5a170c+=_0x6d7a60[_0x1b9b5d(0x325,'\x26\x24\x46\x33')](_0x3e1b95,_0x387f80,_0x2c0345,_0x4be5b2);if(_0x6d7a60[_0x1b9b5d(0x26e,'\x4d\x73\x75\x79')](_0x5a170c,-0x31c+0x1*0x1def+0x6d*-0x3f)&&_0x387f80['\x69\x64']&&_0x6d7a60['\x64\x78\x6b\x49\x68'](String,_0x387f80['\x69\x64'])[_0x1b9b5d(0x33e,'\x75\x70\x36\x72')+'\x74\x68'](_0x353b3f))_0x5a170c*=_0x588c87;const _0x81cf2f={};return _0x81cf2f[_0x1b9b5d(0x9c,'\x28\x2a\x68\x39')]=_0x387f80,_0x81cf2f[_0x1b9b5d(0x1ba,'\x40\x41\x51\x7a')]=_0x5a170c,_0x81cf2f;}})[_0x272192(0x344,'\x72\x6e\x53\x70')](_0x381277=>_0x381277[_0x272192(0x345,'\x6e\x32\x53\x39')]>-0x23c+-0x23*-0xb0+-0x15d4)[_0x272192(0x1c7,'\x41\x33\x66\x51')]((_0x411f8c,_0x58fb12)=>_0x58fb12[_0x272192(0x9e,'\x67\x24\x5b\x55')]-_0x411f8c[_0x272192(0xee,'\x7a\x62\x38\x6a')]);if(_0x1b551e[_0x272192(0x217,'\x35\x5d\x70\x4e')]===-0x15f+-0x24f7+0x2656){const _0x4d0e47=_0x15a914[_0x272192(0x3b2,'\x77\x34\x26\x25')](_0x4cd511=>_0x4cd511&&_0x4cd511['\x69\x64']&&String(_0x4cd511['\x69\x64'])[_0x272192(0x291,'\x43\x39\x26\x7a')+'\x74\x68'](_0x353b3f)&&!_0x39fb23[_0x272192(0x7f,'\x34\x5d\x64\x49')](_0x4cd511['\x69\x64'])&&!_0x326608(_0x4cd511,_0x4be5b2));if(_0x4d0e47){if(_0x6d7a60[_0x272192(0x2f3,'\x41\x66\x46\x76')](_0x6d7a60[_0x272192(0x3ac,'\x6a\x21\x58\x63')],_0x6d7a60[_0x272192(0x3ab,'\x23\x57\x50\x78')]))_0x6d7a60[_0x272192(0x1c5,'\x41\x66\x46\x76')](_0x2d4e96[_0x2202e7[_0x3f36b5]],_0x2aa52e)&&_0x595c1d[_0x272192(0x2dc,'\x41\x78\x57\x63')](_0x1b349c[_0x40cfdd]);else{const _0xc3a760={};return _0xc3a760[_0x272192(0x25b,'\x67\x24\x5b\x55')]=_0x4d0e47,_0xc3a760[_0x272192(0x205,'\x49\x57\x72\x5e')+_0x272192(0xed,'\x23\x57\x50\x78')]=[],_0xc3a760[_0x272192(0x144,'\x48\x76\x52\x30')+_0x272192(0x25f,'\x48\x76\x52\x30')]=_0x240835,_0xc3a760[_0x272192(0x129,'\x68\x46\x38\x30')+'\x65']=_0x272192(0x137,'\x74\x50\x25\x41')+'\x64\x5f\x66\x61\x6c\x6c\x62\x61'+'\x63\x6b',_0xc3a760;}}const _0x5955b4={};return _0x5955b4[_0x272192(0x2b6,'\x6f\x52\x31\x71')]=null,_0x5955b4[_0x272192(0x2bb,'\x74\x50\x25\x41')+_0x272192(0x20e,'\x57\x72\x62\x40')]=[],_0x5955b4[_0x272192(0x3be,'\x7a\x62\x38\x6a')+_0x272192(0x223,'\x6f\x52\x31\x71')]=_0x240835,_0x5955b4['\x64\x72\x69\x66\x74\x4d\x6f\x64'+'\x65']=_0x6d7a60[_0x272192(0x307,'\x49\x57\x72\x5e')],_0x5955b4;}const _0x2c4b8e=0x1*-0x209f+0x623*-0x2+0x2ce6+0.5;if(_0x21d1e0&&!(_0x1201b6&&_0x1201b6[_0x272192(0x2c5,'\x6c\x68\x4d\x32')])){const _0xf65353=_0x1b551e[_0x272192(0x224,'\x4c\x5d\x40\x66')+'\x78'](_0x487009=>_0x487009[_0x272192(0x390,'\x63\x57\x55\x39')]&&_0x487009['\x67\x65\x6e\x65']['\x69\x64']===_0x21d1e0);_0x6d7a60['\x67\x49\x4f\x5a\x56'](_0xf65353,0x1*0x19af+0x14ea+-0x2e99)&&!_0x39fb23[_0x272192(0x23d,'\x75\x70\x36\x72')](_0x21d1e0)&&(_0x1b551e[_0xf65353]={..._0x1b551e[_0xf65353],'\x73\x63\x6f\x72\x65':_0x6d7a60[_0x272192(0xfd,'\x55\x4c\x72\x26')](_0x1b551e[_0xf65353][_0x272192(0xee,'\x7a\x62\x38\x6a')],_0x2c4b8e)},_0x1b551e['\x73\x6f\x72\x74']((_0x2c1508,_0x43704c)=>_0x43704c[_0x272192(0x9e,'\x67\x24\x5b\x55')]-_0x2c1508[_0x272192(0x3a5,'\x5b\x77\x76\x36')]));}const _0x4fd84c=_0x1b551e[_0x272192(0x138,'\x67\x24\x5b\x55')](_0x23ccd2=>_0x23ccd2[_0x272192(0xe3,'\x35\x5d\x70\x4e')]&&!_0x39fb23[_0x272192(0x3b4,'\x64\x78\x25\x39')](_0x23ccd2[_0x272192(0x348,'\x36\x57\x50\x38')]['\x69\x64']));if(_0x4fd84c[_0x272192(0x93,'\x4a\x65\x43\x54')]===0xdfb+-0x17*-0xa7+-0x7*0x424)return{'\x73\x65\x6c\x65\x63\x74\x65\x64':null,'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':_0x1b551e[_0x272192(0x270,'\x74\x50\x25\x41')](-0x1d81+-0x1*-0x1939+0x448,0x971+0x2*-0xc2+-0x7e9)[_0x272192(0x13e,'\x5a\x45\x49\x52')](_0x3a8579=>_0x3a8579[_0x272192(0x30f,'\x41\x78\x57\x63')]),'\x64\x72\x69\x66\x74\x49\x6e\x74\x65\x6e\x73\x69\x74\x79':_0x240835,'\x64\x72\x69\x66\x74\x4d\x6f\x64\x65':_0x6d7a60[_0x272192(0x2c8,'\x57\x72\x62\x40')]};if(_0x1dbaa0&&_0x6d7a60[_0x272192(0x19b,'\x4a\x65\x43\x54')](_0x4fd84c[_0x272192(0x26b,'\x68\x69\x67\x79')],-0x6*-0x16d+0x19dd+-0x226a)){const _0x1614ab=_0x4fd84c[-0x1752+-0x1*0xb6b+0x1*0x22bd][_0x272192(0x392,'\x70\x4c\x46\x4e')],_0xc76911=0x167c*0x1+0x7*-0x4c1+0x9*0x133+0.7,_0x1f62fe=_0x4fd84c['\x66\x69\x6e\x64\x49\x6e\x64\x65'+'\x78'](function(_0x5a828e){const _0x5a9b6d=_0x272192;if(_0x6d7a60[_0x5a9b6d(0x161,'\x34\x5d\x64\x49')](_0x6d7a60[_0x5a9b6d(0x238,'\x57\x72\x62\x40')],_0x6d7a60[_0x5a9b6d(0x1f4,'\x72\x6e\x53\x70')]))return _0x5a828e[_0x5a9b6d(0x3b7,'\x6a\x24\x6d\x29')]&&_0x6d7a60[_0x5a9b6d(0x24b,'\x63\x57\x55\x39')](_0x5a828e[_0x5a9b6d(0x3a0,'\x67\x24\x5b\x55')][_0x5a9b6d(0xdb,'\x36\x57\x50\x38')+_0x5a9b6d(0x24c,'\x6a\x24\x6d\x29')],_0x6d7a60[_0x5a9b6d(0x2fa,'\x67\x58\x2a\x24')])&&_0x5a828e[_0x5a9b6d(0x29f,'\x57\x72\x62\x40')]>=_0x6d7a60[_0x5a9b6d(0x182,'\x4a\x65\x43\x54')](_0x1614ab,_0xc76911);else{const _0x4c7345={};return _0x4c7345['\x73\x65\x6c\x65\x63\x74\x65\x64']=_0x484bfa,_0x4c7345[_0x5a9b6d(0x2cc,'\x75\x21\x4e\x4b')+'\x69\x76\x65\x73']=[],_0x4c7345[_0x5a9b6d(0x144,'\x48\x76\x52\x30')+_0x5a9b6d(0x18a,'\x4d\x73\x75\x79')]=_0x31e006,_0x4c7345['\x64\x72\x69\x66\x74\x4d\x6f\x64'+'\x65']='\x64\x69\x73\x74\x69\x6c\x6c\x65'+_0x5a9b6d(0x16f,'\x6c\x68\x4d\x32')+'\x63\x6b',_0x4c7345;}});if(_0x6d7a60[_0x272192(0x376,'\x24\x62\x5b\x43')](_0x1f62fe,0xaed*0x2+0x3*0xad3+-0x3653)&&_0x4fd84c[-0x9f5+0x16c4+-0xccf][_0x272192(0x31e,'\x66\x6f\x42\x30')]&&_0x6d7a60[_0x272192(0x11e,'\x67\x24\x5b\x55')](_0x4fd84c[0x2478+-0x1*-0x955+-0x2dcd][_0x272192(0x39d,'\x76\x6d\x4a\x4c')][_0x272192(0x2b2,'\x30\x55\x4f\x31')+_0x272192(0x352,'\x26\x23\x54\x38')],_0x6d7a60[_0x272192(0xae,'\x55\x4c\x72\x26')])){const _0x46ec09=_0x4fd84c[_0x1f62fe];_0x4fd84c[_0x272192(0x3af,'\x30\x55\x4f\x31')](_0x1f62fe,-0x25d7+0x7f*0x4d+0xd*-0x7),_0x4fd84c[_0x272192(0x372,'\x72\x6e\x53\x70')](_0x46ec09);}}let _0x19c171=-0x4*-0x46a+-0x13ae+0x103*0x2,_0x218531=_0x6d7a60[_0x272192(0x1ee,'\x77\x34\x26\x25')];if(_0x6d7a60[_0x272192(0x181,'\x25\x5b\x77\x66')](_0x240835,0xdac+-0x11cd+-0x1*-0x421)&&_0x6d7a60[_0x272192(0x1ca,'\x77\x34\x26\x25')](_0x4fd84c[_0x272192(0x2e3,'\x5a\x45\x49\x52')],-0x260f+-0x1e8a+-0x16de*-0x3)&&_0x6d7a60[_0x272192(0x117,'\x6f\x52\x31\x71')](Math[_0x272192(0x2ed,'\x48\x76\x52\x30')](),_0x240835)){if(_0x1d88d8['\x6c\x65\x6e\x67\x74\x68']>-0x222c+-0x3*0x5a7+0x1*0x3321){const _0x177d92=_0x4fd84c[_0x272192(0x115,'\x55\x4c\x72\x26')](function(_0x5e9f4f,_0x3262d5){const _0x16d004=_0x272192,_0x28470b=_0x5e9f4f[_0x16d004(0x1a5,'\x77\x34\x26\x25')],_0x72e911=Array[_0x16d004(0x8f,'\x23\x57\x50\x78')](_0x28470b[_0x16d004(0x100,'\x67\x58\x2a\x24')+_0x16d004(0xb8,'\x6a\x21\x58\x63')])?_0x28470b[_0x16d004(0x3d1,'\x63\x57\x55\x39')+_0x16d004(0x112,'\x26\x23\x54\x38')]:[];let _0xbca44b=-0xc36+-0x2127+0x2d5d;for(let _0x4144bf=0xc43+-0x3*0x7f6+0xb9f;_0x6d7a60[_0x16d004(0x193,'\x25\x5b\x77\x66')](_0x4144bf,_0x1d88d8[_0x16d004(0x397,'\x6e\x32\x53\x39')])&&_0x6d7a60[_0x16d004(0x212,'\x55\x4c\x72\x26')](_0x4144bf,-0x8b*0x29+-0x103*0x5+0x1b57);_0x4144bf++){if(_0x6d7a60[_0x16d004(0xac,'\x6f\x52\x31\x71')]('\x77\x52\x55\x58\x41',_0x6d7a60[_0x16d004(0x2b8,'\x68\x46\x38\x30')])){const _0x53bd8d=_0x1d88d8[_0x4144bf];_0x6d7a60[_0x16d004(0x267,'\x4a\x65\x43\x54')](typeof _0x53bd8d,_0x6d7a60[_0x16d004(0x168,'\x6a\x24\x6d\x29')])&&_0x72e911[_0x16d004(0x201,'\x28\x2a\x68\x39')](function(_0x313875){const _0x1ddd76=_0x16d004;return _0x6d7a60[_0x1ddd76(0x3ae,'\x6e\x32\x53\x39')](_0x12a4fd,_0x313875,[_0x53bd8d]);})&&_0xbca44b++;}else{const _0x65c587={'\x50\x79\x69\x70\x4c':function(_0x49da4c,_0x16eb9a){const _0x2bb917=_0x16d004;return _0x6d7a60[_0x2bb917(0x335,'\x6e\x32\x53\x39')](_0x49da4c,_0x16eb9a);},'\x4c\x4a\x50\x61\x43':function(_0x28913f,_0x1bf989){return _0x28913f*_0x1bf989;}},_0x280012=_0x5e3872[0x8df+0x7cb+0x2*-0x855][_0x16d004(0xa0,'\x4a\x65\x43\x54')],_0xbeb039=0x160a+0x21bf+-0x37c9+0.7,_0x270fe5=_0x7d39ef[_0x16d004(0x245,'\x57\x72\x62\x40')+'\x78'](function(_0x484cdf){const _0x5ddd84=_0x16d004;return _0x484cdf[_0x5ddd84(0x2f2,'\x41\x66\x46\x76')]&&_0x484cdf[_0x5ddd84(0x3c6,'\x41\x33\x66\x51')][_0x5ddd84(0xce,'\x76\x6d\x4a\x4c')+_0x5ddd84(0x24c,'\x6a\x24\x6d\x29')]===_0x5ddd84(0x2a8,'\x40\x41\x51\x7a')&&_0x65c587['\x50\x79\x69\x70\x4c'](_0x484cdf['\x73\x63\x6f\x72\x65'],_0x65c587[_0x5ddd84(0x171,'\x40\x41\x51\x7a')](_0x280012,_0xbeb039));});if(_0x270fe5>-0x2d3+0x100+0x1d3&&_0x48559a[0x1*0x744+-0xab5+0x371][_0x16d004(0x1fc,'\x51\x44\x59\x56')]&&_0x6d7a60[_0x16d004(0x11e,'\x67\x24\x5b\x55')](_0x32ccb7[-0x1*0xd32+0x1f1*-0xe+0x2860]['\x67\x65\x6e\x65'][_0x16d004(0x1f8,'\x72\x6e\x53\x70')+'\x6e\x5f\x6d\x6f\x64\x65'],_0x16d004(0x23b,'\x41\x66\x46\x76'))){const _0x38655c=_0x1bcd23[_0x270fe5];_0x22084e[_0x16d004(0x2d9,'\x75\x21\x4e\x4b')](_0x270fe5,-0x1693+0x3ea+0x12aa),_0x178617[_0x16d004(0x183,'\x49\x57\x72\x5e')](_0x38655c);}}}const _0x31f0b5={};return _0x31f0b5[_0x16d004(0x162,'\x49\x57\x72\x5e')]=_0x3262d5,_0x31f0b5[_0x16d004(0x364,'\x55\x4c\x72\x26')]=_0xbca44b,_0x31f0b5[_0x16d004(0x37b,'\x6a\x21\x58\x63')+'\x65']=_0x5e9f4f['\x73\x63\x6f\x72\x65'],_0x31f0b5;}),_0x3d1dc1=_0x177d92[_0x272192(0x3cf,'\x75\x70\x36\x72')](function(_0x2af621){const _0x457dd6=_0x272192;return _0x2af621[_0x457dd6(0xa2,'\x6e\x32\x53\x39')]>-0xf5c+-0x3e*-0x5+0xe26;});if(_0x3d1dc1){if(_0x6d7a60[_0x272192(0xc0,'\x6a\x24\x6d\x29')]===_0x272192(0x299,'\x25\x5b\x77\x66')){const _0x1e97ed=_0x6d7a60[_0x272192(0x33c,'\x40\x41\x51\x7a')][_0x272192(0x214,'\x76\x6d\x4a\x4c')]('\x7c');let _0x300c43=-0x261d+-0x565*0x1+0x2b82;while(!![]){switch(_0x1e97ed[_0x300c43++]){case'\x30':if(!_0x186875||_0x6d7a60[_0x272192(0x289,'\x41\x66\x46\x76')](_0x5cdecf[_0x272192(0x28d,'\x51\x44\x59\x56')],_0x6d7a60[_0x272192(0x377,'\x26\x24\x46\x33')])||!_0x1e3598['\x69\x64'])return![];continue;case'\x31':if(_0x23975d[_0x272192(0x98,'\x30\x55\x4f\x31')](_0x21ae28['\x69\x64']))return![];continue;case'\x32':if(_0x6d7a60['\x4f\x42\x6a\x55\x7a'](_0x239eff,_0x32cf67,_0x471016))return![];continue;case'\x33':if(_0x2b3d8f['\x69\x64']===_0x2998f4[_0x272192(0x123,'\x41\x78\x57\x63')+_0x272192(0x126,'\x64\x64\x5a\x69')]['\x69\x64'])return![];continue;case'\x34':return!![];}break;}}else _0x177d92[_0x272192(0x38c,'\x74\x50\x25\x41')](function(_0x38a48f,_0x45b251){const _0x22214a=_0x272192;return _0x6d7a60[_0x22214a(0x14e,'\x6a\x24\x6d\x29')](_0x45b251['\x67\x61\x70\x48\x69\x74\x73'],_0x38a48f[_0x22214a(0x395,'\x26\x24\x46\x33')])||_0x6d7a60[_0x22214a(0x365,'\x4a\x65\x43\x54')](_0x45b251[_0x22214a(0x2d5,'\x5b\x77\x76\x36')+'\x65'],_0x38a48f[_0x22214a(0xeb,'\x6a\x24\x6d\x29')+'\x65']);}),_0x19c171=_0x177d92[-0x11e8+0x2490+-0x12a8][_0x272192(0x1c3,'\x4a\x65\x43\x54')],_0x218531=_0x6d7a60[_0x272192(0xd5,'\x25\x5b\x77\x66')];}else{if(_0x6d7a60[_0x272192(0xcc,'\x6e\x32\x53\x39')](_0x6d7a60[_0x272192(0x122,'\x6f\x52\x6c\x63')],_0x6d7a60[_0x272192(0x2ee,'\x24\x62\x5b\x43')])){const _0x586549={'\x71\x69\x76\x48\x6d':function(_0x30084d,_0x320b21){const _0x426951=_0x272192;return _0x6d7a60[_0x426951(0x1f3,'\x5a\x45\x49\x52')](_0x30084d,_0x320b21);},'\x4e\x69\x6c\x42\x4c':function(_0x3443a0,_0x4b3f13){return _0x3443a0(_0x4b3f13);}},_0x415742=new _0x2b1057((_0x7ab8dd[_0x272192(0x2c2,'\x41\x33\x66\x51')](_0x13dbe5[_0x272192(0x37e,'\x26\x24\x46\x33')+_0x272192(0x206,'\x48\x76\x52\x30')])?_0x35cc07['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+'\x6d\x61\x74\x63\x68']:[])['\x6d\x61\x70'](function(_0x2f40d2){const _0x5db1c4=_0x272192;return _0x586549['\x71\x69\x76\x48\x6d'](_0x54ad29,_0x2f40d2)['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x5db1c4(0xdd,'\x51\x44\x59\x56')]();})),_0x172d7a=new _0xa3697c((_0x137bea[_0x272192(0x334,'\x30\x55\x4f\x31')](_0x3c17dc[_0x272192(0x39e,'\x76\x6d\x4a\x4c')+_0x272192(0x2cf,'\x24\x62\x5b\x43')])?_0x540410['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x272192(0x268,'\x55\x4c\x72\x26')]:[])['\x6d\x61\x70'](function(_0x1e2b53){const _0x1adb27=_0x272192;return _0x586549[_0x1adb27(0x160,'\x68\x46\x38\x30')](_0x516b81,_0x1e2b53)[_0x1adb27(0x300,'\x48\x76\x52\x30')+_0x1adb27(0xa7,'\x5b\x77\x76\x36')]();}));if(_0x6d7a60[_0x272192(0x343,'\x4d\x73\x75\x79')](_0x415742[_0x272192(0x11d,'\x63\x57\x55\x39')],-0x2181+0x28d*-0x4+0xa7*0x43)&&_0x6d7a60[_0x272192(0x311,'\x5a\x45\x49\x52')](_0x172d7a['\x73\x69\x7a\x65'],-0x27c*0x7+-0x10c8+0x222c))return-0x85*-0x3b+-0x95a+-0x154d*0x1;if(_0x415742['\x73\x69\x7a\x65']===-0x2de*0xb+-0x7*0x565+0x9d*0x71||_0x6d7a60[_0x272192(0x222,'\x40\x41\x51\x7a')](_0x172d7a['\x73\x69\x7a\x65'],0x1ad+0x1830+0x89f*-0x3))return 0x14b1+0x19d2*0x1+-0x2e83;let _0x54ec31=0xd*-0x26e+0x1c28+0x36e;for(const _0x4c3e46 of _0x415742)if(_0x172d7a[_0x272192(0x1a1,'\x6c\x68\x4d\x32')](_0x4c3e46))_0x54ec31++;const _0x2fa428=_0x6d7a60[_0x272192(0xd2,'\x41\x78\x57\x63')](_0x415742['\x73\x69\x7a\x65'],_0x172d7a[_0x272192(0x1a8,'\x23\x57\x50\x78')])-_0x54ec31;return _0x6d7a60[_0x272192(0x303,'\x41\x66\x46\x76')](_0x2fa428,-0x3*0x5a4+-0x1b1*0x8+0x1e74)?-0x2*0x6fe+0x1492+0x2*-0x34b:_0x6d7a60['\x75\x4a\x4c\x63\x45'](_0x54ec31,_0x2fa428);}else{let _0x293408=Math[_0x272192(0x341,'\x26\x23\x54\x38')](_0x4fd84c[_0x272192(0x37d,'\x6a\x24\x6d\x29')],Math[_0x272192(0x33f,'\x34\x5d\x64\x49')](-0x11f0+-0x165b*-0x1+0x1*-0x469,Math[_0x272192(0x2b0,'\x67\x24\x5b\x55')](_0x6d7a60[_0x272192(0x2ba,'\x41\x78\x57\x63')](_0x4fd84c[_0x272192(0xdf,'\x77\x34\x26\x25')],_0x240835))));if(_0x6d7a60[_0x272192(0x2ec,'\x51\x44\x59\x56')](_0x3e9b22,null)&&_0x6d7a60[_0x272192(0xc7,'\x75\x70\x36\x72')](_0x3e9b22,-0xabe+0x2500+-0x1*0x1a42+0.3)&&_0x6d7a60[_0x272192(0x1f6,'\x48\x74\x61\x59')](_0x293408,_0x4fd84c['\x6c\x65\x6e\x67\x74\x68'])){if(_0x6d7a60['\x52\x62\x68\x6e\x66'](_0x6d7a60['\x68\x56\x76\x67\x50'],_0x272192(0x1b9,'\x6e\x32\x53\x39')))_0x293408=Math[_0x272192(0x243,'\x4a\x65\x43\x54')](_0x4fd84c[_0x272192(0x116,'\x24\x62\x5b\x43')],_0x293408+(0x1*0x5ab+-0x1eb7+-0x1*-0x190d));else{let _0x2db9b5=_0x6d7a60[_0x272192(0x36f,'\x41\x78\x57\x63')](_0x275c09,_0x2c4fe7,_0x339275);_0x2db9b5+=_0x586bab(_0x13fa49,_0x128ccf,_0x143900);const _0x37f884={};return _0x37f884['\x67\x65\x6e\x65']=_0x5f4178,_0x37f884['\x73\x63\x6f\x72\x65']=_0x2db9b5,_0x37f884;}}_0x19c171=Math[_0x272192(0x108,'\x6f\x52\x6c\x63')](_0x6d7a60[_0x272192(0x10e,'\x28\x2a\x68\x39')](Math[_0x272192(0xea,'\x23\x57\x50\x78')](),_0x293408)),_0x218531=_0x6d7a60[_0x272192(0x242,'\x34\x5d\x64\x49')];}}}else{if(_0x6d7a60[_0x272192(0x2f1,'\x6f\x52\x6c\x63')]!==_0x6d7a60['\x77\x53\x61\x50\x6a']){const _0x42d29b=Math[_0x272192(0x379,'\x6e\x32\x53\x39')](_0x4fd84c[_0x272192(0x22f,'\x78\x5d\x33\x71')],Math['\x6d\x61\x78'](0x896*0x3+0x1798+0x3158*-0x1,Math['\x63\x65\x69\x6c'](_0x6d7a60[_0x272192(0x248,'\x63\x57\x55\x39')](_0x4fd84c[_0x272192(0x93,'\x4a\x65\x43\x54')],_0x240835))));_0x19c171=Math[_0x272192(0x2f0,'\x6a\x21\x58\x63')](_0x6d7a60[_0x272192(0x19d,'\x67\x58\x2a\x24')](Math[_0x272192(0x16c,'\x4c\x5d\x40\x66')](),_0x42d29b)),_0x218531=_0x272192(0x2ed,'\x48\x76\x52\x30');}else _0x2bce67[_0x56cf5f[_0x34609c]]=bgeIKT[_0x272192(0xf6,'\x6a\x21\x58\x63')](_0xf684d[_0x3e77a6[_0x60cfef]]||-0x22*0x83+0x15e6+-0x90*0x8,-0x2053+0x1*0xe60+0x11f4);}}return{'\x73\x65\x6c\x65\x63\x74\x65\x64':_0x4fd84c[_0x19c171][_0x272192(0x1ea,'\x6c\x68\x4d\x32')],'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':_0x4fd84c[_0x272192(0x244,'\x30\x55\x4f\x31')](function(_0x2a960d,_0x26feb6){const _0x2ab058=_0x272192;if(_0x6d7a60[_0x2ab058(0x3b3,'\x41\x66\x46\x76')](_0x6d7a60['\x77\x6f\x71\x4c\x53'],_0x6d7a60[_0x2ab058(0x2ca,'\x66\x6f\x42\x30')])){const _0xb7194d={'\x42\x66\x6c\x52\x42':function(_0x443393,_0x58a5b9){const _0x3cb57a=_0x2ab058;return bgeIKT[_0x3cb57a(0x2c7,'\x67\x24\x5b\x55')](_0x443393,_0x58a5b9);}};_0x3687e3[_0x2ab058(0x100,'\x67\x58\x2a\x24')+_0x2ab058(0x2a3,'\x6e\x32\x53\x39')][_0x2ab058(0x24e,'\x64\x64\x5a\x69')](function(_0x5b622b){const _0x523d7a=_0x2ab058;_0x5c9adb=_0xe49564[_0x523d7a(0x234,'\x6f\x52\x31\x71')](_0xb7194d['\x42\x66\x6c\x52\x42'](_0x35fa9a,_0x5b622b));});}else return _0x6d7a60['\x55\x49\x59\x58\x6c'](_0x26feb6,_0x19c171);})[_0x272192(0x1db,'\x4d\x73\x75\x79')](-0x694*0x1+0x5*0x73d+0x9df*-0x3,-0x525*-0x6+0x2203*0x1+0x5*-0xcf9)[_0x272192(0x362,'\x67\x24\x5b\x55')](_0x3cf374=>_0x3cf374[_0x272192(0x2ff,'\x24\x62\x5b\x43')]),'\x64\x72\x69\x66\x74\x49\x6e\x74\x65\x6e\x73\x69\x74\x79':_0x240835,'\x64\x72\x69\x66\x74\x4d\x6f\x64\x65':_0x218531};}function _0x433752(_0x5be985,_0x4b1ca7){const _0x23fd54=_0x446d32,_0x501b58=(_0x5be985||[])[_0x23fd54(0xd3,'\x70\x4c\x46\x4e')](_0x2218c0=>{const _0x64d580=_0x23fd54,_0xb1d630=Array[_0x64d580(0x27a,'\x70\x4c\x46\x4e')](_0x2218c0['\x74\x72\x69\x67\x67\x65\x72'])?_0x2218c0['\x74\x72\x69\x67\x67\x65\x72']:[],_0x564838=_0xb1d630[_0x64d580(0x246,'\x49\x57\x72\x5e')]((_0x2104bb,_0xbaadca)=>_0x12a4fd(_0xbaadca,_0x4b1ca7)?_0x2104bb+(-0x6d0*-0x1+-0x3*0x419+0x57c):_0x2104bb,-0xe*0x24b+0xd*0x47+0x1c7f),_0x519456={};return _0x519456[_0x64d580(0x363,'\x74\x50\x25\x41')]=_0x2218c0,_0x519456['\x73\x63\x6f\x72\x65']=_0x564838,_0x519456;})[_0x23fd54(0x16b,'\x6c\x68\x4d\x32')](_0x5b401c=>_0x5b401c[_0x23fd54(0xab,'\x75\x21\x4e\x4b')]>-0x175e+0x1d99*-0x1+0x34f7)['\x73\x6f\x72\x74']((_0x53cf9a,_0x1871fc)=>_0x1871fc[_0x23fd54(0x1e8,'\x41\x66\x46\x76')]-_0x53cf9a[_0x23fd54(0x394,'\x24\x62\x5b\x43')]);return _0x501b58[_0x23fd54(0xad,'\x48\x76\x52\x30')]?_0x501b58[0x6ba+0x49a+-0x1d*0x64][_0x23fd54(0x296,'\x64\x78\x25\x39')]:null;}function _0x2ff7e0(_0x5368cf,_0x1d1da5){const _0x53d98f=_0x446d32,_0x18fd71={};_0x18fd71[_0x53d98f(0x3cd,'\x77\x34\x26\x25')]=function(_0x5455ef,_0x22da1e){return _0x5455ef/_0x22da1e;},_0x18fd71[_0x53d98f(0x3b8,'\x70\x4c\x46\x4e')]=_0x53d98f(0x373,'\x23\x57\x50\x78'),_0x18fd71[_0x53d98f(0xe6,'\x4d\x73\x75\x79')]=_0x53d98f(0x2c6,'\x66\x78\x72\x39'),_0x18fd71[_0x53d98f(0x10a,'\x51\x44\x59\x56')]=function(_0x5886fb,_0x10cae8){return _0x5886fb===_0x10cae8;},_0x18fd71[_0x53d98f(0x14b,'\x6f\x52\x31\x71')]=function(_0x1fad74,_0x3b143c){return _0x1fad74<_0x3b143c;};const _0x35e165=_0x18fd71;if(!Array[_0x53d98f(0x21f,'\x4c\x5d\x40\x66')](_0x5368cf)||!Array[_0x53d98f(0x35e,'\x75\x21\x4e\x4b')](_0x1d1da5))return-0x6d6+0x57*-0x59+-0x2515*-0x1;if(_0x35e165['\x4d\x53\x69\x50\x76'](_0x5368cf[_0x53d98f(0x397,'\x6e\x32\x53\x39')],-0x608+-0xa5a+-0x6*-0x2bb)||_0x35e165[_0x53d98f(0x28a,'\x7a\x62\x38\x6a')](_0x1d1da5[_0x53d98f(0x93,'\x4a\x65\x43\x54')],0x77*0x3b+0x1*0xcf5+-0x2862))return 0x678+0x1211+-0x1889;const _0x1fa5c8=new Set(_0x1d1da5[_0x53d98f(0x351,'\x5b\x77\x76\x36')](function(_0x4ea792){const _0x462ec1=_0x53d98f;return _0x35e165[_0x462ec1(0x17d,'\x76\x6d\x4a\x4c')]!==_0x35e165[_0x462ec1(0x96,'\x30\x55\x4f\x31')]?String(_0x4ea792)[_0x462ec1(0x1df,'\x6e\x32\x53\x39')+_0x462ec1(0x313,'\x57\x72\x62\x40')]():_0x33ae61[_0x462ec1(0x3c2,'\x6a\x24\x6d\x29')](0x521+0x142c+-0x194c,rGIxYW[_0x462ec1(0x1b8,'\x6a\x24\x6d\x29')](0x2f4*-0x3+-0x7a+0x957,_0x5f5a4a[_0x462ec1(0x156,'\x66\x78\x72\x39')](_0x4d062a)));}));let _0x5ad169=0x76c+-0x1189+0x3*0x35f;for(let _0x44ad5c=-0xc1*0x2a+-0x2550+0x12*0x3d5;_0x35e165[_0x53d98f(0x154,'\x4a\x65\x43\x54')](_0x44ad5c,_0x5368cf[_0x53d98f(0x1dc,'\x75\x70\x36\x72')]);_0x44ad5c++){if(_0x1fa5c8[_0x53d98f(0x1a1,'\x6c\x68\x4d\x32')](String(_0x5368cf[_0x44ad5c])[_0x53d98f(0x2f7,'\x63\x57\x55\x39')+_0x53d98f(0x198,'\x7a\x62\x38\x6a')]()))_0x5ad169++;}return _0x5ad169/Math[_0x53d98f(0x3bc,'\x66\x6f\x42\x30')](_0x5368cf[_0x53d98f(0x35f,'\x34\x5d\x64\x49')],-0x15c9+0x83f+0xd8b);}const _0x5b0558=-0xd5c+0x1deb+-0x108d,_0x12d71a=0x2302+-0x21ac+0x26*-0x9+0.6;function _0x47cc(){const _0x35267a=['\x79\x53\x6f\x78\x57\x34\x2f\x63\x55\x53\x6b\x39','\x57\x36\x6d\x45\x57\x36\x4c\x4f\x75\x53\x6b\x77\x57\x36\x6e\x45','\x57\x50\x78\x64\x4e\x43\x6f\x71\x70\x77\x6d','\x61\x4b\x54\x54\x6c\x4e\x57','\x75\x64\x79\x6e\x57\x37\x46\x64\x4d\x53\x6b\x71\x57\x37\x30','\x68\x64\x44\x6c\x45\x43\x6b\x44\x57\x34\x52\x63\x4b\x71','\x64\x53\x6f\x53\x57\x37\x42\x64\x54\x71','\x57\x34\x74\x63\x4b\x57\x7a\x44\x57\x36\x79','\x57\x36\x56\x63\x50\x53\x6f\x76\x57\x52\x70\x63\x49\x4a\x37\x63\x4f\x31\x43','\x57\x52\x2f\x64\x4a\x38\x6f\x54\x62\x4d\x4b','\x57\x50\x6e\x59\x57\x35\x43\x39\x6a\x38\x6f\x55\x57\x36\x54\x4c','\x57\x51\x74\x64\x51\x43\x6b\x52\x57\x36\x68\x64\x55\x64\x64\x64\x54\x71','\x57\x50\x66\x78\x57\x52\x56\x64\x4c\x53\x6b\x75','\x57\x36\x6d\x43\x57\x37\x4b','\x57\x34\x6d\x32\x57\x36\x66\x63','\x57\x34\x64\x63\x56\x38\x6b\x79\x7a\x38\x6f\x32\x46\x53\x6f\x2b','\x71\x53\x6f\x77\x57\x34\x6c\x63\x4a\x6d\x6b\x69\x57\x34\x42\x64\x4e\x38\x6f\x6b','\x73\x38\x6b\x31\x57\x35\x39\x64\x57\x34\x68\x64\x4f\x76\x30\x63','\x78\x63\x33\x64\x4c\x6d\x6b\x53\x57\x36\x30','\x43\x43\x6f\x63\x57\x52\x52\x63\x50\x61','\x68\x53\x6b\x73\x75\x5a\x42\x63\x4c\x4e\x78\x63\x4e\x4c\x69','\x73\x58\x34\x45\x57\x36\x75\x71\x57\x51\x5a\x64\x4d\x57','\x66\x75\x33\x64\x4a\x78\x30\x33\x57\x37\x44\x68\x57\x4f\x71','\x57\x37\x75\x31\x57\x52\x53','\x65\x38\x6b\x55\x6f\x38\x6f\x37\x6b\x57','\x6c\x43\x6b\x79\x6a\x6d\x6f\x45\x6b\x57','\x42\x53\x6b\x43\x57\x36\x58\x47\x57\x36\x46\x64\x4c\x33\x34\x33','\x64\x6d\x6b\x4e\x42\x64\x2f\x63\x55\x61','\x57\x35\x46\x64\x54\x77\x46\x64\x4d\x4d\x79','\x57\x36\x65\x49\x44\x43\x6b\x66\x57\x51\x57','\x57\x36\x4b\x76\x61\x4e\x65\x5a','\x57\x4f\x76\x45\x57\x4f\x56\x64\x50\x38\x6b\x76','\x57\x35\x71\x38\x57\x37\x58\x76\x6e\x6d\x6b\x53','\x57\x37\x38\x50\x62\x66\x65\x6a\x57\x37\x68\x64\x4a\x57','\x57\x4f\x64\x63\x56\x78\x38','\x57\x51\x43\x33\x6c\x67\x47\x68\x43\x53\x6b\x69\x57\x35\x38','\x57\x50\x39\x73\x57\x50\x6d','\x57\x4f\x56\x64\x48\x6d\x6f\x35\x68\x31\x71\x41\x57\x52\x50\x7a','\x6f\x6d\x6b\x73\x65\x53\x6f\x61\x61\x53\x6f\x67\x57\x37\x53','\x57\x4f\x70\x63\x55\x73\x66\x74\x77\x53\x6b\x52\x57\x51\x56\x63\x53\x57','\x57\x52\x74\x64\x56\x6d\x6f\x34\x64\x4c\x79','\x57\x34\x37\x64\x47\x6d\x6f\x52\x57\x35\x53','\x57\x36\x79\x48\x57\x36\x50\x56\x62\x71','\x57\x50\x44\x54\x62\x58\x6a\x47\x46\x43\x6f\x46\x69\x61','\x57\x37\x65\x4e\x57\x4f\x74\x63\x50\x62\x76\x39\x7a\x57\x53','\x62\x64\x65\x55\x57\x34\x5a\x64\x4a\x53\x6b\x78\x57\x35\x4f\x69','\x46\x53\x6f\x76\x44\x43\x6f\x31\x43\x78\x74\x64\x53\x73\x4f','\x57\x51\x31\x68\x57\x35\x75\x53\x57\x4f\x37\x63\x50\x53\x6b\x78\x57\x52\x6d','\x57\x34\x4a\x63\x4c\x6d\x6b\x56\x78\x6d\x6f\x62','\x57\x36\x74\x64\x50\x53\x6b\x71\x79\x62\x47','\x61\x38\x6b\x49\x6f\x53\x6f\x51\x6c\x38\x6f\x33','\x57\x36\x30\x35\x57\x37\x35\x7a\x62\x57','\x57\x50\x44\x72\x57\x4f\x4b\x51\x77\x61\x4f\x30\x66\x57','\x72\x6d\x6f\x32\x74\x6d\x6f\x76\x75\x57','\x57\x34\x74\x63\x4e\x61\x62\x6d\x57\x36\x42\x63\x47\x53\x6b\x63\x78\x61','\x57\x37\x6d\x77\x6b\x68\x65\x50\x57\x4f\x6c\x63\x4c\x47\x30','\x66\x48\x6e\x44\x57\x4f\x61','\x6e\x4c\x4e\x64\x48\x33\x34\x58','\x41\x38\x6f\x43\x41\x6d\x6f\x50','\x57\x50\x35\x48\x57\x37\x39\x37\x64\x4b\x6c\x63\x49\x57','\x67\x43\x6f\x30\x66\x47','\x41\x32\x44\x63\x79\x30\x38\x56\x57\x51\x76\x51','\x78\x47\x38\x64\x57\x36\x53\x62\x57\x51\x57','\x57\x51\x61\x70\x66\x77\x47\x49','\x57\x34\x42\x64\x51\x6d\x6f\x48\x57\x35\x48\x48','\x6c\x43\x6b\x39\x6f\x38\x6f\x62\x6c\x71','\x62\x76\x64\x64\x51\x68\x71\x30\x57\x35\x54\x42\x57\x52\x6d','\x6a\x65\x52\x64\x4f\x38\x6f\x68\x57\x51\x61','\x57\x34\x37\x64\x52\x77\x46\x64\x54\x4d\x71','\x63\x5a\x35\x6e\x42\x53\x6b\x67\x57\x34\x64\x63\x4c\x43\x6b\x49','\x77\x6d\x6f\x61\x57\x36\x2f\x63\x4d\x38\x6b\x7a\x57\x35\x70\x64\x47\x57','\x46\x43\x6b\x59\x57\x34\x39\x58\x57\x35\x61','\x57\x35\x37\x63\x48\x6d\x6f\x44\x78\x71\x4b','\x57\x51\x4c\x36\x57\x36\x42\x63\x53\x47','\x57\x4f\x64\x63\x54\x77\x65','\x57\x35\x54\x77\x68\x6d\x6f\x67\x72\x57','\x57\x37\x64\x63\x4b\x43\x6b\x61\x63\x47','\x57\x37\x69\x45\x41\x6d\x6b\x79\x57\x50\x65','\x57\x36\x68\x63\x4e\x38\x6b\x45\x63\x53\x6b\x48\x57\x52\x33\x63\x4b\x6d\x6b\x74','\x57\x36\x57\x6d\x64\x78\x30','\x6b\x30\x64\x64\x50\x43\x6f\x63\x57\x51\x61','\x57\x35\x74\x64\x53\x76\x52\x64\x4e\x78\x30','\x67\x73\x6a\x76\x79\x53\x6b\x78\x57\x34\x53','\x57\x4f\x70\x63\x56\x53\x6b\x5a','\x57\x36\x42\x64\x4e\x38\x6f\x36\x57\x34\x6a\x6f','\x57\x35\x79\x33\x57\x37\x79','\x57\x34\x37\x64\x4e\x4c\x6c\x64\x4d\x66\x71','\x73\x6d\x6b\x49\x57\x34\x72\x76\x57\x34\x46\x64\x4a\x76\x30\x78','\x57\x37\x79\x5a\x57\x50\x68\x63\x50\x62\x58\x36\x43\x47\x69','\x57\x35\x70\x64\x53\x68\x42\x64\x4c\x32\x33\x64\x56\x57','\x6f\x38\x6f\x6b\x6d\x64\x5a\x64\x48\x71','\x57\x34\x42\x63\x49\x38\x6f\x41\x76\x47\x48\x76\x74\x57','\x57\x52\x56\x64\x50\x43\x6b\x49\x57\x36\x4a\x64\x52\x74\x71','\x6f\x4e\x7a\x56\x65\x67\x78\x64\x4e\x43\x6f\x47','\x57\x36\x34\x78\x57\x37\x6e\x51\x76\x6d\x6b\x71','\x57\x4f\x68\x63\x52\x31\x62\x6e\x75\x53\x6b\x34\x57\x51\x42\x63\x55\x47','\x41\x43\x6f\x70\x57\x52\x33\x63\x53\x4c\x69\x66\x57\x52\x70\x63\x50\x47','\x57\x37\x70\x64\x54\x43\x6b\x67\x77\x47\x37\x64\x4a\x75\x39\x31','\x61\x4a\x6e\x6b','\x6f\x4b\x56\x64\x4f\x53\x6f\x4e\x57\x50\x6a\x43\x61\x61','\x72\x67\x38\x6c\x6f\x4d\x43','\x70\x38\x6f\x45\x57\x35\x2f\x64\x56\x76\x69','\x72\x6d\x6f\x67\x57\x52\x52\x63\x50\x75\x4b\x68','\x57\x35\x37\x63\x56\x6d\x6f\x49\x45\x5a\x61','\x57\x51\x76\x59\x57\x37\x74\x63\x55\x65\x56\x63\x4e\x53\x6b\x34\x6e\x47','\x57\x4f\x74\x63\x4f\x43\x6b\x35\x62\x49\x65','\x57\x35\x7a\x67\x6f\x38\x6f\x61\x78\x47','\x57\x4f\x6c\x64\x56\x53\x6f\x4e\x67\x57','\x57\x50\x6c\x64\x55\x6d\x6f\x53\x64\x4b\x38','\x61\x48\x72\x68\x57\x4f\x35\x79\x57\x50\x68\x63\x4f\x53\x6b\x57','\x57\x34\x57\x71\x57\x35\x75\x74\x71\x61\x42\x63\x56\x73\x6d','\x75\x6d\x6b\x58\x7a\x38\x6f\x31\x45\x53\x6f\x2f\x57\x50\x4e\x63\x52\x61','\x64\x53\x6b\x70\x44\x4a\x2f\x63\x4c\x75\x2f\x63\x48\x78\x38','\x57\x34\x75\x35\x42\x38\x6b\x68\x57\x4f\x30\x61','\x57\x35\x56\x64\x50\x33\x79','\x57\x37\x75\x46\x45\x53\x6b\x6c\x57\x51\x4b','\x71\x53\x6f\x43\x71\x43\x6f\x6a\x45\x47','\x63\x62\x66\x68\x57\x4f\x66\x79','\x57\x50\x37\x64\x52\x6d\x6f\x78','\x57\x34\x6d\x34\x41\x43\x6b\x63\x57\x50\x30','\x57\x35\x74\x63\x47\x6d\x6f\x68\x77\x57','\x71\x53\x6f\x69\x57\x50\x4a\x63\x52\x4c\x65\x70\x57\x52\x70\x63\x4e\x61','\x57\x50\x37\x64\x56\x43\x6f\x31\x57\x4f\x56\x64\x4b\x6d\x6b\x53','\x57\x36\x5a\x64\x55\x43\x6b\x70\x75\x58\x56\x64\x49\x71','\x57\x4f\x70\x64\x52\x38\x6f\x6b\x6b\x4d\x57','\x57\x34\x34\x45\x57\x51\x42\x63\x49\x64\x47','\x57\x51\x52\x63\x55\x4d\x58\x66\x71\x71','\x57\x4f\x33\x64\x53\x53\x6f\x65\x65\x77\x69','\x57\x35\x43\x76\x61\x76\x61\x4b','\x57\x50\x39\x6f\x57\x52\x47\x2f\x71\x57\x6d\x57\x64\x71','\x57\x52\x31\x52\x57\x52\x4b\x64\x45\x71','\x57\x34\x79\x4a\x75\x4b\x65\x4a\x6d\x43\x6b\x63\x6f\x53\x6b\x51\x67\x73\x64\x63\x52\x75\x75','\x71\x66\x4b\x4e\x6a\x4c\x72\x30\x57\x51\x47','\x57\x52\x50\x59\x67\x62\x39\x53','\x75\x71\x6d\x7a\x57\x36\x43','\x57\x4f\x4e\x64\x50\x43\x6f\x63\x57\x50\x4e\x64\x4c\x43\x6b\x5a\x57\x52\x42\x64\x4e\x47','\x57\x35\x61\x32\x57\x37\x58\x74','\x57\x51\x76\x53\x57\x36\x6c\x63\x53\x4c\x52\x63\x4e\x53\x6b\x49','\x57\x50\x37\x64\x54\x6d\x6b\x2b\x57\x36\x4a\x64\x55\x47','\x57\x4f\x70\x63\x55\x78\x7a\x63\x78\x47','\x61\x43\x6b\x2b\x6d\x71','\x74\x78\x65\x53\x67\x31\x48\x68\x57\x51\x4b','\x57\x36\x34\x6d\x61\x4e\x71\x49\x57\x4f\x2f\x63\x56\x71','\x57\x51\x70\x64\x56\x43\x6f\x5a\x57\x51\x78\x64\x53\x71','\x77\x38\x6f\x6f\x57\x52\x4f','\x79\x62\x5a\x63\x4f\x38\x6b\x37\x57\x34\x62\x55\x70\x6d\x6f\x4f\x57\x50\x44\x56\x62\x47','\x57\x50\x6a\x30\x57\x35\x38\x52\x6e\x53\x6b\x4e\x57\x50\x58\x34','\x61\x4b\x7a\x35\x57\x52\x70\x64\x48\x57','\x57\x4f\x33\x64\x50\x53\x6b\x54\x63\x4b\x35\x4f\x70\x65\x4f','\x57\x50\x62\x5a\x57\x34\x75\x4e','\x73\x6d\x6f\x6c\x43\x6d\x6f\x70\x70\x47','\x6e\x65\x64\x64\x56\x6d\x6f\x55','\x57\x35\x38\x38\x70\x32\x61\x74','\x65\x77\x4e\x64\x4b\x38\x6f\x79\x57\x51\x44\x47\x6b\x6d\x6f\x48','\x57\x37\x6c\x63\x50\x53\x6b\x68\x71\x53\x6f\x35','\x57\x35\x6d\x59\x43\x6d\x6b\x6c\x57\x50\x4f\x6e\x66\x6d\x6b\x78','\x57\x36\x7a\x70\x65\x53\x6f\x4d\x71\x31\x4e\x64\x4c\x67\x65','\x57\x4f\x4a\x64\x56\x53\x6f\x4b\x65\x76\x69\x6c\x57\x34\x65\x44','\x57\x50\x7a\x66\x57\x34\x4a\x63\x4a\x68\x61','\x57\x35\x52\x63\x4d\x47\x6a\x72\x57\x37\x68\x63\x56\x6d\x6b\x34\x76\x71','\x66\x4a\x4f\x37\x57\x35\x46\x64\x53\x53\x6b\x70','\x57\x36\x61\x46\x57\x35\x62\x58\x68\x57','\x57\x36\x38\x78\x57\x37\x62\x49\x75\x53\x6b\x62\x57\x34\x6e\x6f','\x57\x34\x57\x41\x57\x36\x53\x73\x79\x57\x5a\x63\x4e\x61\x4b','\x57\x51\x66\x47\x65\x47\x66\x4e\x42\x6d\x6f\x66\x70\x61','\x57\x50\x54\x58\x62\x58\x39\x32\x42\x61','\x57\x52\x62\x6e\x57\x34\x38\x53\x57\x4f\x68\x63\x50\x53\x6b\x6c\x57\x4f\x71','\x6d\x53\x6b\x4b\x70\x53\x6f\x34\x69\x47','\x66\x4a\x61\x4f\x57\x35\x65','\x65\x31\x37\x64\x49\x4e\x75\x4d\x57\x35\x50\x55\x57\x50\x75','\x64\x47\x44\x6b','\x57\x34\x6c\x64\x4b\x6d\x6f\x47\x57\x37\x4c\x61','\x57\x52\x72\x53\x57\x35\x43\x6b\x57\x52\x57','\x57\x50\x54\x4d\x69\x57\x6e\x4e\x41\x6d\x6f\x70','\x57\x36\x5a\x64\x52\x77\x42\x64\x4f\x68\x4b','\x76\x53\x6f\x45\x7a\x43\x6f\x45\x69\x4b\x50\x67\x57\x4f\x69','\x63\x6d\x6b\x66\x78\x64\x78\x63\x4b\x65\x2f\x63\x4d\x76\x38','\x57\x51\x71\x5a\x65\x77\x38\x43','\x57\x52\x4e\x64\x52\x38\x6b\x36\x57\x36\x52\x64\x54\x73\x4a\x64\x56\x58\x34','\x57\x37\x34\x36\x63\x68\x4b\x52\x57\x4f\x46\x63\x47\x61\x4b','\x79\x6d\x6f\x77\x73\x53\x6f\x66\x74\x61','\x57\x37\x47\x4d\x67\x32\x43\x4b','\x57\x34\x37\x63\x55\x38\x6b\x66\x45\x38\x6f\x58\x41\x38\x6f\x45\x57\x4f\x30','\x57\x34\x53\x6c\x57\x37\x47\x6f\x71\x58\x64\x63\x4d\x61\x4b','\x57\x4f\x74\x64\x52\x53\x6b\x4d','\x61\x67\x6a\x70\x57\x4f\x70\x64\x53\x33\x68\x63\x50\x6d\x6b\x33','\x57\x36\x38\x42\x57\x37\x6d','\x57\x34\x4a\x64\x53\x77\x6c\x64\x4a\x67\x46\x64\x51\x68\x70\x64\x54\x71','\x79\x77\x34\x2f\x64\x76\x34','\x61\x61\x39\x63\x57\x50\x58\x6a\x57\x51\x4f','\x57\x34\x4e\x64\x54\x33\x5a\x64\x49\x32\x53','\x57\x34\x37\x63\x56\x38\x6b\x43\x44\x38\x6f\x52','\x6b\x43\x6f\x30\x57\x36\x6c\x64\x48\x31\x43','\x65\x6d\x6f\x2b\x64\x63\x30','\x57\x34\x5a\x64\x53\x77\x68\x64\x49\x32\x46\x64\x56\x4e\x6d','\x57\x52\x62\x48\x57\x36\x68\x63\x54\x71','\x57\x35\x6d\x30\x43\x38\x6b\x43\x57\x50\x57\x4d\x61\x38\x6b\x73','\x57\x35\x69\x61\x57\x37\x44\x42\x6e\x6d\x6b\x32\x57\x34\x58\x68','\x57\x35\x47\x33\x57\x4f\x7a\x37\x79\x6d\x6b\x4c\x57\x36\x39\x46\x63\x43\x6b\x77\x57\x4f\x50\x54','\x57\x36\x64\x64\x4b\x38\x6f\x6c\x57\x35\x4c\x56','\x64\x58\x76\x56\x57\x50\x50\x45\x57\x52\x4e\x63\x54\x71','\x57\x35\x71\x32\x57\x37\x54\x41','\x57\x36\x37\x63\x4e\x38\x6b\x44','\x57\x36\x57\x54\x57\x37\x62\x49\x72\x6d\x6b\x44','\x57\x35\x70\x63\x51\x6d\x6f\x48\x57\x4f\x2f\x63\x4f\x61','\x57\x34\x74\x63\x49\x47\x6a\x74\x57\x36\x6c\x63\x54\x38\x6b\x45','\x61\x4a\x4f\x30\x57\x34\x64\x64\x47\x43\x6b\x69\x57\x35\x71\x71','\x63\x64\x34\x51','\x57\x35\x70\x64\x50\x31\x6c\x64\x49\x33\x5a\x64\x55\x32\x38','\x79\x38\x6f\x75\x57\x50\x2f\x63\x4b\x4b\x4b','\x57\x35\x42\x64\x53\x66\x64\x64\x4a\x68\x71','\x57\x4f\x7a\x50\x57\x34\x71\x6b\x6d\x53\x6f\x2b\x57\x35\x71','\x57\x4f\x6a\x59\x57\x35\x6d\x49\x63\x71','\x57\x36\x53\x39\x57\x51\x78\x63\x4f\x58\x50\x34\x79\x66\x71','\x44\x74\x34\x31\x57\x35\x6d\x58','\x61\x59\x66\x34\x45\x43\x6b\x67\x57\x34\x2f\x63\x4a\x71','\x57\x4f\x78\x64\x51\x53\x6b\x57\x67\x76\x6e\x53','\x63\x6d\x6b\x34\x6f\x53\x6f\x49','\x57\x50\x72\x50\x57\x36\x75\x37\x69\x43\x6f\x30\x57\x35\x6a\x52','\x57\x34\x64\x64\x48\x6d\x6f\x59','\x57\x50\x76\x43\x57\x4f\x30\x38\x78\x57\x47\x57','\x76\x53\x6f\x73\x57\x35\x37\x63\x4f\x43\x6b\x63\x57\x34\x42\x64\x49\x71','\x61\x4b\x78\x64\x51\x31\x71\x4d','\x57\x4f\x58\x4a\x57\x35\x47\x4f\x6a\x38\x6f\x31','\x6e\x77\x74\x64\x54\x43\x6f\x53\x57\x52\x30','\x41\x72\x78\x64\x51\x38\x6b\x42\x57\x34\x7a\x70\x7a\x48\x47','\x57\x51\x6d\x47\x70\x78\x47','\x70\x38\x6b\x4d\x43\x58\x70\x63\x4a\x57','\x57\x52\x5a\x64\x49\x53\x6b\x6c\x57\x34\x46\x64\x4d\x57','\x62\x43\x6b\x47\x6a\x6d\x6f\x39\x70\x71','\x65\x38\x6f\x4d\x57\x34\x46\x64\x4f\x4e\x68\x64\x4a\x38\x6b\x77','\x6a\x33\x4c\x33','\x57\x36\x38\x37\x57\x35\x76\x73\x6d\x71','\x57\x50\x4c\x73\x57\x37\x78\x63\x4c\x43\x6b\x69\x6a\x78\x4b\x4e','\x64\x4c\x6e\x39\x66\x4d\x71','\x65\x57\x48\x44\x57\x4f\x62\x66\x57\x52\x37\x63\x55\x61','\x57\x4f\x5a\x64\x53\x38\x6f\x37\x57\x4f\x37\x64\x49\x57','\x57\x50\x2f\x64\x54\x6d\x6b\x55\x57\x34\x33\x64\x53\x57','\x57\x37\x37\x63\x50\x53\x6f\x45\x57\x51\x4e\x63\x4a\x49\x61','\x57\x36\x64\x63\x54\x38\x6f\x63\x75\x63\x69','\x57\x52\x66\x78\x57\x37\x52\x63\x4b\x66\x61','\x61\x75\x52\x64\x4c\x33\x6d','\x57\x35\x46\x64\x56\x78\x30','\x44\x48\x78\x64\x56\x71','\x57\x4f\x64\x63\x52\x6d\x6b\x4c\x64\x61\x64\x63\x48\x38\x6b\x4d\x62\x47','\x57\x37\x34\x6a\x57\x35\x66\x37\x64\x57','\x57\x37\x74\x63\x51\x53\x6f\x43\x57\x52\x52\x63\x4e\x5a\x4f','\x57\x52\x6e\x39\x57\x37\x78\x63\x53\x30\x4e\x63\x48\x53\x6b\x49\x68\x57','\x57\x34\x43\x6e\x57\x51\x47\x76\x71\x59\x53\x6e\x65\x47','\x73\x43\x6f\x70\x41\x53\x6f\x6c\x69\x4c\x65','\x6b\x38\x6b\x6d\x74\x64\x33\x63\x53\x71','\x7a\x53\x6f\x2b\x46\x38\x6f\x33\x43\x61','\x57\x52\x68\x63\x52\x53\x6f\x75\x61\x31\x46\x63\x4b\x71\x54\x4b\x57\x51\x53\x4a\x57\x36\x6e\x49\x57\x51\x43','\x66\x53\x6b\x62\x73\x73\x74\x63\x51\x30\x74\x63\x4b\x31\x4b','\x57\x37\x61\x4f\x6a\x4b\x75\x44','\x57\x52\x6a\x53\x57\x35\x30\x34\x57\x4f\x75','\x62\x78\x35\x73\x57\x4f\x5a\x64\x4d\x65\x74\x63\x51\x38\x6b\x49','\x68\x66\x38\x45\x6a\x33\x7a\x35\x57\x4f\x53','\x57\x35\x5a\x63\x4e\x6d\x6f\x49\x46\x74\x47','\x57\x35\x6c\x63\x49\x71\x62\x57\x57\x34\x75','\x67\x53\x6f\x36\x65\x47','\x57\x4f\x76\x73\x57\x4f\x38\x37','\x62\x6d\x6f\x2b\x64\x49\x33\x64\x49\x53\x6b\x55\x6c\x71\x61','\x57\x50\x4c\x68\x57\x35\x43\x53','\x66\x53\x6f\x33\x66\x49\x33\x64\x4d\x38\x6b\x30\x6b\x72\x61','\x68\x43\x6b\x66\x76\x64\x75','\x57\x35\x75\x66\x6f\x78\x61\x6b','\x72\x32\x58\x65\x79\x4c\x34','\x76\x43\x6b\x45\x57\x35\x4c\x51\x57\x35\x4b','\x57\x34\x64\x63\x48\x53\x6f\x67\x74\x61\x71','\x57\x51\x44\x31\x57\x36\x6c\x63\x4c\x75\x68\x63\x4e\x53\x6b\x49','\x63\x43\x6b\x72\x73\x63\x71','\x57\x35\x42\x64\x53\x78\x33\x64\x4e\x4e\x52\x64\x53\x47','\x44\x58\x68\x64\x51\x38\x6b\x79\x57\x35\x31\x6b','\x57\x52\x74\x64\x55\x43\x6f\x52\x70\x65\x6d','\x75\x38\x6f\x33\x57\x52\x56\x63\x53\x76\x6d\x67\x57\x51\x64\x63\x51\x57','\x57\x35\x64\x63\x4e\x43\x6b\x2f\x66\x43\x6b\x31','\x6d\x53\x6b\x62\x6c\x38\x6b\x2b\x78\x30\x4e\x64\x4a\x77\x46\x63\x4e\x61\x30','\x57\x35\x64\x63\x4d\x47\x66\x42','\x57\x34\x74\x63\x4c\x47\x48\x71\x57\x36\x6c\x63\x51\x43\x6b\x75\x42\x71','\x57\x35\x52\x63\x4e\x48\x38','\x57\x34\x52\x64\x47\x6d\x6f\x53\x57\x35\x69','\x66\x4b\x66\x2b\x57\x51\x37\x64\x49\x61','\x57\x51\x5a\x64\x4f\x43\x6f\x68\x57\x50\x4e\x64\x4f\x47','\x57\x34\x33\x64\x54\x53\x6b\x59\x71\x72\x38','\x57\x52\x4a\x63\x53\x38\x6b\x73','\x57\x37\x64\x63\x4e\x43\x6b\x63\x68\x43\x6b\x78','\x46\x53\x6f\x46\x73\x6d\x6f\x59\x41\x4d\x4e\x64\x50\x4e\x43','\x74\x53\x6b\x58\x57\x34\x6e\x44\x57\x35\x42\x64\x52\x68\x71\x74','\x64\x4a\x4f\x4a\x57\x35\x79','\x57\x4f\x74\x64\x4f\x43\x6f\x37\x57\x4f\x37\x64\x4b\x57','\x77\x38\x6f\x69\x57\x52\x64\x63\x50\x61','\x57\x4f\x46\x64\x50\x38\x6f\x65\x57\x51\x4e\x64\x49\x71','\x57\x4f\x2f\x63\x52\x53\x6b\x47\x6b\x4a\x4f','\x76\x4d\x6e\x6f\x44\x61','\x57\x36\x6c\x64\x56\x66\x74\x64\x4e\x77\x4f','\x57\x4f\x66\x4c\x64\x48\x48\x32\x42\x61','\x64\x5a\x66\x6e\x7a\x6d\x6b\x67\x57\x36\x52\x63\x4b\x43\x6b\x31','\x64\x63\x57\x42\x57\x35\x46\x64\x4f\x38\x6b\x67\x57\x34\x69','\x57\x37\x34\x39\x57\x51\x5a\x63\x51\x71','\x57\x52\x64\x64\x4b\x53\x6f\x71\x6a\x4b\x57','\x57\x34\x56\x63\x56\x38\x6b\x42','\x65\x71\x39\x41\x57\x4f\x61','\x57\x37\x4b\x72\x57\x36\x66\x4c\x6d\x47','\x57\x37\x2f\x63\x51\x53\x6f\x43\x57\x52\x47','\x44\x30\x35\x6b\x73\x66\x34','\x64\x43\x6b\x61\x67\x53\x6f\x52\x6a\x71','\x61\x53\x6b\x73\x57\x36\x46\x64\x54\x58\x6a\x44\x57\x37\x42\x63\x50\x31\x5a\x64\x48\x78\x4e\x64\x4a\x4c\x47','\x57\x50\x54\x4b\x57\x52\x38\x61\x43\x61','\x70\x4b\x74\x64\x51\x47','\x57\x35\x4b\x32\x57\x35\x54\x73\x6a\x47','\x6b\x32\x50\x54\x67\x68\x37\x64\x4f\x38\x6f\x47\x57\x50\x4f','\x57\x4f\x7a\x78\x57\x35\x38\x52\x57\x4f\x4b','\x45\x72\x4a\x64\x4f\x6d\x6b\x42','\x57\x34\x6d\x34\x43\x53\x6b\x44\x57\x4f\x30\x6c\x62\x6d\x6b\x71','\x57\x37\x78\x63\x50\x53\x6f\x43','\x57\x36\x5a\x63\x4f\x53\x6f\x35\x57\x52\x4e\x63\x50\x61','\x57\x4f\x64\x64\x49\x38\x6f\x4d\x64\x4c\x75\x45\x57\x36\x65\x6e','\x57\x34\x79\x32\x44\x43\x6b\x63\x57\x50\x57\x44\x6d\x53\x6b\x73','\x57\x50\x62\x33\x57\x35\x62\x53','\x57\x50\x52\x64\x51\x53\x6b\x59\x67\x30\x72\x57\x68\x76\x4f','\x57\x4f\x58\x41\x57\x51\x37\x64\x47\x43\x6b\x7a\x6e\x4e\x4b\x6e','\x57\x37\x2f\x63\x51\x53\x6f\x43\x57\x52\x4a\x63\x54\x64\x42\x63\x55\x78\x53','\x57\x4f\x70\x63\x52\x53\x6b\x49\x61\x63\x78\x63\x47\x71','\x57\x34\x37\x64\x55\x32\x46\x64\x4d\x67\x6c\x64\x4d\x32\x6c\x64\x50\x71','\x57\x37\x68\x64\x4c\x6d\x6b\x37\x45\x61\x4b','\x57\x34\x4f\x54\x57\x4f\x37\x63\x55\x71\x57','\x57\x4f\x35\x7a\x57\x35\x53\x47\x6e\x38\x6f\x34','\x57\x34\x53\x71\x57\x37\x71\x7a','\x57\x4f\x74\x64\x51\x6d\x6f\x53','\x63\x43\x6b\x6a\x78\x74\x37\x63\x47\x30\x42\x63\x48\x67\x6d','\x41\x4a\x5a\x64\x4e\x38\x6b\x5a\x57\x34\x38','\x57\x36\x46\x63\x4b\x38\x6b\x37\x45\x38\x6f\x68','\x66\x4a\x61\x33\x57\x34\x61','\x57\x50\x6e\x4d\x62\x57','\x57\x37\x69\x65\x68\x71','\x57\x50\x37\x63\x54\x77\x48\x6f\x75\x53\x6b\x47\x57\x52\x42\x64\x53\x47','\x57\x51\x68\x63\x55\x43\x6b\x6d\x6f\x57\x61','\x68\x66\x52\x64\x49\x78\x71\x58\x57\x34\x44\x53\x57\x4f\x79','\x57\x34\x33\x64\x4b\x43\x6b\x4a\x79\x72\x53','\x57\x52\x6e\x77\x69\x58\x39\x63','\x6e\x6d\x6f\x39\x57\x34\x56\x64\x54\x66\x43','\x57\x4f\x68\x64\x52\x53\x6b\x54','\x6b\x58\x4c\x61\x79\x38\x6b\x41','\x73\x73\x71\x74\x57\x34\x74\x63\x48\x59\x4a\x64\x52\x53\x6f\x51','\x74\x61\x4b\x42\x57\x36\x43\x75\x57\x52\x33\x64\x47\x63\x38','\x57\x50\x50\x57\x57\x51\x71\x4a\x79\x47','\x57\x50\x6e\x66\x57\x4f\x30\x4a\x73\x57\x4f\x30\x66\x57','\x57\x50\x42\x63\x4f\x53\x6b\x41\x62\x49\x74\x63\x47\x43\x6b\x37\x6e\x57','\x57\x35\x30\x77\x57\x37\x34\x75\x71\x57\x42\x63\x51\x57','\x57\x36\x64\x64\x4c\x4b\x4e\x64\x4a\x66\x4f','\x75\x47\x75\x7a','\x57\x50\x4e\x63\x50\x75\x48\x62\x71\x38\x6b\x2f','\x57\x50\x72\x30\x57\x35\x38\x49','\x57\x50\x76\x79\x57\x51\x5a\x64\x4d\x43\x6b\x6a\x6d\x32\x4b\x58','\x66\x5a\x34\x51\x57\x34\x33\x63\x51\x38\x6f\x68','\x78\x47\x47\x74','\x44\x43\x6f\x4c\x57\x50\x4e\x63\x4a\x65\x71','\x57\x4f\x70\x64\x54\x38\x6f\x5a\x57\x50\x4a\x64\x4b\x53\x6b\x2b\x57\x51\x4f','\x57\x37\x78\x63\x51\x53\x6f\x46\x57\x52\x6c\x63\x4d\x73\x56\x63\x4a\x33\x47','\x57\x52\x62\x30\x57\x37\x4b\x6f\x61\x57','\x57\x52\x72\x2f\x57\x36\x31\x46\x64\x47','\x68\x76\x52\x64\x49\x4e\x57\x33\x57\x35\x79','\x57\x37\x31\x4a\x6e\x43\x6f\x4e\x44\x61','\x63\x67\x48\x43\x57\x51\x56\x64\x4c\x47','\x57\x50\x62\x56\x66\x73\x6a\x56','\x65\x38\x6b\x4b\x6d\x38\x6f\x4e\x6c\x38\x6f\x56\x57\x35\x56\x63\x4a\x57','\x57\x50\x50\x30\x65\x71','\x57\x35\x65\x72\x57\x37\x35\x43\x75\x61\x42\x63\x4f\x71\x75','\x57\x36\x4b\x76\x61\x4e\x65\x4b\x57\x4f\x34','\x57\x4f\x4e\x64\x52\x38\x6f\x56\x6c\x67\x71','\x62\x4d\x4c\x76\x57\x4f\x38','\x57\x52\x7a\x66\x57\x51\x71\x2f\x76\x43\x6b\x49\x57\x35\x44\x4e\x69\x75\x75','\x57\x35\x37\x64\x48\x53\x6f\x54\x57\x34\x76\x6a','\x57\x50\x72\x50\x57\x37\x61\x4d\x6b\x38\x6f\x34\x57\x35\x47','\x61\x4c\x5a\x64\x49\x32\x4b\x4d','\x76\x48\x4f\x44\x57\x50\x71\x44\x57\x51\x74\x64\x56\x53\x6b\x34','\x57\x35\x33\x64\x54\x77\x70\x64\x53\x77\x46\x64\x52\x4d\x75','\x63\x53\x6f\x47\x57\x37\x78\x64\x55\x61','\x57\x36\x4b\x67\x61\x77\x4f\x49','\x57\x37\x46\x63\x52\x53\x6b\x4c\x78\x53\x6f\x42','\x6d\x4e\x33\x64\x51\x76\x79\x48','\x57\x36\x6c\x63\x4a\x43\x6b\x69','\x57\x37\x43\x31\x65\x71','\x57\x52\x38\x42\x70\x4e\x4f\x52','\x57\x35\x65\x36\x57\x37\x35\x63\x6d\x6d\x6b\x51','\x67\x74\x66\x77\x45\x43\x6b\x72','\x57\x50\x44\x77\x57\x34\x53\x55\x57\x4f\x34','\x77\x53\x6f\x63\x57\x52\x52\x63\x50\x4c\x69\x63','\x7a\x6d\x6f\x37\x57\x34\x4a\x63\x4a\x6d\x6b\x37','\x57\x35\x34\x47\x57\x35\x72\x46\x6f\x38\x6b\x58\x57\x34\x58\x6c','\x72\x33\x54\x6b\x79\x4b\x38\x5a\x57\x4f\x62\x36','\x78\x77\x62\x66\x71\x31\x69\x36\x57\x52\x69','\x6f\x6d\x6b\x73\x67\x6d\x6f\x61\x61\x6d\x6f\x67\x57\x37\x53','\x6f\x68\x78\x64\x4c\x32\x53\x37','\x57\x35\x4e\x64\x55\x33\x33\x64\x4d\x4d\x2f\x64\x52\x47','\x57\x50\x50\x37\x57\x35\x61','\x57\x51\x44\x79\x57\x37\x54\x36\x6f\x71','\x57\x51\x6c\x64\x52\x6d\x6b\x2b\x57\x35\x37\x64\x4f\x57','\x57\x4f\x2f\x63\x52\x6d\x6b\x49\x63\x4a\x53','\x57\x36\x52\x63\x4d\x53\x6b\x69\x61\x43\x6b\x72\x57\x52\x53','\x63\x43\x6f\x57\x57\x36\x52\x64\x54\x77\x64\x64\x4d\x53\x6b\x67\x57\x51\x4b','\x57\x50\x35\x39\x57\x35\x61','\x78\x38\x6b\x5a\x73\x4d\x42\x63\x47\x53\x6f\x5a\x79\x30\x30','\x57\x50\x54\x43\x57\x4f\x30','\x57\x52\x50\x6a\x57\x50\x57\x32\x75\x57','\x57\x34\x52\x63\x53\x43\x6b\x67\x72\x38\x6f\x51\x41\x6d\x6f\x2b','\x57\x37\x78\x63\x47\x43\x6f\x7a\x57\x50\x52\x63\x4a\x71','\x62\x53\x6b\x49\x6a\x47','\x57\x37\x54\x52\x6d\x6d\x6f\x52\x42\x61','\x71\x53\x6f\x41\x57\x34\x4e\x63\x48\x38\x6b\x6b\x57\x35\x37\x64\x49\x71','\x43\x38\x6f\x30\x57\x51\x33\x63\x48\x30\x4f','\x57\x35\x4b\x6d\x57\x37\x57','\x57\x34\x75\x44\x66\x31\x79\x6c','\x57\x36\x30\x78\x57\x37\x75\x72\x77\x61','\x57\x51\x7a\x39\x57\x37\x37\x63\x51\x75\x33\x63\x4d\x61','\x57\x50\x52\x63\x4a\x4c\x50\x34\x43\x47','\x57\x50\x4e\x64\x53\x43\x6f\x46\x57\x4f\x46\x64\x47\x43\x6b\x54\x57\x51\x4f','\x65\x78\x39\x6f\x57\x4f\x42\x64\x49\x78\x69','\x57\x35\x5a\x64\x4f\x66\x64\x64\x52\x75\x69','\x73\x4c\x4b\x4e\x66\x4c\x58\x36','\x57\x35\x6c\x63\x48\x57\x50\x44\x57\x37\x42\x63\x53\x43\x6b\x6f\x78\x71','\x57\x34\x4a\x64\x54\x38\x6b\x49\x79\x59\x6d','\x57\x35\x38\x58\x57\x51\x5a\x63\x51\x61','\x57\x35\x64\x63\x4c\x38\x6b\x78\x63\x47','\x57\x34\x43\x65\x57\x35\x35\x58\x62\x61','\x77\x77\x35\x42','\x57\x52\x39\x72\x57\x35\x57','\x75\x64\x70\x64\x51\x38\x6b\x6b\x57\x36\x75','\x78\x61\x6d\x41\x57\x37\x69\x63\x57\x52\x33\x64\x4a\x61\x71','\x67\x38\x6f\x35\x57\x37\x6c\x64\x54\x78\x68\x64\x47\x6d\x6b\x6f\x57\x52\x69','\x78\x77\x54\x6f\x46\x4c\x47\x4c','\x75\x47\x4b\x41\x57\x36\x30\x66\x57\x52\x64\x64\x56\x64\x6d','\x57\x4f\x4e\x63\x4d\x32\x50\x6f\x76\x53\x6b\x66\x57\x51\x65','\x65\x53\x6f\x4a\x62\x59\x56\x64\x4e\x6d\x6b\x55\x69\x71\x53','\x57\x4f\x42\x63\x4b\x77\x58\x70\x46\x47','\x67\x38\x6f\x4d\x57\x36\x6d','\x78\x32\x50\x73\x79\x57','\x57\x37\x71\x58\x57\x51\x5a\x63\x51\x47\x39\x38','\x57\x52\x6e\x63\x57\x34\x48\x78\x73\x43\x6b\x33\x57\x35\x50\x42','\x78\x38\x6f\x72\x57\x52\x68\x63\x53\x47','\x75\x38\x6f\x6f\x57\x52\x70\x63\x51\x76\x69\x70\x57\x51\x75','\x57\x50\x54\x74\x57\x51\x68\x64\x4b\x61','\x41\x64\x78\x64\x54\x43\x6b\x75\x57\x35\x30','\x57\x36\x37\x63\x53\x43\x6b\x39\x46\x38\x6f\x6b','\x73\x30\x57\x2b\x6a\x4b\x43','\x57\x52\x4c\x68\x57\x35\x43\x53','\x42\x38\x6f\x44\x41\x38\x6f\x59\x41\x57','\x6f\x33\x31\x32\x65\x68\x4b','\x57\x50\x4a\x64\x50\x43\x6f\x43\x57\x4f\x37\x64\x4a\x38\x6b\x59','\x57\x37\x52\x63\x52\x53\x6f\x62\x57\x52\x4a\x63\x55\x64\x68\x63\x56\x33\x4f','\x57\x52\x6d\x68\x69\x68\x53\x52','\x57\x4f\x70\x64\x53\x53\x6f\x78\x57\x50\x4b','\x70\x68\x54\x52\x64\x67\x38','\x63\x57\x39\x63\x57\x4f\x4c\x45\x57\x52\x68\x63\x55\x6d\x6b\x39','\x57\x52\x4f\x36\x6f\x78\x38\x6b\x71\x38\x6b\x43\x57\x36\x71','\x73\x53\x6b\x2f\x57\x35\x39\x32\x57\x35\x6c\x64\x51\x31\x53','\x76\x77\x66\x70\x45\x76\x38\x48\x57\x51\x6e\x32','\x57\x34\x43\x4d\x57\x36\x66\x45','\x57\x36\x79\x61\x57\x37\x72\x52\x76\x6d\x6b\x58\x57\x36\x58\x45','\x64\x32\x4c\x36\x57\x4f\x74\x64\x49\x65\x6c\x63\x50\x6d\x6b\x5a','\x57\x50\x6c\x63\x4d\x53\x6b\x41\x6c\x47\x69','\x6c\x68\x4c\x30\x68\x32\x4a\x64\x47\x38\x6f\x49\x57\x4f\x43','\x74\x75\x71\x47\x65\x30\x4c\x6c\x57\x51\x6e\x34','\x6f\x4c\x42\x64\x4d\x38\x6f\x4c\x57\x4f\x6e\x74\x62\x6d\x6f\x64','\x57\x36\x33\x63\x55\x43\x6b\x78\x67\x38\x6b\x52','\x41\x58\x4a\x64\x50\x6d\x6b\x6c\x57\x34\x58\x64\x74\x63\x61','\x77\x61\x30\x68\x57\x34\x4f\x45\x57\x52\x33\x64\x4d\x47','\x79\x43\x6f\x65\x57\x36\x4e\x63\x4a\x43\x6b\x4b','\x57\x4f\x7a\x36\x6a\x62\x48\x54\x42\x6d\x6f\x73','\x61\x53\x6b\x53\x6f\x53\x6f\x4e\x6b\x38\x6f\x4e\x57\x36\x2f\x63\x54\x71','\x57\x35\x6d\x2b\x45\x38\x6b\x61\x57\x50\x47\x76\x61\x53\x6b\x53','\x65\x65\x5a\x64\x47\x71','\x57\x37\x57\x39\x57\x52\x74\x63\x51\x61\x4c\x4e\x45\x48\x4f','\x57\x37\x38\x59\x57\x35\x30\x51\x77\x47','\x57\x50\x58\x5a\x57\x50\x6d\x6d\x45\x57','\x57\x35\x4b\x66\x68\x4d\x47\x73','\x57\x4f\x76\x4e\x57\x52\x46\x64\x48\x43\x6b\x34','\x71\x53\x6b\x73\x57\x36\x72\x2f\x57\x37\x71','\x57\x36\x4c\x6e\x68\x53\x6f\x4c\x72\x61','\x46\x5a\x70\x64\x4f\x6d\x6b\x72\x57\x34\x58\x52\x78\x71','\x6e\x38\x6f\x67\x57\x36\x2f\x64\x47\x68\x75','\x67\x53\x6b\x75\x6e\x53\x6f\x79\x6a\x71','\x57\x34\x5a\x64\x4c\x53\x6f\x4e','\x57\x50\x54\x33\x57\x35\x62\x55\x63\x65\x53','\x6d\x78\x54\x38\x57\x4f\x37\x64\x4f\x57','\x41\x57\x68\x64\x54\x53\x6b\x78','\x57\x50\x6a\x4d\x57\x35\x44\x51\x64\x57','\x77\x59\x53\x73\x57\x36\x57\x73\x57\x4f\x64\x64\x4a\x71','\x57\x36\x38\x74\x57\x36\x4c\x55\x73\x61','\x57\x35\x79\x59\x57\x52\x56\x63\x4e\x4a\x30','\x57\x52\x6e\x64\x57\x34\x30\x51\x57\x4f\x75','\x78\x6d\x6f\x73\x57\x35\x34','\x57\x35\x2f\x63\x47\x6d\x6f\x68\x77\x72\x76\x42','\x57\x4f\x58\x33\x57\x36\x65\x70\x57\x4f\x53','\x57\x35\x34\x47\x57\x35\x6e\x65\x6a\x38\x6b\x35\x57\x34\x65','\x63\x5a\x4f\x77\x57\x34\x52\x64\x4e\x61','\x71\x67\x62\x4e\x46\x30\x57\x4c\x57\x51\x76\x71','\x7a\x6d\x6f\x46\x6f\x38\x6f\x52\x45\x78\x74\x64\x51\x33\x47','\x57\x52\x6a\x68\x57\x35\x43\x55\x57\x50\x4e\x63\x55\x47','\x63\x43\x6b\x6a\x71\x64\x75','\x57\x35\x33\x64\x4f\x38\x6f\x42\x57\x37\x72\x56','\x6d\x43\x6b\x51\x6a\x43\x6f\x35\x6f\x61','\x57\x37\x34\x6d\x57\x4f\x68\x63\x51\x5a\x69','\x64\x74\x34\x4f\x57\x34\x65','\x57\x36\x54\x33\x6b\x43\x6f\x4f\x45\x47','\x57\x34\x71\x32\x57\x37\x35\x74\x6e\x53\x6b\x53\x57\x35\x31\x6b','\x79\x43\x6f\x76\x79\x53\x6f\x31','\x57\x37\x79\x61\x61\x68\x38\x5a\x57\x4f\x6d','\x74\x43\x6f\x76\x44\x43\x6f\x4a','\x44\x6d\x6f\x63\x57\x34\x6c\x63\x55\x6d\x6b\x42','\x41\x57\x6d\x62\x57\x34\x71\x37','\x57\x36\x74\x64\x52\x53\x6b\x69\x75\x48\x56\x64\x52\x66\x6e\x6f','\x57\x4f\x7a\x39\x63\x57\x69','\x57\x35\x4f\x59\x57\x36\x69','\x57\x35\x5a\x64\x55\x68\x5a\x64\x4c\x4e\x57','\x61\x71\x6e\x61\x57\x4f\x31\x46','\x57\x37\x33\x63\x49\x6d\x6f\x78\x57\x52\x70\x63\x4a\x47','\x46\x6d\x6f\x7a\x45\x6d\x6f\x4a','\x45\x4c\x4c\x43\x76\x66\x30','\x71\x43\x6f\x62\x57\x34\x56\x63\x4a\x38\x6b\x6f\x57\x34\x64\x64\x49\x6d\x6f\x6c','\x57\x34\x52\x63\x52\x43\x6b\x50\x7a\x53\x6f\x58\x43\x38\x6f\x49','\x57\x34\x68\x63\x51\x38\x6b\x43','\x69\x4a\x58\x49\x57\x51\x4c\x49','\x73\x43\x6b\x4f\x57\x35\x31\x46\x57\x35\x6c\x64\x50\x4c\x69\x63','\x57\x50\x52\x64\x50\x53\x6b\x35\x65\x65\x7a\x4f\x69\x33\x61','\x57\x50\x6a\x75\x57\x4f\x34\x37\x71\x57\x47\x35\x62\x47','\x57\x34\x56\x64\x4a\x6d\x6f\x55\x57\x34\x6e\x6a\x57\x51\x69','\x57\x34\x4a\x64\x56\x78\x78\x64\x4a\x75\x46\x64\x54\x67\x6c\x64\x54\x61','\x57\x52\x6a\x64\x57\x34\x4f\x39\x57\x51\x74\x63\x56\x6d\x6b\x77\x57\x52\x69','\x57\x4f\x56\x64\x54\x6d\x6f\x63\x57\x4f\x42\x64\x4d\x71','\x68\x4e\x5a\x64\x47\x67\x4f\x57','\x57\x34\x6d\x34\x42\x53\x6b\x6c','\x57\x52\x52\x64\x4f\x43\x6b\x38','\x69\x33\x31\x51\x67\x78\x37\x64\x47\x47','\x57\x50\x52\x64\x54\x38\x6f\x68\x57\x4f\x42\x64\x48\x71','\x63\x43\x6b\x66\x76\x4a\x78\x63\x47\x76\x37\x63\x4e\x4c\x6d','\x57\x34\x46\x63\x4c\x38\x6b\x63\x45\x53\x6f\x66','\x66\x43\x6b\x66\x66\x43\x6f\x46\x6f\x71','\x75\x53\x6f\x76\x57\x52\x33\x63\x50\x31\x69\x4a\x57\x51\x2f\x63\x51\x57','\x66\x4a\x4f\x32\x57\x34\x64\x64\x53\x53\x6b\x74\x57\x35\x69\x74','\x71\x43\x6b\x58\x57\x35\x75','\x57\x4f\x44\x47\x57\x35\x54\x56\x67\x76\x68\x63\x47\x62\x47','\x57\x35\x47\x79\x45\x47','\x74\x71\x4b\x67\x57\x37\x43\x45\x57\x52\x56\x64\x4a\x63\x71','\x57\x4f\x74\x63\x50\x6d\x6b\x36\x68\x74\x42\x63\x4c\x47','\x57\x50\x72\x53\x57\x34\x61\x46\x57\x52\x71','\x57\x4f\x62\x38\x62\x61\x76\x6b\x7a\x53\x6f\x61\x6b\x47','\x57\x50\x35\x75\x57\x52\x61\x47\x41\x61','\x57\x37\x56\x63\x55\x6d\x6f\x32\x57\x51\x56\x63\x56\x47','\x57\x37\x78\x64\x4c\x53\x6b\x54\x7a\x63\x57','\x57\x34\x4e\x64\x53\x78\x6c\x64\x49\x32\x33\x64\x53\x47','\x72\x76\x6d\x4e\x65\x4b\x4c\x4d','\x57\x34\x50\x71\x68\x43\x6f\x42\x72\x47','\x57\x52\x6e\x55\x57\x50\x38\x6d\x43\x47','\x6f\x33\x68\x64\x4e\x75\x30\x41','\x57\x4f\x56\x63\x4f\x53\x6b\x34','\x57\x52\x4b\x4e\x6b\x4e\x38','\x57\x52\x66\x43\x57\x34\x4a\x63\x4b\x75\x34','\x45\x72\x78\x64\x51\x38\x6b\x72\x57\x34\x58\x67\x46\x47\x4f','\x57\x35\x4e\x64\x52\x43\x6f\x72\x57\x36\x62\x34','\x71\x53\x6f\x70\x41\x53\x6f\x6a','\x57\x36\x69\x49\x62\x4c\x6d\x42','\x41\x6d\x6f\x72\x44\x43\x6f\x4f\x46\x77\x74\x64\x4a\x33\x75','\x57\x50\x66\x63\x57\x35\x53\x39\x67\x71','\x57\x4f\x72\x46\x63\x63\x76\x45','\x57\x52\x44\x78\x57\x4f\x4b\x54\x78\x71','\x57\x34\x37\x64\x54\x43\x6b\x6e\x44\x49\x6d','\x57\x50\x4e\x64\x49\x43\x6b\x68\x70\x77\x71','\x57\x37\x6d\x62\x66\x47','\x57\x50\x44\x61\x57\x35\x43\x6a\x65\x61','\x57\x52\x4e\x64\x52\x43\x6f\x69\x57\x4f\x38','\x57\x34\x70\x64\x47\x6d\x6f\x6c\x57\x35\x6e\x46','\x57\x34\x4f\x45\x57\x37\x43\x79\x77\x61\x34','\x77\x67\x50\x66\x44\x30\x38\x4f','\x57\x34\x5a\x63\x4a\x43\x6f\x2b\x57\x51\x4a\x63\x51\x71','\x57\x52\x6c\x64\x55\x6d\x6b\x38\x57\x36\x70\x64\x55\x64\x6c\x64\x50\x5a\x4b','\x65\x38\x6b\x49\x6d\x53\x6f\x39','\x77\x71\x75\x42\x57\x37\x79\x73\x57\x52\x53','\x76\x38\x6f\x6c\x41\x53\x6f\x69\x6f\x76\x71','\x69\x4c\x37\x64\x47\x65\x57\x78','\x57\x50\x6c\x64\x4b\x53\x6f\x6f\x6c\x30\x65','\x77\x5a\x6d\x72\x57\x36\x6d\x42\x57\x51\x78\x64\x49\x59\x65','\x57\x4f\x72\x33\x57\x35\x6a\x53\x68\x31\x46\x63\x4c\x58\x4b','\x57\x35\x4f\x6e\x6a\x66\x57\x52','\x57\x50\x68\x64\x54\x6d\x6f\x66\x65\x76\x43\x78\x57\x37\x69\x36','\x57\x51\x72\x4d\x57\x37\x56\x63\x55\x31\x5a\x63\x54\x43\x6b\x34\x6c\x47','\x70\x4b\x74\x64\x4f\x47','\x57\x52\x4f\x64\x61\x77\x30\x50\x57\x4f\x2f\x64\x4d\x75\x47','\x57\x36\x30\x4e\x57\x51\x43','\x57\x51\x4b\x35\x6b\x32\x69\x62\x72\x38\x6b\x36\x57\x34\x69','\x75\x6d\x6f\x46\x57\x34\x69','\x57\x34\x74\x64\x49\x53\x6f\x53\x57\x36\x72\x66\x57\x51\x52\x64\x4f\x57','\x78\x78\x58\x54\x45\x76\x75\x50\x57\x51\x6e\x32','\x57\x35\x34\x54\x67\x4b\x30\x78','\x57\x35\x70\x64\x4e\x65\x78\x64\x4c\x77\x4f','\x57\x37\x74\x63\x56\x47\x35\x4d\x57\x36\x79','\x57\x34\x57\x31\x57\x36\x38\x74\x77\x61','\x78\x6d\x6b\x49\x57\x34\x48\x76\x57\x35\x42\x64\x55\x4b\x65\x74','\x57\x37\x70\x64\x54\x43\x6b\x67\x77\x47\x37\x64\x4a\x75\x38','\x42\x63\x37\x64\x4c\x38\x6b\x6b\x57\x37\x4b','\x70\x4e\x68\x64\x4a\x4e\x4f\x47','\x57\x36\x38\x6c\x68\x78\x61\x55\x57\x4f\x33\x63\x4c\x47','\x66\x53\x6b\x66\x77\x59\x6c\x63\x4a\x65\x70\x63\x4d\x76\x53','\x57\x50\x35\x43\x57\x4f\x34','\x57\x4f\x31\x50\x57\x35\x69\x51','\x57\x35\x37\x64\x4c\x43\x6f\x55\x57\x35\x35\x79','\x62\x6d\x6f\x59\x62\x73\x42\x64\x49\x6d\x6b\x32\x6f\x5a\x53','\x66\x65\x64\x64\x56\x6d\x6f\x55','\x74\x66\x47\x36\x68\x65\x4c\x33','\x57\x52\x6e\x77\x57\x35\x46\x63\x48\x76\x57','\x57\x35\x6d\x37\x44\x43\x6b\x6e\x57\x50\x57','\x57\x37\x4f\x4c\x57\x51\x70\x63\x55\x71\x30','\x57\x50\x6e\x33\x57\x34\x71\x37','\x57\x36\x47\x48\x57\x52\x68\x63\x50\x71','\x72\x32\x50\x68\x44\x76\x47\x30\x57\x52\x48\x48','\x57\x51\x4c\x4e\x57\x35\x70\x63\x52\x31\x52\x63\x49\x38\x6b\x4f','\x67\x53\x6f\x59\x64\x61','\x46\x73\x64\x64\x54\x6d\x6b\x42\x57\x35\x4f','\x57\x37\x4f\x49\x66\x75\x38\x67\x57\x37\x56\x64\x48\x6d\x6b\x32','\x57\x4f\x6e\x57\x57\x50\x53\x2b\x42\x47','\x57\x50\x4c\x71\x57\x51\x4e\x64\x4b\x6d\x6b\x46\x69\x32\x75\x30','\x57\x52\x42\x63\x4f\x53\x6b\x47\x6c\x58\x38','\x6c\x4d\x54\x48','\x57\x37\x56\x63\x4d\x38\x6b\x41\x6a\x53\x6b\x48','\x57\x37\x34\x37\x57\x52\x64\x63\x49\x62\x50\x33\x45\x57','\x69\x4d\x33\x64\x4a\x33\x75\x61','\x45\x48\x52\x64\x53\x43\x6b\x77\x57\x37\x7a\x73\x77\x62\x53','\x57\x37\x61\x47\x77\x38\x6b\x6b\x57\x52\x79','\x70\x38\x6b\x2b\x70\x43\x6f\x55\x69\x6d\x6f\x49\x57\x34\x74\x63\x4f\x57','\x73\x71\x37\x63\x4b\x63\x6d\x65\x57\x37\x44\x53\x57\x4f\x46\x63\x53\x38\x6f\x77','\x57\x51\x46\x64\x54\x43\x6b\x2f\x57\x36\x43','\x76\x57\x30\x65','\x69\x33\x31\x4c\x64\x67\x74\x64\x47\x38\x6f\x47\x57\x4f\x4b','\x57\x4f\x48\x4e\x57\x37\x74\x63\x4d\x65\x57','\x57\x37\x53\x4d\x64\x61','\x57\x37\x38\x58\x57\x51\x5a\x63\x51\x61','\x61\x75\x33\x64\x47\x78\x30\x4d\x57\x34\x58\x42\x57\x50\x75','\x78\x38\x6b\x2f\x57\x34\x62\x77','\x57\x50\x4e\x64\x52\x43\x6f\x69\x57\x4f\x38','\x72\x31\x6d\x2b\x76\x76\x50\x52\x57\x51\x6e\x38','\x57\x37\x57\x79\x57\x50\x6c\x63\x49\x57\x69','\x57\x34\x4e\x64\x56\x77\x4e\x64\x4e\x61','\x57\x35\x4f\x6c\x57\x37\x57\x72\x42\x71','\x57\x4f\x48\x5a\x57\x36\x4a\x63\x53\x31\x65','\x61\x59\x66\x2f\x79\x53\x6b\x41\x57\x34\x46\x63\x47\x6d\x6b\x5a','\x57\x35\x65\x49\x67\x4c\x47','\x57\x34\x74\x63\x51\x38\x6f\x78\x57\x50\x52\x64\x49\x43\x6b\x34\x57\x52\x42\x63\x4b\x61','\x71\x6d\x6f\x72\x57\x36\x52\x63\x56\x53\x6b\x6e','\x57\x37\x65\x49\x67\x4c\x47','\x57\x36\x53\x47\x57\x52\x64\x63\x50\x62\x76\x5a','\x57\x52\x66\x37\x57\x4f\x33\x64\x4f\x6d\x6b\x69','\x6d\x6d\x6f\x2b\x64\x63\x30','\x57\x37\x68\x63\x47\x6d\x6f\x72\x77\x57\x71','\x57\x50\x6a\x66\x57\x51\x42\x64\x47\x43\x6b\x66','\x57\x34\x52\x63\x54\x53\x6f\x2b\x57\x51\x4e\x63\x4e\x61','\x57\x34\x70\x64\x56\x66\x46\x64\x51\x32\x43','\x57\x36\x75\x4b\x67\x30\x38\x6e','\x71\x32\x35\x79','\x57\x34\x71\x32\x57\x37\x35\x74\x6e\x53\x6b\x53\x57\x35\x66\x62','\x57\x34\x68\x64\x47\x6d\x6f\x53\x57\x35\x62\x79\x57\x52\x47','\x75\x6d\x6f\x39\x57\x35\x56\x63\x4e\x53\x6b\x34','\x6a\x53\x6f\x33\x66\x63\x78\x64\x55\x47','\x64\x6d\x6b\x4f\x6f\x53\x6f\x55\x6f\x53\x6f\x52','\x65\x58\x54\x36\x46\x6d\x6b\x46','\x76\x38\x6f\x4a\x57\x36\x4a\x63\x53\x38\x6b\x43','\x67\x66\x56\x64\x4e\x61','\x43\x64\x4e\x64\x50\x53\x6b\x71\x57\x36\x71','\x57\x52\x68\x64\x4e\x6d\x6f\x72\x63\x31\x75','\x57\x37\x74\x63\x51\x53\x6f\x74\x57\x51\x2f\x63\x48\x74\x56\x63\x56\x4d\x38','\x57\x4f\x72\x39\x57\x34\x58\x39','\x57\x34\x70\x64\x49\x53\x6f\x53\x57\x35\x69','\x74\x4c\x6d\x4e\x65\x65\x34','\x57\x37\x30\x43\x57\x50\x68\x63\x54\x64\x38','\x57\x36\x75\x78\x57\x37\x6e\x4f\x43\x6d\x6b\x78\x57\x36\x31\x67','\x57\x50\x62\x35\x62\x58\x75','\x63\x47\x6e\x61\x57\x4f\x39\x79\x57\x52\x61','\x57\x50\x37\x63\x53\x67\x7a\x64\x76\x47','\x65\x48\x39\x50\x57\x4f\x4c\x43\x57\x51\x53','\x72\x43\x6b\x4a\x57\x36\x58\x62\x57\x34\x68\x64\x51\x75\x4f','\x78\x43\x6f\x77\x57\x34\x64\x63\x4a\x53\x6b\x46\x57\x35\x4f','\x57\x50\x38\x4c\x63\x30\x34\x34','\x72\x4d\x35\x66\x44\x66\x71\x54\x57\x4f\x48\x4b','\x57\x35\x4e\x64\x54\x77\x70\x64\x49\x4e\x56\x64\x54\x4e\x70\x64\x4f\x47','\x77\x47\x71\x30\x57\x36\x61\x47','\x57\x4f\x76\x75\x57\x50\x4f\x48\x73\x57\x47\x4d\x70\x61','\x57\x50\x52\x64\x4f\x6d\x6b\x5a\x67\x57','\x57\x51\x48\x2f\x57\x37\x74\x63\x55\x32\x4b','\x57\x50\x58\x68\x57\x34\x65\x53\x57\x4f\x47','\x72\x61\x46\x64\x52\x6d\x6b\x79\x57\x34\x44\x64\x76\x72\x57','\x77\x4c\x4f\x47\x66\x4c\x47','\x57\x35\x71\x41\x57\x37\x43\x42\x71\x57\x53','\x79\x68\x47\x7a\x6f\x78\x58\x6e\x57\x4f\x48\x67','\x57\x34\x71\x2f\x57\x37\x54\x76\x6d\x61','\x57\x34\x37\x64\x55\x31\x2f\x64\x4c\x4e\x4e\x64\x56\x32\x74\x64\x4b\x47','\x57\x51\x39\x52\x57\x36\x61\x32\x68\x61','\x57\x50\x39\x30\x66\x48\x6a\x39','\x57\x34\x6d\x44\x78\x53\x6b\x33\x57\x50\x69','\x67\x43\x6f\x7a\x57\x37\x5a\x64\x4c\x4e\x79','\x57\x50\x52\x64\x55\x53\x6b\x5a\x65\x30\x7a\x32\x6b\x71','\x57\x51\x74\x64\x54\x43\x6b\x47\x57\x36\x4f','\x57\x4f\x4a\x64\x56\x6d\x6b\x37','\x57\x35\x33\x63\x49\x53\x6f\x46\x77\x57\x31\x68\x71\x4d\x4f','\x57\x50\x42\x64\x55\x6d\x6f\x4d\x64\x65\x75','\x57\x4f\x66\x34\x57\x34\x56\x63\x4e\x65\x75','\x77\x61\x4b\x7a\x57\x36\x43','\x57\x4f\x58\x65\x57\x51\x42\x64\x4d\x6d\x6b\x44\x6a\x78\x75','\x61\x4d\x6e\x76\x57\x4f\x4e\x64\x4a\x78\x75','\x57\x34\x6c\x63\x4f\x43\x6f\x65\x74\x63\x53','\x57\x37\x61\x6d\x57\x51\x56\x63\x56\x64\x30','\x6e\x6d\x6b\x49\x69\x53\x6f\x70\x61\x47','\x57\x34\x4b\x4b\x78\x43\x6b\x43\x57\x4f\x53\x79\x63\x61','\x57\x37\x75\x31\x57\x52\x42\x63\x52\x48\x6d','\x57\x51\x70\x64\x52\x43\x6b\x68\x57\x36\x56\x64\x4c\x47','\x57\x52\x5a\x64\x4a\x43\x6b\x56\x57\x36\x64\x64\x4c\x61','\x63\x73\x76\x33\x57\x51\x7a\x79','\x57\x50\x37\x63\x55\x77\x6e\x66\x75\x6d\x6b\x34\x57\x4f\x42\x63\x53\x57','\x79\x38\x6b\x74\x57\x37\x4c\x6c\x57\x34\x4b','\x79\x77\x35\x61\x43\x76\x47','\x61\x58\x35\x6c\x57\x4f\x54\x7a\x57\x51\x5a\x63\x50\x43\x6b\x52','\x57\x50\x5a\x63\x4c\x43\x6f\x75\x57\x37\x35\x37\x57\x51\x42\x64\x54\x57\x38','\x6a\x4d\x4c\x76\x57\x4f\x38','\x74\x53\x6b\x38\x57\x34\x48\x78','\x68\x43\x6f\x57\x57\x36\x4a\x64\x54\x71','\x69\x6d\x6f\x65\x57\x36\x68\x64\x4b\x4d\x38','\x61\x53\x6b\x6b\x57\x50\x2f\x64\x4d\x43\x6f\x79\x57\x36\x70\x64\x4f\x38\x6f\x4d\x63\x53\x6f\x78\x6f\x61','\x57\x37\x58\x69\x66\x53\x6f\x4b\x76\x31\x68\x64\x47\x4b\x30','\x57\x50\x56\x63\x4b\x53\x6b\x59\x61\x63\x68\x63\x47\x43\x6b\x51\x61\x61','\x65\x4d\x6e\x77\x57\x4f\x38','\x76\x43\x6f\x69\x57\x52\x52\x63\x4f\x4b\x43\x45','\x57\x35\x34\x4f\x70\x78\x43\x64','\x57\x52\x48\x2b\x57\x52\x56\x64\x4f\x6d\x6b\x53','\x57\x37\x53\x6a\x67\x4e\x30\x31\x57\x4f\x78\x63\x47\x58\x57','\x77\x38\x6f\x67\x57\x51\x64\x63\x4f\x4b\x34','\x57\x51\x56\x64\x53\x43\x6f\x42\x57\x4f\x68\x64\x54\x71','\x57\x34\x4b\x4c\x57\x35\x6d\x77\x46\x57','\x63\x43\x6f\x38\x57\x37\x5a\x64\x54\x71','\x41\x61\x78\x64\x54\x38\x6b\x6c','\x57\x51\x4b\x33\x6b\x68\x47\x41\x74\x53\x6b\x6d','\x71\x6d\x6b\x51\x75\x78\x64\x63\x4d\x53\x6f\x49\x45\x64\x66\x6d\x57\x35\x71\x2b\x44\x74\x65','\x76\x53\x6f\x77\x57\x34\x64\x63\x4a\x61','\x63\x43\x6b\x37\x6d\x43\x6f\x36','\x66\x6d\x6f\x56\x57\x37\x6c\x64\x4b\x77\x34','\x62\x58\x4b\x4c\x65\x66\x58\x38\x57\x51\x6e\x57','\x46\x75\x66\x37\x78\x68\x4f\x64\x57\x50\x6a\x6d','\x7a\x6d\x6f\x31\x57\x34\x52\x63\x4a\x53\x6b\x64','\x57\x36\x5a\x63\x54\x53\x6f\x63\x57\x52\x47','\x57\x34\x74\x63\x4a\x57\x6e\x78\x57\x37\x43','\x57\x34\x70\x63\x4b\x63\x6e\x72\x57\x37\x74\x63\x4f\x6d\x6b\x76\x43\x71','\x64\x62\x31\x2f\x77\x38\x6b\x4e','\x57\x50\x62\x74\x57\x51\x68\x64\x4b\x53\x6b\x69\x70\x57','\x71\x43\x6f\x79\x42\x43\x6f\x6b\x69\x4e\x72\x2b\x57\x4f\x38','\x7a\x43\x6f\x43\x57\x35\x4a\x63\x52\x38\x6b\x4e','\x78\x4e\x44\x43\x7a\x68\x4f','\x57\x52\x4c\x30\x57\x34\x44\x41\x6f\x47','\x57\x34\x69\x6b\x57\x34\x72\x39\x78\x5a\x34\x61\x6c\x53\x6f\x67\x57\x4f\x71','\x74\x4c\x6d\x4e\x65\x67\x31\x48\x57\x51\x6a\x31','\x75\x57\x4b\x7a\x57\x36\x75\x64\x57\x51\x65','\x74\x6d\x6f\x7a\x72\x43\x6f\x45\x6a\x66\x48\x4f','\x57\x36\x53\x58\x57\x51\x37\x63\x51\x62\x48\x47\x76\x61\x53','\x64\x58\x76\x4f\x57\x4f\x66\x63\x57\x52\x68\x63\x55\x6d\x6b\x48','\x57\x35\x57\x4f\x66\x77\x57\x41','\x57\x52\x54\x6d\x57\x34\x4f\x47\x57\x50\x4e\x63\x51\x57','\x71\x38\x6f\x64\x41\x53\x6f\x69\x68\x31\x44\x31\x57\x4f\x34','\x57\x37\x6d\x77\x6c\x32\x4f\x31\x57\x4f\x52\x63\x4d\x57','\x57\x4f\x2f\x64\x56\x43\x6f\x79\x70\x78\x71','\x57\x35\x70\x63\x48\x5a\x39\x74\x57\x36\x4f','\x64\x6d\x6f\x58\x57\x37\x46\x64\x4e\x32\x71','\x66\x77\x6e\x33\x57\x4f\x78\x64\x4d\x32\x74\x63\x54\x38\x6b\x61','\x73\x63\x4f\x77\x57\x34\x71\x30','\x66\x4c\x52\x64\x49\x4e\x34','\x57\x36\x4b\x6e\x61\x77\x30\x52\x57\x4f\x38','\x57\x36\x47\x65\x61\x68\x57\x4f\x57\x4f\x42\x63\x56\x71\x57','\x57\x35\x71\x41\x42\x43\x6b\x67\x57\x50\x53','\x63\x74\x4f\x30\x57\x34\x6c\x64\x50\x43\x6b\x70','\x65\x47\x6e\x61\x57\x50\x54\x66\x57\x51\x5a\x63\x54\x43\x6f\x2b','\x62\x43\x6f\x68\x7a\x43\x6f\x76\x44\x4c\x54\x30\x57\x34\x53','\x57\x36\x57\x78\x57\x37\x50\x4f\x42\x47','\x57\x34\x64\x63\x53\x43\x6b\x67\x44\x38\x6f\x49\x7a\x47','\x57\x52\x31\x6e\x57\x35\x43\x51\x57\x4f\x5a\x63\x50\x47','\x46\x47\x64\x64\x52\x6d\x6b\x43\x57\x34\x48\x6f\x76\x72\x79','\x77\x48\x42\x63\x4a\x5a\x38','\x57\x37\x65\x71\x57\x36\x53\x56\x71\x71','\x6a\x38\x6b\x4b\x70\x43\x6f\x38\x6e\x61','\x57\x36\x74\x63\x4b\x6d\x6b\x6d\x61\x38\x6b\x62','\x57\x50\x39\x38\x57\x52\x79\x44\x7a\x71','\x57\x4f\x5a\x64\x54\x43\x6f\x35\x65\x4b\x65\x72\x57\x36\x75','\x76\x6d\x6b\x39\x6f\x38\x6f\x6f\x6f\x43\x6f\x41\x57\x36\x43','\x57\x35\x61\x45\x57\x36\x4f','\x57\x37\x74\x64\x54\x6d\x6b\x61\x71\x61','\x7a\x53\x6f\x76\x44\x43\x6f\x48\x42\x67\x47','\x57\x50\x72\x4e\x57\x50\x33\x64\x4b\x38\x6b\x51','\x57\x35\x75\x41\x57\x37\x71\x74\x72\x72\x52\x63\x49\x48\x79','\x57\x4f\x78\x64\x4f\x53\x6b\x76\x6e\x67\x6d','\x68\x66\x42\x64\x49\x47','\x57\x50\x72\x38\x64\x47\x76\x57\x45\x57','\x62\x53\x6b\x4b\x6f\x53\x6f\x54\x62\x38\x6f\x54\x57\x34\x5a\x63\x54\x71','\x57\x36\x47\x61\x63\x4d\x30\x4b\x57\x4f\x34','\x6c\x78\x72\x48\x67\x47','\x6e\x43\x6b\x55\x75\x64\x68\x63\x47\x71','\x57\x50\x66\x7a\x57\x51\x56\x64\x4b\x61','\x57\x52\x66\x6f\x57\x4f\x78\x64\x4b\x6d\x6b\x74','\x6b\x38\x6b\x6d\x78\x74\x52\x63\x52\x61','\x57\x37\x42\x63\x4b\x6d\x6f\x46\x57\x52\x6c\x63\x4a\x5a\x43','\x57\x52\x2f\x64\x51\x38\x6b\x51\x57\x36\x4e\x64\x4d\x61','\x42\x6d\x6f\x46\x41\x43\x6f\x64\x45\x77\x70\x64\x4f\x61','\x57\x4f\x42\x64\x53\x6d\x6f\x42\x57\x51\x33\x64\x48\x43\x6b\x58\x57\x52\x42\x63\x56\x71','\x57\x51\x72\x33\x57\x36\x72\x6b\x6b\x71','\x65\x74\x61\x4f','\x57\x51\x78\x64\x55\x53\x6b\x71\x64\x78\x71','\x46\x6d\x6f\x4c\x57\x50\x6c\x63\x54\x4c\x75','\x57\x37\x5a\x63\x56\x43\x6f\x42\x57\x52\x56\x63\x4e\x58\x46\x63\x56\x4d\x4b','\x78\x38\x6b\x4c\x57\x34\x62\x45\x57\x35\x6c\x64\x55\x4b\x4f','\x63\x38\x6b\x66\x79\x43\x6f\x63\x69\x68\x39\x34\x57\x4f\x75','\x63\x32\x6e\x73\x57\x4f\x71','\x57\x36\x5a\x63\x4d\x43\x6f\x62\x57\x52\x46\x63\x52\x71','\x57\x52\x54\x65\x57\x35\x38\x53\x57\x4f\x37\x63\x50\x53\x6b\x42\x57\x51\x65','\x57\x36\x6c\x63\x4b\x6d\x6b\x75','\x57\x35\x37\x64\x47\x6d\x6f\x55\x57\x35\x6a\x70\x57\x51\x74\x64\x4f\x58\x30','\x62\x43\x6f\x2b\x65\x5a\x33\x64\x47\x6d\x6b\x4f\x6c\x71\x61','\x57\x37\x38\x6c\x68\x78\x65\x5a\x57\x50\x69','\x45\x43\x6f\x7a\x79\x43\x6f\x4a','\x75\x38\x6f\x6a\x57\x51\x46\x63\x51\x66\x69\x74','\x57\x37\x70\x64\x54\x43\x6b\x42\x75\x71','\x57\x35\x64\x63\x48\x6d\x6f\x7a\x78\x57\x6e\x41\x76\x31\x61','\x75\x4d\x6d\x6a\x70\x38\x6f\x68\x57\x50\x42\x63\x50\x38\x6b\x66\x69\x74\x68\x63\x49\x47\x38','\x74\x31\x38\x4c\x61\x76\x48\x38','\x77\x38\x6b\x35\x57\x34\x66\x46','\x57\x4f\x76\x79\x57\x50\x65\x51\x73\x72\x61\x57\x62\x57','\x57\x4f\x39\x67\x57\x51\x70\x64\x4e\x6d\x6b\x69','\x69\x66\x70\x64\x47\x33\x65\x6e','\x78\x6d\x6f\x73\x57\x35\x52\x63\x49\x53\x6b\x64','\x45\x6d\x6f\x66\x46\x47','\x45\x62\x56\x64\x51\x38\x6b\x43\x57\x34\x48\x77','\x57\x4f\x68\x63\x55\x77\x66\x68\x72\x38\x6b\x4b','\x57\x50\x68\x63\x4f\x53\x6b\x37\x64\x61','\x69\x38\x6f\x52\x6c\x57\x6c\x64\x53\x71','\x45\x4d\x71\x49\x67\x33\x34','\x57\x34\x74\x63\x4a\x43\x6f\x79\x46\x72\x69','\x57\x4f\x76\x72\x57\x50\x71\x53\x74\x57','\x57\x36\x79\x2f\x57\x37\x76\x43\x67\x57','\x6c\x30\x68\x63\x54\x53\x6f\x6a\x57\x50\x30\x76\x64\x48\x44\x6c\x57\x51\x4e\x63\x4f\x67\x37\x63\x48\x61','\x57\x52\x30\x2b\x70\x77\x75','\x57\x37\x4b\x57\x57\x51\x79','\x57\x50\x52\x63\x54\x68\x35\x4a\x71\x61','\x71\x67\x62\x61\x44\x76\x75\x50\x57\x51\x31\x32','\x57\x34\x70\x64\x51\x43\x6b\x51\x76\x71\x4b','\x6b\x77\x50\x52\x65\x57','\x61\x6d\x6f\x30\x66\x59\x74\x64\x4a\x71','\x78\x78\x58\x51\x79\x4b\x4b\x48\x57\x51\x34','\x57\x34\x38\x46\x63\x77\x61\x5a','\x67\x49\x44\x6b\x79\x57','\x57\x35\x4e\x63\x54\x43\x6b\x4b\x70\x43\x6b\x74','\x75\x53\x6f\x73\x57\x35\x37\x63\x4d\x53\x6b\x45\x57\x35\x37\x64\x4e\x38\x6f\x54','\x44\x38\x6f\x4b\x41\x6d\x6f\x38\x69\x71','\x57\x34\x4b\x6d\x66\x68\x30','\x73\x38\x6f\x70\x74\x43\x6f\x69\x6a\x71','\x75\x43\x6f\x74\x44\x6d\x6f\x6a','\x66\x49\x53\x37\x57\x35\x46\x64\x50\x43\x6b\x75\x57\x36\x57\x76','\x6d\x38\x6b\x75\x73\x64\x46\x63\x47\x71','\x77\x4c\x75\x4d\x62\x31\x47','\x66\x38\x6b\x66\x76\x5a\x2f\x63\x4b\x66\x70\x63\x4f\x4b\x38'];_0x47cc=function(){return _0x35267a;};return _0x47cc();}function _0x330cfd(_0x3605f2,_0x3f619b,_0x20f25e){const _0x454da1=_0x446d32,_0x379c7d={'\x73\x75\x52\x6c\x52':function(_0x279ec2,_0x442759){return _0x279ec2===_0x442759;},'\x66\x50\x46\x5a\x77':function(_0x9ee2ea,_0x3bb0bb){return _0x9ee2ea<_0x3bb0bb;},'\x52\x69\x6a\x71\x6c':function(_0x247f45,_0x16a1fa,_0x3cd64c){return _0x247f45(_0x16a1fa,_0x3cd64c);},'\x6d\x42\x4f\x49\x70':function(_0xe77c78,_0x502add){return _0xe77c78<_0x502add;},'\x76\x47\x56\x6f\x5a':function(_0x5eb8d2,_0x27e5ca){return _0x5eb8d2(_0x27e5ca);},'\x4b\x56\x44\x4c\x53':function(_0x2799ac,_0x3c75f7){return _0x2799ac<_0x3c75f7;},'\x46\x65\x75\x73\x42':function(_0x53edcd,_0xfec9c7){return _0x53edcd>=_0xfec9c7;}},_0x4d339e=_0x20f25e instanceof Set?new Set(_0x20f25e):new Set();if(!Array['\x69\x73\x41\x72\x72\x61\x79'](_0x3605f2)||_0x379c7d['\x73\x75\x52\x6c\x52'](_0x3605f2[_0x454da1(0x23f,'\x64\x64\x5a\x69')],-0xe52+0xf4a+-0x2*0x7c))return _0x4d339e;const _0x55d764={};for(let _0x3cf61d=-0x3b*0xa9+-0x17*-0x1af+0x1d*0x2;_0x379c7d[_0x454da1(0x1c2,'\x55\x4c\x72\x26')](_0x3cf61d,_0x3605f2[_0x454da1(0x37d,'\x6a\x24\x6d\x29')]);_0x3cf61d++){const _0x32e5a9=_0x3605f2[_0x3cf61d];if(!_0x32e5a9||!_0x32e5a9[_0x454da1(0x15a,'\x4c\x5d\x40\x66')])continue;const _0x4596a8=_0x379c7d[_0x454da1(0x32e,'\x57\x72\x62\x40')](_0x2ff7e0,_0x3f619b,_0x32e5a9[_0x454da1(0x29c,'\x6c\x68\x4d\x32')]||[]);if(_0x379c7d['\x6d\x42\x4f\x49\x70'](_0x4596a8,_0x12d71a))continue;const _0x4d1197=_0x379c7d[_0x454da1(0x2a2,'\x63\x57\x55\x39')](String,_0x32e5a9[_0x454da1(0x22b,'\x4a\x65\x43\x54')]);_0x55d764[_0x4d1197]=(_0x55d764[_0x4d1197]||-0x12ce+0x21e4+0x78b*-0x2)+(-0x19a1+0x3*-0xbb9+0xc29*0x5);}const _0x318270=Object[_0x454da1(0x3a8,'\x78\x5d\x33\x71')](_0x55d764);for(let _0x47d7c4=0x3d*-0x1d+-0x4*-0x6e8+-0x14b7;_0x379c7d[_0x454da1(0x309,'\x74\x50\x25\x41')](_0x47d7c4,_0x318270[_0x454da1(0x2e5,'\x26\x23\x54\x38')]);_0x47d7c4++){_0x379c7d[_0x454da1(0x3a2,'\x23\x57\x50\x78')](_0x55d764[_0x318270[_0x47d7c4]],_0x5b0558)&&_0x4d339e[_0x454da1(0x8d,'\x6c\x68\x4d\x32')](_0x318270[_0x47d7c4]);}return _0x4d339e;}function _0x46d726({genes:_0x1017e5,capsules:_0x69d234,signals:_0x53ad05,memoryAdvice:_0x5bc46c,driftEnabled:_0x3b0026,failedCapsules:_0x22a47c,capabilityGaps:_0x3794a8,noveltyScore:_0x37bc32,plateauOverride:_0xfb5cd}){const _0x3d5bf6=_0x446d32,_0x4d1d8b={'\x48\x6b\x43\x57\x4c':function(_0x3a336c,_0x59b8fe){return _0x3a336c(_0x59b8fe);},'\x64\x49\x6a\x6e\x46':function(_0x532145,_0x337653){return _0x532145(_0x337653);},'\x6a\x78\x77\x74\x41':function(_0x53e324,_0x349fbc,_0x4cee08,_0x38dd6b){return _0x53e324(_0x349fbc,_0x4cee08,_0x38dd6b);},'\x44\x5a\x4c\x41\x4e':function(_0x5be07b,_0x541bc5){return _0x5be07b(_0x541bc5);},'\x51\x50\x76\x78\x74':function(_0x5d7a72,_0x4f6f0c){return _0x5d7a72||_0x4f6f0c;},'\x4c\x51\x52\x74\x6c':function(_0x513718,_0x35a2f7,_0x4ce3cd){return _0x513718(_0x35a2f7,_0x4ce3cd);},'\x70\x6a\x44\x53\x72':function(_0x4664ca,_0x467305){return _0x4664ca&&_0x467305;},'\x4c\x75\x4e\x73\x53':function(_0x3019df,_0x177db3){return _0x3019df===_0x177db3;},'\x58\x75\x66\x62\x64':_0x3d5bf6(0xba,'\x51\x44\x59\x56')+'\x6e','\x66\x41\x67\x67\x4e':_0x3d5bf6(0x34b,'\x67\x58\x2a\x24')+'\x6e\x6b\x65\x64','\x74\x48\x53\x57\x54':function(_0x5471a5,_0x3a51fe){return _0x5471a5(_0x3a51fe);}},_0x5643ec=_0x5bc46c&&_0x5bc46c[_0x3d5bf6(0x330,'\x4a\x65\x43\x54')+_0x3d5bf6(0x281,'\x4c\x5d\x40\x66')]instanceof Set?_0x5bc46c[_0x3d5bf6(0xff,'\x57\x72\x62\x40')+_0x3d5bf6(0x165,'\x67\x24\x5b\x55')]:new Set(),_0x266e64=_0x5bc46c&&_0x5bc46c[_0x3d5bf6(0x147,'\x41\x33\x66\x51')+_0x3d5bf6(0x109,'\x25\x5b\x77\x66')]?_0x5bc46c[_0x3d5bf6(0x1a6,'\x4a\x65\x43\x54')+_0x3d5bf6(0x111,'\x6c\x68\x4d\x32')]:null,_0x954b7f=_0x5bc46c&&Number[_0x3d5bf6(0x1ae,'\x75\x21\x4e\x4b')](_0x4d1d8b[_0x3d5bf6(0xcf,'\x68\x46\x38\x30')](Number,_0x5bc46c[_0x3d5bf6(0x3cb,'\x6e\x32\x53\x39')+_0x3d5bf6(0xe8,'\x64\x64\x5a\x69')]))?_0x4d1d8b['\x64\x49\x6a\x6e\x46'](Number,_0x5bc46c['\x74\x6f\x74\x61\x6c\x41\x74\x74'+_0x3d5bf6(0x36c,'\x57\x72\x62\x40')]):0xf1f*-0x2+-0xd*0xb8+0x2796,_0x2cb4ca=_0x330cfd(Array[_0x3d5bf6(0x36d,'\x51\x44\x59\x56')](_0x22a47c)?_0x22a47c:[],_0x53ad05,_0x5643ec),{selected:_0x10ca55,alternatives:_0x16760c,driftIntensity:_0x2bb7b5,driftMode:_0x1649e4}=_0x4d1d8b[_0x3d5bf6(0x21a,'\x70\x4c\x46\x4e')](_0x5a1c8e,_0x1017e5,_0x53ad05,{'\x62\x61\x6e\x6e\x65\x64\x47\x65\x6e\x65\x49\x64\x73':_0x2cb4ca,'\x70\x72\x65\x66\x65\x72\x72\x65\x64\x47\x65\x6e\x65\x49\x64':_0x266e64,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':!!_0x3b0026,'\x6d\x65\x6d\x6f\x72\x79\x45\x76\x69\x64\x65\x6e\x63\x65':_0x954b7f,'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':Array[_0x3d5bf6(0x118,'\x41\x78\x57\x63')](_0x3794a8)?_0x3794a8:[],'\x6e\x6f\x76\x65\x6c\x74\x79\x53\x63\x6f\x72\x65':Number[_0x3d5bf6(0x221,'\x72\x6e\x53\x70')](_0x4d1d8b[_0x3d5bf6(0x134,'\x72\x6e\x53\x70')](Number,_0x37bc32))?_0x4d1d8b[_0x3d5bf6(0x142,'\x64\x78\x25\x39')](Number,_0x37bc32):null,'\x70\x6c\x61\x74\x65\x61\x75\x4f\x76\x65\x72\x72\x69\x64\x65':_0x4d1d8b['\x51\x50\x76\x78\x74'](_0xfb5cd,null)}),_0x2469ba=_0x4d1d8b[_0x3d5bf6(0x2e1,'\x36\x57\x50\x38')](_0x433752,_0x69d234,_0x53ad05),_0xf9b228=!!(_0x4d1d8b['\x70\x6a\x44\x53\x72'](_0x266e64,_0x10ca55)&&_0x4d1d8b[_0x3d5bf6(0x252,'\x34\x5d\x64\x49')](_0x10ca55['\x69\x64'],_0x266e64)),_0xcc08c0=_0x4d1d8b['\x4c\x75\x4e\x73\x53'](_0x1649e4,_0x4d1d8b[_0x3d5bf6(0x3bf,'\x6f\x52\x31\x71')])?_0x4d1d8b[_0x3d5bf6(0x367,'\x66\x6f\x42\x30')]:_0x1649e4,_0x3a0fef={};_0x3a0fef[_0x3d5bf6(0xe7,'\x6f\x52\x31\x71')]=_0x10ca55,_0x3a0fef[_0x3d5bf6(0x20b,'\x66\x78\x72\x39')]=_0x2469ba,_0x3a0fef[_0x3d5bf6(0x180,'\x68\x46\x38\x30')]=_0x53ad05,_0x3a0fef[_0x3d5bf6(0x38f,'\x36\x57\x50\x38')+'\x69\x76\x65\x73']=_0x16760c,_0x3a0fef[_0x3d5bf6(0x324,'\x41\x66\x46\x76')+_0x3d5bf6(0x2d6,'\x49\x57\x72\x5e')]=_0x5bc46c,_0x3a0fef[_0x3d5bf6(0x387,'\x28\x2a\x68\x39')+_0x3d5bf6(0x3ad,'\x70\x4c\x46\x4e')]=_0x3b0026,_0x3a0fef[_0x3d5bf6(0xf4,'\x26\x23\x54\x38')+_0x3d5bf6(0x2f8,'\x67\x58\x2a\x24')]=_0x2bb7b5,_0x3a0fef[_0x3d5bf6(0x141,'\x63\x57\x55\x39')+'\x6e\x50\x61\x74\x68']=_0xcc08c0,_0x3a0fef[_0x3d5bf6(0x286,'\x63\x57\x55\x39')+'\x65\x64']=_0xf9b228;const _0x2f9e70=_0x4d1d8b[_0x3d5bf6(0x159,'\x67\x24\x5b\x55')](_0x3ff10d,_0x3a0fef),_0x32112d={};return _0x32112d[_0x3d5bf6(0x123,'\x41\x78\x57\x63')+_0x3d5bf6(0x1fa,'\x28\x2a\x68\x39')]=_0x10ca55,_0x32112d[_0x3d5bf6(0x27e,'\x55\x4c\x72\x26')+_0x3d5bf6(0xf2,'\x70\x4c\x46\x4e')+'\x73']=_0x2469ba?[_0x2469ba]:[],_0x32112d[_0x3d5bf6(0x190,'\x70\x4c\x46\x4e')]=_0x2f9e70,_0x32112d['\x64\x72\x69\x66\x74\x49\x6e\x74'+_0x3d5bf6(0x25d,'\x49\x57\x72\x5e')]=_0x2bb7b5,_0x32112d[_0x3d5bf6(0x82,'\x6c\x68\x4d\x32')+'\x6e\x50\x61\x74\x68']=_0xcc08c0,_0x32112d[_0x3d5bf6(0xd9,'\x6c\x68\x4d\x32')+'\x65\x64']=_0xf9b228,_0x32112d[_0x3d5bf6(0x241,'\x75\x70\x36\x72')+_0x3d5bf6(0x32c,'\x30\x55\x4f\x31')]=_0x954b7f,_0x32112d;}function _0x3ff10d({gene:_0x170d59,capsule:_0xbeab43,signals:_0xd1c9d1,alternatives:_0x179912,memoryAdvice:_0x4dc59c,driftEnabled:_0x5b46a5,driftIntensity:_0x3c8eae,selectionPath:_0x3d1d2e,memoryUsed:_0xb2e49d}){const _0x44d86d=_0x446d32,_0x1ae2d4={'\x53\x57\x59\x6b\x63':function(_0x265ff9,_0x45a6fb,_0x3c1ab9){return _0x265ff9(_0x45a6fb,_0x3c1ab9);},'\x6a\x66\x51\x43\x54':function(_0x44a7eb,_0x4696a0){return _0x44a7eb*_0x4696a0;},'\x74\x56\x73\x6a\x46':function(_0x265df4,_0x10f8a4){return _0x265df4!=_0x10f8a4;},'\x41\x75\x69\x6b\x55':function(_0x15119d,_0x5b9530){return _0x15119d<_0x5b9530;},'\x55\x61\x6b\x61\x63':function(_0xc27e64,_0x35636a){return _0xc27e64+_0x35636a;},'\x45\x59\x51\x78\x54':_0x44d86d(0x3d7,'\x68\x69\x67\x79')+'\x6d\x61\x74\x63\x68\x20\x67\x65'+_0x44d86d(0x2ae,'\x68\x69\x67\x79')+_0x44d86d(0x2e6,'\x68\x69\x67\x79'),'\x43\x74\x5a\x52\x53':_0x44d86d(0x30e,'\x23\x57\x50\x78')+'\x74\x72\x69\x67\x67\x65\x72\x20'+'\x6d\x61\x74\x63\x68\x65\x73\x20'+_0x44d86d(0x292,'\x5a\x45\x49\x52'),'\x69\x48\x56\x6c\x64':_0x44d86d(0x11b,'\x64\x64\x5a\x69')+_0x44d86d(0x99,'\x75\x70\x36\x72')+_0x44d86d(0x175,'\x49\x57\x72\x5e')+_0x44d86d(0x1a9,'\x4d\x73\x75\x79')+_0x44d86d(0x231,'\x4c\x5d\x40\x66')+_0x44d86d(0x25c,'\x36\x57\x50\x38'),'\x49\x6f\x72\x53\x76':_0x44d86d(0x3a4,'\x6a\x24\x6d\x29'),'\x49\x5a\x43\x4d\x5a':_0x44d86d(0x22d,'\x49\x57\x72\x5e')+_0x44d86d(0x14c,'\x30\x55\x4f\x31')+_0x44d86d(0x319,'\x43\x39\x26\x7a')+_0x44d86d(0x269,'\x64\x64\x5a\x69'),'\x53\x65\x5a\x43\x55':function(_0x18852a,_0x190e86){return _0x18852a>_0x190e86;},'\x64\x78\x50\x6d\x69':function(_0x2ada26,_0x5f4598){return _0x2ada26!==_0x5f4598;},'\x48\x73\x66\x45\x64':_0x44d86d(0x27f,'\x4c\x5d\x40\x66'),'\x50\x4a\x45\x73\x45':_0x44d86d(0x287,'\x55\x4c\x72\x26'),'\x51\x78\x6f\x56\x7a':function(_0x45442b,_0x6703d6){return _0x45442b===_0x6703d6;},'\x5a\x54\x64\x78\x49':_0x44d86d(0x316,'\x23\x57\x50\x78'),'\x57\x6d\x41\x54\x41':_0x44d86d(0x2cb,'\x6e\x32\x53\x39'),'\x4a\x52\x42\x51\x46':_0x44d86d(0x90,'\x6a\x24\x6d\x29')+_0x44d86d(0x337,'\x63\x57\x55\x39')+'\x65\x5f\x66\x6f\x6c\x6c\x6f\x77'+_0x44d86d(0x370,'\x35\x5d\x70\x4e'),'\x6f\x43\x64\x71\x73':function(_0x697dac,_0x2d5a43){return _0x697dac||_0x2d5a43;},'\x71\x5a\x4a\x6a\x48':_0x44d86d(0x2e4,'\x7a\x62\x38\x6a')},_0x589c50=[];if(_0x170d59)_0x589c50[_0x44d86d(0x1a0,'\x5a\x45\x49\x52')](_0x1ae2d4[_0x44d86d(0x31f,'\x49\x57\x72\x5e')]);if(_0xbeab43)_0x589c50[_0x44d86d(0xf3,'\x41\x78\x57\x63')](_0x1ae2d4[_0x44d86d(0x3d8,'\x6a\x21\x58\x63')]);if(!_0x170d59)_0x589c50[_0x44d86d(0x34a,'\x26\x24\x46\x33')](_0x1ae2d4[_0x44d86d(0x17c,'\x6e\x32\x53\x39')]);if(_0xd1c9d1&&_0xd1c9d1['\x6c\x65\x6e\x67\x74\x68'])_0x589c50[_0x44d86d(0x2bf,'\x72\x6e\x53\x70')](_0x44d86d(0x35c,'\x77\x34\x26\x25')+'\x20'+_0xd1c9d1['\x6a\x6f\x69\x6e']('\x2c\x20'));_0x4dc59c&&Array['\x69\x73\x41\x72\x72\x61\x79'](_0x4dc59c[_0x44d86d(0x135,'\x48\x74\x61\x59')+_0x44d86d(0xbb,'\x41\x33\x66\x51')])&&_0x4dc59c[_0x44d86d(0x84,'\x74\x50\x25\x41')+_0x44d86d(0x2ab,'\x74\x50\x25\x41')][_0x44d86d(0x37d,'\x6a\x24\x6d\x29')]&&_0x589c50[_0x44d86d(0x31c,'\x43\x39\x26\x7a')](_0x44d86d(0x326,'\x76\x6d\x4a\x4c')+_0x44d86d(0x8c,'\x78\x5d\x33\x71')+_0x4dc59c[_0x44d86d(0x169,'\x5a\x45\x49\x52')+_0x44d86d(0x155,'\x6a\x21\x58\x63')][_0x44d86d(0x257,'\x28\x2a\x68\x39')](_0x1ae2d4[_0x44d86d(0x237,'\x75\x70\x36\x72')]));_0x5b46a5&&_0x589c50[_0x44d86d(0x378,'\x4a\x65\x43\x54')](_0x1ae2d4[_0x44d86d(0x37c,'\x41\x78\x57\x63')]);Number[_0x44d86d(0xaf,'\x41\x78\x57\x63')](_0x3c8eae)&&_0x1ae2d4[_0x44d86d(0x250,'\x41\x33\x66\x51')](_0x3c8eae,0x939+0xfe8+0x1*-0x1921)&&_0x589c50[_0x44d86d(0xa3,'\x51\x44\x59\x56')](_0x44d86d(0x173,'\x26\x24\x46\x33')+_0x44d86d(0x230,'\x72\x6e\x53\x70')+'\x20'+_0x3c8eae[_0x44d86d(0xfe,'\x30\x55\x4f\x31')](-0xfe9+-0x3d0+0x13bc));if(_0x3d1d2e){if(_0x1ae2d4[_0x44d86d(0x227,'\x76\x6d\x4a\x4c')](_0x1ae2d4[_0x44d86d(0x1a3,'\x26\x24\x46\x33')],_0x1ae2d4[_0x44d86d(0xb6,'\x41\x33\x66\x51')]))_0x589c50[_0x44d86d(0x18f,'\x77\x34\x26\x25')](_0x44d86d(0x145,'\x78\x5d\x33\x71')+_0x44d86d(0x2ac,'\x41\x66\x46\x76')+_0x3d1d2e);else{if(FioCND['\x53\x57\x59\x6b\x63'](_0xbdf835,_0x32b995,_0x4c0647))_0x3f0b46+=0x1157+-0x2*-0x107+-0x124*0x11;}}if(_0xb2e49d){if(_0x1ae2d4[_0x44d86d(0x321,'\x64\x78\x25\x39')](_0x1ae2d4[_0x44d86d(0x290,'\x41\x66\x46\x76')],_0x1ae2d4['\x57\x6d\x41\x54\x41'])){let _0x2eed00=_0x9e3327[_0x44d86d(0x88,'\x6c\x68\x4d\x32')](_0x3f54b2[_0x44d86d(0x93,'\x4a\x65\x43\x54')],_0x30909e[_0x44d86d(0x37a,'\x25\x5b\x77\x66')](0x2337+0x2eb+0x131*-0x20,_0x2b1380[_0x44d86d(0x350,'\x41\x78\x57\x63')](FioCND[_0x44d86d(0x33b,'\x64\x64\x5a\x69')](_0x27ecc1[_0x44d86d(0x1dc,'\x75\x70\x36\x72')],_0x3261d5))));FioCND[_0x44d86d(0x258,'\x6a\x24\x6d\x29')](_0x3587b2,null)&&FioCND[_0x44d86d(0x2a4,'\x67\x58\x2a\x24')](_0x30d00f,-0x1*-0x7db+-0x14ab+0xcd0+0.3)&&FioCND[_0x44d86d(0x207,'\x23\x57\x50\x78')](_0x2eed00,_0x4939fd[_0x44d86d(0x1bd,'\x67\x24\x5b\x55')])&&(_0x2eed00=_0x14c97f[_0x44d86d(0x317,'\x48\x76\x52\x30')](_0x489297['\x6c\x65\x6e\x67\x74\x68'],FioCND[_0x44d86d(0x1f7,'\x70\x4c\x46\x4e')](_0x2eed00,0x2f6*-0x2+-0xe5f+0x6c4*0x3))),_0x177177=_0x25eded[_0x44d86d(0x12c,'\x6e\x32\x53\x39')](FioCND[_0x44d86d(0x226,'\x41\x66\x46\x76')](_0x3e109f[_0x44d86d(0x166,'\x75\x70\x36\x72')](),_0x2eed00)),_0x4719c5=_0x44d86d(0x1d3,'\x70\x4c\x46\x4e')+_0x44d86d(0x86,'\x75\x70\x36\x72');}else _0x589c50[_0x44d86d(0x10f,'\x25\x5b\x77\x66')](_0x1ae2d4[_0x44d86d(0x35d,'\x6c\x68\x4d\x32')]);}return{'\x73\x65\x6c\x65\x63\x74\x65\x64':_0x170d59?_0x170d59['\x69\x64']:null,'\x72\x65\x61\x73\x6f\x6e':_0x589c50,'\x61\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x73':Array[_0x44d86d(0x132,'\x64\x78\x25\x39')](_0x179912)?_0x179912[_0x44d86d(0x39f,'\x76\x6d\x4a\x4c')](_0x450e09=>_0x450e09['\x69\x64']):[],'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x61\x74\x68':_0x1ae2d4[_0x44d86d(0x13c,'\x4a\x65\x43\x54')](_0x3d1d2e,_0x1ae2d4[_0x44d86d(0x208,'\x75\x70\x36\x72')]),'\x6d\x65\x6d\x6f\x72\x79\x55\x73\x65\x64':!!_0xb2e49d};}const _0x4753f5=-0x241*-0xa+-0x199*0x12+0xb*0x91,_0x4d893c=0x8d1+-0x221c+-0x7*-0x39d+0.3;function _0x40c61a(_0x3c99f3,_0x388716){const _0x2b33ff=_0x446d32,_0x1bf490={'\x51\x6c\x76\x6d\x53':function(_0x4d815b,_0x1ea397){return _0x4d815b(_0x1ea397);},'\x74\x4d\x71\x68\x62':function(_0x5495b,_0x36d41e){return _0x5495b===_0x36d41e;},'\x77\x4d\x45\x44\x64':function(_0x33c008,_0x3d4b46){return _0x33c008-_0x3d4b46;},'\x41\x43\x41\x6e\x57':function(_0x5e0f44,_0x1972ab){return _0x5e0f44+_0x1972ab;},'\x6f\x75\x62\x4e\x6c':function(_0x567eec,_0x3384fb){return _0x567eec/_0x3384fb;}},_0x33e8d8=new Set((Array[_0x2b33ff(0x1d0,'\x48\x74\x61\x59')](_0x3c99f3[_0x2b33ff(0x188,'\x36\x57\x50\x38')+_0x2b33ff(0x1f1,'\x77\x34\x26\x25')])?_0x3c99f3[_0x2b33ff(0x1ff,'\x6f\x52\x6c\x63')+_0x2b33ff(0x206,'\x48\x76\x52\x30')]:[])[_0x2b33ff(0xbd,'\x74\x50\x25\x41')](function(_0x3fbdd3){const _0x1f026b=_0x2b33ff;return _0x1bf490[_0x1f026b(0x381,'\x63\x57\x55\x39')](String,_0x3fbdd3)[_0x1f026b(0x2f5,'\x75\x70\x36\x72')+_0x1f026b(0x2f9,'\x6e\x32\x53\x39')]();})),_0x353e38=new Set((Array[_0x2b33ff(0x8f,'\x23\x57\x50\x78')](_0x388716[_0x2b33ff(0x1d6,'\x74\x50\x25\x41')+_0x2b33ff(0x114,'\x6f\x52\x31\x71')])?_0x388716[_0x2b33ff(0x136,'\x34\x5d\x64\x49')+'\x6d\x61\x74\x63\x68']:[])[_0x2b33ff(0x12b,'\x41\x78\x57\x63')](function(_0x22c48f){const _0x477329=_0x2b33ff;return _0x1bf490[_0x477329(0x1bf,'\x36\x57\x50\x38')](String,_0x22c48f)[_0x477329(0x215,'\x76\x6d\x4a\x4c')+_0x477329(0x10c,'\x67\x24\x5b\x55')]();}));if(_0x1bf490[_0x2b33ff(0x22e,'\x67\x58\x2a\x24')](_0x33e8d8[_0x2b33ff(0x209,'\x51\x44\x59\x56')],-0xa1+0x2*-0xd7f+-0x1b9f*-0x1)&&_0x1bf490['\x74\x4d\x71\x68\x62'](_0x353e38['\x73\x69\x7a\x65'],0x621+0x2*0x9d5+0x5d*-0x47))return-0x10*-0x13e+0x302*-0x2+-0x2*0x6ee;if(_0x33e8d8[_0x2b33ff(0x25e,'\x64\x64\x5a\x69')]===0x24a8+0x1aec+-0x3f94||_0x353e38[_0x2b33ff(0x1ab,'\x6e\x32\x53\x39')]===-0x1f67*0x1+-0x1b95+0x3afc)return-0x154*0x9+-0x4b9+0x58f*0x3;let _0x17d0ef=0xf9e+0x1e98*0x1+-0x49f*0xa;for(const _0x3950d0 of _0x33e8d8)if(_0x353e38[_0x2b33ff(0x2e9,'\x75\x21\x4e\x4b')](_0x3950d0))_0x17d0ef++;const _0x3fcc8e=_0x1bf490[_0x2b33ff(0x3a1,'\x28\x2a\x68\x39')](_0x1bf490[_0x2b33ff(0x7d,'\x30\x55\x4f\x31')](_0x33e8d8[_0x2b33ff(0x260,'\x68\x46\x38\x30')],_0x353e38['\x73\x69\x7a\x65']),_0x17d0ef);return _0x3fcc8e===0x5*-0x3bb+-0x1*-0x1a21+-0x77a?0x1a16+-0x2a*-0x10+0x15e*-0x15:_0x1bf490[_0x2b33ff(0x332,'\x67\x24\x5b\x55')](_0x17d0ef,_0x3fcc8e);}function _0x12ca31({genes:_0x14c0ce,signals:_0x51a4e8,memoryAdvice:_0x939e2f,driftEnabled:_0x57615b,failedCapsules:_0x321e7,capabilityGaps:_0x3f5c85,noveltyScore:_0x16cf67,plateauOverride:_0x44d888}){const _0x630767=_0x446d32,_0x32eb84={'\x68\x6b\x66\x66\x41':function(_0x273887,_0x54e795){return _0x273887!==_0x54e795;},'\x63\x4a\x42\x59\x6b':function(_0x5f31a7,_0x30e3ac,_0x5d3ba6){return _0x5f31a7(_0x30e3ac,_0x5d3ba6);},'\x43\x6d\x53\x56\x72':function(_0x49f5a9,_0x49a4c0,_0x14abc5){return _0x49f5a9(_0x49a4c0,_0x14abc5);},'\x76\x64\x71\x4f\x67':function(_0x1bbd9f,_0x5a7d19,_0x37d2d6,_0x3e867e){return _0x1bbd9f(_0x5a7d19,_0x37d2d6,_0x3e867e);},'\x45\x46\x49\x43\x6d':function(_0x293e32,_0x423a78){return _0x293e32>_0x423a78;},'\x50\x63\x68\x53\x55':function(_0x4a7adb,_0x573b70){return _0x4a7adb-_0x573b70;},'\x4d\x6a\x53\x75\x70':_0x630767(0x149,'\x6c\x68\x4d\x32'),'\x5a\x4b\x49\x52\x61':function(_0xcb677a,_0x6e94a9){return _0xcb677a(_0x6e94a9);},'\x63\x4c\x7a\x46\x75':function(_0x400ef4){return _0x400ef4();},'\x71\x48\x5a\x4c\x66':function(_0x3bb173,_0x42963d){return _0x3bb173<_0x42963d;},'\x4d\x78\x4a\x65\x6f':function(_0x59ad84,_0x2e8016){return _0x59ad84>=_0x2e8016;},'\x53\x61\x64\x57\x54':_0x630767(0xe4,'\x25\x5b\x77\x66')},_0x11e4db={};_0x11e4db[_0x630767(0x1c9,'\x4d\x73\x75\x79')]=_0x14c0ce,_0x11e4db[_0x630767(0x1d4,'\x6e\x32\x53\x39')]=[],_0x11e4db[_0x630767(0xc3,'\x55\x4c\x72\x26')]=_0x51a4e8,_0x11e4db[_0x630767(0x329,'\x26\x23\x54\x38')+_0x630767(0x12f,'\x64\x64\x5a\x69')]=_0x939e2f,_0x11e4db['\x64\x72\x69\x66\x74\x45\x6e\x61'+_0x630767(0x247,'\x7a\x62\x38\x6a')]=_0x57615b,_0x11e4db[_0x630767(0x3c5,'\x67\x58\x2a\x24')+_0x630767(0xcb,'\x28\x2a\x68\x39')]=_0x321e7,_0x11e4db[_0x630767(0xf7,'\x7a\x62\x38\x6a')+_0x630767(0x89,'\x68\x69\x67\x79')]=_0x3f5c85,_0x11e4db[_0x630767(0x339,'\x5a\x45\x49\x52')+_0x630767(0x13d,'\x67\x58\x2a\x24')]=_0x16cf67,_0x11e4db[_0x630767(0xf0,'\x66\x78\x72\x39')+'\x76\x65\x72\x72\x69\x64\x65']=_0x44d888;const _0x5671d6=_0x32eb84[_0x630767(0x27d,'\x5b\x77\x76\x36')](_0x46d726,_0x11e4db);if(!_0x5671d6[_0x630767(0x170,'\x41\x33\x66\x51')+_0x630767(0x1b5,'\x36\x57\x50\x38')])return{'\x67\x65\x6e\x65\x73':[],'\x70\x72\x69\x6d\x61\x72\x79':_0x5671d6};const _0xc3d3f7=Array[_0x630767(0x191,'\x26\x24\x46\x33')](_0x14c0ce)?_0x14c0ce:[],_0x316a35=_0x939e2f&&_0x939e2f[_0x630767(0x158,'\x25\x5b\x77\x66')+_0x630767(0x338,'\x66\x78\x72\x39')]instanceof Set?_0x939e2f[_0x630767(0x3a7,'\x48\x74\x61\x59')+_0x630767(0x3a9,'\x23\x57\x50\x78')]:new Set(),_0x2f1bf2=_0x32eb84[_0x630767(0x1e3,'\x51\x44\x59\x56')](_0x4dfbf1),_0x5ca518=_0xc3d3f7[_0x630767(0x263,'\x4d\x73\x75\x79')](function(_0x455033){const _0x3b0af0=_0x630767;if(!_0x455033||_0x32eb84[_0x3b0af0(0x24d,'\x5a\x45\x49\x52')](_0x455033[_0x3b0af0(0x282,'\x4c\x5d\x40\x66')],_0x3b0af0(0x29a,'\x48\x76\x52\x30'))||!_0x455033['\x69\x64'])return![];if(_0x455033['\x69\x64']===_0x5671d6[_0x3b0af0(0x265,'\x74\x50\x25\x41')+_0x3b0af0(0xd0,'\x77\x34\x26\x25')]['\x69\x64'])return![];if(_0x316a35[_0x3b0af0(0x36e,'\x7a\x62\x38\x6a')](_0x455033['\x69\x64']))return![];if(_0x32eb84[_0x3b0af0(0x1e2,'\x67\x58\x2a\x24')](_0x326608,_0x455033,_0x2f1bf2))return![];return!![];})[_0x630767(0x174,'\x66\x6f\x42\x30')](function(_0x1fa755){const _0x2234cb=_0x630767;let _0x1546fb=_0x32eb84[_0x2234cb(0x92,'\x41\x33\x66\x51')](_0x4172e9,_0x1fa755,_0x51a4e8);_0x1546fb+=_0x32eb84[_0x2234cb(0x228,'\x51\x44\x59\x56')](_0x3e1b95,_0x1fa755,_0x51a4e8,_0x2f1bf2);const _0x500cca={};return _0x500cca[_0x2234cb(0x1b2,'\x40\x41\x51\x7a')]=_0x1fa755,_0x500cca[_0x2234cb(0x285,'\x4d\x73\x75\x79')]=_0x1546fb,_0x500cca;})[_0x630767(0x375,'\x6a\x24\x6d\x29')](function(_0x4d22ca){const _0xf99c64=_0x630767;return _0x32eb84[_0xf99c64(0x36a,'\x63\x57\x55\x39')](_0x4d22ca[_0xf99c64(0xa4,'\x49\x57\x72\x5e')],0x1c*0x11b+0x961+-0x2855);})[_0x630767(0x32f,'\x78\x5d\x33\x71')](function(_0x4c2a19,_0x34a225){const _0x58f750=_0x630767;return _0x32eb84['\x50\x63\x68\x53\x55'](_0x34a225[_0x58f750(0x1ba,'\x40\x41\x51\x7a')],_0x4c2a19[_0x58f750(0x1e8,'\x41\x66\x46\x76')]);}),_0x52f197=[_0x5671d6[_0x630767(0x297,'\x55\x4c\x72\x26')+_0x630767(0x38e,'\x6f\x52\x31\x71')]];for(let _0x19e8fc=0x258f+-0x1312*-0x1+-0x38a1;_0x32eb84[_0x630767(0x157,'\x26\x24\x46\x33')](_0x19e8fc,_0x5ca518['\x6c\x65\x6e\x67\x74\x68'])&&_0x32eb84[_0x630767(0x3cc,'\x68\x46\x38\x30')](_0x52f197[_0x630767(0x125,'\x49\x57\x72\x5e')],_0x4753f5);_0x19e8fc++){const _0x4d1753=_0x5ca518[_0x19e8fc][_0x630767(0x20d,'\x55\x4c\x72\x26')];let _0x3c0b2d=![];for(let _0x1cfe4b=0x1a35*0x1+0x2ad*-0x7+0x1d*-0x42;_0x32eb84[_0x630767(0x3d2,'\x25\x5b\x77\x66')](_0x1cfe4b,_0x52f197[_0x630767(0x380,'\x4c\x5d\x40\x66')]);_0x1cfe4b++){if(_0x32eb84[_0x630767(0x24a,'\x35\x5d\x70\x4e')](_0x32eb84[_0x630767(0x31a,'\x28\x2a\x68\x39')](_0x40c61a,_0x4d1753,_0x52f197[_0x1cfe4b]),_0x4d893c)){if(_0x32eb84[_0x630767(0x1d8,'\x26\x24\x46\x33')](_0x32eb84[_0x630767(0x16d,'\x4a\x65\x43\x54')],_0x32eb84[_0x630767(0x347,'\x51\x44\x59\x56')]))_0x27cd0b=_0x45b140[_0x630767(0x37a,'\x25\x5b\x77\x66')](_0x362ec7,_0x1ecdb2['\x73\x65\x76\x65\x72\x69\x74\x79']===LiBhVx[_0x630767(0x3a3,'\x68\x46\x38\x30')]?0xaa5+0x26d8+-0x317c:0x1*0x1c7+-0xda6*0x1+-0x3*-0x3f5+0.7);else{_0x3c0b2d=!![];break;}}}if(!_0x3c0b2d)_0x52f197['\x70\x75\x73\x68'](_0x4d1753);}const _0x3346ef={};return _0x3346ef[_0x630767(0x12d,'\x72\x6e\x53\x70')]=_0x52f197,_0x3346ef[_0x630767(0x1eb,'\x35\x5d\x70\x4e')]=_0x5671d6,_0x3346ef;}const _0x5a8ded={};_0x5a8ded['\x73\x65\x6c\x65\x63\x74\x47\x65'+_0x446d32(0xf5,'\x28\x2a\x68\x39')+_0x446d32(0x1e5,'\x5a\x45\x49\x52')]=_0x46d726,_0x5a8ded[_0x446d32(0x220,'\x77\x34\x26\x25')+'\x6e\x65']=_0x5a1c8e,_0x5a8ded[_0x446d32(0x1f5,'\x68\x69\x67\x79')+_0x446d32(0x140,'\x23\x57\x50\x78')]=_0x433752,_0x5a8ded['\x62\x75\x69\x6c\x64\x53\x65\x6c'+_0x446d32(0x3b0,'\x75\x21\x4e\x4b')+'\x69\x73\x69\x6f\x6e']=_0x3ff10d,_0x5a8ded[_0x446d32(0x2aa,'\x66\x78\x72\x39')+_0x446d32(0x32a,'\x75\x70\x36\x72')+_0x446d32(0x239,'\x5b\x77\x76\x36')]=_0x12a4fd,_0x5a8ded[_0x446d32(0x2bd,'\x76\x6d\x4a\x4c')+_0x446d32(0x34c,'\x41\x78\x57\x63')+'\x63']=_0x551f7b,_0x5a8ded[_0x446d32(0x177,'\x66\x78\x72\x39')+_0x446d32(0xef,'\x72\x6e\x53\x70')]=_0x5812f9,_0x5a8ded[_0x446d32(0x276,'\x70\x4c\x46\x4e')]=_0x5cd049,_0x5a8ded[_0x446d32(0xd6,'\x6c\x68\x4d\x32')+_0x446d32(0x139,'\x6e\x32\x53\x39')+_0x446d32(0x1b7,'\x35\x5d\x70\x4e')]=_0x23744c,_0x5a8ded[_0x446d32(0xf9,'\x66\x6f\x42\x30')+_0x446d32(0x12e,'\x6a\x24\x6d\x29')]=_0x3bca25,_0x5a8ded[_0x446d32(0x308,'\x74\x50\x25\x41')+_0x446d32(0x235,'\x25\x5b\x77\x66')+_0x446d32(0x32b,'\x30\x55\x4f\x31')+'\x65\x64']=_0x326608,_0x5a8ded[_0x446d32(0x3c7,'\x34\x5d\x64\x49')+_0x446d32(0x24f,'\x23\x57\x50\x78')+_0x446d32(0x360,'\x57\x72\x62\x40')]=_0x12ca31,_0x5a8ded[_0x446d32(0x211,'\x70\x4c\x46\x4e')+_0x446d32(0x2a1,'\x48\x74\x61\x59')+_0x446d32(0x2ad,'\x57\x72\x62\x40')]=_0x3a7120,_0x5a8ded[_0x446d32(0x1dd,'\x4d\x73\x75\x79')+_0x446d32(0x320,'\x66\x6f\x42\x30')+_0x446d32(0xb2,'\x57\x72\x62\x40')]=_0x552559,module[_0x446d32(0x310,'\x26\x24\x46\x33')]=_0x5a8ded;
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
+