@evomap/evolver 1.89.10 → 1.89.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. package/.cursor/BUGBOT.md +182 -0
  2. package/.env.example +68 -0
  3. package/.git-commit-guard-token +1 -0
  4. package/.github/CODEOWNERS +63 -0
  5. package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
  6. package/.github/pull_request_template.md +45 -0
  7. package/.github/workflows/test.yml +75 -0
  8. package/CHANGELOG.md +1367 -0
  9. package/README.ja-JP.md +1 -1
  10. package/README.ko-KR.md +1 -1
  11. package/README.md +90 -536
  12. package/README.public.md +578 -0
  13. package/README.zh-CN.md +1 -1
  14. package/SECURITY.md +108 -0
  15. package/assets/gep/events.jsonl +3 -0
  16. package/examples/atp-consumer-quickstart.md +100 -0
  17. package/examples/hello-world.md +38 -0
  18. package/index.js +5 -3
  19. package/package.json +6 -18
  20. package/proxy-package.json +39 -0
  21. package/public.manifest.json +145 -0
  22. package/src/adapters/scripts/evolver-session-end.js +18 -37
  23. package/src/atp/atpExecute.js +27 -71
  24. package/src/atp/serviceHelper.js +28 -36
  25. package/src/config.js +17 -0
  26. package/src/evolve/guards.js +721 -1
  27. package/src/evolve/pipeline/collect.js +1283 -1
  28. package/src/evolve/pipeline/dispatch.js +421 -1
  29. package/src/evolve/pipeline/enrich.js +440 -1
  30. package/src/evolve/pipeline/hub.js +319 -1
  31. package/src/evolve/pipeline/select.js +274 -1
  32. package/src/evolve/pipeline/signals.js +206 -1
  33. package/src/evolve/utils.js +264 -1
  34. package/src/evolve.js +350 -1
  35. package/src/gep/a2aProtocol.js +4463 -1
  36. package/src/gep/antiAbuseTelemetry.js +233 -1
  37. package/src/gep/autoDistillConv.js +205 -1
  38. package/src/gep/autoDistillLlm.js +315 -1
  39. package/src/gep/candidateEval.js +92 -1
  40. package/src/gep/candidates.js +198 -1
  41. package/src/gep/contentHash.js +30 -1
  42. package/src/gep/conversationDistiller.js +270 -0
  43. package/src/gep/conversationSniffer.js +266 -1
  44. package/src/gep/crypto.js +89 -1
  45. package/src/gep/curriculum.js +163 -1
  46. package/src/gep/deviceId.js +218 -1
  47. package/src/gep/envFingerprint.js +118 -1
  48. package/src/gep/epigenetics.js +31 -1
  49. package/src/gep/execBridge.js +712 -1
  50. package/src/gep/explore.js +289 -1
  51. package/src/gep/hash.js +15 -1
  52. package/src/gep/hubFetch.js +608 -1
  53. package/src/gep/hubReview.js +207 -1
  54. package/src/gep/hubSearch.js +526 -1
  55. package/src/gep/hubVerify.js +306 -1
  56. package/src/gep/learningSignals.js +89 -1
  57. package/src/gep/memoryGraph.js +1449 -1
  58. package/src/gep/memoryGraphAdapter.js +203 -1
  59. package/src/gep/mutation.js +203 -1
  60. package/src/gep/narrativeMemory.js +108 -1
  61. package/src/gep/oauthLogin.js +9 -3
  62. package/src/gep/openPRRegistry.js +205 -1
  63. package/src/gep/personality.js +423 -1
  64. package/src/gep/policyCheck.js +599 -1
  65. package/src/gep/privacyClient.js +10 -9
  66. package/src/gep/prompt.js +836 -1
  67. package/src/gep/questionGenerator.js +103 -0
  68. package/src/gep/recallInject.js +409 -1
  69. package/src/gep/recallVerifier.js +318 -1
  70. package/src/gep/reflection.js +177 -1
  71. package/src/gep/savingsCore.js +112 -1
  72. package/src/gep/selector.js +602 -1
  73. package/src/gep/signals.js +85 -17
  74. package/src/gep/skillDistiller.js +1294 -1
  75. package/src/gep/solidify.js +1699 -1
  76. package/src/gep/strategy.js +136 -1
  77. package/src/gep/tokenSavings.js +95 -1
  78. package/src/gep/workspaceKeychain.js +174 -1
  79. package/src/proxy/extensions/traceControl.js +109 -1
  80. package/src/proxy/index.js +100 -3
  81. package/src/proxy/inject.js +52 -1
  82. package/src/proxy/lifecycle/manager.js +108 -7
  83. package/src/proxy/server/routes.js +41 -7
  84. package/src/proxy/server/settings.js +6 -2
  85. package/src/proxy/sync/engine.js +31 -15
  86. package/src/proxy/sync/inbound.js +87 -9
  87. package/src/proxy/sync/outbound.js +57 -4
  88. package/src/proxy/trace/extractor.js +1403 -1
  89. package/src/proxy/trace/usage.js +105 -1
  90. package/CONTRIBUTING.md +0 -19
  91. package/assets/cover.png +0 -0
  92. package/scripts/a2a_export.js +0 -63
  93. package/scripts/a2a_ingest.js +0 -79
  94. package/scripts/a2a_promote.js +0 -118
  95. package/scripts/analyze_by_skill.js +0 -121
  96. package/scripts/build_binaries.js +0 -479
  97. package/scripts/check-changelog.js +0 -166
  98. package/scripts/extract_log.js +0 -85
  99. package/scripts/generate_history.js +0 -75
  100. package/scripts/gep_append_event.js +0 -96
  101. package/scripts/gep_personality_report.js +0 -234
  102. package/scripts/human_report.js +0 -147
  103. package/scripts/recall-verify-report.js +0 -234
  104. package/scripts/recover_loop.js +0 -61
  105. package/scripts/refresh_stars_badge.js +0 -168
  106. package/scripts/seed-merchants.js +0 -91
  107. package/scripts/suggest_version.js +0 -89
  108. package/scripts/validate-modules.js +0 -38
  109. package/scripts/validate-suite.js +0 -78
  110. package/skills/index.json +0 -14
  111. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  112. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,1449 @@
1
- const _0x59595f=_0x9c42;(function(_0x3238b7,_0xab62c2){const _0x119550=_0x9c42,_0xa2fc39=_0x3238b7();while(!![]){try{const _0x1d6aca=-parseInt(_0x119550(0x40c,'\x31\x77\x33\x38'))/(0x59*-0x25+0x2568+-0x2*0xc45)+parseInt(_0x119550(0x559,'\x41\x6f\x6d\x77'))/(-0x1058+-0x5d1*-0x5+-0x1*0xcbb)+parseInt(_0x119550(0x4ad,'\x39\x29\x37\x66'))/(-0xcbd+0x8a2+-0x1f*-0x22)+parseInt(_0x119550(0x60f,'\x59\x28\x5e\x71'))/(0x6a*-0x52+0x1be2+-0x29*-0x26)*(parseInt(_0x119550(0x37a,'\x32\x43\x23\x6b'))/(0x731+0x1818+0x7d1*-0x4))+-parseInt(_0x119550(0x71a,'\x33\x37\x26\x37'))/(0x3*-0x1e6+-0x19f+0x757)*(parseInt(_0x119550(0x5a4,'\x78\x38\x5e\x36'))/(0x12aa*0x2+0xbc5+-0x3112))+-parseInt(_0x119550(0x31f,'\x33\x37\x26\x37'))/(-0xf8b+0x7cf+0x7c4)*(parseInt(_0x119550(0x2dd,'\x69\x79\x38\x63'))/(0xa73+0x8*0x2c4+-0x208a))+parseInt(_0x119550(0x135,'\x33\x68\x30\x5d'))/(0x2*-0x14d+-0x1ac*0xa+0x135c);if(_0x1d6aca===_0xab62c2)break;else _0xa2fc39['push'](_0xa2fc39['shift']());}catch(_0x32b2fa){_0xa2fc39['push'](_0xa2fc39['shift']());}}}(_0x2b6e,0x1f921*0x5+0x2417*-0x1c+0x384b));const _0x1932e0=(function(){const _0x199adc=_0x9c42,_0x32480e={};_0x32480e[_0x199adc(0x5d1,'\x49\x72\x4c\x4c')]=function(_0xbbfe14,_0x36159a){return _0xbbfe14/_0x36159a;},_0x32480e['\x41\x49\x6e\x79\x70']=function(_0x4a21ba,_0x420cf1){return _0x4a21ba-_0x420cf1;},_0x32480e[_0x199adc(0x6bf,'\x6b\x5d\x25\x67')]=_0x199adc(0x719,'\x74\x57\x51\x63'),_0x32480e[_0x199adc(0x45c,'\x2a\x35\x6a\x39')]=function(_0x2eedc2,_0x1728e4){return _0x2eedc2!==_0x1728e4;},_0x32480e[_0x199adc(0x438,'\x50\x30\x46\x57')]=_0x199adc(0x5ed,'\x56\x79\x47\x74');const _0x11e49b=_0x32480e;let _0x13a5cb=!![];return function(_0x3deb1e,_0x38dc06){const _0x4e541b=_0x199adc;if(_0x11e49b[_0x4e541b(0x1c1,'\x30\x6f\x64\x41')](_0x11e49b[_0x4e541b(0x18c,'\x59\x38\x6c\x6d')],'\x71\x6f\x75\x4a\x4d')){const _0x2517a9=_0x11e49b[_0x4e541b(0x3f7,'\x5b\x7a\x6f\x41')](_0x11e49b[_0x4e541b(0x727,'\x69\x79\x38\x63')](_0x4a4db5,_0x3cc58f),_0xdeb8ae);_0x54e975+=_0x1bbc6c['\x6d\x61\x78'](-(-0x10b*-0xf+-0x1991+0x9ec+0.06),_0x519e1f[_0x4e541b(0x35d,'\x78\x38\x5e\x36')](-0x1a3+-0x1707+-0x18aa*-0x1+0.06,_0x2517a9));}else{const _0x1e0858=_0x13a5cb?function(){const _0x5e03fa=_0x4e541b;if(_0x38dc06){if(_0x11e49b['\x72\x73\x43\x6e\x42']===_0x5e03fa(0x366,'\x6d\x78\x46\x74'))return _0x13ee3a['\x70\x61\x72\x73\x65'](_0x453f47);else{const _0x50ba40=_0x38dc06[_0x5e03fa(0x31c,'\x77\x31\x4b\x6f')](_0x3deb1e,arguments);return _0x38dc06=null,_0x50ba40;}}}:function(){};return _0x13a5cb=![],_0x1e0858;}};}()),_0x19563c=_0x1932e0(this,function(){const _0x426f01=_0x9c42,_0x39535a={};_0x39535a[_0x426f01(0x328,'\x39\x29\x37\x66')]=_0x426f01(0x2d4,'\x30\x6f\x64\x41')+_0x426f01(0x355,'\x31\x77\x33\x38');const _0x136f75=_0x39535a;return _0x19563c[_0x426f01(0x69e,'\x2a\x35\x6a\x39')]()['\x73\x65\x61\x72\x63\x68'](_0x136f75[_0x426f01(0x32d,'\x5b\x7a\x6f\x41')])[_0x426f01(0x432,'\x6b\x5d\x25\x67')]()[_0x426f01(0x373,'\x75\x48\x79\x40')+_0x426f01(0x24c,'\x33\x68\x77\x70')](_0x19563c)[_0x426f01(0x5f7,'\x39\x29\x37\x66')](_0x136f75[_0x426f01(0x5ae,'\x58\x45\x24\x5d')]);});_0x19563c();const _0x4a4ec7=require('\x66\x73'),_0x5bed8f=require(_0x59595f(0x760,'\x6d\x78\x46\x74')),{hubFetch:_0x5ce56f}=require(_0x59595f(0x235,'\x33\x72\x78\x29')+'\x63\x68'),{getMemoryDir:_0x512d86,getEvolutionDir:_0x1a929b}=require('\x2e\x2f\x70\x61\x74\x68\x73'),{normalizePersonalityState:_0xd71a9c,isValidPersonalityState:_0x59f6f0,personalityKey:_0x26f94c}=require(_0x59595f(0x510,'\x78\x38\x5e\x36')+_0x59595f(0x54b,'\x59\x38\x6c\x6d')),{isValidMutation:_0x4ed7fe,normalizeMutation:_0x4205f7}=require(_0x59595f(0x797,'\x56\x79\x47\x74')+'\x6f\x6e'),_0x31f9cc=require(_0x59595f(0x611,'\x39\x29\x37\x66')+'\x67'),{readJsonIfExists:_0x50d1b0}=require(_0x59595f(0x77c,'\x4b\x30\x57\x5b')+_0x59595f(0x1e0,'\x47\x78\x79\x65')),{stableHash:_0x31f261}=require(_0x59595f(0x50d,'\x41\x40\x23\x4c'));function _0x1d69a(_0x291a09){const _0x3d33cd=_0x59595f;try{const _0x591b15={};_0x591b15[_0x3d33cd(0x231,'\x39\x48\x77\x39')+'\x65']=!![];if(!_0x4a4ec7[_0x3d33cd(0x5d9,'\x78\x30\x59\x23')+'\x6e\x63'](_0x291a09))_0x4a4ec7[_0x3d33cd(0x1eb,'\x31\x77\x33\x38')+'\x63'](_0x291a09,_0x591b15);}catch(_0x250042){}}function _0x4a2a06(){const _0x45625f=_0x59595f;return new Date()[_0x45625f(0x2f6,'\x49\x72\x4c\x4c')+'\x69\x6e\x67']();}function _0x25deb1(_0x8d637f){const _0x2f11ef=_0x59595f,_0x578f1d={'\x74\x51\x55\x53\x50':function(_0x41414a,_0x2e869b){return _0x41414a(_0x2e869b);},'\x69\x51\x44\x46\x75':function(_0x2a0467,_0x4c0f53){return _0x2a0467||_0x4c0f53;},'\x67\x79\x42\x54\x68':'\x3c\x70\x61\x74\x68\x3e','\x63\x68\x79\x72\x62':_0x2f11ef(0x1bf,'\x6b\x5d\x25\x67'),'\x47\x77\x50\x44\x63':_0x2f11ef(0x58a,'\x58\x45\x24\x5d')},_0x1b0900=_0x578f1d[_0x2f11ef(0x746,'\x50\x30\x46\x57')](String,_0x578f1d[_0x2f11ef(0x756,'\x32\x4e\x4a\x4d')](_0x8d637f,''))[_0x2f11ef(0x72a,'\x55\x4e\x4a\x79')]();if(!_0x1b0900)return null;return _0x1b0900[_0x2f11ef(0x6ba,'\x76\x4c\x5a\x40')+_0x2f11ef(0x606,'\x31\x77\x33\x38')]()[_0x2f11ef(0x480,'\x78\x72\x50\x48')](/[a-z]:\\[^ \n\r\t]+/gi,_0x578f1d[_0x2f11ef(0x26a,'\x77\x2a\x69\x63')])['\x72\x65\x70\x6c\x61\x63\x65'](/\/[^ \n\r\t]+/g,_0x2f11ef(0x5bc,'\x5a\x4e\x65\x58'))[_0x2f11ef(0x76b,'\x79\x4d\x45\x6e')](/\b0x[0-9a-f]+\b/gi,_0x578f1d[_0x2f11ef(0x2d9,'\x74\x57\x51\x63')])['\x72\x65\x70\x6c\x61\x63\x65'](/\b\d+\b/g,_0x578f1d[_0x2f11ef(0x4cb,'\x78\x72\x50\x48')])[_0x2f11ef(0x3f6,'\x35\x6f\x58\x36')](/\s+/g,'\x20')[_0x2f11ef(0x78b,'\x77\x2a\x69\x63')](-0xc00+-0x2*-0x9ca+-0x794,-0xc5*-0x13+0x991+0x4*-0x5d5);}function _0x41cf6e(_0x20c85d){const _0x171996=_0x59595f,_0x4b71b3={'\x68\x47\x45\x74\x48':_0x171996(0x11d,'\x33\x72\x78\x29')+_0x171996(0x758,'\x4d\x57\x74\x26')+'\x68','\x6a\x46\x58\x67\x4b':function(_0x4c435f,_0x182620){return _0x4c435f(_0x182620);},'\x5a\x47\x52\x74\x63':function(_0x10b61d,_0x1ab6f0){return _0x10b61d||_0x1ab6f0;},'\x58\x5a\x48\x51\x52':_0x171996(0x7a3,'\x50\x30\x46\x57'),'\x44\x79\x61\x75\x6b':_0x171996(0x560,'\x26\x50\x33\x62'),'\x5a\x78\x52\x75\x48':function(_0xc51737,_0x2f24ae){return _0xc51737(_0x2f24ae);}},_0x5a5969=Array[_0x171996(0x460,'\x77\x31\x4b\x6f')](_0x20c85d)?_0x20c85d:[],_0x2d7cba=[];for(const _0x31ba49 of _0x5a5969){const _0x37df6f=_0x4b71b3['\x6a\x46\x58\x67\x4b'](String,_0x4b71b3[_0x171996(0x1e6,'\x47\x78\x79\x65')](_0x31ba49,''))[_0x171996(0x6e4,'\x4b\x30\x57\x5b')]();if(!_0x37df6f)continue;if(_0x37df6f[_0x171996(0x628,'\x47\x78\x79\x65')+'\x74\x68'](_0x4b71b3[_0x171996(0x28c,'\x78\x38\x5e\x36')])){if(_0x4b71b3[_0x171996(0x46f,'\x47\x78\x79\x65')]!==_0x4b71b3[_0x171996(0x286,'\x79\x4d\x45\x6e')]){const _0x16e719={};return _0x16e719['\x73\x68\x6f\x75\x6c\x64\x52\x65'+_0x171996(0x26c,'\x45\x72\x73\x51')]=!![],_0x16e719[_0x171996(0x2d3,'\x38\x62\x4a\x6d')]=_0x4b71b3[_0x171996(0x2c4,'\x33\x72\x78\x29')],_0x16e719;}else{const _0x16a324=_0x4b71b3[_0x171996(0x4fa,'\x74\x57\x51\x63')](_0x25deb1,_0x37df6f[_0x171996(0x48d,'\x56\x79\x47\x74')](_0x4b71b3[_0x171996(0x70b,'\x33\x37\x26\x37')][_0x171996(0x47a,'\x59\x38\x6c\x6d')]));if(_0x16a324)_0x2d7cba[_0x171996(0x61e,'\x56\x79\x47\x74')](_0x171996(0x182,'\x76\x4c\x5a\x40')+_0x171996(0x153,'\x47\x78\x79\x65')+_0x4b71b3[_0x171996(0x73a,'\x59\x38\x6c\x6d')](_0x31f261,_0x16a324));continue;}}_0x2d7cba[_0x171996(0x257,'\x39\x48\x77\x39')](_0x37df6f);}return _0x2d7cba;}function _0x7c3ecd(_0xce3aaf){const _0x2c5d4d=_0x59595f,_0x5b6d73={'\x4c\x52\x5a\x77\x6e':function(_0x223066,_0x59bb5a){return _0x223066(_0x59bb5a);},'\x72\x51\x57\x6e\x69':'\x28\x6e\x6f\x6e\x65\x29'},_0x2f8b26=_0x5b6d73[_0x2c5d4d(0x60d,'\x55\x4e\x4a\x79')](_0x41cf6e,_0xce3aaf),_0x53cd97=Array[_0x2c5d4d(0x4a3,'\x76\x54\x52\x77')](new Set(_0x2f8b26[_0x2c5d4d(0x13b,'\x56\x79\x47\x74')](Boolean)))[_0x2c5d4d(0x6a8,'\x78\x72\x50\x48')]();return _0x53cd97[_0x2c5d4d(0x51c,'\x79\x4d\x45\x6e')]('\x7c')||_0x5b6d73[_0x2c5d4d(0x19a,'\x76\x4c\x5a\x40')];}function _0x46a23f(_0x5b8549){const _0x22a960=_0x59595f,_0x460981={'\x74\x6b\x58\x6e\x56':function(_0x2f830f,_0x3a8fec){return _0x2f830f(_0x3a8fec);},'\x6f\x78\x6f\x4f\x75':_0x22a960(0x3fc,'\x76\x4c\x5a\x40')},_0x4bacbd=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x5b8549)?_0x5b8549:[];for(const _0x322671 of _0x4bacbd){const _0x3e025e=_0x460981[_0x22a960(0x53c,'\x74\x57\x51\x63')](String,_0x322671||'');if(_0x3e025e[_0x22a960(0x739,'\x41\x40\x23\x4c')+'\x74\x68'](_0x460981[_0x22a960(0x33b,'\x59\x28\x5e\x71')]))return _0x460981[_0x22a960(0x4ec,'\x58\x45\x24\x5d')](_0x25deb1,_0x3e025e[_0x22a960(0x41b,'\x78\x38\x5e\x36')](_0x460981[_0x22a960(0x48a,'\x76\x54\x52\x77')][_0x22a960(0x36d,'\x79\x2a\x55\x2a')]));}return null;}function _0xcc5be9(){const _0x4f3096=_0x59595f,_0x3016ee={'\x59\x6f\x6e\x6f\x74':function(_0x4e7382){return _0x4e7382();},'\x6b\x53\x44\x44\x65':_0x4f3096(0x13d,'\x50\x30\x46\x57')+_0x4f3096(0x243,'\x33\x68\x77\x70')+'\x6e\x6c'},_0x28d114=_0x3016ee[_0x4f3096(0x3ae,'\x2a\x35\x6a\x39')](_0x1a929b);return process.env.MEMORY_GRAPH_PATH||_0x5bed8f[_0x4f3096(0x131,'\x2a\x35\x6a\x39')](_0x28d114,_0x3016ee['\x6b\x53\x44\x44\x65']);}function _0x58d639(){const _0xc0ae50=_0x59595f,_0x330bd1={'\x72\x6a\x75\x62\x78':function(_0x579878){return _0x579878();},'\x64\x72\x69\x57\x4f':_0xc0ae50(0x4b2,'\x78\x30\x59\x23')+'\x72\x61\x70\x68\x5f\x73\x74\x61'+_0xc0ae50(0x3c5,'\x33\x72\x78\x29')};return _0x5bed8f[_0xc0ae50(0x4c2,'\x30\x6f\x64\x41')](_0x330bd1[_0xc0ae50(0x158,'\x76\x4c\x5a\x40')](_0x1a929b),_0x330bd1[_0xc0ae50(0x2c7,'\x75\x48\x79\x40')]);}function _0x2dfe72(_0x2022ef){const _0x28819f=_0x59595f,_0xe4941c={'\x45\x68\x70\x71\x50':function(_0x2894a8,_0x310954){return _0x2894a8===_0x310954;},'\x4c\x4a\x55\x67\x7a':_0x28819f(0x3b3,'\x33\x68\x30\x5d'),'\x67\x78\x74\x6c\x41':function(_0xab8d2d,_0x469273){return _0xab8d2d-_0x469273;},'\x72\x6b\x6c\x51\x4e':function(_0x376fc0,_0x5ae938){return _0x376fc0/_0x5ae938;},'\x54\x65\x76\x59\x6a':function(_0x5e67a2,_0x9663d4){return _0x5e67a2(_0x9663d4);},'\x77\x43\x7a\x53\x4b':_0x28819f(0x59d,'\x26\x50\x33\x62')+'\x67','\x42\x68\x46\x75\x50':function(_0x6ff508,_0x5b5c28){return _0x6ff508!==_0x5b5c28;},'\x43\x52\x47\x64\x75':_0x28819f(0x69d,'\x56\x75\x48\x62'),'\x53\x4d\x6d\x47\x69':function(_0x7bb0b6){return _0x7bb0b6();},'\x41\x6a\x4f\x4d\x50':'\x65\x76\x6f\x6c\x75\x74\x69\x6f'+_0x28819f(0x4bc,'\x5a\x4e\x65\x58')+_0x28819f(0x1d7,'\x33\x68\x77\x70')+_0x28819f(0x525,'\x76\x4c\x5a\x40'),'\x4e\x78\x50\x6b\x69':_0x28819f(0x1b0,'\x58\x45\x24\x5d'),'\x73\x43\x6e\x70\x6d':_0x28819f(0x28e,'\x75\x37\x24\x32'),'\x43\x48\x78\x52\x72':function(_0x3e9284,_0x32cbbd){return _0x3e9284<_0x32cbbd;},'\x6a\x44\x49\x6d\x68':_0x28819f(0x28a,'\x59\x38\x6c\x6d')+'\x64','\x65\x61\x42\x6c\x45':function(_0x25dfc8,_0x103c9a){return _0x25dfc8!==_0x103c9a;},'\x6e\x6c\x51\x4a\x4d':_0x28819f(0x5a3,'\x41\x40\x23\x4c'),'\x56\x66\x54\x6a\x4a':_0x28819f(0x6fd,'\x33\x68\x30\x5d')+'\x65','\x44\x76\x53\x4f\x74':function(_0x47c83f,_0x1160bd){return _0x47c83f(_0x1160bd);},'\x55\x4f\x66\x65\x4c':function(_0x3bbd5d,_0x37c7a4){return _0x3bbd5d(_0x37c7a4);},'\x55\x78\x50\x77\x6c':_0x28819f(0x633,'\x77\x2a\x69\x63')+_0x28819f(0x2c5,'\x79\x2a\x55\x2a'),'\x62\x43\x51\x48\x66':'\x72\x65\x75\x73\x65\x5f\x61\x74'+_0x28819f(0x6be,'\x78\x30\x59\x23')};let _0x3dba74='\x6f\x66\x66';try{_0x3dba74=_0xe4941c['\x54\x65\x76\x59\x6a'](require,_0xe4941c[_0x28819f(0x3be,'\x4d\x57\x74\x26')])[_0x28819f(0x74f,'\x50\x30\x46\x57')+_0x28819f(0x62d,'\x50\x30\x46\x57')+'\x4d\x6f\x64\x65']();}catch(_0x5109f2){_0x3dba74=_0x28819f(0x458,'\x79\x4d\x45\x6e');}if(_0x3dba74!==_0x28819f(0x287,'\x79\x2a\x55\x2a'))return null;let _0x363618=null;try{if(_0xe4941c[_0x28819f(0x18a,'\x49\x72\x4c\x4c')](_0xe4941c[_0x28819f(0x1b5,'\x78\x30\x59\x23')],_0xe4941c[_0x28819f(0x6dc,'\x75\x37\x24\x32')]))return _0x2b03c2&&_0xfeb652['\x69\x64']?_0x348fce(_0x54c14d['\x69\x64']):null;else{const _0x146a19=_0x5bed8f['\x6a\x6f\x69\x6e'](_0xe4941c[_0x28819f(0x1d8,'\x47\x78\x79\x65')](_0x1a929b),_0xe4941c[_0x28819f(0x60c,'\x32\x4e\x4a\x4d')]),_0x2bcf22={};_0x2bcf22[_0x28819f(0x666,'\x4d\x57\x74\x26')]=null;const _0x282c53=_0x50d1b0(_0x146a19,_0x2bcf22);_0x363618=_0x282c53&&_0x282c53[_0x28819f(0x5ec,'\x41\x40\x23\x4c')]?_0x282c53[_0x28819f(0x2bc,'\x55\x4e\x4a\x79')]:null;}}catch(_0x76abdc){if(_0xe4941c[_0x28819f(0x468,'\x79\x4d\x45\x6e')]!==_0xe4941c[_0x28819f(0x577,'\x50\x30\x46\x57')])return null;else{const _0x14841f={'\x55\x79\x6d\x5a\x4c':function(_0x18ba8b,_0x5c7d7a){const _0x1ac2f2=_0x28819f;return _0xe4941c[_0x1ac2f2(0x334,'\x79\x4d\x45\x6e')](_0x18ba8b,_0x5c7d7a);},'\x54\x65\x57\x65\x6d':_0xe4941c[_0x28819f(0x563,'\x77\x31\x4b\x6f')]},_0x41b51b=_0x27c80c['\x66\x69\x6c\x74\x65\x72'](function(_0x3a9fc3){const _0x898f78=_0x28819f;return _0x14841f[_0x898f78(0x4ac,'\x33\x68\x30\x5d')](_0x3a9fc3,_0x14841f['\x54\x65\x57\x65\x6d']);})['\x6c\x65\x6e\x67\x74\x68'],_0x55d101=_0xe4941c['\x67\x78\x74\x6c\x41'](_0xe4941c[_0x28819f(0x123,'\x26\x50\x33\x62')](_0x41b51b,_0x2b96e8[_0x28819f(0x42d,'\x77\x31\x4b\x6f')]),0x1ee5+0x1*-0x943+-0x15a2+0.5);_0x5ddae3+=_0x7ce957[_0x28819f(0x603,'\x56\x79\x47\x74')](-(0x1df6+0x5a8+-0x239e+0.06),_0x4f9c5c[_0x28819f(0x1f8,'\x59\x38\x6c\x6d')](0x3*0x74f+-0xc*0x19c+-0x29d+0.06,_0x55d101*(0x24ea+-0x2668+0x17e+0.12)));}}if(!_0x363618)return null;const _0x27246c=_0x2022ef&&_0x2022ef[_0x28819f(0x396,'\x4d\x57\x74\x26')+'\x61\x74']?Date[_0x28819f(0x6d1,'\x76\x54\x52\x77')](_0x2022ef[_0x28819f(0x23f,'\x33\x68\x30\x5d')+'\x61\x74']):NaN,_0x6669a5=_0x363618[_0x28819f(0x6e9,'\x41\x6f\x6d\x77')+'\x61\x74']?Date['\x70\x61\x72\x73\x65'](_0x363618[_0x28819f(0x307,'\x4b\x30\x57\x5b')+'\x61\x74']):NaN;if(!Number[_0x28819f(0x456,'\x55\x4e\x4a\x79')](_0x27246c)||!Number[_0x28819f(0x2e3,'\x35\x6f\x58\x36')](_0x6669a5)||_0xe4941c[_0x28819f(0x186,'\x59\x28\x5e\x71')](_0x6669a5,_0x27246c))return null;const _0xb26ee0=_0x363618[_0x28819f(0x25c,'\x41\x40\x23\x4c')+_0x28819f(0x5d4,'\x39\x29\x37\x66')]?_0xe4941c[_0x28819f(0x3fa,'\x41\x6f\x6d\x77')](String,_0x363618[_0x28819f(0x32e,'\x78\x72\x50\x48')+_0x28819f(0x452,'\x5b\x7a\x6f\x41')]):_0xe4941c[_0x28819f(0x553,'\x58\x45\x24\x5d')];if(_0xe4941c[_0x28819f(0x78d,'\x31\x72\x5d\x55')](_0xb26ee0,_0xe4941c[_0x28819f(0x3d2,'\x4b\x79\x35\x77')])&&_0xe4941c[_0x28819f(0x2e8,'\x6b\x5d\x25\x67')](_0xb26ee0,_0xe4941c[_0x28819f(0x477,'\x30\x6f\x64\x41')]))return null;const _0xa937f8=_0x363618[_0x28819f(0x290,'\x35\x6f\x58\x36')+_0x28819f(0x1a7,'\x59\x38\x6c\x6d')]?_0xe4941c[_0x28819f(0x1ff,'\x76\x4c\x5a\x40')](String,_0x363618[_0x28819f(0x3a0,'\x33\x72\x78\x29')+_0x28819f(0x166,'\x30\x6f\x64\x41')]):null;if(!_0xa937f8)return null;return{'\x72\x65\x75\x73\x65\x64\x5f\x61\x73\x73\x65\x74\x5f\x69\x64':_0xa937f8,'\x72\x65\x75\x73\x65\x64\x5f\x63\x68\x61\x69\x6e\x5f\x69\x64':_0x363618[_0x28819f(0x55d,'\x31\x72\x5d\x55')+'\x68\x61\x69\x6e\x5f\x69\x64']?_0xe4941c[_0x28819f(0x6d7,'\x49\x72\x4c\x4c')](String,_0x363618[_0x28819f(0x27b,'\x49\x72\x4c\x4c')+_0x28819f(0x52f,'\x5a\x4e\x65\x58')]):null,'\x73\x6f\x75\x72\x63\x65\x5f\x74\x79\x70\x65':_0xb26ee0,'\x72\x65\x70\x6f\x72\x74\x65\x64\x5f\x62\x79':_0xe4941c['\x55\x78\x50\x77\x6c'],'\x73\x63\x68\x65\x6d\x61':_0xe4941c[_0x28819f(0x451,'\x56\x79\x47\x74')]};}function _0x22cc94(_0xe235f4,_0x4c6547){const _0x521a93=_0x59595f,_0x543365={'\x44\x6a\x73\x6b\x61':function(_0x16b224,_0xc69b94){return _0x16b224(_0xc69b94);},'\x78\x4d\x4c\x63\x47':function(_0x18d874,_0x2ce08a){return _0x18d874+_0x2ce08a;},'\x72\x68\x4d\x68\x42':_0x521a93(0x5db,'\x68\x63\x62\x6a')},_0xe31adb=_0x5bed8f['\x64\x69\x72\x6e\x61\x6d\x65'](_0xe235f4);_0x543365[_0x521a93(0x351,'\x68\x63\x62\x6a')](_0x1d69a,_0xe31adb),_0x4a4ec7[_0x521a93(0x125,'\x49\x72\x4c\x4c')+_0x521a93(0x21b,'\x26\x50\x33\x62')](_0xe235f4,_0x543365[_0x521a93(0x2e1,'\x35\x6f\x58\x36')](JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](_0x4c6547),'\x0a'),_0x543365[_0x521a93(0x5bd,'\x39\x29\x37\x66')]);}const _0x17e619=-0x5*-0x187d+0x1*-0x54ad+0x4f6c,_0x7f54bc=0x1797+-0x1fe3*0x1+0x116*0x8;let _0x112468=-0x1*0x2f9+-0x17*-0x71+-0x72e,_0x5e0ac9=0x197a+-0x3cd+-0x15ad;function _0x58a920(){const _0xbce4f3=_0x59595f,_0x1b68aa={'\x63\x77\x7a\x78\x76':function(_0x34cae9,_0x5d109d){return _0x34cae9(_0x5d109d);},'\x4c\x58\x57\x65\x6d':'\x74\x72\x75\x65','\x79\x61\x74\x6a\x42':_0xbce4f3(0x339,'\x26\x50\x33\x62'),'\x56\x54\x74\x6c\x58':function(_0x4a4b5c,_0x5386d1){return _0x4a4b5c!==_0x5386d1;},'\x41\x69\x7a\x71\x4a':function(_0xc7708,_0x5806f){return _0xc7708!==_0x5806f;}},_0x5d0a42=_0x1b68aa[_0xbce4f3(0x702,'\x78\x72\x50\x48')](String,process.env.EVOLVER_MEMORY_GRAPH_AUTO_ROTATE??_0x1b68aa[_0xbce4f3(0x659,'\x5b\x7a\x6f\x41')])['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+'\x61\x73\x65']();return _0x5d0a42!==_0x1b68aa['\x79\x61\x74\x6a\x42']&&_0x1b68aa[_0xbce4f3(0x1e2,'\x79\x2a\x55\x2a')](_0x5d0a42,'\x30')&&_0x1b68aa[_0xbce4f3(0x6c5,'\x31\x77\x33\x38')](_0x5d0a42,'\x6e\x6f');}function _0x21ef20(){const _0xa55678=_0x59595f,_0x5228d1={'\x74\x79\x6f\x42\x66':function(_0x49aebd,_0x3596c0){return _0x49aebd(_0x3596c0);},'\x6c\x48\x71\x55\x57':function(_0x2b5da3,_0x1a9cd6){return _0x2b5da3>_0x1a9cd6;},'\x7a\x42\x43\x42\x6f':function(_0xe2c2c0,_0xc5bca1){return _0xe2c2c0*_0xc5bca1;},'\x4b\x47\x58\x69\x72':function(_0x285586,_0x1f7af2){return _0x285586*_0x1f7af2;}},_0xba9a3d=_0x5228d1[_0xa55678(0x1d3,'\x5b\x7a\x6f\x41')](Number,process.env.EVOLVER_MEMORY_GRAPH_MAX_SIZE_MB),_0x344b4d=Number[_0xa55678(0x6cd,'\x76\x4c\x5a\x40')](_0xba9a3d)&&_0x5228d1[_0xa55678(0x376,'\x5a\x4e\x65\x58')](_0xba9a3d,-0x401*0x3+-0x2*-0x793+-0x323*0x1)?_0xba9a3d:-0x4f1+-0x1c3+0x718;return Math[_0xa55678(0x2eb,'\x77\x74\x6a\x7a')](_0x5228d1[_0xa55678(0x3dc,'\x50\x30\x46\x57')](_0x5228d1[_0xa55678(0x1e3,'\x77\x31\x4b\x6f')](_0x344b4d,0x1*-0x25bc+0xfed+-0x1*-0x19cf),0x13e1+-0xb1d+-0x4c4));}function _0x46a8e9(){const _0x32845e=_0x59595f,_0x1776d4={};_0x1776d4['\x4b\x48\x6f\x75\x6d']=function(_0x1aabf5,_0x4f5b4b){return _0x1aabf5>=_0x4f5b4b;};const _0x1577c5=_0x1776d4,_0x5216d6=Number(process.env.EVOLVER_MEMORY_GRAPH_RETENTION_COUNT),_0x1342aa=Number[_0x32845e(0x1d9,'\x41\x40\x23\x4c')](_0x5216d6)&&_0x1577c5['\x4b\x48\x6f\x75\x6d'](_0x5216d6,0x1b4d+-0x7d8*0x1+-0x1375)?Math[_0x32845e(0x142,'\x77\x2a\x69\x63')](_0x5216d6):0x1096+0x1313*0x1+0x2*-0x11d1;return _0x1342aa;}const _0x2b571d=/\.(\d{8,})(?:\.gz)?$/;function _0x413831(_0x343a2d,_0x1220f8){const _0xe8da19=_0x59595f,_0x37d6a3={'\x4b\x53\x72\x50\x66':function(_0x315d97,_0x56ad84){return _0x315d97(_0x56ad84);},'\x49\x6a\x6a\x57\x59':function(_0x3dda1b,_0x39e98c){return _0x3dda1b+_0x39e98c;}};try{const _0x5ede9d=_0x5bed8f[_0xe8da19(0x42e,'\x49\x72\x4c\x4c')](_0x343a2d),_0x1c2b6b=_0x5bed8f[_0xe8da19(0x6e0,'\x59\x38\x6c\x6d')](_0x343a2d),_0x54de30=_0x37d6a3['\x49\x6a\x6a\x57\x59'](_0x1c2b6b,'\x2e'),_0x5cef1c=_0x4a4ec7[_0xe8da19(0x110,'\x5a\x4e\x65\x58')+_0xe8da19(0x24f,'\x33\x37\x26\x37')](_0x5ede9d)['\x66\x69\x6c\x74\x65\x72'](_0x45d734=>_0x45d734[_0xe8da19(0x372,'\x33\x68\x77\x70')+'\x74\x68'](_0x54de30)&&_0x2b571d[_0xe8da19(0x3a1,'\x35\x6f\x58\x36')](_0x45d734))[_0xe8da19(0x23d,'\x75\x37\x24\x32')](_0x589bdc=>{const _0x2d176f=_0xe8da19,_0xb2642b=_0x2b571d[_0x2d176f(0x167,'\x39\x48\x77\x39')](_0x589bdc);return{'\x6e\x61\x6d\x65':_0x589bdc,'\x74\x73':_0xb2642b?_0x37d6a3[_0x2d176f(0x6e2,'\x4b\x30\x57\x5b')](Number,_0xb2642b[-0x685*-0x4+-0x3*0xa2d+-0x4*-0x11d]):-0x1*0x155+0x2*0xb3+-0x11};})[_0xe8da19(0x335,'\x77\x31\x4b\x6f')]((_0x5d053d,_0x48945e)=>_0x48945e['\x74\x73']-_0x5d053d['\x74\x73']),_0x56ad86=_0x5cef1c[_0xe8da19(0x58d,'\x41\x40\x23\x4c')](_0x1220f8);for(const _0x1ef01e of _0x56ad86){try{_0x4a4ec7['\x75\x6e\x6c\x69\x6e\x6b\x53\x79'+'\x6e\x63'](_0x5bed8f[_0xe8da19(0x2ab,'\x78\x72\x50\x48')](_0x5ede9d,_0x1ef01e[_0xe8da19(0x486,'\x68\x63\x62\x6a')]));}catch(_0x1cf5c0){}}}catch(_0x413781){}}function _0x1d1b40(_0x2c0f44){const _0x1f32c7=_0x59595f,_0x465297={'\x69\x43\x61\x51\x6d':function(_0x2b0c5a,_0xd78b53){return _0x2b0c5a&&_0xd78b53;},'\x42\x73\x70\x73\x6c':function(_0x31732a,_0x35da70){return _0x31732a>_0x35da70;},'\x6a\x73\x56\x47\x6a':function(_0xe07f14,_0x126573){return _0xe07f14+_0x126573;},'\x6c\x68\x72\x79\x6b':function(_0x511a6b,_0x3584b5,_0x21f9d2){return _0x511a6b(_0x3584b5,_0x21f9d2);},'\x78\x63\x42\x54\x4f':function(_0x39c1ec,_0x204a33){return _0x39c1ec*_0x204a33;},'\x59\x4c\x6b\x4d\x74':function(_0x3649d3,_0x12d3fd){return _0x3649d3*_0x12d3fd;},'\x5a\x55\x68\x41\x4d':function(_0x152098,_0xa0234b){return _0x152098*_0xa0234b;},'\x6a\x52\x53\x7a\x63':function(_0x251253,_0x2f0b35,_0x21c480){return _0x251253(_0x2f0b35,_0x21c480);},'\x49\x58\x64\x6a\x62':function(_0x32d74c,_0xd7fb8b){return _0x32d74c||_0xd7fb8b;},'\x4b\x66\x55\x4e\x65':function(_0x4e9b1d,_0x167aeb){return _0x4e9b1d(_0x167aeb);},'\x76\x4a\x56\x6b\x62':function(_0x1ca0ec,_0x2f427e){return _0x1ca0ec(_0x2f427e);},'\x4f\x79\x62\x47\x53':function(_0x3f1b06,_0xcee74d,_0x334808){return _0x3f1b06(_0xcee74d,_0x334808);},'\x72\x52\x65\x77\x55':function(_0x6f9889,_0x23b15d){return _0x6f9889!==_0x23b15d;},'\x62\x5a\x48\x6b\x79':_0x1f32c7(0x52b,'\x2a\x35\x6a\x39'),'\x59\x52\x57\x6c\x6e':_0x1f32c7(0x4b5,'\x77\x2a\x69\x63'),'\x48\x43\x72\x51\x45':function(_0x34e5bb,_0x5d009b){return _0x34e5bb*_0x5d009b;},'\x44\x4f\x6c\x4a\x68':_0x1f32c7(0x47b,'\x56\x75\x48\x62'),'\x6b\x76\x6f\x75\x4e':_0x1f32c7(0x637,'\x31\x77\x33\x38'),'\x43\x42\x7a\x72\x56':function(_0x5c31b0,_0xac4d6a){return _0x5c31b0!==_0xac4d6a;},'\x75\x48\x49\x4d\x5a':_0x1f32c7(0x696,'\x33\x72\x78\x29'),'\x46\x6b\x4f\x72\x6e':function(_0x30d7c5,_0x4ed98b,_0x12e42d){return _0x30d7c5(_0x4ed98b,_0x12e42d);},'\x4d\x79\x45\x57\x76':function(_0xfc928d){return _0xfc928d();}};let _0x4d8a4b=null;try{if(_0x465297[_0x1f32c7(0x3cf,'\x69\x79\x38\x63')](_0x1f32c7(0x1b7,'\x33\x68\x30\x5d'),_0x465297[_0x1f32c7(0x63d,'\x50\x30\x46\x57')])){if(!_0x4a4ec7[_0x1f32c7(0x21f,'\x32\x43\x23\x6b')+'\x6e\x63'](_0x2c0f44))return null;const _0x5d847b=new Date()[_0x1f32c7(0x2d8,'\x31\x72\x5d\x55')+_0x1f32c7(0x2ff,'\x33\x68\x77\x70')]()[_0x1f32c7(0x317,'\x5b\x7a\x6f\x41')](/[^0-9]/g,'')[_0x1f32c7(0x394,'\x2a\x35\x6a\x39')](-0x1*0xc01+-0x109d+0x1c9e,-0x15dd+-0x3*-0x4c1+-0x8*-0xf5),_0x22a02b=_0x2c0f44+'\x2e'+_0x5d847b;_0x4a4ec7[_0x1f32c7(0x737,'\x50\x30\x46\x57')+'\x6e\x63'](_0x2c0f44,_0x22a02b),_0x4d8a4b=_0x22a02b;try{const _0x1bd6ae=_0x465297[_0x1f32c7(0x735,'\x39\x48\x77\x39')](require,_0x465297[_0x1f32c7(0x630,'\x50\x30\x46\x57')]),_0x449b47=Number(process.env.EVOLVER_ROTATE_GZIP_MAX_MB),_0xab20bc=Number[_0x1f32c7(0x1d9,'\x41\x40\x23\x4c')](_0x449b47)&&_0x449b47>0x29*0x7+-0x314*0xb+-0x121*-0x1d?Math['\x66\x6c\x6f\x6f\x72'](_0x465297['\x5a\x55\x68\x41\x4d'](_0x449b47*(0x1c6c+-0x1*-0xa9f+0x230b*-0x1),-0x2*0xf09+-0xa01*0x1+0x1*0x2c13)):_0x465297[_0x1f32c7(0x1ac,'\x69\x79\x38\x63')]((0x20*-0x11a+0x14ca+0xe96*0x1)*(-0x1bb6+-0x719+0x1*0x26cf),-0xdb+0x1*0x1f1a+0x1*-0x1a3f);let _0x1edd45=![];try{if(_0x465297[_0x1f32c7(0x65a,'\x75\x48\x79\x40')]===_0x465297[_0x1f32c7(0x72d,'\x56\x79\x47\x74')])return _0x1b71e5[_0x1f32c7(0x533,'\x77\x74\x6a\x7a')]()[_0x1f32c7(0x65f,'\x56\x75\x48\x62')](_0x1f32c7(0x26f,'\x78\x38\x5e\x36')+_0x1f32c7(0x215,'\x50\x30\x46\x57'))[_0x1f32c7(0x71b,'\x75\x48\x79\x40')]()[_0x1f32c7(0x13c,'\x32\x43\x23\x6b')+'\x74\x6f\x72'](_0x56cf87)['\x73\x65\x61\x72\x63\x68'](_0x1f32c7(0x327,'\x69\x79\x38\x63')+_0x1f32c7(0x484,'\x78\x30\x59\x23'));else{const _0x50bf34=_0x4a4ec7[_0x1f32c7(0x362,'\x30\x6f\x64\x41')](_0x22a02b);if(_0x465297[_0x1f32c7(0x2cd,'\x4b\x30\x57\x5b')](_0x50bf34[_0x1f32c7(0x512,'\x33\x37\x26\x37')],_0xab20bc))_0x1edd45=!![];}}catch(_0x40b18c){}if(!_0x1edd45){if(_0x465297[_0x1f32c7(0x368,'\x79\x4d\x45\x6e')](_0x465297[_0x1f32c7(0x23e,'\x69\x79\x38\x63')],_0x465297[_0x1f32c7(0x413,'\x32\x4e\x4a\x4d')])){let _0x38d55c;if(_0x465297[_0x1f32c7(0x664,'\x45\x72\x73\x51')](_0x45c2fb,_0x7674a0)&&_0x465297[_0x1f32c7(0x29f,'\x79\x2a\x55\x2a')](_0x465297[_0x1f32c7(0x685,'\x58\x45\x24\x5d')](_0x49b289[_0x1f32c7(0x2b6,'\x4b\x30\x57\x5b')],_0x369876[_0x1f32c7(0x295,'\x77\x74\x6a\x7a')]),0xd*-0x91+0x1a69+-0x2e*0x6a)){const _0x4edb6c={};_0x4edb6c[_0x1f32c7(0x73d,'\x77\x28\x7a\x39')+_0x1f32c7(0x311,'\x6d\x78\x46\x74')]=0x1e;const _0x55f8a0=_0x465297[_0x1f32c7(0x137,'\x59\x38\x6c\x6d')](_0x4ef415,_0xb46f38,_0x4edb6c);_0x38d55c=_0x465297[_0x1f32c7(0x472,'\x6b\x5d\x25\x67')](_0x55f8a0['\x76\x61\x6c\x75\x65'],_0x26ee19[_0x1f32c7(0x47c,'\x5a\x4e\x65\x58')]);}else{const _0x3d72b9={};_0x3d72b9['\x68\x61\x6c\x66\x5f\x6c\x69\x66'+'\x65\x5f\x64\x61\x79\x73']=0x1e;const _0x3fba8a=_0x4e09d0(_0x570428,_0x3d72b9);let _0x4420b7=-0xf79+0x3d*-0x47+-0x1*-0x2065;if(_0x11f523)_0x4420b7=_0x1b3abd;_0x38d55c=_0x465297[_0x1f32c7(0x363,'\x69\x79\x38\x63')](_0x465297[_0x1f32c7(0x5cb,'\x4b\x79\x35\x77')](_0x3fba8a[_0x1f32c7(0x261,'\x5b\x7a\x6f\x41')],_0x596c7e[_0x1f32c7(0x291,'\x78\x30\x59\x23')]),_0x4420b7);}const _0x5d4605={};_0x5d4605[_0x1f32c7(0x586,'\x75\x37\x24\x32')+'\x65\x5f\x64\x61\x79\x73']=0x1e;const _0x315825=_0x465297['\x6a\x52\x53\x7a\x63'](_0x47f9ad,_0x43fc5d,_0x5d4605);if(_0x465297[_0x1f32c7(0x4e3,'\x33\x37\x26\x37')](_0x38d55c,_0x487038[_0x1f32c7(0x765,'\x33\x37\x26\x37')]))_0x58c6f6[_0x1f32c7(0x223,'\x59\x28\x5e\x71')]=_0x38d55c;_0x2f8da5[_0x1f32c7(0x57d,'\x39\x48\x77\x39')]=_0x2e7e2b[_0x1f32c7(0x385,'\x32\x43\x23\x6b')](_0x505d53[_0x1f32c7(0x3c0,'\x33\x37\x26\x37')],_0x315825[_0x1f32c7(0x266,'\x58\x45\x24\x5d')]);const _0x148813={};_0x148813['\x73\x75\x63\x63\x65\x73\x73']=0x0,_0x148813[_0x1f32c7(0x662,'\x41\x6f\x6d\x77')]=0x0,_0x148813[_0x1f32c7(0x785,'\x78\x30\x59\x23')]=0x0,_0x148813[_0x1f32c7(0x2fa,'\x4b\x79\x35\x77')+_0x1f32c7(0x5f2,'\x6d\x78\x46\x74')+'\x74']=0x0;const _0x4ec520=_0x465297[_0x1f32c7(0x43e,'\x2a\x35\x6a\x39')](_0x4778c5,_0x148813);_0x5b6f24[_0x1f32c7(0x281,'\x77\x31\x4b\x6f')+'\x73\x73']+=_0x465297[_0x1f32c7(0x5ee,'\x39\x29\x37\x66')](_0x4fb3c9,_0x4ec520[_0x1f32c7(0x4ca,'\x31\x77\x33\x38')])||0x1a25+0x6d*-0x59+0x5e0*0x2,_0x2d3753[_0x1f32c7(0x3d5,'\x31\x77\x33\x38')]+=_0x465297[_0x1f32c7(0x149,'\x58\x45\x24\x5d')](_0x3d6f5e,_0x4ec520[_0x1f32c7(0x3d0,'\x32\x43\x23\x6b')])||0x13a*-0x11+-0x9*0x322+0x310c;if(_0x46c41a[_0x1f32c7(0x29c,'\x56\x75\x48\x62')]>=-0x162f+-0x2*-0x1119+-0xc03*0x1+0.8){const _0x497c8f=_0x465297['\x6a\x73\x56\x47\x6a'](_0x465297[_0x1f32c7(0x51a,'\x77\x2a\x69\x63')](_0x2ff34f,_0x4ec520['\x73\x75\x63\x63\x65\x73\x73'])||-0x2*0x115a+-0x1090+0x3344,_0x465297['\x4b\x66\x55\x4e\x65'](_0x10a608,_0x4ec520[_0x1f32c7(0x3d7,'\x77\x2a\x69\x63')])||0xcd8+0x1*0x7b+-0x17b*0x9);_0x5ca1f8[_0x1f32c7(0x303,'\x77\x2a\x69\x63')+_0x1f32c7(0x28f,'\x78\x30\x59\x23')]+=_0x497c8f,_0x31db39['\x69\x6e\x65\x72\x74']+=_0x465297[_0x1f32c7(0x248,'\x78\x30\x59\x23')](_0x598594,_0x4ec520['\x69\x6e\x65\x72\x74'])||-0x24bf+-0x1*0x1d23+0x41e2,_0x53ed48[_0x1f32c7(0x724,'\x41\x6f\x6d\x77')+_0x1f32c7(0x686,'\x31\x77\x33\x38')]=_0x3baa07[_0x1f32c7(0x22a,'\x31\x72\x5d\x55')](_0x93203[_0x1f32c7(0x2b9,'\x4b\x30\x57\x5b')+_0x1f32c7(0x2d1,'\x6d\x78\x46\x74')],_0x465297['\x76\x4a\x56\x6b\x62'](_0x41a097,_0x4ec520[_0x1f32c7(0x62a,'\x31\x77\x33\x38')+_0x1f32c7(0x224,'\x79\x2a\x55\x2a')+'\x74'])||-0x184a+-0xd5*-0x8+0x11a2);}_0x47dba1+=_0x315825['\x74\x6f\x74\x61\x6c'];}else{const _0x5cb62e=_0x4a4ec7[_0x1f32c7(0x75e,'\x79\x2a\x55\x2a')+_0x1f32c7(0x130,'\x77\x74\x6a\x7a')](_0x22a02b),_0x578ccb=_0x1bd6ae[_0x1f32c7(0x6e3,'\x59\x28\x5e\x71')](_0x5cb62e);_0x4a4ec7[_0x1f32c7(0x212,'\x4b\x30\x57\x5b')+_0x1f32c7(0x66a,'\x39\x48\x77\x39')](_0x22a02b+_0x1f32c7(0x48f,'\x50\x30\x46\x57'),_0x578ccb),_0x4a4ec7['\x75\x6e\x6c\x69\x6e\x6b\x53\x79'+'\x6e\x63'](_0x22a02b),_0x4d8a4b=_0x22a02b+_0x1f32c7(0x680,'\x35\x6f\x58\x36');}}}catch(_0x134b1e){}_0x465297[_0x1f32c7(0x2fc,'\x79\x4d\x45\x6e')](_0x413831,_0x2c0f44,_0x465297['\x4d\x79\x45\x57\x76'](_0x46a8e9));}else{const _0x4b0326={};_0x4b0326[_0x1f32c7(0x73d,'\x77\x28\x7a\x39')+'\x65\x5f\x64\x61\x79\x73']=0x2d;const _0x21db0c=_0x465297[_0x1f32c7(0x729,'\x31\x72\x5d\x55')](_0x52f4d4,_0x5b6f96,_0x4b0326);let _0x20bd42=-0x2*-0xe87+0x125+-0x305*0xa;if(_0x58ea07)_0x20bd42=_0x217deb;_0x32a681=_0x21db0c[_0x1f32c7(0x12d,'\x2a\x35\x6a\x39')]*_0x20bd42;}}catch(_0x14a47d){}return _0x4d8a4b;}function _0x9c42(_0x4409f8,_0x39e8e0){_0x4409f8=_0x4409f8-(-0xeee+0x1360+-0x363*0x1);const _0x2e3560=_0x2b6e();let _0x3d9a33=_0x2e3560[_0x4409f8];if(_0x9c42['\x75\x4e\x65\x66\x78\x61']===undefined){var _0x294589=function(_0x5c7696){const _0x4e22e1='\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 _0x524f07='',_0x37c4cb='',_0x579193=_0x524f07+_0x294589,_0xa6012f=(''+function(){return 0xc2*-0x29+-0x29*-0xce+-0x52*0x6;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0xd96*0x1+-0xc1*0x16+-0x301*-0x1);for(let _0x47f92c=0x1471*0x1+0x1655+0x19*-0x1b6,_0x417967,_0x5e4cad,_0x15f43c=-0x1d32+0x1*-0x63a+0x236c;_0x5e4cad=_0x5c7696['\x63\x68\x61\x72\x41\x74'](_0x15f43c++);~_0x5e4cad&&(_0x417967=_0x47f92c%(0x1*-0x18bb+-0xfdd+0x289c)?_0x417967*(0x217f+-0x134d+0x7*-0x1fe)+_0x5e4cad:_0x5e4cad,_0x47f92c++%(0x3*-0x541+-0x1e4+0x11ab))?_0x524f07+=_0xa6012f||_0x579193['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x15f43c+(0x1e37+-0x27*0xce+0x135))-(0x266a+-0x15f3+0x106d*-0x1)!==0x8f7*0x2+0x2*0x103f+-0x326c?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x63b*-0x1+-0xf*0x23e+0x1c66&_0x417967>>(-(0xb8f+-0x219c+0x160f)*_0x47f92c&0x14e1+0x239*-0xd+0x80a)):_0x47f92c:-0xb70+0x7e*-0x49+-0x56*-0x8d){_0x5e4cad=_0x4e22e1['\x69\x6e\x64\x65\x78\x4f\x66'](_0x5e4cad);}for(let _0x397a67=-0x16cb+0x0+0x16cb,_0xbe1b2c=_0x524f07['\x6c\x65\x6e\x67\x74\x68'];_0x397a67<_0xbe1b2c;_0x397a67++){_0x37c4cb+='\x25'+('\x30\x30'+_0x524f07['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x397a67)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x143a*0x1+-0x1e2e+0xa04))['\x73\x6c\x69\x63\x65'](-(-0xd3f+-0x1c0d+0x137*0x22));}return decodeURIComponent(_0x37c4cb);};const _0x518daf=function(_0x3dd939,_0x114c73){let _0x517576=[],_0x39b11e=0x2070+-0x3d*-0x98+0x34*-0x152,_0x5e9629,_0x34d077='';_0x3dd939=_0x294589(_0x3dd939);let _0xd3b62;for(_0xd3b62=-0xbd7+-0x266*0x10+-0xf*-0x359;_0xd3b62<0x24a+0x587+-0x6d1;_0xd3b62++){_0x517576[_0xd3b62]=_0xd3b62;}for(_0xd3b62=-0x7ec+-0x3*-0x17+0x7a7;_0xd3b62<-0x1*0x26e+-0xa5d*-0x2+-0x1ec*0x9;_0xd3b62++){_0x39b11e=(_0x39b11e+_0x517576[_0xd3b62]+_0x114c73['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xd3b62%_0x114c73['\x6c\x65\x6e\x67\x74\x68']))%(-0x24d9*0x1+0x26e2+-0x109),_0x5e9629=_0x517576[_0xd3b62],_0x517576[_0xd3b62]=_0x517576[_0x39b11e],_0x517576[_0x39b11e]=_0x5e9629;}_0xd3b62=-0x1231+0x68+0x11c9,_0x39b11e=0x9fc+0x1024+-0x1a20;for(let _0x5c0111=-0x1043+0xa7d+0x5c6;_0x5c0111<_0x3dd939['\x6c\x65\x6e\x67\x74\x68'];_0x5c0111++){_0xd3b62=(_0xd3b62+(-0x1507*-0x1+0x2*0xa75+-0x4*0xa7c))%(-0x1*-0x1052+0x2*-0xbd3+-0x29*-0x34),_0x39b11e=(_0x39b11e+_0x517576[_0xd3b62])%(-0x5*-0x1e+0xb29+-0x83*0x15),_0x5e9629=_0x517576[_0xd3b62],_0x517576[_0xd3b62]=_0x517576[_0x39b11e],_0x517576[_0x39b11e]=_0x5e9629,_0x34d077+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x3dd939['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5c0111)^_0x517576[(_0x517576[_0xd3b62]+_0x517576[_0x39b11e])%(-0xb43+-0x2*0xce3+0x2ed*0xd)]);}return _0x34d077;};_0x9c42['\x6f\x68\x53\x56\x4c\x75']=_0x518daf,_0x9c42['\x6f\x4c\x4f\x6c\x4a\x6f']={},_0x9c42['\x75\x4e\x65\x66\x78\x61']=!![];}const _0x1936e7=_0x2e3560[-0xf09*0x2+0x2693+0x1*-0x881],_0xb6f6e2=_0x4409f8+_0x1936e7,_0x424ca1=_0x9c42['\x6f\x4c\x4f\x6c\x4a\x6f'][_0xb6f6e2];if(!_0x424ca1){if(_0x9c42['\x4b\x7a\x48\x41\x4c\x57']===undefined){const _0x4d6cd0=function(_0x1b842f){this['\x6b\x76\x79\x41\x78\x76']=_0x1b842f,this['\x70\x5a\x4b\x76\x55\x6b']=[0x1ac9+-0x1*-0x1b0c+0x562*-0xa,0xb8c+0xc45+-0x1d5*0xd,-0x1*-0x704+-0x4df+0xb7*-0x3],this['\x63\x78\x54\x45\x74\x62']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x6b\x65\x65\x76\x56\x57']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x46\x53\x68\x4e\x76\x61']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x4d6cd0['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x76\x48\x70\x77\x4f\x62']=function(){const _0x4f4b60=new RegExp(this['\x6b\x65\x65\x76\x56\x57']+this['\x46\x53\x68\x4e\x76\x61']),_0x596a3f=_0x4f4b60['\x74\x65\x73\x74'](this['\x63\x78\x54\x45\x74\x62']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x70\x5a\x4b\x76\x55\x6b'][0xe5*0xe+0x4*-0x1cf+0x7b*-0xb]:--this['\x70\x5a\x4b\x76\x55\x6b'][0x2*-0x3a7+-0x23a1*0x1+-0x1d*-0x17b];return this['\x77\x4a\x4a\x4f\x43\x57'](_0x596a3f);},_0x4d6cd0['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x77\x4a\x4a\x4f\x43\x57']=function(_0x332459){if(!Boolean(~_0x332459))return _0x332459;return this['\x4d\x41\x66\x42\x59\x6f'](this['\x6b\x76\x79\x41\x78\x76']);},_0x4d6cd0['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4d\x41\x66\x42\x59\x6f']=function(_0x19c764){for(let _0x787fe4=-0x249e+0x121*0x13+0xf2b*0x1,_0x52b033=this['\x70\x5a\x4b\x76\x55\x6b']['\x6c\x65\x6e\x67\x74\x68'];_0x787fe4<_0x52b033;_0x787fe4++){this['\x70\x5a\x4b\x76\x55\x6b']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x52b033=this['\x70\x5a\x4b\x76\x55\x6b']['\x6c\x65\x6e\x67\x74\x68'];}return _0x19c764(this['\x70\x5a\x4b\x76\x55\x6b'][-0x107b*-0x2+0x28*-0x53+-0x355*0x6]);},(''+function(){return 0x2*-0x1261+0x26ad+-0x1eb;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x308*-0x5+-0x84b*0x3+0x52*0x7d)&&new _0x4d6cd0(_0x9c42)['\x76\x48\x70\x77\x4f\x62'](),_0x9c42['\x4b\x7a\x48\x41\x4c\x57']=!![];}_0x3d9a33=_0x9c42['\x6f\x68\x53\x56\x4c\x75'](_0x3d9a33,_0x39e8e0),_0x9c42['\x6f\x4c\x4f\x6c\x4a\x6f'][_0xb6f6e2]=_0x3d9a33;}else _0x3d9a33=_0x424ca1;return _0x3d9a33;}function _0x56911b(_0x4af6cb,{force:force=![]}={}){const _0x2abccd=_0x59595f,_0x15941e={'\x4a\x66\x51\x71\x56':function(_0x781059,_0x46dd24){return _0x781059(_0x46dd24);},'\x71\x43\x64\x42\x79':function(_0x13423e){return _0x13423e();},'\x42\x6f\x4a\x61\x56':function(_0x38e7fb,_0x4443b8){return _0x38e7fb<_0x4443b8;},'\x41\x56\x51\x4d\x6c':function(_0x1db6ad,_0x23ab3f){return _0x1db6ad<_0x23ab3f;},'\x62\x4c\x4b\x62\x62':function(_0xdba965,_0x50798c){return _0xdba965-_0x50798c;},'\x51\x75\x4e\x78\x78':function(_0x14ca69,_0x1ad55c){return _0x14ca69===_0x1ad55c;},'\x6c\x58\x68\x6b\x47':_0x2abccd(0x441,'\x4b\x30\x57\x5b'),'\x51\x6d\x49\x5a\x6a':_0x2abccd(0x236,'\x6b\x5d\x25\x67'),'\x6a\x72\x7a\x7a\x69':function(_0x4efff2){return _0x4efff2();},'\x43\x52\x63\x59\x50':function(_0x13a257,_0x4debff){return _0x13a257(_0x4debff);}};if(!_0x15941e[_0x2abccd(0x544,'\x30\x6f\x64\x41')](_0x58a920))return null;_0x5e0ac9+=0x2*0xe9+-0xce1+0xb10;const _0x299f65=Date[_0x2abccd(0x55a,'\x75\x48\x79\x40')]();if(!force&&_0x15941e[_0x2abccd(0x564,'\x32\x4e\x4a\x4d')](_0x5e0ac9,_0x7f54bc)&&_0x15941e[_0x2abccd(0x210,'\x38\x62\x4a\x6d')](_0x15941e[_0x2abccd(0x45f,'\x39\x29\x37\x66')](_0x299f65,_0x112468),_0x17e619)){if(_0x15941e[_0x2abccd(0x588,'\x31\x72\x5d\x55')](_0x15941e[_0x2abccd(0x4d2,'\x47\x78\x79\x65')],_0x15941e[_0x2abccd(0x3d8,'\x2a\x35\x6a\x39')]))return null;else _0x2a2406[_0x2abccd(0x61c,'\x35\x6f\x58\x36')+'\x63'](_0x2906d5);}_0x5e0ac9=-0xc1b+-0x1c80+0x289b,_0x112468=_0x299f65;try{if(_0x15941e[_0x2abccd(0x30c,'\x59\x28\x5e\x71')]===_0x15941e[_0x2abccd(0x54f,'\x76\x54\x52\x77')]){if(!_0x4a4ec7[_0x2abccd(0x677,'\x69\x79\x38\x63')+'\x6e\x63'](_0x4af6cb))return null;const _0x34c484=_0x4a4ec7[_0x2abccd(0x252,'\x56\x79\x47\x74')](_0x4af6cb);if(_0x15941e[_0x2abccd(0x511,'\x68\x63\x62\x6a')](_0x34c484[_0x2abccd(0x4e7,'\x6d\x78\x46\x74')],_0x15941e[_0x2abccd(0x2a5,'\x41\x6f\x6d\x77')](_0x21ef20)))return null;return _0x15941e[_0x2abccd(0x778,'\x32\x4e\x4a\x4d')](_0x1d1b40,_0x4af6cb);}else{const _0x5aded9=_0x15941e[_0x2abccd(0x7a2,'\x68\x63\x62\x6a')](_0x23640b,_0x5a59c6);if(!_0x1b3b22[_0x2abccd(0x2c6,'\x77\x74\x6a\x7a')](_0x5aded9))return 0x2704+0x2512+0x4c16*-0x1;return _0x2b5c67[_0x2abccd(0x164,'\x77\x2a\x69\x63')](-0x15a4+0x1b69+-0x5c5*0x1,_0x1ccc44[_0x2abccd(0x35d,'\x78\x38\x5e\x36')](0x6fd+0xb14+0x1*-0x1210,_0x5aded9));}}catch(_0x5c673b){return null;}}function _0x366c34(){const _0x5c19b3=_0x59595f,_0x39b6c3={'\x74\x5a\x52\x47\x53':function(_0x206891,_0x4f1b6d){return _0x206891>=_0x4f1b6d;},'\x71\x50\x43\x44\x44':function(_0x1dd2dd,_0x37628d){return _0x1dd2dd(_0x37628d);}};try{if(!_0x58a920())return;const _0x491221=_0xcc5be9();if(!_0x4a4ec7[_0x5c19b3(0x5b9,'\x55\x4e\x4a\x79')+'\x6e\x63'](_0x491221))return;const _0xa19509=_0x4a4ec7[_0x5c19b3(0x2ca,'\x41\x40\x23\x4c')](_0x491221);_0x39b6c3['\x74\x5a\x52\x47\x53'](_0xa19509['\x73\x69\x7a\x65'],_0x21ef20())&&_0x39b6c3[_0x5c19b3(0x319,'\x77\x28\x7a\x39')](_0x1d1b40,_0x491221);}catch(_0x359a78){}}_0x366c34();const _0x3bcfb1=new Set([_0x59595f(0x133,'\x33\x68\x77\x70'),_0x59595f(0x4c8,'\x79\x4d\x45\x6e')+'\x6f\x6e',_0x59595f(0x716,'\x59\x28\x5e\x71')+'\x69\x74',_0x59595f(0x676,'\x6d\x78\x46\x74'),_0x59595f(0x2db,'\x33\x37\x26\x37')+_0x59595f(0x73f,'\x47\x78\x79\x65'),_0x59595f(0x4b4,'\x35\x6f\x58\x36')]);function _0x2b6e(){const _0x5eb73b=['\x57\x52\x33\x63\x4d\x49\x61\x51\x67\x43\x6f\x52\x67\x6d\x6f\x48','\x57\x4f\x70\x64\x51\x53\x6f\x79\x62\x38\x6f\x65\x67\x4b\x79\x49','\x75\x6d\x6f\x75\x78\x59\x4b\x66\x69\x38\x6b\x4e','\x6c\x31\x6c\x63\x52\x4b\x69\x43\x63\x47','\x57\x51\x46\x64\x4c\x38\x6f\x49\x6d\x71','\x57\x4f\x70\x64\x55\x43\x6f\x64\x61\x53\x6f\x75\x67\x47','\x57\x51\x64\x63\x51\x71\x66\x7a\x6b\x53\x6f\x45\x57\x52\x38\x49','\x57\x4f\x70\x64\x56\x72\x47\x49\x57\x4f\x79\x6e\x57\x35\x79\x77','\x57\x51\x64\x63\x56\x72\x35\x42\x77\x61\x70\x63\x50\x71','\x57\x52\x4a\x64\x51\x6d\x6b\x5a\x44\x53\x6b\x4b\x43\x63\x6c\x64\x4f\x71','\x57\x50\x35\x46\x62\x71','\x57\x51\x33\x63\x55\x62\x44\x4e\x6c\x53\x6f\x6a\x57\x52\x35\x4d','\x57\x35\x4f\x58\x57\x51\x69\x59\x57\x50\x6e\x43\x57\x34\x52\x64\x51\x47','\x61\x53\x6b\x79\x78\x4a\x56\x63\x53\x53\x6b\x6b\x57\x50\x74\x64\x4f\x71','\x57\x4f\x4b\x4b\x57\x52\x48\x4b\x68\x57','\x57\x50\x78\x64\x55\x43\x6f\x71\x65\x6d\x6f\x32','\x6f\x43\x6b\x43\x45\x4a\x2f\x63\x54\x47','\x57\x4f\x42\x64\x52\x62\x37\x64\x55\x67\x47','\x57\x50\x38\x52\x57\x34\x69','\x79\x71\x72\x64\x57\x34\x53\x75\x57\x4f\x47\x72\x57\x36\x43','\x57\x4f\x6e\x63\x57\x34\x6e\x4f\x44\x71','\x57\x35\x4e\x63\x53\x4a\x46\x64\x54\x53\x6f\x53\x71\x33\x76\x33','\x7a\x59\x75\x6f\x57\x4f\x30\x36\x57\x35\x6c\x64\x51\x57','\x57\x34\x4b\x65\x57\x37\x5a\x64\x49\x6d\x6b\x73','\x7a\x73\x6a\x76\x41\x58\x64\x64\x56\x43\x6b\x67\x72\x61','\x57\x51\x39\x56\x57\x37\x31\x63\x46\x47','\x57\x50\x50\x4c\x57\x50\x57\x79\x57\x4f\x6a\x74\x57\x34\x65','\x57\x37\x4a\x64\x51\x43\x6b\x6e\x75\x61','\x57\x50\x71\x4c\x57\x4f\x58\x75\x63\x62\x66\x79\x67\x61','\x57\x50\x7a\x44\x57\x35\x39\x6d\x42\x57\x53\x76\x62\x47','\x57\x52\x42\x63\x52\x71\x76\x6b\x6b\x53\x6f\x69\x57\x4f\x58\x52','\x57\x51\x68\x63\x50\x58\x30','\x41\x4a\x48\x46\x74\x71\x57','\x57\x35\x66\x66\x7a\x47','\x7a\x53\x6b\x36\x57\x50\x2f\x64\x55\x71\x47','\x57\x51\x6a\x4f\x6b\x61','\x42\x38\x6b\x41\x57\x51\x37\x63\x55\x53\x6f\x37','\x57\x50\x61\x41\x43\x4a\x47\x51\x6c\x38\x6b\x4d\x57\x52\x61','\x57\x4f\x6e\x30\x57\x51\x53\x64\x68\x62\x61','\x57\x36\x4b\x77\x57\x37\x56\x64\x4e\x6d\x6b\x62','\x76\x38\x6b\x73\x66\x6d\x6b\x6f\x57\x36\x75','\x42\x43\x6f\x6e\x41\x71\x53\x52','\x57\x52\x44\x2f\x61\x6d\x6b\x6e\x57\x36\x47','\x57\x34\x4c\x4c\x45\x43\x6b\x6b\x44\x61','\x57\x36\x70\x63\x49\x4a\x33\x64\x50\x53\x6f\x30','\x57\x4f\x78\x64\x56\x43\x6f\x71\x61\x43\x6f\x33\x62\x30\x6d\x4f','\x57\x52\x42\x63\x52\x61\x44\x42\x6f\x38\x6f\x69\x57\x51\x47','\x57\x36\x58\x48\x72\x6d\x6b\x52\x75\x71','\x57\x51\x76\x49\x64\x33\x56\x64\x56\x63\x6d\x4f\x45\x47','\x57\x36\x34\x4c\x57\x35\x57','\x62\x31\x61\x2f\x57\x34\x44\x71\x57\x51\x70\x64\x54\x71','\x57\x4f\x37\x64\x53\x59\x2f\x64\x4f\x31\x5a\x63\x4a\x43\x6f\x71','\x79\x67\x6c\x63\x54\x75\x46\x64\x4b\x4e\x46\x63\x52\x53\x6b\x6b','\x57\x4f\x44\x4b\x57\x52\x75\x42','\x57\x37\x68\x64\x54\x68\x68\x63\x4b\x65\x58\x2f','\x6a\x63\x2f\x64\x47\x65\x48\x77','\x57\x35\x4b\x45\x45\x65\x4a\x64\x47\x53\x6b\x45\x57\x35\x38','\x57\x51\x2f\x63\x56\x49\x4f\x58\x65\x53\x6f\x61','\x46\x6d\x6f\x56\x57\x4f\x4f\x53','\x57\x50\x43\x59\x57\x4f\x76\x68\x6e\x61\x62\x7a\x68\x61','\x57\x51\x33\x64\x52\x73\x43\x42\x57\x4f\x75','\x57\x4f\x4e\x63\x4f\x63\x33\x63\x4c\x61\x57','\x57\x4f\x68\x64\x56\x57\x6d\x45\x57\x50\x61','\x6d\x31\x70\x63\x54\x30\x69\x64','\x57\x51\x64\x63\x52\x43\x6f\x61\x41\x61','\x7a\x64\x6d\x43\x57\x4f\x53','\x74\x63\x66\x48\x44\x64\x74\x64\x49\x33\x61','\x57\x52\x2f\x64\x51\x43\x6f\x49\x65\x43\x6f\x76','\x72\x53\x6f\x75\x74\x61\x57\x4d','\x57\x52\x64\x64\x51\x71\x34','\x42\x53\x6f\x53\x76\x47\x6d\x4e','\x76\x38\x6f\x70\x75\x73\x61\x64\x6b\x53\x6b\x4d\x44\x71','\x57\x52\x42\x63\x51\x43\x6f\x61\x44\x73\x52\x63\x4b\x6d\x6b\x30\x77\x57','\x70\x53\x6f\x57\x57\x50\x39\x53\x57\x51\x62\x4f\x57\x50\x65','\x57\x37\x5a\x64\x4d\x53\x6b\x44\x78\x38\x6b\x66','\x57\x34\x31\x41\x45\x43\x6b\x70\x79\x47','\x7a\x58\x4c\x47\x57\x35\x79\x38\x57\x4f\x34\x6d\x57\x35\x65','\x71\x6d\x6f\x63\x6b\x53\x6f\x61\x57\x4f\x74\x64\x47\x61\x37\x63\x4d\x47','\x72\x75\x44\x35\x57\x4f\x5a\x64\x4e\x71','\x41\x57\x7a\x32\x72\x49\x47','\x57\x4f\x5a\x64\x56\x38\x6f\x77\x76\x38\x6f\x38\x57\x35\x30','\x61\x65\x30\x79\x57\x34\x48\x47','\x65\x6d\x6f\x46\x57\x51\x4f\x4c\x79\x38\x6b\x41\x79\x57','\x57\x4f\x38\x2b\x72\x74\x57\x61','\x57\x52\x39\x5a\x6e\x43\x6f\x54\x57\x34\x34','\x57\x52\x31\x30\x57\x34\x62\x44\x46\x61','\x41\x5a\x35\x4e\x57\x37\x71\x68','\x74\x74\x31\x6b\x75\x5a\x71','\x6b\x53\x6f\x36\x43\x43\x6b\x6c\x70\x4d\x42\x63\x4c\x4e\x34','\x6f\x53\x6f\x44\x57\x51\x30\x57\x7a\x47','\x6e\x53\x6f\x78\x57\x52\x50\x6f\x57\x37\x61','\x42\x38\x6b\x47\x57\x52\x64\x63\x55\x43\x6f\x6e','\x57\x37\x33\x64\x50\x38\x6b\x6b\x77\x53\x6b\x37\x57\x50\x78\x64\x53\x57\x4f','\x57\x51\x74\x64\x54\x71\x68\x64\x47\x6d\x6f\x51','\x57\x35\x4b\x55\x57\x35\x37\x64\x56\x6d\x6b\x34','\x45\x47\x76\x51\x57\x35\x61\x4c\x57\x4f\x69\x6b\x57\x37\x43','\x42\x73\x2f\x63\x51\x43\x6f\x42','\x41\x53\x6b\x52\x57\x4f\x52\x63\x4f\x38\x6f\x57','\x41\x4b\x48\x4b\x57\x51\x74\x64\x52\x74\x43','\x57\x36\x37\x64\x51\x43\x6b\x77\x74\x38\x6b\x33','\x69\x6d\x6f\x79\x57\x51\x76\x33\x57\x51\x30','\x57\x51\x6a\x48\x57\x52\x30\x4e\x57\x50\x4f','\x57\x52\x7a\x4f\x6d\x4d\x52\x64\x4b\x73\x4b\x4e\x41\x71','\x57\x52\x64\x63\x4b\x5a\x56\x63\x53\x74\x30','\x43\x59\x6d\x42\x57\x51\x30\x6b\x57\x35\x56\x64\x56\x43\x6f\x45','\x57\x52\x52\x64\x4a\x57\x5a\x64\x54\x67\x69','\x74\x4e\x72\x50\x57\x4f\x33\x64\x49\x61','\x57\x4f\x7a\x7a\x57\x37\x54\x53\x74\x61','\x69\x71\x2f\x64\x47\x32\x7a\x6e\x73\x49\x4b','\x7a\x57\x68\x63\x4f\x43\x6f\x46\x6e\x43\x6b\x5a','\x72\x78\x39\x6e\x57\x51\x46\x64\x52\x61','\x71\x53\x6f\x4f\x78\x64\x75\x31','\x57\x50\x54\x2b\x57\x51\x4b\x64\x6e\x57\x44\x43\x57\x51\x57','\x57\x52\x54\x42\x67\x38\x6b\x4a\x57\x34\x37\x64\x4c\x6d\x6b\x6f\x73\x61','\x63\x43\x6b\x6b\x41\x5a\x46\x63\x53\x53\x6b\x63\x57\x4f\x33\x64\x4f\x71','\x65\x53\x6f\x50\x78\x53\x6b\x57\x6c\x47','\x57\x52\x4c\x4c\x57\x37\x42\x64\x56\x6d\x6f\x37','\x57\x4f\x70\x64\x4f\x47\x75\x43\x57\x52\x4f\x71\x57\x35\x30\x38','\x57\x4f\x7a\x65\x57\x36\x33\x64\x47\x71','\x57\x50\x65\x37\x57\x35\x68\x64\x4d\x38\x6b\x6a\x6b\x71','\x42\x53\x6f\x57\x57\x50\x61\x44\x43\x6d\x6f\x59\x6f\x71\x34','\x57\x50\x61\x4c\x57\x4f\x62\x66\x6d\x62\x66\x65\x6d\x71','\x45\x63\x46\x63\x55\x53\x6f\x73','\x72\x5a\x7a\x4c\x43\x73\x78\x64\x4e\x67\x46\x64\x4b\x57','\x57\x52\x42\x63\x52\x71\x76\x6d\x6b\x38\x6f\x69','\x57\x52\x78\x64\x4c\x38\x6f\x52\x63\x38\x6f\x66','\x79\x38\x6b\x4f\x57\x50\x33\x64\x4f\x63\x46\x64\x4d\x43\x6f\x6a\x57\x35\x79','\x57\x4f\x5a\x64\x4f\x38\x6b\x32\x6d\x53\x6b\x42','\x57\x4f\x68\x64\x51\x61\x6d\x70\x57\x4f\x65\x32\x57\x34\x61\x52','\x68\x53\x6f\x71\x57\x51\x39\x6c\x57\x50\x31\x61\x57\x52\x64\x63\x4d\x61','\x57\x51\x68\x63\x56\x49\x2f\x63\x54\x61\x6a\x77','\x7a\x38\x6f\x48\x6d\x6d\x6f\x57\x57\x51\x69','\x57\x4f\x52\x64\x4c\x38\x6b\x79\x6d\x6d\x6b\x66','\x57\x50\x52\x63\x55\x47\x76\x77\x6f\x53\x6f\x73\x57\x52\x39\x4a','\x57\x50\x72\x2b\x57\x51\x47\x61\x64\x71\x62\x6d\x57\x51\x57','\x67\x6d\x6b\x68\x42\x62\x5a\x63\x54\x61','\x57\x4f\x54\x71\x57\x34\x56\x64\x4a\x53\x6f\x69','\x57\x34\x34\x77\x57\x35\x4f','\x73\x6d\x6b\x74\x57\x50\x68\x63\x4b\x43\x6f\x6b\x57\x36\x30\x6d\x57\x36\x71','\x71\x77\x48\x65\x57\x4f\x42\x64\x48\x48\x33\x63\x4c\x6d\x6b\x6c','\x57\x4f\x72\x75\x57\x51\x61\x7a\x6f\x47','\x44\x65\x48\x36\x57\x51\x2f\x64\x55\x64\x5a\x63\x53\x61','\x43\x59\x66\x74\x73\x4a\x71','\x57\x50\x4c\x65\x66\x53\x6f\x6a\x57\x37\x46\x63\x52\x43\x6b\x38\x62\x61','\x70\x32\x4a\x63\x52\x67\x6d\x4a','\x57\x51\x74\x63\x54\x4a\x46\x63\x50\x71\x62\x6c\x6a\x38\x6f\x6f','\x65\x53\x6f\x6d\x57\x51\x30\x4b\x77\x43\x6b\x44\x7a\x62\x34','\x67\x53\x6f\x51\x57\x52\x30\x6e\x45\x47','\x42\x6d\x6f\x33\x57\x4f\x69\x47\x43\x61','\x68\x38\x6f\x43\x57\x51\x65','\x61\x76\x65\x50\x57\x35\x69','\x57\x35\x65\x73\x57\x34\x4e\x64\x51\x53\x6b\x77\x41\x38\x6b\x52\x62\x47','\x57\x36\x50\x6c\x57\x34\x53','\x57\x37\x6a\x4f\x7a\x53\x6b\x34\x76\x57','\x46\x53\x6b\x63\x57\x4f\x52\x64\x51\x59\x4e\x64\x4d\x53\x6f\x6c\x57\x36\x57','\x57\x4f\x6a\x6f\x68\x47','\x6f\x78\x4e\x63\x50\x4b\x6d\x6f\x65\x47','\x6e\x6d\x6f\x56\x57\x4f\x72\x31\x57\x52\x30','\x67\x6d\x6b\x6f\x44\x64\x46\x63\x56\x38\x6b\x78\x57\x4f\x2f\x64\x54\x47','\x67\x30\x4f\x49\x57\x37\x4c\x6a\x57\x52\x2f\x64\x53\x61','\x74\x43\x6b\x42\x57\x50\x6d','\x57\x37\x68\x64\x52\x6d\x6b\x62\x61\x71','\x6d\x6d\x6f\x74\x71\x43\x6b\x5a\x64\x71','\x62\x78\x4a\x63\x4b\x4d\x61\x62','\x57\x35\x54\x79\x7a\x6d\x6b\x7a\x7a\x47','\x57\x50\x61\x67\x44\x4a\x75\x55\x6d\x6d\x6b\x6b','\x42\x33\x4a\x63\x54\x71','\x57\x36\x70\x63\x4b\x48\x7a\x4d\x57\x37\x54\x4b\x57\x51\x6a\x6e','\x57\x50\x46\x64\x53\x57\x75\x61\x57\x4f\x75\x32\x57\x35\x79\x59','\x57\x4f\x78\x64\x53\x43\x6f\x46\x65\x43\x6f\x55\x62\x75\x4f\x30','\x79\x43\x6f\x4c\x57\x52\x65\x38\x44\x71','\x57\x4f\x65\x32\x57\x51\x48\x62\x65\x57','\x78\x43\x6b\x61\x57\x37\x53\x77\x57\x35\x57\x74\x57\x36\x33\x63\x4b\x53\x6f\x6b\x57\x37\x37\x64\x4a\x71\x58\x34','\x57\x50\x2f\x64\x4d\x63\x74\x64\x4f\x53\x6f\x48\x63\x38\x6b\x41\x6e\x57','\x57\x4f\x57\x46\x57\x51\x50\x6a\x70\x47','\x44\x75\x72\x54\x57\x51\x33\x64\x55\x64\x70\x63\x50\x47','\x45\x53\x6b\x64\x65\x43\x6b\x35\x57\x34\x4e\x63\x4c\x57','\x57\x50\x50\x78\x57\x37\x43','\x57\x51\x6c\x63\x51\x72\x69','\x57\x4f\x62\x39\x57\x4f\x2f\x63\x4d\x43\x6f\x73\x70\x38\x6b\x74\x79\x77\x56\x63\x49\x43\x6b\x78\x57\x50\x39\x37','\x57\x34\x65\x73\x57\x35\x4e\x64\x55\x57','\x69\x59\x33\x64\x50\x30\x66\x61','\x72\x59\x54\x55\x79\x5a\x74\x64\x4d\x4e\x42\x64\x55\x61','\x68\x53\x6f\x71\x57\x52\x58\x69\x57\x4f\x35\x68\x57\x52\x61','\x44\x75\x66\x4a\x57\x51\x64\x64\x56\x61','\x57\x50\x5a\x64\x4d\x43\x6b\x30\x46\x6d\x6b\x47','\x57\x51\x56\x63\x50\x58\x31\x30\x72\x71','\x57\x52\x48\x4f\x57\x51\x71\x30\x6f\x57','\x57\x37\x76\x43\x57\x35\x53\x75','\x57\x4f\x78\x64\x56\x43\x6f\x71\x61\x43\x6f\x59\x67\x31\x30\x2f','\x76\x74\x62\x6d\x44\x71\x71','\x57\x37\x52\x63\x47\x72\x50\x32\x57\x35\x53','\x57\x52\x5a\x63\x49\x47\x39\x6f\x72\x71','\x42\x38\x6b\x46\x68\x53\x6b\x55\x57\x34\x4e\x63\x4c\x53\x6f\x62','\x44\x77\x70\x63\x55\x4c\x64\x64\x4b\x32\x30','\x6a\x71\x2f\x64\x47\x30\x6a\x39\x74\x74\x70\x64\x4d\x71','\x61\x65\x57\x30\x57\x35\x72\x39\x57\x52\x4e\x64\x50\x4c\x75','\x57\x51\x56\x63\x56\x6d\x6f\x67\x44\x61\x56\x63\x4a\x43\x6b\x2f\x78\x61','\x57\x51\x70\x63\x55\x61\x31\x75\x6f\x38\x6f\x46','\x57\x51\x2f\x63\x4b\x38\x6f\x5a\x43\x62\x53','\x79\x32\x37\x63\x4e\x65\x78\x64\x4c\x71','\x57\x50\x50\x4c\x57\x4f\x69\x76\x57\x4f\x35\x76\x57\x37\x46\x64\x4c\x61','\x57\x4f\x39\x4c\x57\x50\x47','\x70\x48\x52\x64\x4b\x77\x62\x4d\x74\x71\x33\x64\x48\x61','\x6d\x43\x6b\x74\x73\x49\x46\x63\x4c\x61','\x57\x34\x6d\x4a\x57\x34\x33\x64\x47\x43\x6b\x66','\x67\x67\x52\x63\x49\x4c\x43\x76','\x46\x63\x43\x64\x57\x4f\x75\x36\x57\x35\x70\x64\x53\x43\x6f\x58','\x57\x4f\x4c\x6f\x66\x6d\x6f\x76','\x57\x52\x57\x78\x7a\x5a\x43\x54\x6e\x57','\x57\x35\x66\x43\x42\x43\x6b\x73\x46\x38\x6f\x6c\x46\x38\x6f\x6e','\x46\x6d\x6f\x35\x57\x52\x6d\x62\x74\x61','\x57\x4f\x78\x64\x51\x61\x71\x50\x57\x50\x38\x6d\x57\x35\x30\x52','\x6c\x6d\x6f\x31\x57\x52\x72\x51\x57\x35\x76\x2b\x77\x64\x57','\x57\x36\x46\x64\x47\x4e\x47','\x7a\x64\x71\x6b\x57\x50\x75\x36\x57\x35\x4a\x64\x56\x43\x6f\x35','\x57\x50\x58\x72\x57\x52\x4b\x4e\x57\x52\x6d','\x57\x4f\x6c\x64\x55\x59\x42\x64\x54\x38\x6f\x6a','\x6c\x43\x6f\x55\x57\x51\x66\x35\x57\x35\x76\x4b\x79\x64\x53','\x57\x37\x66\x43\x57\x35\x53\x77\x57\x37\x53','\x57\x50\x4e\x64\x56\x6d\x6b\x72\x64\x6d\x6f\x43\x68\x4c\x30\x49','\x57\x51\x64\x63\x4c\x63\x4b','\x57\x34\x69\x74\x57\x34\x34','\x57\x34\x35\x67\x57\x36\x78\x64\x4d\x6d\x6f\x31\x57\x34\x61','\x64\x53\x6b\x30\x44\x64\x56\x63\x56\x53\x6b\x38\x57\x50\x42\x64\x4f\x71','\x57\x50\x50\x4c\x57\x50\x4b\x68\x57\x4f\x7a\x58\x57\x35\x64\x64\x4d\x71','\x6c\x32\x70\x63\x53\x4b\x71\x61\x65\x6d\x6f\x67\x57\x4f\x4b','\x57\x36\x42\x64\x49\x4d\x6c\x63\x4f\x4b\x62\x56\x57\x35\x6c\x64\x55\x71','\x57\x37\x64\x64\x50\x38\x6b\x74','\x57\x36\x46\x64\x4b\x4c\x37\x63\x51\x68\x38','\x6b\x78\x68\x63\x54\x75\x47\x69\x65\x43\x6f\x52\x57\x4f\x71','\x57\x51\x4a\x63\x52\x43\x6f\x50\x46\x49\x57','\x57\x50\x39\x56\x6d\x53\x6b\x6b\x57\x34\x4b','\x57\x37\x37\x63\x4f\x59\x56\x64\x4f\x43\x6f\x42','\x46\x43\x6b\x4f\x57\x4f\x5a\x64\x52\x73\x64\x64\x48\x43\x6f\x6c\x57\x34\x61','\x71\x53\x6f\x77\x7a\x33\x69','\x6e\x33\x6d\x73\x57\x35\x7a\x4b','\x6c\x47\x2f\x64\x47\x67\x66\x4e\x75\x4a\x2f\x64\x4e\x47','\x57\x4f\x78\x64\x56\x43\x6f\x73\x63\x53\x6f\x64\x63\x4e\x57\x4b','\x61\x53\x6f\x41\x57\x52\x53','\x75\x43\x6f\x79\x77\x73\x6d\x49\x6a\x53\x6b\x34\x74\x57','\x57\x50\x48\x78\x57\x37\x62\x48\x41\x57','\x57\x52\x2f\x63\x51\x72\x35\x71','\x69\x48\x56\x64\x48\x68\x66\x39\x75\x5a\x38','\x67\x6d\x6f\x68\x57\x51\x76\x6a','\x57\x51\x76\x49\x6f\x67\x37\x64\x54\x58\x75\x51\x43\x47','\x6f\x71\x33\x64\x4e\x33\x39\x33\x45\x63\x4a\x64\x47\x47','\x64\x53\x6f\x71\x57\x52\x39\x71','\x57\x37\x74\x63\x48\x61\x7a\x51\x57\x37\x50\x2b\x57\x51\x6a\x43','\x61\x6d\x6b\x42\x57\x4f\x37\x64\x4c\x38\x6f\x57\x57\x37\x4b\x76\x57\x36\x43','\x7a\x53\x6f\x5a\x57\x52\x4b\x51\x44\x6d\x6f\x32\x6c\x47','\x70\x4e\x2f\x63\x4f\x4b\x69\x64','\x57\x4f\x4e\x64\x4b\x47\x74\x64\x4f\x47','\x57\x4f\x76\x69\x57\x34\x44\x4c\x45\x61\x30\x45','\x57\x35\x71\x4b\x46\x75\x33\x64\x4e\x53\x6b\x46','\x57\x37\x2f\x63\x4d\x61\x69','\x46\x58\x6e\x63\x57\x35\x34\x2f\x57\x4f\x6d','\x57\x50\x50\x57\x57\x52\x79','\x57\x51\x42\x63\x4d\x63\x53\x48\x69\x38\x6f\x78\x66\x53\x6f\x47','\x66\x53\x6f\x46\x72\x53\x6b\x52\x62\x65\x70\x63\x50\x33\x47','\x57\x37\x6c\x64\x51\x43\x6b\x78\x73\x6d\x6b\x6e\x57\x4f\x78\x64\x50\x71','\x61\x75\x4f\x36\x57\x35\x6a\x78\x57\x51\x4b','\x57\x4f\x52\x64\x48\x58\x2f\x64\x4b\x38\x6f\x4c\x62\x38\x6b\x41\x6a\x61','\x57\x36\x48\x35\x73\x53\x6b\x51\x77\x71','\x61\x6d\x6f\x46\x57\x51\x61\x6b\x42\x71','\x57\x52\x68\x64\x53\x43\x6b\x50\x43\x43\x6b\x70\x79\x48\x6c\x64\x52\x61','\x57\x52\x76\x53\x66\x43\x6b\x76\x57\x36\x57','\x57\x4f\x78\x64\x51\x53\x6f\x45\x66\x38\x6f\x55\x64\x75\x61\x34','\x74\x43\x6f\x79\x7a\x59\x34\x61\x70\x61','\x71\x4c\x42\x63\x47\x78\x70\x64\x52\x57','\x57\x35\x57\x7a\x57\x36\x78\x64\x4e\x38\x6f\x55\x57\x50\x53\x71\x57\x51\x4b','\x6e\x38\x6f\x50\x57\x4f\x7a\x49\x57\x34\x39\x2b\x71\x5a\x43','\x6e\x6d\x6f\x33\x57\x51\x31\x73\x57\x36\x38','\x57\x52\x74\x64\x4a\x73\x4b\x62\x57\x4f\x34','\x57\x50\x48\x44\x65\x57','\x57\x51\x62\x4c\x66\x38\x6f\x48\x57\x36\x6d','\x64\x6d\x6b\x6f\x42\x61','\x57\x52\x2f\x63\x55\x47\x39\x6f\x41\x61\x4e\x63\x50\x72\x4f','\x6b\x47\x56\x64\x4e\x4e\x44\x6e\x76\x5a\x34','\x57\x50\x68\x64\x4f\x38\x6b\x43\x66\x6d\x6b\x4d','\x79\x62\x39\x6c\x57\x35\x43\x51\x57\x4f\x43','\x45\x6d\x6b\x65\x57\x52\x2f\x64\x55\x4a\x74\x64\x4c\x53\x6f\x78','\x57\x35\x42\x63\x4e\x47\x6e\x4d\x57\x37\x53\x57\x57\x4f\x35\x62','\x57\x37\x64\x63\x48\x59\x44\x36\x57\x35\x30','\x57\x4f\x34\x73\x57\x50\x48\x4e\x70\x47','\x57\x34\x69\x78\x43\x65\x2f\x64\x47\x47','\x57\x4f\x42\x63\x4f\x71\x62\x46\x6b\x47','\x57\x50\x6a\x57\x57\x4f\x71\x46\x6c\x71','\x62\x53\x6f\x6b\x57\x4f\x7a\x38\x57\x34\x61','\x68\x6d\x6f\x6a\x71\x6d\x6b\x57\x66\x30\x47','\x57\x37\x79\x55\x41\x75\x42\x64\x48\x71','\x57\x52\x44\x53\x6e\x77\x70\x64\x51\x59\x34','\x6d\x6d\x6f\x4d\x46\x6d\x6b\x55\x66\x71','\x57\x35\x79\x45\x44\x30\x4e\x64\x55\x6d\x6b\x43\x57\x34\x6e\x4b','\x6b\x64\x68\x64\x4c\x68\x6e\x52\x74\x71','\x69\x71\x46\x64\x48\x67\x53\x38','\x57\x52\x6e\x35\x6c\x4d\x6c\x64\x4d\x61','\x57\x52\x2f\x64\x4d\x62\x48\x32\x57\x36\x66\x58\x57\x4f\x4c\x62','\x57\x4f\x65\x56\x57\x50\x31\x68\x6a\x72\x50\x78\x61\x47','\x57\x4f\x70\x64\x50\x71\x74\x64\x54\x4c\x52\x63\x49\x47','\x68\x53\x6f\x71\x57\x51\x48\x6e\x57\x4f\x58\x71\x57\x52\x5a\x63\x49\x47','\x57\x50\x33\x64\x49\x57\x6d\x6b\x57\x4f\x65','\x46\x43\x6f\x41\x57\x52\x71\x38\x73\x71','\x57\x4f\x38\x30\x57\x4f\x31\x55\x69\x71','\x6b\x53\x6f\x63\x57\x50\x6a\x72\x57\x37\x61','\x57\x51\x56\x63\x52\x49\x74\x63\x4b\x5a\x71','\x57\x4f\x62\x65\x65\x76\x42\x64\x4c\x57','\x57\x51\x42\x64\x4b\x48\x52\x64\x55\x43\x6f\x48\x67\x38\x6b\x5a\x69\x47','\x57\x52\x33\x64\x56\x53\x6f\x47\x66\x6d\x6f\x4e','\x57\x4f\x31\x59\x57\x50\x34\x68\x57\x4f\x50\x78\x57\x50\x34','\x57\x36\x38\x72\x57\x36\x5a\x64\x4e\x53\x6b\x53','\x64\x43\x6f\x72\x57\x51\x47','\x57\x34\x34\x77\x57\x35\x69','\x57\x35\x56\x63\x50\x74\x70\x64\x50\x6d\x6f\x78\x74\x77\x6a\x6b','\x57\x4f\x5a\x64\x4f\x53\x6b\x31\x63\x43\x6b\x4c\x57\x4f\x48\x50\x45\x57','\x76\x38\x6f\x79\x76\x74\x43\x71\x70\x61','\x57\x51\x66\x4c\x67\x78\x4e\x64\x51\x59\x71\x59\x42\x47','\x57\x4f\x46\x64\x4b\x74\x34\x39\x57\x52\x38','\x57\x51\x52\x64\x51\x53\x6b\x51\x78\x6d\x6b\x30','\x57\x52\x6c\x63\x4c\x64\x38\x48','\x79\x64\x76\x63\x73\x57\x52\x64\x4f\x71','\x73\x43\x6f\x68\x69\x47','\x57\x4f\x57\x32\x57\x4f\x76\x65\x63\x62\x48\x46\x63\x61','\x62\x43\x6f\x79\x78\x43\x6b\x32\x65\x57','\x76\x59\x44\x48\x46\x47\x37\x64\x4c\x68\x61','\x57\x4f\x58\x2b\x62\x6d\x6f\x6e\x57\x36\x5a\x63\x50\x61','\x45\x38\x6b\x70\x65\x38\x6b\x4f\x57\x37\x70\x63\x4c\x43\x6f\x44\x6b\x47','\x75\x43\x6f\x57\x6b\x43\x6f\x61\x57\x52\x6d','\x6e\x53\x6f\x37\x57\x52\x6e\x75\x57\x35\x66\x4c\x75\x4a\x79','\x57\x35\x56\x63\x4f\x73\x78\x64\x48\x53\x6f\x73\x74\x78\x57','\x57\x52\x74\x63\x4f\x49\x64\x63\x4f\x57\x6a\x78\x6a\x47','\x57\x4f\x54\x66\x57\x35\x6a\x38\x41\x57\x43\x69\x62\x47','\x62\x38\x6f\x62\x77\x6d\x6b\x69\x6c\x57','\x57\x51\x31\x4a\x57\x4f\x75\x45\x67\x71','\x57\x4f\x37\x64\x53\x62\x52\x64\x54\x65\x64\x63\x48\x53\x6f\x4b\x78\x61','\x57\x50\x68\x64\x4f\x53\x6b\x78\x73\x43\x6b\x34\x57\x50\x35\x30\x76\x47','\x66\x4e\x75\x76\x57\x37\x66\x78','\x57\x52\x6c\x63\x53\x6d\x6f\x6c\x46\x57','\x57\x36\x4c\x4a\x72\x43\x6b\x75\x74\x57','\x6a\x78\x37\x63\x51\x78\x34\x68','\x78\x53\x6b\x55\x73\x4a\x37\x63\x54\x43\x6b\x71\x57\x52\x61','\x57\x50\x43\x6b\x7a\x74\x6d','\x57\x51\x44\x53\x6d\x68\x52\x64\x51\x57','\x73\x38\x6b\x78\x57\x4f\x71','\x7a\x6d\x6b\x41\x57\x51\x68\x64\x56\x63\x46\x64\x48\x43\x6f\x6a\x57\x35\x79','\x57\x50\x74\x63\x52\x49\x33\x63\x4f\x57','\x57\x52\x54\x49\x6e\x77\x65','\x57\x34\x43\x4f\x45\x66\x74\x64\x52\x47','\x71\x43\x6b\x67\x57\x4f\x4e\x63\x4b\x53\x6f\x34\x57\x37\x65\x72','\x6d\x63\x72\x72\x76\x48\x42\x63\x50\x47','\x57\x35\x4f\x73\x71\x43\x6b\x45\x57\x52\x64\x64\x55\x38\x6f\x49\x76\x59\x71\x7a\x6a\x38\x6b\x2f\x57\x34\x72\x6d','\x57\x37\x4a\x63\x4c\x61\x66\x51\x57\x36\x6e\x31','\x62\x38\x6b\x64\x41\x49\x56\x63\x54\x57','\x57\x50\x6a\x53\x6c\x68\x5a\x64\x55\x59\x79\x4a','\x73\x74\x62\x54\x57\x35\x38\x46','\x57\x52\x37\x64\x4b\x74\x57\x39\x57\x51\x79','\x57\x37\x46\x63\x4e\x48\x4c\x33\x57\x37\x62\x49','\x6b\x78\x2f\x63\x52\x31\x34\x42\x64\x6d\x6f\x53\x57\x50\x34','\x57\x4f\x76\x4c\x57\x4f\x65\x42\x57\x50\x66\x6a\x57\x37\x56\x64\x49\x47','\x57\x34\x75\x45\x57\x34\x42\x64\x55\x38\x6b\x44\x42\x71','\x67\x43\x6f\x76\x57\x52\x6d','\x57\x52\x44\x61\x57\x36\x68\x64\x47\x53\x6f\x50','\x41\x4a\x31\x45\x72\x47','\x57\x35\x43\x78\x44\x4b\x70\x64\x4c\x71','\x46\x73\x4e\x63\x56\x43\x6f\x79\x6c\x6d\x6b\x2f\x57\x4f\x68\x64\x56\x71','\x57\x52\x72\x51\x6d\x33\x33\x64\x54\x57','\x57\x50\x50\x59\x57\x4f\x6d\x67','\x6a\x43\x6f\x47\x57\x51\x44\x56\x57\x51\x4f','\x57\x51\x74\x63\x4a\x4a\x79\x54\x65\x38\x6f\x41\x6b\x6d\x6f\x47','\x57\x50\x78\x64\x51\x53\x6b\x43\x6f\x71','\x57\x36\x47\x72\x57\x37\x2f\x64\x47\x43\x6b\x44','\x43\x53\x6b\x79\x57\x50\x64\x64\x55\x59\x70\x64\x4c\x6d\x6f\x42\x57\x34\x43','\x57\x35\x43\x6c\x76\x78\x4a\x64\x51\x57','\x57\x4f\x46\x64\x49\x59\x56\x64\x4e\x75\x47','\x73\x49\x66\x33\x74\x5a\x74\x64\x49\x33\x68\x64\x4f\x57','\x62\x43\x6f\x74\x57\x51\x4f\x30\x79\x38\x6b\x79\x79\x47\x69','\x57\x50\x62\x69\x57\x35\x4c\x53\x75\x61\x4f','\x57\x52\x64\x64\x50\x61\x2f\x64\x50\x75\x56\x63\x47\x43\x6f\x77\x75\x61','\x57\x37\x4a\x64\x49\x4d\x42\x63\x48\x77\x50\x2f\x57\x35\x6c\x64\x53\x57','\x71\x4a\x7a\x56\x46\x49\x78\x64\x4b\x67\x42\x64\x56\x47','\x57\x4f\x57\x62\x45\x67\x57','\x57\x50\x39\x30\x57\x35\x46\x64\x4d\x53\x6f\x5a','\x44\x5a\x78\x63\x4b\x53\x6f\x6d\x6e\x38\x6b\x36\x57\x50\x30','\x63\x43\x6f\x77\x57\x52\x48\x62\x57\x4f\x53','\x57\x51\x6c\x63\x50\x59\x5a\x63\x4f\x57\x39\x37\x6e\x38\x6f\x79','\x79\x72\x58\x7a\x57\x35\x53\x5a','\x6c\x59\x68\x64\x48\x76\x72\x64','\x57\x4f\x66\x30\x57\x51\x4f','\x76\x64\x50\x61\x79\x73\x47','\x57\x37\x52\x63\x4e\x48\x54\x4e','\x62\x6d\x6b\x45\x42\x64\x68\x63\x53\x38\x6b\x6f\x57\x4f\x75','\x69\x57\x68\x64\x48\x68\x43','\x57\x4f\x2f\x64\x49\x38\x6f\x57\x62\x38\x6f\x37','\x57\x52\x56\x64\x4d\x74\x47\x34\x57\x51\x57\x4b\x57\x36\x6d\x6c','\x72\x6d\x6f\x6f\x41\x73\x79\x4c','\x57\x50\x76\x46\x61\x53\x6b\x50\x57\x35\x56\x64\x47\x53\x6b\x37\x71\x57','\x57\x51\x5a\x63\x53\x5a\x4e\x63\x4d\x62\x61','\x57\x35\x57\x41\x79\x71','\x69\x33\x46\x63\x52\x30\x57\x64\x6e\x43\x6f\x38\x57\x4f\x71','\x57\x36\x46\x64\x4d\x68\x64\x63\x48\x77\x50\x4c\x57\x35\x75','\x57\x52\x5a\x63\x4f\x43\x6f\x61\x45\x61','\x57\x51\x4e\x64\x56\x71\x65\x64\x57\x50\x53\x71\x57\x37\x71\x54','\x44\x77\x46\x63\x54\x30\x33\x64\x4b\x47','\x57\x52\x64\x64\x4f\x72\x34','\x61\x6d\x6f\x65\x75\x6d\x6b\x34\x65\x31\x71','\x57\x4f\x76\x30\x57\x51\x75\x43\x67\x47\x44\x34\x57\x51\x57','\x66\x32\x65\x33\x57\x34\x39\x61\x57\x4f\x78\x64\x56\x30\x75','\x75\x75\x50\x4f\x57\x50\x6c\x64\x52\x61','\x57\x4f\x37\x64\x53\x61\x6c\x64\x4c\x66\x4a\x63\x48\x38\x6f\x6d\x71\x71','\x45\x38\x6f\x36\x69\x43\x6f\x62\x57\x50\x6d','\x57\x50\x61\x71\x44\x64\x47\x75\x6c\x53\x6b\x6b','\x57\x35\x34\x7a\x43\x30\x4e\x64\x48\x6d\x6b\x79','\x62\x43\x6b\x69\x46\x73\x34','\x6d\x53\x6f\x37\x57\x52\x6e\x2f\x57\x37\x35\x32\x76\x63\x79','\x65\x38\x6f\x6c\x78\x43\x6b\x31','\x6f\x43\x6b\x7a\x57\x50\x68\x64\x50\x49\x70\x63\x4e\x47','\x57\x34\x6d\x6a\x44\x4c\x37\x64\x55\x6d\x6b\x70\x57\x34\x6e\x2b','\x79\x31\x76\x4a\x57\x52\x64\x64\x52\x73\x5a\x63\x48\x53\x6b\x38','\x44\x33\x54\x38\x57\x51\x64\x64\x51\x57','\x74\x43\x6b\x76\x57\x50\x4a\x63\x51\x61','\x57\x4f\x54\x48\x57\x50\x47\x72\x57\x4f\x72\x46\x57\x35\x42\x64\x4c\x61','\x76\x6d\x6b\x4d\x57\x52\x78\x64\x50\x48\x69','\x57\x51\x4c\x44\x66\x38\x6b\x34\x57\x35\x4e\x64\x49\x53\x6b\x4d\x73\x61','\x46\x5a\x6c\x63\x50\x38\x6f\x42\x6b\x6d\x6b\x52\x57\x50\x64\x64\x4f\x61','\x57\x35\x4e\x63\x54\x73\x68\x64\x51\x61','\x57\x52\x46\x64\x4f\x71\x69\x70','\x57\x52\x56\x64\x4a\x53\x6b\x48\x66\x43\x6b\x51','\x44\x47\x72\x45\x57\x34\x4f\x49\x57\x4f\x57\x48\x57\x37\x57','\x75\x53\x6b\x65\x64\x6d\x6b\x42\x57\x34\x47','\x57\x51\x79\x34\x43\x62\x6d\x44','\x57\x37\x44\x70\x57\x35\x34\x6d\x57\x36\x57','\x57\x51\x46\x64\x4b\x62\x71\x2b\x57\x50\x53','\x57\x36\x6d\x45\x42\x75\x4e\x64\x49\x43\x6b\x79\x57\x34\x76\x4b','\x57\x52\x6c\x64\x4f\x53\x6b\x4a\x6b\x53\x6b\x31\x44\x72\x74\x64\x54\x47','\x79\x47\x44\x4d\x71\x5a\x43','\x57\x51\x33\x64\x51\x63\x5a\x64\x50\x68\x34','\x57\x52\x4e\x63\x53\x71\x66\x6e\x6c\x6d\x6f\x73\x57\x51\x48\x32','\x63\x6d\x6b\x74\x46\x62\x52\x63\x4e\x47','\x57\x50\x76\x49\x57\x34\x6a\x70\x73\x61','\x57\x4f\x61\x43\x45\x59\x75\x55\x69\x6d\x6b\x6d\x57\x51\x43','\x61\x4c\x53\x50\x57\x36\x31\x68\x57\x51\x70\x64\x49\x66\x71','\x57\x4f\x7a\x55\x57\x35\x42\x64\x54\x53\x6f\x6d','\x69\x33\x70\x63\x4e\x4b\x4b\x6b\x65\x53\x6f\x54\x57\x50\x57','\x57\x4f\x52\x63\x4e\x73\x6a\x6c\x75\x57','\x57\x51\x4a\x63\x48\x74\x74\x63\x49\x72\x65','\x43\x43\x6b\x64\x65\x57','\x79\x31\x39\x34\x57\x51\x5a\x64\x51\x57\x64\x63\x50\x43\x6b\x47','\x72\x53\x6b\x44\x57\x51\x42\x64\x53\x73\x38','\x57\x37\x31\x44\x57\x35\x53\x45\x57\x36\x46\x64\x48\x5a\x31\x70','\x57\x52\x6e\x58\x6e\x53\x6f\x42\x57\x36\x71','\x57\x52\x68\x63\x55\x6d\x6f\x77\x72\x61\x4e\x63\x4d\x38\x6b\x2f\x78\x61','\x79\x73\x44\x37\x57\x35\x43\x49','\x57\x34\x68\x63\x4c\x62\x5a\x64\x4a\x6d\x6f\x31','\x57\x52\x70\x63\x4c\x63\x53\x57\x69\x38\x6f\x46\x65\x53\x6f\x54','\x57\x37\x6c\x64\x47\x4e\x4e\x63\x48\x76\x62\x2b','\x68\x53\x6f\x7a\x75\x53\x6b\x43\x66\x71','\x67\x38\x6b\x45\x41\x5a\x4f','\x57\x51\x6a\x34\x70\x32\x5a\x64\x51\x5a\x4b\x31','\x57\x35\x34\x74\x57\x35\x33\x64\x4e\x43\x6b\x74\x7a\x53\x6f\x76','\x67\x6d\x6b\x69\x44\x59\x64\x63\x55\x71','\x57\x51\x44\x65\x57\x4f\x6d\x45\x64\x57','\x7a\x59\x4c\x7a\x45\x5a\x30','\x57\x37\x46\x64\x4e\x43\x6b\x47\x42\x6d\x6b\x58','\x57\x52\x56\x64\x53\x43\x6b\x5a\x41\x43\x6b\x31\x7a\x57','\x67\x6d\x6b\x79\x46\x73\x42\x63\x47\x38\x6b\x6b\x57\x4f\x71','\x57\x36\x33\x64\x56\x6d\x6b\x66\x73\x6d\x6b\x62\x57\x4f\x4a\x64\x55\x61\x43','\x69\x61\x4e\x64\x4c\x75\x30','\x57\x37\x42\x63\x4b\x47\x65','\x73\x48\x37\x63\x4e\x43\x6f\x76\x65\x47','\x57\x50\x78\x64\x4b\x38\x6b\x4f\x76\x6d\x6b\x76','\x57\x52\x4c\x2b\x6e\x4d\x52\x64\x49\x71','\x57\x50\x4a\x64\x54\x6d\x6f\x41\x70\x38\x6f\x4c','\x57\x4f\x70\x64\x4f\x72\x4e\x64\x50\x78\x68\x63\x4c\x53\x6f\x72','\x57\x36\x38\x36\x57\x37\x52\x64\x4c\x53\x6b\x57','\x57\x4f\x39\x39\x61\x6d\x6b\x4a\x57\x35\x61','\x74\x49\x46\x63\x4f\x53\x6f\x72\x63\x61','\x57\x4f\x53\x39\x57\x4f\x76\x4d\x6c\x47','\x6c\x61\x33\x64\x48\x68\x54\x39\x75\x61\x78\x64\x48\x61','\x57\x52\x56\x64\x4e\x38\x6b\x2b\x61\x53\x6b\x4e','\x57\x50\x2f\x64\x4c\x53\x6f\x45\x65\x47','\x57\x4f\x66\x57\x6e\x38\x6f\x55\x57\x36\x53','\x57\x50\x54\x6c\x61\x53\x6b\x54\x57\x34\x4a\x64\x48\x6d\x6b\x4d\x76\x61','\x57\x4f\x56\x64\x50\x43\x6b\x77\x65\x38\x6b\x2b\x57\x4f\x4c\x6a\x78\x71','\x6f\x38\x6f\x33\x57\x4f\x6a\x71\x57\x52\x34','\x57\x50\x35\x2f\x57\x51\x6d\x62\x68\x61','\x57\x4f\x52\x63\x49\x53\x6f\x2f\x44\x73\x4b','\x43\x4b\x6a\x67\x57\x51\x5a\x64\x52\x4a\x52\x63\x50\x38\x6b\x67','\x57\x50\x31\x75\x57\x52\x43\x32\x61\x71','\x74\x4c\x79\x2b\x57\x35\x34\x43','\x72\x53\x6b\x71\x57\x50\x5a\x64\x4d\x74\x6d','\x57\x36\x70\x64\x4a\x4c\x74\x63\x4b\x31\x71','\x57\x4f\x46\x64\x55\x72\x47\x6a\x57\x4f\x34\x67\x57\x34\x65\x4d','\x57\x4f\x39\x55\x57\x4f\x30\x79\x57\x52\x62\x45\x57\x34\x78\x64\x4e\x71','\x66\x38\x6f\x75\x57\x4f\x35\x6f\x57\x37\x53','\x57\x4f\x76\x4e\x57\x4f\x4b\x52','\x43\x4c\x72\x4e\x57\x4f\x42\x64\x49\x61','\x57\x34\x54\x64\x42\x38\x6b\x4a\x44\x38\x6f\x6a\x75\x43\x6f\x41','\x57\x50\x44\x50\x57\x36\x64\x64\x4a\x43\x6f\x4b\x57\x4f\x30','\x44\x61\x70\x63\x4f\x53\x6f\x37\x6c\x61','\x6e\x38\x6f\x50\x57\x4f\x66\x35\x57\x35\x6e\x32\x74\x47','\x57\x50\x71\x4c\x57\x51\x66\x42\x6d\x61','\x41\x49\x4e\x63\x50\x38\x6f\x46\x6b\x43\x6b\x41\x57\x50\x64\x64\x50\x57','\x57\x51\x33\x64\x4f\x53\x6b\x2f\x79\x43\x6b\x35\x79\x61\x78\x64\x53\x71','\x42\x73\x70\x63\x56\x38\x6f\x42\x6a\x53\x6b\x56\x57\x4f\x56\x64\x4f\x71','\x57\x37\x70\x64\x4a\x4e\x56\x63\x4c\x67\x50\x4c\x57\x35\x75','\x57\x4f\x56\x64\x50\x6d\x6b\x45\x63\x6d\x6b\x5a\x57\x4f\x66\x65\x77\x57','\x6a\x62\x4a\x64\x4c\x75\x31\x37\x75\x64\x2f\x64\x4e\x57','\x77\x58\x71\x49\x57\x51\x30\x39','\x78\x6d\x6f\x41\x6b\x43\x6f\x4b\x57\x52\x30','\x57\x51\x5a\x63\x4e\x38\x6f\x6d\x46\x63\x4b','\x77\x53\x6f\x6d\x6d\x53\x6f\x68\x57\x51\x2f\x64\x48\x71\x4a\x63\x4b\x47','\x71\x63\x62\x63\x46\x74\x71','\x72\x53\x6b\x6c\x57\x51\x6c\x63\x48\x6d\x6f\x48\x57\x36\x61\x72\x57\x36\x43','\x57\x52\x61\x2b\x45\x62\x65\x49','\x6a\x62\x33\x64\x54\x4e\x54\x38\x76\x59\x37\x64\x49\x61','\x57\x34\x69\x45\x42\x71','\x57\x50\x7a\x45\x57\x37\x6a\x37\x41\x57\x65\x6a','\x57\x4f\x64\x64\x4e\x48\x4e\x64\x53\x47','\x75\x38\x6b\x68\x57\x50\x37\x63\x4c\x6d\x6f\x57\x57\x37\x69\x77','\x57\x51\x68\x63\x50\x58\x35\x44','\x57\x51\x33\x63\x4d\x63\x53\x4a\x63\x6d\x6f\x43','\x57\x50\x43\x43\x7a\x5a\x6d','\x57\x35\x46\x64\x51\x38\x6f\x79\x61\x53\x6f\x46\x64\x30\x6d\x2b','\x44\x43\x6f\x50\x74\x63\x53\x38','\x74\x76\x64\x63\x47\x30\x33\x64\x4c\x61','\x57\x4f\x64\x63\x53\x43\x6f\x58\x73\x48\x79','\x57\x35\x53\x36\x57\x34\x4e\x64\x4d\x43\x6b\x30','\x57\x52\x4b\x30\x72\x59\x69\x4f','\x57\x34\x46\x64\x4f\x6d\x6b\x57\x42\x43\x6b\x39','\x46\x72\x66\x79\x75\x74\x34','\x57\x51\x46\x64\x56\x38\x6b\x71\x66\x43\x6b\x35\x57\x52\x6a\x33\x78\x71','\x62\x53\x6f\x64\x75\x38\x6b\x33\x61\x65\x68\x63\x4f\x61','\x79\x74\x39\x75\x73\x57\x5a\x64\x49\x38\x6b\x6e\x78\x47','\x57\x50\x62\x72\x62\x6d\x6b\x56\x57\x35\x4e\x64\x49\x43\x6b\x77\x78\x57','\x57\x35\x71\x70\x57\x35\x46\x64\x51\x6d\x6b\x33','\x41\x53\x6f\x46\x57\x50\x71\x58\x7a\x6d\x6f\x69\x69\x72\x38','\x42\x63\x70\x63\x53\x53\x6f\x6e\x6b\x53\x6b\x31','\x73\x53\x6f\x6f\x46\x49\x34\x6b\x6a\x53\x6b\x47\x74\x57','\x73\x38\x6f\x70\x69\x38\x6f\x35\x57\x52\x46\x64\x47\x57\x4a\x63\x4a\x61','\x57\x52\x72\x65\x57\x37\x42\x64\x48\x6d\x6f\x6c','\x63\x31\x71\x58\x57\x35\x35\x4a','\x61\x66\x43\x4f\x57\x34\x31\x39\x57\x52\x42\x64\x52\x66\x79','\x57\x36\x6c\x63\x53\x72\x52\x64\x50\x6d\x6f\x51','\x79\x64\x76\x64\x76\x49\x68\x64\x52\x6d\x6b\x68','\x57\x50\x5a\x64\x51\x71\x33\x64\x56\x30\x2f\x63\x4a\x53\x6f\x39\x78\x47','\x62\x53\x6b\x63\x44\x47','\x57\x50\x78\x64\x50\x6d\x6b\x78','\x63\x30\x57\x33\x57\x37\x58\x67','\x71\x43\x6f\x71\x61\x6d\x6f\x70\x57\x52\x78\x64\x48\x72\x70\x63\x4d\x71','\x72\x43\x6f\x65\x69\x38\x6f\x35','\x68\x48\x52\x64\x4f\x32\x66\x4a','\x57\x51\x4a\x63\x52\x71\x72\x44\x41\x62\x37\x63\x53\x48\x30','\x76\x57\x62\x2f\x57\x37\x79\x2f','\x57\x52\x33\x63\x50\x58\x35\x7a\x71\x57\x46\x63\x52\x58\x4f','\x57\x36\x4e\x63\x4f\x59\x37\x63\x53\x61','\x68\x78\x78\x63\x47\x65\x34\x4f','\x73\x58\x7a\x4b\x78\x59\x53','\x6c\x32\x6c\x63\x53\x30\x69\x44','\x67\x6d\x6b\x63\x79\x4a\x43','\x57\x35\x38\x4a\x57\x34\x38','\x57\x4f\x37\x63\x51\x61\x71\x78\x62\x71','\x57\x52\x57\x76\x46\x64\x47\x53\x6a\x53\x6b\x6c\x57\x51\x6d','\x6f\x78\x70\x63\x52\x4c\x38\x6b','\x57\x4f\x4e\x63\x4d\x64\x6a\x6a\x64\x47','\x57\x52\x56\x63\x50\x58\x35\x7a\x77\x57','\x57\x50\x50\x5a\x57\x4f\x75\x68\x57\x50\x44\x76\x57\x34\x61','\x57\x50\x54\x69\x57\x35\x4c\x55\x42\x71\x79','\x6a\x68\x2f\x63\x54\x47','\x43\x68\x48\x39\x57\x51\x2f\x64\x4e\x71','\x57\x4f\x64\x63\x51\x58\x71\x6a\x65\x61','\x62\x38\x6f\x46\x57\x52\x79\x5a\x75\x38\x6b\x44\x7a\x48\x43','\x57\x4f\x76\x65\x57\x36\x33\x64\x4d\x6d\x6f\x34\x57\x52\x47\x6e\x57\x50\x79','\x79\x38\x6f\x48\x57\x4f\x53\x53\x77\x43\x6f\x4b\x6e\x62\x75','\x57\x4f\x72\x75\x62\x6d\x6f\x70\x57\x36\x52\x63\x50\x43\x6b\x33','\x57\x34\x6d\x50\x57\x34\x44\x71','\x57\x34\x43\x6e\x74\x53\x6f\x35\x57\x4f\x37\x63\x4d\x43\x6b\x79\x71\x38\x6b\x2f\x70\x43\x6f\x2f\x57\x51\x57','\x45\x73\x70\x63\x50\x38\x6f\x32\x6d\x6d\x6b\x35\x57\x51\x52\x64\x56\x61','\x57\x52\x65\x6b\x78\x59\x71\x36','\x62\x43\x6f\x67\x57\x4f\x50\x6e\x57\x4f\x66\x6e\x57\x51\x68\x63\x4d\x71','\x57\x36\x72\x61\x57\x34\x79\x6c\x57\x36\x64\x64\x47\x59\x69','\x67\x43\x6f\x70\x7a\x38\x6b\x47\x64\x30\x34','\x57\x50\x48\x72\x61\x71','\x6f\x68\x78\x63\x4f\x4b\x69\x44\x67\x53\x6f\x72\x57\x4f\x71','\x75\x5a\x6a\x7a\x74\x62\x4e\x64\x56\x43\x6b\x67\x71\x61','\x6c\x32\x4a\x63\x51\x66\x34\x42\x64\x43\x6f\x6b\x57\x4f\x71','\x44\x72\x58\x48\x43\x64\x4b','\x44\x77\x70\x63\x55\x4c\x64\x64\x54\x77\x46\x63\x52\x38\x6b\x68','\x74\x6d\x6f\x50\x6a\x38\x6f\x64\x57\x52\x75','\x57\x4f\x42\x64\x56\x72\x38\x79','\x73\x53\x6f\x6c\x78\x72\x47\x6e\x69\x43\x6b\x58\x77\x61','\x57\x36\x76\x68\x57\x34\x61\x78\x57\x36\x4a\x64\x49\x5a\x71','\x76\x53\x6f\x34\x57\x51\x4b\x54\x79\x71','\x70\x43\x6f\x6b\x57\x4f\x53\x6a\x41\x61','\x57\x52\x33\x63\x52\x71\x4c\x44\x77\x72\x52\x63\x4e\x58\x65','\x57\x35\x38\x56\x57\x35\x30','\x57\x50\x50\x57\x57\x52\x34','\x65\x66\x38\x4f\x57\x34\x6e\x6f\x57\x52\x70\x64\x50\x30\x75','\x57\x36\x48\x79\x57\x35\x43\x4d\x57\x36\x64\x64\x49\x64\x72\x62','\x6d\x38\x6f\x38\x57\x52\x44\x79\x57\x34\x47','\x57\x50\x50\x49\x57\x51\x65\x2f\x70\x71','\x57\x51\x64\x63\x51\x58\x7a\x78\x6c\x6d\x6f\x4b\x57\x52\x48\x55','\x57\x37\x4e\x64\x4a\x68\x64\x63\x52\x47','\x57\x51\x56\x63\x56\x6d\x6f\x67\x42\x47\x56\x63\x4d\x53\x6b\x5a\x74\x47','\x44\x6d\x6b\x70\x57\x4f\x37\x64\x50\x5a\x74\x64\x47\x38\x6f\x44','\x57\x4f\x5a\x64\x55\x47\x6d\x42\x57\x4f\x47','\x57\x35\x75\x70\x57\x34\x64\x64\x54\x53\x6b\x4a','\x6d\x53\x6f\x66\x66\x43\x6b\x34\x57\x34\x37\x63\x4f\x38\x6f\x78\x6d\x71','\x61\x4e\x6d\x30\x57\x34\x6a\x52','\x57\x34\x37\x63\x50\x74\x5a\x64\x50\x43\x6f\x53\x74\x78\x71','\x57\x52\x70\x63\x4b\x4a\x61\x51\x67\x61','\x57\x34\x79\x70\x57\x34\x70\x64\x56\x6d\x6b\x6d\x42\x6d\x6b\x4e\x64\x61','\x72\x43\x6f\x75\x76\x64\x6d\x62\x70\x71','\x57\x36\x4a\x64\x51\x43\x6b\x75\x6b\x4b\x4e\x64\x4e\x53\x6f\x56\x73\x31\x39\x52\x70\x43\x6f\x70\x57\x36\x57','\x57\x35\x69\x6f\x41\x31\x37\x64\x47\x53\x6b\x63\x57\x35\x48\x64','\x41\x30\x58\x36','\x57\x51\x4a\x64\x4d\x6d\x6b\x74\x73\x6d\x6b\x6b','\x57\x4f\x48\x74\x66\x43\x6f\x6e\x57\x37\x68\x63\x52\x43\x6b\x32\x6f\x61','\x57\x4f\x52\x64\x54\x47\x70\x64\x54\x75\x56\x63\x4a\x6d\x6f\x62\x75\x61','\x64\x53\x6b\x67\x41\x63\x42\x63\x50\x43\x6b\x38\x57\x4f\x70\x64\x56\x71','\x41\x73\x54\x55\x72\x4a\x6d','\x75\x53\x6b\x74\x57\x4f\x33\x63\x4e\x38\x6b\x37\x57\x36\x53\x77\x57\x36\x30','\x78\x6d\x6f\x67\x6b\x38\x6f\x77\x57\x51\x2f\x64\x4e\x57','\x57\x50\x76\x72\x67\x6d\x6b\x2f\x57\x35\x4e\x64\x4a\x53\x6b\x38\x74\x47','\x57\x34\x74\x63\x53\x5a\x78\x64\x4a\x6d\x6f\x4d','\x57\x4f\x44\x30\x57\x52\x71\x61\x62\x57\x31\x79\x57\x52\x71','\x57\x52\x70\x64\x51\x38\x6b\x53\x6b\x6d\x6b\x33','\x57\x4f\x79\x64\x45\x4a\x75\x4a\x68\x6d\x6b\x71\x57\x52\x43','\x57\x52\x39\x69\x6b\x4d\x52\x64\x4f\x64\x34','\x57\x50\x72\x42\x57\x34\x46\x64\x50\x6d\x6f\x6e','\x76\x6d\x6b\x44\x57\x4f\x38','\x57\x52\x66\x43\x57\x37\x46\x64\x4f\x38\x6f\x7a','\x44\x57\x46\x63\x4f\x38\x6f\x4b\x61\x71','\x66\x43\x6f\x42\x57\x51\x38','\x57\x50\x46\x64\x52\x71\x38\x70\x57\x4f\x57\x41\x57\x34\x61','\x42\x38\x6b\x64\x67\x53\x6b\x4a\x57\x34\x33\x63\x49\x71','\x57\x36\x6c\x63\x47\x58\x72\x33\x57\x34\x7a\x50\x57\x50\x6e\x6c','\x62\x43\x6f\x64\x57\x51\x4c\x54\x57\x4f\x66\x62\x57\x51\x46\x63\x49\x61','\x72\x43\x6f\x43\x75\x73\x53','\x57\x4f\x62\x48\x57\x4f\x61\x73\x57\x52\x58\x43\x57\x34\x33\x64\x49\x57','\x57\x34\x72\x4b\x57\x37\x57\x56\x57\x37\x61','\x57\x51\x4e\x63\x52\x6d\x6f\x77\x43\x57','\x57\x50\x62\x69\x57\x34\x6d','\x61\x43\x6f\x6c\x72\x53\x6b\x2b\x62\x66\x4b','\x57\x50\x74\x64\x54\x38\x6f\x46\x66\x53\x6f\x75\x64\x76\x4f\x35','\x57\x50\x42\x64\x54\x53\x6b\x6c','\x70\x47\x68\x64\x48\x77\x62\x58\x77\x57\x78\x64\x4d\x71','\x57\x36\x72\x61\x57\x34\x71\x4d\x57\x36\x74\x64\x48\x5a\x54\x43','\x57\x50\x62\x78\x57\x37\x46\x64\x49\x43\x6f\x58\x57\x50\x43\x6b\x57\x50\x38','\x57\x51\x4b\x5a\x57\x51\x6e\x4b\x61\x47','\x57\x50\x71\x66\x45\x48\x61\x53','\x78\x53\x6f\x63\x6b\x53\x6f\x74\x57\x52\x34','\x57\x51\x52\x63\x4f\x4a\x46\x63\x4f\x72\x6e\x6e\x6f\x53\x6f\x7a','\x57\x50\x2f\x64\x4e\x48\x52\x64\x53\x38\x6f\x38\x66\x38\x6b\x61','\x57\x34\x68\x63\x55\x73\x6c\x64\x52\x38\x6f\x68\x74\x68\x76\x51','\x41\x63\x6a\x67\x71\x71\x75','\x57\x35\x43\x79\x57\x35\x37\x64\x52\x53\x6b\x75','\x57\x4f\x66\x41\x57\x36\x33\x64\x4a\x38\x6f\x34','\x57\x50\x68\x64\x56\x53\x6b\x2f\x64\x38\x6b\x38\x57\x4f\x72\x56\x78\x71','\x57\x36\x58\x6d\x57\x36\x69\x30\x57\x36\x30','\x57\x35\x79\x63\x77\x33\x4a\x64\x4a\x57','\x43\x59\x46\x63\x51\x57','\x42\x73\x70\x63\x50\x57','\x66\x6d\x6f\x6f\x57\x51\x31\x4f\x57\x37\x79','\x6b\x65\x71\x45\x57\x35\x44\x74','\x44\x53\x6b\x59\x57\x36\x47\x4c\x57\x4f\x4f\x2b\x68\x68\x53','\x57\x37\x46\x64\x54\x38\x6b\x6b\x45\x62\x42\x63\x48\x38\x6b\x38\x75\x71','\x66\x53\x6f\x4f\x57\x52\x43\x36\x72\x47','\x7a\x78\x42\x63\x52\x30\x68\x64\x47\x78\x68\x63\x53\x38\x6b\x44','\x43\x6d\x6b\x48\x57\x51\x37\x63\x4e\x43\x6f\x79','\x57\x50\x48\x65\x62\x61','\x57\x36\x33\x64\x50\x6d\x6b\x6e\x78\x38\x6b\x33','\x61\x4a\x56\x64\x53\x75\x66\x52','\x57\x52\x4c\x56\x6f\x4c\x5a\x64\x4c\x57','\x57\x4f\x5a\x64\x4b\x48\x4e\x64\x53\x57','\x57\x36\x7a\x6c\x57\x34\x79','\x77\x6d\x6f\x4a\x57\x4f\x65\x35\x42\x47','\x57\x50\x33\x64\x50\x72\x2f\x64\x4f\x4b\x56\x63\x48\x53\x6f\x39\x76\x47','\x57\x50\x50\x76\x6f\x38\x6f\x39\x57\x34\x30','\x42\x63\x4e\x63\x54\x53\x6f\x6b\x6b\x47','\x66\x76\x57\x31\x57\x35\x6e\x77','\x57\x35\x52\x63\x4f\x5a\x70\x64\x52\x53\x6f\x53\x73\x77\x6d','\x57\x36\x70\x63\x50\x59\x7a\x77\x57\x37\x69','\x44\x68\x42\x63\x52\x68\x46\x64\x4b\x33\x33\x63\x4f\x53\x6b\x62','\x6b\x62\x4a\x64\x4c\x78\x58\x4d','\x57\x50\x62\x30\x57\x52\x69\x37\x68\x71\x66\x53\x57\x51\x4f','\x45\x63\x43\x43\x57\x50\x43\x36\x57\x35\x37\x64\x55\x38\x6f\x4a','\x72\x58\x39\x6e\x57\x34\x61\x4c','\x57\x52\x6e\x75\x57\x35\x7a\x38\x43\x47','\x75\x6d\x6f\x76\x77\x73\x6d\x6c\x6f\x61','\x57\x35\x43\x6f\x57\x35\x52\x64\x51\x47','\x57\x51\x46\x63\x4e\x63\x57\x4f\x67\x43\x6f\x71','\x64\x6d\x6b\x6f\x44\x4a\x46\x63\x52\x53\x6b\x63\x57\x50\x74\x64\x4f\x71','\x57\x37\x69\x72\x57\x36\x42\x64\x4d\x53\x6b\x39','\x62\x53\x6f\x61\x57\x4f\x48\x41\x57\x37\x6d','\x57\x34\x75\x2b\x57\x35\x68\x64\x47\x47','\x43\x66\x72\x4b\x57\x52\x68\x64\x4f\x61','\x57\x4f\x5a\x64\x51\x6d\x6b\x75\x66\x53\x6b\x4d\x57\x50\x34','\x57\x34\x6d\x50\x57\x34\x33\x64\x4e\x6d\x6b\x65\x42\x43\x6f\x34\x44\x71','\x57\x4f\x56\x64\x50\x6d\x6b\x75','\x57\x37\x6a\x41\x57\x35\x6d\x42\x57\x36\x78\x64\x47\x57\x35\x44','\x57\x52\x6d\x70\x57\x50\x54\x48\x6c\x71','\x57\x35\x31\x41\x7a\x38\x6b\x55\x46\x53\x6f\x36\x45\x6d\x6f\x71','\x57\x51\x68\x63\x54\x49\x52\x63\x52\x61','\x57\x52\x7a\x6d\x6d\x76\x2f\x64\x4c\x57','\x74\x31\x52\x63\x54\x76\x64\x64\x53\x47','\x57\x37\x6c\x64\x4e\x6d\x6b\x71\x78\x53\x6b\x78','\x57\x36\x68\x64\x48\x77\x42\x63\x48\x76\x72\x55\x57\x35\x33\x64\x55\x71','\x57\x36\x79\x39\x57\x35\x2f\x64\x4f\x43\x6b\x51','\x57\x4f\x4e\x63\x49\x57\x58\x52\x75\x71','\x57\x34\x54\x64\x7a\x71','\x57\x50\x69\x32\x57\x4f\x76\x78\x6d\x47','\x74\x38\x6b\x41\x57\x52\x68\x63\x4b\x6d\x6f\x65','\x79\x43\x6f\x6f\x73\x64\x71\x69','\x7a\x64\x58\x6b\x41\x47\x57','\x57\x4f\x74\x64\x53\x43\x6f\x77\x63\x38\x6f\x71\x61\x4e\x61\x4d','\x57\x34\x6d\x50\x57\x35\x4e\x64\x4e\x6d\x6b\x6f\x7a\x57','\x62\x75\x52\x63\x49\x31\x30\x47','\x57\x51\x42\x63\x50\x5a\x74\x63\x4c\x71\x65','\x74\x4a\x7a\x36\x41\x4a\x47','\x63\x53\x6f\x75\x57\x51\x76\x69\x57\x4f\x50\x61','\x71\x43\x6b\x63\x57\x50\x78\x63\x53\x53\x6f\x4a\x57\x36\x71\x6c\x57\x37\x79','\x76\x6d\x6f\x36\x79\x61\x4b\x76','\x57\x35\x79\x4c\x57\x34\x33\x64\x56\x6d\x6b\x42','\x44\x43\x6b\x43\x67\x6d\x6b\x65\x57\x34\x6c\x63\x47\x6d\x6f\x61\x6d\x71','\x7a\x43\x6f\x56\x57\x50\x65\x32','\x57\x35\x69\x75\x44\x31\x2f\x64\x47\x53\x6b\x70\x57\x35\x4c\x2f','\x57\x51\x66\x53\x6c\x4e\x5a\x64\x51\x57','\x41\x4a\x76\x7a\x74\x47','\x57\x52\x70\x63\x4d\x63\x79\x52\x64\x53\x6f\x71\x6d\x53\x6f\x53','\x57\x50\x66\x7a\x57\x36\x52\x64\x49\x53\x6f\x30\x57\x50\x4f\x62\x57\x50\x71','\x67\x38\x6f\x66\x71\x6d\x6b\x38','\x46\x43\x6b\x73\x57\x50\x64\x64\x52\x5a\x6c\x64\x4e\x57','\x57\x34\x2f\x63\x4f\x74\x56\x64\x52\x61','\x42\x53\x6b\x6c\x63\x53\x6b\x45\x57\x35\x4e\x63\x48\x53\x6f\x72\x69\x61','\x69\x61\x56\x64\x4e\x78\x31\x47\x72\x57\x78\x64\x4a\x57','\x57\x4f\x66\x64\x57\x36\x46\x64\x4a\x38\x6f\x34\x57\x4f\x30\x78','\x61\x6d\x6f\x41\x57\x51\x54\x37\x57\x4f\x50\x77\x57\x51\x46\x63\x4b\x57','\x57\x51\x4e\x63\x55\x64\x46\x63\x50\x71','\x57\x50\x66\x7a\x57\x36\x52\x64\x4e\x38\x6f\x34\x57\x50\x30\x72\x57\x4f\x34','\x64\x53\x6b\x64\x74\x71\x46\x63\x54\x57','\x57\x4f\x52\x63\x55\x63\x46\x63\x50\x71','\x57\x36\x31\x70\x57\x34\x65\x6e\x57\x35\x42\x64\x4c\x63\x72\x44','\x76\x72\x71\x31\x57\x4f\x4b\x64','\x72\x43\x6f\x63\x6e\x47','\x57\x36\x6c\x63\x47\x48\x7a\x47\x57\x37\x62\x4a\x57\x4f\x34','\x69\x4a\x5a\x64\x4c\x66\x31\x4f','\x57\x51\x56\x63\x54\x4a\x64\x63\x54\x64\x48\x66\x6e\x53\x6f\x64','\x6c\x43\x6f\x5a\x57\x51\x44\x4c\x57\x34\x62\x37\x41\x64\x65','\x76\x43\x6f\x46\x77\x53\x6b\x39\x62\x66\x2f\x64\x53\x30\x4f','\x44\x6d\x6b\x54\x6f\x6d\x6b\x35\x57\x36\x71','\x74\x6d\x6f\x69\x74\x63\x71\x6c\x69\x53\x6b\x58','\x57\x51\x37\x63\x50\x61\x78\x63\x51\x71\x4c\x6e\x69\x43\x6f\x73','\x57\x4f\x2f\x64\x48\x72\x37\x64\x47\x43\x6f\x43','\x65\x43\x6f\x78\x61\x38\x6f\x54\x57\x50\x46\x64\x51\x5a\x75','\x57\x50\x79\x59\x57\x50\x50\x68\x69\x5a\x4c\x74\x61\x57','\x70\x48\x52\x64\x4b\x77\x7a\x62\x72\x5a\x74\x64\x4a\x47','\x57\x51\x52\x63\x52\x43\x6f\x78\x43\x48\x46\x63\x4a\x53\x6b\x5a\x78\x47','\x65\x48\x52\x64\x4e\x32\x44\x58\x76\x4a\x2f\x64\x49\x71','\x57\x52\x62\x66\x57\x37\x74\x64\x4e\x38\x6f\x58','\x57\x52\x52\x64\x55\x73\x78\x64\x54\x32\x38','\x57\x35\x52\x63\x55\x48\x78\x64\x4b\x53\x6f\x38','\x64\x43\x6f\x78\x57\x4f\x58\x54\x57\x36\x4f','\x57\x51\x42\x63\x56\x47\x39\x58\x77\x71\x56\x63\x53\x47\x61','\x57\x37\x6a\x68\x57\x35\x75\x78\x57\x36\x4a\x64\x49\x47\x35\x79','\x57\x52\x70\x63\x4d\x63\x71\x33\x65\x38\x6f\x41','\x57\x52\x5a\x63\x47\x5a\x33\x64\x4e\x58\x34\x4c\x57\x50\x52\x63\x54\x71','\x57\x37\x33\x64\x4d\x66\x74\x63\x47\x30\x44\x54\x57\x34\x47','\x57\x4f\x7a\x4c\x57\x4f\x30\x49\x69\x61','\x57\x34\x50\x66\x42\x43\x6b\x35\x45\x71','\x57\x4f\x6e\x2b\x57\x4f\x38\x47\x6a\x5a\x62\x6e\x57\x51\x4f','\x57\x4f\x43\x2f\x57\x50\x62\x71\x6e\x71','\x57\x52\x78\x64\x51\x6d\x6b\x75\x63\x43\x6b\x47\x57\x50\x72\x43\x73\x47','\x61\x43\x6f\x61\x57\x52\x48\x66\x57\x50\x54\x6e\x57\x52\x52\x63\x4b\x47','\x57\x51\x4a\x63\x52\x71\x72\x44','\x57\x36\x74\x64\x50\x6d\x6b\x46\x74\x53\x6b\x43\x72\x63\x6d','\x41\x53\x6b\x6c\x65\x43\x6b\x34\x57\x34\x4b','\x57\x34\x69\x73\x46\x4b\x6c\x64\x48\x53\x6b\x61\x57\x35\x38','\x75\x6d\x6f\x42\x57\x37\x69','\x57\x34\x4b\x62\x57\x37\x74\x64\x4a\x6d\x6b\x4d','\x44\x75\x35\x37\x57\x50\x42\x64\x56\x61','\x57\x35\x47\x2f\x57\x37\x37\x64\x48\x53\x6b\x70\x79\x6d\x6f\x74\x43\x71','\x57\x4f\x72\x72\x61\x38\x6b\x49\x57\x35\x47','\x57\x37\x70\x64\x52\x43\x6b\x6a\x75\x38\x6b\x47\x57\x4f\x4a\x64\x49\x71\x4b','\x57\x50\x74\x63\x47\x58\x4e\x63\x47\x58\x65','\x57\x35\x31\x7a\x45\x38\x6b\x4b\x45\x43\x6f\x6c\x72\x43\x6f\x6c','\x6d\x66\x79\x44\x57\x35\x6e\x59','\x6c\x68\x4e\x63\x52\x76\x4b\x6b\x64\x61','\x57\x4f\x4e\x64\x4f\x71\x70\x64\x56\x75\x56\x63\x48\x47','\x57\x51\x68\x63\x55\x59\x5a\x63\x52\x58\x75','\x61\x43\x6f\x59\x7a\x53\x6b\x64\x6d\x61','\x75\x38\x6b\x42\x57\x4f\x46\x63\x4b\x47','\x57\x4f\x72\x68\x6b\x43\x6b\x34\x57\x34\x37\x64\x49\x6d\x6b\x4e\x78\x47','\x75\x43\x6f\x34\x71\x74\x71\x44','\x57\x50\x2f\x64\x4a\x47\x46\x64\x53\x57','\x57\x4f\x4e\x64\x4d\x62\x4a\x64\x50\x43\x6f\x4e','\x57\x36\x42\x64\x4d\x75\x6c\x63\x53\x4d\x69','\x76\x4a\x44\x50\x46\x5a\x38','\x57\x51\x76\x53\x57\x34\x6c\x64\x50\x53\x6f\x30','\x57\x52\x46\x63\x54\x53\x6f\x73','\x57\x50\x56\x64\x52\x59\x70\x64\x47\x4d\x68\x63\x53\x43\x6f\x77\x72\x57','\x57\x51\x64\x64\x4e\x43\x6b\x2f\x65\x43\x6b\x5a','\x57\x4f\x42\x64\x4e\x48\x4b','\x57\x35\x34\x4b\x46\x66\x37\x64\x4c\x43\x6b\x64\x57\x35\x34','\x57\x51\x42\x63\x54\x47\x50\x6c\x6f\x38\x6f\x79\x57\x51\x35\x32','\x64\x53\x6b\x30\x46\x64\x70\x63\x50\x43\x6b\x71','\x57\x52\x66\x67\x57\x37\x48\x37\x44\x57','\x57\x35\x4c\x6a\x46\x6d\x6b\x4b\x45\x43\x6f\x6c\x72\x43\x6f\x77','\x43\x43\x6f\x37\x57\x37\x6a\x51\x57\x4f\x35\x36\x75\x4a\x38','\x73\x43\x6b\x43\x57\x50\x4f','\x57\x52\x5a\x63\x4f\x43\x6f\x76\x46\x48\x52\x63\x4e\x43\x6b\x2f\x78\x61','\x57\x34\x69\x73\x46\x4b\x6c\x64\x48\x53\x6b\x61\x57\x36\x44\x55','\x57\x34\x2f\x63\x4c\x74\x37\x64\x4b\x38\x6f\x2b','\x57\x34\x65\x45\x41\x32\x46\x64\x47\x53\x6b\x76\x57\x36\x31\x2f','\x57\x34\x42\x63\x4b\x57\x6a\x6b\x57\x36\x6d','\x57\x51\x68\x64\x55\x43\x6b\x45\x6d\x38\x6b\x65','\x57\x34\x64\x63\x53\x58\x74\x64\x51\x43\x6f\x44\x74\x77\x72\x38','\x57\x50\x66\x65\x57\x36\x68\x64\x4a\x43\x6f\x50\x57\x50\x53\x61\x57\x51\x75','\x57\x51\x64\x63\x49\x53\x6f\x6b\x46\x72\x65','\x68\x38\x6b\x2b\x78\x48\x70\x63\x52\x71','\x78\x6d\x6f\x74\x57\x51\x69\x32\x76\x47','\x44\x4d\x78\x63\x56\x4c\x6c\x64\x55\x78\x4e\x63\x50\x6d\x6b\x6b','\x57\x52\x78\x64\x54\x73\x75\x32\x57\x4f\x6d','\x57\x51\x33\x63\x47\x6d\x6f\x33\x43\x61\x53','\x6b\x53\x6f\x79\x57\x4f\x6e\x51\x57\x51\x69','\x6d\x38\x6f\x56\x57\x52\x72\x51\x57\x35\x76\x2b\x77\x64\x57','\x77\x72\x79\x78\x57\x51\x69\x71','\x57\x51\x52\x63\x4c\x57\x35\x7a\x74\x48\x30','\x57\x37\x4a\x64\x51\x43\x6b\x69\x74\x38\x6b\x33','\x62\x30\x57\x2b\x57\x37\x4c\x72\x57\x51\x37\x64\x55\x30\x75','\x57\x50\x5a\x64\x51\x71\x33\x64\x56\x30\x2f\x63\x4a\x53\x6f\x72','\x57\x35\x57\x52\x57\x35\x33\x64\x53\x61','\x57\x36\x4b\x62\x46\x65\x46\x64\x51\x61','\x77\x53\x6f\x67\x6e\x53\x6f\x6b\x57\x52\x52\x64\x4a\x57\x69','\x57\x4f\x5a\x63\x4d\x63\x47\x52\x64\x53\x6f\x6e\x6d\x6d\x6f\x4d','\x7a\x72\x79\x53\x57\x51\x43\x48','\x46\x43\x6f\x31\x57\x52\x53\x6b\x72\x61','\x57\x51\x6c\x64\x50\x71\x46\x64\x56\x4c\x5a\x63\x4d\x38\x6f\x4c\x72\x57','\x7a\x32\x46\x63\x51\x30\x4a\x64\x4e\x57','\x57\x36\x46\x64\x47\x4e\x6c\x63\x4e\x31\x72\x47','\x57\x52\x42\x63\x53\x61\x4b','\x77\x53\x6b\x67\x57\x37\x38\x75\x57\x35\x79\x75\x57\x36\x68\x63\x48\x6d\x6f\x30\x57\x34\x4e\x64\x4a\x71\x6e\x54','\x44\x4c\x39\x4a\x57\x51\x5a\x64\x51\x57','\x57\x37\x70\x63\x4d\x58\x62\x4e','\x57\x50\x42\x64\x51\x57\x75\x64\x57\x4f\x43','\x62\x43\x6f\x46\x57\x52\x65\x5a\x77\x43\x6b\x53\x7a\x47\x38','\x57\x50\x4c\x65\x61\x6d\x6f\x61\x57\x36\x74\x63\x51\x38\x6b\x33','\x57\x35\x52\x63\x55\x72\x4e\x64\x4d\x43\x6f\x35','\x57\x35\x4e\x63\x4f\x73\x64\x64\x53\x38\x6f\x77','\x57\x37\x78\x63\x55\x6d\x6f\x59\x6b\x38\x6f\x37\x6b\x4c\x52\x63\x53\x71','\x6e\x53\x6f\x30\x57\x50\x6d\x6e\x78\x47','\x57\x4f\x4f\x61\x76\x63\x71\x35\x69\x53\x6b\x61','\x66\x30\x57\x50\x57\x34\x4c\x71\x57\x51\x4e\x63\x51\x75\x65','\x57\x50\x2f\x64\x51\x6d\x6b\x78\x61\x57','\x57\x50\x5a\x63\x4c\x43\x6f\x54\x42\x61\x30','\x41\x43\x6f\x54\x65\x43\x6f\x52\x57\x52\x4b','\x46\x6d\x6f\x56\x57\x4f\x30\x51\x7a\x43\x6f\x59\x63\x61\x34','\x42\x53\x6f\x4b\x57\x50\x57','\x6d\x6d\x6f\x31\x57\x52\x72\x55','\x57\x51\x53\x59\x57\x52\x4c\x74\x64\x71','\x57\x4f\x69\x35\x57\x4f\x62\x41\x68\x47','\x57\x4f\x4a\x64\x55\x72\x38\x79\x57\x52\x79\x69\x57\x35\x61\x52','\x57\x52\x6a\x66\x57\x34\x44\x34\x73\x71','\x44\x78\x4a\x63\x51\x76\x61','\x57\x50\x6c\x64\x4f\x6d\x6f\x66\x61\x6d\x6f\x64\x61\x65\x34\x48','\x57\x4f\x62\x74\x57\x36\x52\x64\x4a\x43\x6f\x57\x57\x50\x53\x33\x57\x4f\x6d','\x57\x52\x62\x75\x57\x4f\x47\x32\x6e\x59\x66\x34\x57\x50\x79','\x65\x38\x6f\x6c\x77\x6d\x6b\x51\x62\x61','\x43\x47\x6a\x79\x57\x35\x57\x4d\x57\x50\x53\x6b\x57\x36\x65','\x57\x4f\x56\x64\x4f\x61\x6d\x4a\x57\x50\x57','\x79\x61\x6a\x6e\x57\x35\x53\x4e\x57\x4f\x34\x48\x57\x37\x57','\x42\x43\x6f\x4c\x6c\x53\x6f\x75\x57\x4f\x38','\x57\x4f\x37\x64\x47\x72\x4a\x64\x55\x53\x6f\x4d\x66\x53\x6b\x44\x70\x57','\x42\x30\x35\x2b\x57\x51\x52\x64\x52\x5a\x4f','\x57\x50\x69\x74\x57\x4f\x66\x50\x6a\x47','\x61\x6d\x6f\x39\x44\x38\x6b\x74\x6d\x71','\x57\x51\x52\x63\x56\x6d\x6f\x72','\x57\x50\x6e\x30\x64\x77\x74\x64\x4e\x71','\x57\x4f\x54\x48\x57\x50\x47\x78\x57\x4f\x53','\x57\x34\x69\x79\x44\x4c\x37\x64\x47\x47','\x57\x36\x72\x45\x57\x35\x30\x41\x57\x36\x68\x64\x55\x73\x6a\x68','\x78\x38\x6f\x75\x57\x51\x53\x55\x77\x43\x6f\x41','\x6e\x4d\x64\x63\x53\x30\x47\x6c\x66\x38\x6f\x36\x57\x4f\x4b','\x57\x4f\x66\x55\x57\x4f\x54\x75\x57\x4f\x72\x76\x57\x34\x52\x64\x49\x61','\x57\x4f\x4c\x61\x68\x53\x6f\x63\x57\x36\x64\x63\x52\x6d\x6b\x76\x61\x47','\x57\x34\x38\x37\x57\x34\x42\x64\x49\x6d\x6b\x56','\x42\x73\x2f\x63\x54\x6d\x6f\x71\x6a\x6d\x6b\x33\x57\x50\x43','\x76\x4a\x7a\x56\x79\x47\x37\x64\x4d\x4d\x5a\x64\x55\x71','\x57\x52\x52\x64\x4a\x38\x6b\x55\x7a\x6d\x6b\x35\x42\x57','\x57\x35\x75\x50\x57\x36\x56\x64\x49\x53\x6b\x63\x45\x38\x6f\x63\x79\x61','\x44\x75\x72\x54\x57\x51\x33\x64\x55\x64\x70\x63\x4e\x53\x6b\x47','\x57\x52\x70\x64\x53\x53\x6f\x63\x64\x53\x6f\x71','\x57\x37\x46\x63\x4c\x48\x58\x56','\x79\x64\x71\x6f\x57\x4f\x4b\x61\x57\x35\x5a\x64\x52\x6d\x6f\x34','\x57\x34\x4b\x7a\x57\x34\x5a\x64\x4e\x38\x6b\x49','\x6a\x33\x30\x42\x62\x47','\x57\x50\x4e\x64\x50\x75\x52\x64\x4f\x4c\x52\x63\x47\x38\x6f\x61\x78\x61','\x57\x52\x54\x30\x6e\x43\x6f\x62\x57\x36\x69','\x57\x50\x72\x43\x66\x32\x68\x64\x4d\x47','\x57\x52\x44\x4b\x6d\x68\x56\x64\x51\x5a\x47','\x57\x51\x76\x4c\x57\x4f\x65\x42\x57\x50\x66\x6a\x57\x36\x70\x64\x4e\x57','\x67\x6d\x6f\x6c\x74\x61','\x57\x4f\x72\x48\x57\x50\x38\x61\x57\x52\x58\x65\x57\x35\x43','\x6d\x38\x6f\x5a\x57\x51\x34','\x57\x52\x42\x63\x54\x47\x4c\x44','\x57\x51\x37\x63\x50\x61\x6c\x63\x53\x48\x76\x66\x6c\x61','\x57\x4f\x4a\x64\x55\x72\x38\x79\x57\x52\x79\x44\x57\x34\x61','\x57\x4f\x6c\x64\x48\x64\x42\x64\x50\x6d\x6f\x48\x61\x38\x6b\x6e','\x57\x36\x46\x64\x4e\x33\x74\x63\x48\x77\x7a\x31\x57\x35\x2f\x64\x56\x57','\x57\x4f\x74\x64\x4e\x6d\x6b\x58\x73\x6d\x6b\x4b','\x6f\x38\x6f\x37\x57\x52\x6a\x55\x57\x34\x75','\x57\x52\x46\x63\x56\x62\x66\x6c\x6f\x38\x6f\x36\x57\x51\x39\x32','\x57\x4f\x46\x63\x4e\x64\x50\x42\x71\x71','\x73\x43\x6b\x4e\x57\x52\x4a\x64\x56\x59\x43','\x57\x52\x72\x56\x57\x34\x31\x37\x74\x57','\x66\x38\x6f\x6e\x57\x51\x31\x6d\x57\x34\x75','\x61\x53\x6b\x65\x44\x47','\x6b\x6d\x6b\x5a\x76\x74\x37\x63\x49\x47','\x57\x35\x52\x63\x47\x58\x48\x32\x57\x35\x79','\x74\x38\x6f\x79\x76\x49\x61\x71\x6a\x57','\x57\x34\x69\x70\x45\x66\x4a\x64\x4b\x53\x6b\x46','\x57\x50\x78\x64\x4d\x43\x6b\x6e\x65\x53\x6b\x4b','\x42\x5a\x6e\x69\x42\x62\x47','\x57\x4f\x79\x64\x45\x4a\x75\x4a\x68\x61','\x75\x38\x6b\x67\x57\x50\x5a\x63\x48\x43\x6f\x48\x57\x37\x69\x59\x57\x36\x53','\x57\x4f\x4a\x64\x4d\x62\x4e\x64\x50\x43\x6f\x4e\x65\x6d\x6b\x62\x6d\x57','\x57\x51\x52\x63\x55\x61\x76\x42\x78\x59\x46\x63\x50\x61','\x57\x52\x72\x53\x6f\x68\x42\x64\x4b\x74\x4b\x59\x46\x61','\x57\x34\x78\x63\x49\x63\x70\x64\x4c\x43\x6f\x4b','\x6b\x62\x42\x64\x4b\x33\x44\x49\x73\x4a\x70\x64\x47\x47','\x57\x37\x6a\x6e\x57\x35\x30\x6c\x57\x36\x57','\x57\x4f\x72\x69\x57\x34\x6d','\x46\x31\x78\x63\x4b\x30\x65\x67\x64\x43\x6f\x6a','\x57\x52\x6e\x65\x57\x35\x78\x64\x4e\x43\x6f\x56','\x57\x36\x56\x63\x4a\x57\x4a\x64\x52\x53\x6f\x68','\x57\x35\x30\x45\x44\x30\x56\x64\x4b\x38\x6b\x65','\x57\x36\x42\x64\x4d\x78\x52\x63\x47\x32\x50\x56\x57\x35\x37\x64\x51\x71','\x42\x53\x6f\x58\x73\x61\x57\x53','\x57\x37\x43\x49\x57\x35\x56\x64\x56\x43\x6b\x6e','\x57\x52\x31\x4d\x69\x6d\x6b\x67\x57\x36\x38','\x57\x51\x4e\x63\x4a\x38\x6f\x62\x45\x74\x4f','\x57\x51\x66\x6d\x6c\x32\x46\x64\x49\x61','\x57\x35\x54\x66\x7a\x53\x6b\x2b\x43\x38\x6f\x67\x42\x38\x6f\x6c','\x6a\x33\x68\x63\x55\x71','\x57\x51\x4e\x63\x51\x71\x6e\x75','\x57\x50\x31\x59\x65\x43\x6f\x75\x57\x34\x57','\x57\x51\x31\x32\x57\x4f\x6d\x79\x57\x50\x7a\x65\x57\x34\x33\x64\x47\x47','\x57\x34\x69\x73\x46\x4b\x6c\x64\x48\x53\x6b\x61','\x57\x35\x33\x63\x53\x4a\x56\x64\x50\x38\x6f\x75\x71\x77\x6a\x67','\x57\x52\x31\x42\x57\x51\x4b\x76\x6c\x57','\x44\x75\x35\x4c\x57\x52\x68\x64\x56\x61','\x57\x36\x7a\x6c\x57\x35\x57\x43','\x78\x33\x70\x63\x49\x30\x5a\x64\x4c\x61','\x57\x37\x70\x64\x51\x43\x6b\x43','\x57\x50\x56\x64\x50\x43\x6b\x37\x63\x43\x6b\x4e\x57\x4f\x6e\x2f\x77\x71','\x43\x48\x6a\x69','\x62\x53\x6f\x70\x71\x61','\x6c\x43\x6f\x32\x57\x52\x72\x66\x57\x34\x4b','\x57\x51\x6a\x48\x6e\x77\x5a\x64\x51\x57','\x57\x4f\x52\x64\x54\x58\x53','\x43\x53\x6b\x66\x57\x50\x56\x64\x51\x74\x6c\x64\x4b\x53\x6f\x6b\x57\x36\x57','\x45\x62\x76\x69\x57\x37\x75\x39','\x57\x52\x7a\x4f\x6d\x4d\x4f','\x57\x50\x2f\x64\x55\x43\x6f\x44\x61\x38\x6f\x55\x61\x4b\x79\x52','\x57\x4f\x6c\x64\x53\x71\x61\x79\x57\x4f\x57\x42','\x72\x53\x6f\x55\x71\x73\x4b\x68','\x57\x52\x74\x63\x53\x49\x33\x63\x50\x61\x6a\x77\x63\x53\x6f\x45','\x57\x4f\x6e\x30\x57\x52\x71\x44\x63\x71\x39\x36\x57\x52\x4b','\x57\x34\x4f\x65\x57\x36\x56\x64\x56\x43\x6b\x6b\x46\x53\x6b\x6e','\x57\x4f\x72\x74\x57\x36\x47','\x42\x53\x6b\x70\x63\x6d\x6b\x2b\x57\x34\x4e\x63\x47\x43\x6f\x54\x6a\x61','\x57\x34\x75\x50\x57\x34\x56\x64\x4d\x57','\x46\x63\x43\x43','\x43\x49\x38\x64\x57\x50\x43\x61\x57\x34\x30','\x69\x5a\x74\x64\x4e\x4e\x54\x37','\x79\x61\x6a\x45\x57\x35\x61\x4c\x57\x4f\x57\x78\x57\x37\x71','\x57\x34\x43\x73\x57\x37\x4e\x64\x51\x53\x6b\x42\x42\x43\x6b\x72\x61\x71','\x76\x5a\x66\x4a\x43\x5a\x74\x64\x49\x4e\x61','\x57\x37\x70\x63\x4b\x47\x7a\x33','\x42\x78\x6c\x63\x4f\x47','\x57\x36\x79\x56\x57\x34\x68\x64\x4a\x53\x6b\x6a','\x57\x52\x68\x64\x52\x74\x71\x70\x57\x4f\x6d','\x72\x48\x58\x2b\x76\x49\x53','\x57\x35\x79\x64\x57\x34\x5a\x63\x54\x57','\x57\x4f\x48\x49\x6d\x4d\x64\x64\x55\x47','\x72\x4a\x44\x4c\x79\x49\x46\x64\x4e\x67\x43','\x61\x53\x6b\x69\x42\x4a\x46\x63\x49\x57','\x57\x51\x4a\x64\x52\x6d\x6f\x45\x65\x6d\x6f\x73\x62\x4b\x4f\x50','\x74\x72\x76\x67\x79\x59\x4f','\x57\x50\x48\x75\x65\x38\x6f\x70\x57\x36\x64\x63\x55\x38\x6b\x48','\x57\x36\x68\x63\x48\x72\x62\x31\x57\x34\x50\x31\x57\x50\x6e\x45','\x57\x34\x6a\x37\x45\x53\x6b\x35\x71\x47','\x77\x73\x6d\x63\x57\x4f\x57\x78\x57\x34\x42\x64\x4e\x38\x6f\x4c','\x57\x50\x37\x64\x52\x6d\x6b\x71\x63\x47','\x69\x71\x56\x64\x4e\x4e\x76\x4d\x76\x47','\x45\x6d\x6f\x65\x57\x4f\x61\x50\x78\x61','\x65\x53\x6f\x4c\x57\x51\x61\x48\x72\x43\x6b\x61','\x68\x6d\x6f\x43\x75\x43\x6b\x43\x66\x30\x74\x63\x54\x30\x69','\x57\x50\x4a\x64\x47\x48\x74\x64\x54\x43\x6f\x32\x65\x43\x6b\x68','\x57\x52\x37\x64\x52\x47\x74\x64\x4b\x32\x47','\x7a\x53\x6b\x30\x57\x4f\x74\x64\x4d\x57\x30','\x44\x48\x54\x64\x57\x34\x53\x59\x57\x51\x57\x6d\x57\x37\x6d','\x64\x43\x6f\x62\x57\x52\x48\x62\x57\x4f\x6a\x75\x57\x51\x68\x63\x4a\x57','\x57\x34\x6d\x69\x43\x65\x70\x64\x49\x71','\x66\x76\x53\x31\x57\x34\x6d','\x57\x51\x72\x70\x66\x53\x6f\x70\x57\x34\x57','\x57\x37\x52\x64\x4a\x33\x5a\x63\x4c\x76\x72\x34\x57\x35\x71','\x41\x6d\x6b\x70\x75\x38\x6b\x4e\x57\x35\x2f\x63\x49\x53\x6f\x43','\x7a\x64\x71\x6b\x57\x4f\x75\x61\x57\x34\x33\x64\x51\x53\x6f\x59','\x57\x36\x4a\x63\x50\x61\x6c\x64\x4f\x53\x6f\x49','\x67\x38\x6f\x46\x57\x51\x4f\x4e\x73\x6d\x6b\x42','\x73\x62\x68\x63\x4b\x43\x6f\x78\x66\x57','\x62\x43\x6f\x67\x57\x50\x6e\x6e\x57\x4f\x53','\x67\x6d\x6f\x70\x57\x52\x61\x4a\x75\x38\x6b\x45\x79\x47','\x57\x50\x48\x79\x57\x34\x6e\x51\x44\x47\x6d\x45\x6c\x71','\x57\x51\x42\x63\x47\x4a\x64\x63\x54\x57\x6d','\x75\x4a\x6d\x37\x57\x51\x57\x5a','\x57\x51\x2f\x64\x47\x53\x6b\x2f\x43\x53\x6b\x66','\x6c\x68\x68\x63\x51\x65\x65','\x46\x38\x6f\x4c\x57\x4f\x4f\x74\x79\x38\x6f\x55\x66\x47\x34','\x57\x51\x56\x63\x54\x74\x76\x59\x65\x57','\x57\x4f\x72\x7a\x57\x35\x7a\x39\x42\x62\x30','\x6a\x38\x6f\x55\x57\x52\x6d\x77\x43\x47','\x46\x4a\x76\x68\x7a\x62\x2f\x64\x53\x43\x6b\x79','\x46\x5a\x44\x72\x74\x63\x68\x64\x54\x43\x6b\x68','\x57\x35\x43\x41\x43\x65\x61','\x57\x52\x31\x76\x6e\x67\x74\x64\x49\x71','\x57\x51\x72\x31\x6d\x75\x68\x64\x47\x47','\x68\x38\x6f\x61\x57\x51\x39\x68\x57\x4f\x50\x78\x57\x51\x79','\x57\x4f\x66\x76\x57\x36\x78\x64\x47\x53\x6f\x63\x57\x50\x6d\x78','\x57\x50\x6a\x63\x57\x51\x38\x32\x57\x4f\x57','\x67\x6d\x6f\x70\x77\x43\x6b\x32\x65\x31\x74\x63\x4c\x66\x75','\x6f\x4e\x68\x63\x53\x31\x34\x6b','\x6a\x53\x6f\x32\x57\x51\x76\x6c\x57\x51\x75','\x74\x66\x42\x63\x53\x32\x78\x64\x51\x47','\x70\x4d\x4e\x63\x53\x75\x47','\x6b\x62\x4a\x64\x4d\x78\x7a\x33\x75\x64\x4e\x64\x49\x61','\x57\x52\x5a\x64\x50\x6d\x6b\x55\x79\x6d\x6b\x39\x43\x57\x78\x64\x51\x57','\x73\x43\x6f\x6b\x6b\x47','\x57\x4f\x33\x63\x56\x74\x72\x75\x62\x57','\x66\x6d\x6f\x41\x72\x6d\x6b\x31\x63\x65\x37\x63\x53\x4c\x6d','\x45\x63\x7a\x6a\x43\x62\x56\x64\x55\x43\x6b\x71\x46\x71','\x46\x5a\x44\x46\x75\x62\x53','\x57\x4f\x78\x64\x56\x43\x6f\x73\x63\x53\x6f\x64\x63\x4d\x61\x34','\x57\x35\x47\x4a\x57\x35\x79','\x57\x4f\x58\x6a\x57\x50\x30\x35\x57\x52\x65','\x62\x43\x6f\x42\x57\x52\x6d\x67\x78\x43\x6b\x41\x41\x57','\x57\x52\x42\x63\x55\x38\x6f\x70\x46\x48\x52\x63\x4e\x71','\x78\x6d\x6f\x63\x6e\x6d\x6f\x62\x57\x52\x37\x64\x4d\x61','\x57\x52\x31\x4f\x6d\x4d\x4a\x64\x55\x49\x69','\x43\x6d\x6b\x31\x64\x38\x6b\x4f\x57\x34\x52\x63\x4c\x38\x6f\x78\x6e\x47','\x6b\x78\x2f\x63\x52\x30\x53\x67\x67\x53\x6f\x38\x57\x50\x6d','\x57\x4f\x70\x63\x49\x4a\x35\x45\x6d\x57','\x57\x50\x54\x46\x57\x35\x70\x64\x4c\x43\x6f\x73','\x57\x37\x6a\x41\x57\x35\x6d\x6e\x57\x37\x5a\x64\x4c\x71','\x57\x37\x62\x52\x43\x43\x6b\x56\x46\x47','\x57\x34\x6d\x50\x57\x34\x4a\x64\x47\x38\x6b\x61\x41\x53\x6f\x63','\x72\x38\x6f\x37\x6e\x43\x6f\x5a\x57\x52\x6d','\x57\x35\x39\x70\x46\x61','\x57\x37\x4e\x64\x55\x31\x4b\x69\x64\x4c\x37\x64\x54\x61\x5a\x63\x55\x57\x72\x67\x7a\x43\x6f\x63','\x43\x63\x66\x32\x73\x74\x53','\x57\x34\x71\x65\x57\x37\x56\x64\x52\x53\x6b\x35','\x44\x47\x72\x45\x57\x34\x4f\x49\x57\x4f\x58\x65','\x42\x6d\x6f\x56\x57\x50\x79\x52\x79\x38\x6f\x30\x69\x47\x34','\x57\x4f\x4a\x64\x56\x38\x6b\x71\x63\x43\x6b\x47','\x57\x51\x7a\x4a\x57\x37\x78\x64\x4e\x53\x6f\x4f','\x57\x52\x48\x2b\x67\x4d\x42\x64\x4f\x63\x6d\x59\x45\x61','\x74\x43\x6f\x7a\x66\x53\x6f\x77\x57\x52\x30','\x7a\x4a\x6d\x53\x57\x52\x65\x4e','\x76\x63\x76\x59\x79\x5a\x71','\x73\x38\x6b\x7a\x66\x53\x6b\x75\x57\x36\x4b','\x42\x32\x74\x63\x4b\x4b\x61','\x72\x53\x6f\x49\x78\x63\x79\x44\x70\x61','\x61\x4b\x57\x2b\x57\x34\x6a\x6c\x57\x52\x4e\x64\x56\x75\x4b','\x57\x50\x30\x58\x57\x51\x7a\x61\x61\x47','\x57\x50\x52\x64\x49\x38\x6f\x66\x62\x6d\x6f\x66\x63\x57','\x57\x52\x62\x4d\x57\x36\x72\x79\x42\x47','\x73\x43\x6f\x79\x79\x61\x34\x59','\x70\x4d\x30\x63\x66\x30\x33\x63\x51\x53\x6b\x64\x77\x38\x6f\x51\x46\x6d\x6f\x71\x62\x61','\x79\x4e\x37\x63\x52\x4b\x6d\x6b\x76\x57','\x57\x52\x7a\x2b\x64\x77\x37\x64\x4a\x57','\x57\x50\x48\x31\x57\x50\x38\x43','\x57\x52\x74\x63\x56\x49\x74\x63\x52\x47\x7a\x69\x42\x57','\x57\x52\x31\x53\x6c\x4d\x42\x64\x55\x4a\x6d','\x57\x52\x58\x4e\x57\x37\x64\x64\x4d\x53\x6f\x34','\x57\x4f\x6e\x32\x70\x38\x6b\x62\x57\x36\x79','\x57\x34\x71\x7a\x57\x34\x56\x64\x4f\x38\x6b\x4e\x44\x6d\x6b\x72\x64\x61','\x57\x4f\x6a\x73\x6d\x43\x6f\x45\x57\x37\x46\x63\x51\x43\x6b\x52','\x44\x75\x72\x54\x57\x51\x33\x64\x55\x64\x6d','\x45\x73\x65\x6b\x57\x52\x57','\x57\x50\x46\x64\x55\x57\x6d\x45\x57\x4f\x57','\x44\x38\x6b\x64\x65\x38\x6b\x50','\x57\x4f\x70\x64\x50\x49\x42\x64\x50\x38\x6f\x67','\x6c\x43\x6f\x32\x57\x51\x4c\x4f\x57\x34\x71','\x57\x51\x44\x2b\x57\x37\x76\x55\x76\x47','\x57\x50\x54\x50\x57\x4f\x65','\x57\x4f\x64\x63\x49\x47\x35\x46\x67\x61','\x57\x36\x48\x44\x57\x37\x6d\x6c\x57\x37\x56\x64\x48\x59\x47','\x46\x38\x6b\x54\x57\x50\x64\x64\x4f\x73\x38','\x45\x63\x43\x43\x57\x50\x43\x36\x57\x34\x5a\x64\x55\x38\x6f\x34','\x57\x4f\x78\x64\x52\x57\x70\x64\x56\x57','\x6a\x33\x4e\x63\x52\x57','\x65\x38\x6f\x63\x57\x4f\x54\x55\x57\x34\x79','\x57\x4f\x44\x65\x68\x53\x6f\x6c\x57\x37\x68\x63\x4f\x61','\x57\x50\x72\x79\x57\x34\x76\x37\x46\x61\x61\x70\x6f\x47','\x57\x4f\x34\x4d\x57\x51\x58\x54\x70\x71','\x57\x35\x48\x37\x57\x36\x4f\x34\x57\x36\x79','\x57\x50\x71\x32\x57\x50\x54\x72\x6d\x47','\x64\x38\x6f\x58\x57\x50\x43\x32\x41\x71','\x6d\x6d\x6f\x31\x57\x52\x43','\x57\x37\x64\x64\x52\x68\x64\x63\x4e\x31\x62\x66\x57\x35\x75','\x41\x4e\x6c\x63\x54\x75\x70\x64\x4b\x4e\x79','\x57\x4f\x56\x64\x51\x72\x4a\x64\x56\x30\x2f\x63\x4a\x38\x6f\x68','\x57\x50\x44\x42\x57\x37\x74\x64\x4d\x6d\x6f\x55','\x62\x6d\x6b\x6a\x43\x4a\x46\x63\x56\x38\x6b\x78','\x45\x53\x6f\x55\x57\x50\x57\x39\x79\x6d\x6f\x2b\x6f\x72\x38','\x62\x4c\x65\x69\x57\x35\x6a\x71\x57\x52\x70\x64\x50\x30\x43','\x57\x52\x42\x63\x56\x63\x56\x63\x53\x47\x53','\x57\x36\x31\x70\x57\x34\x65\x6e\x57\x35\x42\x64\x48\x5a\x6a\x68','\x46\x38\x6f\x50\x61\x6d\x6f\x30\x57\x52\x75','\x57\x4f\x6a\x75\x61\x6d\x6b\x69\x57\x35\x43','\x57\x36\x33\x64\x51\x38\x6b\x6c\x74\x53\x6b\x33','\x57\x4f\x54\x34\x57\x4f\x47\x38\x57\x51\x65','\x57\x34\x5a\x63\x52\x49\x42\x64\x48\x43\x6f\x64\x73\x33\x6e\x58','\x6f\x67\x46\x63\x48\x30\x4f\x34','\x57\x35\x65\x73\x57\x34\x4e\x64\x51\x53\x6b\x77\x41\x38\x6b\x52\x65\x61','\x67\x4d\x43\x69\x57\x37\x58\x6d','\x46\x58\x66\x77\x73\x63\x57','\x57\x50\x48\x76\x6f\x67\x78\x64\x52\x61','\x57\x52\x64\x63\x51\x53\x6f\x4b\x41\x71\x56\x63\x49\x6d\x6b\x4a','\x57\x37\x64\x63\x4f\x47\x7a\x30\x57\x37\x65','\x57\x4f\x7a\x48\x57\x35\x33\x64\x51\x43\x6f\x38','\x57\x52\x6c\x63\x4e\x49\x4f\x32\x67\x71','\x57\x4f\x66\x4b\x61\x43\x6f\x50\x57\x36\x57','\x57\x50\x46\x64\x52\x61\x30\x79\x57\x50\x57\x41','\x57\x4f\x6c\x64\x55\x71\x75\x61','\x57\x36\x70\x64\x4d\x78\x5a\x63\x48\x76\x62\x62\x57\x35\x74\x64\x53\x71','\x6b\x47\x42\x64\x4d\x4d\x44\x61','\x74\x38\x6f\x38\x6d\x53\x6f\x68\x57\x52\x6c\x64\x47\x61','\x57\x35\x47\x69\x78\x30\x78\x64\x49\x43\x6b\x66\x57\x35\x48\x55','\x57\x50\x71\x4c\x57\x4f\x62\x6e\x6a\x71','\x57\x36\x79\x2b\x57\x37\x37\x64\x47\x38\x6b\x77','\x71\x43\x6f\x71\x62\x38\x6f\x75\x57\x51\x4e\x64\x4a\x72\x34','\x57\x4f\x69\x31\x57\x52\x4c\x79\x69\x47','\x62\x43\x6f\x76\x57\x52\x61\x48\x73\x6d\x6b\x77\x73\x48\x34','\x57\x52\x78\x63\x55\x6d\x6f\x77\x42\x59\x42\x63\x4e\x43\x6b\x50','\x62\x53\x6f\x64\x75\x38\x6b\x33\x61\x65\x68\x63\x4a\x65\x57','\x57\x37\x70\x63\x54\x63\x72\x6c\x57\x37\x6d','\x75\x43\x6f\x74\x69\x57','\x57\x4f\x57\x55\x57\x50\x4c\x39','\x57\x51\x65\x65\x57\x4f\x50\x4f\x69\x47','\x57\x4f\x4a\x64\x48\x72\x6c\x64\x54\x38\x6f\x4e\x62\x38\x6b\x71\x64\x57','\x57\x36\x48\x44\x57\x37\x71\x71\x57\x36\x46\x64\x4a\x59\x76\x77','\x57\x50\x74\x64\x51\x6d\x6b\x78\x61\x43\x6b\x4d\x57\x4f\x75','\x57\x50\x48\x6c\x57\x35\x65','\x70\x53\x6b\x5a\x57\x34\x4c\x51\x6d\x38\x6b\x4b\x7a\x30\x4f\x5a\x72\x43\x6b\x48\x77\x43\x6f\x34\x67\x71','\x6b\x6d\x6f\x6a\x57\x51\x66\x5a\x57\x36\x47','\x57\x37\x6d\x63\x57\x35\x6c\x64\x48\x6d\x6b\x7a','\x57\x51\x7a\x4f\x68\x77\x33\x64\x52\x57','\x57\x35\x31\x6e\x7a\x38\x6b\x2f\x42\x57','\x71\x62\x54\x2f\x41\x64\x4f','\x66\x43\x6f\x32\x57\x4f\x38\x49\x78\x47','\x42\x32\x74\x63\x4d\x4c\x42\x64\x4c\x68\x2f\x63\x55\x61','\x75\x38\x6b\x67\x57\x50\x5a\x63\x47\x38\x6f\x47\x57\x37\x69','\x57\x51\x4e\x63\x56\x61\x50\x46\x6b\x53\x6f\x74','\x76\x6d\x6b\x44\x57\x4f\x4e\x63\x4c\x53\x6f\x35','\x57\x4f\x7a\x65\x57\x36\x72\x62\x73\x61','\x57\x51\x6c\x63\x49\x64\x43\x32\x67\x43\x6f\x41\x61\x38\x6f\x42','\x57\x37\x33\x64\x48\x78\x64\x63\x47\x30\x65','\x74\x6d\x6f\x33\x57\x50\x30\x70\x71\x57','\x57\x52\x4c\x76\x57\x36\x44\x49\x43\x61','\x57\x4f\x6c\x64\x4f\x72\x4f','\x6a\x43\x6f\x68\x71\x53\x6b\x6a\x64\x61','\x57\x4f\x72\x59\x57\x51\x4b\x62\x64\x71','\x68\x43\x6f\x6c\x77\x6d\x6b\x2f\x70\x4b\x68\x63\x55\x4b\x65','\x43\x63\x44\x7a\x72\x72\x64\x64\x55\x43\x6b\x79\x74\x61','\x57\x34\x65\x4a\x44\x4b\x37\x64\x50\x47','\x57\x51\x43\x6b\x44\x63\x6d\x47','\x57\x50\x30\x4c\x57\x4f\x76\x34\x6d\x57','\x57\x50\x56\x64\x55\x43\x6f\x63\x65\x43\x6f\x55\x67\x4c\x57','\x63\x4c\x30\x7a\x57\x37\x6a\x54','\x45\x38\x6f\x56\x57\x4f\x57\x35\x41\x47','\x57\x51\x4e\x63\x50\x62\x79\x45\x65\x47','\x57\x52\x5a\x63\x53\x43\x6f\x57\x74\x48\x69','\x73\x73\x31\x55','\x57\x34\x6c\x64\x4a\x75\x68\x63\x4d\x33\x38','\x57\x4f\x76\x6f\x62\x57','\x43\x6d\x6b\x70\x65\x38\x6b\x51\x57\x35\x4a\x63\x4a\x71','\x62\x38\x6b\x6f\x44\x4a\x78\x63\x51\x6d\x6b\x6c','\x57\x36\x48\x50\x46\x53\x6b\x69\x45\x71','\x57\x35\x52\x63\x51\x74\x38','\x74\x72\x57\x33\x57\x52\x4b\x6c','\x71\x57\x71\x48\x57\x50\x43\x30','\x57\x34\x39\x59\x45\x43\x6b\x35\x76\x57','\x46\x43\x6f\x4c\x57\x4f\x47\x30\x7a\x38\x6f\x30\x6d\x47','\x57\x4f\x4c\x73\x66\x43\x6f\x45\x57\x37\x70\x63\x52\x43\x6b\x32','\x57\x35\x6d\x41\x41\x4b\x4e\x64\x49\x38\x6b\x66\x57\x34\x6a\x55','\x57\x36\x33\x64\x56\x43\x6b\x68\x78\x38\x6b\x33\x57\x4f\x6c\x64\x50\x71','\x57\x35\x70\x63\x50\x6d\x6f\x73\x71\x47','\x74\x38\x6b\x61\x57\x4f\x74\x63\x50\x38\x6f\x4e\x57\x36\x71\x64\x57\x36\x43','\x57\x50\x4e\x64\x55\x43\x6f\x43\x61\x61','\x57\x37\x4e\x64\x49\x4e\x56\x63\x48\x66\x72\x47','\x57\x4f\x33\x63\x4e\x59\x78\x63\x48\x64\x61','\x79\x62\x39\x62','\x57\x37\x68\x64\x53\x6d\x6b\x6c\x43\x38\x6b\x4e','\x57\x50\x64\x63\x56\x72\x4c\x44\x75\x57','\x57\x37\x78\x64\x4d\x77\x68\x63\x4c\x66\x66\x74\x57\x35\x64\x64\x51\x61','\x57\x36\x6c\x63\x4d\x58\x58\x47\x57\x37\x61','\x57\x34\x31\x69\x57\x37\x71\x4f\x57\x35\x30','\x57\x34\x7a\x4e\x57\x50\x79','\x76\x43\x6f\x43\x45\x71\x79\x64','\x57\x50\x61\x35\x57\x51\x7a\x32\x68\x47','\x57\x52\x6c\x64\x50\x43\x6b\x55\x7a\x53\x6b\x2f\x42\x48\x71','\x57\x51\x44\x53\x68\x75\x37\x64\x51\x71','\x6f\x30\x42\x63\x54\x30\x34\x44','\x57\x4f\x5a\x64\x47\x74\x38\x32\x57\x4f\x43','\x57\x52\x74\x64\x56\x53\x6b\x53\x69\x43\x6b\x38','\x57\x51\x4e\x64\x4f\x53\x6b\x37\x42\x38\x6b\x31\x79\x61\x78\x64\x54\x57','\x57\x52\x42\x64\x4f\x38\x6b\x38\x71\x6d\x6b\x4b','\x57\x34\x72\x7a\x57\x35\x71\x51\x57\x36\x4f','\x57\x35\x68\x63\x49\x62\x4e\x64\x4a\x43\x6f\x2f','\x57\x51\x30\x55\x57\x4f\x35\x42\x6f\x47','\x57\x52\x74\x64\x4f\x38\x6b\x43\x42\x6d\x6b\x2b\x41\x47\x78\x64\x56\x71','\x57\x51\x48\x54\x63\x6d\x6f\x43\x57\x34\x71','\x57\x4f\x72\x62\x57\x35\x35\x51\x46\x61','\x57\x35\x2f\x63\x48\x59\x42\x64\x49\x53\x6f\x71','\x74\x53\x6f\x62\x57\x52\x76\x75\x57\x4f\x4f\x67','\x57\x4f\x6e\x2b\x57\x51\x69\x73\x65\x74\x58\x76\x57\x52\x43','\x57\x37\x4a\x63\x48\x64\x72\x58\x57\x36\x44\x58\x57\x4f\x71','\x57\x37\x4a\x64\x55\x53\x6b\x6c\x75\x71','\x57\x36\x48\x61\x57\x35\x43\x6c\x57\x37\x30','\x57\x50\x48\x69\x66\x38\x6f\x63\x57\x36\x74\x63\x50\x6d\x6b\x48','\x57\x51\x2f\x63\x4b\x49\x53\x48','\x6b\x73\x33\x64\x49\x65\x54\x71','\x64\x43\x6f\x6a\x57\x50\x50\x4c\x57\x37\x65','\x57\x50\x50\x42\x67\x6d\x6b\x52\x57\x34\x4a\x64\x48\x71','\x71\x30\x6e\x63\x57\x4f\x4e\x64\x4e\x71','\x57\x4f\x56\x64\x52\x72\x47\x70\x57\x4f\x79\x65\x57\x35\x79\x61','\x57\x52\x35\x79\x68\x43\x6f\x32\x57\x34\x4b','\x72\x53\x6b\x6b\x57\x37\x76\x58\x64\x6d\x6f\x65\x6d\x47\x48\x35\x79\x67\x75\x38\x70\x61','\x73\x4e\x52\x63\x53\x4e\x46\x64\x50\x61','\x57\x4f\x74\x64\x4c\x72\x33\x64\x53\x38\x6f\x57\x66\x47','\x57\x51\x6a\x6a\x57\x4f\x4f\x6e\x57\x51\x38','\x57\x35\x72\x6c\x45\x38\x6b\x35\x73\x43\x6f\x77\x45\x43\x6f\x71','\x57\x50\x78\x64\x51\x6d\x6b\x75\x63\x43\x6b\x47\x57\x50\x72\x65\x78\x57','\x61\x43\x6b\x4b\x41\x5a\x33\x63\x50\x61','\x57\x34\x69\x4a\x57\x35\x74\x64\x48\x53\x6b\x66\x79\x6d\x6f\x62\x42\x71','\x57\x34\x53\x78\x43\x65\x34','\x57\x50\x4e\x64\x54\x38\x6f\x67','\x57\x4f\x7a\x58\x63\x43\x6f\x48\x57\x34\x6d','\x57\x50\x52\x63\x54\x47\x7a\x6c\x6f\x38\x6f\x6a\x57\x51\x31\x4e','\x57\x50\x79\x59\x57\x50\x4c\x6f\x6e\x48\x44\x74','\x57\x50\x42\x64\x56\x71\x69\x70\x57\x4f\x57\x41','\x6f\x68\x38\x5a\x57\x36\x44\x55','\x57\x34\x46\x63\x4e\x59\x68\x64\x52\x38\x6f\x46\x74\x78\x72\x57','\x42\x53\x6b\x7a\x66\x6d\x6b\x49\x57\x34\x69','\x57\x51\x4a\x63\x55\x62\x31\x41\x6f\x38\x6f\x50\x57\x52\x72\x32','\x57\x4f\x64\x63\x52\x43\x6f\x63\x74\x49\x38','\x57\x4f\x78\x64\x56\x43\x6f\x73\x63\x53\x6f\x64\x63\x4b\x4f\x50','\x73\x66\x68\x63\x51\x33\x78\x64\x4a\x57','\x57\x37\x37\x64\x48\x68\x5a\x63\x4e\x57','\x43\x6d\x6b\x66\x67\x53\x6b\x73\x57\x34\x4e\x63\x4c\x38\x6f\x61\x6b\x47','\x45\x43\x6b\x31\x67\x43\x6b\x53\x57\x35\x78\x63\x4c\x47','\x73\x6d\x6f\x35\x57\x52\x34\x46\x79\x47','\x72\x62\x57\x31\x57\x50\x75\x64','\x73\x75\x39\x35\x57\x51\x42\x64\x51\x59\x4e\x63\x53\x6d\x6b\x48','\x57\x4f\x66\x6d\x57\x35\x54\x47\x46\x71\x38\x70\x67\x57','\x57\x50\x62\x30\x57\x52\x69','\x46\x59\x66\x74\x71\x72\x56\x64\x51\x38\x6b\x68','\x73\x6d\x6f\x33\x57\x51\x47\x43\x7a\x71','\x57\x37\x6a\x42\x57\x35\x65\x41\x57\x36\x5a\x64\x4c\x73\x69','\x57\x4f\x33\x64\x51\x59\x4f\x66\x57\x4f\x43\x61\x57\x34\x43\x36','\x57\x50\x35\x41\x68\x77\x56\x64\x47\x61','\x57\x4f\x39\x51\x70\x53\x6f\x37\x57\x37\x61','\x57\x51\x4a\x63\x49\x59\x61\x42\x66\x43\x6f\x41\x65\x53\x6f\x4d','\x57\x50\x56\x64\x55\x43\x6f\x66\x61\x6d\x6f\x71\x67\x57','\x57\x4f\x38\x52\x46\x74\x30\x6d','\x57\x4f\x6e\x63\x57\x37\x54\x4d\x42\x47\x53\x6a\x6d\x71','\x57\x51\x34\x66\x57\x52\x48\x47\x62\x47','\x57\x50\x48\x64\x57\x4f\x30\x32\x6d\x61','\x45\x43\x6b\x6f\x57\x4f\x37\x64\x50\x5a\x6c\x64\x4e\x38\x6f\x6c\x57\x34\x61','\x57\x51\x30\x62\x42\x64\x30\x6f','\x68\x53\x6f\x7a\x57\x50\x53\x4b\x77\x43\x6b\x46\x43\x58\x4f','\x6c\x76\x47\x59\x57\x34\x48\x66\x57\x52\x2f\x64\x55\x31\x61','\x67\x38\x6f\x6d\x78\x43\x6b\x39\x62\x65\x70\x63\x53\x65\x69','\x73\x38\x6f\x77\x6e\x6d\x6f\x75\x57\x52\x6c\x64\x4a\x58\x6c\x63\x4b\x61','\x57\x51\x31\x6d\x57\x51\x71\x64\x57\x50\x43','\x57\x50\x72\x57\x57\x52\x69\x77\x64\x57\x58\x6c\x57\x51\x65','\x41\x30\x50\x56\x57\x50\x57','\x6d\x43\x6f\x56\x57\x52\x72\x4f\x57\x34\x35\x36\x75\x47','\x67\x53\x6f\x34\x57\x50\x43\x32\x75\x47','\x57\x4f\x62\x65\x63\x71','\x74\x59\x64\x63\x4e\x38\x6f\x52\x61\x61','\x6c\x53\x6f\x67\x57\x52\x58\x78\x57\x4f\x6d','\x57\x51\x64\x64\x55\x38\x6f\x69\x62\x6d\x6f\x7a','\x72\x43\x6b\x65\x57\x50\x74\x63\x4b\x38\x6f\x57\x57\x36\x38\x67\x57\x36\x43','\x41\x4a\x74\x63\x55\x53\x6f\x74','\x57\x52\x5a\x63\x4f\x72\x62\x44','\x57\x50\x39\x6e\x6e\x38\x6b\x2b\x57\x34\x37\x64\x4a\x6d\x6b\x57','\x67\x6d\x6b\x63\x46\x5a\x5a\x63\x56\x43\x6b\x70','\x45\x4e\x74\x63\x54\x65\x52\x64\x47\x68\x46\x63\x50\x43\x6b\x62','\x57\x52\x62\x69\x57\x35\x4c\x53','\x57\x35\x43\x43\x57\x37\x6c\x64\x4f\x43\x6b\x55','\x57\x4f\x38\x73\x7a\x49\x69\x75\x69\x53\x6b\x41\x57\x51\x43','\x41\x4b\x58\x35\x57\x52\x46\x64\x48\x49\x56\x63\x50\x47','\x57\x52\x71\x35\x75\x57\x71\x4c','\x57\x4f\x47\x32\x57\x50\x50\x77\x63\x61\x44\x76\x61\x71','\x46\x6d\x6f\x73\x77\x4a\x71\x62\x70\x43\x6b\x49\x74\x57','\x57\x36\x70\x63\x4c\x47\x6a\x71\x57\x36\x62\x5a\x57\x50\x35\x6e','\x57\x52\x68\x63\x4d\x64\x43\x33\x65\x38\x6f\x41\x66\x53\x6f\x34','\x61\x38\x6b\x73\x41\x64\x33\x63\x51\x6d\x6b\x6c\x57\x4f\x78\x64\x54\x57','\x41\x4a\x74\x63\x50\x53\x6f\x42','\x42\x67\x50\x6a\x57\x4f\x42\x64\x4e\x71','\x57\x52\x46\x63\x56\x6d\x6f\x74\x46\x48\x46\x63\x4e\x43\x6b\x66\x76\x57','\x57\x36\x70\x63\x48\x72\x50\x58\x57\x34\x50\x5a\x57\x50\x6a\x44','\x66\x66\x38\x59\x57\x34\x50\x78\x57\x51\x4a\x64\x52\x68\x38','\x57\x4f\x34\x72\x57\x52\x66\x66\x68\x61','\x57\x34\x69\x73\x79\x30\x4b','\x57\x4f\x42\x64\x54\x53\x6f\x4b\x61\x53\x6f\x6a','\x72\x43\x6b\x6b\x57\x4f\x33\x63\x4b\x53\x6f\x32\x57\x37\x75\x61\x57\x36\x79','\x46\x6d\x6b\x77\x57\x4f\x79','\x57\x37\x6c\x63\x4e\x57\x62\x54\x57\x37\x35\x70\x57\x50\x50\x6e','\x65\x49\x5a\x64\x54\x75\x66\x67\x79\x71\x37\x64\x50\x71','\x69\x38\x6f\x70\x57\x51\x79\x4b\x75\x47','\x57\x51\x7a\x6e\x62\x43\x6b\x77\x57\x35\x69','\x57\x50\x35\x49\x57\x4f\x43\x62\x67\x47\x6a\x61','\x57\x51\x5a\x63\x52\x74\x76\x44\x75\x57\x4e\x63\x50\x71','\x66\x6d\x6f\x6a\x71\x6d\x6b\x67','\x57\x4f\x34\x73\x7a\x71','\x57\x51\x33\x64\x4f\x53\x6b\x5a\x41\x53\x6b\x49','\x57\x50\x44\x6b\x65\x38\x6b\x62\x57\x35\x4e\x64\x47\x6d\x6b\x4d\x73\x61','\x57\x34\x70\x64\x53\x76\x70\x63\x55\x31\x57','\x57\x51\x47\x2b\x57\x52\x62\x30\x6c\x47','\x57\x36\x35\x42\x57\x34\x79\x41\x57\x36\x42\x64\x49\x5a\x71','\x70\x43\x6f\x37\x57\x52\x72\x55\x57\x34\x7a\x34\x72\x73\x53','\x79\x30\x68\x64\x4d\x68\x6e\x48\x76\x47','\x57\x51\x72\x63\x57\x50\x57\x44\x6f\x61','\x57\x50\x39\x57\x57\x51\x4f\x76\x6e\x57\x39\x71\x57\x52\x34','\x43\x6d\x6b\x31\x57\x52\x62\x55\x57\x35\x6e\x4b\x77\x64\x57','\x57\x52\x78\x64\x54\x38\x6f\x37\x62\x6d\x6f\x4e','\x68\x38\x6f\x43\x57\x52\x7a\x62','\x57\x35\x5a\x63\x4b\x48\x48\x53\x57\x36\x44\x50\x57\x52\x50\x41','\x57\x50\x78\x63\x52\x61\x54\x50\x6f\x61','\x57\x51\x57\x4d\x57\x52\x50\x77\x6d\x57','\x57\x34\x42\x63\x48\x74\x6e\x56\x57\x36\x69','\x45\x53\x6b\x6c\x66\x6d\x6b\x48','\x74\x38\x6b\x37\x57\x4f\x2f\x63\x55\x6d\x6f\x5a','\x71\x5a\x71\x50\x57\x4f\x38\x73','\x57\x37\x4f\x44\x74\x67\x6c\x64\x47\x47','\x57\x52\x5a\x63\x4f\x43\x6f\x76\x44\x58\x4a\x63\x48\x38\x6b\x37\x74\x61','\x57\x50\x31\x63\x57\x35\x35\x4e','\x57\x51\x46\x63\x4e\x63\x57\x4f','\x6e\x53\x6f\x37\x57\x51\x58\x54\x57\x37\x35\x37\x78\x4a\x71','\x57\x52\x52\x63\x51\x57\x4c\x44\x72\x62\x33\x63\x4e\x57\x71','\x6c\x32\x4a\x63\x53\x75\x47\x6d\x63\x53\x6f\x38\x57\x50\x4b','\x65\x6d\x6f\x43\x78\x43\x6b\x39\x62\x65\x70\x63\x53\x65\x69','\x57\x4f\x78\x64\x53\x43\x6f\x63\x64\x53\x6f\x55\x61\x4b\x4f\x37','\x57\x52\x70\x64\x56\x38\x6b\x54','\x62\x53\x6f\x6b\x57\x52\x61\x75\x46\x47','\x70\x72\x58\x46\x57\x35\x79\x4c','\x57\x50\x48\x4b\x57\x52\x69\x71\x62\x57\x35\x43','\x57\x36\x75\x7a\x57\x35\x5a\x64\x4f\x6d\x6b\x6c','\x57\x50\x54\x4a\x57\x4f\x30\x41\x57\x52\x58\x44\x57\x35\x43','\x79\x78\x6c\x63\x54\x75\x68\x64\x52\x33\x4f','\x72\x38\x6f\x77\x6d\x53\x6f\x66\x57\x52\x74\x64\x47\x71\x69','\x57\x4f\x48\x42\x68\x4d\x74\x64\x49\x57','\x42\x53\x6b\x70\x68\x53\x6b\x4f\x57\x34\x6c\x63\x4b\x43\x6f\x54\x69\x61','\x6c\x47\x2f\x64\x48\x68\x66\x36','\x57\x34\x79\x68\x57\x34\x78\x64\x52\x6d\x6b\x71\x71\x6d\x6b\x68\x61\x71','\x57\x34\x68\x63\x4f\x74\x56\x64\x52\x53\x6f\x53\x74\x78\x71','\x57\x52\x70\x64\x4a\x38\x6b\x50\x7a\x6d\x6b\x4b\x44\x47\x70\x64\x55\x71','\x57\x36\x58\x46\x41\x53\x6b\x50\x45\x61','\x57\x50\x39\x75\x57\x34\x44\x77','\x57\x52\x70\x63\x55\x62\x64\x63\x54\x62\x76\x6e\x6f\x38\x6f\x71','\x57\x52\x56\x63\x51\x53\x6f\x61\x41\x71\x2f\x63\x4a\x6d\x6b\x2b','\x6c\x30\x2f\x63\x50\x75\x57\x77\x64\x71','\x57\x50\x6e\x63\x57\x36\x33\x64\x47\x38\x6f\x5a','\x57\x52\x52\x64\x56\x6d\x6f\x37\x69\x38\x6f\x4b','\x46\x43\x6b\x59\x6e\x38\x6b\x7a\x57\x36\x38','\x57\x34\x64\x63\x52\x4a\x68\x64\x52\x6d\x6f\x67\x71\x68\x76\x51','\x57\x35\x61\x55\x42\x4d\x42\x64\x47\x61','\x57\x4f\x68\x63\x48\x62\x4e\x63\x50\x47\x4f','\x57\x50\x61\x38\x57\x52\x66\x6d\x61\x71','\x57\x4f\x46\x64\x52\x61\x4b\x69\x57\x34\x4b\x44\x57\x35\x58\x2f','\x57\x34\x62\x55\x57\x4f\x6d\x41\x57\x4f\x79\x7a','\x57\x4f\x56\x64\x4f\x43\x6b\x71\x62\x43\x6b\x33','\x67\x76\x56\x63\x47\x30\x47\x34','\x77\x49\x6e\x68\x57\x37\x69\x6f','\x7a\x64\x7a\x77\x43\x73\x43','\x57\x35\x69\x4a\x57\x35\x78\x64\x4e\x38\x6b\x75\x46\x43\x6f\x63\x72\x61','\x57\x36\x78\x64\x51\x68\x68\x63\x53\x30\x57','\x57\x52\x39\x6f\x63\x4c\x78\x64\x47\x47','\x57\x51\x6c\x63\x52\x64\x35\x57\x72\x71','\x57\x51\x61\x6b\x77\x48\x57\x70','\x57\x50\x6d\x62\x43\x63\x61\x64\x69\x53\x6b\x44\x57\x50\x79','\x73\x5a\x71\x67\x57\x50\x61\x6f\x57\x36\x64\x64\x54\x6d\x6f\x59','\x57\x35\x61\x63\x57\x34\x4e\x64\x52\x6d\x6b\x44\x42\x6d\x6b\x68','\x63\x53\x6b\x68\x43\x73\x42\x63\x50\x71','\x75\x38\x6b\x41\x57\x50\x6c\x63\x47\x53\x6f\x35\x57\x36\x75\x33\x57\x36\x43','\x57\x52\x6c\x63\x4c\x63\x69\x51\x68\x43\x6f\x79\x62\x61','\x57\x52\x62\x39\x6e\x65\x52\x64\x55\x63\x38\x4f\x41\x71','\x57\x34\x2f\x64\x50\x43\x6b\x54\x7a\x53\x6b\x34','\x57\x50\x6e\x6f\x67\x43\x6b\x56\x57\x35\x74\x64\x53\x53\x6b\x47\x78\x47','\x68\x38\x6b\x65\x73\x59\x42\x63\x52\x53\x6b\x6b\x57\x4f\x37\x64\x4f\x57','\x57\x4f\x44\x31\x57\x50\x47\x78\x57\x4f\x58\x44\x57\x34\x65','\x57\x34\x4b\x5a\x57\x36\x70\x64\x4f\x53\x6b\x71','\x79\x43\x6f\x56\x57\x4f\x38','\x57\x51\x52\x63\x53\x6d\x6f\x63\x44\x72\x4a\x63\x48\x43\x6b\x50','\x57\x50\x31\x79\x57\x36\x5a\x64\x56\x38\x6f\x31','\x57\x51\x37\x64\x50\x6d\x6b\x37\x43\x43\x6b\x4c\x43\x61','\x6f\x43\x6f\x2f\x57\x51\x35\x55','\x66\x78\x75\x33\x6a\x4d\x6c\x63\x4a\x5a\x46\x64\x55\x71\x61\x57\x6d\x77\x44\x79','\x57\x4f\x78\x64\x4d\x61\x61','\x57\x35\x61\x45\x57\x34\x43','\x79\x63\x4b\x6c\x57\x4f\x69\x43\x57\x36\x64\x64\x54\x6d\x6f\x34','\x57\x4f\x76\x30\x57\x52\x6d\x61\x64\x71\x44\x4d\x57\x52\x53','\x75\x6d\x6b\x61\x57\x50\x74\x63\x4d\x6d\x6f\x4e\x57\x35\x34\x65\x57\x37\x79','\x61\x76\x43\x38\x57\x34\x48\x64\x57\x52\x79','\x64\x43\x6f\x4f\x75\x6d\x6b\x33\x67\x57','\x57\x37\x4e\x63\x4c\x47\x7a\x74\x57\x37\x50\x4a\x57\x50\x72\x43','\x63\x43\x6f\x66\x57\x51\x6e\x68\x57\x4f\x44\x37\x57\x52\x5a\x63\x4d\x61','\x73\x4c\x33\x63\x4a\x4b\x70\x64\x4e\x61','\x57\x52\x72\x72\x70\x6d\x6b\x54\x57\x36\x4f','\x57\x4f\x4f\x68\x42\x61\x4b\x34\x6e\x38\x6b\x79\x57\x51\x43','\x57\x52\x64\x63\x52\x38\x6f\x61\x78\x47\x2f\x63\x47\x6d\x6b\x2b\x78\x71','\x6c\x43\x6f\x30\x57\x52\x50\x4c\x57\x52\x53','\x57\x52\x68\x64\x54\x43\x6b\x30\x79\x53\x6b\x4b\x41\x57','\x57\x52\x48\x2b\x6c\x32\x42\x64\x4f\x63\x30','\x62\x38\x6f\x70\x71\x38\x6b\x6f\x6b\x57','\x61\x4c\x65\x53','\x57\x51\x46\x64\x4b\x74\x68\x64\x48\x38\x6f\x68','\x74\x43\x6f\x76\x6c\x38\x6f\x63\x57\x52\x37\x64\x47\x47\x74\x63\x4d\x71','\x57\x51\x6c\x63\x4f\x71\x71','\x71\x6d\x6f\x73\x76\x49\x65\x6e\x6b\x38\x6b\x58\x72\x61','\x57\x34\x37\x64\x4d\x38\x6b\x33\x76\x53\x6b\x46','\x57\x52\x56\x63\x54\x63\x5a\x63\x52\x47\x66\x6e\x6d\x43\x6f\x73','\x57\x4f\x7a\x7a\x57\x34\x4a\x64\x47\x38\x6f\x51\x57\x50\x53\x77\x57\x52\x4b','\x57\x36\x69\x46\x57\x36\x6c\x64\x47\x43\x6b\x58','\x6e\x68\x69\x55\x57\x34\x4c\x53','\x57\x52\x70\x63\x4d\x63\x79\x48\x65\x53\x6f\x61\x6b\x6d\x6f\x58','\x57\x52\x56\x64\x4f\x57\x64\x64\x47\x6d\x6f\x44','\x57\x50\x54\x64\x57\x4f\x69\x65\x57\x4f\x34','\x43\x63\x38\x44\x57\x4f\x79\x67\x57\x34\x56\x64\x56\x43\x6f\x5a','\x57\x4f\x53\x4c\x57\x50\x62\x4c\x6a\x72\x76\x67\x62\x47','\x57\x52\x35\x34\x6b\x67\x5a\x64\x4f\x73\x43\x4a','\x57\x4f\x46\x64\x4f\x71\x42\x64\x54\x33\x68\x63\x4a\x53\x6f\x6c\x75\x57','\x57\x50\x6a\x4a\x57\x51\x71\x7a\x6f\x61','\x57\x52\x4a\x63\x52\x43\x6f\x72\x46\x48\x74\x63\x4d\x43\x6b\x55\x73\x57','\x67\x43\x6f\x62\x57\x51\x4f\x43','\x57\x52\x5a\x64\x4f\x6d\x6b\x50\x41\x53\x6b\x4c','\x57\x35\x71\x36\x57\x35\x46\x64\x47\x38\x6b\x75\x46\x43\x6f\x6f\x45\x57','\x57\x51\x4a\x63\x4c\x57\x48\x2b\x6e\x61','\x41\x48\x62\x4a\x57\x35\x53\x45','\x57\x4f\x62\x35\x57\x50\x57\x42\x57\x50\x44\x79\x57\x34\x68\x64\x4e\x47','\x57\x51\x74\x64\x49\x38\x6f\x52\x63\x38\x6f\x48','\x57\x52\x48\x69\x67\x4d\x68\x64\x54\x57','\x42\x4b\x58\x4d\x57\x51\x78\x64\x48\x4a\x70\x63\x56\x6d\x6b\x4a','\x57\x52\x48\x34\x62\x53\x6b\x44\x57\x35\x75','\x57\x51\x7a\x4b\x57\x4f\x47\x6c\x65\x61','\x61\x43\x6f\x75\x57\x52\x71','\x57\x50\x38\x7a\x57\x50\x71','\x62\x43\x6f\x41\x57\x51\x69','\x57\x4f\x52\x64\x48\x62\x69','\x70\x47\x6c\x64\x4d\x78\x66\x33','\x57\x37\x33\x63\x4b\x48\x54\x4b\x57\x36\x66\x34','\x42\x73\x2f\x63\x54\x6d\x6f\x71\x6a\x6d\x6b\x33\x57\x52\x56\x64\x53\x61','\x77\x38\x6f\x61\x6b\x43\x6f\x75\x57\x52\x34','\x57\x4f\x46\x64\x51\x53\x6f\x79\x63\x53\x6f\x64\x6d\x75\x34\x35','\x57\x52\x56\x64\x53\x43\x6b\x5a\x41\x71','\x61\x6d\x6f\x6e\x6b\x43\x6f\x69\x57\x52\x37\x63\x48\x71','\x43\x4d\x37\x63\x51\x30\x65','\x79\x75\x48\x2b','\x72\x65\x48\x52\x57\x52\x68\x64\x56\x63\x33\x64\x54\x71','\x57\x35\x30\x54\x57\x34\x56\x64\x4d\x38\x6b\x2b\x41\x6d\x6f\x65\x79\x61','\x57\x4f\x57\x67\x79\x74\x75\x4b\x6c\x53\x6b\x43','\x79\x74\x76\x74\x77\x62\x38','\x41\x77\x6c\x63\x52\x30\x46\x64\x49\x78\x70\x63\x50\x61','\x44\x49\x46\x63\x56\x38\x6f\x79\x67\x53\x6b\x33\x57\x4f\x33\x64\x54\x71','\x76\x53\x6b\x74\x57\x50\x68\x63\x47\x53\x6f\x57','\x77\x38\x6b\x65\x67\x38\x6b\x36\x64\x4b\x70\x63\x54\x75\x34','\x57\x51\x4c\x77\x63\x6d\x6f\x38\x57\x34\x65','\x57\x4f\x4e\x64\x4e\x64\x33\x64\x4f\x53\x6f\x4b','\x67\x4c\x38\x33\x57\x34\x62\x39\x57\x52\x42\x64\x4f\x65\x79','\x71\x48\x48\x50\x73\x62\x65','\x57\x4f\x42\x64\x53\x59\x56\x64\x4f\x31\x5a\x63\x47\x38\x6f\x42','\x70\x57\x56\x64\x48\x77\x66\x33\x77\x47','\x42\x6d\x6b\x52\x57\x4f\x35\x6e\x57\x35\x66\x37\x77\x72\x75','\x75\x6d\x6f\x76\x76\x5a\x69\x69\x6b\x38\x6b\x67\x74\x57','\x71\x53\x6f\x75\x76\x61','\x57\x35\x79\x45\x44\x30\x4e\x64\x55\x6d\x6b\x70\x57\x34\x31\x2f','\x44\x43\x6b\x43\x67\x6d\x6b\x73\x57\x34\x78\x63\x49\x38\x6f\x78\x6e\x57','\x57\x4f\x71\x77\x79\x71','\x44\x5a\x78\x63\x4c\x43\x6f\x78\x6b\x38\x6b\x59\x57\x50\x64\x64\x54\x47','\x57\x51\x66\x4f\x6c\x4b\x74\x64\x51\x5a\x6d\x68\x41\x71','\x57\x52\x46\x63\x50\x73\x52\x63\x52\x58\x75','\x57\x34\x69\x56\x57\x35\x46\x64\x4e\x43\x6b\x65','\x57\x36\x69\x35\x57\x37\x33\x64\x47\x53\x6b\x41','\x57\x35\x34\x6f\x44\x31\x47','\x65\x6d\x6f\x41\x57\x52\x4c\x71\x57\x4f\x58\x6c\x57\x52\x4a\x63\x4d\x71','\x77\x74\x35\x6b\x57\x37\x30\x43','\x69\x4d\x4e\x63\x53\x75\x69\x42\x66\x53\x6f\x38\x57\x4f\x34','\x57\x50\x65\x77\x44\x63\x75\x4b\x6c\x71','\x57\x4f\x30\x57\x57\x4f\x44\x64\x6f\x5a\x39\x74\x66\x57','\x57\x50\x54\x50\x57\x4f\x53\x41\x57\x4f\x6a\x43','\x63\x33\x38\x2f\x57\x35\x62\x6c\x57\x52\x4e\x64\x52\x61','\x72\x6d\x6f\x6b\x44\x71\x57\x5a','\x67\x53\x6f\x46\x71\x6d\x6b\x36\x64\x4b\x64\x63\x54\x47','\x57\x36\x72\x77\x57\x35\x53\x6b\x57\x37\x33\x64\x4c\x71\x6a\x6b','\x71\x43\x6b\x62\x57\x50\x47','\x57\x52\x68\x63\x51\x5a\x6d\x6e\x63\x71','\x57\x50\x78\x63\x53\x64\x70\x64\x54\x6d\x6f\x42\x67\x47','\x62\x43\x6f\x73\x57\x4f\x4b\x4f\x46\x47','\x57\x50\x33\x64\x53\x47\x78\x64\x4f\x33\x68\x63\x47\x43\x6f\x6e\x71\x61','\x57\x52\x50\x45\x57\x37\x35\x51\x41\x71','\x57\x50\x64\x64\x52\x6d\x6b\x44\x6f\x43\x6b\x33\x57\x50\x39\x50\x76\x57','\x46\x74\x6e\x41\x57\x35\x57\x4c\x57\x50\x38','\x79\x62\x39\x6c\x57\x35\x43\x51\x57\x4f\x43\x48\x57\x37\x4b','\x57\x50\x64\x64\x54\x6d\x6b\x6a\x63\x43\x6b\x4d\x57\x4f\x76\x2b\x73\x57','\x57\x4f\x6a\x65\x57\x36\x68\x64\x4d\x53\x6f\x63\x57\x50\x53\x6b\x57\x4f\x57','\x68\x53\x6f\x53\x79\x38\x6b\x31\x6f\x57','\x57\x37\x4e\x64\x49\x4d\x30','\x45\x43\x6b\x79\x64\x38\x6b\x2b\x57\x34\x78\x63\x47\x53\x6b\x69','\x68\x43\x6b\x6b\x44\x63\x46\x63\x55\x71','\x57\x52\x54\x2f\x6c\x66\x5a\x64\x55\x47','\x57\x50\x76\x30\x57\x52\x75\x68','\x57\x50\x2f\x63\x4a\x61\x58\x35\x65\x57','\x57\x51\x74\x64\x55\x48\x37\x64\x4d\x53\x6f\x64','\x44\x77\x70\x63\x55\x4c\x42\x64\x4b\x4d\x33\x63\x4c\x53\x6b\x6e','\x57\x34\x74\x63\x50\x5a\x46\x64\x4e\x57','\x57\x52\x68\x63\x4f\x61\x4c\x39\x64\x57','\x57\x51\x70\x63\x55\x61\x31\x75','\x57\x4f\x64\x64\x4d\x62\x4e\x64\x48\x65\x79','\x57\x4f\x76\x4d\x57\x4f\x61\x75\x70\x57','\x57\x51\x37\x64\x55\x43\x6b\x39\x41\x38\x6b\x58\x42\x57\x69','\x64\x53\x6f\x6b\x57\x51\x65','\x78\x47\x62\x56\x79\x64\x2f\x64\x4c\x53\x6b\x52\x79\x57','\x57\x37\x46\x63\x48\x72\x50\x54\x57\x36\x66\x35\x57\x50\x48\x41','\x77\x78\x68\x63\x53\x4b\x52\x64\x47\x78\x56\x63\x53\x38\x6b\x75','\x57\x4f\x42\x64\x52\x47\x2f\x64\x4f\x31\x4f','\x57\x50\x33\x64\x54\x43\x6b\x71\x66\x43\x6b\x4d\x57\x50\x35\x69\x71\x71','\x57\x50\x4c\x74\x57\x37\x30','\x57\x4f\x6c\x64\x52\x6d\x6f\x78\x78\x71','\x7a\x59\x76\x57\x79\x59\x74\x64\x4c\x77\x79','\x57\x51\x43\x34\x57\x4f\x44\x77\x6d\x48\x50\x63\x71\x57','\x57\x52\x74\x64\x47\x47\x74\x64\x53\x38\x6f\x33','\x57\x4f\x56\x64\x51\x6d\x6b\x6e','\x6f\x68\x68\x63\x4d\x75\x6d\x4b','\x57\x50\x39\x6c\x57\x34\x6a\x69\x42\x71','\x57\x34\x65\x54\x57\x34\x52\x64\x4e\x6d\x6b\x65','\x45\x5a\x74\x63\x4f\x43\x6f\x72\x6e\x57','\x73\x43\x6f\x71\x69\x57','\x57\x52\x52\x64\x54\x43\x6b\x30\x79\x6d\x6b\x7a\x7a\x57','\x73\x33\x6c\x63\x54\x4b\x56\x64\x4c\x67\x46\x63\x48\x53\x6b\x77','\x57\x34\x69\x70\x45\x66\x37\x64\x4b\x38\x6b\x6a\x57\x34\x48\x75','\x46\x5a\x42\x63\x55\x38\x6f\x37\x6d\x38\x6b\x2b\x57\x4f\x52\x64\x50\x57','\x57\x36\x6a\x63\x57\x35\x30\x6b\x57\x36\x5a\x64\x54\x73\x48\x44','\x43\x71\x71\x4a\x57\x52\x65\x52','\x6f\x6d\x6f\x56\x57\x50\x7a\x46\x57\x35\x61','\x69\x71\x2f\x64\x47\x32\x7a\x6e\x74\x63\x2f\x64\x47\x57','\x57\x36\x64\x63\x4d\x61\x62\x6a\x57\x35\x47','\x70\x6d\x6f\x43\x57\x50\x65\x6f\x77\x71','\x57\x34\x64\x64\x56\x4d\x74\x63\x47\x30\x61','\x57\x34\x57\x76\x57\x34\x64\x64\x51\x53\x6b\x42\x41\x57','\x6f\x77\x79\x6e\x57\x36\x58\x58','\x57\x51\x42\x63\x56\x47\x39\x4e\x78\x47\x64\x63\x50\x71\x79','\x57\x51\x54\x53\x57\x4f\x4f\x65\x57\x51\x38','\x43\x47\x7a\x65\x57\x37\x57\x39\x57\x4f\x34\x71\x57\x36\x79','\x57\x50\x7a\x7a\x57\x34\x6e\x53\x44\x62\x34\x70\x61\x71','\x44\x78\x37\x63\x56\x65\x52\x64\x48\x33\x6c\x63\x53\x47','\x62\x6d\x6f\x46\x57\x51\x75\x59\x78\x38\x6b\x42','\x57\x51\x64\x64\x50\x6d\x6b\x71\x65\x6d\x6b\x63','\x42\x38\x6b\x66\x65\x6d\x6b\x4f','\x57\x34\x47\x45\x57\x34\x74\x64\x51\x57','\x44\x4b\x6a\x2b\x57\x51\x56\x64\x56\x63\x5a\x63\x56\x6d\x6b\x32','\x57\x51\x6a\x78\x57\x37\x78\x64\x4f\x53\x6f\x2b','\x57\x52\x58\x59\x70\x6d\x6f\x70\x57\x36\x38','\x75\x59\x70\x63\x56\x53\x6f\x72\x6e\x38\x6b\x49\x57\x51\x70\x64\x4f\x71','\x72\x43\x6f\x71\x69\x43\x6f\x51\x57\x4f\x34','\x57\x35\x34\x55\x57\x35\x6c\x64\x49\x53\x6b\x63\x46\x71','\x57\x52\x78\x63\x4c\x63\x4f\x51','\x57\x34\x54\x46\x41\x38\x6b\x55\x43\x38\x6f\x77\x41\x71','\x57\x37\x5a\x63\x4c\x47\x30','\x68\x38\x6f\x77\x57\x51\x6e\x77\x57\x4f\x4f','\x57\x35\x6d\x45\x41\x4c\x47','\x42\x73\x44\x76','\x57\x50\x42\x64\x56\x71\x30\x69\x57\x52\x4f\x71\x57\x35\x30\x38','\x57\x37\x70\x64\x51\x43\x6b\x75','\x43\x6d\x6b\x62\x57\x4f\x37\x63\x52\x43\x6f\x37','\x57\x34\x4a\x63\x53\x5a\x43','\x74\x6d\x6f\x70\x61\x47','\x57\x52\x44\x75\x6f\x43\x6b\x62\x57\x36\x57','\x57\x34\x31\x38\x57\x36\x47\x6f\x57\x36\x43','\x45\x72\x4e\x63\x50\x38\x6f\x46\x6c\x6d\x6b\x33','\x57\x35\x78\x63\x51\x31\x72\x7a\x57\x35\x54\x44\x57\x36\x69\x4d\x57\x36\x39\x51\x57\x34\x56\x63\x4e\x61','\x6b\x78\x68\x63\x54\x75\x34\x68','\x77\x43\x6b\x75\x57\x36\x53\x4a\x75\x38\x6b\x44\x79\x72\x69','\x57\x4f\x76\x49\x6a\x53\x6f\x32\x57\x34\x4b','\x57\x35\x35\x6c\x79\x43\x6b\x48','\x57\x37\x33\x63\x4c\x47\x7a\x33\x57\x34\x50\x4b\x57\x4f\x34','\x57\x52\x74\x63\x52\x6d\x6f\x72\x45\x47\x33\x63\x47\x6d\x6b\x31\x76\x47','\x67\x38\x6b\x6f\x41\x49\x68\x63\x53\x38\x6b\x6e\x57\x4f\x68\x64\x51\x61','\x7a\x43\x6b\x66\x57\x50\x46\x64\x52\x59\x68\x64\x4b\x53\x6f\x43','\x73\x53\x6f\x6c\x57\x50\x30\x44\x75\x61','\x57\x35\x64\x63\x47\x47\x66\x52\x57\x37\x50\x49\x57\x50\x72\x73','\x7a\x6d\x6b\x7a\x57\x50\x52\x64\x51\x74\x74\x64\x4a\x47','\x57\x51\x33\x63\x4f\x6d\x6f\x76\x46\x47','\x57\x35\x69\x47\x57\x35\x46\x64\x4e\x6d\x6b\x65\x77\x53\x6f\x45\x45\x47','\x72\x48\x35\x46\x72\x64\x4b','\x57\x36\x68\x63\x47\x47\x7a\x52','\x57\x51\x6c\x63\x56\x61\x50\x44\x61\x43\x6f\x73\x57\x52\x38','\x57\x50\x39\x74\x57\x36\x4e\x64\x47\x38\x6f\x56\x57\x4f\x43\x37\x57\x4f\x4f','\x57\x4f\x7a\x74\x57\x36\x4e\x64\x4e\x6d\x6f\x50\x57\x4f\x30','\x6c\x76\x53\x39\x57\x34\x62\x68\x57\x52\x4e\x64\x56\x71','\x57\x52\x6c\x63\x4b\x4a\x6d\x68\x65\x47','\x61\x38\x6b\x6f\x45\x74\x42\x63\x55\x43\x6b\x72\x57\x50\x6d','\x57\x36\x78\x63\x4b\x48\x48\x5a\x57\x36\x66\x4a','\x57\x50\x66\x63\x57\x34\x76\x51\x46\x64\x65\x69\x62\x47','\x45\x47\x76\x54\x57\x34\x53\x35\x57\x4f\x4f\x68','\x57\x50\x61\x68\x44\x63\x71\x2f\x6d\x6d\x6b\x55\x57\x52\x4f','\x7a\x43\x6f\x67\x6b\x38\x6f\x6a\x57\x51\x4e\x64\x4c\x73\x64\x63\x4a\x47','\x42\x5a\x54\x45\x75\x72\x56\x64\x55\x38\x6b\x62\x72\x61','\x6e\x38\x6f\x31\x57\x51\x34','\x79\x6d\x6f\x31\x57\x4f\x57\x37\x41\x43\x6f\x36\x6d\x47','\x57\x50\x50\x50\x57\x4f\x34\x62\x57\x50\x44\x7a\x57\x34\x56\x64\x47\x57','\x67\x6d\x6f\x6c\x72\x61','\x57\x51\x4a\x63\x4a\x47\x71\x32\x64\x53\x6f\x76\x64\x47','\x57\x52\x66\x73\x57\x52\x53\x79\x57\x4f\x30','\x57\x4f\x71\x77\x45\x5a\x6d\x75\x69\x6d\x6b\x79\x57\x51\x43','\x61\x58\x5a\x64\x49\x78\x4c\x78','\x57\x35\x71\x6e\x44\x4b\x64\x64\x4b\x43\x6b\x6a\x57\x35\x34\x4d','\x44\x76\x48\x50\x57\x51\x64\x64\x56\x63\x5a\x63\x50\x47','\x57\x4f\x34\x73\x42\x71','\x79\x31\x39\x34\x57\x52\x64\x64\x53\x64\x4a\x64\x52\x57','\x74\x48\x31\x39\x73\x4a\x38','\x62\x43\x6f\x64\x57\x51\x4b','\x57\x4f\x39\x74\x67\x43\x6f\x6b\x57\x37\x65','\x46\x59\x38\x62\x57\x4f\x43','\x57\x50\x70\x64\x51\x47\x75\x79\x57\x4f\x57\x56\x57\x35\x4f\x5a','\x57\x50\x58\x69\x57\x34\x34','\x57\x4f\x50\x41\x57\x51\x71\x46\x57\x50\x4f','\x77\x59\x7a\x32\x74\x47\x4b','\x57\x4f\x2f\x63\x55\x62\x78\x63\x55\x71\x61','\x57\x4f\x75\x70\x57\x51\x6e\x32\x66\x61','\x57\x4f\x62\x70\x57\x35\x56\x64\x4d\x6d\x6f\x56\x57\x50\x53\x6b\x57\x50\x34','\x57\x51\x6a\x39\x6d\x67\x42\x64\x55\x47','\x41\x5a\x66\x45\x72\x57','\x57\x36\x33\x64\x4f\x6d\x6b\x6c\x73\x61','\x6a\x4b\x43\x52\x57\x34\x6d','\x73\x43\x6b\x43\x57\x50\x37\x63\x4d\x38\x6f\x47\x57\x36\x75\x61\x57\x37\x65','\x44\x43\x6b\x66\x65\x57','\x61\x76\x43\x48\x57\x34\x6d','\x62\x43\x6f\x42\x57\x51\x4f\x4b\x75\x38\x6b\x45\x77\x62\x38','\x76\x48\x48\x6e\x57\x35\x53\x4e\x57\x4f\x34\x41','\x45\x74\x50\x64\x76\x48\x2f\x64\x55\x53\x6b\x79\x76\x71','\x57\x52\x6d\x44\x77\x72\x43\x68','\x69\x6d\x6f\x6e\x44\x53\x6b\x6d\x65\x71','\x57\x36\x34\x77\x57\x35\x6c\x64\x4e\x6d\x6b\x72\x7a\x43\x6b\x72\x6e\x57','\x57\x51\x52\x63\x52\x62\x62\x42\x6d\x43\x6f\x77\x57\x52\x34','\x57\x4f\x4b\x45\x45\x61\x38\x66','\x41\x63\x6d\x78\x57\x50\x43\x61\x57\x34\x33\x64\x54\x53\x6f\x32','\x57\x51\x37\x63\x52\x59\x4a\x63\x50\x4a\x43','\x57\x36\x42\x64\x4a\x4e\x42\x63\x4c\x66\x54\x34\x57\x36\x37\x64\x55\x71','\x57\x51\x33\x63\x55\x61\x48\x45\x61\x43\x6f\x78\x57\x52\x6a\x4b','\x57\x51\x4e\x64\x53\x38\x6b\x31\x41\x6d\x6b\x31\x46\x58\x6c\x64\x54\x57','\x57\x35\x47\x2f\x57\x37\x68\x64\x49\x57','\x57\x52\x66\x70\x57\x34\x56\x64\x50\x53\x6f\x7a','\x57\x4f\x66\x2b\x57\x35\x7a\x58\x75\x61','\x7a\x6d\x6f\x37\x65\x43\x6f\x64\x57\x52\x79','\x57\x51\x2f\x64\x55\x62\x56\x64\x4e\x6d\x6f\x37','\x57\x50\x7a\x69\x65\x4b\x52\x64\x4b\x71\x6d\x69\x77\x61','\x46\x43\x6f\x4c\x57\x50\x53\x39\x41\x6d\x6f\x4a\x63\x61\x4b','\x57\x50\x48\x47\x6b\x43\x6f\x2f\x57\x37\x6d','\x57\x50\x35\x39\x57\x35\x74\x64\x51\x6d\x6f\x2f','\x57\x34\x54\x70\x41\x43\x6b\x2f\x44\x43\x6f\x6e','\x57\x50\x48\x79\x57\x34\x6e\x51\x44\x47\x6d\x45','\x57\x50\x37\x64\x4a\x38\x6f\x79\x63\x53\x6f\x32','\x71\x49\x76\x50\x46\x61','\x7a\x38\x6f\x48\x57\x4f\x53','\x44\x57\x78\x63\x53\x53\x6f\x56\x6b\x61','\x57\x35\x66\x43\x42\x43\x6b\x73\x43\x6d\x6f\x65\x43\x38\x6f\x74','\x46\x43\x6b\x77\x57\x4f\x33\x64\x56\x62\x4e\x64\x48\x43\x6f\x42\x57\x35\x30','\x79\x33\x6a\x4d\x57\x51\x52\x64\x55\x57\x64\x63\x4f\x38\x6b\x47','\x75\x73\x4a\x63\x54\x43\x6f\x44\x64\x61','\x57\x52\x6c\x63\x51\x6d\x6b\x78\x77\x43\x6b\x2b\x57\x50\x74\x64\x54\x72\x61','\x57\x52\x5a\x63\x49\x53\x6f\x43\x44\x72\x4f','\x57\x4f\x6c\x64\x4d\x72\x6c\x64\x50\x6d\x6f\x4e','\x57\x52\x74\x63\x4b\x59\x34\x51\x65\x38\x6f\x64\x67\x71','\x57\x36\x5a\x64\x50\x38\x6b\x62\x73\x6d\x6b\x39'];_0x2b6e=function(){return _0x5eb73b;};return _0x2b6e();}function _0x106a3a(_0x4788bb){const _0x403e44=_0x59595f,_0x3c38a={'\x53\x4d\x4c\x66\x4b':function(_0x568d44,_0x1c84c6,_0x393cef){return _0x568d44(_0x1c84c6,_0x393cef);},'\x74\x6e\x75\x42\x67':function(_0x28287a,_0x3d73e2){return _0x28287a*_0x3d73e2;},'\x50\x5a\x5a\x76\x66':function(_0x29dbf0,_0x35a8dc){return _0x29dbf0!==_0x35a8dc;},'\x4b\x74\x6d\x75\x43':_0x403e44(0x4af,'\x75\x48\x79\x40'),'\x47\x69\x4b\x48\x55':function(_0x169e70,_0xd3480c){return _0x169e70(_0xd3480c);},'\x74\x58\x52\x5a\x51':function(_0x5b6c14,_0x3ef812){return _0x5b6c14===_0x3ef812;},'\x61\x52\x73\x7a\x7a':_0x403e44(0x618,'\x78\x72\x50\x48'),'\x43\x43\x58\x73\x78':'\x2e\x2f\x61\x32\x61\x50\x72\x6f'+_0x403e44(0x769,'\x32\x43\x23\x6b'),'\x4c\x66\x46\x51\x54':_0x403e44(0x6a2,'\x77\x31\x4b\x6f'),'\x77\x76\x6f\x46\x67':function(_0x31fc3d,_0x42bbc4){return _0x31fc3d+_0x42bbc4;},'\x4b\x44\x67\x4d\x66':_0x403e44(0x672,'\x68\x63\x62\x6a'),'\x68\x66\x75\x41\x74':_0x403e44(0x3e6,'\x26\x50\x33\x62')+_0x403e44(0x126,'\x78\x30\x59\x23'),'\x41\x64\x50\x62\x51':_0x403e44(0x596,'\x75\x37\x24\x32'),'\x72\x5a\x4c\x64\x4f':function(_0x160e99,_0x1216a1){return _0x160e99===_0x1216a1;},'\x74\x55\x46\x41\x71':'\x6c\x75\x62\x5a\x70'};if(!_0x4788bb||_0x3c38a[_0x403e44(0x4c6,'\x77\x28\x7a\x39')](typeof _0x4788bb,_0x3c38a[_0x403e44(0x36c,'\x56\x79\x47\x74')]))return;if(process.env.MEMORY_GRAPH_SYNC_HUB==='\x30')return;const _0x4ed869=_0x4788bb&&_0x4788bb['\x6b\x69\x6e\x64']?_0x3c38a['\x47\x69\x4b\x48\x55'](String,_0x4788bb[_0x403e44(0x419,'\x33\x72\x78\x29')]):null;if(!_0x4ed869||!_0x3bcfb1[_0x403e44(0x3a2,'\x77\x28\x7a\x39')](_0x4ed869))return;let _0x34df9d;try{if(_0x3c38a['\x74\x58\x52\x5a\x51'](_0x403e44(0x184,'\x47\x78\x79\x65'),_0x3c38a[_0x403e44(0x271,'\x39\x29\x37\x66')]))_0x34df9d=require(_0x3c38a[_0x403e44(0x181,'\x78\x30\x59\x23')]);else{const _0x25dc32={};_0x25dc32[_0x403e44(0x6bb,'\x5b\x7a\x6f\x41')+_0x403e44(0x311,'\x6d\x78\x46\x74')]=0x1e;const _0x48156e=_0x3c38a[_0x403e44(0x2d0,'\x78\x38\x5e\x36')](_0x483762,_0x4ca22c,_0x25dc32);let _0x286303=0x59*0x47+-0x2*0xcd6+0xfe;if(_0x34a59b)_0x286303=_0x4fe8b3;_0x173a34=_0x3c38a['\x74\x6e\x75\x42\x67'](_0x48156e[_0x403e44(0x5c8,'\x59\x38\x6c\x6d')]*_0x4d7ca3[_0x403e44(0x41d,'\x50\x30\x46\x57')],_0x286303);}}catch(_0x4dc256){return;}const _0x568003=typeof _0x34df9d['\x67\x65\x74\x48\x75\x62\x55\x72'+'\x6c']===_0x3c38a[_0x403e44(0x48e,'\x55\x4e\x4a\x79')]?_0x34df9d[_0x403e44(0x283,'\x31\x72\x5d\x55')+'\x6c']():process.env.A2A_HUB_URL||process.env.EVOMAP_HUB_URL||'';if(!_0x568003)return;const _0x35e38f=_0x3c38a[_0x403e44(0x190,'\x4b\x30\x57\x5b')](typeof _0x34df9d[_0x403e44(0x6d6,'\x77\x28\x7a\x39')+'\x64'],_0x3c38a[_0x403e44(0x56c,'\x75\x48\x79\x40')])?_0x34df9d[_0x403e44(0x675,'\x59\x28\x5e\x71')+'\x64']():null;if(!_0x35e38f)return;const _0x5da976=_0x3c38a[_0x403e44(0x2ec,'\x26\x50\x33\x62')](typeof _0x34df9d[_0x403e44(0x217,'\x45\x72\x73\x51')+_0x403e44(0x3a6,'\x58\x45\x24\x5d')],_0x3c38a[_0x403e44(0x265,'\x41\x6f\x6d\x77')])?_0x34df9d['\x67\x65\x74\x48\x75\x62\x4e\x6f'+_0x403e44(0x34f,'\x35\x6f\x58\x36')]():null;if(!_0x5da976)return;const _0x5148aa=_0x3c38a[_0x403e44(0x260,'\x47\x78\x79\x65')](_0x568003[_0x403e44(0x4b9,'\x74\x57\x51\x63')](/\/+$/,''),_0x403e44(0x2fe,'\x78\x38\x5e\x36')+_0x403e44(0x188,'\x69\x79\x38\x63')+'\x74'),_0x2a0a9c={};_0x2a0a9c[_0x403e44(0x39c,'\x77\x74\x6a\x7a')+'\x64']=_0x35e38f,_0x2a0a9c[_0x403e44(0x282,'\x41\x40\x23\x4c')]=_0x4788bb;const _0x2cd325=JSON[_0x403e44(0x3a5,'\x76\x4c\x5a\x40')+'\x79'](_0x2a0a9c),_0x3bad2a=0x1989*-0x1+-0x25ca+0x52db,_0x3f1313=typeof AbortSignal!==_0x403e44(0x431,'\x78\x72\x50\x48')+'\x64'&&AbortSignal[_0x403e44(0x263,'\x75\x48\x79\x40')]?AbortSignal['\x74\x69\x6d\x65\x6f\x75\x74'](_0x3bad2a):undefined;try{const _0x15aa31={};_0x15aa31['\x6d\x65\x74\x68\x6f\x64']=_0x3c38a[_0x403e44(0x781,'\x33\x68\x30\x5d')],_0x15aa31[_0x403e44(0x624,'\x59\x38\x6c\x6d')]={},_0x15aa31[_0x403e44(0x73e,'\x33\x68\x30\x5d')]=_0x2cd325,_0x15aa31['\x73\x69\x67\x6e\x61\x6c']=_0x3f1313,_0x15aa31[_0x403e44(0x624,'\x59\x38\x6c\x6d')][_0x403e44(0x5dd,'\x74\x57\x51\x63')+_0x403e44(0x645,'\x6b\x5d\x25\x67')]=_0x3c38a[_0x403e44(0x5e1,'\x79\x4d\x45\x6e')],_0x15aa31[_0x403e44(0x624,'\x59\x38\x6c\x6d')][_0x403e44(0x619,'\x56\x79\x47\x74')+_0x403e44(0x536,'\x4b\x30\x57\x5b')]=_0x3c38a[_0x403e44(0x3c7,'\x5a\x4e\x65\x58')]+_0x5da976;const _0x15bc3d=_0x5ce56f(_0x5148aa,_0x15aa31);_0x15bc3d&&_0x3c38a[_0x403e44(0x79e,'\x78\x38\x5e\x36')](typeof _0x15bc3d[_0x403e44(0x610,'\x32\x43\x23\x6b')],_0x3c38a[_0x403e44(0x7a4,'\x58\x45\x24\x5d')])&&(_0x3c38a[_0x403e44(0x79c,'\x78\x72\x50\x48')]('\x6c\x4e\x6a\x4c\x45',_0x3c38a[_0x403e44(0x309,'\x59\x38\x6c\x6d')])?(_0x38b79d[_0x403e44(0x445,'\x59\x28\x5e\x71')]+=0x12bd+-0xd82+-0x53a,_0xb5dbb6[_0x403e44(0x3fd,'\x78\x72\x50\x48')+_0x403e44(0x740,'\x56\x75\x48\x62')+'\x74']=0x86c+0x861+-0x10cd):_0x15bc3d[_0x403e44(0x344,'\x50\x30\x46\x57')](function(){}));}catch(_0x29843c){}}function _0x2675dc(_0x52903b){const _0x58220a=_0x59595f,_0x4e0fe3={'\x74\x59\x52\x6b\x72':function(_0x9d9964,_0x33d9d3){return _0x9d9964(_0x33d9d3);}},_0x308ab4=_0xcc5be9();_0x22cc94(_0x308ab4,_0x52903b),_0x4e0fe3['\x74\x59\x52\x6b\x72'](_0x56911b,_0x308ab4),_0x4e0fe3[_0x58220a(0x30d,'\x39\x48\x77\x39')](_0x106a3a,_0x52903b);}function _0x592251(_0x28b43b,_0x3a0c34){const _0x4ea67c=_0x59595f,_0x3e1fdf={};_0x3e1fdf[_0x4ea67c(0x6fa,'\x31\x72\x5d\x55')]=function(_0x8a9669,_0x49e812){return _0x8a9669+_0x49e812;};const _0x4eb451=_0x3e1fdf,_0x5e0e66=_0x5bed8f[_0x4ea67c(0x225,'\x55\x4e\x4a\x79')](_0x28b43b);_0x1d69a(_0x5e0e66);const _0x1a3b42=_0x28b43b+_0x4ea67c(0x201,'\x77\x74\x6a\x7a');_0x4a4ec7[_0x4ea67c(0x63b,'\x59\x28\x5e\x71')+_0x4ea67c(0x39b,'\x79\x2a\x55\x2a')](_0x1a3b42,_0x4eb451[_0x4ea67c(0x43d,'\x31\x77\x33\x38')](JSON[_0x4ea67c(0x2cb,'\x39\x48\x77\x39')+'\x79'](_0x3a0c34,null,0x419*0x5+-0xee1+-0x59a),'\x0a'),_0x4ea67c(0x57e,'\x33\x37\x26\x37')),_0x4a4ec7[_0x4ea67c(0x337,'\x4b\x30\x57\x5b')+'\x6e\x63'](_0x1a3b42,_0x28b43b);}function _0x38fcd2(_0x29c9e5=-0x3*0x2d2+-0xb*-0x114+0x71*0xa){const _0x4cb576=_0x59595f,_0x323f5a={'\x70\x45\x4c\x4b\x54':function(_0x20a455,_0x53a6f3){return _0x20a455(_0x53a6f3);},'\x6d\x54\x74\x74\x76':function(_0x2eb89c,_0x494a1a){return _0x2eb89c-_0x494a1a;},'\x4a\x54\x6d\x63\x57':function(_0x30e662,_0x50cba5){return _0x30e662/_0x50cba5;},'\x72\x45\x79\x73\x79':function(_0x31f1a5,_0x45493c){return _0x31f1a5!=_0x45493c;},'\x43\x4c\x78\x70\x41':function(_0x4206c8,_0xb7cde0){return _0x4206c8>_0xb7cde0;},'\x73\x42\x65\x76\x72':function(_0x2fc355,_0x445db3){return _0x2fc355/_0x445db3;},'\x56\x4a\x53\x61\x78':function(_0x845af,_0x25ef9f){return _0x845af(_0x25ef9f);},'\x69\x6c\x74\x69\x46':function(_0x1c2d40,_0x5bc906){return _0x1c2d40*_0x5bc906;},'\x53\x4b\x42\x65\x57':'\x49\x6a\x50\x52\x50','\x6f\x52\x4b\x45\x58':_0x4cb576(0x218,'\x47\x78\x79\x65'),'\x6e\x43\x57\x53\x52':function(_0x2abecc){return _0x2abecc();},'\x4d\x64\x4a\x46\x55':_0x4cb576(0x3ad,'\x58\x45\x24\x5d'),'\x57\x42\x4e\x74\x51':function(_0x5299b6,_0x1d164b){return _0x5299b6===_0x1d164b;},'\x78\x69\x6e\x70\x6a':_0x4cb576(0x6cf,'\x33\x68\x77\x70'),'\x68\x73\x6a\x65\x47':function(_0xc2dd1f,_0x50bbbd){return _0xc2dd1f-_0x50bbbd;},'\x50\x65\x53\x66\x4f':function(_0x284916,_0x4504e1){return _0x284916>=_0x4504e1;},'\x57\x4a\x46\x52\x6e':'\x6b\x6e\x43\x41\x65'};try{const _0x102bbc=_0x323f5a[_0x4cb576(0x723,'\x41\x40\x23\x4c')](_0xcc5be9);if(!_0x4a4ec7[_0x4cb576(0x239,'\x58\x45\x24\x5d')+'\x6e\x63'](_0x102bbc))return[];const _0x50487e=_0x4a4ec7[_0x4cb576(0x221,'\x77\x31\x4b\x6f')](_0x102bbc),_0x27a86e=_0x323f5a['\x69\x6c\x74\x69\x46'](-0x9b1+-0xbdb+0x4*0x5e3,0x13*0x1a8+-0x4c2*0x3+-0xd32);let _0x3881a8;if(_0x50487e['\x73\x69\x7a\x65']<=_0x27a86e)_0x3881a8=_0x4a4ec7[_0x4cb576(0x69b,'\x68\x63\x62\x6a')+_0x4cb576(0x180,'\x59\x28\x5e\x71')](_0x102bbc,_0x323f5a[_0x4cb576(0x25f,'\x74\x57\x51\x63')]);else{if(_0x323f5a[_0x4cb576(0x47e,'\x77\x28\x7a\x39')](_0x4cb576(0x6c3,'\x79\x4d\x45\x6e'),_0x323f5a['\x78\x69\x6e\x70\x6a'])){const _0x4aad89=_0x4a4ec7[_0x4cb576(0x6b6,'\x39\x48\x77\x39')](_0x102bbc,'\x72');try{const _0x3d5c7f=Buffer['\x61\x6c\x6c\x6f\x63'](_0x27a86e);_0x4a4ec7[_0x4cb576(0x607,'\x59\x28\x5e\x71')](_0x4aad89,_0x3d5c7f,-0x76f*0x1+0x2*-0x257+0x7*0x1bb,_0x27a86e,_0x323f5a[_0x4cb576(0x1ad,'\x2a\x35\x6a\x39')](_0x50487e[_0x4cb576(0x2ed,'\x33\x68\x77\x70')],_0x27a86e)),_0x3881a8=_0x3d5c7f[_0x4cb576(0x551,'\x59\x38\x6c\x6d')](_0x323f5a[_0x4cb576(0x537,'\x68\x63\x62\x6a')]);const _0x14515e=_0x3881a8['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a');if(_0x323f5a['\x50\x65\x53\x66\x4f'](_0x14515e,0x203f+0xce*-0x28+-0xf))_0x3881a8=_0x3881a8[_0x4cb576(0x267,'\x4b\x30\x57\x5b')](_0x14515e+(0x1d3f*-0x1+0x10d6+0x635*0x2));}finally{_0x323f5a[_0x4cb576(0x1ba,'\x33\x37\x26\x37')](_0x323f5a[_0x4cb576(0x435,'\x5b\x7a\x6f\x41')],_0x323f5a[_0x4cb576(0x4ef,'\x47\x78\x79\x65')])?_0x4a4ec7[_0x4cb576(0x5e9,'\x55\x4e\x4a\x79')+'\x63'](_0x4aad89):_0x5e8f3d['\x61\x64\x64'](_0x5abaa7);}}else _0x145e2a[_0x4cb576(0x52d,'\x41\x40\x23\x4c')](function(){});}const _0x283f64=_0x3881a8[_0x4cb576(0x169,'\x77\x31\x4b\x6f')]('\x0a')['\x6d\x61\x70'](_0x3bba91=>_0x3bba91[_0x4cb576(0x4e6,'\x45\x72\x73\x51')]())[_0x4cb576(0x6f0,'\x77\x74\x6a\x7a')](Boolean),_0x575daa=_0x283f64[_0x4cb576(0x275,'\x76\x54\x52\x77')](Math[_0x4cb576(0x4fe,'\x4d\x57\x74\x26')](-0x3*0x2c3+-0x5b5*-0x1+0x294,_0x323f5a['\x6d\x54\x74\x74\x76'](_0x283f64[_0x4cb576(0x462,'\x4b\x79\x35\x77')],_0x29c9e5)));return _0x575daa[_0x4cb576(0x608,'\x76\x54\x52\x77')](_0x40bd88=>{const _0x35ddaf=_0x4cb576,_0x200ef7={'\x72\x6f\x65\x74\x6f':function(_0x5a35be,_0x16e37b){return _0x323f5a['\x70\x45\x4c\x4b\x54'](_0x5a35be,_0x16e37b);},'\x46\x6d\x4f\x4e\x4d':function(_0xa3e1e2,_0x2cea10){return _0xa3e1e2(_0x2cea10);},'\x47\x6b\x72\x59\x6e':function(_0x53a790,_0x4a00cb){return _0x53a790!=_0x4a00cb;},'\x57\x67\x62\x51\x75':function(_0x59dd13,_0x4b82b1){const _0x462aed=_0x9c42;return _0x323f5a[_0x462aed(0x36f,'\x78\x30\x59\x23')](_0x59dd13,_0x4b82b1);},'\x58\x6e\x70\x43\x56':function(_0x23745f,_0x472eda){const _0x1867a0=_0x9c42;return _0x323f5a[_0x1867a0(0x26d,'\x78\x38\x5e\x36')](_0x23745f,_0x472eda);},'\x7a\x46\x41\x61\x6a':function(_0x2d90c6,_0x2b60cd){return _0x2d90c6(_0x2b60cd);},'\x71\x6e\x55\x67\x78':function(_0x17324a,_0x5d866c){return _0x17324a!=_0x5d866c;},'\x57\x58\x72\x43\x7a':function(_0x3762b0,_0x395df6){const _0x27ee6c=_0x9c42;return _0x323f5a[_0x27ee6c(0x2ef,'\x79\x2a\x55\x2a')](_0x3762b0,_0x395df6);},'\x62\x74\x72\x6d\x56':function(_0x133e16,_0x4e44ae){const _0x548946=_0x9c42;return _0x323f5a[_0x548946(0x49d,'\x33\x68\x30\x5d')](_0x133e16,_0x4e44ae);},'\x74\x6e\x4f\x54\x49':function(_0x523963,_0x3c50e6){const _0x1fe8eb=_0x9c42;return _0x323f5a[_0x1fe8eb(0x72e,'\x6d\x78\x46\x74')](_0x523963,_0x3c50e6);},'\x6d\x4e\x6c\x46\x6a':function(_0x24f4d8,_0x21a5d7){return _0x323f5a['\x56\x4a\x53\x61\x78'](_0x24f4d8,_0x21a5d7);},'\x65\x72\x62\x6a\x50':function(_0x513641,_0x2ce555){const _0x4b897b=_0x9c42;return _0x323f5a[_0x4b897b(0x67f,'\x49\x72\x4c\x4c')](_0x513641,_0x2ce555);}};if(_0x323f5a[_0x35ddaf(0x540,'\x32\x43\x23\x6b')]!==_0x323f5a[_0x35ddaf(0x4d5,'\x31\x72\x5d\x55')])try{if(_0x35ddaf(0x24b,'\x4b\x30\x57\x5b')==='\x53\x69\x74\x67\x68'){const _0x119253=_0x805055&&_0x239c07[_0x35ddaf(0x56d,'\x5b\x7a\x6f\x41')]&&(_0x48dd8d[_0x35ddaf(0x3e2,'\x41\x40\x23\x4c')][_0x35ddaf(0x705,'\x58\x45\x24\x5d')+_0x35ddaf(0x750,'\x32\x43\x23\x6b')+_0x35ddaf(0x5a6,'\x79\x2a\x55\x2a')]||_0x3dcfef[_0x35ddaf(0x4e5,'\x33\x68\x77\x70')][_0x35ddaf(0x763,'\x2a\x35\x6a\x39')+_0x35ddaf(0x60e,'\x45\x72\x73\x51')])?_0x4510e6[_0x35ddaf(0x240,'\x49\x72\x4c\x4c')]:null,_0x1b9d6d=_0x119253?_0x200ef7[_0x35ddaf(0x27d,'\x45\x72\x73\x51')](_0x3f81e6,_0x119253['\x72\x65\x63\x65\x6e\x74\x5f\x73'+_0x35ddaf(0x147,'\x38\x62\x4a\x6d')+_0x35ddaf(0x3e4,'\x5b\x7a\x6f\x41')]||'')+'\x0a'+_0x57127b(_0x119253[_0x35ddaf(0x4a1,'\x31\x72\x5d\x55')+_0x35ddaf(0x448,'\x5b\x7a\x6f\x41')]||''):'',_0x3bc7f5=_0x1b55fd(_0x1b9d6d);if(_0x3bc7f5)return _0x3bc7f5;const _0x4fce17={};_0x4fce17[_0x35ddaf(0x548,'\x47\x78\x79\x65')+_0x35ddaf(0x145,'\x50\x30\x46\x57')]=_0x4944a5,_0x4fce17[_0x35ddaf(0x23c,'\x77\x2a\x69\x63')+_0x35ddaf(0x1db,'\x79\x4d\x45\x6e')]=_0x7fe6c3;const _0x14925e=_0x1023cc(_0x4fce17),_0x1dcdc0=_0x347fc5&&_0x4f7413[_0x35ddaf(0x306,'\x5a\x4e\x65\x58')](_0x200ef7[_0x35ddaf(0x66d,'\x76\x54\x52\x77')](_0x181931,_0x95aaf8[_0x35ddaf(0x228,'\x6d\x78\x46\x74')+_0x35ddaf(0x177,'\x77\x2a\x69\x63')+'\x6e\x74']))?_0x4c232d(_0x482192[_0x35ddaf(0x52c,'\x33\x72\x78\x29')+_0x35ddaf(0x34d,'\x41\x6f\x6d\x77')+'\x6e\x74']):null,_0x29744c=_0xb2a79b&&_0x16f568[_0x35ddaf(0x1f0,'\x79\x2a\x55\x2a')](_0x200ef7[_0x35ddaf(0x2d7,'\x56\x75\x48\x62')](_0x32dbc6,_0x33e8e9[_0x35ddaf(0x575,'\x38\x62\x4a\x6d')+_0x35ddaf(0x681,'\x76\x4c\x5a\x40')+'\x6e\x74']))?_0x200ef7[_0x35ddaf(0x30e,'\x33\x37\x26\x37')](_0xe4f283,_0x1a8f29[_0x35ddaf(0x653,'\x30\x6f\x64\x41')+_0x35ddaf(0x5be,'\x49\x72\x4c\x4c')+'\x6e\x74']):null;let _0x38d90d=_0x14925e[_0x35ddaf(0x345,'\x77\x2a\x69\x63')];if(_0x200ef7['\x47\x6b\x72\x59\x6e'](_0x1dcdc0,null)&&_0x29744c!=null){const _0x4e7b70=_0x200ef7[_0x35ddaf(0x16e,'\x75\x37\x24\x32')](_0x1dcdc0,_0x29744c);_0x38d90d+=_0x49a6e7['\x6d\x61\x78'](-(-0x6*-0x6a+0x3*0x7f0+0x176*-0x12+0.12),_0x2f2c4b['\x6d\x69\x6e'](-0x2321+-0x33*-0x89+-0x11*-0x76+0.12,_0x200ef7[_0x35ddaf(0x15b,'\x31\x77\x33\x38')](_0x4e7b70,0x7*0x224+0x57*-0x27+0x1*-0x189)));}const _0xf18db2=_0x11b598&&_0x5bf0d5[_0x35ddaf(0x400,'\x2a\x35\x6a\x39')](_0x3efb1e(_0x3a84ce[_0x35ddaf(0x27f,'\x5a\x4e\x65\x58')]))?_0x200ef7['\x7a\x46\x41\x61\x6a'](_0x55b7ba,_0x3b4c48[_0x35ddaf(0x3d6,'\x31\x77\x33\x38')]):null,_0x35ff65=_0x260325&&_0x7b1523['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x3daf0a(_0x2619d4[_0x35ddaf(0x171,'\x47\x78\x79\x65')]))?_0x448399(_0x3c3fec[_0x35ddaf(0x11b,'\x41\x6f\x6d\x77')]):null;if(_0x200ef7[_0x35ddaf(0x4fc,'\x68\x63\x62\x6a')](_0xf18db2,null)&&_0x200ef7[_0x35ddaf(0x293,'\x74\x57\x51\x63')](_0x35ff65,null)&&_0x200ef7[_0x35ddaf(0x796,'\x2a\x35\x6a\x39')](_0xf18db2,-0x7*0x4ff+-0x16*-0xd1+0x1103)){const _0x4e88e9=_0x200ef7[_0x35ddaf(0x491,'\x74\x57\x51\x63')](_0x200ef7[_0x35ddaf(0x1c0,'\x4d\x57\x74\x26')](_0xf18db2,_0x35ff65),_0xf18db2);_0x38d90d+=_0x4002ad[_0x35ddaf(0x635,'\x47\x78\x79\x65')](-(-0x6d*0x3b+-0x1df+-0x566*-0x5+0.06),_0x2e2379[_0x35ddaf(0x476,'\x41\x6f\x6d\x77')](-0x4*-0x75c+0x1*-0x11dd+-0xb93*0x1+0.06,_0x4e88e9));}const _0x47b5aa={};_0x47b5aa[_0x35ddaf(0x22b,'\x6b\x5d\x25\x67')+_0x35ddaf(0x4c7,'\x75\x37\x24\x32')]=_0x1c1080,_0x47b5aa[_0x35ddaf(0x465,'\x38\x62\x4a\x6d')+_0x35ddaf(0x481,'\x33\x68\x30\x5d')]=_0x41913c,_0x47b5aa[_0x35ddaf(0x54d,'\x38\x62\x4a\x6d')]=_0x46ce6b;const _0x2761bc=_0x200ef7[_0x35ddaf(0x581,'\x4b\x79\x35\x77')](_0x1b5817,_0x47b5aa);return _0x38d90d+=_0x2761bc[_0x35ddaf(0x2f1,'\x75\x48\x79\x40')],{'\x73\x74\x61\x74\x75\x73':_0x14925e[_0x35ddaf(0x3f4,'\x55\x4e\x4a\x79')],'\x73\x63\x6f\x72\x65':_0x237ed6(_0x38d90d),'\x6e\x6f\x74\x65':_0x14925e[_0x35ddaf(0x2b8,'\x77\x74\x6a\x7a')]+(_0x35ddaf(0x122,'\x79\x4d\x45\x6e')+_0x35ddaf(0x191,'\x32\x43\x23\x6b')+_0x35ddaf(0x348,'\x32\x43\x23\x6b')+'\x69\x76\x65'),'\x70\x72\x65\x64\x69\x63\x74\x69\x76\x65':{'\x73\x69\x67\x6e\x61\x6c\x5f\x63\x6c\x61\x72\x69\x74\x79':_0x5292dc[_0x35ddaf(0x238,'\x38\x62\x4a\x6d')](_0x200ef7[_0x35ddaf(0x57c,'\x31\x72\x5d\x55')](_0x2761bc[_0x35ddaf(0x2c2,'\x78\x38\x5e\x36')+_0x35ddaf(0x117,'\x31\x77\x33\x38')],-0x1*-0x19f1+-0x2165+0xb5c))/(0x5*-0x3cd+0x10e2+0x607),'\x74\x72\x61\x6a\x65\x63\x74\x6f\x72\x79\x5f\x74\x72\x65\x6e\x64':_0x200ef7[_0x35ddaf(0x6ed,'\x78\x30\x59\x23')](_0x18ca55[_0x35ddaf(0x73b,'\x35\x6f\x58\x36')](_0x2761bc[_0x35ddaf(0x497,'\x69\x79\x38\x63')+_0x35ddaf(0x2ee,'\x32\x4e\x4a\x4d')]*(-0xee*-0x4+-0x5*-0x78a+-0x2582)),-0x1*-0x155c+0x1*0x19f3+0x2b67*-0x1),'\x66\x72\x6f\x6e\x74\x69\x65\x72\x5f\x74\x6f\x75\x63\x68\x65\x64':_0x2761bc[_0x35ddaf(0x5d6,'\x56\x79\x47\x74')+_0x35ddaf(0x3b1,'\x68\x63\x62\x6a')]}};}else return JSON['\x70\x61\x72\x73\x65'](_0x40bd88);}catch(_0x20fe0b){return null;}else _0x405e60[_0x35ddaf(0x118,'\x5b\x7a\x6f\x41')](_0x165805);})[_0x4cb576(0x39a,'\x59\x28\x5e\x71')](Boolean);}catch(_0x3733e3){return[];}}function _0x3b51f9(_0x4616a7,_0x13bbce){const _0x28b5ff=_0x59595f,_0x6d1d8e={'\x62\x6b\x4a\x74\x77':function(_0x4e214d,_0x47da29){return _0x4e214d(_0x47da29);},'\x67\x69\x75\x53\x7a':function(_0x61f363,_0x1a4760){return _0x61f363(_0x1a4760);},'\x6a\x6d\x6d\x59\x4e':function(_0x1c8737,_0x1b3cb8){return _0x1c8737===_0x1b3cb8;},'\x50\x75\x78\x4b\x61':function(_0x2fb5d1,_0xb4c9b6){return _0x2fb5d1===_0xb4c9b6;},'\x6a\x65\x58\x49\x56':function(_0x5ad6dc,_0x23ea35){return _0x5ad6dc-_0x23ea35;},'\x67\x41\x6d\x50\x59':function(_0x270b59,_0x362ace){return _0x270b59===_0x362ace;},'\x73\x48\x46\x49\x4c':function(_0x130a76,_0x371cd6){return _0x130a76/_0x371cd6;}},_0x17b6b1=_0x6d1d8e[_0x28b5ff(0x59f,'\x75\x48\x79\x40')](_0x41cf6e,_0x4616a7),_0x4b8542=_0x6d1d8e[_0x28b5ff(0x2a9,'\x35\x6f\x58\x36')](_0x41cf6e,_0x13bbce),_0x18ef3c=new Set((Array[_0x28b5ff(0x4e8,'\x32\x4e\x4a\x4d')](_0x17b6b1)?_0x17b6b1:[])['\x6d\x61\x70'](String)),_0x469d58=new Set((Array['\x69\x73\x41\x72\x72\x61\x79'](_0x4b8542)?_0x4b8542:[])[_0x28b5ff(0x469,'\x49\x72\x4c\x4c')](String));if(_0x6d1d8e[_0x28b5ff(0x77e,'\x78\x38\x5e\x36')](_0x18ef3c['\x73\x69\x7a\x65'],-0x17*-0x2d+-0x3*-0xac5+-0x1*0x245a)&&_0x6d1d8e[_0x28b5ff(0x650,'\x47\x78\x79\x65')](_0x469d58[_0x28b5ff(0x648,'\x6b\x5d\x25\x67')],0x175f+0xa2a+0x1*-0x2189))return-0x67c+0x22*-0x88+0x188d;if(_0x6d1d8e[_0x28b5ff(0x45b,'\x58\x45\x24\x5d')](_0x18ef3c[_0x28b5ff(0x205,'\x59\x38\x6c\x6d')],0x9c*-0x21+-0x1886+-0x1d*-0x18a)||_0x469d58[_0x28b5ff(0x6ce,'\x45\x72\x73\x51')]===0xed1*-0x2+0x1c9*0x5+-0x3*-0x6e7)return-0xcfa+0x169*0x11+-0xaff;let _0x1a9d3c=-0x1*0x234a+0x1*-0xe9b+0x31e5;for(const _0xae3d5a of _0x18ef3c)if(_0x469d58['\x68\x61\x73'](_0xae3d5a))_0x1a9d3c++;const _0xf64ce9=_0x6d1d8e[_0x28b5ff(0x40b,'\x79\x2a\x55\x2a')](_0x18ef3c[_0x28b5ff(0x4fb,'\x77\x2a\x69\x63')]+_0x469d58[_0x28b5ff(0x116,'\x38\x62\x4a\x6d')],_0x1a9d3c);return _0x6d1d8e[_0x28b5ff(0x296,'\x2a\x35\x6a\x39')](_0xf64ce9,-0x68e+0x2*-0x3f1+0xe70)?-0x229e+0xf*0x29+0x2037:_0x6d1d8e['\x73\x48\x46\x49\x4c'](_0x1a9d3c,_0xf64ce9);}function _0x2cedf5(_0x934976,_0x591a2f){const _0x214274=_0x59595f,_0x3469a2={};_0x3469a2[_0x214274(0x2ba,'\x59\x38\x6c\x6d')]=function(_0x4a2c9d,_0x4edcb9){return _0x4a2c9d<=_0x4edcb9;},_0x3469a2[_0x214274(0x19e,'\x26\x50\x33\x62')]=function(_0x185a98,_0x59e89f){return _0x185a98/_0x59e89f;},_0x3469a2[_0x214274(0x24e,'\x45\x72\x73\x51')]=function(_0x35ddf0,_0x252f42){return _0x35ddf0-_0x252f42;},_0x3469a2[_0x214274(0x4d7,'\x47\x78\x79\x65')]=function(_0x40a275,_0x59fb4e){return _0x40a275*_0x59fb4e;},_0x3469a2[_0x214274(0x1c6,'\x75\x37\x24\x32')]=function(_0x42d59c,_0x27777f){return _0x42d59c*_0x27777f;},_0x3469a2[_0x214274(0x6eb,'\x68\x63\x62\x6a')]=function(_0x46091c,_0x32db08){return _0x46091c<=_0x32db08;},_0x3469a2[_0x214274(0x4ae,'\x77\x31\x4b\x6f')]=function(_0x3f5304,_0x48fcd8){return _0x3f5304/_0x48fcd8;};const _0x13a1a8=_0x3469a2,_0x2e1e55=Number(_0x591a2f);if(!Number[_0x214274(0x49c,'\x69\x79\x38\x63')](_0x2e1e55)||_0x13a1a8[_0x214274(0x475,'\x39\x48\x77\x39')](_0x2e1e55,-0x1e5b+0x1042+0xe19))return 0xd7*0x5+-0x783*-0x3+-0x1abb;const _0x285847=Date[_0x214274(0x429,'\x74\x57\x51\x63')](_0x934976);if(!Number[_0x214274(0x77d,'\x78\x38\x5e\x36')](_0x285847))return 0x7da*0x2+0x2*0x1d7+-0x1361;const _0x6f332c=_0x13a1a8[_0x214274(0x498,'\x69\x79\x38\x63')](_0x13a1a8[_0x214274(0x6a5,'\x41\x40\x23\x4c')](Date[_0x214274(0x4b6,'\x68\x63\x62\x6a')](),_0x285847),_0x13a1a8[_0x214274(0x632,'\x41\x40\x23\x4c')](_0x13a1a8[_0x214274(0x5cf,'\x4b\x79\x35\x77')]((-0x1*0x1ad5+-0x5b9*-0x3+-0x6c9*-0x2)*(0x1*0x175d+-0x1285+-0x127*0x4),0x6a1*0x1+0x1317+0x1*-0x197c),-0x1f7*-0x3+-0x7b5*-0x5+-0x1c6*0x19));if(!Number[_0x214274(0x5aa,'\x45\x72\x73\x51')](_0x6f332c)||_0x13a1a8[_0x214274(0x37c,'\x5a\x4e\x65\x58')](_0x6f332c,-0x193a*0x1+0x25ee+0xcb4*-0x1))return 0x222b+-0x121b+-0x100f;return Math[_0x214274(0x56b,'\x6b\x5d\x25\x67')](0x39+0x4c3+0x1*-0x4fc+0.5,_0x13a1a8[_0x214274(0x6d2,'\x33\x37\x26\x37')](_0x6f332c,_0x2e1e55));}function _0x4105e8(_0x4b1ecc){const _0xa6fc80=_0x59595f,_0x4b181a={'\x62\x4f\x75\x46\x51':function(_0x442b25,_0x423189){return _0x442b25(_0x423189);},'\x46\x72\x72\x68\x56':function(_0x1d3a5b,_0x27a6d8){return _0x1d3a5b+_0x27a6d8;},'\x68\x54\x4e\x4c\x46':function(_0x121f75,_0x2c3297){return _0x121f75/_0x2c3297;},'\x45\x53\x63\x4a\x75':function(_0x1b1e7c,_0x41c466){return _0x1b1e7c+_0x41c466;},'\x4d\x58\x4b\x65\x67':function(_0x400cff,_0xe4d71a){return _0x400cff(_0xe4d71a);},'\x66\x58\x58\x72\x73':function(_0x1a0e69,_0x2e6d9e){return _0x1a0e69(_0x2e6d9e);},'\x4c\x4f\x4f\x4a\x44':function(_0x22fc26,_0x360a0e,_0x3d1d08){return _0x22fc26(_0x360a0e,_0x3d1d08);},'\x53\x54\x5a\x43\x76':function(_0x2e5d5c,_0x633187){return _0x2e5d5c*_0x633187;},'\x5a\x7a\x45\x71\x71':function(_0x2a9888,_0x628af7){return _0x2a9888(_0x628af7);},'\x51\x66\x4c\x55\x45':_0xa6fc80(0x318,'\x38\x62\x4a\x6d')+_0xa6fc80(0x16f,'\x49\x72\x4c\x4c'),'\x6c\x4d\x50\x6a\x4b':_0xa6fc80(0x4e9,'\x59\x38\x6c\x6d'),'\x41\x41\x76\x41\x54':function(_0x200e57,_0x460a0d){return _0x200e57(_0x460a0d);},'\x77\x58\x71\x74\x41':function(_0x22aaa2,_0x403f14){return _0x22aaa2||_0x403f14;},'\x66\x62\x50\x7a\x75':function(_0x59b713,_0x558b7b){return _0x59b713===_0x558b7b;},'\x48\x64\x50\x6c\x59':'\x6f\x62\x6a\x65\x63\x74','\x53\x74\x53\x73\x71':function(_0x1c0be7,_0x275129){return _0x1c0be7(_0x275129);},'\x6e\x5a\x6e\x69\x69':function(_0x4598ca,_0xa4c87f){return _0x4598ca===_0xa4c87f;},'\x68\x4d\x7a\x45\x51':_0xa6fc80(0x3b9,'\x78\x72\x50\x48'),'\x57\x4f\x63\x6a\x51':_0xa6fc80(0x59a,'\x77\x31\x4b\x6f'),'\x6e\x4c\x41\x6a\x49':_0xa6fc80(0x40d,'\x32\x43\x23\x6b'),'\x69\x4c\x51\x61\x5a':function(_0x1b43c1,_0x55be4e){return _0x1b43c1(_0x55be4e);},'\x62\x61\x61\x75\x47':_0xa6fc80(0x66c,'\x38\x62\x4a\x6d'),'\x50\x6d\x76\x50\x6d':function(_0x5a4068,_0x231bab){return _0x5a4068===_0x231bab;},'\x63\x67\x78\x4e\x66':_0xa6fc80(0x4ca,'\x31\x77\x33\x38'),'\x4a\x49\x66\x79\x4c':function(_0x342f60,_0x43eb09){return _0x342f60===_0x43eb09;},'\x42\x79\x51\x6b\x53':function(_0x245152,_0x77abc3){return _0x245152>_0x77abc3;},'\x49\x79\x67\x79\x6d':_0xa6fc80(0x50a,'\x74\x57\x51\x63')},_0x448168=new Map();for(const _0x1c8917 of _0x4b1ecc){if(_0x4b181a[_0xa6fc80(0x3a4,'\x41\x40\x23\x4c')](_0xa6fc80(0x6d5,'\x77\x74\x6a\x7a'),_0x4b181a[_0xa6fc80(0x6c8,'\x78\x38\x5e\x36')])){if(!_0x1c8917||_0x1c8917[_0xa6fc80(0x61b,'\x39\x48\x77\x39')]!==_0x4b181a[_0xa6fc80(0x28b,'\x58\x45\x24\x5d')])continue;if(_0x1c8917[_0xa6fc80(0x63a,'\x77\x28\x7a\x39')]!==_0x4b181a['\x57\x4f\x63\x6a\x51'])continue;const _0x223e1d=_0x1c8917[_0xa6fc80(0x389,'\x77\x2a\x69\x63')]&&_0x1c8917[_0xa6fc80(0x31d,'\x30\x6f\x64\x41')][_0xa6fc80(0x706,'\x55\x4e\x4a\x79')]?String(_0x1c8917[_0xa6fc80(0x5b5,'\x50\x30\x46\x57')][_0xa6fc80(0x12e,'\x33\x68\x77\x70')]):_0x4b181a['\x6e\x4c\x41\x6a\x49'],_0x997c5e=_0x1c8917[_0xa6fc80(0x398,'\x2a\x35\x6a\x39')]&&_0x1c8917[_0xa6fc80(0x278,'\x75\x48\x79\x40')]['\x69\x64']?String(_0x1c8917[_0xa6fc80(0x2dc,'\x6d\x78\x46\x74')]['\x69\x64']):null;if(!_0x997c5e)continue;const _0x53d9cf=_0x223e1d+'\x3a\x3a'+_0x997c5e,_0x47bc86={};_0x47bc86[_0xa6fc80(0x1c7,'\x56\x75\x48\x62')+'\x79']=_0x223e1d,_0x47bc86[_0xa6fc80(0x14f,'\x79\x4d\x45\x6e')]=_0x997c5e,_0x47bc86[_0xa6fc80(0x4cc,'\x55\x4e\x4a\x79')]=0x0,_0x47bc86[_0xa6fc80(0x2b3,'\x5a\x4e\x65\x58')]=0x0,_0x47bc86[_0xa6fc80(0x5d8,'\x49\x72\x4c\x4c')]=0x0,_0x47bc86[_0xa6fc80(0x25a,'\x68\x63\x62\x6a')+_0xa6fc80(0x224,'\x79\x2a\x55\x2a')+'\x74']=0x0,_0x47bc86[_0xa6fc80(0x360,'\x59\x28\x5e\x71')]=null,_0x47bc86[_0xa6fc80(0x4b1,'\x56\x75\x48\x62')+'\x72\x65']=null,_0x47bc86[_0xa6fc80(0x11f,'\x78\x38\x5e\x36')+_0xa6fc80(0x33f,'\x75\x37\x24\x32')]=![];const _0x158478=_0x448168[_0xa6fc80(0x5a9,'\x47\x78\x79\x65')](_0x53d9cf)||_0x47bc86,_0xdef7af=_0x1c8917[_0xa6fc80(0x5b8,'\x26\x50\x33\x62')]&&_0x1c8917[_0xa6fc80(0x50b,'\x55\x4e\x4a\x79')][_0xa6fc80(0x3d3,'\x79\x4d\x45\x6e')]?_0x4b181a[_0xa6fc80(0x747,'\x75\x48\x79\x40')](String,_0x1c8917[_0xa6fc80(0x552,'\x50\x30\x46\x57')][_0xa6fc80(0x773,'\x6b\x5d\x25\x67')]):_0x4b181a[_0xa6fc80(0x67d,'\x68\x63\x62\x6a')],_0x294af4=_0x1c8917[_0xa6fc80(0x761,'\x41\x40\x23\x4c')]&&_0x1c8917[_0xa6fc80(0x64f,'\x4b\x79\x35\x77')][_0xa6fc80(0x15e,'\x41\x40\x23\x4c')]?_0x4b181a[_0xa6fc80(0x567,'\x33\x37\x26\x37')](String,_0x1c8917['\x6f\x75\x74\x63\x6f\x6d\x65'][_0xa6fc80(0x330,'\x78\x38\x5e\x36')]):'',_0x50a016=_0x4b181a[_0xa6fc80(0x420,'\x4d\x57\x74\x26')](_0xdef7af,_0xa6fc80(0x121,'\x77\x74\x6a\x7a'))&&_0x294af4['\x69\x6e\x64\x65\x78\x4f\x66'](_0xa6fc80(0x33c,'\x76\x4c\x5a\x40')+_0xa6fc80(0x2f9,'\x77\x2a\x69\x63'))!==-(0x35*-0x59+-0xf04+0x2172);if(_0x50a016)_0x158478[_0xa6fc80(0x466,'\x30\x6f\x64\x41')]+=0x1397+-0xd47+-0x5f*0x11,_0x158478[_0xa6fc80(0x6f4,'\x31\x72\x5d\x55')+_0xa6fc80(0x5f2,'\x6d\x78\x46\x74')+'\x74']+=0x1*0x1bf1+-0x15a1+-0x64f*0x1;else{if(_0x4b181a[_0xa6fc80(0x46a,'\x26\x50\x33\x62')](_0xdef7af,_0x4b181a[_0xa6fc80(0x370,'\x31\x77\x33\x38')]))_0x158478[_0xa6fc80(0x634,'\x75\x37\x24\x32')]+=-0x8d3*-0x2+-0x1*0x1b93+-0x2*-0x4f7,_0x158478[_0xa6fc80(0x14a,'\x4d\x57\x74\x26')+_0xa6fc80(0x5a8,'\x33\x72\x78\x29')+'\x74']=-0xe07*0x1+-0x1*-0xd40+-0xc7*-0x1;else _0x4b181a[_0xa6fc80(0x4b0,'\x50\x30\x46\x57')](_0xdef7af,_0xa6fc80(0x2a6,'\x33\x37\x26\x37'))&&(_0x158478[_0xa6fc80(0x6e8,'\x45\x72\x73\x51')]+=-0xd*0x2bc+-0xe*0x266+0x3*0x170b,_0x158478[_0xa6fc80(0x18e,'\x47\x78\x79\x65')+_0xa6fc80(0x22c,'\x55\x4e\x4a\x79')+'\x74']=-0x15f4+0x1177+0x17f*0x3);}if(_0x1c8917[_0xa6fc80(0x15d,'\x59\x38\x6c\x6d')]&&_0x1c8917[_0xa6fc80(0x4df,'\x78\x38\x5e\x36')][_0xa6fc80(0x407,'\x6b\x5d\x25\x67')+'\x76\x65'])_0x158478['\x68\x61\x73\x5f\x70\x72\x65\x64'+_0xa6fc80(0x78f,'\x26\x50\x33\x62')]=!![];const _0x5b1c83=_0x1c8917['\x74\x73']||_0x1c8917['\x63\x72\x65\x61\x74\x65\x64\x5f'+'\x61\x74']||_0x1c8917['\x61\x74'];if(_0x5b1c83&&(!_0x158478[_0xa6fc80(0x35c,'\x50\x30\x46\x57')]||_0x4b181a[_0xa6fc80(0x343,'\x2a\x35\x6a\x39')](Date[_0xa6fc80(0x3de,'\x32\x43\x23\x6b')](_0x5b1c83),Date[_0xa6fc80(0x2ad,'\x2a\x35\x6a\x39')](_0x158478[_0xa6fc80(0x6da,'\x41\x40\x23\x4c')])))){if(_0x4b181a['\x50\x6d\x76\x50\x6d'](_0x4b181a[_0xa6fc80(0x49b,'\x74\x57\x51\x63')],_0x4b181a['\x49\x79\x67\x79\x6d']))_0x158478[_0xa6fc80(0x44f,'\x39\x48\x77\x39')]=_0x5b1c83,_0x158478[_0xa6fc80(0x213,'\x78\x72\x50\x48')+'\x72\x65']=_0x1c8917[_0xa6fc80(0x64f,'\x4b\x79\x35\x77')]&&Number[_0xa6fc80(0x6cd,'\x76\x4c\x5a\x40')](_0x4b181a[_0xa6fc80(0x159,'\x41\x40\x23\x4c')](Number,_0x1c8917['\x6f\x75\x74\x63\x6f\x6d\x65'][_0xa6fc80(0x418,'\x59\x28\x5e\x71')]))?_0x4b181a[_0xa6fc80(0x3b2,'\x31\x77\x33\x38')](Number,_0x1c8917[_0xa6fc80(0x598,'\x47\x78\x79\x65')][_0xa6fc80(0x437,'\x76\x54\x52\x77')]):_0x158478[_0xa6fc80(0x421,'\x77\x28\x7a\x39')+'\x72\x65'];else{const _0x3c90a8={};_0x3c90a8[_0xa6fc80(0x1a0,'\x2a\x35\x6a\x39')]=0x0,_0x3c90a8[_0xa6fc80(0x689,'\x76\x54\x52\x77')]=0x0,_0x3c90a8[_0xa6fc80(0x471,'\x68\x63\x62\x6a')]=null;const _0x3c90ba=_0x105719||_0x3c90a8,_0xc8d918=_0x4a07f5(_0x3c90ba[_0xa6fc80(0x483,'\x76\x54\x52\x77')])||0x19b7+0x612+0x1*-0x1fc9,_0x1a2725=_0x4b181a[_0xa6fc80(0x18d,'\x79\x4d\x45\x6e')](_0xbc9f40,_0x3c90ba[_0xa6fc80(0x2ae,'\x31\x77\x33\x38')])||-0x6*-0x336+0x2057*0x1+0x1*-0x339b,_0x3dcd05=_0x4b181a[_0xa6fc80(0x1f2,'\x4b\x30\x57\x5b')](_0xc8d918,_0x1a2725),_0x460cf8=_0x4b181a[_0xa6fc80(0x19b,'\x5a\x4e\x65\x58')](_0x4b181a[_0xa6fc80(0x454,'\x74\x57\x51\x63')](_0xc8d918,0x3*-0x8d3+0x23a1+-0xd5*0xb),_0x3dcd05+(-0x1766+0x1111+0x657)),_0x248cd0=_0x1c1ed3&&_0x436a13[_0xa6fc80(0x1fb,'\x5b\x7a\x6f\x41')](_0x4b181a[_0xa6fc80(0x424,'\x78\x38\x5e\x36')](_0x3c771e,_0x38ebbd[_0xa6fc80(0x59b,'\x45\x72\x73\x51')+_0xa6fc80(0x3ba,'\x39\x29\x37\x66')]))?_0x4b181a['\x66\x58\x58\x72\x73'](_0x22d0c6,_0x117391[_0xa6fc80(0x255,'\x50\x30\x46\x57')+_0xa6fc80(0x794,'\x41\x40\x23\x4c')]):-0x10c3*0x1+-0x170*-0x2+-0x4ab*-0x3,_0x11d905=_0x4b181a[_0xa6fc80(0x45e,'\x31\x77\x33\x38')](_0x28d61f,_0x3c90ba[_0xa6fc80(0x772,'\x76\x54\x52\x77')]||'',_0x248cd0),_0x1ec6df=_0x3c90ba[_0xa6fc80(0x199,'\x39\x48\x77\x39')+'\x69\x63\x74\x69\x76\x65']?0x10*0xaa+-0x18d+0x1*-0x912+0.1499999999999999:0x1*-0x1105+0x2*-0xfb+0x4*0x4bf;return{'\x70':_0x460cf8,'\x77':_0x11d905,'\x74\x6f\x74\x61\x6c':_0x3dcd05,'\x76\x61\x6c\x75\x65':_0x4b181a[_0xa6fc80(0x2e6,'\x77\x74\x6a\x7a')](_0x460cf8,_0x11d905)*_0x1ec6df};}}_0x448168[_0xa6fc80(0x691,'\x2a\x35\x6a\x39')](_0x53d9cf,_0x158478);}else{const _0x1a1071=_0x202812(_0x49a06f),_0x4865c5=_0x48804e(),_0x32383d=_0x4b181a[_0xa6fc80(0x26e,'\x6b\x5d\x25\x67')](_0x28d8ca,_0x5d3635),_0x31f080={'\x74\x79\x70\x65':_0x4b181a[_0xa6fc80(0x4e2,'\x45\x72\x73\x51')],'\x6b\x69\x6e\x64':_0x4b181a[_0xa6fc80(0x6c1,'\x47\x78\x79\x65')],'\x69\x64':_0xa6fc80(0x230,'\x30\x6f\x64\x41')+_0x15925d[_0xa6fc80(0x523,'\x69\x79\x38\x63')]()+'\x5f'+_0x4b181a[_0xa6fc80(0x698,'\x32\x4e\x4a\x4d')](_0x495347,_0x1a1071+_0xa6fc80(0x197,'\x55\x4e\x4a\x79')+_0x4865c5),'\x74\x73':_0x4865c5,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x1a1071,'\x73\x69\x67\x6e\x61\x6c\x73':_0x46ca21['\x69\x73\x41\x72\x72\x61\x79'](_0x384bd3)?_0x10d8c1:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x4b181a[_0xa6fc80(0x47f,'\x56\x75\x48\x62')](_0x32383d,null)},'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x5d567f&&_0x4b181a[_0xa6fc80(0x44d,'\x74\x57\x51\x63')](typeof _0x36a0cb,_0x4b181a[_0xa6fc80(0x3e5,'\x4b\x79\x35\x77')])?_0x5c66e5:null};return _0x4b181a[_0xa6fc80(0x1fd,'\x41\x40\x23\x4c')](_0x1a4038,_0x31f080),_0x31f080;}}return _0x448168;}function _0x5edf0c(_0x3b6890){const _0x404b52=_0x59595f,_0x4f89a7={'\x74\x6a\x76\x44\x6b':function(_0x4b7b16,_0x2ba7c3){return _0x4b7b16!==_0x2ba7c3;},'\x5a\x66\x56\x58\x65':_0x404b52(0x7a1,'\x75\x48\x79\x40')+'\x61\x70\x68\x45\x76\x65\x6e\x74','\x50\x61\x71\x4e\x63':function(_0x2e45f3,_0x45d40c){return _0x2e45f3!==_0x45d40c;},'\x45\x4d\x49\x70\x46':_0x404b52(0x62c,'\x78\x72\x50\x48'),'\x76\x53\x61\x78\x49':function(_0x48eade,_0x4bd697){return _0x48eade(_0x4bd697);},'\x54\x69\x61\x79\x6e':'\x66\x61\x69\x6c\x65\x64'},_0x16b364=new Map();for(const _0xad77c2 of _0x3b6890){if(!_0xad77c2||_0x4f89a7[_0x404b52(0x436,'\x32\x4e\x4a\x4d')](_0xad77c2[_0x404b52(0x288,'\x58\x45\x24\x5d')],_0x4f89a7['\x5a\x66\x56\x58\x65']))continue;if(_0x4f89a7[_0x404b52(0x5fc,'\x4b\x30\x57\x5b')](_0xad77c2[_0x404b52(0x1dc,'\x75\x48\x79\x40')],_0x4f89a7[_0x404b52(0x75a,'\x6b\x5d\x25\x67')]))continue;const _0xa6ca6a=_0xad77c2[_0x404b52(0x38d,'\x55\x4e\x4a\x79')]&&_0xad77c2[_0x404b52(0x3c2,'\x6b\x5d\x25\x67')]['\x69\x64']?_0x4f89a7[_0x404b52(0x132,'\x77\x2a\x69\x63')](String,_0xad77c2[_0x404b52(0x32b,'\x78\x30\x59\x23')]['\x69\x64']):null;if(!_0xa6ca6a)continue;const _0x4d9a7a=_0x16b364[_0x404b52(0x4c9,'\x31\x72\x5d\x55')](_0xa6ca6a)||{'\x67\x65\x6e\x65\x49\x64':_0xa6ca6a,'\x73\x75\x63\x63\x65\x73\x73':0x0,'\x66\x61\x69\x6c':0x0,'\x6c\x61\x73\x74\x5f\x74\x73':null,'\x6c\x61\x73\x74\x5f\x73\x63\x6f\x72\x65':null},_0x2eef33=_0xad77c2[_0x404b52(0x50b,'\x55\x4e\x4a\x79')]&&_0xad77c2['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x404b52(0x730,'\x77\x31\x4b\x6f')]?_0x4f89a7[_0x404b52(0x387,'\x33\x68\x30\x5d')](String,_0xad77c2[_0x404b52(0x492,'\x69\x79\x38\x63')][_0x404b52(0x36e,'\x77\x2a\x69\x63')]):'\x75\x6e\x6b\x6e\x6f\x77\x6e';if(_0x2eef33===_0x404b52(0x602,'\x56\x75\x48\x62'))_0x4d9a7a[_0x404b52(0x250,'\x59\x28\x5e\x71')]+=-0x1115+0x3*-0x1fa+-0x2*-0xb82;else{if(_0x2eef33===_0x4f89a7[_0x404b52(0x285,'\x76\x4c\x5a\x40')])_0x4d9a7a[_0x404b52(0x2ae,'\x31\x77\x33\x38')]+=0x2326+0xa46+-0x2d6b;}const _0x2f6b08=_0xad77c2['\x74\x73']||_0xad77c2[_0x404b52(0x455,'\x75\x48\x79\x40')+'\x61\x74']||_0xad77c2['\x61\x74'];_0x2f6b08&&(!_0x4d9a7a[_0x404b52(0x4ee,'\x75\x37\x24\x32')]||Date['\x70\x61\x72\x73\x65'](_0x2f6b08)>Date[_0x404b52(0x403,'\x41\x6f\x6d\x77')](_0x4d9a7a[_0x404b52(0x614,'\x56\x79\x47\x74')]))&&(_0x4d9a7a[_0x404b52(0x1f6,'\x31\x77\x33\x38')]=_0x2f6b08,_0x4d9a7a[_0x404b52(0x4f0,'\x74\x57\x51\x63')+'\x72\x65']=_0xad77c2[_0x404b52(0x5b8,'\x26\x50\x33\x62')]&&Number[_0x404b52(0x5aa,'\x45\x72\x73\x51')](_0x4f89a7[_0x404b52(0x45a,'\x78\x38\x5e\x36')](Number,_0xad77c2[_0x404b52(0x526,'\x31\x72\x5d\x55')][_0x404b52(0x5ad,'\x35\x6f\x58\x36')]))?_0x4f89a7[_0x404b52(0x658,'\x79\x4d\x45\x6e')](Number,_0xad77c2['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x404b52(0x378,'\x55\x4e\x4a\x79')]):_0x4d9a7a[_0x404b52(0x151,'\x30\x6f\x64\x41')+'\x72\x65']),_0x16b364[_0x404b52(0x342,'\x39\x48\x77\x39')](_0xa6ca6a,_0x4d9a7a);}return _0x16b364;}function _0x39799a(_0x40e6f8,_0x5cd33d){const _0x5eb71a=_0x59595f,_0x11a419={'\x72\x61\x58\x6e\x4b':function(_0x5765bc,_0x319b07){return _0x5765bc||_0x319b07;},'\x77\x47\x58\x4e\x71':function(_0xbdb4bd,_0x3e86e4){return _0xbdb4bd(_0x3e86e4);},'\x4c\x73\x55\x47\x6e':function(_0x4954d4,_0x3d9216){return _0x4954d4(_0x3d9216);},'\x6a\x47\x43\x45\x44':function(_0x142100,_0x58aaab){return _0x142100/_0x58aaab;},'\x70\x56\x76\x49\x75':function(_0x45687e,_0x35111e){return _0x45687e+_0x35111e;},'\x68\x55\x58\x4e\x58':function(_0x3148fc,_0xea0d86){return _0x3148fc(_0xea0d86);},'\x6f\x68\x4c\x67\x51':function(_0x51757d,_0x2448db,_0x55a185){return _0x51757d(_0x2448db,_0x55a185);},'\x6a\x6e\x66\x50\x5a':function(_0x3305d9,_0x5338be){return _0x3305d9*_0x5338be;}},_0x1ef062={};_0x1ef062[_0x5eb71a(0x3da,'\x33\x37\x26\x37')]=0x0,_0x1ef062[_0x5eb71a(0x254,'\x79\x2a\x55\x2a')]=0x0,_0x1ef062['\x6c\x61\x73\x74\x5f\x74\x73']=null;const _0x474a59=_0x11a419[_0x5eb71a(0x5e0,'\x32\x43\x23\x6b')](_0x40e6f8,_0x1ef062),_0x340ed2=_0x11a419[_0x5eb71a(0x2a8,'\x79\x2a\x55\x2a')](Number,_0x474a59[_0x5eb71a(0x2bf,'\x56\x79\x47\x74')])||-0x100d+-0xd2d+0x1d3a,_0x457e31=_0x11a419[_0x5eb71a(0x496,'\x78\x30\x59\x23')](Number,_0x474a59[_0x5eb71a(0x613,'\x56\x75\x48\x62')])||-0x55a+-0x4*-0x4ff+0x2*-0x751,_0x35302f=_0x340ed2+_0x457e31,_0x14ad4d=_0x11a419[_0x5eb71a(0x4f6,'\x75\x37\x24\x32')](_0x340ed2+(-0x1f*-0x68+-0x2*0x1065+0x1433*0x1),_0x11a419[_0x5eb71a(0x5bb,'\x38\x62\x4a\x6d')](_0x35302f,0xc52+-0x9f4+-0x12e*0x2)),_0x37db00=_0x5cd33d&&Number[_0x5eb71a(0x449,'\x77\x2a\x69\x63')](Number(_0x5cd33d[_0x5eb71a(0x119,'\x74\x57\x51\x63')+_0x5eb71a(0x76c,'\x77\x2a\x69\x63')]))?_0x11a419['\x68\x55\x58\x4e\x58'](Number,_0x5cd33d[_0x5eb71a(0x57b,'\x49\x72\x4c\x4c')+_0x5eb71a(0x2fb,'\x59\x38\x6c\x6d')]):-0xac5+0x1894+0x1*-0xdb1,_0x10de59=_0x11a419[_0x5eb71a(0x29e,'\x33\x68\x77\x70')](_0x2cedf5,_0x474a59['\x6c\x61\x73\x74\x5f\x74\x73']||'',_0x37db00),_0x1be224=_0x474a59[_0x5eb71a(0x679,'\x4b\x79\x35\x77')+_0x5eb71a(0x136,'\x56\x79\x47\x74')]?-0x17*0x13d+0x20c7+0x7*-0x9d+0.1499999999999999:-0x5d3+-0x1283+0x1857;return{'\x70':_0x14ad4d,'\x77':_0x10de59,'\x74\x6f\x74\x61\x6c':_0x35302f,'\x76\x61\x6c\x75\x65':_0x11a419[_0x5eb71a(0x354,'\x58\x45\x24\x5d')](_0x14ad4d*_0x10de59,_0x1be224)};}const _0x5ea065=new Set(['\x63\x6f\x6e\x73\x65\x63\x75\x74'+_0x59595f(0x665,'\x56\x75\x48\x62')+_0x59595f(0x313,'\x6b\x5d\x25\x67')+_0x59595f(0x759,'\x79\x2a\x55\x2a'),_0x59595f(0x1ec,'\x32\x4e\x4a\x4d')+'\x70\x6f\x63\x68\x5f\x72\x65\x73'+'\x65\x74',_0x59595f(0x4f9,'\x6b\x5d\x25\x67')+_0x59595f(0x6de,'\x31\x72\x5d\x55')+_0x59595f(0x156,'\x33\x37\x26\x37')]),_0x4f71c3=-0xe4b*-0x1+0x2184*0x1+-0x1*0x2fcf+0.3;function _0x576653(){const _0xd6990d=_0x59595f,_0x1ad4de={'\x47\x79\x46\x47\x64':function(_0x35fd2a,_0x899ee,_0x52572a){return _0x35fd2a(_0x899ee,_0x52572a);}},_0x1af055=_0x58d639(),_0x52a8df=_0x1ad4de[_0xd6990d(0x4c5,'\x78\x72\x50\x48')](_0x50d1b0,_0x1af055,{}),_0x207378={};return _0x207378[_0xd6990d(0x562,'\x33\x37\x26\x37')]=_0x52a8df[_0xd6990d(0x771,'\x26\x50\x33\x62')+_0xd6990d(0x249,'\x47\x78\x79\x65')]||null,_0x207378[_0xd6990d(0x6ee,'\x59\x28\x5e\x71')+'\x61\x72\x74\x65\x64\x5f\x61\x74']=_0x52a8df[_0xd6990d(0x52e,'\x58\x45\x24\x5d')+'\x61\x72\x74\x65\x64\x5f\x61\x74']||null,_0x207378[_0xd6990d(0x68a,'\x74\x57\x51\x63')+_0xd6990d(0x208,'\x47\x78\x79\x65')+'\x72\x69\x6e\x74\x5f\x6b\x65\x79']=_0x52a8df[_0xd6990d(0x5c4,'\x4b\x30\x57\x5b')+'\x5f\x66\x69\x6e\x67\x65\x72\x70'+'\x72\x69\x6e\x74\x5f\x6b\x65\x79']||null,_0x207378[_0xd6990d(0x30b,'\x77\x31\x4b\x6f')+'\x65\x5f\x6c\x69\x62\x5f\x76\x65'+'\x72\x73\x69\x6f\x6e']=_0x52a8df[_0xd6990d(0x745,'\x77\x28\x7a\x39')+_0xd6990d(0x16d,'\x6b\x5d\x25\x67')+_0xd6990d(0x4bd,'\x33\x72\x78\x29')]||null,_0x207378;}function _0x395990({signals:_0xccd1e9,currentEnvFingerprintKey:_0x3a452b,currentGeneLibVersion:_0x17511d}){const _0x281ee1=_0x59595f,_0xd1b442={'\x69\x63\x76\x65\x57':function(_0x1dbce3){return _0x1dbce3();},'\x6f\x6c\x6b\x5a\x54':function(_0x268444,_0x4e0901){return _0x268444<_0x4e0901;},'\x75\x46\x69\x67\x50':function(_0x5e59fb,_0x35e92e){return _0x5e59fb-_0x35e92e;},'\x4d\x4c\x70\x4b\x48':function(_0x10c598,_0x55bcc0){return _0x10c598<_0x55bcc0;},'\x45\x53\x6a\x67\x46':function(_0x467a51,_0x4fbae3){return _0x467a51(_0x4fbae3);},'\x6b\x64\x7a\x58\x77':function(_0x485fe0){return _0x485fe0();},'\x63\x49\x52\x51\x56':function(_0x1809a5,_0x1aaa37){return _0x1809a5(_0x1aaa37);},'\x75\x72\x4c\x42\x5a':function(_0xe25f10,_0x26cac5){return _0xe25f10!==_0x26cac5;},'\x54\x58\x4e\x6b\x57':_0x281ee1(0x1a5,'\x76\x54\x52\x77'),'\x6f\x52\x77\x49\x76':'\x48\x77\x62\x6c\x48','\x66\x6e\x69\x78\x49':_0x281ee1(0x25d,'\x55\x4e\x4a\x79')+_0x281ee1(0x6ec,'\x4d\x57\x74\x26'),'\x57\x6a\x58\x79\x69':_0x281ee1(0x793,'\x77\x2a\x69\x63')+_0x281ee1(0x3f0,'\x33\x72\x78\x29')+'\x68'},_0x3b3189=_0xd1b442[_0x281ee1(0x163,'\x77\x74\x6a\x7a')](_0x576653),_0x52c134=Array[_0x281ee1(0x415,'\x33\x68\x30\x5d')](_0xccd1e9)?_0xccd1e9:[];for(const _0x447643 of _0x52c134){if(_0x5ea065[_0x281ee1(0x663,'\x78\x72\x50\x48')](_0xd1b442[_0x281ee1(0x114,'\x59\x28\x5e\x71')](String,_0x447643))){if(_0xd1b442['\x75\x72\x4c\x42\x5a'](_0xd1b442[_0x281ee1(0x1ab,'\x45\x72\x73\x51')],_0xd1b442[_0x281ee1(0x193,'\x77\x74\x6a\x7a')])){const _0x547e5d={};return _0x547e5d['\x73\x68\x6f\x75\x6c\x64\x52\x65'+_0x281ee1(0x274,'\x33\x68\x30\x5d')]=!![],_0x547e5d[_0x281ee1(0x1ef,'\x45\x72\x73\x51')]=_0x281ee1(0x410,'\x77\x74\x6a\x7a')+_0x447643,_0x547e5d;}else{if(!sFVljO[_0x281ee1(0x3b0,'\x59\x38\x6c\x6d')](_0x2e3560))return null;_0x3d9a33+=0xf54+0x7cf*-0x2+0x4b;const _0x25cce0=_0x294589[_0x281ee1(0x2f5,'\x39\x48\x77\x39')]();if(!_0x1936e7&&_0xb6f6e2<_0x424ca1&&sFVljO[_0x281ee1(0x1ae,'\x68\x63\x62\x6a')](sFVljO[_0x281ee1(0x1d4,'\x39\x48\x77\x39')](_0x25cce0,_0x518daf),_0x5c7696))return null;_0x4e22e1=0x1*-0x3dc+-0x693+-0x1*-0xa6f,_0x524f07=_0x25cce0;try{if(!_0x397a67[_0x281ee1(0x178,'\x75\x37\x24\x32')+'\x6e\x63'](_0xbe1b2c))return null;const _0x428c04=_0x3dd939[_0x281ee1(0x1a8,'\x76\x54\x52\x77')](_0x114c73);if(sFVljO[_0x281ee1(0x37f,'\x79\x2a\x55\x2a')](_0x428c04['\x73\x69\x7a\x65'],_0x517576()))return null;return sFVljO[_0x281ee1(0x41e,'\x4b\x79\x35\x77')](_0x39b11e,_0x5e9629);}catch(_0x36db01){return null;}}}}if(_0x3b3189['\x70\x72\x65\x76\x5f\x65\x6e\x76'+_0x281ee1(0x4d9,'\x6b\x5d\x25\x67')+_0x281ee1(0x19c,'\x38\x62\x4a\x6d')]&&_0x3a452b&&_0x3b3189['\x70\x72\x65\x76\x5f\x65\x6e\x76'+_0x281ee1(0x21e,'\x31\x77\x33\x38')+_0x281ee1(0x717,'\x68\x63\x62\x6a')]!==_0x3a452b){const _0x32e468={};return _0x32e468[_0x281ee1(0x5a5,'\x79\x2a\x55\x2a')+_0x281ee1(0x379,'\x79\x4d\x45\x6e')]=!![],_0x32e468[_0x281ee1(0x2a2,'\x35\x6f\x58\x36')]=_0xd1b442[_0x281ee1(0x332,'\x74\x57\x51\x63')],_0x32e468;}if(_0x3b3189[_0x281ee1(0x783,'\x6d\x78\x46\x74')+_0x281ee1(0x74e,'\x59\x38\x6c\x6d')+_0x281ee1(0x3c1,'\x77\x2a\x69\x63')]&&_0x17511d&&_0xd1b442['\x75\x72\x4c\x42\x5a'](_0x3b3189[_0x281ee1(0x683,'\x5a\x4e\x65\x58')+_0x281ee1(0x667,'\x75\x37\x24\x32')+_0x281ee1(0x2f3,'\x41\x6f\x6d\x77')],_0x17511d)){const _0x34755a={};return _0x34755a[_0x281ee1(0x54c,'\x33\x68\x77\x70')+_0x281ee1(0x5df,'\x78\x30\x59\x23')]=!![],_0x34755a[_0x281ee1(0x2a2,'\x35\x6f\x58\x36')]=_0xd1b442[_0x281ee1(0x196,'\x4d\x57\x74\x26')],_0x34755a;}const _0x51bd95={};return _0x51bd95[_0x281ee1(0x1b9,'\x78\x30\x59\x23')+_0x281ee1(0x1da,'\x77\x2a\x69\x63')]=![],_0x51bd95[_0x281ee1(0x5b3,'\x47\x78\x79\x65')]=null,_0x51bd95;}function _0x46c992({reason:_0x130205,currentEnvFingerprintKey:_0x1496b7,currentGeneLibVersion:_0x51844}){const _0x39f281=_0x59595f,_0x5d5035={'\x77\x4d\x61\x71\x4e':function(_0x15f64d){return _0x15f64d();},'\x72\x75\x43\x52\x42':function(_0x4c1205,_0x2159bf){return _0x4c1205||_0x2159bf;},'\x49\x4d\x6e\x74\x54':'\x65\x70\x6f\x63\x68\x5f\x62\x6f'+'\x75\x6e\x64\x61\x72\x79','\x4e\x51\x74\x76\x65':_0x39f281(0x487,'\x30\x6f\x64\x41'),'\x61\x70\x73\x6f\x75':function(_0x20e558,_0x321920){return _0x20e558(_0x321920);},'\x64\x6a\x78\x52\x7a':function(_0x4455b1,_0x509838,_0x456e96){return _0x4455b1(_0x509838,_0x456e96);}},_0x5c03f4=_0x5d5035[_0x39f281(0x690,'\x4d\x57\x74\x26')](_0x4a2a06),_0x41aefd=_0x39f281(0x371,'\x47\x78\x79\x65')+Date[_0x39f281(0x752,'\x76\x54\x52\x77')]()+'\x5f'+_0x31f261(_0x5c03f4+_0x5d5035[_0x39f281(0x402,'\x77\x28\x7a\x39')](_0x130205,'')),_0xfcfa9={'\x74\x79\x70\x65':_0x39f281(0x168,'\x59\x28\x5e\x71')+_0x39f281(0x6e6,'\x78\x72\x50\x48'),'\x6b\x69\x6e\x64':_0x5d5035[_0x39f281(0x297,'\x77\x31\x4b\x6f')],'\x69\x64':_0x39f281(0x1fc,'\x5b\x7a\x6f\x41')+Date['\x6e\x6f\x77']()+'\x5f'+_0x31f261('\x65\x70\x6f\x63\x68\x5f\x62\x6f'+_0x39f281(0x6a0,'\x6b\x5d\x25\x67')+_0x5c03f4),'\x74\x73':_0x5c03f4,'\x65\x70\x6f\x63\x68':{'\x69\x64':_0x41aefd,'\x72\x65\x61\x73\x6f\x6e':_0x130205||_0x5d5035[_0x39f281(0x412,'\x4b\x30\x57\x5b')],'\x73\x74\x61\x72\x74\x65\x64\x5f\x61\x74':_0x5c03f4}};_0x5d5035[_0x39f281(0x57f,'\x69\x79\x38\x63')](_0x2675dc,_0xfcfa9);const _0x5a5ddc=_0x58d639(),_0x4570bd=_0x5d5035['\x64\x6a\x78\x52\x7a'](_0x50d1b0,_0x5a5ddc,{});_0x4570bd['\x63\x75\x72\x72\x65\x6e\x74\x5f'+_0x39f281(0x550,'\x32\x4e\x4a\x4d')]=_0x41aefd,_0x4570bd[_0x39f281(0x346,'\x55\x4e\x4a\x79')+_0x39f281(0x48c,'\x30\x6f\x64\x41')]=_0x5c03f4,_0x4570bd[_0x39f281(0x3b4,'\x56\x79\x47\x74')+_0x39f281(0x5d7,'\x77\x31\x4b\x6f')+_0x39f281(0x14e,'\x39\x29\x37\x66')]=_0x1496b7||null,_0x4570bd['\x70\x72\x65\x76\x5f\x67\x65\x6e'+_0x39f281(0x1ee,'\x78\x72\x50\x48')+_0x39f281(0x322,'\x59\x28\x5e\x71')]=_0x5d5035[_0x39f281(0x31a,'\x78\x72\x50\x48')](_0x51844,null);if(_0x4570bd[_0x39f281(0x333,'\x59\x28\x5e\x71')+'\x69\x6f\x6e'])_0x4570bd[_0x39f281(0x597,'\x35\x6f\x58\x36')+_0x39f281(0x36a,'\x59\x38\x6c\x6d')][_0x39f281(0x3cc,'\x79\x4d\x45\x6e')+_0x39f281(0x4c0,'\x68\x63\x62\x6a')]=!![];_0x5d5035['\x64\x6a\x78\x52\x7a'](_0x592251,_0x5a5ddc,_0x4570bd);const _0x244d3f={};return _0x244d3f[_0x39f281(0x374,'\x6d\x78\x46\x74')]=_0x41aefd,_0x244d3f[_0x39f281(0x2d3,'\x38\x62\x4a\x6d')]=_0x130205,_0x244d3f[_0x39f281(0x5e7,'\x77\x2a\x69\x63')+'\x61\x74']=_0x5c03f4,_0x244d3f;}function _0x5f46b9({signals:_0x311bba,genes:_0x1b26e1,driftEnabled:_0x3828f6}){const _0x4a15d7=_0x59595f,_0xedcb5b={'\x57\x72\x46\x6c\x77':function(_0xbd5a3d,_0x3419f0){return _0xbd5a3d!==_0x3419f0;},'\x6f\x7a\x47\x68\x72':function(_0x15b0e9,_0x1d2ce5){return _0x15b0e9!==_0x1d2ce5;},'\x53\x53\x5a\x6e\x50':function(_0x4cf0e3,_0x13b03d){return _0x4cf0e3(_0x13b03d);},'\x79\x6a\x6a\x78\x41':function(_0x2fe760){return _0x2fe760();},'\x58\x50\x46\x77\x61':function(_0x1c156b,_0x1b517d){return _0x1c156b(_0x1b517d);},'\x45\x4c\x48\x77\x74':function(_0x55744d,_0x349a76){return _0x55744d||_0x349a76;},'\x67\x77\x4d\x4b\x57':'\x6e\x6f\x6e\x65','\x54\x55\x71\x72\x75':function(_0x30b298,_0x2cf4d7){return _0x30b298(_0x2cf4d7);},'\x7a\x51\x72\x74\x54':_0x4a15d7(0x583,'\x50\x30\x46\x57')+'\x69\x73','\x58\x7a\x65\x6b\x4f':function(_0x44a87d,_0x165b9f){return _0x44a87d||_0x165b9f;},'\x73\x79\x4b\x59\x4a':function(_0x379c7e,_0x48e57c){return _0x379c7e===_0x48e57c;},'\x57\x42\x43\x7a\x68':'\x3c\x68\x65\x78\x3e','\x67\x43\x6a\x69\x4f':_0x4a15d7(0x2e0,'\x33\x37\x26\x37'),'\x65\x42\x4c\x52\x4e':_0x4a15d7(0x270,'\x39\x48\x77\x39')+'\x67','\x63\x72\x6c\x54\x70':_0x4a15d7(0x734,'\x4b\x79\x35\x77'),'\x71\x4f\x71\x47\x62':_0x4a15d7(0x5c7,'\x33\x72\x78\x29'),'\x76\x61\x41\x41\x67':function(_0x31fe88,_0x2be700){return _0x31fe88>=_0x2be700;},'\x4a\x42\x6e\x75\x41':_0x4a15d7(0x203,'\x41\x6f\x6d\x77'),'\x73\x63\x71\x55\x65':_0x4a15d7(0x294,'\x56\x75\x48\x62')+_0x4a15d7(0x16b,'\x26\x50\x33\x62'),'\x4b\x58\x56\x4a\x53':_0x4a15d7(0x56a,'\x26\x50\x33\x62'),'\x43\x6c\x66\x70\x4c':function(_0xe31821,_0x26b5b5){return _0xe31821-_0x26b5b5;},'\x64\x4a\x61\x65\x6e':_0x4a15d7(0x38e,'\x77\x31\x4b\x6f'),'\x6d\x50\x79\x4d\x46':function(_0xe8ac70,_0x412359){return _0xe8ac70+_0x412359;},'\x76\x47\x74\x4a\x63':function(_0x31b4a9,_0x161ea9){return _0x31b4a9(_0x161ea9);},'\x6d\x64\x54\x48\x72':_0x4a15d7(0x31b,'\x49\x72\x4c\x4c')+'\x61\x70\x68\x45\x76\x65\x6e\x74','\x77\x7a\x70\x59\x64':function(_0x11f98b,_0x5d5407){return _0x11f98b(_0x5d5407);},'\x70\x7a\x44\x6d\x67':_0x4a15d7(0x347,'\x39\x29\x37\x66'),'\x79\x43\x76\x6f\x6c':function(_0x4050a6,_0x5bd45c,_0x268be6){return _0x4050a6(_0x5bd45c,_0x268be6);},'\x66\x75\x56\x54\x71':function(_0x558d1a,_0x351c1f){return _0x558d1a>=_0x351c1f;},'\x4d\x73\x49\x63\x70':_0x4a15d7(0x640,'\x74\x57\x51\x63'),'\x52\x7a\x4b\x7a\x7a':_0x4a15d7(0x4eb,'\x79\x4d\x45\x6e'),'\x57\x65\x41\x63\x47':function(_0x4f82ea,_0x2a55fe){return _0x4f82ea&&_0x2a55fe;},'\x57\x63\x79\x61\x68':function(_0xcfc769,_0x5d6587){return _0xcfc769>_0x5d6587;},'\x45\x6e\x48\x4a\x44':function(_0x2a855d,_0x4f34ac){return _0x2a855d*_0x4f34ac;},'\x61\x55\x64\x72\x51':function(_0x24a9cf,_0x449900){return _0x24a9cf*_0x449900;},'\x4e\x46\x70\x51\x69':function(_0x593029,_0x38ca01){return _0x593029>_0x38ca01;},'\x51\x49\x4d\x59\x59':function(_0x252ccb,_0x5de99a){return _0x252ccb(_0x5de99a);},'\x41\x72\x51\x71\x72':function(_0x4a1597,_0x69d24e){return _0x4a1597(_0x69d24e);},'\x4e\x57\x6a\x4b\x57':function(_0x3a5011,_0x40d6d2){return _0x3a5011&&_0x40d6d2;},'\x77\x51\x52\x6a\x5a':_0x4a15d7(0x63f,'\x77\x74\x6a\x7a'),'\x73\x7a\x47\x52\x4f':_0x4a15d7(0x341,'\x26\x50\x33\x62'),'\x48\x41\x79\x62\x68':function(_0x30aa3f,_0x98657c){return _0x30aa3f*_0x98657c;},'\x56\x57\x42\x69\x52':function(_0x5708c7,_0x10c2c5){return _0x5708c7*_0x10c2c5;},'\x6f\x6e\x68\x53\x68':function(_0x50a9fe,_0x5f3364){return _0x50a9fe>_0x5f3364;},'\x73\x6c\x74\x4e\x68':function(_0x51aac6,_0x2dd587){return _0x51aac6>=_0x2dd587;},'\x4c\x41\x56\x71\x50':function(_0x2093d0,_0x3038d9){return _0x2093d0<_0x3038d9;},'\x48\x59\x63\x4e\x51':function(_0x510f49,_0x12a900){return _0x510f49===_0x12a900;},'\x45\x79\x75\x6a\x6c':function(_0x23f2b3,_0x31446e){return _0x23f2b3>_0x31446e;},'\x77\x42\x65\x6b\x4a':function(_0x56918e,_0x32aa1d){return _0x56918e(_0x32aa1d);},'\x42\x7a\x4a\x49\x6e':_0x4a15d7(0x649,'\x39\x29\x37\x66')+'\x72\x69\x66\x74\x3a\x65\x6e\x61'+_0x4a15d7(0x321,'\x56\x79\x47\x74')},_0x2af43c=_0x38fcd2(-0x425*0x7+0x1*0x1299+0x123a);let _0x2a464f=null;for(let _0x2d4ff9=_0x2af43c[_0x4a15d7(0x457,'\x78\x30\x59\x23')]-(-0x2fd*-0x1+-0xb*-0xb5+0x227*-0x5);_0xedcb5b[_0x4a15d7(0x490,'\x79\x2a\x55\x2a')](_0x2d4ff9,0x8a1*-0x1+0x5*0x669+-0x2*0xbb6);_0x2d4ff9--){if(_0x4a15d7(0x2c0,'\x41\x40\x23\x4c')!==_0xedcb5b[_0x4a15d7(0x707,'\x56\x75\x48\x62')]){const _0x2594f6=_0x11599e(_0x5d45fc.env.EVOLVER_MEMORY_GRAPH_AUTO_ROTATE??_0x4a15d7(0x4f5,'\x45\x72\x73\x51'))[_0x4a15d7(0x1bd,'\x75\x37\x24\x32')+_0x4a15d7(0x5ba,'\x33\x68\x77\x70')]();return GImKaB[_0x4a15d7(0x516,'\x56\x79\x47\x74')](_0x2594f6,_0x4a15d7(0x312,'\x76\x54\x52\x77'))&&GImKaB[_0x4a15d7(0x519,'\x77\x28\x7a\x39')](_0x2594f6,'\x30')&&GImKaB[_0x4a15d7(0x75f,'\x79\x4d\x45\x6e')](_0x2594f6,'\x6e\x6f');}else{const _0x33692f=_0x2af43c[_0x2d4ff9];if(_0x33692f&&_0xedcb5b[_0x4a15d7(0x741,'\x78\x72\x50\x48')](_0x33692f[_0x4a15d7(0x128,'\x39\x48\x77\x39')],_0xedcb5b[_0x4a15d7(0x2e2,'\x75\x37\x24\x32')])&&_0x33692f['\x74\x73']){if(_0xedcb5b[_0x4a15d7(0x325,'\x5a\x4e\x65\x58')](_0xedcb5b[_0x4a15d7(0x5f1,'\x6b\x5d\x25\x67')],_0xedcb5b[_0x4a15d7(0x381,'\x32\x4e\x4a\x4d')])){_0x2a464f=Date[_0x4a15d7(0x326,'\x5a\x4e\x65\x58')](_0x33692f['\x74\x73']);break;}else{const _0x5360ca=_0xedcb5b[_0x4a15d7(0x30a,'\x78\x72\x50\x48')](_0x1a41f9,_0x590427),_0xf5bef=_0x24e415&&_0x381f5e['\x69\x64']?_0xedcb5b[_0x4a15d7(0x1bc,'\x39\x48\x77\x39')](_0x482755,_0x3b6881['\x69\x64']):null,_0x5c6bbe=_0x4e5bf1&&_0x1b487c['\x63\x61\x74\x65\x67\x6f\x72\x79']?_0xedcb5b[_0x4a15d7(0x50e,'\x31\x72\x5d\x55')](_0x51540f,_0x60dcd0[_0x4a15d7(0x754,'\x32\x43\x23\x6b')]):null,_0x3d85b3=_0xedcb5b[_0x4a15d7(0x1f3,'\x6b\x5d\x25\x67')](_0x58b404),_0xcdeec1=_0xedcb5b[_0x4a15d7(0x4a8,'\x78\x38\x5e\x36')](_0x52ec79,_0x3e9795),_0x8047f=_0x4a15d7(0x532,'\x79\x4d\x45\x6e')+_0x294767[_0x4a15d7(0x20e,'\x32\x43\x23\x6b')]()+'\x5f'+_0xedcb5b[_0x4a15d7(0x78e,'\x78\x38\x5e\x36')](_0x148f51,_0x5360ca+'\x7c'+_0xedcb5b[_0x4a15d7(0x4dc,'\x50\x30\x46\x57')](_0xf5bef,_0xedcb5b[_0x4a15d7(0x5b7,'\x79\x2a\x55\x2a')])+'\x7c'+_0x3d85b3),_0x5a3c39=_0x3a589b||null,_0x1107c8=_0x5a57cd&&_0xedcb5b[_0x4a15d7(0x573,'\x35\x6f\x58\x36')](_0x3b1492,_0x19a864)?_0xedcb5b[_0x4a15d7(0x573,'\x35\x6f\x58\x36')](_0x4e9e89,_0x2a8f51):null,_0x1d405e=_0x5a3c39&&_0xedcb5b[_0x4a15d7(0x3ff,'\x4b\x30\x57\x5b')](_0x1c2a5e,_0x5a3c39)?_0x4aa0bf(_0x5a3c39):null,_0x363015={};_0x363015[_0x4a15d7(0x461,'\x33\x68\x77\x70')]=null,_0x363015[_0x4a15d7(0x38c,'\x75\x37\x24\x32')]=null;const _0x45022f={'\x74\x79\x70\x65':_0x4a15d7(0x3b6,'\x77\x28\x7a\x39')+_0x4a15d7(0x5f4,'\x76\x4c\x5a\x40'),'\x6b\x69\x6e\x64':_0xedcb5b[_0x4a15d7(0x3b5,'\x56\x75\x48\x62')],'\x69\x64':_0x4a15d7(0x148,'\x78\x30\x59\x23')+_0x4a6175[_0x4a15d7(0x13f,'\x39\x29\x37\x66')]()+'\x5f'+_0x413687(_0x8047f+'\x7c'+_0x3d85b3),'\x74\x73':_0x3d85b3,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x5360ca,'\x73\x69\x67\x6e\x61\x6c\x73':_0x1d091a[_0x4a15d7(0x768,'\x78\x72\x50\x48')](_0x541fc2)?_0x5a7514:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0xcdeec1||null},'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73':{'\x69\x64':_0x8047f,'\x74\x65\x78\x74':_0x308417({'\x73\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x5360ca,'\x73\x69\x67\x6e\x61\x6c\x73':_0x11a510,'\x67\x65\x6e\x65\x49\x64':_0xf5bef,'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0x5c6bbe,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':_0x4a960d}),'\x70\x72\x65\x64\x69\x63\x74\x65\x64\x5f\x6f\x75\x74\x63\x6f\x6d\x65':_0x363015},'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x1107c8?{'\x69\x64':_0x1107c8['\x69\x64'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x1107c8[_0x4a15d7(0x17b,'\x50\x30\x46\x57')],'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x1107c8[_0x4a15d7(0x38a,'\x5a\x4e\x65\x58')+'\x73\x69\x67\x6e\x61\x6c\x73'],'\x74\x61\x72\x67\x65\x74':_0x1107c8[_0x4a15d7(0x259,'\x26\x50\x33\x62')],'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x1107c8[_0x4a15d7(0x4fd,'\x33\x68\x77\x70')+_0x4a15d7(0x622,'\x6b\x5d\x25\x67')],'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x1107c8[_0x4a15d7(0x1f4,'\x6b\x5d\x25\x67')+'\x65\x6c']}:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0x1d405e?{'\x6b\x65\x79':_0xedcb5b[_0x4a15d7(0x5ef,'\x30\x6f\x64\x41')](_0xc9b769,_0x1d405e),'\x73\x74\x61\x74\x65':_0x1d405e}:null,'\x67\x65\x6e\x65':{'\x69\x64':_0xf5bef,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x5c6bbe},'\x61\x63\x74\x69\x6f\x6e':{'\x64\x72\x69\x66\x74':!!_0x35756e,'\x73\x65\x6c\x65\x63\x74\x65\x64\x5f\x62\x79':_0xedcb5b[_0x4a15d7(0x316,'\x77\x2a\x69\x63')](_0x435a59,_0x4a15d7(0x6a9,'\x74\x57\x51\x63')),'\x73\x65\x6c\x65\x63\x74\x6f\x72':_0x3ef2fd||null},'\x63\x61\x70\x73\x75\x6c\x65\x73':{'\x75\x73\x65\x64':_0x3ad90d[_0x4a15d7(0x1ca,'\x78\x38\x5e\x36')](_0x1e5411)?_0x22c2e2[_0x4a15d7(0x62e,'\x26\x50\x33\x62')](_0x28d562)[_0x4a15d7(0x3a3,'\x77\x28\x7a\x39')](_0x59098f):[]},'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x559bf8&&_0xedcb5b[_0x4a15d7(0x753,'\x30\x6f\x64\x41')](typeof _0x3978d1,_0x4a15d7(0x172,'\x77\x2a\x69\x63'))?_0x5bc1b1:null};_0x59f164(_0x45022f);const _0x3c2117={};return _0x3c2117[_0x4a15d7(0x5c3,'\x78\x30\x59\x23')+_0x4a15d7(0x405,'\x77\x31\x4b\x6f')]=_0x8047f,_0x3c2117[_0x4a15d7(0x350,'\x75\x37\x24\x32')+'\x79']=_0x5360ca,_0x3c2117;}}}}const _0x2d23dc=-0x9*0x161+-0x8*-0x100+-0x469*-0x1+0.1,_0x189deb=_0x4105e8(_0x2af43c),_0x402db0=_0xedcb5b[_0x4a15d7(0x380,'\x58\x45\x24\x5d')](_0x5edf0c,_0x2af43c);let _0x2df139=_0x189deb,_0x2b22ad=_0x402db0,_0x26c32d=-(0x20c3*-0x1+-0x6a3+0x7*0x5a1);if(_0x2a464f!==null){if(_0x4a15d7(0x428,'\x55\x4e\x4a\x79')===_0x4a15d7(0x1e8,'\x41\x6f\x6d\x77'))for(let _0x47bc40=_0xedcb5b[_0x4a15d7(0x5f3,'\x50\x30\x46\x57')](_0x2af43c[_0x4a15d7(0x568,'\x69\x79\x38\x63')],0x171d+-0x108+-0x1614);_0x47bc40>=0x22b7+0x25de+0x1*-0x4895;_0x47bc40--){const _0x1d18b1=_0x2af43c[_0x47bc40];if(_0x1d18b1&&_0x1d18b1['\x6b\x69\x6e\x64']===_0x4a15d7(0x157,'\x77\x74\x6a\x7a')+_0x4a15d7(0x61a,'\x4d\x57\x74\x26')&&_0x1d18b1['\x74\x73']){if(_0xedcb5b[_0x4a15d7(0x222,'\x5b\x7a\x6f\x41')]!==_0xedcb5b['\x64\x4a\x61\x65\x6e']){const _0x37fb0d=_0x18215e(GImKaB[_0x4a15d7(0x32c,'\x39\x48\x77\x39')](_0x8ebecf,''))[_0x4a15d7(0x28d,'\x35\x6f\x58\x36')]();if(!_0x37fb0d)return null;return _0x37fb0d[_0x4a15d7(0x572,'\x4b\x30\x57\x5b')+_0x4a15d7(0x58c,'\x75\x48\x79\x40')]()[_0x4a15d7(0x6fb,'\x75\x37\x24\x32')](/[a-z]:\\[^ \n\r\t]+/gi,_0x4a15d7(0x74d,'\x4b\x30\x57\x5b'))[_0x4a15d7(0x324,'\x33\x68\x30\x5d')](/\/[^ \n\r\t]+/g,_0x4a15d7(0x134,'\x31\x77\x33\x38'))['\x72\x65\x70\x6c\x61\x63\x65'](/\b0x[0-9a-f]+\b/gi,GImKaB['\x57\x42\x43\x7a\x68'])[_0x4a15d7(0x688,'\x50\x30\x46\x57')](/\b\d+\b/g,GImKaB[_0x4a15d7(0x6e1,'\x26\x50\x33\x62')])[_0x4a15d7(0x725,'\x33\x37\x26\x37')](/\s+/g,'\x20')['\x73\x6c\x69\x63\x65'](-0x1*-0x128d+-0x17cb+0x53e,0x13e+-0x2*0x130c+0x25b6);}else{_0x26c32d=_0x47bc40;break;}}}else _0x48473f=GImKaB['\x54\x55\x71\x72\x75'](_0x408537,GImKaB[_0x4a15d7(0x5ea,'\x77\x28\x7a\x39')])[_0x4a15d7(0x365,'\x4b\x79\x35\x77')+'\x72\x69\x62\x75\x74\x69\x6f\x6e'+_0x4a15d7(0x2bb,'\x77\x74\x6a\x7a')]();}if(_0xedcb5b[_0x4a15d7(0x493,'\x2a\x35\x6a\x39')](_0x26c32d,0x19e+-0x49*-0x4+0x2c2*-0x1)){const _0x542b00=_0x2af43c[_0x4a15d7(0x49e,'\x79\x4d\x45\x6e')](_0xedcb5b[_0x4a15d7(0x4b7,'\x33\x68\x30\x5d')](_0x26c32d,-0xd8*-0x1b+-0x2121+-0x32*-0x35));_0x2df139=_0x4105e8(_0x542b00),_0x2b22ad=_0xedcb5b[_0x4a15d7(0x49f,'\x5a\x4e\x65\x58')](_0x5edf0c,_0x542b00);}const _0x2fa364=Array[_0x4a15d7(0x503,'\x31\x72\x5d\x55')](_0x311bba)?_0x311bba:[],_0x130f94=_0x7c3ecd(_0x2fa364),_0x43ef0a=new Set(),_0x5f01e4=[],_0x1d23c8=new Set(),_0x1fae00=[],_0xf08b22={};_0xf08b22[_0x4a15d7(0x63c,'\x79\x4d\x45\x6e')]=_0x130f94,_0xf08b22[_0x4a15d7(0x703,'\x33\x37\x26\x37')]=0x1,_0x1fae00['\x70\x75\x73\x68'](_0xf08b22),_0x1d23c8[_0x4a15d7(0x391,'\x76\x4c\x5a\x40')](_0x130f94);for(const _0x17a3e2 of _0x2af43c){if(!_0x17a3e2||_0xedcb5b[_0x4a15d7(0x44b,'\x35\x6f\x58\x36')](_0x17a3e2[_0x4a15d7(0x2f0,'\x75\x48\x79\x40')],_0xedcb5b[_0x4a15d7(0x546,'\x6d\x78\x46\x74')]))continue;const _0x33c583=_0x17a3e2['\x73\x69\x67\x6e\x61\x6c']&&_0x17a3e2[_0x4a15d7(0x55f,'\x6b\x5d\x25\x67')][_0x4a15d7(0x4e1,'\x33\x68\x30\x5d')]?_0xedcb5b[_0x4a15d7(0x115,'\x69\x79\x38\x63')](String,_0x17a3e2[_0x4a15d7(0x416,'\x75\x37\x24\x32')][_0x4a15d7(0x5da,'\x4b\x30\x57\x5b')]):_0xedcb5b['\x70\x7a\x44\x6d\x67'];if(_0x1d23c8[_0x4a15d7(0x678,'\x32\x4e\x4a\x4d')](_0x33c583))continue;const _0x2c3a92=_0x17a3e2[_0x4a15d7(0x786,'\x76\x4c\x5a\x40')]&&Array['\x69\x73\x41\x72\x72\x61\x79'](_0x17a3e2[_0x4a15d7(0x251,'\x33\x72\x78\x29')]['\x73\x69\x67\x6e\x61\x6c\x73'])?_0x17a3e2[_0x4a15d7(0x70a,'\x32\x43\x23\x6b')][_0x4a15d7(0x314,'\x49\x72\x4c\x4c')]:[],_0x2e81b2=_0xedcb5b[_0x4a15d7(0x6ad,'\x32\x43\x23\x6b')](_0x3b51f9,_0x2fa364,_0x2c3a92);if(_0xedcb5b[_0x4a15d7(0x5eb,'\x78\x38\x5e\x36')](_0x2e81b2,-0x2*-0xe17+-0x611*-0x4+-0x62*0x89+0.34)){const _0x58202a={};_0x58202a[_0x4a15d7(0x3a9,'\x77\x31\x4b\x6f')]=_0x33c583,_0x58202a[_0x4a15d7(0x744,'\x30\x6f\x64\x41')]=_0x2e81b2,_0x1fae00[_0x4a15d7(0x17f,'\x5a\x4e\x65\x58')](_0x58202a),_0x1d23c8[_0x4a15d7(0x74c,'\x58\x45\x24\x5d')](_0x33c583);}}let _0x515d82=0x7b+-0x1ca*-0xd+-0x17bd;const _0x2b6058=new Map();for(const _0xecbff7 of _0x1fae00){for(const _0x336dee of Array[_0x4a15d7(0x1ca,'\x78\x38\x5e\x36')](_0x1b26e1)?_0x1b26e1:[]){if(_0xedcb5b[_0x4a15d7(0x5bf,'\x79\x4d\x45\x6e')]!==_0x4a15d7(0x538,'\x33\x72\x78\x29'))_0x954629(_0x3640a5);else{if(!_0x336dee||_0xedcb5b[_0x4a15d7(0x63e,'\x31\x77\x33\x38')](_0x336dee[_0x4a15d7(0x12c,'\x47\x78\x79\x65')],_0xedcb5b[_0x4a15d7(0x73c,'\x32\x43\x23\x6b')])||!_0x336dee['\x69\x64'])continue;const _0x22dfd9=_0xecbff7['\x6b\x65\x79']+'\x3a\x3a'+_0x336dee['\x69\x64'],_0x5f3f70=_0x189deb[_0x4a15d7(0x3f8,'\x56\x75\x48\x62')](_0x22dfd9),_0x557341=_0x2df139[_0x4a15d7(0x595,'\x75\x37\x24\x32')](_0x22dfd9),_0x4110f8=_0x2b6058[_0x4a15d7(0x258,'\x79\x4d\x45\x6e')](_0x336dee['\x69\x64'])||{'\x67\x65\x6e\x65\x49\x64':_0x336dee['\x69\x64'],'\x62\x65\x73\x74':0x0,'\x61\x74\x74\x65\x6d\x70\x74\x73':0x0,'\x70\x72\x69\x6f\x72':0x0,'\x70\x72\x69\x6f\x72\x5f\x61\x74\x74\x65\x6d\x70\x74\x73':0x0,'\x72\x61\x77\x53\x75\x63\x63\x65\x73\x73':0x0,'\x72\x61\x77\x46\x61\x69\x6c':0x0,'\x70\x65\x72\x4b\x65\x79\x41\x74\x74\x65\x6d\x70\x74\x73':0x0,'\x69\x6e\x65\x72\x74':0x0,'\x63\x6f\x6e\x73\x65\x63\x75\x74\x69\x76\x65\x49\x6e\x65\x72\x74':0x0};if(_0x5f3f70){let _0xd57a2b;if(_0xedcb5b[_0x4a15d7(0x202,'\x32\x43\x23\x6b')](_0x2a464f,_0x557341)&&_0xedcb5b[_0x4a15d7(0x3aa,'\x35\x6f\x58\x36')](_0x557341[_0x4a15d7(0x69c,'\x4b\x79\x35\x77')]+_0x557341[_0x4a15d7(0x175,'\x26\x50\x33\x62')],-0x1*-0xed1+-0x1*-0x169+-0x103a)){const _0x5a51b9={};_0x5a51b9['\x68\x61\x6c\x66\x5f\x6c\x69\x66'+_0x4a15d7(0x6a4,'\x30\x6f\x64\x41')]=0x1e;const _0x1b95cb=_0xedcb5b['\x79\x43\x76\x6f\x6c'](_0x39799a,_0x557341,_0x5a51b9);_0xd57a2b=_0xedcb5b[_0x4a15d7(0x4aa,'\x75\x37\x24\x32')](_0x1b95cb[_0x4a15d7(0x59c,'\x33\x68\x77\x70')],_0xecbff7[_0x4a15d7(0x489,'\x76\x4c\x5a\x40')]);}else{const _0x28641c={};_0x28641c[_0x4a15d7(0x119,'\x74\x57\x51\x63')+_0x4a15d7(0x535,'\x32\x43\x23\x6b')]=0x1e;const _0x2ceb9f=_0x39799a(_0x5f3f70,_0x28641c);let _0x29d438=0xdb8+-0x9c1+-0x3f6;if(_0x2a464f)_0x29d438=_0x2d23dc;_0xd57a2b=_0xedcb5b[_0x4a15d7(0x6dd,'\x79\x2a\x55\x2a')](_0x2ceb9f[_0x4a15d7(0x29d,'\x74\x57\x51\x63')]*_0xecbff7[_0x4a15d7(0x31e,'\x4b\x79\x35\x77')],_0x29d438);}const _0x39e2fe={};_0x39e2fe[_0x4a15d7(0x6f8,'\x33\x68\x77\x70')+_0x4a15d7(0x406,'\x79\x2a\x55\x2a')]=0x1e;const _0x523d06=_0x39799a(_0x5f3f70,_0x39e2fe);if(_0xedcb5b[_0x4a15d7(0x587,'\x32\x4e\x4a\x4d')](_0xd57a2b,_0x4110f8[_0x4a15d7(0x5ca,'\x31\x72\x5d\x55')]))_0x4110f8[_0x4a15d7(0x605,'\x77\x2a\x69\x63')]=_0xd57a2b;_0x4110f8[_0x4a15d7(0x17e,'\x45\x72\x73\x51')]=Math[_0x4a15d7(0x4fe,'\x4d\x57\x74\x26')](_0x4110f8[_0x4a15d7(0x5f5,'\x79\x4d\x45\x6e')],_0x523d06[_0x4a15d7(0x266,'\x58\x45\x24\x5d')]);const _0x4879e0={};_0x4879e0[_0x4a15d7(0x602,'\x56\x75\x48\x62')]=0x0,_0x4879e0[_0x4a15d7(0x386,'\x6d\x78\x46\x74')]=0x0,_0x4879e0[_0x4a15d7(0x66b,'\x75\x48\x79\x40')]=0x0,_0x4879e0[_0x4a15d7(0x2ac,'\x77\x2a\x69\x63')+_0x4a15d7(0x4d0,'\x38\x62\x4a\x6d')+'\x74']=0x0;const _0x549776=_0xedcb5b[_0x4a15d7(0x792,'\x26\x50\x33\x62')](_0x557341,_0x4879e0);_0x4110f8[_0x4a15d7(0x751,'\x30\x6f\x64\x41')+'\x73\x73']+=_0xedcb5b[_0x4a15d7(0x2f7,'\x78\x30\x59\x23')](Number,_0x549776[_0x4a15d7(0x3b3,'\x33\x68\x30\x5d')])||0x5*0x22d+0x1669*-0x1+0x12*0xa4,_0x4110f8[_0x4a15d7(0x120,'\x5a\x4e\x65\x58')]+=_0xedcb5b[_0x4a15d7(0x129,'\x56\x75\x48\x62')](Number,_0x549776[_0x4a15d7(0x352,'\x56\x79\x47\x74')])||0x55*-0x67+0x1040+0x11f3;if(_0xecbff7[_0x4a15d7(0x55b,'\x58\x45\x24\x5d')]>=0x130f+-0x15f7+0x2e8+0.8){const _0xd9893a=_0xedcb5b[_0x4a15d7(0x701,'\x39\x29\x37\x66')](_0xedcb5b['\x54\x55\x71\x72\x75'](Number,_0x549776[_0x4a15d7(0x1dd,'\x33\x68\x77\x70')])||0xb54+-0x228d+0x1739,_0xedcb5b[_0x4a15d7(0x7a0,'\x2a\x35\x6a\x39')](Number,_0x549776['\x66\x61\x69\x6c'])||0x63e+0xf73+0x15b1*-0x1);_0x4110f8[_0x4a15d7(0x5ab,'\x2a\x35\x6a\x39')+_0x4a15d7(0x244,'\x5b\x7a\x6f\x41')]+=_0xd9893a,_0x4110f8[_0x4a15d7(0x1bb,'\x31\x72\x5d\x55')]+=_0xedcb5b[_0x4a15d7(0x198,'\x33\x68\x30\x5d')](Number,_0x549776[_0x4a15d7(0x4a4,'\x55\x4e\x4a\x79')])||-0xa3*-0x2c+-0xa8c+-0x1178,_0x4110f8[_0x4a15d7(0x2b9,'\x4b\x30\x57\x5b')+_0x4a15d7(0x2aa,'\x33\x72\x78\x29')]=Math[_0x4a15d7(0x38f,'\x76\x54\x52\x77')](_0x4110f8[_0x4a15d7(0x245,'\x32\x4e\x4a\x4d')+'\x69\x76\x65\x49\x6e\x65\x72\x74'],_0xedcb5b[_0x4a15d7(0x584,'\x68\x63\x62\x6a')](Number,_0x549776[_0x4a15d7(0x3fd,'\x78\x72\x50\x48')+_0x4a15d7(0x1d1,'\x41\x40\x23\x4c')+'\x74'])||0x1*0x463+-0x1*0x1d9d+0x2*0xc9d);}_0x515d82+=_0x523d06[_0x4a15d7(0x473,'\x78\x72\x50\x48')];}const _0x13c9b9=_0x402db0[_0x4a15d7(0x738,'\x50\x30\x46\x57')](_0xedcb5b[_0x4a15d7(0x37b,'\x4b\x30\x57\x5b')](String,_0x336dee['\x69\x64'])),_0x5b58d6=_0x2b22ad[_0x4a15d7(0x258,'\x79\x4d\x45\x6e')](_0xedcb5b['\x51\x49\x4d\x59\x59'](String,_0x336dee['\x69\x64']));if(_0x13c9b9){let _0x41529d;if(_0xedcb5b['\x4e\x57\x6a\x4b\x57'](_0x2a464f,_0x5b58d6)&&_0xedcb5b[_0x4a15d7(0x757,'\x5a\x4e\x65\x58')](_0x5b58d6[_0x4a15d7(0x713,'\x47\x78\x79\x65')]+_0x5b58d6[_0x4a15d7(0x517,'\x33\x72\x78\x29')],0x7db+0x192a+-0x6b*0x4f)){if(_0xedcb5b['\x77\x51\x52\x6a\x5a']!==_0xedcb5b[_0x4a15d7(0x2cf,'\x5a\x4e\x65\x58')]){const _0x11c821={};_0x11c821[_0x4a15d7(0x5a0,'\x6b\x5d\x25\x67')+_0x4a15d7(0x4c4,'\x33\x72\x78\x29')]=0x2d;const _0x1d4ffb=_0xedcb5b[_0x4a15d7(0x1b1,'\x32\x4e\x4a\x4d')](_0x39799a,_0x5b58d6,_0x11c821);_0x41529d=_0x1d4ffb[_0x4a15d7(0x185,'\x55\x4e\x4a\x79')];}else{const _0x116504=_0x12032f[_0x4a15d7(0x768,'\x78\x72\x50\x48')](_0x24d9fd)?_0x59cb4e:[],_0x4cfe13=[_0x4a15d7(0x2b7,'\x33\x37\x26\x37')+'\x72',_0x4a15d7(0x5e3,'\x45\x72\x73\x51'),'\x65\x78\x63\x65\x70\x74\x69\x6f'+'\x6e',_0xedcb5b[_0x4a15d7(0x712,'\x56\x75\x48\x62')],_0x4a15d7(0x64b,'\x31\x77\x33\x38')];for(const _0x19d1ec of _0x116504){const _0x14a2ef=_0xedcb5b[_0x4a15d7(0x367,'\x4d\x57\x74\x26')](_0x999a7a,_0x19d1ec)[_0x4a15d7(0x111,'\x78\x30\x59\x23')+_0x4a15d7(0x60a,'\x5a\x4e\x65\x58')]();if(_0x4cfe13[_0x4a15d7(0x5f9,'\x33\x72\x78\x29')](_0x40406f=>_0x14a2ef===_0x40406f))return!![];if(_0x14a2ef[_0x4a15d7(0x748,'\x78\x38\x5e\x36')+'\x74\x68'](_0xedcb5b[_0x4a15d7(0x699,'\x56\x75\x48\x62')]))return!![];}return![];}}else{const _0xd42080={};_0xd42080[_0x4a15d7(0x51e,'\x78\x38\x5e\x36')+'\x65\x5f\x64\x61\x79\x73']=0x2d;const _0x8af555=_0x39799a(_0x13c9b9,_0xd42080);let _0x2af70e=0x14e*0x6+0x10f4+-0x1*0x18c7;if(_0x2a464f)_0x2af70e=_0x2d23dc;_0x41529d=_0x8af555[_0x4a15d7(0x2de,'\x33\x72\x78\x29')]*_0x2af70e;}const _0x36ea7c={};_0x36ea7c[_0x4a15d7(0x46c,'\x26\x50\x33\x62')+_0x4a15d7(0x1c8,'\x4b\x30\x57\x5b')]=0x2d;const _0xf1aaaf=_0xedcb5b['\x79\x43\x76\x6f\x6c'](_0x39799a,_0x13c9b9,_0x36ea7c);_0x4110f8[_0x4a15d7(0x507,'\x69\x79\x38\x63')]=Math[_0x4a15d7(0x26b,'\x45\x72\x73\x51')](_0x4110f8[_0x4a15d7(0x11a,'\x26\x50\x33\x62')],_0x41529d),_0x4110f8['\x70\x72\x69\x6f\x72\x5f\x61\x74'+_0x4a15d7(0x621,'\x4b\x30\x57\x5b')]=Math[_0x4a15d7(0x10f,'\x58\x45\x24\x5d')](_0x4110f8[_0x4a15d7(0x55e,'\x33\x68\x77\x70')+_0x4a15d7(0x694,'\x31\x72\x5d\x55')],_0xf1aaaf[_0x4a15d7(0x682,'\x79\x4d\x45\x6e')]);}_0x2b6058[_0x4a15d7(0x392,'\x26\x50\x33\x62')](_0x336dee['\x69\x64'],_0x4110f8);}}}for(const [_0x46b2be,_0x2dd2d1]of _0x2b6058[_0x4a15d7(0x21a,'\x55\x4e\x4a\x79')]()){const _0x134775=_0xedcb5b[_0x4a15d7(0x4c1,'\x77\x31\x4b\x6f')](_0x2dd2d1[_0x4a15d7(0x722,'\x58\x45\x24\x5d')],0x25a1+0x29+0x7*-0x566)?_0x2dd2d1[_0x4a15d7(0x76a,'\x75\x48\x79\x40')]+_0xedcb5b[_0x4a15d7(0x3f5,'\x56\x75\x48\x62')](_0x2dd2d1[_0x4a15d7(0x5ac,'\x77\x74\x6a\x7a')],-0x1a5*0x12+-0x5d*-0x4+0x1c26+0.12):_0xedcb5b[_0x4a15d7(0x3c9,'\x45\x72\x73\x51')](_0x2dd2d1['\x70\x72\x69\x6f\x72'],-0x18cf+0x1b3d+-0x26e+0.4),_0x175bb4=_0xedcb5b[_0x4a15d7(0x4e4,'\x68\x63\x62\x6a')](_0x2dd2d1['\x72\x61\x77\x53\x75\x63\x63\x65'+'\x73\x73'],-0x4*-0x4d7+-0x12ad*-0x2+-0x77*0x7a)&&_0xedcb5b[_0x4a15d7(0x556,'\x4b\x30\x57\x5b')](_0x2dd2d1[_0x4a15d7(0x2b4,'\x33\x72\x78\x29')+'\x73\x73'],_0x2dd2d1[_0x4a15d7(0x3ec,'\x39\x29\x37\x66')]),_0x45a8f1={};_0x45a8f1[_0x4a15d7(0x529,'\x77\x31\x4b\x6f')]=_0x46b2be,_0x45a8f1[_0x4a15d7(0x209,'\x32\x43\x23\x6b')]=_0x134775,_0x45a8f1[_0x4a15d7(0x17e,'\x45\x72\x73\x51')]=_0x2dd2d1[_0x4a15d7(0x3e3,'\x69\x79\x38\x63')],_0x45a8f1[_0x4a15d7(0x3fe,'\x78\x30\x59\x23')]=_0x2dd2d1['\x70\x72\x69\x6f\x72'],_0x45a8f1[_0x4a15d7(0x731,'\x41\x40\x23\x4c')+_0x4a15d7(0x3bb,'\x26\x50\x33\x62')+_0x4a15d7(0x780,'\x32\x4e\x4a\x4d')]=_0x175bb4,_0x5f01e4['\x70\x75\x73\x68'](_0x45a8f1),_0xedcb5b[_0x4a15d7(0x393,'\x78\x38\x5e\x36')](_0x2dd2d1[_0x4a15d7(0x3d1,'\x78\x72\x50\x48')+_0x4a15d7(0x625,'\x56\x79\x47\x74')],_0x31f9cc[_0x4a15d7(0x6f9,'\x75\x37\x24\x32')+_0x4a15d7(0x6c6,'\x26\x50\x33\x62')+_0x4a15d7(0x160,'\x59\x28\x5e\x71')+'\x53'])&&_0xedcb5b[_0x4a15d7(0x20a,'\x4b\x79\x35\x77')](_0x2dd2d1[_0x4a15d7(0x3a8,'\x56\x79\x47\x74')],_0x31f9cc[_0x4a15d7(0x338,'\x31\x72\x5d\x55')+_0x4a15d7(0x500,'\x41\x40\x23\x4c')+_0x4a15d7(0x6b7,'\x33\x37\x26\x37')])&&_0x43ef0a[_0x4a15d7(0x32f,'\x78\x72\x50\x48')](_0x46b2be),_0x2dd2d1[_0x4a15d7(0x18f,'\x6b\x5d\x25\x67')+_0x4a15d7(0x112,'\x79\x2a\x55\x2a')]<-0x909+-0x6da*-0x1+0x231&&_0xedcb5b[_0x4a15d7(0x490,'\x79\x2a\x55\x2a')](_0x2dd2d1[_0x4a15d7(0x591,'\x68\x63\x62\x6a')+_0x4a15d7(0x28f,'\x78\x30\x59\x23')],0x21e3*-0x1+0x2584+-0x39c)&&_0xedcb5b['\x4c\x41\x56\x71\x50'](_0x2dd2d1[_0x4a15d7(0x320,'\x75\x37\x24\x32')],0x222a+0x1*0x1dbd+0x39*-0x11f+0.1)&&_0x43ef0a[_0x4a15d7(0x7a5,'\x33\x37\x26\x37')](_0x46b2be),_0xedcb5b[_0x4a15d7(0x6f5,'\x59\x38\x6c\x6d')](_0x2dd2d1[_0x4a15d7(0x384,'\x56\x75\x48\x62')+_0x4a15d7(0x253,'\x33\x37\x26\x37')],_0x31f9cc[_0x4a15d7(0x65b,'\x2a\x35\x6a\x39')+_0x4a15d7(0x5d5,'\x31\x77\x33\x38')+_0x4a15d7(0x6c2,'\x33\x68\x30\x5d')])&&_0xedcb5b[_0x4a15d7(0x6d8,'\x75\x37\x24\x32')](_0x2dd2d1[_0x4a15d7(0x4f2,'\x56\x79\x47\x74')+'\x73\x73'],0x2373+-0x1d6c+-0x1*0x607)&&_0x43ef0a[_0x4a15d7(0x32f,'\x78\x72\x50\x48')](_0x46b2be);}_0x5f01e4[_0x4a15d7(0x704,'\x6b\x5d\x25\x67')]((_0x57bc24,_0x501d12)=>_0x501d12['\x73\x63\x6f\x72\x65']-_0x57bc24[_0x4a15d7(0x442,'\x38\x62\x4a\x6d')]);const _0x5c60c6=_0x5f01e4[_0x4a15d7(0x36d,'\x79\x2a\x55\x2a')]?_0x5f01e4[-0x1*0x2319+0x224b+-0xce*-0x1]:null,_0x304ae8=_0x5c60c6&&_0xedcb5b[_0x4a15d7(0x12a,'\x32\x43\x23\x6b')](_0x5c60c6[_0x4a15d7(0x46b,'\x31\x72\x5d\x55')],0x3b7*0xa+-0x1801+-0xd25)&&_0xedcb5b[_0x4a15d7(0x710,'\x26\x50\x33\x62')](_0x5c60c6[_0x4a15d7(0x33a,'\x76\x4c\x5a\x40')],-0x531*0x6+0x107*0x11+0xdaf)&&_0x5c60c6[_0x4a15d7(0x561,'\x56\x79\x47\x74')+_0x4a15d7(0x566,'\x39\x48\x77\x39')+_0x4a15d7(0x229,'\x35\x6f\x58\x36')]?_0x5c60c6['\x67\x65\x6e\x65\x49\x64']:null,_0x3034a8=[];if(_0x304ae8)_0x3034a8[_0x4a15d7(0x6a3,'\x31\x72\x5d\x55')](_0x4a15d7(0x620,'\x4b\x30\x57\x5b')+'\x72\x65\x66\x65\x72\x3a'+_0x304ae8);if(_0x43ef0a['\x73\x69\x7a\x65'])_0x3034a8[_0x4a15d7(0x19f,'\x59\x38\x6c\x6d')](_0x4a15d7(0x2b5,'\x41\x40\x23\x4c')+_0x4a15d7(0x25b,'\x68\x63\x62\x6a')+Array['\x66\x72\x6f\x6d'](_0x43ef0a)[_0x4a15d7(0x53f,'\x78\x30\x59\x23')](0x6fa+0xb1d*0x2+0x54*-0x59,0x1215+0xc2e+-0x1e3d*0x1)[_0x4a15d7(0x422,'\x49\x72\x4c\x4c')]('\x2c'));if(_0x304ae8){const _0x2b1a82=_0x5f01e4[_0x4a15d7(0x141,'\x31\x77\x33\x38')](_0x2ed644=>_0x2ed644&&_0x2ed644[_0x4a15d7(0x5e5,'\x69\x79\x38\x63')]===_0x304ae8);if(_0x2b1a82&&Number[_0x4a15d7(0x400,'\x2a\x35\x6a\x39')](_0xedcb5b['\x77\x42\x65\x6b\x4a'](Number,_0x2b1a82[_0x4a15d7(0x749,'\x55\x4e\x4a\x79')]))&&_0xedcb5b[_0x4a15d7(0x27a,'\x78\x72\x50\x48')](_0x2b1a82[_0x4a15d7(0x44a,'\x74\x57\x51\x63')],-0xbd5*-0x1+-0x1*-0x1aa5+0x3d9*-0xa))_0x3034a8[_0x4a15d7(0x6a3,'\x31\x72\x5d\x55')](_0x4a15d7(0x1fe,'\x6d\x78\x46\x74')+_0x4a15d7(0x60b,'\x79\x2a\x55\x2a')+_0x2b1a82[_0x4a15d7(0x5ac,'\x77\x74\x6a\x7a')]['\x74\x6f\x46\x69\x78\x65\x64'](0xe3*0x7+0x1523+0x1b55*-0x1));}if(_0x3828f6)_0x3034a8[_0x4a15d7(0x6af,'\x77\x28\x7a\x39')](_0xedcb5b['\x42\x7a\x4a\x49\x6e']);const _0x1d51d2={};return _0x1d51d2['\x63\x75\x72\x72\x65\x6e\x74\x53'+_0x4a15d7(0x165,'\x32\x43\x23\x6b')]=_0x130f94,_0x1d51d2[_0x4a15d7(0x3c6,'\x77\x28\x7a\x39')+_0x4a15d7(0x42c,'\x30\x6f\x64\x41')]=_0x304ae8,_0x1d51d2[_0x4a15d7(0x34a,'\x33\x68\x30\x5d')+_0x4a15d7(0x718,'\x78\x72\x50\x48')]=_0x43ef0a,_0x1d51d2[_0x4a15d7(0x51b,'\x39\x48\x77\x39')+_0x4a15d7(0x3ea,'\x35\x6f\x58\x36')]=_0x3034a8,_0x1d51d2[_0x4a15d7(0x1cc,'\x45\x72\x73\x51')+_0x4a15d7(0x42f,'\x4b\x30\x57\x5b')]=_0x515d82,_0x1d51d2;}function _0x4811a4({signals:_0x190de8,observations:_0x294803}){const _0xfeadc6=_0x59595f,_0x583735={'\x61\x70\x77\x55\x66':function(_0x13393e,_0x43669d){return _0x13393e(_0x43669d);},'\x4d\x51\x6e\x44\x43':'\x4d\x65\x6d\x6f\x72\x79\x47\x72'+_0xfeadc6(0x54e,'\x2a\x35\x6a\x39'),'\x6a\x4f\x73\x6f\x78':_0xfeadc6(0x251,'\x33\x72\x78\x29'),'\x4f\x65\x50\x71\x5a':function(_0x1e9156,_0x433c30){return _0x1e9156||_0x433c30;},'\x69\x78\x6b\x66\x50':function(_0x4b44c0,_0x30d11f){return _0x4b44c0===_0x30d11f;}},_0x2dcc46=_0x583735['\x61\x70\x77\x55\x66'](_0x7c3ecd,_0x190de8),_0x1ab267=_0x4a2a06(),_0x2da9a9=_0x583735['\x61\x70\x77\x55\x66'](_0x46a23f,_0x190de8),_0x5c50c5={'\x74\x79\x70\x65':_0x583735[_0xfeadc6(0x6b4,'\x79\x2a\x55\x2a')],'\x6b\x69\x6e\x64':_0x583735[_0xfeadc6(0x4b3,'\x59\x38\x6c\x6d')],'\x69\x64':_0xfeadc6(0x417,'\x77\x28\x7a\x39')+Date[_0xfeadc6(0x68d,'\x6d\x78\x46\x74')]()+'\x5f'+_0x31f261(_0x2dcc46+_0xfeadc6(0x46d,'\x31\x77\x33\x38')+_0x1ab267),'\x74\x73':_0x1ab267,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x2dcc46,'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0xfeadc6(0x62f,'\x38\x62\x4a\x6d')](_0x190de8)?_0x190de8:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x583735[_0xfeadc6(0x331,'\x74\x57\x51\x63')](_0x2da9a9,null)},'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x294803&&_0x583735[_0xfeadc6(0x652,'\x77\x74\x6a\x7a')](typeof _0x294803,_0xfeadc6(0x430,'\x59\x38\x6c\x6d'))?_0x294803:null};return _0x583735[_0xfeadc6(0x2a4,'\x77\x74\x6a\x7a')](_0x2675dc,_0x5c50c5),_0x5c50c5;}function _0x1af112({signalKey:_0x9a125e,signals:_0x13bb7a,geneId:_0x57a368,geneCategory:_0x5d3a7c,driftEnabled:_0x467e6f}){const _0x4f76be=_0x59595f,_0x4ebfd7={};_0x4ebfd7[_0x4f76be(0x3c3,'\x33\x68\x30\x5d')]=_0x4f76be(0x639,'\x33\x68\x30\x5d'),_0x4ebfd7[_0x4f76be(0x17c,'\x4d\x57\x74\x26')]=_0x4f76be(0x593,'\x5b\x7a\x6f\x41');const _0x198cd6=_0x4ebfd7,_0x1bdba2=Array[_0x4f76be(0x43f,'\x39\x48\x77\x39')](_0x13bb7a)?_0x13bb7a[_0x4f76be(0x3c8,'\x39\x29\x37\x66')]:0x95e*-0x1+-0x21ce+0x4cc*0x9,_0x198c28=_0x467e6f?_0x198cd6[_0x4f76be(0x668,'\x45\x72\x73\x51')]:_0x4f76be(0x578,'\x77\x28\x7a\x39'),_0x386f97=_0x57a368?''+_0x57a368+(_0x5d3a7c?'\x28'+_0x5d3a7c+'\x29':''):_0x198cd6[_0x4f76be(0x358,'\x2a\x35\x6a\x39')];return _0x4f76be(0x788,'\x56\x79\x47\x74')+_0x4f76be(0x414,'\x58\x45\x24\x5d')+'\x3d'+_0x9a125e+_0x4f76be(0x6e5,'\x35\x6f\x58\x36')+_0x1bdba2+(_0x4f76be(0x1e1,'\x68\x63\x62\x6a')+_0x4f76be(0x669,'\x76\x54\x52\x77')+_0x4f76be(0x349,'\x50\x30\x46\x57')+'\x3d')+_0x386f97+(_0x4f76be(0x2c3,'\x26\x50\x33\x62')+_0x4f76be(0x70f,'\x76\x54\x52\x77'))+_0x198c28+(_0x4f76be(0x767,'\x33\x68\x77\x70')+_0x4f76be(0x53d,'\x59\x28\x5e\x71')+'\x72\x65\x64\x75\x63\x65\x20\x72'+_0x4f76be(0x674,'\x4b\x79\x35\x77')+_0x4f76be(0x32a,'\x6b\x5d\x25\x67')+_0x4f76be(0x74a,'\x68\x63\x62\x6a')+_0x4f76be(0x356,'\x49\x72\x4c\x4c')+_0x4f76be(0x795,'\x41\x40\x23\x4c'));}function _0x4cc4f0({signals:_0x50957c,mutation:_0x3fc20c,personality_state:_0x5e5d97,selectedGene:_0x2e410b,selector:_0x58ed8f,driftEnabled:_0x153f6a,selectedBy:_0x1dba64,capsulesUsed:_0x4a1fc0,observations:_0x37a56d}){const _0x18be49=_0x59595f,_0x44eda7={'\x45\x4a\x4e\x56\x79':function(_0x29e6ab,_0x4f2ea6){return _0x29e6ab(_0x4f2ea6);},'\x52\x74\x77\x46\x6a':function(_0x41b464,_0x5cf163){return _0x41b464(_0x5cf163);},'\x78\x48\x4b\x4d\x4c':function(_0x5ce2d0,_0x2f75e3){return _0x5ce2d0(_0x2f75e3);},'\x46\x75\x54\x4f\x56':function(_0x1ddfb2){return _0x1ddfb2();},'\x52\x66\x69\x45\x74':'\x6e\x6f\x6e\x65','\x6a\x72\x70\x53\x74':function(_0x4c46c6,_0x556621){return _0x4c46c6(_0x556621);},'\x68\x4b\x41\x4c\x66':function(_0x4a1538,_0x566e21){return _0x4a1538(_0x566e21);},'\x57\x73\x6b\x59\x45':_0x18be49(0x2da,'\x78\x30\x59\x23')+_0x18be49(0x5e8,'\x45\x72\x73\x51'),'\x57\x4b\x4f\x46\x56':_0x18be49(0x4d6,'\x4d\x57\x74\x26')+'\x69\x73','\x50\x6e\x4c\x41\x4c':function(_0x3b20b2,_0x3ef792){return _0x3b20b2(_0x3ef792);},'\x50\x73\x73\x5a\x6e':function(_0x6f6616,_0x4c9fdf){return _0x6f6616||_0x4c9fdf;},'\x6d\x66\x77\x53\x69':_0x18be49(0x70c,'\x59\x38\x6c\x6d'),'\x46\x6e\x76\x6f\x73':function(_0x131e1e,_0x5b8e6c){return _0x131e1e||_0x5b8e6c;},'\x6a\x76\x71\x76\x55':function(_0x5a5e8f,_0x48b157){return _0x5a5e8f===_0x48b157;}},_0x514b5d=_0x44eda7[_0x18be49(0x256,'\x55\x4e\x4a\x79')](_0x7c3ecd,_0x50957c),_0x19611f=_0x2e410b&&_0x2e410b['\x69\x64']?_0x44eda7['\x52\x74\x77\x46\x6a'](String,_0x2e410b['\x69\x64']):null,_0x4a69de=_0x2e410b&&_0x2e410b[_0x18be49(0x162,'\x32\x4e\x4a\x4d')]?_0x44eda7['\x78\x48\x4b\x4d\x4c'](String,_0x2e410b[_0x18be49(0x50c,'\x78\x38\x5e\x36')]):null,_0x35facd=_0x44eda7[_0x18be49(0x3ce,'\x77\x28\x7a\x39')](_0x4a2a06),_0x131ce6=_0x46a23f(_0x50957c),_0x59a3d8=_0x18be49(0x453,'\x74\x57\x51\x63')+Date[_0x18be49(0x75d,'\x33\x37\x26\x37')]()+'\x5f'+_0x31f261(_0x514b5d+'\x7c'+(_0x19611f||_0x44eda7['\x52\x66\x69\x45\x74'])+'\x7c'+_0x35facd),_0x505669=_0x5e5d97||null,_0x3fc98a=_0x3fc20c&&_0x44eda7[_0x18be49(0x5c9,'\x2a\x35\x6a\x39')](_0x4ed7fe,_0x3fc20c)?_0x4205f7(_0x3fc20c):null,_0xec7cd5=_0x505669&&_0x44eda7[_0x18be49(0x49a,'\x5a\x4e\x65\x58')](_0x59f6f0,_0x505669)?_0x44eda7[_0x18be49(0x14c,'\x49\x72\x4c\x4c')](_0xd71a9c,_0x505669):null,_0x26360a={};_0x26360a['\x73\x74\x61\x74\x75\x73']=null,_0x26360a[_0x18be49(0x345,'\x77\x2a\x69\x63')]=null;const _0x1d0c12={'\x74\x79\x70\x65':_0x44eda7[_0x18be49(0x404,'\x33\x72\x78\x29')],'\x6b\x69\x6e\x64':_0x44eda7['\x57\x4b\x4f\x46\x56'],'\x69\x64':_0x18be49(0x17a,'\x33\x68\x77\x70')+Date[_0x18be49(0x76d,'\x56\x79\x47\x74')]()+'\x5f'+_0x44eda7[_0x18be49(0x64c,'\x47\x78\x79\x65')](_0x31f261,_0x59a3d8+'\x7c'+_0x35facd),'\x74\x73':_0x35facd,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x514b5d,'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x18be49(0x155,'\x45\x72\x73\x51')](_0x50957c)?_0x50957c:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x44eda7[_0x18be49(0x502,'\x32\x4e\x4a\x4d')](_0x131ce6,null)},'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73':{'\x69\x64':_0x59a3d8,'\x74\x65\x78\x74':_0x1af112({'\x73\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x514b5d,'\x73\x69\x67\x6e\x61\x6c\x73':_0x50957c,'\x67\x65\x6e\x65\x49\x64':_0x19611f,'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0x4a69de,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':_0x153f6a}),'\x70\x72\x65\x64\x69\x63\x74\x65\x64\x5f\x6f\x75\x74\x63\x6f\x6d\x65':_0x26360a},'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x3fc98a?{'\x69\x64':_0x3fc98a['\x69\x64'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x3fc98a['\x63\x61\x74\x65\x67\x6f\x72\x79'],'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x3fc98a[_0x18be49(0x6e7,'\x74\x57\x51\x63')+_0x18be49(0x5d3,'\x69\x79\x38\x63')],'\x74\x61\x72\x67\x65\x74':_0x3fc98a[_0x18be49(0x673,'\x68\x63\x62\x6a')],'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x3fc98a[_0x18be49(0x520,'\x32\x43\x23\x6b')+'\x5f\x65\x66\x66\x65\x63\x74'],'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x3fc98a[_0x18be49(0x522,'\x68\x63\x62\x6a')+'\x65\x6c']}:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0xec7cd5?{'\x6b\x65\x79':_0x44eda7[_0x18be49(0x6c4,'\x76\x4c\x5a\x40')](_0x26f94c,_0xec7cd5),'\x73\x74\x61\x74\x65':_0xec7cd5}:null,'\x67\x65\x6e\x65':{'\x69\x64':_0x19611f,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x4a69de},'\x61\x63\x74\x69\x6f\x6e':{'\x64\x72\x69\x66\x74':!!_0x153f6a,'\x73\x65\x6c\x65\x63\x74\x65\x64\x5f\x62\x79':_0x44eda7[_0x18be49(0x609,'\x33\x68\x77\x70')](_0x1dba64,_0x44eda7[_0x18be49(0x22d,'\x78\x38\x5e\x36')]),'\x73\x65\x6c\x65\x63\x74\x6f\x72':_0x44eda7[_0x18be49(0x527,'\x58\x45\x24\x5d')](_0x58ed8f,null)},'\x63\x61\x70\x73\x75\x6c\x65\x73':{'\x75\x73\x65\x64':Array[_0x18be49(0x41f,'\x55\x4e\x4a\x79')](_0x4a1fc0)?_0x4a1fc0[_0x18be49(0x2be,'\x5b\x7a\x6f\x41')](String)[_0x18be49(0x2e9,'\x32\x43\x23\x6b')](Boolean):[]},'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x37a56d&&_0x44eda7[_0x18be49(0x1e5,'\x35\x6f\x58\x36')](typeof _0x37a56d,_0x18be49(0x5f0,'\x58\x45\x24\x5d'))?_0x37a56d:null};_0x2675dc(_0x1d0c12);const _0x2afa0e={};return _0x2afa0e[_0x18be49(0x5b2,'\x32\x43\x23\x6b')+_0x18be49(0x656,'\x35\x6f\x58\x36')]=_0x59a3d8,_0x2afa0e['\x73\x69\x67\x6e\x61\x6c\x4b\x65'+'\x79']=_0x514b5d,_0x2afa0e;}function _0x5f806a(_0x5f1de1){const _0x57f2d2=_0x59595f,_0x1f33a4={'\x79\x72\x6c\x5a\x64':function(_0x30645a,_0x3b6f2b){return _0x30645a(_0x3b6f2b);},'\x4c\x7a\x76\x52\x77':function(_0x563b97,_0x5883bc){return _0x563b97>_0x5883bc;},'\x55\x67\x42\x55\x70':function(_0x280d21,_0x4e0f9b){return _0x280d21*_0x4e0f9b;},'\x43\x5a\x49\x61\x67':function(_0x3d0b60,_0x1e2637){return _0x3d0b60*_0x1e2637;},'\x43\x58\x4d\x6c\x56':_0x57f2d2(0x4c3,'\x33\x72\x78\x29')+'\x72','\x64\x49\x71\x4d\x52':_0x57f2d2(0x377,'\x41\x40\x23\x4c')+'\x6e','\x65\x79\x47\x61\x73':_0x57f2d2(0x791,'\x2a\x35\x6a\x39'),'\x4b\x71\x48\x64\x59':_0x57f2d2(0x299,'\x30\x6f\x64\x41'),'\x4f\x4d\x69\x4c\x50':function(_0x2bfb69,_0x234aac){return _0x2bfb69===_0x234aac;},'\x49\x4e\x4e\x45\x5a':_0x57f2d2(0x789,'\x56\x79\x47\x74'),'\x62\x52\x79\x63\x57':_0x57f2d2(0x636,'\x75\x37\x24\x32')},_0x2e7989=Array[_0x57f2d2(0x329,'\x47\x78\x79\x65')](_0x5f1de1)?_0x5f1de1:[],_0x477f33=[_0x1f33a4[_0x57f2d2(0x36b,'\x59\x38\x6c\x6d')],_0x57f2d2(0x204,'\x32\x43\x23\x6b'),_0x1f33a4[_0x57f2d2(0x3eb,'\x50\x30\x46\x57')],_0x1f33a4[_0x57f2d2(0x736,'\x77\x31\x4b\x6f')],_0x1f33a4[_0x57f2d2(0x1f5,'\x5a\x4e\x65\x58')]];for(const _0x3a22d1 of _0x2e7989){if(_0x1f33a4[_0x57f2d2(0x5cc,'\x75\x48\x79\x40')]('\x64\x4d\x79\x59\x63',_0x1f33a4[_0x57f2d2(0x1c4,'\x78\x38\x5e\x36')])){const _0x37fd22=xkoHVk[_0x57f2d2(0x470,'\x74\x57\x51\x63')](_0x2e16c7,_0x26055b.env.EVOLVER_MEMORY_GRAPH_MAX_SIZE_MB),_0x281402=_0x3004f5[_0x57f2d2(0x1d9,'\x41\x40\x23\x4c')](_0x37fd22)&&xkoHVk['\x4c\x7a\x76\x52\x77'](_0x37fd22,0x2*0x132d+-0x2*-0xbcd+-0x3df4)?_0x37fd22:-0x20*-0x2b+-0x1*0xc3a+0x39f*0x2;return _0x83036d[_0x57f2d2(0x68e,'\x31\x77\x33\x38')](xkoHVk[_0x57f2d2(0x64d,'\x26\x50\x33\x62')](xkoHVk['\x43\x5a\x49\x61\x67'](_0x281402,-0x89+-0x1*0xb25+0xfae),-0x7fe*0x2+0x1*0x16ac+0x1*-0x2b0));}else{const _0x238d30=_0x1f33a4[_0x57f2d2(0x1fa,'\x6b\x5d\x25\x67')](String,_0x3a22d1)[_0x57f2d2(0x4d3,'\x79\x4d\x45\x6e')+_0x57f2d2(0x5e4,'\x5b\x7a\x6f\x41')]();if(_0x477f33['\x73\x6f\x6d\x65'](_0x325f82=>_0x238d30===_0x325f82))return!![];if(_0x238d30[_0x57f2d2(0x5cd,'\x77\x31\x4b\x6f')+'\x74\x68'](_0x1f33a4[_0x57f2d2(0x6b8,'\x76\x54\x52\x77')]))return!![];}}return![];}function _0x54f508({signals:_0x37873c,mutation:_0x3ebe4b,personality_state:_0x16d1fa,selectedGene:_0x5e5588,selector:_0x16b7bc,driftEnabled:_0x4ce105,selectedBy:_0x4adef6,hypothesisId:_0x272686,capsulesUsed:_0x286536,observations:_0x30072d,chunkGenes:_0x4079c1}){const _0x4179ed=_0x59595f,_0x2bdb72={'\x6f\x6a\x6c\x44\x79':function(_0x5ef210,_0x8dd0c9){return _0x5ef210(_0x8dd0c9);},'\x50\x61\x71\x6f\x4d':function(_0x17d74d,_0x4528f7){return _0x17d74d(_0x4528f7);},'\x64\x43\x78\x59\x42':function(_0x1d5f6c,_0x3ad91b){return _0x1d5f6c(_0x3ad91b);},'\x4e\x70\x51\x4c\x4f':function(_0x3cc191){return _0x3cc191();},'\x76\x55\x77\x6c\x44':function(_0x435548,_0x4f6f45){return _0x435548(_0x4f6f45);},'\x46\x53\x5a\x66\x6d':function(_0x47e60a,_0x102e09){return _0x47e60a(_0x102e09);},'\x6c\x54\x74\x62\x45':_0x4179ed(0x4a6,'\x38\x62\x4a\x6d'),'\x73\x41\x59\x53\x76':function(_0xa116b9,_0x2cf325){return _0xa116b9||_0x2cf325;},'\x4d\x50\x78\x41\x75':function(_0x1c074e,_0xbb8412){return _0x1c074e(_0xbb8412);},'\x45\x55\x48\x73\x64':function(_0xff16b,_0x328b7a){return _0xff16b(_0x328b7a);},'\x68\x62\x6f\x77\x61':_0x4179ed(0x35a,'\x50\x30\x46\x57')+_0x4179ed(0x742,'\x59\x28\x5e\x71'),'\x6f\x6a\x56\x66\x4b':function(_0x2718ad,_0x268fa1){return _0x2718ad(_0x268fa1);},'\x43\x79\x4f\x4a\x44':function(_0x147255,_0x3050e8){return _0x147255||_0x3050e8;},'\x69\x6f\x7a\x62\x4b':function(_0x2c41f8,_0x4d0f8e){return _0x2c41f8(_0x4d0f8e);},'\x72\x5a\x61\x56\x57':_0x4179ed(0x1ce,'\x45\x72\x73\x51'),'\x70\x41\x73\x68\x46':function(_0x2f1aec,_0xb43dac){return _0x2f1aec||_0xb43dac;},'\x51\x6e\x6e\x42\x46':'\x6f\x62\x6a\x65\x63\x74','\x5a\x46\x41\x66\x54':function(_0x382906,_0x1d15f0){return _0x382906(_0x1d15f0);},'\x77\x54\x56\x69\x6f':function(_0x26b1cc,_0x12af8f){return _0x26b1cc(_0x12af8f);},'\x4a\x52\x51\x42\x51':function(_0x3b542e,_0x16623e){return _0x3b542e||_0x16623e;},'\x57\x53\x4c\x63\x6a':function(_0x365efd,_0x16f553){return _0x365efd===_0x16f553;},'\x50\x75\x6f\x51\x66':function(_0x15775b,_0x365b67){return _0x15775b>_0x365b67;},'\x6d\x73\x51\x46\x48':function(_0x4466c6,_0x28cf64,_0x5078c5){return _0x4466c6(_0x28cf64,_0x5078c5);}},_0x3a2294=_0x2bdb72[_0x4179ed(0x1b3,'\x74\x57\x51\x63')](_0x7c3ecd,_0x37873c),_0x239ee7=_0x5e5588&&_0x5e5588['\x69\x64']?_0x2bdb72[_0x4179ed(0x1b2,'\x45\x72\x73\x51')](String,_0x5e5588['\x69\x64']):null,_0x52f4f9=_0x5e5588&&_0x5e5588[_0x4179ed(0x1c2,'\x59\x28\x5e\x71')]?_0x2bdb72[_0x4179ed(0x4a7,'\x41\x40\x23\x4c')](String,_0x5e5588[_0x4179ed(0x272,'\x77\x31\x4b\x6f')]):null,_0x315347=_0x2bdb72[_0x4179ed(0x697,'\x79\x2a\x55\x2a')](_0x4a2a06),_0x36d321=_0x2bdb72[_0x4179ed(0x20f,'\x75\x37\x24\x32')](_0x46a23f,_0x37873c),_0x60f143=_0x4179ed(0x505,'\x26\x50\x33\x62')+Date[_0x4179ed(0x21c,'\x32\x4e\x4a\x4d')]()+'\x5f'+_0x2bdb72[_0x4179ed(0x53b,'\x77\x74\x6a\x7a')](_0x31f261,_0x3a2294+'\x7c'+(_0x239ee7||_0x2bdb72[_0x4179ed(0x298,'\x76\x54\x52\x77')])+'\x7c'+_0x315347),_0x2e43e9=_0x2bdb72[_0x4179ed(0x65d,'\x33\x68\x30\x5d')](_0x16d1fa,null),_0x2e67db=_0x3ebe4b&&_0x2bdb72[_0x4179ed(0x310,'\x77\x28\x7a\x39')](_0x4ed7fe,_0x3ebe4b)?_0x2bdb72[_0x4179ed(0x234,'\x35\x6f\x58\x36')](_0x4205f7,_0x3ebe4b):null,_0x413b16=_0x2e43e9&&_0x2bdb72[_0x4179ed(0x192,'\x6d\x78\x46\x74')](_0x59f6f0,_0x2e43e9)?_0x2bdb72[_0x4179ed(0x3f2,'\x4b\x79\x35\x77')](_0xd71a9c,_0x2e43e9):null,_0x4b738b=Array[_0x4179ed(0x361,'\x75\x48\x79\x40')](_0x4079c1)?_0x4079c1[_0x4179ed(0x76f,'\x31\x72\x5d\x55')](function(_0x27f571){return _0x27f571&&_0x27f571['\x69\x64']?_0x2bdb72['\x6f\x6a\x6c\x44\x79'](String,_0x27f571['\x69\x64']):null;})[_0x4179ed(0x19d,'\x30\x6f\x64\x41')](Boolean):[],_0x645807={};_0x645807['\x69\x64']=_0x239ee7,_0x645807[_0x4179ed(0x162,'\x32\x4e\x4a\x4d')]=_0x52f4f9;const _0x54c490={'\x74\x79\x70\x65':_0x2bdb72[_0x4179ed(0x233,'\x59\x28\x5e\x71')],'\x6b\x69\x6e\x64':'\x61\x74\x74\x65\x6d\x70\x74','\x69\x64':_0x4179ed(0x1c5,'\x50\x30\x46\x57')+Date[_0x4179ed(0x395,'\x59\x28\x5e\x71')]()+'\x5f'+_0x2bdb72['\x6f\x6a\x56\x66\x4b'](_0x31f261,_0x60f143),'\x74\x73':_0x315347,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x3a2294,'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x4179ed(0x2d5,'\x30\x6f\x64\x41')](_0x37873c)?_0x37873c:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x2bdb72[_0x4179ed(0x657,'\x4b\x30\x57\x5b')](_0x36d321,null)},'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x2e67db?{'\x69\x64':_0x2e67db['\x69\x64'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x2e67db[_0x4179ed(0x6ff,'\x77\x74\x6a\x7a')],'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x2e67db[_0x4179ed(0x6b5,'\x79\x2a\x55\x2a')+_0x4179ed(0x34c,'\x45\x72\x73\x51')],'\x74\x61\x72\x67\x65\x74':_0x2e67db[_0x4179ed(0x3ee,'\x5b\x7a\x6f\x41')],'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x2e67db[_0x4179ed(0x300,'\x39\x48\x77\x39')+'\x5f\x65\x66\x66\x65\x63\x74'],'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x2e67db['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c']}:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0x413b16?{'\x6b\x65\x79':_0x26f94c(_0x413b16),'\x73\x74\x61\x74\x65':_0x413b16}:null,'\x67\x65\x6e\x65':_0x645807,'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73':_0x272686?{'\x69\x64':_0x2bdb72['\x69\x6f\x7a\x62\x4b'](String,_0x272686)}:null,'\x61\x63\x74\x69\x6f\x6e':{'\x69\x64':_0x60f143,'\x64\x72\x69\x66\x74':!!_0x4ce105,'\x73\x65\x6c\x65\x63\x74\x65\x64\x5f\x62\x79':_0x2bdb72[_0x4179ed(0x547,'\x47\x78\x79\x65')](_0x4adef6,_0x2bdb72[_0x4179ed(0x6f2,'\x78\x30\x59\x23')]),'\x73\x65\x6c\x65\x63\x74\x6f\x72':_0x2bdb72[_0x4179ed(0x383,'\x2a\x35\x6a\x39')](_0x16b7bc,null)},'\x63\x61\x70\x73\x75\x6c\x65\x73':{'\x75\x73\x65\x64':Array[_0x4179ed(0x329,'\x47\x78\x79\x65')](_0x286536)?_0x286536[_0x4179ed(0x506,'\x47\x78\x79\x65')](String)[_0x4179ed(0x13e,'\x58\x45\x24\x5d')](Boolean):[]},'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x30072d&&typeof _0x30072d===_0x2bdb72[_0x4179ed(0x3bd,'\x49\x72\x4c\x4c')]?_0x30072d:null};_0x2bdb72[_0x4179ed(0x139,'\x76\x4c\x5a\x40')](_0x2675dc,_0x54c490);const _0x2b089a=_0x58d639(),_0x2fa3e2={};_0x2fa3e2[_0x4179ed(0x284,'\x77\x28\x7a\x39')+_0x4179ed(0x62b,'\x78\x38\x5e\x36')]=null;const _0x959a4a=_0x50d1b0(_0x2b089a,_0x2fa3e2);_0x959a4a[_0x4179ed(0x2c1,'\x77\x74\x6a\x7a')+_0x4179ed(0x709,'\x33\x68\x30\x5d')]={'\x61\x63\x74\x69\x6f\x6e\x5f\x69\x64':_0x60f143,'\x73\x69\x67\x6e\x61\x6c\x5f\x6b\x65\x79':_0x3a2294,'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x4179ed(0x361,'\x75\x48\x79\x40')](_0x37873c)?_0x37873c:[],'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x69\x64':_0x2e67db?_0x2e67db['\x69\x64']:null,'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x63\x61\x74\x65\x67\x6f\x72\x79':_0x2e67db?_0x2e67db[_0x4179ed(0x4dd,'\x31\x72\x5d\x55')]:null,'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x2e67db?_0x2e67db['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c']:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x6b\x65\x79':_0x413b16?_0x2bdb72['\x77\x54\x56\x69\x6f'](_0x26f94c,_0x413b16):null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x73\x74\x61\x74\x65':_0x2bdb72[_0x4179ed(0x4d4,'\x74\x57\x51\x63')](_0x413b16,null),'\x67\x65\x6e\x65\x5f\x69\x64':_0x239ee7,'\x67\x65\x6e\x65\x5f\x63\x61\x74\x65\x67\x6f\x72\x79':_0x52f4f9,'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73\x5f\x69\x64':_0x272686?String(_0x272686):null,'\x63\x61\x70\x73\x75\x6c\x65\x73\x5f\x75\x73\x65\x64':Array[_0x4179ed(0x44c,'\x5b\x7a\x6f\x41')](_0x286536)?_0x286536[_0x4179ed(0x6f7,'\x58\x45\x24\x5d')](String)[_0x4179ed(0x23a,'\x79\x2a\x55\x2a')](Boolean):[],'\x68\x61\x64\x5f\x65\x72\x72\x6f\x72':_0x5f806a(_0x37873c),'\x63\x72\x65\x61\x74\x65\x64\x5f\x61\x74':_0x315347,'\x6f\x75\x74\x63\x6f\x6d\x65\x5f\x72\x65\x63\x6f\x72\x64\x65\x64':![],'\x62\x61\x73\x65\x6c\x69\x6e\x65\x5f\x6f\x62\x73\x65\x72\x76\x65\x64':_0x30072d&&_0x2bdb72[_0x4179ed(0x5fd,'\x33\x68\x30\x5d')](typeof _0x30072d,_0x2bdb72['\x51\x6e\x6e\x42\x46'])?_0x30072d:null,'\x63\x68\x75\x6e\x6b\x5f\x67\x65\x6e\x65\x5f\x69\x64\x73':_0x2bdb72[_0x4179ed(0x514,'\x4b\x79\x35\x77')](_0x4b738b[_0x4179ed(0x58e,'\x56\x79\x47\x74')],-0xd88+-0x56d+0x12f5)?_0x4b738b:undefined},_0x2bdb72[_0x4179ed(0x67c,'\x74\x57\x51\x63')](_0x592251,_0x2b089a,_0x959a4a);const _0xaf9d4b={};return _0xaf9d4b['\x61\x63\x74\x69\x6f\x6e\x49\x64']=_0x60f143,_0xaf9d4b[_0x4179ed(0x301,'\x77\x2a\x69\x63')+'\x79']=_0x3a2294,_0xaf9d4b;}function _0x45fb8e({prevHadError:_0x5b0359,currentHasError:_0x252d5d}){const _0x3272a3=_0x59595f,_0x53e385={};_0x53e385[_0x3272a3(0x4bb,'\x6b\x5d\x25\x67')]=function(_0xa26e5c,_0x16f0e1){return _0xa26e5c&&_0x16f0e1;},_0x53e385[_0x3272a3(0x277,'\x2a\x35\x6a\x39')]=_0x3272a3(0x713,'\x47\x78\x79\x65'),_0x53e385[_0x3272a3(0x246,'\x5a\x4e\x65\x58')]=function(_0x1e95a4,_0x5cc866){return _0x1e95a4&&_0x5cc866;},_0x53e385[_0x3272a3(0x40e,'\x2a\x35\x6a\x39')]=_0x3272a3(0x289,'\x38\x62\x4a\x6d'),_0x53e385[_0x3272a3(0x4bf,'\x39\x48\x77\x39')]=_0x3272a3(0x195,'\x75\x37\x24\x32')+_0x3272a3(0x20c,'\x50\x30\x46\x57'),_0x53e385[_0x3272a3(0x6bc,'\x75\x37\x24\x32')]=_0x3272a3(0x292,'\x55\x4e\x4a\x79')+_0x3272a3(0x1a1,'\x35\x6f\x58\x36');const _0x13b3c4=_0x53e385;if(_0x13b3c4[_0x3272a3(0x3e0,'\x77\x31\x4b\x6f')](_0x5b0359,!_0x252d5d))return{'\x73\x74\x61\x74\x75\x73':_0x13b3c4[_0x3272a3(0x542,'\x31\x77\x33\x38')],'\x73\x63\x6f\x72\x65':0.85,'\x6e\x6f\x74\x65':_0x3272a3(0x22f,'\x4b\x79\x35\x77')+_0x3272a3(0x364,'\x78\x38\x5e\x36')};if(_0x13b3c4[_0x3272a3(0x5ff,'\x5b\x7a\x6f\x41')](_0x5b0359,_0x252d5d))return{'\x73\x74\x61\x74\x75\x73':_0x13b3c4[_0x3272a3(0x3fb,'\x58\x45\x24\x5d')],'\x73\x63\x6f\x72\x65':0.2,'\x6e\x6f\x74\x65':_0x13b3c4[_0x3272a3(0x305,'\x78\x30\x59\x23')]};if(_0x13b3c4[_0x3272a3(0x22e,'\x31\x72\x5d\x55')](!_0x5b0359,_0x252d5d))return{'\x73\x74\x61\x74\x75\x73':_0x13b3c4[_0x3272a3(0x161,'\x79\x2a\x55\x2a')],'\x73\x63\x6f\x72\x65':0.15,'\x6e\x6f\x74\x65':_0x3272a3(0x14d,'\x41\x6f\x6d\x77')+'\x72\x5f\x61\x70\x70\x65\x61\x72'+'\x65\x64'};const _0x58675d={};return _0x58675d[_0x3272a3(0x6ea,'\x4b\x79\x35\x77')]=_0x13b3c4[_0x3272a3(0x6cc,'\x35\x6f\x58\x36')],_0x58675d[_0x3272a3(0x3e8,'\x31\x77\x33\x38')]=0.6,_0x58675d[_0x3272a3(0x2b1,'\x26\x50\x33\x62')]=_0x13b3c4[_0x3272a3(0x24d,'\x4b\x30\x57\x5b')],_0x58675d;}function _0x5bc894(_0xf94b02){const _0xb189cb=_0x59595f,_0x32c026={'\x6c\x79\x67\x53\x53':function(_0x570e81,_0x1847f2){return _0x570e81(_0x1847f2);}},_0x3545bf=_0x32c026[_0xb189cb(0x79f,'\x77\x74\x6a\x7a')](Number,_0xf94b02);if(!Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x3545bf))return 0x71b+-0x6e5+-0x36;return Math[_0xb189cb(0x5c6,'\x30\x6f\x64\x41')](0x1d23+-0x114f+0x1*-0xbd4,Math[_0xb189cb(0x56e,'\x6d\x78\x46\x74')](0x11d6+0x15b8+-0x278d,_0x3545bf));}function _0x19c55a(_0x321503){const _0x2b1244=_0x59595f,_0x30e299={'\x68\x68\x53\x45\x4b':function(_0x2b7474,_0x54d469){return _0x2b7474||_0x54d469;},'\x43\x6d\x59\x6b\x6c':_0x2b1244(0x4a0,'\x33\x37\x26\x37'),'\x64\x6f\x77\x4c\x72':'\x45\x76\x6f\x6c\x75\x74\x69\x6f'+_0x2b1244(0x5c1,'\x76\x4c\x5a\x40'),'\x71\x56\x76\x63\x72':function(_0x485327,_0x4d400a){return _0x485327===_0x4d400a;},'\x71\x74\x4c\x65\x55':'\x73\x75\x63\x63\x65\x73\x73','\x58\x42\x4a\x4b\x67':function(_0x17e2e8,_0xa00316){return _0x17e2e8(_0xa00316);},'\x79\x71\x58\x59\x78':function(_0x5d3534,_0x5dba45){return _0x5d3534==_0x5dba45;},'\x59\x5a\x58\x5a\x6e':function(_0x103769,_0x14a48d){return _0x103769>=_0x14a48d;},'\x4f\x5a\x4a\x70\x4f':function(_0x4125a5,_0x151069){return _0x4125a5!=_0x151069;},'\x69\x57\x69\x6f\x47':function(_0x30e116,_0x430135){return _0x30e116===_0x430135;},'\x68\x51\x51\x71\x55':_0x2b1244(0x580,'\x35\x6f\x58\x36')+_0x2b1244(0x4f7,'\x39\x48\x77\x39')+_0x2b1244(0x534,'\x39\x48\x77\x39')},_0x4c7622=String(_0x30e299['\x68\x68\x53\x45\x4b'](_0x321503,''));if(!_0x4c7622)return null;const _0x420bf6=_0x4c7622[_0x2b1244(0x642,'\x2a\x35\x6a\x39')]('\x0a')[_0x2b1244(0x726,'\x75\x37\x24\x32')](-(0x781+0x17*0x185+-0x28e4*0x1));for(let _0x125e9b=_0x420bf6[_0x2b1244(0x799,'\x49\x72\x4c\x4c')]-(0x1*-0x16a5+0x230e+0x634*-0x2);_0x125e9b>=0x182+-0xdf8+0x1d*0x6e;_0x125e9b--){const _0x433f5a=_0x420bf6[_0x125e9b][_0x2b1244(0x762,'\x33\x37\x26\x37')]();if(!_0x433f5a)continue;if(!_0x433f5a[_0x2b1244(0x539,'\x5a\x4e\x65\x58')](_0x30e299[_0x2b1244(0x1a4,'\x41\x6f\x6d\x77')])||!_0x433f5a[_0x2b1244(0x646,'\x33\x68\x77\x70')](_0x2b1244(0x388,'\x50\x30\x46\x57')+_0x2b1244(0x24a,'\x2a\x35\x6a\x39')))continue;try{const _0x1dc5d1=JSON[_0x2b1244(0x5e2,'\x35\x6f\x58\x36')](_0x433f5a);if(!_0x1dc5d1||_0x1dc5d1[_0x2b1244(0x3e1,'\x32\x43\x23\x6b')]!==_0x30e299[_0x2b1244(0x728,'\x6d\x78\x46\x74')])continue;const _0x3a65e4=_0x1dc5d1[_0x2b1244(0x62c,'\x78\x72\x50\x48')]&&_0x30e299[_0x2b1244(0x179,'\x75\x37\x24\x32')](typeof _0x1dc5d1[_0x2b1244(0x5b8,'\x26\x50\x33\x62')],_0x2b1244(0x600,'\x35\x6f\x58\x36'))?_0x1dc5d1[_0x2b1244(0x52a,'\x5b\x7a\x6f\x41')]:null;if(!_0x3a65e4)continue;const _0x26655a=_0x30e299['\x71\x56\x76\x63\x72'](_0x3a65e4['\x73\x74\x61\x74\x75\x73'],_0x30e299[_0x2b1244(0x72c,'\x41\x6f\x6d\x77')])||_0x30e299[_0x2b1244(0x494,'\x32\x43\x23\x6b')](_0x3a65e4[_0x2b1244(0x36e,'\x77\x2a\x69\x63')],_0x2b1244(0x1a6,'\x69\x79\x38\x63'))?_0x3a65e4[_0x2b1244(0x461,'\x33\x68\x77\x70')]:null,_0x50ba3d=Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x30e299[_0x2b1244(0x687,'\x79\x4d\x45\x6e')](Number,_0x3a65e4[_0x2b1244(0x5ad,'\x35\x6f\x58\x36')]))?_0x5bc894(_0x30e299['\x58\x42\x4a\x4b\x67'](Number,_0x3a65e4[_0x2b1244(0x1a2,'\x59\x38\x6c\x6d')])):null;if(!_0x26655a&&_0x30e299['\x79\x71\x58\x59\x78'](_0x50ba3d,null))continue;return{'\x73\x74\x61\x74\x75\x73':_0x26655a||(_0x50ba3d!=null&&_0x30e299[_0x2b1244(0x47d,'\x77\x28\x7a\x39')](_0x50ba3d,-0x4*0x84+-0x1e1*-0x3+-0x393+0.5)?_0x30e299[_0x2b1244(0x755,'\x39\x48\x77\x39')]:_0x2b1244(0x2ea,'\x49\x72\x4c\x4c')),'\x73\x63\x6f\x72\x65':_0x30e299[_0x2b1244(0x2a3,'\x32\x43\x23\x6b')](_0x50ba3d,null)?_0x50ba3d:_0x30e299[_0x2b1244(0x661,'\x68\x63\x62\x6a')](_0x26655a,_0x30e299[_0x2b1244(0x6d9,'\x79\x4d\x45\x6e')])?0xf1a*0x1+0xaf6*0x3+-0x4*0xbff+0.75:0x25b7*-0x1+0x324+0x35*0xa7+0.25,'\x6e\x6f\x74\x65':_0x30e299[_0x2b1244(0x41a,'\x75\x48\x79\x40')]};}catch(_0x3451c9){continue;}}return null;}const _0x495cb3=new Set(['\x73\x74\x61\x62\x6c\x65\x5f\x73'+_0x59595f(0x51f,'\x6d\x78\x46\x74')+_0x59595f(0x4d1,'\x68\x63\x62\x6a'),_0x59595f(0x2e5,'\x76\x54\x52\x77')+_0x59595f(0x569,'\x2a\x35\x6a\x39'),_0x59595f(0x33e,'\x75\x48\x79\x40')+_0x59595f(0x530,'\x69\x79\x38\x63')+_0x59595f(0x601,'\x38\x62\x4a\x6d'),_0x59595f(0x626,'\x79\x4d\x45\x6e')+_0x59595f(0x375,'\x2a\x35\x6a\x39')+'\x74\x65',_0x59595f(0x241,'\x59\x38\x6c\x6d')+_0x59595f(0x1f1,'\x5b\x7a\x6f\x41')+_0x59595f(0x150,'\x49\x72\x4c\x4c')+'\x64']);function _0x1a1d2b({baselineObserved:_0xd42044,currentObserved:_0x21c177,signals:_0x37facb}){const _0x3c5894=_0x59595f,_0x4a48ba={'\x50\x55\x45\x6d\x67':function(_0x1f5270,_0x956331){return _0x1f5270(_0x956331);},'\x65\x69\x74\x4b\x42':function(_0x2e2c2c,_0x175c57){return _0x2e2c2c(_0x175c57);},'\x45\x46\x68\x72\x54':function(_0x21979f,_0x190be5,_0x4bddf9){return _0x21979f(_0x190be5,_0x4bddf9);},'\x66\x55\x6c\x53\x4d':function(_0x1268a7){return _0x1268a7();},'\x4d\x6f\x6e\x56\x62':_0x3c5894(0x143,'\x45\x72\x73\x51')+'\x63\x65\x5f\x65\x64\x67\x65','\x4e\x6e\x71\x56\x64':function(_0x4dc860,_0x1426b7){return _0x4dc860||_0x1426b7;},'\x4f\x42\x76\x56\x79':function(_0x4d94f9,_0x6f2b24){return _0x4d94f9(_0x6f2b24);},'\x4f\x68\x53\x4d\x6e':_0x3c5894(0x65e,'\x4b\x30\x57\x5b'),'\x57\x5a\x46\x4a\x69':_0x3c5894(0x54a,'\x58\x45\x24\x5d'),'\x79\x48\x51\x52\x47':function(_0x2eca5b,_0x5e0993){return _0x2eca5b-_0x5e0993;},'\x67\x68\x6a\x75\x52':function(_0x1cf73d,_0x465f6c){return _0x1cf73d>=_0x465f6c;},'\x67\x62\x6e\x75\x74':function(_0x3f5a42,_0x5b7c92){return _0x3f5a42<_0x5b7c92;},'\x54\x75\x62\x64\x6e':function(_0x1866af,_0x31d471){return _0x1866af===_0x31d471;},'\x61\x55\x73\x77\x64':_0x3c5894(0x660,'\x79\x4d\x45\x6e'),'\x77\x65\x64\x4a\x51':function(_0x5caf15,_0x2e22e2){return _0x5caf15>=_0x2e22e2;},'\x53\x59\x67\x67\x48':function(_0x195bd9,_0x3abd9d){return _0x195bd9-_0x3abd9d;},'\x79\x53\x6f\x66\x68':function(_0x2cee47,_0x2fd5d3){return _0x2cee47/_0x2fd5d3;},'\x5a\x72\x43\x6d\x71':function(_0x2ec50d,_0x2ded2f){return _0x2ec50d*_0x2ded2f;},'\x78\x4b\x53\x76\x55':function(_0x137547,_0x509882){return _0x137547===_0x509882;},'\x4a\x43\x69\x6f\x4a':_0x3c5894(0x775,'\x56\x75\x48\x62'),'\x71\x70\x74\x54\x42':_0x3c5894(0x4db,'\x5b\x7a\x6f\x41')+_0x3c5894(0x12f,'\x4d\x57\x74\x26')+'\x74\x3a','\x44\x41\x5a\x57\x49':function(_0x1e222d,_0x422ea6){return _0x1e222d(_0x422ea6);},'\x78\x53\x41\x62\x4a':function(_0x261639,_0x343217){return _0x261639>_0x343217;},'\x71\x74\x4b\x51\x48':function(_0x403e0e,_0x34116f){return _0x403e0e*_0x34116f;},'\x73\x6f\x76\x43\x6e':function(_0x4e1dcc,_0x316633){return _0x4e1dcc(_0x316633);},'\x47\x55\x70\x6a\x62':function(_0x280690,_0x129df0){return _0x280690>=_0x129df0;},'\x49\x57\x6d\x47\x64':function(_0x2071d9,_0x5272c6){return _0x2071d9<_0x5272c6;},'\x65\x43\x6f\x47\x56':function(_0x114425,_0x167adf){return _0x114425-_0x167adf;}};let _0x2e44bd=0x785+0x26*0x11+-0xa0b;const _0x107d33=Array[_0x3c5894(0x329,'\x47\x78\x79\x65')](_0x37facb)?_0x37facb:[],_0x2c0832=_0xd42044&&Number[_0x3c5894(0x5aa,'\x45\x72\x73\x51')](_0x4a48ba[_0x3c5894(0x6bd,'\x41\x6f\x6d\x77')](Number,_0xd42044[_0x3c5894(0x1d0,'\x78\x30\x59\x23')+'\x6f\x75\x6e\x74']))?_0x4a48ba[_0x3c5894(0x77b,'\x77\x31\x4b\x6f')](Number,_0xd42044[_0x3c5894(0x58f,'\x45\x72\x73\x51')+_0x3c5894(0x5af,'\x77\x2a\x69\x63')]):-0x1*-0x15dd+0x1*-0x262d+0x1050,_0x49479a=_0x107d33['\x66\x69\x6c\x74\x65\x72'](function(_0x184615){const _0x72f201=_0x3c5894;return!_0x495cb3[_0x72f201(0x71f,'\x4b\x30\x57\x5b')](_0x4a48ba[_0x72f201(0x357,'\x33\x68\x30\x5d')](String,_0x184615));});if(_0x4a48ba[_0x3c5894(0x15f,'\x68\x63\x62\x6a')](_0x49479a[_0x3c5894(0x37d,'\x77\x2a\x69\x63')],0x241e+0x2a1*0x5+-0x3143)&&_0x4a48ba['\x78\x53\x41\x62\x4a'](_0x107d33[_0x3c5894(0x4a9,'\x32\x4e\x4a\x4d')],-0x1bd3+-0x10ef+0x2cc2)){const _0x22d4ec=_0x4a48ba[_0x3c5894(0x11e,'\x5b\x7a\x6f\x41')](_0x49479a[_0x3c5894(0x799,'\x49\x72\x4c\x4c')],_0x107d33['\x6c\x65\x6e\x67\x74\x68']);_0x2e44bd+=Math[_0x3c5894(0x1f9,'\x78\x30\x59\x23')](-0x7d3+0x1*0x5de+-0x3*-0xa7+0.08,_0x4a48ba[_0x3c5894(0x27c,'\x33\x68\x30\x5d')](_0x22d4ec,-0x784+-0x3*0x1cb+0xce5+0.08));}try{const _0x4b2a33=_0x4a48ba[_0x3c5894(0x623,'\x38\x62\x4a\x6d')](_0x38fcd2,-0x90a+-0x112d*0x1+0x1a69),_0x5e7ef7=[];for(let _0x49cb92=_0x4b2a33[_0x3c5894(0x1df,'\x38\x62\x4a\x6d')]-(-0x1*-0xd7c+-0x10e0+-0x1*-0x365);_0x4a48ba[_0x3c5894(0x790,'\x77\x2a\x69\x63')](_0x49cb92,-0x101f+0x153c*-0x1+0x1*0x255b)&&_0x4a48ba[_0x3c5894(0x369,'\x78\x38\x5e\x36')](_0x5e7ef7['\x6c\x65\x6e\x67\x74\x68'],0x2*0x217+0x607*-0x3+0x37b*0x4);_0x49cb92--){if(_0x4a48ba[_0x3c5894(0x531,'\x56\x75\x48\x62')]('\x66\x70\x4c\x54\x4c',_0x3c5894(0x14b,'\x77\x2a\x69\x63'))){const _0x5013a5=_0x4b2a33[_0x49cb92];if(_0x5013a5&&_0x5013a5[_0x3c5894(0x5fa,'\x58\x45\x24\x5d')]===_0x4a48ba[_0x3c5894(0x440,'\x56\x79\x47\x74')]&&_0x5013a5[_0x3c5894(0x660,'\x79\x4d\x45\x6e')])_0x5e7ef7[_0x3c5894(0x40f,'\x50\x30\x46\x57')](_0x5013a5[_0x3c5894(0x3cb,'\x39\x29\x37\x66')][_0x3c5894(0x444,'\x59\x28\x5e\x71')]);}else return null;}if(_0x5e7ef7[_0x3c5894(0x3ef,'\x2a\x35\x6a\x39')]>=-0x3*-0xc92+0x11*-0x1d+-0x23c7){const _0x51e9d8=_0x5e7ef7[_0x3c5894(0x71e,'\x33\x72\x78\x29')](function(_0x366186){const _0x536e3d=_0x3c5894,_0x5e63b3={'\x76\x44\x68\x4b\x71':function(_0x5acb7e,_0x287b84){const _0x2c2cbd=_0x9c42;return _0x4a48ba[_0x2c2cbd(0x6b2,'\x79\x2a\x55\x2a')](_0x5acb7e,_0x287b84);},'\x4a\x48\x4e\x74\x55':function(_0x4170f2,_0x201510,_0xcdd075){const _0x2e769c=_0x9c42;return _0x4a48ba[_0x2e769c(0x33d,'\x5b\x7a\x6f\x41')](_0x4170f2,_0x201510,_0xcdd075);},'\x70\x58\x6f\x62\x41':function(_0x34805c){const _0x43a91a=_0x9c42;return _0x4a48ba[_0x43a91a(0x302,'\x5a\x4e\x65\x58')](_0x34805c);},'\x72\x72\x57\x43\x57':_0x536e3d(0x629,'\x5b\x7a\x6f\x41')+'\x61\x70\x68\x45\x76\x65\x6e\x74','\x75\x70\x71\x42\x74':_0x4a48ba[_0x536e3d(0x242,'\x41\x6f\x6d\x77')],'\x6e\x43\x56\x5a\x4c':function(_0x193df4,_0x26b70e){const _0x2cb3b6=_0x536e3d;return _0x4a48ba[_0x2cb3b6(0x183,'\x33\x72\x78\x29')](_0x193df4,_0x26b70e);},'\x64\x64\x42\x6d\x65':function(_0x1a2a14,_0x5b419b){const _0x146dae=_0x536e3d;return _0x4a48ba[_0x146dae(0x6f1,'\x5b\x7a\x6f\x41')](_0x1a2a14,_0x5b419b);},'\x4e\x4c\x59\x6a\x6f':function(_0x4b6563,_0x1f70a4){const _0x1a7dce=_0x536e3d;return _0x4a48ba[_0x1a7dce(0x1a3,'\x31\x72\x5d\x55')](_0x4b6563,_0x1f70a4);},'\x5a\x49\x50\x51\x4f':function(_0x1c0bd9,_0x2dcea4){const _0x50d7aa=_0x536e3d;return _0x4a48ba[_0x50d7aa(0x77f,'\x59\x28\x5e\x71')](_0x1c0bd9,_0x2dcea4);}};if(_0x4a48ba[_0x536e3d(0x692,'\x33\x68\x77\x70')]===_0x4a48ba[_0x536e3d(0x711,'\x32\x43\x23\x6b')])return _0x366186===_0x4a48ba[_0x536e3d(0x509,'\x30\x6f\x64\x41')];else{const _0x385964=_0x5e63b3[_0x536e3d(0x340,'\x74\x57\x51\x63')](_0x490f4d,0x2237*0x1+0x17*0x23+-0x3d*0x7c),_0x2407d4=_0xa79dda(_0x385964),_0x20ec25=_0x4b2e70+'\x3a\x3a'+_0x9aad61,_0x255845={};_0x255845['\x73\x75\x63\x63\x65\x73\x73']=0x0,_0x255845[_0x536e3d(0x51d,'\x38\x62\x4a\x6d')]=0x0,_0x255845[_0x536e3d(0x614,'\x56\x79\x47\x74')]=null;const _0x3857b0=_0x2407d4[_0x536e3d(0x1aa,'\x56\x79\x47\x74')](_0x20ec25)||_0x255845,_0x36a8be={};_0x36a8be[_0x536e3d(0x399,'\x68\x63\x62\x6a')+_0x536e3d(0x311,'\x6d\x78\x46\x74')]=_0x53870a;const _0x434cba=_0x5e63b3[_0x536e3d(0x3ac,'\x31\x77\x33\x38')](_0x4e466d,_0x3857b0,_0x36a8be),_0x442aea=_0x5e63b3[_0x536e3d(0x46e,'\x77\x2a\x69\x63')](_0x1b7ef7),_0x5023e4={};return _0x5023e4[_0x536e3d(0x450,'\x26\x50\x33\x62')+'\x65\x79']=_0x5a931b,_0x5023e4['\x67\x65\x6e\x65\x5f\x69\x64']=_0x2cfe66,{'\x74\x79\x70\x65':_0x5e63b3[_0x536e3d(0x2f2,'\x30\x6f\x64\x41')],'\x6b\x69\x6e\x64':_0x5e63b3[_0x536e3d(0x6b9,'\x56\x75\x48\x62')],'\x69\x64':_0x536e3d(0x5ce,'\x5a\x4e\x65\x58')+_0xc027db[_0x536e3d(0x395,'\x59\x28\x5e\x71')]()+'\x5f'+_0xa59cad(_0xdba6a7+'\x7c'+_0x49dc79+(_0x536e3d(0x571,'\x77\x74\x6a\x7a')+'\x6e\x63\x65\x7c')+_0x442aea),'\x74\x73':_0x442aea,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0xdee846,'\x73\x69\x67\x6e\x61\x6c\x73':_0x540763[_0x536e3d(0x4a2,'\x56\x79\x47\x74')](_0x11e044)?_0x50a9b4:[]},'\x67\x65\x6e\x65':{'\x69\x64':_0x15e4d2,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x5e63b3[_0x536e3d(0x612,'\x33\x68\x30\x5d')](_0x451807,null)},'\x65\x64\x67\x65':_0x5023e4,'\x73\x74\x61\x74\x73':{'\x73\x75\x63\x63\x65\x73\x73':_0x5e63b3[_0x536e3d(0x1d6,'\x41\x6f\x6d\x77')](_0x319d62,_0x3857b0[_0x536e3d(0x3a7,'\x41\x6f\x6d\x77')])||0x1782+-0x1dd8+0x32b*0x2,'\x66\x61\x69\x6c':_0x5e63b3[_0x536e3d(0x5a1,'\x31\x77\x33\x38')](_0x114502,_0x3857b0[_0x536e3d(0x3b7,'\x78\x30\x59\x23')])||-0x59*-0x31+0x1*-0x54d+0x2*-0x5de,'\x61\x74\x74\x65\x6d\x70\x74\x73':_0x5e63b3[_0x536e3d(0x13a,'\x59\x28\x5e\x71')](_0x3516d3,_0x434cba[_0x536e3d(0x463,'\x33\x68\x77\x70')])||0x1840+-0xc*-0x13a+-0x26f8,'\x70':_0x434cba['\x70'],'\x64\x65\x63\x61\x79\x5f\x77\x65\x69\x67\x68\x74':_0x434cba['\x77'],'\x76\x61\x6c\x75\x65':_0x434cba[_0x536e3d(0x5c8,'\x59\x38\x6c\x6d')],'\x68\x61\x6c\x66\x5f\x6c\x69\x66\x65\x5f\x64\x61\x79\x73':_0x5569e3,'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x442aea},'\x64\x65\x72\x69\x76\x65\x64\x5f\x66\x72\x6f\x6d':{'\x6f\x75\x74\x63\x6f\x6d\x65\x5f\x65\x76\x65\x6e\x74\x5f\x69\x64':_0x5e63b3[_0x536e3d(0x545,'\x2a\x35\x6a\x39')](_0x2f383d,null)}};}})[_0x3c5894(0x76e,'\x76\x4c\x5a\x40')],_0x5446f4=_0x4a48ba[_0x3c5894(0x1ed,'\x35\x6f\x58\x36')](_0x4a48ba[_0x3c5894(0x79b,'\x59\x28\x5e\x71')](_0x51e9d8,_0x5e7ef7[_0x3c5894(0x3ef,'\x2a\x35\x6a\x39')]),-0xb81+0xc73*-0x1+0x17f4+0.5);_0x2e44bd+=Math[_0x3c5894(0x589,'\x33\x37\x26\x37')](-(-0x1*0xf8d+-0xd*0x2f+0x11f0+0.06),Math[_0x3c5894(0x194,'\x33\x72\x78\x29')](0x1*-0xcb3+-0x10*-0xef+0x23d*-0x1+0.06,_0x4a48ba[_0x3c5894(0x2d6,'\x31\x72\x5d\x55')](_0x5446f4,0x2f*-0x1e+-0x1f3c*0x1+-0x125f*-0x2+0.12)));}}catch(_0x17b5ea){}const _0x2a3a45=_0x107d33[_0x3c5894(0x35e,'\x4b\x79\x35\x77')](function(_0x2abc85){const _0x1d1bb9=_0x3c5894;if(_0x4a48ba[_0x1d1bb9(0x42a,'\x39\x29\x37\x66')](_0x4a48ba[_0x1d1bb9(0x3df,'\x33\x37\x26\x37')],_0x1d1bb9(0x41c,'\x79\x4d\x45\x6e')))return _0x4a48ba['\x65\x69\x74\x4b\x42'](String,_0x2abc85)[_0x1d1bb9(0x68c,'\x4b\x79\x35\x77')+'\x74\x68'](_0x4a48ba[_0x1d1bb9(0x524,'\x39\x29\x37\x66')]);else{const _0x431bc9={};_0x431bc9[_0x1d1bb9(0x1d2,'\x77\x28\x7a\x39')]=_0x4a48ba[_0x1d1bb9(0x2f4,'\x4b\x30\x57\x5b')];const _0x407091=_0x431bc9,_0xedc3f4=_0x4a48ba[_0x1d1bb9(0x6cb,'\x75\x48\x79\x40')](_0x14efad,0x1c33*0x1+-0x133b+-0x8c6*0x1),_0x14613b=[];for(let _0xa76484=_0x4a48ba[_0x1d1bb9(0x220,'\x31\x77\x33\x38')](_0xedc3f4[_0x1d1bb9(0x20d,'\x79\x4d\x45\x6e')],0xf1e+0x36d*0x3+-0x1964);_0x4a48ba[_0x1d1bb9(0x447,'\x41\x40\x23\x4c')](_0xa76484,-0x20*0x1e+-0x2b2+-0x6e*-0xf)&&_0x4a48ba[_0x1d1bb9(0x27e,'\x6b\x5d\x25\x67')](_0x14613b['\x6c\x65\x6e\x67\x74\x68'],-0x1be5+0x225c+-0x672);_0xa76484--){const _0x2098d0=_0xedc3f4[_0xa76484];if(_0x2098d0&&_0x4a48ba[_0x1d1bb9(0x501,'\x39\x29\x37\x66')](_0x2098d0[_0x1d1bb9(0x15c,'\x56\x79\x47\x74')],_0x4a48ba[_0x1d1bb9(0x3cd,'\x77\x74\x6a\x7a')])&&_0x2098d0['\x6f\x75\x74\x63\x6f\x6d\x65'])_0x14613b['\x70\x75\x73\x68'](_0x2098d0[_0x1d1bb9(0x660,'\x79\x4d\x45\x6e')]['\x73\x74\x61\x74\x75\x73']);}if(_0x4a48ba[_0x1d1bb9(0x776,'\x39\x29\x37\x66')](_0x14613b[_0x1d1bb9(0x3b8,'\x41\x40\x23\x4c')],0x1de*0x3+-0x857+0x2bf)){const _0xb9df92=_0x14613b[_0x1d1bb9(0x359,'\x2a\x35\x6a\x39')](function(_0x5cd3be){const _0x506978=_0x1d1bb9;return _0x5cd3be===_0x407091[_0x506978(0x6c9,'\x33\x68\x77\x70')];})[_0x1d1bb9(0x425,'\x33\x68\x30\x5d')],_0x42f9a9=_0x4a48ba[_0x1d1bb9(0x170,'\x5b\x7a\x6f\x41')](_0x4a48ba[_0x1d1bb9(0x308,'\x39\x48\x77\x39')](_0xb9df92,_0x14613b[_0x1d1bb9(0x2b2,'\x4d\x57\x74\x26')]),-0xc*-0xca+-0x1b4e+0x11d6+0.5);_0x1f833d+=_0x43f8b3[_0x1d1bb9(0x5c6,'\x30\x6f\x64\x41')](-(0x162f+-0x5*0x69+-0x1422+0.06),_0x96487d[_0x1d1bb9(0x2f8,'\x75\x48\x79\x40')](-0x1703*-0x1+-0x1*0x5f9+-0x110a+0.06,_0x4a48ba[_0x1d1bb9(0x124,'\x31\x72\x5d\x55')](_0x42f9a9,0x2149+0x1*-0x3b5+0x1d94*-0x1+0.12)));}}});if(_0x2a3a45)_0x2e44bd+=0x45f*-0x5+-0x69*0x32+-0xf1*-0x2d+0.04;return{'\x62\x6f\x6f\x73\x74':Math[_0x3c5894(0x5c6,'\x30\x6f\x64\x41')](-(0x14e9+0x1599+-0x2a82+0.1),Math[_0x3c5894(0x423,'\x32\x43\x23\x6b')](0xc77*-0x3+0x77+0x24ee+0.1,_0x2e44bd)),'\x73\x69\x67\x6e\x61\x6c\x5f\x63\x6c\x61\x72\x69\x74\x79':_0x107d33[_0x3c5894(0x3b8,'\x41\x40\x23\x4c')]>0x18d6+0x4d2*-0x1+0x4*-0x501?_0x49479a[_0x3c5894(0x479,'\x33\x72\x78\x29')]/_0x107d33[_0x3c5894(0x6d0,'\x75\x37\x24\x32')]:-0x261d+-0x1ffa+-0x4617*-0x1,'\x74\x72\x61\x6a\x65\x63\x74\x6f\x72\x79\x5f\x74\x72\x65\x6e\x64':_0x2e44bd,'\x66\x72\x6f\x6e\x74\x69\x65\x72\x5f\x74\x6f\x75\x63\x68\x65\x64':_0x2a3a45};}function _0x795863({prevHadError:_0x493746,currentHasError:_0x1b99ef,baselineObserved:_0x3f0554,currentObserved:_0x3eb9ad,signals:_0x2074f5}){const _0x227bf7=_0x59595f,_0x306b8b={'\x4a\x4a\x6f\x66\x47':function(_0x288d70,_0x28e6a0){return _0x288d70(_0x28e6a0);},'\x4a\x61\x51\x53\x79':function(_0xa0eb32,_0x15d46f){return _0xa0eb32(_0x15d46f);},'\x68\x59\x53\x5a\x6e':function(_0x21a891,_0x1c0f4e){return _0x21a891(_0x1c0f4e);},'\x4f\x55\x41\x53\x79':function(_0x4ae4f4,_0x57049d){return _0x4ae4f4-_0x57049d;},'\x79\x66\x4f\x62\x55':function(_0x4b0d32,_0x1d76f3){return _0x4b0d32/_0x1d76f3;},'\x41\x67\x52\x74\x7a':function(_0x50b9f1,_0x112862){return _0x50b9f1!=_0x112862;},'\x42\x77\x78\x50\x44':function(_0x26e04a,_0x1f6d32){return _0x26e04a!=_0x1f6d32;},'\x4e\x77\x6e\x54\x6b':function(_0x4277ea,_0x5155ba){return _0x4277ea*_0x5155ba;},'\x41\x52\x5a\x6a\x66':function(_0x46b3e8,_0x10befe){return _0x46b3e8*_0x10befe;}},_0xecae2=_0x3eb9ad&&_0x3eb9ad['\x65\x76\x69\x64\x65\x6e\x63\x65']&&(_0x3eb9ad[_0x227bf7(0x521,'\x26\x50\x33\x62')][_0x227bf7(0x65c,'\x78\x72\x50\x48')+_0x227bf7(0x766,'\x56\x79\x47\x74')+_0x227bf7(0x74b,'\x38\x62\x4a\x6d')]||_0x3eb9ad['\x65\x76\x69\x64\x65\x6e\x63\x65'][_0x227bf7(0x763,'\x2a\x35\x6a\x39')+_0x227bf7(0x34e,'\x69\x79\x38\x63')])?_0x3eb9ad[_0x227bf7(0x700,'\x39\x29\x37\x66')]:null,_0x1e4fbe=_0xecae2?String(_0xecae2['\x72\x65\x63\x65\x6e\x74\x5f\x73'+_0x227bf7(0x2e7,'\x56\x75\x48\x62')+'\x61\x69\x6c']||'')+'\x0a'+_0x306b8b[_0x227bf7(0x61d,'\x31\x77\x33\x38')](String,_0xecae2[_0x227bf7(0x55c,'\x77\x28\x7a\x39')+_0x227bf7(0x11c,'\x33\x68\x30\x5d')]||''):'',_0x34ec61=_0x306b8b[_0x227bf7(0x61d,'\x31\x77\x33\x38')](_0x19c55a,_0x1e4fbe);if(_0x34ec61)return _0x34ec61;const _0x452e8f={};_0x452e8f['\x70\x72\x65\x76\x48\x61\x64\x45'+'\x72\x72\x6f\x72']=_0x493746,_0x452e8f[_0x227bf7(0x426,'\x79\x4d\x45\x6e')+_0x227bf7(0x6a1,'\x49\x72\x4c\x4c')]=_0x1b99ef;const _0x579e2c=_0x306b8b[_0x227bf7(0x38b,'\x31\x72\x5d\x55')](_0x45fb8e,_0x452e8f),_0x4be5b7=_0x3f0554&&Number[_0x227bf7(0x67b,'\x59\x38\x6c\x6d')](_0x306b8b[_0x227bf7(0x6d3,'\x50\x30\x46\x57')](Number,_0x3f0554['\x72\x65\x63\x65\x6e\x74\x5f\x65'+_0x227bf7(0x732,'\x6b\x5d\x25\x67')+'\x6e\x74']))?_0x306b8b['\x4a\x4a\x6f\x66\x47'](Number,_0x3f0554[_0x227bf7(0x52c,'\x33\x72\x78\x29')+_0x227bf7(0x4f8,'\x56\x79\x47\x74')+'\x6e\x74']):null,_0xdc6c4a=_0x3eb9ad&&Number[_0x227bf7(0x219,'\x33\x37\x26\x37')](_0x306b8b[_0x227bf7(0x474,'\x38\x62\x4a\x6d')](Number,_0x3eb9ad[_0x227bf7(0x715,'\x56\x79\x47\x74')+_0x227bf7(0x779,'\x68\x63\x62\x6a')+'\x6e\x74']))?_0x306b8b[_0x227bf7(0x69a,'\x5a\x4e\x65\x58')](Number,_0x3eb9ad[_0x227bf7(0x43b,'\x58\x45\x24\x5d')+_0x227bf7(0x37e,'\x30\x6f\x64\x41')+'\x6e\x74']):null;let _0x38fe41=_0x579e2c[_0x227bf7(0x604,'\x33\x37\x26\x37')];if(_0x4be5b7!=null&&_0xdc6c4a!=null){const _0x1c686f=_0x306b8b[_0x227bf7(0x276,'\x41\x40\x23\x4c')](_0x4be5b7,_0xdc6c4a);_0x38fe41+=Math[_0x227bf7(0x35b,'\x26\x50\x33\x62')](-(0x1ff8+-0x15*0x57+-0x18d5+0.12),Math[_0x227bf7(0x476,'\x41\x6f\x6d\x77')](0x48a*-0x5+-0xce2+-0x1*-0x2394+0.12,_0x306b8b[_0x227bf7(0x582,'\x76\x4c\x5a\x40')](_0x1c686f,0x5*0x73d+0x9d2+-0x2dd1)));}const _0x564f7b=_0x3f0554&&Number[_0x227bf7(0x4cd,'\x59\x28\x5e\x71')](_0x306b8b['\x4a\x4a\x6f\x66\x47'](Number,_0x3f0554[_0x227bf7(0x3db,'\x4b\x30\x57\x5b')]))?_0x306b8b[_0x227bf7(0x43c,'\x6b\x5d\x25\x67')](Number,_0x3f0554[_0x227bf7(0x684,'\x77\x28\x7a\x39')]):null,_0x57980b=_0x3eb9ad&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x306b8b[_0x227bf7(0x495,'\x59\x28\x5e\x71')](Number,_0x3eb9ad[_0x227bf7(0x528,'\x50\x30\x46\x57')]))?_0x306b8b['\x4a\x4a\x6f\x66\x47'](Number,_0x3eb9ad['\x73\x63\x61\x6e\x5f\x6d\x73']):null;if(_0x306b8b['\x41\x67\x52\x74\x7a'](_0x564f7b,null)&&_0x306b8b[_0x227bf7(0x59e,'\x33\x68\x30\x5d')](_0x57980b,null)&&_0x564f7b>-0x1751+-0x358+0x8e3*0x3){const _0x12a412=_0x306b8b[_0x227bf7(0x408,'\x74\x57\x51\x63')](_0x306b8b[_0x227bf7(0x207,'\x38\x62\x4a\x6d')](_0x564f7b,_0x57980b),_0x564f7b);_0x38fe41+=Math[_0x227bf7(0x720,'\x6d\x78\x46\x74')](-(-0x580+0x16b4*0x1+-0x2de*0x6+0.06),Math[_0x227bf7(0x70e,'\x33\x68\x77\x70')](-0xff*-0x1b+-0x1*-0x406+-0x1eeb+0.06,_0x12a412));}const _0x2d0e6e={};_0x2d0e6e['\x62\x61\x73\x65\x6c\x69\x6e\x65'+'\x4f\x62\x73\x65\x72\x76\x65\x64']=_0x3f0554,_0x2d0e6e['\x63\x75\x72\x72\x65\x6e\x74\x4f'+_0x227bf7(0x3af,'\x41\x6f\x6d\x77')]=_0x3eb9ad,_0x2d0e6e['\x73\x69\x67\x6e\x61\x6c\x73']=_0x2074f5;const _0xf48a88=_0x1a1d2b(_0x2d0e6e);return _0x38fe41+=_0xf48a88['\x62\x6f\x6f\x73\x74'],{'\x73\x74\x61\x74\x75\x73':_0x579e2c['\x73\x74\x61\x74\x75\x73'],'\x73\x63\x6f\x72\x65':_0x306b8b[_0x227bf7(0x695,'\x58\x45\x24\x5d')](_0x5bc894,_0x38fe41),'\x6e\x6f\x74\x65':_0x579e2c[_0x227bf7(0x1de,'\x6d\x78\x46\x74')]+(_0x227bf7(0x18b,'\x4b\x79\x35\x77')+_0x227bf7(0x4d8,'\x39\x29\x37\x66')+'\x7c\x70\x72\x65\x64\x69\x63\x74'+_0x227bf7(0x638,'\x33\x37\x26\x37')),'\x70\x72\x65\x64\x69\x63\x74\x69\x76\x65':{'\x73\x69\x67\x6e\x61\x6c\x5f\x63\x6c\x61\x72\x69\x74\x79':_0x306b8b[_0x227bf7(0x6f6,'\x4b\x30\x57\x5b')](Math[_0x227bf7(0x2e4,'\x32\x4e\x4a\x4d')](_0x306b8b[_0x227bf7(0x6ab,'\x77\x74\x6a\x7a')](_0xf48a88[_0x227bf7(0x693,'\x47\x78\x79\x65')+_0x227bf7(0x411,'\x2a\x35\x6a\x39')],-0x1889+0x1907+-0x2*-0x1b5)),0x6f4*0x4+0x1749+-0xfbb*0x3),'\x74\x72\x61\x6a\x65\x63\x74\x6f\x72\x79\x5f\x74\x72\x65\x6e\x64':Math['\x72\x6f\x75\x6e\x64'](_0x306b8b[_0x227bf7(0x2bd,'\x77\x28\x7a\x39')](_0xf48a88[_0x227bf7(0x353,'\x77\x28\x7a\x39')+_0x227bf7(0x641,'\x4b\x30\x57\x5b')],0x117c+0x240f+-0x61*0x83))/(-0x1ae0+-0x33*-0x6d+0x911),'\x66\x72\x6f\x6e\x74\x69\x65\x72\x5f\x74\x6f\x75\x63\x68\x65\x64':_0xf48a88[_0x227bf7(0x152,'\x41\x6f\x6d\x77')+_0x227bf7(0x2cc,'\x41\x40\x23\x4c')]}};}function _0x466753({signalKey:_0x2dd32b,signals:_0x207d44,geneId:_0x321244,geneCategory:_0x27f07e,outcomeEventId:_0x5d0dfa,halfLifeDays:_0x2dc6e}){const _0x4239b7=_0x59595f,_0x254a47={'\x57\x65\x53\x5a\x65':function(_0x343d2d,_0x1e49d5){return _0x343d2d(_0x1e49d5);},'\x6c\x4c\x6c\x47\x57':function(_0x3a93cf,_0x3b7eae,_0x1fda70){return _0x3a93cf(_0x3b7eae,_0x1fda70);},'\x6d\x61\x63\x7a\x61':_0x4239b7(0x5e6,'\x77\x31\x4b\x6f')+'\x61\x70\x68\x45\x76\x65\x6e\x74','\x58\x69\x69\x76\x50':_0x4239b7(0x56f,'\x79\x2a\x55\x2a')+_0x4239b7(0x504,'\x6d\x78\x46\x74'),'\x49\x55\x6b\x4b\x45':function(_0x17fbb2,_0x594541){return _0x17fbb2||_0x594541;},'\x77\x63\x78\x76\x63':function(_0x37b53b,_0x2829f6){return _0x37b53b(_0x2829f6);}},_0x14777f=_0x254a47['\x57\x65\x53\x5a\x65'](_0x38fcd2,-0x1bb5+0x231a+0x6b),_0x107b5d=_0x254a47[_0x4239b7(0x6fc,'\x41\x6f\x6d\x77')](_0x4105e8,_0x14777f),_0x773a4c=_0x2dd32b+'\x3a\x3a'+_0x321244,_0x1a0946={};_0x1a0946['\x73\x75\x63\x63\x65\x73\x73']=0x0,_0x1a0946[_0x4239b7(0x5d0,'\x4b\x79\x35\x77')]=0x0,_0x1a0946[_0x4239b7(0x4ee,'\x75\x37\x24\x32')]=null;const _0x22e6a1=_0x107b5d[_0x4239b7(0x782,'\x59\x38\x6c\x6d')](_0x773a4c)||_0x1a0946,_0x2455d0={};_0x2455d0[_0x4239b7(0x50f,'\x31\x72\x5d\x55')+_0x4239b7(0x794,'\x41\x40\x23\x4c')]=_0x2dc6e;const _0x2f4c1d=_0x254a47[_0x4239b7(0x34b,'\x58\x45\x24\x5d')](_0x39799a,_0x22e6a1,_0x2455d0),_0x3d365f=_0x4a2a06();return{'\x74\x79\x70\x65':_0x254a47[_0x4239b7(0x599,'\x31\x77\x33\x38')],'\x6b\x69\x6e\x64':_0x254a47[_0x4239b7(0x5f8,'\x78\x30\x59\x23')],'\x69\x64':_0x4239b7(0x315,'\x35\x6f\x58\x36')+Date[_0x4239b7(0x206,'\x35\x6f\x58\x36')]()+'\x5f'+_0x31f261(_0x2dd32b+'\x7c'+_0x321244+(_0x4239b7(0x4ea,'\x77\x31\x4b\x6f')+_0x4239b7(0x173,'\x59\x38\x6c\x6d'))+_0x3d365f),'\x74\x73':_0x3d365f,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x2dd32b,'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x4239b7(0x5a2,'\x49\x72\x4c\x4c')](_0x207d44)?_0x207d44:[]},'\x67\x65\x6e\x65':{'\x69\x64':_0x321244,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x254a47[_0x4239b7(0x146,'\x33\x37\x26\x37')](_0x27f07e,null)},'\x65\x64\x67\x65':{'\x73\x69\x67\x6e\x61\x6c\x5f\x6b\x65\x79':_0x2dd32b,'\x67\x65\x6e\x65\x5f\x69\x64':_0x321244},'\x73\x74\x61\x74\x73':{'\x73\x75\x63\x63\x65\x73\x73':_0x254a47['\x77\x63\x78\x76\x63'](Number,_0x22e6a1[_0x4239b7(0x3bc,'\x75\x48\x79\x40')])||0x843+0x18a6+-0x20e9,'\x66\x61\x69\x6c':Number(_0x22e6a1[_0x4239b7(0x3d0,'\x32\x43\x23\x6b')])||-0x1c4f+0x2425+0x11*-0x76,'\x61\x74\x74\x65\x6d\x70\x74\x73':Number(_0x2f4c1d[_0x4239b7(0x20b,'\x6d\x78\x46\x74')])||-0x319*0x8+-0x565*0x2+0x2392,'\x70':_0x2f4c1d['\x70'],'\x64\x65\x63\x61\x79\x5f\x77\x65\x69\x67\x68\x74':_0x2f4c1d['\x77'],'\x76\x61\x6c\x75\x65':_0x2f4c1d['\x76\x61\x6c\x75\x65'],'\x68\x61\x6c\x66\x5f\x6c\x69\x66\x65\x5f\x64\x61\x79\x73':_0x2dc6e,'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x3d365f},'\x64\x65\x72\x69\x76\x65\x64\x5f\x66\x72\x6f\x6d':{'\x6f\x75\x74\x63\x6f\x6d\x65\x5f\x65\x76\x65\x6e\x74\x5f\x69\x64':_0x254a47[_0x4239b7(0x541,'\x76\x4c\x5a\x40')](_0x5d0dfa,null)}};}function _0x5eb00c({geneId:_0x2944c4,geneCategory:_0x2e3d30,outcomeEventId:_0x3a6108,halfLifeDays:_0x1f154d}){const _0x173193=_0x59595f,_0x36f750={'\x50\x54\x77\x56\x4e':function(_0xb08f45,_0x1dae90){return _0xb08f45(_0x1dae90);},'\x68\x48\x43\x6b\x69':function(_0x5150e1,_0x4f6375,_0x44cbe2){return _0x5150e1(_0x4f6375,_0x44cbe2);},'\x6b\x46\x57\x6c\x5a':_0x173193(0x513,'\x56\x79\x47\x74')+_0x173193(0x2a7,'\x33\x68\x77\x70'),'\x65\x7a\x50\x70\x66':_0x173193(0x3f1,'\x32\x43\x23\x6b')+'\x63\x65\x5f\x67\x65\x6e\x65\x5f'+_0x173193(0x214,'\x33\x68\x30\x5d'),'\x46\x43\x66\x53\x66':function(_0x13bd1e,_0x18b75f){return _0x13bd1e||_0x18b75f;},'\x55\x75\x58\x63\x6a':function(_0x40a2b9,_0xb75b18){return _0x40a2b9(_0xb75b18);}},_0x4e58a5=_0x38fcd2(0x239+-0x965+0xefc),_0x548ad8=_0x5edf0c(_0x4e58a5),_0x5ebb89={};_0x5ebb89[_0x173193(0x72f,'\x33\x72\x78\x29')]=0x0,_0x5ebb89[_0x173193(0x592,'\x69\x79\x38\x63')]=0x0,_0x5ebb89[_0x173193(0x1af,'\x49\x72\x4c\x4c')]=null;const _0x50b242=_0x548ad8[_0x173193(0x279,'\x55\x4e\x4a\x79')](_0x36f750[_0x173193(0x3d4,'\x39\x29\x37\x66')](String,_0x2944c4))||_0x5ebb89,_0xa536ae={};_0xa536ae[_0x173193(0x654,'\x4b\x79\x35\x77')+_0x173193(0x4c4,'\x33\x72\x78\x29')]=_0x1f154d;const _0x16c6ee=_0x36f750[_0x173193(0x71c,'\x74\x57\x51\x63')](_0x39799a,_0x50b242,_0xa536ae),_0x574735=_0x4a2a06();return{'\x74\x79\x70\x65':_0x36f750[_0x173193(0x5c5,'\x26\x50\x33\x62')],'\x6b\x69\x6e\x64':_0x36f750[_0x173193(0x401,'\x5b\x7a\x6f\x41')],'\x69\x64':_0x173193(0x4de,'\x75\x37\x24\x32')+Date[_0x173193(0x554,'\x78\x72\x50\x48')]()+'\x5f'+_0x31f261(_0x2944c4+(_0x173193(0x66e,'\x38\x62\x4a\x6d')+_0x173193(0x655,'\x69\x79\x38\x63')+_0x173193(0x4da,'\x26\x50\x33\x62')+'\x7c')+_0x574735),'\x74\x73':_0x574735,'\x67\x65\x6e\x65':{'\x69\x64':_0x36f750[_0x173193(0x576,'\x75\x48\x79\x40')](String,_0x2944c4),'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x36f750[_0x173193(0x189,'\x41\x6f\x6d\x77')](_0x2e3d30,null)},'\x65\x64\x67\x65':{'\x67\x65\x6e\x65\x5f\x69\x64':String(_0x2944c4)},'\x73\x74\x61\x74\x73':{'\x73\x75\x63\x63\x65\x73\x73':Number(_0x50b242['\x73\x75\x63\x63\x65\x73\x73'])||-0x635+0x1*0x219b+-0x1b66,'\x66\x61\x69\x6c':_0x36f750[_0x173193(0x3ab,'\x59\x28\x5e\x71')](Number,_0x50b242[_0x173193(0x613,'\x56\x75\x48\x62')])||0x23d1+0x89d*-0x2+-0x1*0x1297,'\x61\x74\x74\x65\x6d\x70\x74\x73':Number(_0x16c6ee[_0x173193(0x463,'\x33\x68\x77\x70')])||0x8df*-0x3+0x4ca*0x1+-0x1*-0x15d3,'\x70':_0x16c6ee['\x70'],'\x64\x65\x63\x61\x79\x5f\x77\x65\x69\x67\x68\x74':_0x16c6ee['\x77'],'\x76\x61\x6c\x75\x65':_0x16c6ee[_0x173193(0x59c,'\x33\x68\x77\x70')],'\x68\x61\x6c\x66\x5f\x6c\x69\x66\x65\x5f\x64\x61\x79\x73':_0x1f154d,'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x574735},'\x64\x65\x72\x69\x76\x65\x64\x5f\x66\x72\x6f\x6d':{'\x6f\x75\x74\x63\x6f\x6d\x65\x5f\x65\x76\x65\x6e\x74\x5f\x69\x64':_0x36f750[_0x173193(0x29b,'\x6d\x78\x46\x74')](_0x3a6108,null)}};}function _0x21c3d5({signals:_0x23f6f6,observations:_0x15e06e}){const _0x3c887a=_0x59595f,_0x214a05={'\x52\x4c\x4f\x59\x4b':function(_0x54dfb8,_0x4e0526){return _0x54dfb8(_0x4e0526);},'\x4a\x48\x66\x44\x57':_0x3c887a(0x53e,'\x50\x30\x46\x57'),'\x52\x77\x62\x6d\x6a':function(_0x3f9749,_0x3a27c3){return _0x3f9749(_0x3a27c3);},'\x64\x4b\x4e\x57\x75':function(_0x308b11,_0x5bd635){return _0x308b11(_0x5bd635);},'\x72\x50\x53\x55\x67':function(_0xd73cd3,_0x4105c1){return _0xd73cd3(_0x4105c1);},'\x61\x55\x77\x4a\x67':function(_0x2dfae3){return _0x2dfae3();},'\x47\x4b\x53\x51\x77':function(_0x244820,_0x3390e7,_0x233aa1){return _0x244820(_0x3390e7,_0x233aa1);},'\x48\x71\x53\x74\x64':function(_0x36ef9c,_0x1e1863){return _0x36ef9c(_0x1e1863);},'\x6d\x42\x53\x76\x6e':function(_0x2541bf,_0x33359c){return _0x2541bf(_0x33359c);},'\x59\x68\x54\x51\x6f':function(_0x1c8b8f,_0x6e0aa2){return _0x1c8b8f||_0x6e0aa2;},'\x70\x72\x48\x79\x67':function(_0x2e338b){return _0x2e338b();},'\x6d\x62\x50\x4d\x64':function(_0x42b7c8,_0x44bcac){return _0x42b7c8(_0x44bcac);},'\x43\x78\x64\x67\x74':_0x3c887a(0x5fe,'\x45\x72\x73\x51')+_0x3c887a(0x774,'\x75\x48\x79\x40'),'\x71\x6b\x68\x72\x6c':_0x3c887a(0x57a,'\x2a\x35\x6a\x39'),'\x54\x63\x47\x6b\x59':function(_0x5b0c95,_0x3f2f90){return _0x5b0c95(_0x3f2f90);},'\x4a\x70\x4f\x49\x54':function(_0x557a5b,_0x5eb044){return _0x557a5b(_0x5eb044);},'\x43\x77\x65\x57\x45':function(_0x746415,_0x8237e9){return _0x746415(_0x8237e9);},'\x55\x79\x4f\x66\x41':function(_0x59700d,_0x1df329){return _0x59700d===_0x1df329;},'\x79\x65\x6d\x4f\x75':_0x3c887a(0x3ed,'\x39\x48\x77\x39'),'\x6f\x49\x72\x4f\x66':function(_0x5e21a1,_0x1bc42f){return _0x5e21a1(_0x1bc42f);},'\x45\x4a\x75\x6e\x52':function(_0x2f69a9,_0x452863){return _0x2f69a9(_0x452863);},'\x6b\x63\x64\x4c\x76':function(_0x286e86,_0x579fc7){return _0x286e86(_0x579fc7);},'\x69\x69\x57\x79\x4f':function(_0x217e52,_0x5b38b4){return _0x217e52===_0x5b38b4;},'\x50\x53\x53\x6a\x4d':_0x3c887a(0x574,'\x6b\x5d\x25\x67'),'\x4d\x67\x69\x70\x5a':function(_0x417955,_0x38bf47){return _0x417955===_0x38bf47;},'\x49\x75\x4b\x77\x6c':function(_0x35651d,_0x7e0855){return _0x35651d(_0x7e0855);},'\x4f\x57\x41\x64\x4e':function(_0x1b1e34,_0x1b51c7){return _0x1b1e34(_0x1b51c7);},'\x57\x64\x77\x49\x76':function(_0x1289d2,_0x313d17,_0x3463cc){return _0x1289d2(_0x313d17,_0x3463cc);}},_0x20931d=_0x214a05[_0x3c887a(0x53a,'\x77\x2a\x69\x63')](_0x58d639),_0x5bf59d={};_0x5bf59d[_0x3c887a(0x777,'\x69\x79\x38\x63')+_0x3c887a(0x714,'\x77\x31\x4b\x6f')]=null;const _0x147502=_0x214a05[_0x3c887a(0x40a,'\x79\x4d\x45\x6e')](_0x50d1b0,_0x20931d,_0x5bf59d),_0xd70ea9=_0x147502&&_0x147502[_0x3c887a(0x4ed,'\x47\x78\x79\x65')+_0x3c887a(0x68f,'\x56\x75\x48\x62')]?_0x147502[_0x3c887a(0x174,'\x78\x38\x5e\x36')+_0x3c887a(0x647,'\x33\x72\x78\x29')]:null;if(!_0xd70ea9||!_0xd70ea9['\x61\x63\x74\x69\x6f\x6e\x5f\x69'+'\x64'])return null;if(_0xd70ea9[_0x3c887a(0x708,'\x4d\x57\x74\x26')+_0x3c887a(0x733,'\x39\x48\x77\x39')])return null;const _0x4bacf3=_0x214a05[_0x3c887a(0x6b1,'\x68\x63\x62\x6a')](_0x5f806a,_0x23f6f6),_0x1bdd1b=_0x214a05[_0x3c887a(0x154,'\x4b\x30\x57\x5b')](_0x795863,{'\x70\x72\x65\x76\x48\x61\x64\x45\x72\x72\x6f\x72':!!_0xd70ea9[_0x3c887a(0x5c0,'\x78\x30\x59\x23')+'\x72'],'\x63\x75\x72\x72\x65\x6e\x74\x48\x61\x73\x45\x72\x72\x6f\x72':_0x4bacf3,'\x62\x61\x73\x65\x6c\x69\x6e\x65\x4f\x62\x73\x65\x72\x76\x65\x64':_0xd70ea9[_0x3c887a(0x482,'\x77\x2a\x69\x63')+_0x3c887a(0x4b8,'\x4b\x79\x35\x77')+'\x64']||null,'\x63\x75\x72\x72\x65\x6e\x74\x4f\x62\x73\x65\x72\x76\x65\x64':_0x214a05[_0x3c887a(0x1e7,'\x76\x54\x52\x77')](_0x15e06e,null),'\x73\x69\x67\x6e\x61\x6c\x73':_0x23f6f6}),_0x11f077=_0x214a05[_0x3c887a(0x1cb,'\x74\x57\x51\x63')](_0x4a2a06),_0x403e15=_0x214a05[_0x3c887a(0x269,'\x55\x4e\x4a\x79')](_0x46a23f,_0x23f6f6),_0x45cad0={};_0x45cad0[_0x3c887a(0x59b,'\x45\x72\x73\x51')+'\x65\x5f\x64\x61\x79\x73']=0x1e;const _0x568b9b={'\x74\x79\x70\x65':_0x214a05[_0x3c887a(0x78c,'\x4b\x79\x35\x77')],'\x6b\x69\x6e\x64':_0x214a05[_0x3c887a(0x433,'\x77\x74\x6a\x7a')],'\x69\x64':_0x3c887a(0x230,'\x30\x6f\x64\x41')+Date[_0x3c887a(0x42b,'\x78\x38\x5e\x36')]()+'\x5f'+_0x214a05['\x54\x63\x47\x6b\x59'](_0x31f261,_0xd70ea9[_0x3c887a(0x1b4,'\x41\x40\x23\x4c')+'\x64']+(_0x3c887a(0x5b0,'\x33\x37\x26\x37')+'\x7c')+_0x11f077),'\x74\x73':_0x11f077,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x214a05[_0x3c887a(0x227,'\x39\x29\x37\x66')](String,_0xd70ea9[_0x3c887a(0x2d2,'\x55\x4e\x4a\x79')+'\x65\x79']||_0x214a05[_0x3c887a(0x5b1,'\x76\x4c\x5a\x40')]),'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x3c887a(0x627,'\x76\x4c\x5a\x40')](_0xd70ea9[_0x3c887a(0x4a5,'\x33\x68\x30\x5d')])?_0xd70ea9[_0x3c887a(0x71d,'\x75\x37\x24\x32')]:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x214a05[_0x3c887a(0x1e4,'\x39\x48\x77\x39')](_0x403e15,null)},'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0xd70ea9[_0x3c887a(0x30f,'\x78\x38\x5e\x36')+_0x3c887a(0x6b3,'\x49\x72\x4c\x4c')]||_0xd70ea9[_0x3c887a(0x1b8,'\x32\x4e\x4a\x4d')+'\x5f\x63\x61\x74\x65\x67\x6f\x72'+'\x79']||_0xd70ea9[_0x3c887a(0x615,'\x39\x48\x77\x39')+_0x3c887a(0x1e9,'\x78\x30\x59\x23')+_0x3c887a(0x39f,'\x4b\x30\x57\x5b')]?{'\x69\x64':_0xd70ea9['\x6d\x75\x74\x61\x74\x69\x6f\x6e'+_0x3c887a(0x69f,'\x35\x6f\x58\x36')]||null,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0xd70ea9[_0x3c887a(0x615,'\x39\x48\x77\x39')+_0x3c887a(0x17d,'\x32\x4e\x4a\x4d')+'\x79']||null,'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0xd70ea9[_0x3c887a(0x262,'\x77\x74\x6a\x7a')+_0x3c887a(0x549,'\x77\x28\x7a\x39')+_0x3c887a(0x15a,'\x31\x72\x5d\x55')]||null}:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0xd70ea9[_0x3c887a(0x247,'\x31\x72\x5d\x55')+_0x3c887a(0x70d,'\x6b\x5d\x25\x67')]||_0xd70ea9[_0x3c887a(0x616,'\x59\x38\x6c\x6d')+'\x69\x74\x79\x5f\x73\x74\x61\x74'+'\x65']?{'\x6b\x65\x79':_0xd70ea9[_0x3c887a(0x211,'\x39\x29\x37\x66')+'\x69\x74\x79\x5f\x6b\x65\x79']||null,'\x73\x74\x61\x74\x65':_0xd70ea9[_0x3c887a(0x4f3,'\x38\x62\x4a\x6d')+_0x3c887a(0x565,'\x47\x78\x79\x65')+'\x65']||null}:null,'\x67\x65\x6e\x65':{'\x69\x64':_0xd70ea9['\x67\x65\x6e\x65\x5f\x69\x64']||null,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0xd70ea9[_0x3c887a(0x6d4,'\x2a\x35\x6a\x39')+'\x65\x67\x6f\x72\x79']||null},'\x61\x63\x74\x69\x6f\x6e':{'\x69\x64':_0x214a05[_0x3c887a(0x467,'\x78\x72\x50\x48')](String,_0xd70ea9[_0x3c887a(0x2fd,'\x56\x75\x48\x62')+'\x64'])},'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73':_0xd70ea9[_0x3c887a(0x4f4,'\x59\x38\x6c\x6d')+_0x3c887a(0x3ca,'\x33\x37\x26\x37')]?{'\x69\x64':_0x214a05['\x6d\x62\x50\x4d\x64'](String,_0xd70ea9[_0x3c887a(0x264,'\x5a\x4e\x65\x58')+_0x3c887a(0x3ca,'\x33\x37\x26\x37')])}:null,'\x6f\x75\x74\x63\x6f\x6d\x65':{'\x73\x74\x61\x74\x75\x73':_0x1bdd1b[_0x3c887a(0x557,'\x69\x79\x38\x63')],'\x73\x63\x6f\x72\x65':_0x1bdd1b[_0x3c887a(0x590,'\x5b\x7a\x6f\x41')],'\x6e\x6f\x74\x65':_0x1bdd1b['\x6e\x6f\x74\x65'],'\x6f\x62\x73\x65\x72\x76\x65\x64':{'\x63\x75\x72\x72\x65\x6e\x74\x5f\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x3c887a(0x62f,'\x38\x62\x4a\x6d')](_0x23f6f6)?_0x23f6f6:[]},'\x70\x72\x65\x64\x69\x63\x74\x69\x76\x65':_0x1bdd1b[_0x3c887a(0x1cd,'\x69\x79\x38\x63')+'\x76\x65']||null},'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0x45cad0,'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x15e06e&&_0x214a05[_0x3c887a(0x2ce,'\x49\x72\x4c\x4c')](typeof _0x15e06e,_0x214a05['\x79\x65\x6d\x4f\x75'])?_0x15e06e:null,'\x62\x61\x73\x65\x6c\x69\x6e\x65':_0xd70ea9[_0x3c887a(0x25e,'\x4b\x30\x57\x5b')+_0x3c887a(0x4f1,'\x79\x2a\x55\x2a')+'\x64']||null,'\x63\x61\x70\x73\x75\x6c\x65\x73':{'\x75\x73\x65\x64':Array[_0x3c887a(0x787,'\x4d\x57\x74\x26')](_0xd70ea9['\x63\x61\x70\x73\x75\x6c\x65\x73'+_0x3c887a(0x48b,'\x6d\x78\x46\x74')])?_0xd70ea9[_0x3c887a(0x75b,'\x41\x40\x23\x4c')+_0x3c887a(0x5de,'\x75\x48\x79\x40')]:[]}},_0x450407=_0x2dfe72(_0xd70ea9);if(_0x450407)_0x568b9b[_0x3c887a(0x323,'\x39\x29\x37\x66')+_0x3c887a(0x66f,'\x68\x63\x62\x6a')+'\x6e']=_0x450407;_0x214a05[_0x3c887a(0x518,'\x33\x68\x77\x70')](_0x2675dc,_0x568b9b);try{if(_0xd70ea9[_0x3c887a(0x61f,'\x4b\x79\x35\x77')]){const _0x23416a=_0x466753({'\x73\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x214a05[_0x3c887a(0x515,'\x74\x57\x51\x63')](String,_0xd70ea9[_0x3c887a(0x5c2,'\x76\x4c\x5a\x40')+'\x65\x79']||_0x214a05['\x4a\x48\x66\x44\x57']),'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x3c887a(0x39e,'\x58\x45\x24\x5d')](_0xd70ea9[_0x3c887a(0x555,'\x39\x48\x77\x39')])?_0xd70ea9['\x73\x69\x67\x6e\x61\x6c\x73']:[],'\x67\x65\x6e\x65\x49\x64':_0x214a05[_0x3c887a(0x29a,'\x58\x45\x24\x5d')](String,_0xd70ea9[_0x3c887a(0x237,'\x5a\x4e\x65\x58')]),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0xd70ea9['\x67\x65\x6e\x65\x5f\x63\x61\x74'+_0x3c887a(0x6ac,'\x59\x28\x5e\x71')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x568b9b['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x1e});_0x214a05[_0x3c887a(0x4e0,'\x39\x29\x37\x66')](_0x2675dc,_0x23416a);const _0x3204e2=_0x5eb00c({'\x67\x65\x6e\x65\x49\x64':_0x214a05['\x6b\x63\x64\x4c\x76'](String,_0xd70ea9['\x67\x65\x6e\x65\x5f\x69\x64']),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0xd70ea9[_0x3c887a(0x5a7,'\x77\x2a\x69\x63')+_0x3c887a(0x144,'\x2a\x35\x6a\x39')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x568b9b['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x2d});_0x2675dc(_0x3204e2);}if(Array['\x69\x73\x41\x72\x72\x61\x79'](_0xd70ea9[_0x3c887a(0x4ff,'\x56\x79\x47\x74')+'\x6e\x65\x5f\x69\x64\x73']))for(const _0x3702cc of _0xd70ea9['\x63\x68\x75\x6e\x6b\x5f\x67\x65'+_0x3c887a(0x77a,'\x79\x2a\x55\x2a')]){if(_0x214a05[_0x3c887a(0x3f3,'\x4b\x30\x57\x5b')](_0x214a05[_0x3c887a(0x273,'\x33\x68\x77\x70')],_0x214a05[_0x3c887a(0x570,'\x76\x54\x52\x77')])){if(!_0x3702cc||_0x214a05[_0x3c887a(0x6c7,'\x39\x29\x37\x66')](_0x3702cc,_0xd70ea9[_0x3c887a(0x6c0,'\x39\x29\x37\x66')]))continue;try{const _0x4252be=_0x214a05[_0x3c887a(0x397,'\x76\x4c\x5a\x40')](_0x466753,{'\x73\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x214a05[_0x3c887a(0x6aa,'\x59\x28\x5e\x71')](String,_0xd70ea9[_0x3c887a(0x2a1,'\x68\x63\x62\x6a')+'\x65\x79']||_0x3c887a(0x176,'\x4d\x57\x74\x26')),'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x3c887a(0x35f,'\x77\x74\x6a\x7a')](_0xd70ea9[_0x3c887a(0x670,'\x79\x2a\x55\x2a')])?_0xd70ea9[_0x3c887a(0x1ea,'\x26\x50\x33\x62')]:[],'\x67\x65\x6e\x65\x49\x64':String(_0x3702cc),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x568b9b['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x1e});_0x214a05[_0x3c887a(0x127,'\x6b\x5d\x25\x67')](_0x2675dc,_0x4252be);const _0x153b02=_0x5eb00c({'\x67\x65\x6e\x65\x49\x64':_0x214a05[_0x3c887a(0x79d,'\x74\x57\x51\x63')](String,_0x3702cc),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x568b9b['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x2d});_0x214a05[_0x3c887a(0x4ce,'\x2a\x35\x6a\x39')](_0x2675dc,_0x153b02);}catch(_0x4c3283){}}else{const _0x18499a=_0x4ab985({'\x73\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x214a05['\x52\x4c\x4f\x59\x4b'](_0x4c6828,_0x2f04b2[_0x3c887a(0x1f7,'\x49\x72\x4c\x4c')+'\x65\x79']||_0x214a05[_0x3c887a(0x488,'\x77\x74\x6a\x7a')]),'\x73\x69\x67\x6e\x61\x6c\x73':_0x12af20[_0x3c887a(0x44c,'\x5b\x7a\x6f\x41')](_0x441ed6[_0x3c887a(0x2df,'\x77\x2a\x69\x63')])?_0x2bc9a6[_0x3c887a(0x5f6,'\x77\x31\x4b\x6f')]:[],'\x67\x65\x6e\x65\x49\x64':_0x214a05['\x52\x77\x62\x6d\x6a'](_0x3bf177,_0x40666d[_0x3c887a(0x784,'\x41\x40\x23\x4c')]),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0xcfa85f[_0x3c887a(0x631,'\x47\x78\x79\x65')+_0x3c887a(0x45d,'\x56\x75\x48\x62')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x41a38b['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x1e});_0x214a05[_0x3c887a(0x4cf,'\x33\x68\x30\x5d')](_0x670908,_0x18499a);const _0x59d796=_0x214a05[_0x3c887a(0x280,'\x56\x79\x47\x74')](_0x114803,{'\x67\x65\x6e\x65\x49\x64':_0x423e86(_0x2aa2a7[_0x3c887a(0x1cf,'\x30\x6f\x64\x41')]),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0x131713[_0x3c887a(0x770,'\x38\x62\x4a\x6d')+_0x3c887a(0x6ac,'\x59\x28\x5e\x71')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0xc774bd['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x2d});_0x214a05[_0x3c887a(0x67e,'\x59\x38\x6c\x6d')](_0x2faaf0,_0x59d796);}}}catch(_0x20ff2c){}return _0xd70ea9[_0x3c887a(0x4ab,'\x59\x28\x5e\x71')+_0x3c887a(0x6ef,'\x33\x37\x26\x37')]=!![],_0xd70ea9[_0x3c887a(0x3cc,'\x79\x4d\x45\x6e')+'\x72\x65\x63\x6f\x72\x64\x65\x64'+_0x3c887a(0x16a,'\x49\x72\x4c\x4c')]=_0x11f077,_0x147502[_0x3c887a(0x434,'\x55\x4e\x4a\x79')+_0x3c887a(0x58b,'\x33\x37\x26\x37')]=_0xd70ea9,_0x214a05[_0x3c887a(0x304,'\x56\x79\x47\x74')](_0x592251,_0x20931d,_0x147502),_0x568b9b;}function _0x225a3c({asset:_0x5431f3,source:_0x170534,signals:_0xc824c4}){const _0x1c3117=_0x59595f,_0x13e4a2={'\x75\x78\x6d\x4e\x4c':function(_0x4bd80d,_0x4a29fa){return _0x4bd80d===_0x4a29fa;},'\x6a\x45\x71\x45\x69':function(_0x18e915,_0x76958c){return _0x18e915(_0x76958c);},'\x6a\x71\x45\x4f\x6a':function(_0x19cfce,_0x113cf2){return _0x19cfce||_0x113cf2;},'\x71\x69\x53\x48\x51':function(_0x4c3911){return _0x4c3911();},'\x69\x45\x46\x6e\x79':_0x1c3117(0x6df,'\x32\x4e\x4a\x4d')+_0x1c3117(0x68b,'\x79\x4d\x45\x6e'),'\x68\x68\x7a\x48\x72':_0x1c3117(0x798,'\x74\x57\x51\x63')+_0x1c3117(0x6f3,'\x4b\x79\x35\x77')+'\x74\x65','\x45\x77\x66\x53\x63':_0x1c3117(0x336,'\x68\x63\x62\x6a'),'\x72\x77\x46\x67\x57':_0x1c3117(0x5dc,'\x41\x6f\x6d\x77'),'\x70\x56\x64\x62\x43':function(_0x599e67,_0x53a294){return _0x599e67(_0x53a294);},'\x59\x78\x51\x75\x67':function(_0x4cf2f7,_0x4865de){return _0x4cf2f7(_0x4865de);}},_0x4e26ff=_0x5431f3&&_0x13e4a2[_0x1c3117(0x6fe,'\x32\x43\x23\x6b')](typeof _0x5431f3,'\x6f\x62\x6a\x65\x63\x74')?_0x5431f3:null,_0x4281af=_0x4e26ff&&_0x4e26ff['\x74\x79\x70\x65']?_0x13e4a2['\x6a\x45\x71\x45\x69'](String,_0x4e26ff[_0x1c3117(0x594,'\x77\x31\x4b\x6f')]):null,_0x564946=_0x4e26ff&&_0x4e26ff['\x69\x64']?_0x13e4a2[_0x1c3117(0x78a,'\x74\x57\x51\x63')](String,_0x4e26ff['\x69\x64']):null;if(_0x13e4a2['\x6a\x71\x45\x4f\x6a'](!_0x4281af,!_0x564946))return null;const _0x3a9a8b=_0x13e4a2[_0x1c3117(0x464,'\x79\x4d\x45\x6e')](_0x4a2a06),_0x4737b6=_0x13e4a2[_0x1c3117(0x443,'\x33\x68\x30\x5d')](_0x7c3ecd,_0xc824c4),_0x120df0={'\x74\x79\x70\x65':_0x13e4a2[_0x1c3117(0x585,'\x2a\x35\x6a\x39')],'\x6b\x69\x6e\x64':_0x13e4a2[_0x1c3117(0x2a0,'\x31\x77\x33\x38')],'\x69\x64':_0x1c3117(0x1a9,'\x41\x40\x23\x4c')+Date[_0x1c3117(0x478,'\x33\x68\x30\x5d')]()+'\x5f'+_0x13e4a2[_0x1c3117(0x1be,'\x31\x72\x5d\x55')](_0x31f261,_0x4281af+'\x7c'+_0x564946+(_0x1c3117(0x651,'\x77\x28\x7a\x39')+'\x6c\x7c')+_0x3a9a8b),'\x74\x73':_0x3a9a8b,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x4737b6,'\x73\x69\x67\x6e\x61\x6c\x73':Array['\x69\x73\x41\x72\x72\x61\x79'](_0xc824c4)?_0xc824c4:[]},'\x65\x78\x74\x65\x72\x6e\x61\x6c':{'\x73\x6f\x75\x72\x63\x65':_0x13e4a2[_0x1c3117(0x427,'\x74\x57\x51\x63')](_0x170534,_0x13e4a2[_0x1c3117(0x499,'\x55\x4e\x4a\x79')]),'\x72\x65\x63\x65\x69\x76\x65\x64\x5f\x61\x74':_0x3a9a8b},'\x61\x73\x73\x65\x74':{'\x74\x79\x70\x65':_0x4281af,'\x69\x64':_0x564946},'\x63\x61\x6e\x64\x69\x64\x61\x74\x65':{'\x74\x72\x69\x67\x67\x65\x72':_0x13e4a2[_0x1c3117(0x3d9,'\x2a\x35\x6a\x39')](_0x4281af,_0x1c3117(0x138,'\x2a\x35\x6a\x39'))&&Array['\x69\x73\x41\x72\x72\x61\x79'](_0x4e26ff[_0x1c3117(0x617,'\x4d\x57\x74\x26')])?_0x4e26ff['\x74\x72\x69\x67\x67\x65\x72']:[],'\x67\x65\x6e\x65':_0x13e4a2['\x75\x78\x6d\x4e\x4c'](_0x4281af,_0x13e4a2[_0x1c3117(0x43a,'\x32\x43\x23\x6b')])&&_0x4e26ff[_0x1c3117(0x558,'\x78\x38\x5e\x36')]?_0x13e4a2[_0x1c3117(0x1c9,'\x45\x72\x73\x51')](String,_0x4e26ff[_0x1c3117(0x643,'\x31\x77\x33\x38')]):null,'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0x4281af===_0x13e4a2[_0x1c3117(0x5d2,'\x31\x72\x5d\x55')]&&Number[_0x1c3117(0x268,'\x78\x30\x59\x23')](Number(_0x4e26ff[_0x1c3117(0x6ca,'\x76\x54\x52\x77')+'\x63\x65']))?_0x13e4a2[_0x1c3117(0x382,'\x39\x48\x77\x39')](Number,_0x4e26ff[_0x1c3117(0x2b0,'\x4b\x30\x57\x5b')+'\x63\x65']):null}};return _0x13e4a2[_0x1c3117(0x226,'\x78\x72\x50\x48')](_0x2675dc,_0x120df0),_0x120df0;}const _0x397471={};_0x397471[_0x59595f(0x3dd,'\x26\x50\x33\x62')+'\x61\x70\x68\x50\x61\x74\x68']=_0xcc5be9,_0x397471['\x63\x6f\x6d\x70\x75\x74\x65\x53'+_0x59595f(0x5b4,'\x74\x57\x51\x63')]=_0x7c3ecd,_0x397471[_0x59595f(0x3e7,'\x31\x77\x33\x38')+_0x59595f(0x3bf,'\x76\x4c\x5a\x40')+_0x59595f(0x113,'\x2a\x35\x6a\x39')]=_0x38fcd2,_0x397471[_0x59595f(0x446,'\x30\x6f\x64\x41')+_0x59595f(0x579,'\x74\x57\x51\x63')+_0x59595f(0x140,'\x4b\x30\x57\x5b')]=_0x2675dc,_0x397471['\x67\x65\x74\x4d\x65\x6d\x6f\x72'+_0x59595f(0x5b6,'\x6b\x5d\x25\x67')]=_0x5f46b9,_0x397471[_0x59595f(0x75c,'\x68\x63\x62\x6a')+_0x59595f(0x1c3,'\x50\x30\x46\x57')+_0x59595f(0x644,'\x76\x54\x52\x77')]=_0x4811a4,_0x397471[_0x59595f(0x21d,'\x32\x43\x23\x6b')+_0x59595f(0x5fb,'\x75\x37\x24\x32')]=_0x4cc4f0,_0x397471[_0x59595f(0x16c,'\x31\x72\x5d\x55')+'\x74\x65\x6d\x70\x74']=_0x54f508,_0x397471[_0x59595f(0x3e9,'\x68\x63\x62\x6a')+_0x59595f(0x764,'\x41\x40\x23\x4c')+_0x59595f(0x409,'\x68\x63\x62\x6a')]=_0x21c3d5,_0x397471[_0x59595f(0x2af,'\x38\x62\x4a\x6d')+_0x59595f(0x39d,'\x31\x72\x5d\x55')+_0x59595f(0x3c4,'\x30\x6f\x64\x41')]=_0x225a3c,_0x397471[_0x59595f(0x543,'\x35\x6f\x58\x36')+_0x59595f(0x79a,'\x33\x37\x26\x37')+_0x59595f(0x671,'\x32\x43\x23\x6b')]=_0x1a1d2b,_0x397471['\x63\x68\x65\x63\x6b\x45\x70\x6f'+_0x59595f(0x390,'\x78\x30\x59\x23')+'\x72\x79']=_0x395990,_0x397471[_0x59595f(0x2c9,'\x74\x57\x51\x63')+_0x59595f(0x485,'\x33\x68\x77\x70')+_0x59595f(0x4ba,'\x59\x28\x5e\x71')]=_0x46c992,_0x397471[_0x59595f(0x72b,'\x68\x63\x62\x6a')+_0x59595f(0x439,'\x5a\x4e\x65\x58')]=_0x576653,_0x397471[_0x59595f(0x44e,'\x39\x29\x37\x66')+'\x6d\x6f\x72\x79\x47\x72\x61\x70'+_0x59595f(0x1b6,'\x68\x63\x62\x6a')]=_0x1d1b40,_0x397471[_0x59595f(0x4be,'\x4b\x79\x35\x77')+_0x59595f(0x508,'\x32\x4e\x4a\x4d')+_0x59595f(0x6db,'\x45\x72\x73\x51')]=_0x56911b,_0x397471[_0x59595f(0x743,'\x78\x38\x5e\x36')+_0x59595f(0x64a,'\x76\x4c\x5a\x40')]=_0x58a920,_0x397471[_0x59595f(0x1d5,'\x5b\x7a\x6f\x41')+_0x59595f(0x64e,'\x58\x45\x24\x5d')+_0x59595f(0x6ae,'\x39\x48\x77\x39')]=_0x21ef20,_0x397471[_0x59595f(0x200,'\x6d\x78\x46\x74')+_0x59595f(0x187,'\x77\x2a\x69\x63')+_0x59595f(0x6a7,'\x38\x62\x4a\x6d')]=_0x46a8e9,module[_0x59595f(0x232,'\x4d\x57\x74\x26')]=_0x397471;
1
+ const fs = require('fs');
2
+ const path = require('path');
3
+ const { hubFetch } = require('./hubFetch');
4
+ const { getMemoryDir, getEvolutionDir } = require('./paths');
5
+ const { normalizePersonalityState, isValidPersonalityState, personalityKey } = require('./personality');
6
+ const { isValidMutation, normalizeMutation } = require('./mutation');
7
+ const cfg = require('../config');
8
+ const { readJsonIfExists } = require('./assetStore');
9
+ const { stableHash } = require('./hash');
10
+
11
+ function ensureDir(dir) {
12
+ try {
13
+ if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
14
+ } catch (e) {}
15
+ }
16
+
17
+ function nowIso() {
18
+ return new Date().toISOString();
19
+ }
20
+
21
+ function normalizeErrorSignature(text) {
22
+ const s = String(text || '').trim();
23
+ if (!s) return null;
24
+ return (
25
+ s
26
+ .toLowerCase()
27
+ // normalize Windows paths
28
+ .replace(/[a-z]:\\[^ \n\r\t]+/gi, '<path>')
29
+ // normalize Unix paths
30
+ .replace(/\/[^ \n\r\t]+/g, '<path>')
31
+ // normalize hex and numbers
32
+ .replace(/\b0x[0-9a-f]+\b/gi, '<hex>')
33
+ .replace(/\b\d+\b/g, '<n>')
34
+ // normalize whitespace
35
+ .replace(/\s+/g, ' ')
36
+ .slice(0, 220)
37
+ );
38
+ }
39
+
40
+ function normalizeSignalsForMatching(signals) {
41
+ const list = Array.isArray(signals) ? signals : [];
42
+ const out = [];
43
+ for (const s of list) {
44
+ const str = String(s || '').trim();
45
+ if (!str) continue;
46
+ if (str.startsWith('errsig:')) {
47
+ const norm = normalizeErrorSignature(str.slice('errsig:'.length));
48
+ if (norm) out.push(`errsig_norm:${stableHash(norm)}`);
49
+ continue;
50
+ }
51
+ out.push(str);
52
+ }
53
+ return out;
54
+ }
55
+
56
+ function computeSignalKey(signals) {
57
+ // Key must be stable across runs; normalize noisy signatures (paths, numbers).
58
+ const list = normalizeSignalsForMatching(signals);
59
+ const uniq = Array.from(new Set(list.filter(Boolean))).sort();
60
+ return uniq.join('|') || '(none)';
61
+ }
62
+
63
+ function extractErrorSignatureFromSignals(signals) {
64
+ // Convention: signals can include "errsig:<raw>" emitted by signals extractor.
65
+ const list = Array.isArray(signals) ? signals : [];
66
+ for (const s of list) {
67
+ const str = String(s || '');
68
+ if (str.startsWith('errsig:')) return normalizeErrorSignature(str.slice('errsig:'.length));
69
+ }
70
+ return null;
71
+ }
72
+
73
+ function memoryGraphPath() {
74
+ const evoDir = getEvolutionDir();
75
+ return process.env.MEMORY_GRAPH_PATH || path.join(evoDir, 'memory_graph.jsonl');
76
+ }
77
+
78
+ function memoryGraphStatePath() {
79
+ return path.join(getEvolutionDir(), 'memory_graph_state.json');
80
+ }
81
+
82
+ // P4-a Slice A: build the reuse-attribution block for the synced `outcome`
83
+ // event. Reads the reuse fields the dispatch stage already wrote into
84
+ // evolution_solidify_state.json (state.last_run.{source_type, reused_asset_id,
85
+ // reused_chain_id}). We read that file DIRECTLY (not require('./solidify') —
86
+ // solidify.js already requires this module, so importing it back would be a
87
+ // circular require). Returns null unless mode==='shadow' AND this cycle
88
+ // actually reused/referenced a Hub asset.
89
+ //
90
+ // HARD invariants (anti-sybil, even though this is just data):
91
+ // - NO source_node_id from the client. The publisher to credit MUST be
92
+ // re-derived server-side from reused_asset_id -> Asset.sourceNodeId; never
93
+ // trust the reporter's claim of who to pay.
94
+ // - reused_asset_id is RUNTIME-OBSERVED (the hubHit the evolver actually
95
+ // selected), not agent-supplied free text.
96
+ // - Absent when source_type==='generated' (nothing was reused).
97
+ // - Absent unless the solidify-state last_run is from THIS cycle. The reuse
98
+ // fields live in evolution_solidify_state.json (state.last_run), but the
99
+ // outcome event is built from memory_graph_state.json (last_action) — two
100
+ // separate files written by different stages (recordAttempt -> dispatch ->
101
+ // recordOutcome). If dispatch never ran this cycle (failure / process stop
102
+ // after recordAttempt), last_run is STALE and would mislink another cycle's
103
+ // reuse to this outcome (Bugbot #186). Pipeline order guarantees a current
104
+ // last_run was created AT/AFTER this cycle's last_action; a stale one is
105
+ // older, so require last_run.created_at >= lastAction.created_at.
106
+ function buildReuseAttribution(lastAction) {
107
+ let mode = 'off';
108
+ try { mode = require('../config').reuseAttributionMode(); } catch (_) { mode = 'off'; }
109
+ if (mode !== 'shadow') return null;
110
+ let lastRun = null;
111
+ try {
112
+ const sp = path.join(getEvolutionDir(), 'evolution_solidify_state.json');
113
+ const st = readJsonIfExists(sp, { last_run: null });
114
+ lastRun = st && st.last_run ? st.last_run : null;
115
+ } catch (_) { return null; }
116
+ if (!lastRun) return null;
117
+ // Cycle-correlation: the reuse data must belong to the SAME cycle as the
118
+ // outcome we are attaching it to. Without a comparable last_action timestamp,
119
+ // or if last_run predates this attempt, refuse rather than mislink.
120
+ const actAt = lastAction && lastAction.created_at ? Date.parse(lastAction.created_at) : NaN;
121
+ const runAt = lastRun.created_at ? Date.parse(lastRun.created_at) : NaN;
122
+ if (!Number.isFinite(actAt) || !Number.isFinite(runAt) || runAt < actAt) return null;
123
+ const sourceType = lastRun.source_type ? String(lastRun.source_type) : 'generated';
124
+ if (sourceType !== 'reused' && sourceType !== 'reference') return null; // nothing reused
125
+ const reusedAssetId = lastRun.reused_asset_id ? String(lastRun.reused_asset_id) : null;
126
+ if (!reusedAssetId) return null;
127
+ return {
128
+ reused_asset_id: reusedAssetId,
129
+ reused_chain_id: lastRun.reused_chain_id ? String(lastRun.reused_chain_id) : null,
130
+ source_type: sourceType,
131
+ reported_by: 'evolver-outcome',
132
+ schema: 'reuse_attr/1.0',
133
+ };
134
+ }
135
+
136
+ function appendJsonl(filePath, obj) {
137
+ const dir = path.dirname(filePath);
138
+ ensureDir(dir);
139
+ fs.appendFileSync(filePath, JSON.stringify(obj) + '\n', 'utf8');
140
+ }
141
+
142
+ // Memory graph rotation (issue #519).
143
+ //
144
+ // memory_graph.jsonl grows unboundedly on long-running nodes, causing
145
+ // disk waste and slow filesystem stat() calls. Rotate the file once it
146
+ // crosses EVOLVER_MEMORY_GRAPH_MAX_SIZE_MB (default 100 MB) by renaming
147
+ // it to memory_graph.jsonl.<ts>.gz (gzip-compressed) and starting a
148
+ // fresh file. Keep at most EVOLVER_MEMORY_GRAPH_RETENTION_COUNT (default
149
+ // 7) rotated archives; older ones are deleted. Opt out entirely with
150
+ // EVOLVER_MEMORY_GRAPH_AUTO_ROTATE=false.
151
+ //
152
+ // The tail-read in tryReadMemoryGraphEvents is safe across rotation:
153
+ // at worst one cycle sees an empty file, not corruption, because the
154
+ // rename is atomic on the same filesystem.
155
+
156
+ const ROTATE_CHECK_INTERVAL_MS = 30_000;
157
+ const ROTATE_CHECK_WRITES = 100;
158
+
159
+ let _lastRotateCheckAt = 0;
160
+ let _writesSinceRotateCheck = 0;
161
+
162
+ function rotationEnabled() {
163
+ const raw = String(process.env.EVOLVER_MEMORY_GRAPH_AUTO_ROTATE ?? 'true').toLowerCase();
164
+ return raw !== 'false' && raw !== '0' && raw !== 'no';
165
+ }
166
+
167
+ function rotationMaxSizeBytes() {
168
+ const mb = Number(process.env.EVOLVER_MEMORY_GRAPH_MAX_SIZE_MB);
169
+ const safe = Number.isFinite(mb) && mb > 0 ? mb : 100;
170
+ return Math.floor(safe * 1024 * 1024);
171
+ }
172
+
173
+ function rotationRetentionCount() {
174
+ const n = Number(process.env.EVOLVER_MEMORY_GRAPH_RETENTION_COUNT);
175
+ const safe = Number.isFinite(n) && n >= 0 ? Math.floor(n) : 7;
176
+ return safe;
177
+ }
178
+
179
+ // Archive suffix matcher. Matches both legacy `.<ts>` and current
180
+ // `.<ts>.gz` forms so old layouts are pruned consistently.
181
+ const ROTATED_SUFFIX_RE = /\.(\d{8,})(?:\.gz)?$/;
182
+
183
+ function pruneRotatedArchives(activePath, retention) {
184
+ try {
185
+ const dir = path.dirname(activePath);
186
+ const baseName = path.basename(activePath);
187
+ const prefix = baseName + '.';
188
+ const entries = fs.readdirSync(dir)
189
+ .filter(name => name.startsWith(prefix) && ROTATED_SUFFIX_RE.test(name))
190
+ .map(name => {
191
+ const m = ROTATED_SUFFIX_RE.exec(name);
192
+ return { name, ts: m ? Number(m[1]) : 0 };
193
+ })
194
+ .sort((a, b) => b.ts - a.ts);
195
+ const excess = entries.slice(retention);
196
+ for (const entry of excess) {
197
+ try { fs.unlinkSync(path.join(dir, entry.name)); } catch (_) { /* best-effort */ }
198
+ }
199
+ } catch (_) {
200
+ // Pruning is best-effort; never block writes.
201
+ }
202
+ }
203
+
204
+ function rotateMemoryGraphNow(activePath) {
205
+ let renamedTo = null;
206
+ try {
207
+ if (!fs.existsSync(activePath)) return null;
208
+ const ts = new Date().toISOString().replace(/[^0-9]/g, '').slice(0, 14);
209
+ const rotated = `${activePath}.${ts}`;
210
+ // Atomic rename; new writes to activePath will create a fresh file.
211
+ fs.renameSync(activePath, rotated);
212
+ renamedTo = rotated;
213
+ // Compress in-place to .gz to save disk. If compression fails we
214
+ // still keep the uncompressed rotated file — data is preserved.
215
+ //
216
+ // OOM guard: zlib.gzipSync reads the whole file into memory before
217
+ // compressing. On a container with a tight memory limit (e.g. Docker
218
+ // 512 MB), compressing a 100 MB file spikes the heap by ~100 MB,
219
+ // which can itself trigger the OOM killer -- producing a truncated .gz
220
+ // and a lost rotation. Skip gzip for files larger than
221
+ // ROTATE_GZIP_MAX_BYTES (default 32 MB) and keep them uncompressed
222
+ // rather than risk an OOM spike during the compress step.
223
+ // Operators can raise the limit via EVOLVER_ROTATE_GZIP_MAX_MB.
224
+ try {
225
+ const zlib = require('zlib');
226
+ const _gzipMaxMb = Number(process.env.EVOLVER_ROTATE_GZIP_MAX_MB);
227
+ const _gzipMaxBytes = (Number.isFinite(_gzipMaxMb) && _gzipMaxMb > 0)
228
+ ? Math.floor(_gzipMaxMb * 1024 * 1024)
229
+ : 32 * 1024 * 1024; // 32 MB default
230
+ let skipGzip = false;
231
+ try {
232
+ const rotatedStat = fs.statSync(rotated);
233
+ if (rotatedStat.size > _gzipMaxBytes) skipGzip = true;
234
+ } catch (_) {}
235
+ if (!skipGzip) {
236
+ const raw = fs.readFileSync(rotated);
237
+ const gz = zlib.gzipSync(raw);
238
+ fs.writeFileSync(`${rotated}.gz`, gz);
239
+ fs.unlinkSync(rotated);
240
+ renamedTo = `${rotated}.gz`;
241
+ }
242
+ // When skipGzip is true, renamedTo stays as the plain rotated file.
243
+ } catch (_) {
244
+ // Keep uncompressed rotated file as a fallback.
245
+ }
246
+ pruneRotatedArchives(activePath, rotationRetentionCount());
247
+ } catch (e) {
248
+ // Rotation failure must never break evolver's write path.
249
+ }
250
+ return renamedTo;
251
+ }
252
+
253
+ function maybeRotateMemoryGraph(activePath, { force = false } = {}) {
254
+ if (!rotationEnabled()) return null;
255
+ _writesSinceRotateCheck += 1;
256
+ const now = Date.now();
257
+ if (!force
258
+ && _writesSinceRotateCheck < ROTATE_CHECK_WRITES
259
+ && (now - _lastRotateCheckAt) < ROTATE_CHECK_INTERVAL_MS) {
260
+ return null;
261
+ }
262
+ _writesSinceRotateCheck = 0;
263
+ _lastRotateCheckAt = now;
264
+ try {
265
+ if (!fs.existsSync(activePath)) return null;
266
+ const stat = fs.statSync(activePath);
267
+ if (stat.size < rotationMaxSizeBytes()) return null;
268
+ return rotateMemoryGraphNow(activePath);
269
+ } catch (_) {
270
+ return null;
271
+ }
272
+ }
273
+
274
+ // On process start, force an immediate rotation if the file is already
275
+ // oversized from a pre-rotation evolver version.
276
+ function rotateOnStartupIfOversized() {
277
+ try {
278
+ if (!rotationEnabled()) return;
279
+ const p = memoryGraphPath();
280
+ if (!fs.existsSync(p)) return;
281
+ const stat = fs.statSync(p);
282
+ if (stat.size >= rotationMaxSizeBytes()) {
283
+ rotateMemoryGraphNow(p);
284
+ }
285
+ } catch (_) {
286
+ // best-effort
287
+ }
288
+ }
289
+ // Run once at module load. Idempotent via rotationEnabled() guard and
290
+ // the fs.existsSync guard, so side effects only fire when warranted.
291
+ rotateOnStartupIfOversized();
292
+
293
+ // Hub sync: whitelist of MemoryGraphEvent kinds that are safe to archive at Hub.
294
+ // Only these kinds are mirrored; all kinds remain in the local jsonl regardless.
295
+ //
296
+ // Note: 'recall_verify' (emitted by src/gep/recallVerifier.js) is intentionally
297
+ // NOT in this allowlist on first ship. Verification events stay local-only
298
+ // until the Hub side confirms it accepts the schema; otherwise every emit
299
+ // would 4xx and pollute logs. Once Hub-side support lands, add 'recall_verify'
300
+ // in a one-line follow-up patch to enable cross-node observability.
301
+ const HUB_SYNC_KIND_ALLOWLIST = new Set([
302
+ 'attempt',
303
+ 'validation',
304
+ 'skill_emit',
305
+ 'outcome',
306
+ 'mutation_draft',
307
+ 'solidify',
308
+ ]);
309
+
310
+ function syncEventToHub(ev) {
311
+ if (!ev || typeof ev !== 'object') return;
312
+ if (process.env.MEMORY_GRAPH_SYNC_HUB === '0') return;
313
+ const kind = ev && ev.kind ? String(ev.kind) : null;
314
+ if (!kind || !HUB_SYNC_KIND_ALLOWLIST.has(kind)) return;
315
+ let a2a;
316
+ try { a2a = require('./a2aProtocol'); } catch (_) { return; }
317
+ const hubUrl = typeof a2a.getHubUrl === 'function' ? a2a.getHubUrl() : (process.env.A2A_HUB_URL || process.env.EVOMAP_HUB_URL || '');
318
+ if (!hubUrl) return;
319
+ const senderId = typeof a2a.getNodeId === 'function' ? a2a.getNodeId() : null;
320
+ if (!senderId) return;
321
+ const secret = typeof a2a.getHubNodeSecret === 'function' ? a2a.getHubNodeSecret() : null;
322
+ if (!secret) return;
323
+ const endpoint = hubUrl.replace(/\/+$/, '') + '/a2a/memory/event';
324
+ const body = JSON.stringify({ sender_id: senderId, event: ev });
325
+ const timeoutMs = 5000;
326
+ const controller = (typeof AbortSignal !== 'undefined' && AbortSignal.timeout) ? AbortSignal.timeout(timeoutMs) : undefined;
327
+ try {
328
+ const p = hubFetch(endpoint, {
329
+ method: 'POST',
330
+ headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer ' + secret },
331
+ body,
332
+ signal: controller,
333
+ });
334
+ if (p && typeof p.catch === 'function') {
335
+ p.catch(function () { /* best-effort; local jsonl is source of truth */ });
336
+ }
337
+ } catch (_) { /* noop */ }
338
+ }
339
+
340
+ // Opt-in (EVOLVER_OUTCOME_REPORT=on): POST a reuse outcome to the Hub's
341
+ // /a2a/memory/record so the reuse-reward attribution pipeline (which reads THAT
342
+ // endpoint, not the inert reuse_attribution blob on /a2a/memory/event) can credit
343
+ // the source publisher. MONEY-ADJACENT + charges credits, so best-effort and
344
+ // never blocks the loop; the Hub re-verifies used_asset_ids against AssetFetcher
345
+ // before crediting. The body is FLAT — the hub reads req.body.{signals,status,
346
+ // used_asset_ids} top-level, NOT the {sender_id,event} envelope syncEventToHub
347
+ // uses. Mirrors syncEventToHub's auth (Bearer node_secret) and fire-and-forget.
348
+ function reportReuseOutcome(report) {
349
+ if (!report || !Array.isArray(report.signals) || report.signals.length === 0) return;
350
+ if (report.status !== 'success' && report.status !== 'failed') return;
351
+ let a2a;
352
+ try { a2a = require('./a2aProtocol'); } catch (_) { return; }
353
+ const hubUrl = typeof a2a.getHubUrl === 'function' ? a2a.getHubUrl() : '';
354
+ if (!hubUrl) return;
355
+ const secret = typeof a2a.getHubNodeSecret === 'function' ? a2a.getHubNodeSecret() : null;
356
+ if (!secret) return;
357
+ // The hub resolves the recording node from body.sender_id; the node_secret
358
+ // only AUTHENTICATES that id, it is never used to derive it (hub getA2aNodeId
359
+ // reads sender_id/node_id from body/query, never the Bearer). Without it the
360
+ // endpoint 400s with "sender_id_required" and — because this reporter is
361
+ // best-effort and swallows the response — the whole outcome report silently
362
+ // no-ops. Mirror syncEventToHub()'s {sender_id, ...} envelope above.
363
+ const senderId = typeof a2a.getNodeId === 'function' ? a2a.getNodeId() : null;
364
+ if (!senderId) return;
365
+ const used = Array.isArray(report.used_asset_ids)
366
+ ? report.used_asset_ids.filter((x) => typeof x === 'string' && x.length > 0 && x.length <= 200).slice(0, 50)
367
+ : [];
368
+ const endpoint = hubUrl.replace(/\/+$/, '') + '/a2a/memory/record';
369
+ const body = JSON.stringify({
370
+ sender_id: senderId,
371
+ signals: report.signals,
372
+ status: report.status,
373
+ ...(used.length > 0 ? { used_asset_ids: used } : {}),
374
+ ...(typeof report.score === 'number' ? { score: report.score } : {}),
375
+ });
376
+ const controller = typeof AbortSignal !== 'undefined' && AbortSignal.timeout ? AbortSignal.timeout(8000) : undefined;
377
+ try {
378
+ const p = hubFetch(endpoint, {
379
+ method: 'POST',
380
+ headers: { 'Content-Type': 'application/json', Authorization: 'Bearer ' + secret },
381
+ body,
382
+ signal: controller,
383
+ });
384
+ if (p && typeof p.catch === 'function') {
385
+ p.catch(function () { /* best-effort; the Hub is not the source of truth for the local graph */ });
386
+ }
387
+ } catch (_) { /* noop */ }
388
+ }
389
+
390
+ function writeMemoryGraphEvent(ev) {
391
+ const p = memoryGraphPath();
392
+ appendJsonl(p, ev);
393
+ maybeRotateMemoryGraph(p);
394
+ syncEventToHub(ev);
395
+ }
396
+
397
+ function writeJsonAtomic(filePath, obj) {
398
+ const dir = path.dirname(filePath);
399
+ ensureDir(dir);
400
+ const tmp = `${filePath}.tmp`;
401
+ fs.writeFileSync(tmp, JSON.stringify(obj, null, 2) + '\n', 'utf8');
402
+ fs.renameSync(tmp, filePath);
403
+ }
404
+
405
+ function tryReadMemoryGraphEvents(limitLines = 2000) {
406
+ try {
407
+ const p = memoryGraphPath();
408
+ if (!fs.existsSync(p)) return [];
409
+ const stat = fs.statSync(p);
410
+ const TAIL_BYTES = 512 * 1024;
411
+ let raw;
412
+ if (stat.size <= TAIL_BYTES) {
413
+ raw = fs.readFileSync(p, 'utf8');
414
+ } else {
415
+ const fd = fs.openSync(p, 'r');
416
+ try {
417
+ const buf = Buffer.alloc(TAIL_BYTES);
418
+ fs.readSync(fd, buf, 0, TAIL_BYTES, stat.size - TAIL_BYTES);
419
+ raw = buf.toString('utf8');
420
+ const firstNewline = raw.indexOf('\n');
421
+ if (firstNewline >= 0) raw = raw.slice(firstNewline + 1);
422
+ } finally {
423
+ fs.closeSync(fd);
424
+ }
425
+ }
426
+ const lines = raw
427
+ .split('\n')
428
+ .map(l => l.trim())
429
+ .filter(Boolean);
430
+ const recent = lines.slice(Math.max(0, lines.length - limitLines));
431
+ return recent
432
+ .map(l => {
433
+ try {
434
+ return JSON.parse(l);
435
+ } catch (e) {
436
+ return null;
437
+ }
438
+ })
439
+ .filter(Boolean);
440
+ } catch (e) {
441
+ return [];
442
+ }
443
+ }
444
+
445
+ function jaccard(aList, bList) {
446
+ const aNorm = normalizeSignalsForMatching(aList);
447
+ const bNorm = normalizeSignalsForMatching(bList);
448
+ const a = new Set((Array.isArray(aNorm) ? aNorm : []).map(String));
449
+ const b = new Set((Array.isArray(bNorm) ? bNorm : []).map(String));
450
+ if (a.size === 0 && b.size === 0) return 1;
451
+ if (a.size === 0 || b.size === 0) return 0;
452
+ let inter = 0;
453
+ for (const x of a) if (b.has(x)) inter++;
454
+ const union = a.size + b.size - inter;
455
+ return union === 0 ? 0 : inter / union;
456
+ }
457
+
458
+ function decayWeight(updatedAtIso, halfLifeDays) {
459
+ const hl = Number(halfLifeDays);
460
+ if (!Number.isFinite(hl) || hl <= 0) return 1;
461
+ const t = Date.parse(updatedAtIso);
462
+ if (!Number.isFinite(t)) return 1;
463
+ const ageDays = (Date.now() - t) / (1000 * 60 * 60 * 24);
464
+ if (!Number.isFinite(ageDays) || ageDays <= 0) return 1;
465
+ // Exponential half-life decay: weight = 0.5^(age/hl)
466
+ return Math.pow(0.5, ageDays / hl);
467
+ }
468
+
469
+ function aggregateEdges(events) {
470
+ const map = new Map();
471
+ for (const ev of events) {
472
+ if (!ev || ev.type !== 'MemoryGraphEvent') continue;
473
+ if (ev.kind !== 'outcome') continue;
474
+ const signalKey = ev.signal && ev.signal.key ? String(ev.signal.key) : '(none)';
475
+ const geneId = ev.gene && ev.gene.id ? String(ev.gene.id) : null;
476
+ if (!geneId) continue;
477
+
478
+ const k = `${signalKey}::${geneId}`;
479
+ const cur = map.get(k) || { signalKey, geneId, success: 0, fail: 0, inert: 0, consecutive_inert: 0, last_ts: null, last_score: null, has_predictive: false };
480
+ const status = ev.outcome && ev.outcome.status ? String(ev.outcome.status) : 'unknown';
481
+ // Issue EvoMap/evolver#562: a `stable_no_error` success means the cycle hit
482
+ // no error AND produced no parseable EvolutionEvent outcome -- i.e. nothing
483
+ // measurable happened. Counting that as a Bayesian "success" lets a gene that
484
+ // only ever does nothing climb p -> ~1.0 and dominate --loop selection forever
485
+ // (diversity collapse). Tally these "inert" outcomes apart from real ones so
486
+ // they neither build edge confidence nor count toward attempts. The
487
+ // consecutive-trailing run (reset by any real success/failure) is what
488
+ // getMemoryAdvice uses to ban a gene that is stuck doing nothing.
489
+ const note = ev.outcome && ev.outcome.note ? String(ev.outcome.note) : '';
490
+ const isInert = status === 'success' && note.indexOf('stable_no_error') !== -1;
491
+ if (isInert) {
492
+ cur.inert += 1;
493
+ cur.consecutive_inert += 1;
494
+ } else if (status === 'success') {
495
+ cur.success += 1;
496
+ cur.consecutive_inert = 0;
497
+ } else if (status === 'failed') {
498
+ cur.fail += 1;
499
+ cur.consecutive_inert = 0;
500
+ }
501
+
502
+ if (ev.outcome && ev.outcome.predictive) cur.has_predictive = true;
503
+
504
+ const ts = ev.ts || ev.created_at || ev.at;
505
+ if (ts && (!cur.last_ts || Date.parse(ts) > Date.parse(cur.last_ts))) {
506
+ cur.last_ts = ts;
507
+ cur.last_score =
508
+ ev.outcome && Number.isFinite(Number(ev.outcome.score)) ? Number(ev.outcome.score) : cur.last_score;
509
+ }
510
+ map.set(k, cur);
511
+ }
512
+ return map;
513
+ }
514
+
515
+ function aggregateGeneOutcomes(events) {
516
+ // Aggregate by gene_id from outcome events (gene -> outcome success probability).
517
+ const map = new Map();
518
+ for (const ev of events) {
519
+ if (!ev || ev.type !== 'MemoryGraphEvent') continue;
520
+ if (ev.kind !== 'outcome') continue;
521
+ const geneId = ev.gene && ev.gene.id ? String(ev.gene.id) : null;
522
+ if (!geneId) continue;
523
+ const cur = map.get(geneId) || { geneId, success: 0, fail: 0, last_ts: null, last_score: null };
524
+ const status = ev.outcome && ev.outcome.status ? String(ev.outcome.status) : 'unknown';
525
+ if (status === 'success') cur.success += 1;
526
+ else if (status === 'failed') cur.fail += 1;
527
+ const ts = ev.ts || ev.created_at || ev.at;
528
+ if (ts && (!cur.last_ts || Date.parse(ts) > Date.parse(cur.last_ts))) {
529
+ cur.last_ts = ts;
530
+ cur.last_score =
531
+ ev.outcome && Number.isFinite(Number(ev.outcome.score)) ? Number(ev.outcome.score) : cur.last_score;
532
+ }
533
+ map.set(geneId, cur);
534
+ }
535
+ return map;
536
+ }
537
+
538
+ function edgeExpectedSuccess(edge, opts) {
539
+ const e = edge || { success: 0, fail: 0, last_ts: null };
540
+ const succ = Number(e.success) || 0;
541
+ const fail = Number(e.fail) || 0;
542
+ const total = succ + fail;
543
+ const p = (succ + 1) / (total + 2); // Laplace smoothing
544
+ const halfLifeDays = opts && Number.isFinite(Number(opts.half_life_days)) ? Number(opts.half_life_days) : 30;
545
+ const w = decayWeight(e.last_ts || '', halfLifeDays);
546
+ // TTT-inspired: outcomes carrying predictive data (forward-looking evaluation)
547
+ // get a modest boost (1.15x) in the aggregated value, nudging memory preferences
548
+ // toward genes that improve evolvability rather than just fixing symptoms.
549
+ const predictiveMultiplier = e.has_predictive ? 1.15 : 1.0;
550
+ return { p, w, total, value: p * w * predictiveMultiplier };
551
+ }
552
+
553
+ // ---------------------------------------------------------------------------
554
+ // TTT-inspired Epoch Boundary & Memory Reset
555
+ // Analogous to resetting fast weights at document boundaries to prevent
556
+ // context leakage from stale environments into new ones.
557
+ // ---------------------------------------------------------------------------
558
+ const EPOCH_RESET_TRIGGERS = new Set([
559
+ 'consecutive_failure_streak_5',
560
+ 'forced_epoch_reset',
561
+ 'failure_loop_detected',
562
+ ]);
563
+ const EPOCH_GENE_POOL_CHANGE_THRESHOLD = 0.3;
564
+
565
+ function readCurrentEpoch() {
566
+ const statePath = memoryGraphStatePath();
567
+ const state = readJsonIfExists(statePath, {});
568
+ return {
569
+ epoch_id: state.current_epoch_id || null,
570
+ epoch_started_at: state.epoch_started_at || null,
571
+ prev_env_fingerprint_key: state.prev_env_fingerprint_key || null,
572
+ prev_gene_lib_version: state.prev_gene_lib_version || null,
573
+ };
574
+ }
575
+
576
+ function checkEpochBoundary({ signals, currentEnvFingerprintKey, currentGeneLibVersion }) {
577
+ const epoch = readCurrentEpoch();
578
+ const curSignals = Array.isArray(signals) ? signals : [];
579
+
580
+ // Trigger 1: explicit reset signals
581
+ for (const s of curSignals) {
582
+ if (EPOCH_RESET_TRIGGERS.has(String(s))) {
583
+ return { shouldReset: true, reason: `signal:${s}` };
584
+ }
585
+ }
586
+
587
+ // Trigger 2: environment fingerprint major change (platform/node version shift)
588
+ if (epoch.prev_env_fingerprint_key && currentEnvFingerprintKey &&
589
+ epoch.prev_env_fingerprint_key !== currentEnvFingerprintKey) {
590
+ return { shouldReset: true, reason: 'env_major_change' };
591
+ }
592
+
593
+ // Trigger 3: gene library version jump (>30% of genes changed)
594
+ if (epoch.prev_gene_lib_version && currentGeneLibVersion &&
595
+ epoch.prev_gene_lib_version !== currentGeneLibVersion) {
596
+ return { shouldReset: true, reason: 'gene_pool_refresh' };
597
+ }
598
+
599
+ return { shouldReset: false, reason: null };
600
+ }
601
+
602
+ function resetMemoryPreferences({ reason, currentEnvFingerprintKey, currentGeneLibVersion }) {
603
+ const ts = nowIso();
604
+ const epochId = `epoch_${Date.now()}_${stableHash(ts + (reason || ''))}`;
605
+
606
+ const epochEvent = {
607
+ type: 'MemoryGraphEvent',
608
+ kind: 'epoch_boundary',
609
+ id: `mge_${Date.now()}_${stableHash(`epoch_boundary|${ts}`)}`,
610
+ ts,
611
+ epoch: {
612
+ id: epochId,
613
+ reason: reason || 'manual',
614
+ started_at: ts,
615
+ },
616
+ };
617
+ writeMemoryGraphEvent(epochEvent);
618
+
619
+ const statePath = memoryGraphStatePath();
620
+ const state = readJsonIfExists(statePath, {});
621
+ state.current_epoch_id = epochId;
622
+ state.epoch_started_at = ts;
623
+ state.prev_env_fingerprint_key = currentEnvFingerprintKey || null;
624
+ state.prev_gene_lib_version = currentGeneLibVersion || null;
625
+ // Reset last_action to prevent stale outcome attribution
626
+ if (state.last_action) state.last_action.outcome_recorded = true;
627
+ writeJsonAtomic(statePath, state);
628
+
629
+ return { epochId, reason, started_at: ts };
630
+ }
631
+
632
+ function getMemoryAdvice({ signals, genes, driftEnabled }) {
633
+ const events = tryReadMemoryGraphEvents(2000);
634
+
635
+ // TTT-inspired epoch filtering: find the latest epoch_boundary event.
636
+ // Only use events from the current epoch for preference calculation.
637
+ // Cross-epoch events get a 0.1x weight (weak prior, not discarded).
638
+ let epochBoundaryTs = null;
639
+ for (let i = events.length - 1; i >= 0; i--) {
640
+ const ev = events[i];
641
+ if (ev && ev.kind === 'epoch_boundary' && ev.ts) {
642
+ epochBoundaryTs = Date.parse(ev.ts);
643
+ break;
644
+ }
645
+ }
646
+
647
+ // TTT-inspired: build epoch-aware edge aggregations.
648
+ // When an epoch boundary exists, split aggregation into current-epoch
649
+ // and cross-epoch sets so that ban decisions and preference scoring
650
+ // operate on current-epoch evidence, with cross-epoch data as weak priors.
651
+ const CROSS_EPOCH_WEIGHT = 0.1;
652
+
653
+ const allEdges = aggregateEdges(events);
654
+ const allGeneOutcomes = aggregateGeneOutcomes(events);
655
+
656
+ // Epoch-split: re-aggregate only current-epoch events for ban decisions.
657
+ // Use the positional index of the epoch_boundary event rather than its
658
+ // timestamp so that events written in the same millisecond are correctly
659
+ // classified as pre- or post-epoch.
660
+ let curEpochEdges = allEdges;
661
+ let curEpochGeneOutcomes = allGeneOutcomes;
662
+ let epochBoundaryIdx = -1;
663
+ if (epochBoundaryTs !== null) {
664
+ for (let i = events.length - 1; i >= 0; i--) {
665
+ const ev = events[i];
666
+ if (ev && ev.kind === 'epoch_boundary' && ev.ts) {
667
+ epochBoundaryIdx = i;
668
+ break;
669
+ }
670
+ }
671
+ }
672
+ if (epochBoundaryIdx >= 0) {
673
+ const curEpochEvents = events.slice(epochBoundaryIdx + 1);
674
+ curEpochEdges = aggregateEdges(curEpochEvents);
675
+ curEpochGeneOutcomes = aggregateGeneOutcomes(curEpochEvents);
676
+ }
677
+
678
+ const curSignals = Array.isArray(signals) ? signals : [];
679
+ const curKey = computeSignalKey(curSignals);
680
+
681
+ const bannedGeneIds = new Set();
682
+ const scoredGeneIds = [];
683
+
684
+ const seenKeys = new Set();
685
+ const candidateKeys = [];
686
+ candidateKeys.push({ key: curKey, sim: 1 });
687
+ seenKeys.add(curKey);
688
+
689
+ for (const ev of events) {
690
+ if (!ev || ev.type !== 'MemoryGraphEvent') continue;
691
+ const k = ev.signal && ev.signal.key ? String(ev.signal.key) : '(none)';
692
+ if (seenKeys.has(k)) continue;
693
+ const sigs = ev.signal && Array.isArray(ev.signal.signals) ? ev.signal.signals : [];
694
+ const sim = jaccard(curSignals, sigs);
695
+ if (sim >= 0.34) {
696
+ candidateKeys.push({ key: k, sim });
697
+ seenKeys.add(k);
698
+ }
699
+ }
700
+
701
+ let totalAttempts = 0;
702
+ const byGene = new Map();
703
+ for (const ck of candidateKeys) {
704
+ for (const g of Array.isArray(genes) ? genes : []) {
705
+ if (!g || g.type !== 'Gene' || !g.id) continue;
706
+ const k = `${ck.key}::${g.id}`;
707
+ const edge = allEdges.get(k);
708
+ const curEpochEdge = curEpochEdges.get(k);
709
+ const cur = byGene.get(g.id) || {
710
+ geneId: g.id, best: 0, attempts: 0, prior: 0, prior_attempts: 0,
711
+ rawSuccess: 0, rawFail: 0,
712
+ perKeyAttempts: 0, inert: 0, consecutiveInert: 0,
713
+ };
714
+
715
+ if (edge) {
716
+ // When an epoch boundary exists and there is current-epoch evidence
717
+ // for this edge, score from the current-epoch edge at full weight
718
+ // and treat the cross-epoch remainder as a weak prior. This avoids
719
+ // timestamp-resolution races where edge.last_ts coincides with the
720
+ // epoch boundary timestamp.
721
+ let weighted;
722
+ if (epochBoundaryTs && curEpochEdge && (curEpochEdge.success + curEpochEdge.fail) > 0) {
723
+ const ceEx = edgeExpectedSuccess(curEpochEdge, { half_life_days: 30 });
724
+ weighted = ceEx.value * ck.sim;
725
+ } else {
726
+ const ex = edgeExpectedSuccess(edge, { half_life_days: 30 });
727
+ let epochFactor = 1.0;
728
+ if (epochBoundaryTs) epochFactor = CROSS_EPOCH_WEIGHT;
729
+ weighted = ex.value * ck.sim * epochFactor;
730
+ }
731
+ const ex = edgeExpectedSuccess(edge, { half_life_days: 30 });
732
+ if (weighted > cur.best) cur.best = weighted;
733
+ cur.attempts = Math.max(cur.attempts, ex.total);
734
+
735
+ const ceEdge = curEpochEdge || { success: 0, fail: 0, inert: 0, consecutive_inert: 0 };
736
+ cur.rawSuccess += (Number(ceEdge.success) || 0);
737
+ cur.rawFail += (Number(ceEdge.fail) || 0);
738
+ if (ck.sim >= 0.8) {
739
+ const ceTotal = (Number(ceEdge.success) || 0) + (Number(ceEdge.fail) || 0);
740
+ cur.perKeyAttempts += ceTotal;
741
+ cur.inert += (Number(ceEdge.inert) || 0);
742
+ // Trailing inert run on the most-similar key (sim>=0.8). Take the max so
743
+ // the strongest stagnation signal across matching keys drives the ban.
744
+ cur.consecutiveInert = Math.max(cur.consecutiveInert, Number(ceEdge.consecutive_inert) || 0);
745
+ }
746
+ totalAttempts += ex.total;
747
+ }
748
+
749
+ const gEdge = allGeneOutcomes.get(String(g.id));
750
+ const ceGEdge = curEpochGeneOutcomes.get(String(g.id));
751
+ if (gEdge) {
752
+ // Same logic: prefer current-epoch gene outcome when available.
753
+ let gWeighted;
754
+ if (epochBoundaryTs && ceGEdge && (ceGEdge.success + ceGEdge.fail) > 0) {
755
+ const ceGx = edgeExpectedSuccess(ceGEdge, { half_life_days: 45 });
756
+ gWeighted = ceGx.value;
757
+ } else {
758
+ const gx = edgeExpectedSuccess(gEdge, { half_life_days: 45 });
759
+ let gEpochFactor = 1.0;
760
+ if (epochBoundaryTs) gEpochFactor = CROSS_EPOCH_WEIGHT;
761
+ gWeighted = gx.value * gEpochFactor;
762
+ }
763
+ const gx = edgeExpectedSuccess(gEdge, { half_life_days: 45 });
764
+ cur.prior = Math.max(cur.prior, gWeighted);
765
+ cur.prior_attempts = Math.max(cur.prior_attempts, gx.total);
766
+ }
767
+
768
+ byGene.set(g.id, cur);
769
+ }
770
+ }
771
+
772
+ for (const [geneId, info] of byGene.entries()) {
773
+ const combined = info.best > 0 ? info.best + info.prior * 0.12 : info.prior * 0.4;
774
+ const hasPositiveEvidence = info.rawSuccess > 0 && info.rawSuccess > info.rawFail;
775
+ scoredGeneIds.push({
776
+ geneId,
777
+ score: combined,
778
+ attempts: info.attempts,
779
+ prior: info.prior,
780
+ hasPositiveEvidence,
781
+ });
782
+ // Per-signal-key ban: suppress a gene when it has failed
783
+ // repeatedly on keys similar to the current one (sim >= 0.8).
784
+ // The old global ban used `info.attempts >= 4`, which could
785
+ // incorrectly suppress a gene that performed well on unrelated
786
+ // signals but poorly on one specific key.
787
+ //
788
+ // The previous implementation gated this on `!driftEnabled`, which
789
+ // produced a self-defeating feedback loop: a gene that kept failing
790
+ // would trigger plateau detection in evolve.js, plateau detection
791
+ // forced drift on, and drift then bypassed this ban -- so the same
792
+ // failing gene kept being re-selected. Bans now apply regardless of
793
+ // drift: drift's purpose is to explore new combinations, not to
794
+ // resurrect proven failures. The `useDrift` branch in selector.js
795
+ // also honors bannedGeneIds for the same reason.
796
+ if (info.perKeyAttempts >= cfg.GENE_BAN_PER_KEY_ATTEMPTS && info.best < cfg.GENE_BAN_BEST_THRESHOLD) {
797
+ bannedGeneIds.add(geneId);
798
+ }
799
+ if (info.perKeyAttempts < 2 && info.prior_attempts >= 5 && info.prior < 0.10) {
800
+ bannedGeneIds.add(geneId);
801
+ }
802
+ // Issue EvoMap/evolver#562: ban a gene stuck producing inert (zero-work,
803
+ // `stable_no_error`) outcomes for this signal. A sole-matching gene is
804
+ // re-selected every cycle -- selector drift only diversifies when >1 gene
805
+ // matches -- and the failure-streak ban never trips because nothing "fails",
806
+ // so it dominates --loop mode indefinitely while producing no artifacts.
807
+ // Banning it lets the selector fall through to mutation (null -> fresh gene),
808
+ // restoring diversity. Gated on the consecutive-trailing inert run (reset by
809
+ // any real success/failure in aggregateEdges) AND zero real success on this
810
+ // key, so a gene that ever does real work is never punished for idle cycles.
811
+ if (info.consecutiveInert >= cfg.GENE_INERT_BAN_STREAK && info.rawSuccess === 0) {
812
+ bannedGeneIds.add(geneId);
813
+ }
814
+ }
815
+
816
+ scoredGeneIds.sort((a, b) => b.score - a.score);
817
+ const topScored = scoredGeneIds.length ? scoredGeneIds[0] : null;
818
+ const preferredGeneId = (topScored && topScored.score > 0 && topScored.attempts > 0 && topScored.hasPositiveEvidence)
819
+ ? topScored.geneId
820
+ : null;
821
+
822
+ const explanation = [];
823
+ if (preferredGeneId) explanation.push(`memory_prefer:${preferredGeneId}`);
824
+ if (bannedGeneIds.size) explanation.push(`memory_ban:${Array.from(bannedGeneIds).slice(0, 6).join(',')}`);
825
+ if (preferredGeneId) {
826
+ const top = scoredGeneIds.find(x => x && x.geneId === preferredGeneId);
827
+ if (top && Number.isFinite(Number(top.prior)) && top.prior > 0) explanation.push(`gene_prior:${top.prior.toFixed(3)}`);
828
+ }
829
+ if (driftEnabled) explanation.push('random_drift:enabled');
830
+
831
+ return {
832
+ currentSignalKey: curKey,
833
+ preferredGeneId,
834
+ bannedGeneIds,
835
+ explanation,
836
+ totalAttempts,
837
+ };
838
+ }
839
+
840
+ function recordSignalSnapshot({ signals, observations }) {
841
+ const signalKey = computeSignalKey(signals);
842
+ const ts = nowIso();
843
+ const errsig = extractErrorSignatureFromSignals(signals);
844
+ const ev = {
845
+ type: 'MemoryGraphEvent',
846
+ kind: 'signal',
847
+ id: `mge_${Date.now()}_${stableHash(`${signalKey}|signal|${ts}`)}`,
848
+ ts,
849
+ signal: {
850
+ key: signalKey,
851
+ signals: Array.isArray(signals) ? signals : [],
852
+ error_signature: errsig || null,
853
+ },
854
+ observed: observations && typeof observations === 'object' ? observations : null,
855
+ };
856
+ writeMemoryGraphEvent(ev);
857
+ return ev;
858
+ }
859
+
860
+ function buildHypothesisText({ signalKey, signals, geneId, geneCategory, driftEnabled }) {
861
+ const sigCount = Array.isArray(signals) ? signals.length : 0;
862
+ const drift = driftEnabled ? 'drift' : 'directed';
863
+ const g = geneId ? `${geneId}${geneCategory ? `(${geneCategory})` : ''}` : '(none)';
864
+ return `Given signal_key=${signalKey} with ${sigCount} signals, selecting gene=${g} under mode=${drift} is expected to reduce repeated errors and improve stability.`;
865
+ }
866
+
867
+ function recordHypothesis({
868
+ signals,
869
+ mutation,
870
+ personality_state,
871
+ selectedGene,
872
+ selector,
873
+ driftEnabled,
874
+ selectedBy,
875
+ capsulesUsed,
876
+ observations,
877
+ }) {
878
+ const signalKey = computeSignalKey(signals);
879
+ const geneId = selectedGene && selectedGene.id ? String(selectedGene.id) : null;
880
+ const geneCategory = selectedGene && selectedGene.category ? String(selectedGene.category) : null;
881
+ const ts = nowIso();
882
+ const errsig = extractErrorSignatureFromSignals(signals);
883
+ const hypothesisId = `hyp_${Date.now()}_${stableHash(`${signalKey}|${geneId || 'none'}|${ts}`)}`;
884
+ const personalityState = personality_state || null;
885
+ const mutNorm = mutation && isValidMutation(mutation) ? normalizeMutation(mutation) : null;
886
+ const psNorm = personalityState && isValidPersonalityState(personalityState) ? normalizePersonalityState(personalityState) : null;
887
+ const ev = {
888
+ type: 'MemoryGraphEvent',
889
+ kind: 'hypothesis',
890
+ id: `mge_${Date.now()}_${stableHash(`${hypothesisId}|${ts}`)}`,
891
+ ts,
892
+ signal: { key: signalKey, signals: Array.isArray(signals) ? signals : [], error_signature: errsig || null },
893
+ hypothesis: {
894
+ id: hypothesisId,
895
+ text: buildHypothesisText({ signalKey, signals, geneId, geneCategory, driftEnabled }),
896
+ predicted_outcome: { status: null, score: null },
897
+ },
898
+ mutation: mutNorm
899
+ ? {
900
+ id: mutNorm.id,
901
+ category: mutNorm.category,
902
+ trigger_signals: mutNorm.trigger_signals,
903
+ target: mutNorm.target,
904
+ expected_effect: mutNorm.expected_effect,
905
+ risk_level: mutNorm.risk_level,
906
+ }
907
+ : null,
908
+ personality: psNorm
909
+ ? {
910
+ key: personalityKey(psNorm),
911
+ state: psNorm,
912
+ }
913
+ : null,
914
+ gene: { id: geneId, category: geneCategory },
915
+ action: {
916
+ drift: !!driftEnabled,
917
+ selected_by: selectedBy || 'selector',
918
+ selector: selector || null,
919
+ },
920
+ capsules: {
921
+ used: Array.isArray(capsulesUsed) ? capsulesUsed.map(String).filter(Boolean) : [],
922
+ },
923
+ observed: observations && typeof observations === 'object' ? observations : null,
924
+ };
925
+ writeMemoryGraphEvent(ev);
926
+ return { hypothesisId, signalKey };
927
+ }
928
+
929
+ function hasErrorSignal(signals) {
930
+ const list = Array.isArray(signals) ? signals : [];
931
+ // Check for any signal that indicates an active error state.
932
+ // The original implementation only checked for 'log_error', missing common
933
+ // error indicators like 'error', 'exception', 'failed', and errsig: entries.
934
+ const ERROR_INDICATORS = ['log_error', 'error', 'exception', 'failed', 'unstable'];
935
+ for (const sig of list) {
936
+ const s = String(sig).toLowerCase();
937
+ if (ERROR_INDICATORS.some(ind => s === ind)) return true;
938
+ if (s.startsWith('errsig:')) return true;
939
+ }
940
+ return false;
941
+ }
942
+
943
+ function recordAttempt({
944
+ signals,
945
+ mutation,
946
+ personality_state,
947
+ selectedGene,
948
+ selector,
949
+ driftEnabled,
950
+ selectedBy,
951
+ hypothesisId,
952
+ capsulesUsed,
953
+ observations,
954
+ chunkGenes,
955
+ }) {
956
+ const signalKey = computeSignalKey(signals);
957
+ const geneId = selectedGene && selectedGene.id ? String(selectedGene.id) : null;
958
+ const geneCategory = selectedGene && selectedGene.category ? String(selectedGene.category) : null;
959
+ const ts = nowIso();
960
+ const errsig = extractErrorSignatureFromSignals(signals);
961
+ const actionId = `act_${Date.now()}_${stableHash(`${signalKey}|${geneId || 'none'}|${ts}`)}`;
962
+ const personalityState = personality_state || null;
963
+ const mutNorm = mutation && isValidMutation(mutation) ? normalizeMutation(mutation) : null;
964
+ const psNorm = personalityState && isValidPersonalityState(personalityState) ? normalizePersonalityState(personalityState) : null;
965
+
966
+ // TTT-inspired: multi-gene chunk tracking
967
+ const chunkGeneIds = Array.isArray(chunkGenes)
968
+ ? chunkGenes.map(function (g) { return g && g.id ? String(g.id) : null; }).filter(Boolean)
969
+ : [];
970
+
971
+ const ev = {
972
+ type: 'MemoryGraphEvent',
973
+ kind: 'attempt',
974
+ id: `mge_${Date.now()}_${stableHash(actionId)}`,
975
+ ts,
976
+ signal: { key: signalKey, signals: Array.isArray(signals) ? signals : [], error_signature: errsig || null },
977
+ mutation: mutNorm
978
+ ? {
979
+ id: mutNorm.id,
980
+ category: mutNorm.category,
981
+ trigger_signals: mutNorm.trigger_signals,
982
+ target: mutNorm.target,
983
+ expected_effect: mutNorm.expected_effect,
984
+ risk_level: mutNorm.risk_level,
985
+ }
986
+ : null,
987
+ personality: psNorm
988
+ ? {
989
+ key: personalityKey(psNorm),
990
+ state: psNorm,
991
+ }
992
+ : null,
993
+ gene: { id: geneId, category: geneCategory },
994
+ hypothesis: hypothesisId ? { id: String(hypothesisId) } : null,
995
+ action: {
996
+ id: actionId,
997
+ drift: !!driftEnabled,
998
+ selected_by: selectedBy || 'selector',
999
+ selector: selector || null,
1000
+ },
1001
+ capsules: {
1002
+ used: Array.isArray(capsulesUsed) ? capsulesUsed.map(String).filter(Boolean) : [],
1003
+ },
1004
+ observed: observations && typeof observations === 'object' ? observations : null,
1005
+ };
1006
+
1007
+ writeMemoryGraphEvent(ev);
1008
+
1009
+ // State is mutable; graph is append-only.
1010
+ const statePath = memoryGraphStatePath();
1011
+ const state = readJsonIfExists(statePath, { last_action: null });
1012
+ state.last_action = {
1013
+ action_id: actionId,
1014
+ signal_key: signalKey,
1015
+ signals: Array.isArray(signals) ? signals : [],
1016
+ mutation_id: mutNorm ? mutNorm.id : null,
1017
+ mutation_category: mutNorm ? mutNorm.category : null,
1018
+ mutation_risk_level: mutNorm ? mutNorm.risk_level : null,
1019
+ personality_key: psNorm ? personalityKey(psNorm) : null,
1020
+ personality_state: psNorm || null,
1021
+ gene_id: geneId,
1022
+ gene_category: geneCategory,
1023
+ hypothesis_id: hypothesisId ? String(hypothesisId) : null,
1024
+ capsules_used: Array.isArray(capsulesUsed) ? capsulesUsed.map(String).filter(Boolean) : [],
1025
+ had_error: hasErrorSignal(signals),
1026
+ created_at: ts,
1027
+ outcome_recorded: false,
1028
+ baseline_observed: observations && typeof observations === 'object' ? observations : null,
1029
+ chunk_gene_ids: chunkGeneIds.length > 0 ? chunkGeneIds : undefined,
1030
+ };
1031
+ writeJsonAtomic(statePath, state);
1032
+
1033
+ return { actionId, signalKey };
1034
+ }
1035
+
1036
+ function inferOutcomeFromSignals({ prevHadError, currentHasError }) {
1037
+ if (prevHadError && !currentHasError) return { status: 'success', score: 0.85, note: 'error_cleared' };
1038
+ if (prevHadError && currentHasError) return { status: 'failed', score: 0.2, note: 'error_persisted' };
1039
+ if (!prevHadError && currentHasError) return { status: 'failed', score: 0.15, note: 'new_error_appeared' };
1040
+ return { status: 'success', score: 0.6, note: 'stable_no_error' };
1041
+ }
1042
+
1043
+ function clamp01(x) {
1044
+ const n = Number(x);
1045
+ if (!Number.isFinite(n)) return 0;
1046
+ return Math.max(0, Math.min(1, n));
1047
+ }
1048
+
1049
+ function tryParseLastEvolutionEventOutcome(evidenceText) {
1050
+ // Scan tail text for an EvolutionEvent JSON line and extract its outcome.
1051
+ const s = String(evidenceText || '');
1052
+ if (!s) return null;
1053
+ const lines = s.split('\n').slice(-400);
1054
+ for (let i = lines.length - 1; i >= 0; i--) {
1055
+ const line = lines[i].trim();
1056
+ if (!line) continue;
1057
+ if (!line.includes('"type"') || !line.includes('EvolutionEvent')) continue;
1058
+ try {
1059
+ const obj = JSON.parse(line);
1060
+ if (!obj || obj.type !== 'EvolutionEvent') continue;
1061
+ const o = obj.outcome && typeof obj.outcome === 'object' ? obj.outcome : null;
1062
+ if (!o) continue;
1063
+ const status = o.status === 'success' || o.status === 'failed' ? o.status : null;
1064
+ const score = Number.isFinite(Number(o.score)) ? clamp01(Number(o.score)) : null;
1065
+ if (!status && score == null) continue;
1066
+ return {
1067
+ status: status || (score != null && score >= 0.5 ? 'success' : 'failed'),
1068
+ score: score != null ? score : status === 'success' ? 0.75 : 0.25,
1069
+ note: 'evolutionevent_observed',
1070
+ };
1071
+ } catch (e) {
1072
+ continue;
1073
+ }
1074
+ }
1075
+ return null;
1076
+ }
1077
+
1078
+ // Decorative (non-actionable) signals that should not count toward clarity.
1079
+ const DECORATIVE_SIGNALS = new Set([
1080
+ 'stable_success_plateau', 'memory_missing', 'evolution_saturation',
1081
+ 'force_steady_state', 'empty_cycle_loop_detected',
1082
+ ]);
1083
+
1084
+ function computePredictiveBoost({ baselineObserved, currentObserved, signals }) {
1085
+ let boost = 0;
1086
+
1087
+ const curSignals = Array.isArray(signals) ? signals : [];
1088
+ const prevSignalCount = baselineObserved && Number.isFinite(Number(baselineObserved.signal_count))
1089
+ ? Number(baselineObserved.signal_count) : 0;
1090
+ const curActionable = curSignals.filter(function (s) { return !DECORATIVE_SIGNALS.has(String(s)); });
1091
+
1092
+ // (a) Signal clarity: more actionable signals relative to total = easier next selection
1093
+ if (curActionable.length > 0 && curSignals.length > 0) {
1094
+ const clarity = curActionable.length / curSignals.length;
1095
+ boost += Math.min(0.08, clarity * 0.08);
1096
+ }
1097
+
1098
+ // (b) Trajectory trend: read recent outcomes from memory graph to detect momentum.
1099
+ // Consecutive successes = high predictability; consecutive failures = low.
1100
+ try {
1101
+ const recentEvents = tryReadMemoryGraphEvents(50);
1102
+ const outcomes = [];
1103
+ for (let i = recentEvents.length - 1; i >= 0 && outcomes.length < 5; i--) {
1104
+ const ev = recentEvents[i];
1105
+ if (ev && ev.kind === 'outcome' && ev.outcome) outcomes.push(ev.outcome.status);
1106
+ }
1107
+ if (outcomes.length >= 2) {
1108
+ const successes = outcomes.filter(function (s) { return s === 'success'; }).length;
1109
+ const trend = (successes / outcomes.length) - 0.5; // [-0.5, 0.5]
1110
+ boost += Math.max(-0.06, Math.min(0.06, trend * 0.12));
1111
+ }
1112
+ } catch (_) {}
1113
+
1114
+ // (c) Frontier touched: if current signals include a curriculum_target, it means
1115
+ // this cycle is pushing the capability boundary -- reward forward exploration.
1116
+ const frontierTouched = curSignals.some(function (s) {
1117
+ return String(s).startsWith('curriculum_target:');
1118
+ });
1119
+ if (frontierTouched) boost += 0.04;
1120
+
1121
+ return {
1122
+ boost: Math.max(-0.1, Math.min(0.1, boost)),
1123
+ signal_clarity: curSignals.length > 0 ? curActionable.length / curSignals.length : 0,
1124
+ trajectory_trend: boost,
1125
+ frontier_touched: frontierTouched,
1126
+ };
1127
+ }
1128
+
1129
+ function inferOutcomeEnhanced({ prevHadError, currentHasError, baselineObserved, currentObserved, signals }) {
1130
+ const evidence =
1131
+ currentObserved &&
1132
+ currentObserved.evidence &&
1133
+ (currentObserved.evidence.recent_session_tail || currentObserved.evidence.today_log_tail)
1134
+ ? currentObserved.evidence
1135
+ : null;
1136
+ const combinedEvidence = evidence
1137
+ ? `${String(evidence.recent_session_tail || '')}\n${String(evidence.today_log_tail || '')}`
1138
+ : '';
1139
+ const observed = tryParseLastEvolutionEventOutcome(combinedEvidence);
1140
+ if (observed) return observed;
1141
+
1142
+ const base = inferOutcomeFromSignals({ prevHadError, currentHasError });
1143
+
1144
+ const prevErrCount =
1145
+ baselineObserved && Number.isFinite(Number(baselineObserved.recent_error_count))
1146
+ ? Number(baselineObserved.recent_error_count)
1147
+ : null;
1148
+ const curErrCount =
1149
+ currentObserved && Number.isFinite(Number(currentObserved.recent_error_count))
1150
+ ? Number(currentObserved.recent_error_count)
1151
+ : null;
1152
+
1153
+ let score = base.score;
1154
+ if (prevErrCount != null && curErrCount != null) {
1155
+ const delta = prevErrCount - curErrCount;
1156
+ score += Math.max(-0.12, Math.min(0.12, delta / 50));
1157
+ }
1158
+
1159
+ const prevScan =
1160
+ baselineObserved && Number.isFinite(Number(baselineObserved.scan_ms)) ? Number(baselineObserved.scan_ms) : null;
1161
+ const curScan =
1162
+ currentObserved && Number.isFinite(Number(currentObserved.scan_ms)) ? Number(currentObserved.scan_ms) : null;
1163
+ if (prevScan != null && curScan != null && prevScan > 0) {
1164
+ const ratio = (prevScan - curScan) / prevScan;
1165
+ score += Math.max(-0.06, Math.min(0.06, ratio));
1166
+ }
1167
+
1168
+ // TTT-inspired predictive boost: reward actions that improve next-cycle evolvability
1169
+ const predictive = computePredictiveBoost({ baselineObserved, currentObserved, signals });
1170
+ score += predictive.boost;
1171
+
1172
+ return {
1173
+ status: base.status,
1174
+ score: clamp01(score),
1175
+ note: `${base.note}|heuristic_delta|predictive`,
1176
+ predictive: {
1177
+ signal_clarity: Math.round(predictive.signal_clarity * 1000) / 1000,
1178
+ trajectory_trend: Math.round(predictive.trajectory_trend * 1000) / 1000,
1179
+ frontier_touched: predictive.frontier_touched,
1180
+ },
1181
+ };
1182
+ }
1183
+
1184
+ function buildConfidenceEdgeEvent({ signalKey, signals, geneId, geneCategory, outcomeEventId, halfLifeDays }) {
1185
+ const events = tryReadMemoryGraphEvents(2000);
1186
+ const edges = aggregateEdges(events);
1187
+ const k = `${signalKey}::${geneId}`;
1188
+ const edge = edges.get(k) || { success: 0, fail: 0, last_ts: null };
1189
+ const ex = edgeExpectedSuccess(edge, { half_life_days: halfLifeDays });
1190
+ const ts = nowIso();
1191
+ return {
1192
+ type: 'MemoryGraphEvent',
1193
+ kind: 'confidence_edge',
1194
+ id: `mge_${Date.now()}_${stableHash(`${signalKey}|${geneId}|confidence|${ts}`)}`,
1195
+ ts,
1196
+ signal: { key: signalKey, signals: Array.isArray(signals) ? signals : [] },
1197
+ gene: { id: geneId, category: geneCategory || null },
1198
+ edge: { signal_key: signalKey, gene_id: geneId },
1199
+ stats: {
1200
+ success: Number(edge.success) || 0,
1201
+ fail: Number(edge.fail) || 0,
1202
+ attempts: Number(ex.total) || 0,
1203
+ p: ex.p,
1204
+ decay_weight: ex.w,
1205
+ value: ex.value,
1206
+ half_life_days: halfLifeDays,
1207
+ updated_at: ts,
1208
+ },
1209
+ derived_from: { outcome_event_id: outcomeEventId || null },
1210
+ };
1211
+ }
1212
+
1213
+ function buildGeneOutcomeConfidenceEvent({ geneId, geneCategory, outcomeEventId, halfLifeDays }) {
1214
+ const events = tryReadMemoryGraphEvents(2000);
1215
+ const geneOutcomes = aggregateGeneOutcomes(events);
1216
+ const edge = geneOutcomes.get(String(geneId)) || { success: 0, fail: 0, last_ts: null };
1217
+ const ex = edgeExpectedSuccess(edge, { half_life_days: halfLifeDays });
1218
+ const ts = nowIso();
1219
+ return {
1220
+ type: 'MemoryGraphEvent',
1221
+ kind: 'confidence_gene_outcome',
1222
+ id: `mge_${Date.now()}_${stableHash(`${geneId}|gene_outcome|confidence|${ts}`)}`,
1223
+ ts,
1224
+ gene: { id: String(geneId), category: geneCategory || null },
1225
+ edge: { gene_id: String(geneId) },
1226
+ stats: {
1227
+ success: Number(edge.success) || 0,
1228
+ fail: Number(edge.fail) || 0,
1229
+ attempts: Number(ex.total) || 0,
1230
+ p: ex.p,
1231
+ decay_weight: ex.w,
1232
+ value: ex.value,
1233
+ half_life_days: halfLifeDays,
1234
+ updated_at: ts,
1235
+ },
1236
+ derived_from: { outcome_event_id: outcomeEventId || null },
1237
+ };
1238
+ }
1239
+
1240
+ function recordOutcomeFromState({ signals, observations }) {
1241
+ const statePath = memoryGraphStatePath();
1242
+ const state = readJsonIfExists(statePath, { last_action: null });
1243
+ const last = state && state.last_action ? state.last_action : null;
1244
+ if (!last || !last.action_id) return null;
1245
+ if (last.outcome_recorded) return null;
1246
+
1247
+ const currentHasError = hasErrorSignal(signals);
1248
+ const inferred = inferOutcomeEnhanced({
1249
+ prevHadError: !!last.had_error,
1250
+ currentHasError,
1251
+ baselineObserved: last.baseline_observed || null,
1252
+ currentObserved: observations || null,
1253
+ signals,
1254
+ });
1255
+ const ts = nowIso();
1256
+ const errsig = extractErrorSignatureFromSignals(signals);
1257
+ const ev = {
1258
+ type: 'MemoryGraphEvent',
1259
+ kind: 'outcome',
1260
+ id: `mge_${Date.now()}_${stableHash(`${last.action_id}|outcome|${ts}`)}`,
1261
+ ts,
1262
+ signal: {
1263
+ key: String(last.signal_key || '(none)'),
1264
+ signals: Array.isArray(last.signals) ? last.signals : [],
1265
+ error_signature: errsig || null,
1266
+ },
1267
+ mutation:
1268
+ last.mutation_id || last.mutation_category || last.mutation_risk_level
1269
+ ? {
1270
+ id: last.mutation_id || null,
1271
+ category: last.mutation_category || null,
1272
+ risk_level: last.mutation_risk_level || null,
1273
+ }
1274
+ : null,
1275
+ personality:
1276
+ last.personality_key || last.personality_state
1277
+ ? {
1278
+ key: last.personality_key || null,
1279
+ state: last.personality_state || null,
1280
+ }
1281
+ : null,
1282
+ gene: { id: last.gene_id || null, category: last.gene_category || null },
1283
+ action: { id: String(last.action_id) },
1284
+ hypothesis: last.hypothesis_id ? { id: String(last.hypothesis_id) } : null,
1285
+ outcome: {
1286
+ status: inferred.status,
1287
+ score: inferred.score,
1288
+ note: inferred.note,
1289
+ observed: { current_signals: Array.isArray(signals) ? signals : [] },
1290
+ predictive: inferred.predictive || null,
1291
+ },
1292
+ confidence: {
1293
+ // This is an interpretable, decayed success estimate derived from outcomes; aggregation is computed at read-time.
1294
+ half_life_days: 30,
1295
+ },
1296
+ observed: observations && typeof observations === 'object' ? observations : null,
1297
+ baseline: last.baseline_observed || null,
1298
+ capsules: {
1299
+ used: Array.isArray(last.capsules_used) ? last.capsules_used : [],
1300
+ },
1301
+ };
1302
+
1303
+ // P4-a Slice A: when this cycle reused a Hub asset and the operator opted into
1304
+ // shadow mode, attach reuse attribution so the Hub can LATER (Slice B, gated +
1305
+ // signed off) credit the source publisher. Default off => null => no field =>
1306
+ // byte-identical to pre-P4-a. Data-only: moves no money, lands in the
1307
+ // GDI-inert MemoryGraphEvent.payload blob, read by no payout path today.
1308
+ const reuseAttribution = buildReuseAttribution(last);
1309
+ if (reuseAttribution) ev.reuse_attribution = reuseAttribution;
1310
+
1311
+ // P4-a Slice B (client side): when this cycle DIRECTLY reused a Hub asset and
1312
+ // the operator opted in (EVOLVER_OUTCOME_REPORT=on), POST the outcome to the
1313
+ // Hub's /a2a/memory/record so the reuse-reward attribution pipeline credits the
1314
+ // source publisher (it reads that endpoint, not the inert reuse_attribution
1315
+ // blob). Gated to source_type==='reused' (direct reuse = a real usage signal,
1316
+ // not 'reference') and to non-inert outcomes (skip stable_no_error zero-work
1317
+ // successes). Reuses the timestamp-guarded reuseAttribution so it inherits the
1318
+ // cycle-correlation (Bugbot #186). Best-effort; the Hub re-verifies the claim.
1319
+ try {
1320
+ if (
1321
+ reuseAttribution &&
1322
+ reuseAttribution.source_type === 'reused' &&
1323
+ require('../config').outcomeReportMode() === 'on' &&
1324
+ String(inferred.note || '').indexOf('stable_no_error') === -1
1325
+ ) {
1326
+ reportReuseOutcome({
1327
+ signals: Array.isArray(last.signals) ? last.signals : [],
1328
+ status: inferred.status,
1329
+ used_asset_ids: [reuseAttribution.reused_asset_id],
1330
+ score: typeof inferred.score === 'number' ? inferred.score : undefined,
1331
+ });
1332
+ }
1333
+ } catch (_) { /* opt-in reporting must never break local outcome recording */ }
1334
+
1335
+ writeMemoryGraphEvent(ev);
1336
+
1337
+ // Persist explicit confidence snapshots (append-only) for auditability.
1338
+ try {
1339
+ if (last.gene_id) {
1340
+ const edgeEv = buildConfidenceEdgeEvent({
1341
+ signalKey: String(last.signal_key || '(none)'),
1342
+ signals: Array.isArray(last.signals) ? last.signals : [],
1343
+ geneId: String(last.gene_id),
1344
+ geneCategory: last.gene_category || null,
1345
+ outcomeEventId: ev.id,
1346
+ halfLifeDays: 30,
1347
+ });
1348
+ writeMemoryGraphEvent(edgeEv);
1349
+
1350
+ const geneEv = buildGeneOutcomeConfidenceEvent({
1351
+ geneId: String(last.gene_id),
1352
+ geneCategory: last.gene_category || null,
1353
+ outcomeEventId: ev.id,
1354
+ halfLifeDays: 45,
1355
+ });
1356
+ writeMemoryGraphEvent(geneEv);
1357
+ }
1358
+ // TTT-inspired: record confidence edges for all chunk genes (shared outcome)
1359
+ if (Array.isArray(last.chunk_gene_ids)) {
1360
+ for (const cgId of last.chunk_gene_ids) {
1361
+ if (!cgId || cgId === last.gene_id) continue;
1362
+ try {
1363
+ const chunkEdgeEv = buildConfidenceEdgeEvent({
1364
+ signalKey: String(last.signal_key || '(none)'),
1365
+ signals: Array.isArray(last.signals) ? last.signals : [],
1366
+ geneId: String(cgId),
1367
+ geneCategory: null,
1368
+ outcomeEventId: ev.id,
1369
+ halfLifeDays: 30,
1370
+ });
1371
+ writeMemoryGraphEvent(chunkEdgeEv);
1372
+ const chunkGeneEv = buildGeneOutcomeConfidenceEvent({
1373
+ geneId: String(cgId),
1374
+ geneCategory: null,
1375
+ outcomeEventId: ev.id,
1376
+ halfLifeDays: 45,
1377
+ });
1378
+ writeMemoryGraphEvent(chunkGeneEv);
1379
+ } catch (_) {}
1380
+ }
1381
+ }
1382
+ } catch (e) {}
1383
+
1384
+ last.outcome_recorded = true;
1385
+ last.outcome_recorded_at = ts;
1386
+ state.last_action = last;
1387
+ writeJsonAtomic(statePath, state);
1388
+
1389
+ return ev;
1390
+ }
1391
+
1392
+ function recordExternalCandidate({ asset, source, signals }) {
1393
+ // Append-only annotation: external assets enter as candidates only.
1394
+ // This does not affect outcome aggregation (which only uses kind === 'outcome').
1395
+ const a = asset && typeof asset === 'object' ? asset : null;
1396
+ const type = a && a.type ? String(a.type) : null;
1397
+ const id = a && a.id ? String(a.id) : null;
1398
+ if (!type || !id) return null;
1399
+
1400
+ const ts = nowIso();
1401
+ const signalKey = computeSignalKey(signals);
1402
+ const ev = {
1403
+ type: 'MemoryGraphEvent',
1404
+ kind: 'external_candidate',
1405
+ id: `mge_${Date.now()}_${stableHash(`${type}|${id}|external|${ts}`)}`,
1406
+ ts,
1407
+ signal: { key: signalKey, signals: Array.isArray(signals) ? signals : [] },
1408
+ external: {
1409
+ source: source || 'external',
1410
+ received_at: ts,
1411
+ },
1412
+ asset: { type, id },
1413
+ candidate: {
1414
+ // Minimal hints for later local triggering/validation.
1415
+ trigger: type === 'Capsule' && Array.isArray(a.trigger) ? a.trigger : [],
1416
+ gene: type === 'Capsule' && a.gene ? String(a.gene) : null,
1417
+ confidence: type === 'Capsule' && Number.isFinite(Number(a.confidence)) ? Number(a.confidence) : null,
1418
+ },
1419
+ };
1420
+
1421
+ writeMemoryGraphEvent(ev);
1422
+ return ev;
1423
+ }
1424
+
1425
+ module.exports = {
1426
+ memoryGraphPath,
1427
+ computeSignalKey,
1428
+ tryReadMemoryGraphEvents,
1429
+ writeMemoryGraphEvent,
1430
+ getMemoryAdvice,
1431
+ recordSignalSnapshot,
1432
+ recordHypothesis,
1433
+ recordAttempt,
1434
+ recordOutcomeFromState,
1435
+ reportReuseOutcome,
1436
+ recordExternalCandidate,
1437
+ computePredictiveBoost,
1438
+ checkEpochBoundary,
1439
+ resetMemoryPreferences,
1440
+ readCurrentEpoch,
1441
+ // Rotation helpers (issue #519). Exposed so operators / tests can
1442
+ // force a rotation and inspect config without monkey-patching.
1443
+ rotateMemoryGraphNow,
1444
+ maybeRotateMemoryGraph,
1445
+ rotationEnabled,
1446
+ rotationMaxSizeBytes,
1447
+ rotationRetentionCount,
1448
+ };
1449
+