@evomap/evolver 1.89.11 → 1.89.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. package/.cursor/BUGBOT.md +182 -0
  2. package/.env.example +68 -0
  3. package/.git-commit-guard-token +1 -0
  4. package/.github/CODEOWNERS +63 -0
  5. package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
  6. package/.github/pull_request_template.md +45 -0
  7. package/.github/workflows/test.yml +75 -0
  8. package/CHANGELOG.md +1367 -0
  9. package/README.md +90 -537
  10. package/README.public.md +578 -0
  11. package/SECURITY.md +108 -0
  12. package/assets/gep/events.jsonl +3 -0
  13. package/examples/atp-consumer-quickstart.md +100 -0
  14. package/examples/hello-world.md +38 -0
  15. package/package.json +6 -18
  16. package/proxy-package.json +39 -0
  17. package/public.manifest.json +145 -0
  18. package/src/evolve/guards.js +721 -1
  19. package/src/evolve/pipeline/collect.js +1283 -1
  20. package/src/evolve/pipeline/dispatch.js +421 -1
  21. package/src/evolve/pipeline/enrich.js +440 -1
  22. package/src/evolve/pipeline/hub.js +319 -1
  23. package/src/evolve/pipeline/select.js +274 -1
  24. package/src/evolve/pipeline/signals.js +206 -1
  25. package/src/evolve/utils.js +264 -1
  26. package/src/evolve.js +350 -1
  27. package/src/gep/a2aProtocol.js +4463 -1
  28. package/src/gep/antiAbuseTelemetry.js +233 -1
  29. package/src/gep/autoDistillConv.js +205 -1
  30. package/src/gep/autoDistillLlm.js +315 -1
  31. package/src/gep/candidateEval.js +92 -1
  32. package/src/gep/candidates.js +198 -1
  33. package/src/gep/contentHash.js +30 -1
  34. package/src/gep/conversationDistiller.js +270 -0
  35. package/src/gep/conversationSniffer.js +266 -1
  36. package/src/gep/crypto.js +89 -1
  37. package/src/gep/curriculum.js +163 -1
  38. package/src/gep/deviceId.js +218 -1
  39. package/src/gep/envFingerprint.js +118 -1
  40. package/src/gep/epigenetics.js +31 -1
  41. package/src/gep/execBridge.js +712 -1
  42. package/src/gep/explore.js +289 -1
  43. package/src/gep/hash.js +15 -1
  44. package/src/gep/hubFetch.js +608 -1
  45. package/src/gep/hubReview.js +207 -1
  46. package/src/gep/hubSearch.js +526 -1
  47. package/src/gep/hubVerify.js +306 -1
  48. package/src/gep/learningSignals.js +89 -1
  49. package/src/gep/memoryGraph.js +1449 -1
  50. package/src/gep/memoryGraphAdapter.js +203 -1
  51. package/src/gep/mutation.js +203 -1
  52. package/src/gep/narrativeMemory.js +108 -1
  53. package/src/gep/openPRRegistry.js +205 -1
  54. package/src/gep/personality.js +423 -1
  55. package/src/gep/policyCheck.js +599 -1
  56. package/src/gep/prompt.js +836 -1
  57. package/src/gep/questionGenerator.js +103 -0
  58. package/src/gep/recallInject.js +409 -1
  59. package/src/gep/recallVerifier.js +318 -1
  60. package/src/gep/reflection.js +177 -1
  61. package/src/gep/savingsCore.js +112 -1
  62. package/src/gep/selector.js +602 -1
  63. package/src/gep/skillDistiller.js +1294 -1
  64. package/src/gep/solidify.js +1699 -1
  65. package/src/gep/strategy.js +136 -1
  66. package/src/gep/tokenSavings.js +95 -1
  67. package/src/gep/workspaceKeychain.js +174 -1
  68. package/src/proxy/extensions/traceControl.js +109 -1
  69. package/src/proxy/inject.js +52 -1
  70. package/src/proxy/lifecycle/manager.js +108 -7
  71. package/src/proxy/server/routes.js +31 -0
  72. package/src/proxy/server/settings.js +6 -2
  73. package/src/proxy/sync/engine.js +31 -15
  74. package/src/proxy/sync/inbound.js +87 -9
  75. package/src/proxy/sync/outbound.js +57 -4
  76. package/src/proxy/trace/extractor.js +1403 -1
  77. package/src/proxy/trace/usage.js +105 -1
  78. package/CONTRIBUTING.md +0 -19
  79. package/assets/cover.png +0 -0
  80. package/scripts/a2a_export.js +0 -63
  81. package/scripts/a2a_ingest.js +0 -79
  82. package/scripts/a2a_promote.js +0 -118
  83. package/scripts/analyze_by_skill.js +0 -121
  84. package/scripts/build_binaries.js +0 -479
  85. package/scripts/check-changelog.js +0 -166
  86. package/scripts/extract_log.js +0 -85
  87. package/scripts/generate_history.js +0 -75
  88. package/scripts/gep_append_event.js +0 -96
  89. package/scripts/gep_personality_report.js +0 -234
  90. package/scripts/human_report.js +0 -147
  91. package/scripts/recall-verify-report.js +0 -234
  92. package/scripts/recover_loop.js +0 -61
  93. package/scripts/refresh_stars_badge.js +0 -168
  94. package/scripts/seed-merchants.js +0 -91
  95. package/scripts/suggest_version.js +0 -89
  96. package/scripts/validate-modules.js +0 -38
  97. package/scripts/validate-suite.js +0 -78
  98. package/skills/index.json +0 -14
  99. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  100. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,177 @@
1
- const _0x24e6b3=_0x5d8b;(function(_0x305445,_0x4cd86a){const _0x10181a=_0x5d8b,_0x327368=_0x305445();while(!![]){try{const _0x20bb13=parseInt(_0x10181a(0x216,'\x2a\x4f\x29\x6f'))/(0x94f*-0x3+-0x49*0x1+0x1c37)+parseInt(_0x10181a(0x2b9,'\x69\x59\x77\x74'))/(-0x215e+-0x201a+-0x1d*-0x242)*(parseInt(_0x10181a(0x212,'\x74\x59\x50\x64'))/(-0x76d*-0x2+0x12*0x96+-0x1963))+parseInt(_0x10181a(0x126,'\x5b\x34\x49\x31'))/(0x15df+-0x175*0xb+-0x5d4)*(-parseInt(_0x10181a(0x2a7,'\x74\x68\x41\x46'))/(0x1520+-0x195b+0x440))+-parseInt(_0x10181a(0x17d,'\x4b\x65\x57\x62'))/(-0xb1*-0x1f+-0x103c+0x109*-0x5)*(-parseInt(_0x10181a(0x221,'\x66\x79\x79\x33'))/(-0x18*0x9+-0x1*0x1631+0xf6*0x18))+-parseInt(_0x10181a(0xf9,'\x2a\x72\x5b\x28'))/(-0x1*0x226b+0xcc8+0x15ab)+parseInt(_0x10181a(0x201,'\x2a\x4f\x29\x6f'))/(-0x1d*-0x110+0x15c6+-0x348d)*(-parseInt(_0x10181a(0x266,'\x66\x79\x79\x33'))/(0x26c7+0x10*-0x1b7+-0xb4d))+parseInt(_0x10181a(0x175,'\x58\x61\x58\x6a'))/(-0x76a+0x135f+-0xbea);if(_0x20bb13===_0x4cd86a)break;else _0x327368['push'](_0x327368['shift']());}catch(_0x41f76f){_0x327368['push'](_0x327368['shift']());}}}(_0x1949,-0x111116+-0x29ec6+0x1*0x1f49bd));const _0x39dc12=(function(){const _0x5d249b=_0x5d8b,_0x201147={};_0x201147[_0x5d249b(0x1c9,'\x54\x68\x44\x46')]='\x65\x6d\x70\x74\x79\x5f\x63\x79'+'\x63\x6c\x65\x5f\x6c\x6f\x6f\x70'+_0x5d249b(0x1d3,'\x32\x48\x26\x6f')+'\x64',_0x201147[_0x5d249b(0x1a0,'\x74\x68\x41\x46')]=function(_0x1a7b4d,_0x3f5f5b){return _0x1a7b4d===_0x3f5f5b;},_0x201147[_0x5d249b(0x1c7,'\x21\x68\x72\x74')]=_0x5d249b(0x225,'\x47\x46\x26\x4f'),_0x201147[_0x5d249b(0x2ba,'\x7a\x4e\x42\x62')]=_0x5d249b(0xfb,'\x6d\x54\x6d\x76')+_0x5d249b(0x15e,'\x74\x59\x50\x64'),_0x201147[_0x5d249b(0x139,'\x58\x32\x55\x6e')]=function(_0x1f62ba,_0x55321c){return _0x1f62ba!==_0x55321c;},_0x201147[_0x5d249b(0x27f,'\x78\x69\x4c\x52')]=_0x5d249b(0x26f,'\x66\x79\x79\x33');const _0x3e2682=_0x201147;let _0x5f34a5=!![];return function(_0x51af51,_0x2d15b3){const _0x5cfdba=_0x5d249b;if(_0x3e2682[_0x5cfdba(0x1a6,'\x47\x42\x6c\x72')](_0x5cfdba(0x2b1,'\x74\x68\x41\x46'),_0x3e2682[_0x5cfdba(0x258,'\x6c\x50\x56\x61')])){const _0x29a814=_0x5f34a5?function(){const _0x59001b=_0x5cfdba,_0x5f3216={};_0x5f3216[_0x59001b(0x2c9,'\x5b\x43\x24\x59')]=function(_0x38ccdb,_0x11d17f){return _0x38ccdb===_0x11d17f;},_0x5f3216[_0x59001b(0x1d4,'\x76\x56\x42\x48')]=_0x59001b(0xf5,'\x61\x32\x4c\x26')+_0x59001b(0x203,'\x25\x55\x70\x40')+'\x6c\x61\x74\x65\x61\x75',_0x5f3216[_0x59001b(0x261,'\x32\x48\x26\x6f')]=_0x59001b(0x190,'\x25\x55\x70\x40')+_0x59001b(0x1ae,'\x7a\x4e\x42\x62')+_0x59001b(0x17e,'\x25\x72\x55\x43')+_0x59001b(0x199,'\x24\x35\x29\x65'),_0x5f3216['\x6c\x78\x4d\x66\x79']=_0x3e2682[_0x59001b(0x1a8,'\x5b\x43\x24\x59')];const _0x426ad4=_0x5f3216;if(_0x3e2682[_0x59001b(0x109,'\x79\x6a\x37\x59')](_0x3e2682[_0x59001b(0x13e,'\x56\x67\x76\x68')],_0x59001b(0x11f,'\x5b\x34\x49\x31'))){if(_0x2d15b3){const _0x1c5e7b=_0x2d15b3[_0x59001b(0x105,'\x76\x56\x42\x48')](_0x51af51,arguments);return _0x2d15b3=null,_0x1c5e7b;}}else return _0x426ad4[_0x59001b(0x13b,'\x74\x59\x50\x64')](_0x382979,_0x426ad4['\x54\x6b\x44\x51\x6f'])||_0x96d12c===_0x426ad4[_0x59001b(0x28f,'\x76\x56\x42\x48')]||_0x426ad4[_0x59001b(0x282,'\x56\x69\x44\x36')](_0x2b42b5,_0x426ad4[_0x59001b(0x1ce,'\x6f\x75\x34\x4a')]);}:function(){};return _0x5f34a5=![],_0x29a814;}else{const _0x24291c={};_0x24291c[_0x5cfdba(0x26c,'\x6d\x54\x6d\x76')]=_0x3e2682[_0x5cfdba(0x1c0,'\x58\x32\x55\x6e')],_0x24291c[_0x5cfdba(0x29f,'\x36\x37\x6c\x24')]=+(-0x5ce+-0x1*0x7d9+-0x1*-0xda7+0.05),_0x24291c[_0x5cfdba(0x159,'\x37\x33\x65\x39')]=_0x5cfdba(0x16f,'\x5d\x55\x24\x51')+_0x5cfdba(0x2d7,'\x70\x4c\x51\x38')+_0x5cfdba(0x27c,'\x43\x59\x4d\x30')+_0x5cfdba(0x2b7,'\x68\x70\x71\x4a'),_0x27fcc2['\x70\x75\x73\x68'](_0x24291c);}};}()),_0x140aa0=_0x39dc12(this,function(){const _0x48fcc3=_0x5d8b,_0x21bc40={};_0x21bc40[_0x48fcc3(0x1fb,'\x6f\x75\x34\x4a')]=_0x48fcc3(0x18a,'\x61\x32\x4c\x26')+_0x48fcc3(0x232,'\x6f\x75\x34\x4a');const _0x3691cf=_0x21bc40;return _0x140aa0['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x48fcc3(0x248,'\x36\x30\x33\x6c')](_0x3691cf[_0x48fcc3(0x28b,'\x6f\x23\x50\x63')])[_0x48fcc3(0x1ed,'\x6d\x54\x6d\x76')]()[_0x48fcc3(0x17f,'\x58\x61\x58\x6a')+_0x48fcc3(0x163,'\x25\x51\x40\x46')](_0x140aa0)[_0x48fcc3(0x27b,'\x73\x38\x53\x26')](_0x48fcc3(0x1c4,'\x67\x5d\x30\x76')+_0x48fcc3(0x135,'\x66\x79\x79\x33'));});_0x140aa0();'use strict';function _0x1949(){const _0x25ffef=['\x57\x34\x57\x51\x64\x43\x6f\x7a\x64\x71\x43','\x57\x35\x68\x63\x55\x38\x6b\x57\x57\x51\x43\x51\x66\x4d\x38\x6a','\x57\x52\x38\x42\x65\x43\x6f\x36','\x65\x43\x6f\x58\x78\x5a\x78\x64\x54\x72\x79\x76\x6b\x71','\x64\x48\x4a\x64\x55\x43\x6b\x4d','\x57\x51\x4f\x69\x64\x53\x6f\x33\x69\x68\x38\x48\x57\x4f\x53','\x57\x34\x76\x39\x76\x75\x30\x59\x57\x4f\x61\x2b\x62\x47','\x57\x50\x44\x42\x57\x50\x6d\x55\x6e\x4c\x57','\x57\x37\x43\x42\x64\x38\x6f\x37\x66\x47','\x57\x51\x6a\x33\x70\x6d\x6b\x74\x57\x36\x78\x63\x56\x4e\x30','\x73\x5a\x75\x68\x57\x37\x74\x63\x4f\x71','\x57\x50\x5a\x63\x54\x53\x6f\x66\x57\x35\x52\x64\x4a\x6d\x6b\x56\x6c\x53\x6f\x56','\x57\x35\x52\x63\x4c\x53\x6b\x55\x57\x36\x39\x4c\x75\x61\x2f\x63\x54\x57','\x6a\x76\x74\x64\x4c\x75\x68\x63\x49\x71','\x6e\x68\x33\x63\x52\x6d\x6b\x30\x42\x6d\x6f\x58\x57\x50\x70\x63\x53\x57','\x6a\x4e\x52\x63\x50\x43\x6f\x30\x64\x57','\x57\x50\x50\x2f\x57\x37\x74\x63\x51\x64\x5a\x63\x47\x5a\x57\x2f','\x76\x53\x6f\x44\x6d\x71\x6d\x72\x61\x6d\x6f\x47','\x57\x36\x34\x36\x65\x53\x6f\x46\x61\x61','\x64\x5a\x35\x38\x57\x36\x53','\x45\x43\x6f\x57\x63\x61\x6c\x63\x53\x57','\x57\x4f\x57\x50\x46\x61\x50\x59\x57\x34\x4b\x6b\x74\x61','\x57\x36\x68\x64\x4d\x5a\x78\x63\x56\x47','\x43\x31\x4b\x6d\x57\x35\x4b\x4e\x57\x51\x34','\x68\x38\x6b\x6a\x78\x38\x6f\x36\x57\x35\x4f','\x69\x4d\x6c\x64\x47\x6d\x6f\x61\x46\x47\x61\x69\x57\x52\x65','\x57\x37\x6c\x64\x4f\x4a\x30','\x6c\x63\x74\x63\x51\x6d\x6f\x48\x70\x59\x65','\x57\x51\x75\x65\x57\x4f\x37\x63\x4d\x43\x6f\x2f','\x57\x50\x58\x57\x6c\x38\x6b\x74\x57\x36\x71','\x57\x37\x38\x4e\x63\x6d\x6f\x42\x6d\x72\x42\x64\x52\x76\x79','\x68\x66\x33\x63\x4f\x38\x6f\x47\x61\x61','\x61\x5a\x76\x61\x57\x35\x7a\x38','\x64\x76\x68\x63\x47\x6d\x6f\x72\x57\x50\x65','\x57\x52\x58\x30\x57\x52\x75\x7a\x64\x71','\x74\x31\x75\x35\x57\x37\x4b\x76','\x66\x53\x6f\x58\x71\x33\x64\x64\x4e\x30\x47','\x57\x34\x57\x6a\x57\x36\x48\x6a\x57\x37\x78\x63\x4c\x53\x6b\x52\x70\x57','\x7a\x66\x69\x33\x57\x36\x34\x52','\x57\x36\x65\x65\x57\x37\x6a\x77\x57\x35\x43','\x57\x37\x56\x64\x56\x33\x5a\x63\x47\x6d\x6f\x62\x57\x34\x69','\x57\x37\x52\x64\x52\x4d\x2f\x63\x4d\x53\x6f\x61\x57\x34\x54\x4d\x57\x4f\x69','\x65\x5a\x68\x63\x56\x43\x6f\x57\x6e\x59\x46\x63\x48\x47\x4b','\x44\x48\x38\x4a\x57\x35\x6c\x63\x50\x57','\x71\x66\x78\x64\x54\x72\x2f\x63\x48\x71','\x79\x61\x65\x52\x57\x35\x2f\x63\x4f\x43\x6b\x6b','\x57\x51\x6a\x64\x57\x37\x6c\x63\x4b\x62\x69','\x68\x73\x50\x48\x57\x36\x30\x67\x77\x38\x6f\x33\x57\x37\x65','\x57\x36\x78\x64\x49\x4c\x2f\x63\x4b\x6d\x6f\x38','\x57\x35\x4a\x64\x52\x43\x6b\x77\x57\x37\x6d','\x64\x72\x6c\x63\x47\x71','\x70\x31\x4e\x63\x4c\x6d\x6b\x38\x7a\x61','\x57\x51\x74\x64\x56\x47\x6c\x64\x4d\x38\x6f\x47\x67\x6d\x6f\x45\x6f\x61','\x73\x6d\x6b\x39\x45\x53\x6f\x38\x57\x34\x69','\x71\x76\x74\x63\x56\x53\x6f\x32\x63\x61','\x41\x48\x30\x50\x57\x35\x4a\x63\x53\x43\x6b\x6b\x6f\x53\x6b\x48','\x57\x35\x6d\x31\x57\x34\x76\x6a\x57\x36\x43','\x71\x53\x6f\x6e\x70\x61\x75\x68\x6c\x6d\x6f\x4d\x57\x50\x38','\x57\x50\x4e\x64\x4c\x43\x6b\x54\x57\x37\x50\x31\x77\x62\x46\x63\x55\x57','\x77\x53\x6f\x4b\x6b\x61\x70\x63\x4f\x47','\x57\x34\x61\x5a\x57\x4f\x6c\x63\x47\x38\x6f\x69\x75\x59\x52\x64\x4a\x47','\x6d\x6d\x6f\x51\x65\x5a\x78\x63\x56\x4e\x38','\x57\x34\x56\x64\x55\x43\x6b\x76\x57\x37\x52\x64\x4e\x6d\x6b\x4a\x79\x53\x6f\x59','\x57\x51\x6e\x57\x6f\x6d\x6b\x74\x57\x35\x78\x63\x52\x78\x7a\x53','\x6e\x57\x4e\x63\x4b\x73\x4c\x6c','\x6a\x64\x44\x77\x57\x34\x6a\x54\x6e\x71','\x6b\x76\x6d\x6d\x57\x35\x64\x63\x51\x38\x6b\x64\x46\x38\x6b\x32','\x44\x6d\x6f\x77\x57\x37\x74\x64\x53\x65\x71\x4e\x45\x75\x43','\x57\x4f\x65\x34\x66\x62\x66\x4b\x57\x35\x72\x4c\x64\x6d\x6f\x57\x45\x4d\x42\x64\x4e\x6d\x6b\x64','\x42\x77\x78\x63\x4d\x43\x6f\x38\x6c\x4a\x4a\x63\x4b\x57\x34','\x57\x4f\x4f\x59\x57\x36\x78\x63\x52\x49\x33\x63\x47\x77\x72\x2b','\x57\x50\x75\x51\x62\x33\x79\x35\x57\x4f\x71\x59\x64\x47','\x57\x50\x52\x63\x56\x38\x6f\x76\x66\x38\x6f\x52\x57\x36\x47','\x57\x36\x74\x64\x56\x67\x33\x63\x55\x53\x6f\x51','\x6e\x32\x4a\x63\x4a\x47','\x6c\x5a\x64\x63\x51\x6d\x6f\x4e\x6d\x74\x4e\x63\x4c\x57','\x57\x35\x4e\x64\x52\x43\x6b\x64\x76\x43\x6b\x31\x57\x52\x6c\x63\x49\x73\x64\x64\x4d\x6d\x6b\x79\x6d\x53\x6f\x32','\x57\x34\x57\x45\x57\x50\x42\x63\x47\x59\x4a\x63\x52\x32\x6c\x64\x52\x57','\x57\x35\x76\x4d\x73\x76\x43\x4f\x57\x50\x75\x49\x61\x57','\x7a\x58\x69\x4b\x57\x35\x2f\x63\x50\x38\x6b\x6c\x78\x43\x6b\x33','\x76\x64\x52\x63\x56\x38\x6b\x56','\x70\x33\x68\x63\x4a\x53\x6b\x39\x41\x38\x6f\x5a\x57\x50\x46\x63\x50\x61','\x57\x51\x4f\x79\x62\x38\x6f\x47\x6f\x47','\x57\x51\x66\x51\x57\x4f\x44\x6c\x66\x57','\x74\x59\x43\x43\x57\x36\x74\x63\x4c\x61','\x57\x52\x64\x63\x4b\x38\x6f\x59\x61\x53\x6f\x6f\x43\x38\x6f\x47\x57\x34\x6d','\x79\x53\x6f\x39\x57\x34\x65\x58\x67\x61','\x57\x4f\x62\x79\x6a\x53\x6b\x33\x57\x35\x57','\x6c\x4b\x68\x63\x55\x53\x6f\x52','\x65\x43\x6b\x54\x6c\x6d\x6b\x6f\x41\x38\x6b\x6c\x44\x30\x47','\x57\x35\x76\x39\x68\x71\x71\x4e\x57\x34\x44\x31\x63\x71','\x57\x35\x68\x64\x51\x72\x71\x47\x67\x71','\x57\x36\x4e\x64\x54\x68\x30\x69\x72\x4d\x79\x57','\x57\x51\x4a\x64\x4f\x6d\x6b\x45\x57\x34\x34','\x7a\x68\x4f\x31\x57\x35\x4f\x62','\x57\x52\x33\x64\x4f\x38\x6b\x63\x57\x34\x50\x51\x43\x32\x4e\x63\x55\x47','\x70\x38\x6f\x4b\x66\x63\x52\x64\x55\x32\x2f\x63\x4f\x38\x6b\x55','\x57\x36\x64\x64\x4d\x48\x53\x64\x6f\x67\x4c\x66\x76\x61','\x72\x38\x6f\x46\x69\x71\x43\x76','\x57\x37\x52\x64\x4c\x53\x6f\x45\x62\x53\x6f\x74\x71\x53\x6f\x57\x57\x35\x71','\x69\x6d\x6b\x4d\x43\x53\x6f\x61\x57\x37\x66\x62\x69\x76\x65','\x57\x37\x52\x64\x54\x4e\x74\x63\x4b\x6d\x6f\x6c','\x57\x36\x42\x64\x4d\x4c\x69\x66\x6f\x5a\x4c\x68\x74\x47','\x57\x35\x53\x77\x57\x34\x43\x7a\x6b\x30\x53\x59\x44\x57','\x57\x4f\x54\x58\x57\x36\x78\x63\x4f\x59\x57','\x57\x37\x74\x64\x4c\x49\x2f\x63\x50\x43\x6b\x34\x57\x35\x47\x61\x57\x35\x4f','\x57\x37\x62\x45\x57\x35\x79\x4c\x57\x36\x6d','\x57\x36\x6d\x6e\x68\x38\x6f\x74\x70\x71','\x62\x4a\x78\x63\x51\x43\x6f\x38\x6c\x61','\x57\x50\x35\x4e\x57\x36\x6c\x63\x52\x47','\x57\x34\x52\x64\x4a\x43\x6f\x2b','\x67\x49\x62\x35\x57\x34\x79\x30','\x6d\x32\x74\x64\x47\x6d\x6f\x62\x43\x48\x66\x41\x57\x51\x79','\x74\x59\x33\x63\x53\x43\x6b\x51\x73\x61','\x65\x38\x6b\x51\x57\x37\x37\x63\x52\x31\x61','\x73\x53\x6f\x44\x57\x34\x71\x46','\x57\x51\x50\x36\x57\x50\x39\x43\x67\x43\x6b\x38\x57\x37\x6d','\x6b\x65\x78\x64\x4b\x43\x6f\x54\x79\x57','\x66\x47\x74\x63\x4b\x6d\x6f\x42\x68\x71\x33\x63\x53\x73\x57','\x43\x43\x6f\x2b\x6f\x74\x69\x58','\x73\x38\x6f\x6b\x65\x62\x4e\x63\x52\x58\x76\x38','\x64\x74\x58\x78\x57\x35\x61\x4f\x6a\x6d\x6f\x57\x6c\x71','\x57\x4f\x33\x63\x52\x53\x6f\x72\x62\x38\x6f\x57\x57\x36\x70\x63\x50\x30\x4f','\x57\x52\x72\x64\x57\x52\x50\x56\x69\x71','\x57\x36\x4c\x36\x74\x4b\x6d\x59\x57\x4f\x79\x37\x65\x57','\x57\x50\x7a\x51\x57\x50\x71\x2f\x6c\x30\x38\x35\x45\x61','\x57\x51\x34\x41\x63\x38\x6f\x39\x6c\x74\x66\x4f','\x75\x43\x6f\x41\x6d\x58\x71\x72\x66\x6d\x6f\x36\x57\x4f\x38','\x70\x38\x6f\x34\x6f\x59\x56\x63\x51\x78\x52\x63\x54\x71','\x57\x51\x72\x32\x6f\x53\x6b\x79','\x62\x48\x78\x63\x4c\x43\x6f\x39\x63\x47','\x67\x57\x4a\x63\x4d\x48\x66\x69\x65\x53\x6f\x31\x57\x51\x69','\x57\x52\x4b\x35\x6a\x43\x6b\x79\x57\x36\x5a\x63\x50\x78\x7a\x37','\x57\x35\x39\x4f\x57\x4f\x74\x63\x52\x61','\x57\x34\x4e\x63\x4b\x53\x6b\x53\x57\x36\x48\x4f\x73\x57\x37\x63\x54\x57','\x57\x50\x61\x74\x57\x34\x4f\x42\x57\x34\x4a\x63\x49\x73\x78\x64\x4b\x61','\x57\x51\x58\x38\x57\x51\x50\x6e\x62\x6d\x6b\x57\x57\x36\x38','\x57\x34\x65\x47\x6d\x6d\x6f\x62\x64\x61','\x63\x62\x68\x63\x47\x53\x6f\x57\x64\x6d\x6b\x69\x66\x30\x61','\x79\x38\x6f\x79\x61\x62\x75\x48','\x45\x38\x6b\x4a\x57\x34\x2f\x64\x49\x6d\x6b\x34','\x6a\x61\x6c\x63\x55\x43\x6f\x51\x6f\x58\x33\x63\x4c\x47','\x57\x34\x57\x64\x57\x36\x39\x6a\x57\x51\x68\x63\x48\x38\x6b\x44\x6b\x47','\x57\x37\x4b\x50\x69\x38\x6f\x4e\x6c\x61','\x70\x58\x52\x63\x47\x73\x48\x7a','\x57\x52\x6c\x64\x52\x47\x2f\x63\x4c\x38\x6f\x54\x6a\x43\x6b\x6c\x6c\x71','\x46\x4c\x78\x63\x52\x43\x6f\x50\x57\x50\x42\x64\x4e\x4a\x37\x64\x4f\x71','\x6c\x53\x6f\x59\x70\x38\x6b\x39\x57\x51\x30\x54\x6d\x6d\x6f\x64','\x43\x53\x6b\x66\x57\x52\x70\x63\x56\x75\x79\x4a\x6b\x4b\x61','\x41\x47\x79\x2b\x57\x35\x6c\x63\x52\x43\x6b\x63\x46\x57','\x65\x53\x6f\x32\x76\x33\x46\x64\x56\x71','\x57\x50\x43\x59\x57\x37\x37\x63\x54\x4a\x5a\x64\x49\x67\x54\x2b','\x57\x37\x42\x63\x4d\x43\x6b\x36\x57\x50\x69\x62','\x57\x50\x66\x4d\x57\x36\x56\x63\x50\x6d\x6b\x66\x57\x51\x53\x45','\x77\x43\x6f\x42\x63\x4b\x4b','\x57\x37\x64\x64\x48\x57\x2f\x63\x4b\x6d\x6b\x54','\x57\x4f\x31\x62\x57\x51\x34\x4e\x66\x61','\x67\x38\x6b\x33\x57\x35\x2f\x63\x56\x75\x47','\x57\x4f\x4c\x33\x57\x36\x6c\x63\x53\x49\x33\x64\x48\x75\x54\x51','\x57\x51\x72\x54\x6a\x43\x6b\x75\x57\x36\x74\x63\x52\x4e\x50\x2b','\x62\x38\x6b\x36\x57\x36\x68\x63\x53\x57','\x67\x43\x6f\x49\x79\x43\x6f\x6f\x6a\x43\x6f\x72\x7a\x4b\x65','\x57\x50\x50\x52\x57\x4f\x35\x6c\x65\x38\x6b\x59\x57\x36\x69\x4e','\x61\x53\x6f\x47\x70\x47\x4a\x63\x54\x61','\x62\x53\x6b\x6c\x43\x4a\x65\x62\x66\x53\x6f\x47\x57\x50\x47','\x74\x77\x75\x56\x57\x34\x4f\x71\x68\x38\x6f\x65\x57\x37\x57','\x63\x71\x2f\x63\x4c\x48\x54\x6a\x6d\x53\x6f\x49\x57\x51\x65','\x43\x38\x6b\x55\x43\x43\x6b\x52','\x57\x50\x48\x38\x57\x36\x33\x63\x47\x53\x6b\x6c\x57\x51\x75\x74','\x65\x78\x4c\x4d\x57\x34\x58\x52\x6b\x38\x6f\x30\x46\x71','\x57\x34\x52\x63\x47\x38\x6b\x2f\x57\x37\x50\x59\x73\x47','\x76\x6d\x6b\x69\x57\x35\x47\x7a\x74\x38\x6b\x41\x57\x4f\x6c\x64\x4d\x71','\x6e\x68\x4e\x64\x49\x43\x6f\x73\x46\x47\x61','\x57\x36\x47\x47\x64\x38\x6b\x71\x63\x58\x74\x64\x52\x76\x79','\x57\x34\x4e\x64\x53\x43\x6b\x53\x57\x35\x33\x64\x4e\x57','\x57\x52\x76\x36\x57\x50\x48\x78','\x70\x71\x58\x74\x57\x37\x6e\x2f','\x44\x59\x4e\x63\x55\x43\x6b\x30\x7a\x6d\x6f\x34\x57\x35\x42\x63\x50\x71','\x57\x37\x33\x64\x4f\x49\x66\x38\x70\x33\x31\x53','\x57\x4f\x66\x38\x57\x52\x68\x63\x4f\x49\x33\x64\x4c\x77\x6e\x38','\x57\x35\x4e\x64\x52\x6d\x6b\x66\x62\x38\x6f\x4f\x57\x34\x70\x63\x4c\x64\x4e\x64\x4a\x57','\x63\x5a\x7a\x74\x57\x35\x72\x38\x69\x53\x6b\x58\x6c\x47','\x41\x53\x6b\x2f\x45\x43\x6f\x30\x57\x37\x6a\x53','\x57\x35\x52\x64\x4a\x64\x75\x7a\x6e\x61','\x57\x35\x33\x64\x55\x38\x6b\x67\x57\x37\x37\x64\x4a\x43\x6b\x35\x75\x43\x6f\x52','\x57\x4f\x43\x58\x57\x4f\x4e\x63\x49\x6d\x6f\x45\x46\x32\x78\x63\x4e\x71','\x76\x76\x64\x63\x4f\x6d\x6f\x4a\x62\x61','\x67\x6d\x6b\x36\x57\x36\x42\x63\x55\x66\x37\x63\x4c\x38\x6b\x63','\x7a\x4e\x70\x64\x51\x5a\x5a\x63\x48\x38\x6f\x78\x74\x43\x6f\x58','\x57\x51\x46\x63\x47\x38\x6f\x56\x64\x57','\x57\x4f\x50\x71\x57\x4f\x6e\x52\x6b\x75\x30\x35\x46\x61','\x57\x51\x50\x65\x57\x51\x66\x68\x61\x57','\x57\x4f\x66\x4e\x57\x36\x78\x63\x50\x73\x46\x64\x4a\x67\x6d','\x64\x6d\x6f\x53\x75\x67\x68\x64\x4e\x48\x61\x6f\x6f\x61','\x57\x4f\x44\x38\x57\x36\x78\x63\x4f\x59\x42\x64\x4c\x71','\x57\x52\x33\x64\x55\x43\x6b\x69\x57\x34\x76\x52\x42\x4d\x2f\x63\x55\x57','\x6a\x4c\x68\x64\x4d\x4c\x4e\x63\x51\x4d\x50\x4f\x70\x57','\x57\x36\x37\x64\x50\x78\x4f\x74\x63\x64\x54\x31\x57\x4f\x43','\x6b\x58\x4a\x63\x47\x61\x31\x64\x6c\x53\x6f\x30\x57\x36\x71','\x57\x4f\x35\x4d\x57\x36\x5a\x63\x52\x57','\x57\x50\x4c\x4c\x57\x34\x74\x63\x48\x62\x61','\x45\x4b\x75\x75\x57\x34\x34\x54\x57\x52\x68\x63\x50\x57','\x6d\x38\x6b\x42\x57\x37\x2f\x63\x51\x4c\x75','\x41\x59\x57\x35\x57\x34\x78\x63\x4f\x38\x6b\x69\x44\x6d\x6b\x5a','\x70\x38\x6f\x34\x70\x64\x64\x63\x54\x78\x6c\x63\x55\x6d\x6f\x52','\x57\x4f\x4c\x61\x57\x34\x37\x64\x4e\x65\x42\x64\x56\x30\x33\x64\x4b\x78\x46\x64\x53\x43\x6f\x68\x57\x52\x57','\x57\x52\x5a\x64\x54\x61\x78\x63\x4d\x53\x6f\x4c\x76\x53\x6b\x74\x6b\x57','\x57\x4f\x54\x62\x57\x4f\x79\x2f\x68\x76\x65\x35\x45\x47','\x57\x4f\x5a\x64\x47\x38\x6b\x56\x57\x36\x76\x70\x73\x4a\x52\x63\x4d\x57','\x57\x34\x62\x65\x57\x34\x38\x76\x57\x36\x71','\x57\x51\x33\x64\x54\x53\x6b\x6f\x57\x34\x6e\x53\x44\x66\x2f\x63\x50\x71','\x57\x36\x74\x64\x47\x63\x33\x63\x55\x6d\x6b\x4a\x57\x35\x57\x39','\x57\x34\x7a\x38\x76\x65\x57','\x70\x67\x4a\x63\x4c\x38\x6b\x39\x42\x38\x6f\x35','\x6d\x38\x6f\x4f\x69\x53\x6f\x35\x57\x34\x39\x63\x79\x38\x6b\x79\x57\x34\x65','\x67\x38\x6f\x51\x45\x68\x5a\x64\x51\x71','\x57\x4f\x34\x4e\x57\x4f\x37\x63\x49\x53\x6f\x66\x76\x67\x70\x64\x4a\x61','\x67\x61\x33\x63\x47\x58\x48\x63\x6a\x6d\x6f\x77\x57\x51\x30','\x57\x37\x52\x64\x47\x66\x69\x69\x6d\x5a\x31\x64\x74\x47','\x57\x4f\x53\x69\x57\x34\x53\x72\x57\x37\x74\x63\x4b\x47\x38','\x57\x50\x5a\x64\x55\x53\x6f\x58\x65\x53\x6f\x52\x57\x36\x52\x63\x54\x48\x34','\x63\x53\x6b\x67\x77\x43\x6b\x50\x57\x34\x48\x36\x65\x77\x38','\x6c\x49\x5a\x63\x51\x6d\x6f\x39','\x70\x30\x4e\x64\x47\x65\x53','\x6d\x66\x68\x63\x47\x6d\x6f\x4e\x57\x50\x61','\x6d\x75\x7a\x5a\x57\x37\x33\x63\x4d\x53\x6b\x32\x46\x43\x6b\x44\x57\x35\x47','\x42\x6d\x6f\x4b\x6e\x49\x6d\x2b','\x74\x74\x57\x62\x57\x35\x70\x63\x4a\x71','\x68\x6d\x6b\x43\x78\x38\x6f\x47\x57\x35\x66\x59\x64\x77\x75','\x57\x4f\x52\x64\x47\x38\x6f\x4d\x57\x52\x53\x33\x61\x63\x52\x63\x4d\x31\x64\x63\x54\x38\x6b\x6f\x57\x52\x47','\x57\x35\x5a\x63\x47\x43\x6b\x58\x57\x36\x6a\x59\x74\x71\x52\x63\x53\x71','\x44\x68\x64\x64\x4e\x73\x56\x63\x47\x43\x6f\x78\x74\x6d\x6f\x34','\x57\x37\x70\x64\x54\x77\x61\x65\x72\x5a\x66\x31','\x57\x51\x5a\x64\x52\x6d\x6f\x6e\x57\x34\x66\x2b\x44\x59\x64\x63\x56\x61','\x57\x37\x4e\x64\x51\x48\x44\x41\x6e\x57','\x57\x50\x4c\x37\x57\x36\x78\x63\x52\x4d\x4a\x64\x47\x63\x7a\x76','\x74\x53\x6b\x61\x57\x35\x74\x64\x54\x43\x6b\x7a\x57\x50\x6d','\x73\x38\x6b\x42\x57\x35\x33\x64\x4f\x6d\x6b\x69\x57\x4f\x47\x2f\x66\x57','\x42\x38\x6b\x31\x45\x71','\x57\x35\x66\x67\x57\x34\x38\x7a\x57\x36\x2f\x63\x4c\x61\x38','\x66\x61\x46\x64\x4f\x38\x6f\x48\x62\x43\x6b\x52\x6a\x77\x66\x77','\x61\x48\x33\x63\x4a\x53\x6f\x6c\x64\x61','\x45\x4e\x4e\x63\x4d\x63\x64\x63\x4e\x6d\x6f\x7a\x73\x38\x6f\x5a','\x67\x53\x6f\x2f\x78\x33\x56\x64\x4e\x48\x6d\x47\x70\x47','\x6b\x4c\x4a\x63\x4f\x53\x6f\x50\x62\x61','\x75\x38\x6f\x67\x57\x34\x6d\x73\x61\x43\x6b\x43','\x57\x4f\x6e\x39\x6c\x53\x6b\x4b\x57\x35\x47','\x57\x51\x65\x36\x57\x4f\x42\x63\x47\x43\x6f\x75\x77\x4e\x78\x64\x4a\x47','\x76\x6d\x6f\x68\x57\x34\x61','\x6c\x72\x7a\x55\x57\x35\x44\x68','\x57\x52\x4e\x64\x4f\x43\x6b\x65\x57\x35\x62\x36','\x57\x50\x42\x64\x52\x61\x56\x63\x53\x53\x6f\x61','\x74\x38\x6f\x69\x68\x61\x74\x63\x55\x61','\x57\x35\x52\x63\x4d\x38\x6b\x37\x57\x35\x66\x52\x76\x47\x5a\x63\x52\x47','\x79\x38\x6b\x6b\x46\x43\x6f\x2b\x57\x36\x47','\x57\x4f\x39\x55\x57\x4f\x70\x63\x54\x53\x6f\x4f\x41\x53\x6b\x42\x57\x50\x53','\x57\x51\x6c\x63\x4d\x6d\x6f\x33\x63\x43\x6f\x73\x77\x38\x6f\x37','\x78\x6d\x6f\x4d\x57\x52\x4e\x64\x56\x57','\x76\x53\x6f\x6d\x44\x43\x6f\x4c\x6f\x47','\x71\x6d\x6f\x30\x64\x48\x68\x63\x53\x57','\x43\x65\x69\x73\x57\x35\x34\x52\x57\x52\x56\x64\x55\x61','\x43\x76\x6d\x70\x57\x34\x46\x63\x52\x43\x6b\x64\x42\x38\x6b\x4d','\x57\x34\x2f\x64\x55\x67\x4e\x63\x4d\x6d\x6f\x6c','\x57\x50\x74\x64\x4c\x38\x6b\x78\x57\x36\x62\x5a\x78\x61\x33\x63\x51\x47','\x57\x35\x6c\x63\x55\x53\x6b\x49\x57\x51\x47','\x41\x5a\x52\x64\x4a\x6d\x6f\x4d\x6d\x53\x6b\x56\x57\x34\x42\x63\x56\x65\x33\x63\x55\x38\x6b\x78\x6a\x72\x53','\x57\x50\x72\x71\x57\x4f\x4b\x53\x6f\x4b\x61','\x57\x4f\x56\x63\x55\x38\x6f\x66\x57\x35\x42\x64\x4d\x38\x6b\x4e\x79\x43\x6f\x50','\x79\x76\x75\x65\x57\x4f\x30\x52\x57\x52\x6c\x64\x4f\x4a\x75','\x57\x51\x33\x63\x52\x4a\x71\x4d\x77\x4a\x4b\x57\x57\x50\x30','\x57\x35\x65\x79\x57\x50\x46\x64\x4a\x74\x4e\x63\x51\x4e\x78\x64\x51\x71','\x73\x43\x6f\x43\x57\x35\x79\x64\x67\x53\x6b\x42','\x66\x5a\x58\x65\x57\x34\x7a\x4e\x6b\x71','\x57\x51\x64\x64\x51\x71\x70\x63\x4e\x43\x6f\x53\x62\x6d\x6b\x6d\x6c\x57','\x66\x6d\x6b\x4c\x72\x53\x6f\x62\x6c\x53\x6f\x6d\x6f\x71\x75','\x57\x52\x46\x64\x56\x47\x4a\x63\x4e\x53\x6f\x36\x6b\x43\x6b\x6c\x6f\x71','\x6d\x4d\x64\x63\x4d\x6d\x6b\x4c\x6e\x71','\x57\x35\x50\x5a\x57\x50\x5a\x63\x51\x53\x6f\x4d\x41\x43\x6b\x71','\x43\x6d\x6f\x61\x57\x52\x52\x63\x56\x76\x53\x7a\x46\x30\x61','\x57\x51\x70\x64\x56\x47\x46\x63\x49\x43\x6f\x51\x68\x47','\x62\x43\x6b\x38\x57\x35\x70\x63\x47\x4c\x61','\x77\x59\x33\x63\x50\x53\x6b\x54\x79\x58\x6c\x63\x50\x4a\x4b','\x64\x71\x74\x63\x52\x62\x50\x6e\x6d\x61','\x79\x68\x4e\x64\x4d\x5a\x33\x63\x48\x38\x6f\x6e\x73\x53\x6f\x47','\x68\x38\x6b\x44\x78\x53\x6f\x48','\x76\x66\x33\x63\x4f\x61\x48\x70\x69\x38\x6f\x31\x57\x52\x43','\x75\x5a\x70\x63\x48\x38\x6b\x55\x76\x47','\x57\x51\x52\x64\x53\x6d\x6b\x6d\x57\x35\x76\x57\x41\x71','\x43\x38\x6b\x55\x46\x53\x6f\x38\x57\x36\x47\x2b\x6f\x57','\x79\x38\x6f\x36\x79\x6d\x6f\x32\x57\x51\x7a\x33\x42\x38\x6b\x46','\x57\x34\x6e\x6f\x57\x35\x43\x65\x57\x36\x78\x63\x49\x61','\x57\x37\x30\x56\x65\x53\x6f\x63\x71\x71\x33\x64\x53\x4b\x34','\x57\x34\x4e\x63\x47\x53\x6b\x54\x57\x36\x79','\x57\x52\x52\x63\x47\x53\x6f\x31\x63\x53\x6f\x79\x79\x43\x6f\x4d','\x7a\x48\x48\x51\x57\x35\x4a\x63\x52\x6d\x6f\x70\x45\x38\x6f\x59','\x57\x36\x39\x4d\x57\x35\x38\x59\x57\x36\x30','\x71\x65\x70\x63\x53\x38\x6f\x53\x63\x53\x6b\x6c','\x57\x51\x5a\x63\x54\x43\x6b\x64\x57\x34\x4b\x2f\x7a\x68\x78\x63\x50\x57','\x57\x37\x46\x64\x51\x64\x31\x45\x6b\x4e\x79','\x57\x34\x4a\x64\x52\x4d\x78\x63\x49\x53\x6f\x38','\x6f\x43\x6f\x2b\x64\x4a\x52\x63\x54\x68\x42\x63\x51\x71','\x57\x4f\x54\x7a\x57\x4f\x34\x4f\x6b\x57','\x44\x43\x6b\x55\x44\x53\x6f\x48\x57\x37\x6a\x33\x74\x6d\x6b\x64','\x74\x43\x6b\x72\x57\x34\x5a\x64\x50\x6d\x6b\x6f\x57\x4f\x38\x4f\x65\x47','\x57\x51\x54\x6f\x57\x4f\x31\x6d\x6d\x57','\x57\x50\x58\x59\x57\x37\x68\x63\x51\x43\x6b\x70\x57\x51\x69\x38\x78\x47','\x62\x53\x6b\x42\x42\x6d\x6f\x37\x57\x34\x31\x30\x68\x71','\x66\x72\x4a\x63\x4b\x61\x4c\x66\x6c\x38\x6f\x2b\x57\x4f\x43','\x57\x51\x74\x63\x47\x53\x6f\x39\x66\x43\x6f\x6a\x78\x38\x6f\x63\x57\x35\x4b','\x66\x61\x6c\x64\x4f\x6d\x6b\x31\x75\x43\x6f\x43\x71\x4c\x35\x50\x71\x32\x7a\x6f\x67\x57','\x57\x35\x58\x58\x57\x50\x37\x63\x50\x38\x6f\x53','\x6b\x66\x6d\x7a\x57\x34\x74\x63\x4f\x43\x6b\x6d\x46\x38\x6b\x48','\x57\x36\x6e\x5a\x57\x52\x5a\x63\x54\x43\x6f\x52','\x65\x66\x70\x63\x50\x6d\x6f\x53\x57\x51\x43','\x57\x52\x78\x64\x49\x48\x53\x46\x69\x4a\x54\x70\x74\x57','\x79\x4e\x33\x64\x49\x49\x4e\x63\x4d\x61','\x65\x62\x2f\x64\x53\x53\x6f\x76\x61\x43\x6b\x70\x62\x48\x69','\x68\x76\x33\x63\x4d\x58\x58\x41\x6a\x43\x6b\x57\x57\x52\x61','\x71\x66\x4a\x63\x56\x6d\x6f\x52\x6c\x61','\x72\x53\x6f\x65\x6e\x58\x6e\x41','\x68\x49\x4c\x4d\x57\x36\x38\x6b\x73\x38\x6f\x6a\x57\x52\x71','\x64\x43\x6b\x34\x57\x35\x37\x63\x54\x4d\x65','\x61\x4a\x58\x6c\x57\x35\x62\x37\x67\x6d\x6f\x4b\x6c\x47','\x79\x38\x6f\x36\x44\x53\x6f\x33\x57\x36\x6a\x32\x46\x53\x6b\x7a','\x7a\x38\x6f\x78\x57\x52\x33\x63\x54\x31\x4f\x56\x46\x4b\x4f','\x72\x38\x6f\x79\x6b\x62\x4e\x63\x4c\x71','\x63\x76\x64\x63\x4f\x38\x6f\x56\x61\x6d\x6b\x47','\x57\x35\x39\x4a\x57\x37\x38\x64\x57\x36\x79','\x57\x37\x4a\x64\x47\x73\x47','\x57\x52\x62\x30\x57\x35\x70\x63\x50\x43\x6b\x2b','\x57\x36\x4a\x64\x51\x64\x6a\x6c\x70\x78\x79','\x75\x68\x78\x63\x50\x6d\x6b\x4b\x7a\x62\x64\x63\x4f\x49\x34','\x46\x31\x38\x6a\x57\x34\x6d','\x77\x48\x6c\x63\x53\x38\x6b\x56\x7a\x5a\x78\x63\x4f\x57','\x6c\x58\x48\x62\x57\x37\x44\x4c','\x57\x36\x56\x64\x52\x63\x66\x79\x6d\x57','\x57\x50\x31\x74\x57\x4f\x53\x55\x6c\x76\x57\x2b\x44\x47','\x57\x36\x66\x42\x57\x52\x52\x63\x47\x43\x6f\x51','\x75\x64\x64\x63\x4e\x38\x6b\x4c\x43\x71','\x66\x68\x33\x63\x4e\x6d\x6b\x66\x42\x71','\x57\x4f\x30\x50\x57\x52\x38','\x77\x38\x6f\x4b\x41\x53\x6f\x6f\x6a\x43\x6f\x67\x67\x57\x71','\x57\x52\x54\x32\x6d\x6d\x6b\x49\x57\x36\x2f\x63\x55\x32\x66\x33','\x46\x66\x34\x68','\x68\x67\x2f\x64\x54\x53\x6b\x41\x6c\x66\x6c\x64\x51\x72\x61','\x6b\x66\x33\x64\x47\x38\x6f\x75\x45\x71','\x75\x77\x71\x6e\x57\x35\x57\x4d','\x57\x51\x68\x64\x4c\x53\x6b\x48\x57\x36\x72\x6c','\x46\x65\x6d\x48\x57\x35\x38\x57\x57\x52\x33\x63\x55\x57','\x6e\x6d\x6f\x55\x65\x5a\x46\x63\x56\x64\x56\x63\x50\x43\x6f\x50','\x6f\x6d\x6f\x6b\x68\x63\x52\x63\x4e\x47','\x42\x43\x6b\x66\x57\x36\x68\x64\x52\x53\x6b\x77','\x75\x64\x6c\x64\x54\x53\x6b\x47\x69\x47\x2f\x63\x53\x5a\x38','\x73\x68\x4f\x38\x57\x52\x7a\x42\x64\x6d\x6b\x63\x57\x37\x4a\x64\x51\x6d\x6b\x52\x42\x6d\x6b\x70\x57\x37\x34','\x73\x61\x42\x63\x4c\x6d\x6b\x67\x77\x47','\x57\x52\x4e\x63\x4a\x4a\x71\x6e\x70\x59\x76\x64\x73\x71','\x63\x71\x4a\x63\x47\x62\x75','\x57\x35\x6e\x58\x74\x4c\x43\x4f\x57\x50\x71\x65\x67\x71','\x57\x50\x66\x67\x57\x51\x65\x49\x69\x65\x65\x4a\x46\x61','\x66\x4e\x6c\x63\x48\x53\x6f\x62\x6d\x71','\x70\x73\x76\x45\x57\x37\x6d\x63','\x68\x68\x42\x64\x48\x67\x52\x63\x49\x57','\x57\x51\x64\x63\x4d\x6d\x6f\x4b\x61\x53\x6f\x4f','\x57\x37\x72\x55\x70\x6d\x6f\x63\x64\x58\x6c\x64\x51\x48\x4f','\x42\x58\x57\x4a\x57\x35\x38','\x65\x53\x6b\x33\x57\x36\x6c\x63\x54\x65\x70\x63\x4a\x53\x6b\x75','\x57\x37\x4a\x64\x50\x78\x47\x74\x73\x71','\x57\x50\x6a\x32\x57\x34\x5a\x63\x56\x53\x6b\x65\x57\x51\x75','\x57\x35\x57\x57\x57\x50\x5a\x63\x47\x58\x6c\x63\x47\x4d\x6d','\x57\x36\x30\x57\x57\x35\x6e\x4f\x57\x34\x69','\x6b\x38\x6f\x72\x46\x5a\x78\x64\x4c\x62\x75\x6e\x70\x47','\x6f\x62\x4e\x63\x48\x72\x72\x70\x6a\x71','\x43\x76\x4b\x73\x57\x34\x6d\x4a\x57\x52\x68\x63\x50\x57','\x57\x37\x54\x42\x77\x38\x6f\x45\x67\x31\x69\x56\x57\x51\x56\x64\x4a\x57','\x73\x4e\x4b\x36\x57\x36\x4b\x51\x45\x43\x6f\x69\x57\x36\x42\x64\x53\x71','\x6e\x78\x78\x64\x49\x38\x6f\x64\x41\x63\x30\x70\x57\x51\x43','\x6c\x33\x64\x63\x4f\x43\x6f\x37\x57\x4f\x34','\x6b\x67\x4a\x63\x55\x53\x6f\x50\x6b\x57','\x6d\x4c\x78\x63\x50\x38\x6f\x47\x57\x4f\x42\x63\x4a\x73\x4a\x64\x51\x71','\x57\x51\x62\x55\x6d\x53\x6f\x45\x67\x47\x46\x64\x52\x65\x34','\x6d\x5a\x68\x63\x52\x53\x6f\x54\x6d\x64\x70\x63\x4d\x57\x79','\x74\x43\x6b\x72\x57\x34\x4a\x64\x52\x43\x6b\x44\x57\x4f\x38\x4f\x63\x47','\x77\x6d\x6b\x43\x57\x34\x56\x64\x51\x71','\x57\x51\x6d\x6c\x64\x6d\x6f\x31\x6e\x32\x6d','\x6e\x4a\x35\x31\x57\x34\x75\x4e','\x46\x38\x6b\x38\x43\x6d\x6f\x2f\x57\x37\x43','\x57\x51\x56\x64\x4f\x43\x6b\x6d\x57\x35\x6a\x51\x44\x61','\x57\x4f\x50\x76\x57\x37\x74\x63\x51\x63\x33\x64\x51\x67\x69','\x43\x53\x6b\x4f\x46\x53\x6f\x2b','\x62\x4b\x6c\x63\x49\x38\x6f\x58\x66\x38\x6b\x4c\x57\x34\x4f','\x57\x36\x68\x64\x48\x58\x30\x63','\x74\x43\x6b\x35\x57\x35\x6c\x64\x52\x6d\x6b\x73','\x57\x37\x4c\x42\x76\x43\x6b\x51\x65\x68\x34\x4c\x57\x4f\x6c\x64\x51\x62\x53','\x57\x4f\x58\x73\x57\x52\x38\x43\x64\x61','\x57\x4f\x6e\x35\x57\x37\x78\x63\x52\x5a\x52\x64\x53\x4e\x39\x58','\x57\x37\x52\x64\x4d\x57\x79\x70\x6f\x73\x72\x64','\x57\x50\x4c\x32\x57\x37\x68\x63\x4f\x53\x6b\x7a\x57\x50\x4b\x6f\x73\x61','\x57\x37\x52\x64\x55\x74\x50\x70\x6f\x57','\x45\x72\x58\x61\x57\x34\x69\x57\x57\x37\x5a\x63\x4f\x5a\x75','\x65\x33\x78\x63\x4b\x38\x6b\x35\x43\x48\x64\x63\x50\x49\x6d','\x57\x36\x38\x56\x66\x43\x6f\x45\x63\x57\x42\x64\x48\x76\x38','\x57\x34\x78\x63\x48\x38\x6b\x42\x57\x51\x47\x31','\x63\x4c\x5a\x63\x55\x53\x6f\x33\x68\x6d\x6b\x42\x57\x35\x61\x4c','\x66\x43\x6b\x42\x57\x35\x4e\x63\x51\x4e\x6d','\x57\x51\x6e\x4d\x57\x4f\x44\x6c\x65\x38\x6b\x4a','\x68\x76\x74\x63\x51\x38\x6f\x57\x63\x53\x6b\x51','\x57\x52\x4b\x37\x57\x50\x6c\x64\x4a\x43\x6f\x6d\x75\x4e\x78\x64\x4a\x47','\x57\x51\x52\x64\x56\x6d\x6b\x6b\x57\x34\x4c\x54','\x41\x38\x6f\x55\x68\x59\x75\x78','\x57\x37\x56\x64\x49\x5a\x53\x69\x6a\x71','\x71\x43\x6f\x53\x41\x43\x6f\x76\x6c\x43\x6b\x44','\x57\x50\x68\x64\x55\x53\x6f\x5a\x66\x53\x6f\x4c\x57\x37\x42\x63\x51\x30\x4f','\x57\x4f\x54\x6a\x57\x37\x46\x63\x4b\x38\x6b\x70','\x74\x49\x64\x63\x50\x43\x6b\x50','\x79\x53\x6f\x6c\x63\x48\x52\x63\x4c\x57','\x57\x4f\x48\x61\x57\x50\x71\x4a','\x57\x34\x4f\x71\x57\x37\x66\x42\x57\x36\x70\x63\x4a\x6d\x6b\x75\x6c\x57','\x6e\x4c\x31\x51\x57\x36\x6c\x63\x51\x53\x6b\x61\x42\x38\x6b\x2b','\x63\x6d\x6f\x2f\x71\x33\x74\x64\x4c\x47','\x57\x52\x37\x63\x48\x43\x6f\x44\x66\x43\x6f\x70\x74\x43\x6f\x53','\x57\x4f\x74\x63\x49\x53\x6f\x32\x62\x38\x6f\x77','\x57\x51\x52\x63\x55\x74\x33\x63\x4f\x43\x6f\x6c\x57\x34\x39\x51\x57\x4f\x4f','\x57\x51\x70\x63\x4a\x38\x6b\x38\x61\x6d\x6f\x43\x78\x6d\x6b\x31\x57\x35\x4b','\x79\x58\x69\x4a\x57\x35\x33\x63\x50\x38\x6b\x6c','\x44\x48\x57\x4e\x57\x35\x71','\x57\x35\x4f\x79\x57\x36\x39\x44\x57\x36\x33\x63\x47\x6d\x6f\x79\x6e\x71','\x57\x34\x4b\x62\x57\x35\x66\x37\x46\x72\x66\x4c\x73\x53\x6f\x36\x57\x52\x71\x51\x61\x68\x34','\x57\x35\x68\x63\x55\x38\x6b\x57\x57\x52\x71\x58\x62\x61','\x57\x34\x2f\x64\x55\x43\x6b\x76\x57\x36\x4a\x63\x4e\x53\x6b\x2b\x7a\x53\x6f\x36','\x57\x37\x52\x64\x52\x33\x37\x63\x4b\x6d\x6f\x6c\x57\x35\x39\x38','\x57\x36\x6c\x64\x4d\x49\x46\x63\x4f\x53\x6b\x35\x57\x35\x47','\x44\x6d\x6b\x4c\x76\x68\x46\x64\x55\x74\x46\x64\x52\x6d\x6b\x53','\x57\x52\x38\x64\x6c\x38\x6f\x74\x67\x47','\x73\x53\x6f\x58\x7a\x43\x6f\x63\x6c\x6d\x6f\x68\x61\x58\x69','\x67\x53\x6b\x43\x73\x38\x6b\x58','\x66\x73\x58\x77\x57\x35\x30','\x57\x4f\x48\x32\x6a\x38\x6b\x6e\x57\x36\x78\x63\x55\x32\x44\x54','\x57\x34\x38\x4e\x57\x51\x4e\x64\x54\x38\x6f\x7a\x57\x37\x39\x6a\x41\x66\x78\x63\x4b\x43\x6f\x51\x44\x61\x53','\x46\x4e\x4e\x64\x4c\x49\x2f\x63\x47\x43\x6f\x77','\x79\x68\x78\x64\x49\x59\x70\x63\x51\x53\x6f\x6b\x74\x6d\x6f\x36','\x77\x53\x6f\x46\x64\x72\x34','\x57\x37\x6c\x64\x50\x76\x30\x64\x77\x57','\x57\x37\x30\x37\x63\x6d\x6f\x79','\x57\x36\x78\x64\x4d\x57\x65\x65','\x6b\x77\x68\x63\x4b\x43\x6b\x4b\x7a\x53\x6f\x35\x57\x51\x74\x63\x54\x71','\x57\x4f\x6c\x64\x53\x63\x4a\x63\x51\x38\x6f\x6b','\x57\x51\x52\x63\x55\x32\x71\x6d\x41\x67\x39\x4f\x57\x37\x4a\x63\x52\x66\x7a\x47','\x6b\x48\x39\x4d\x57\x35\x31\x44','\x46\x68\x4e\x64\x53\x73\x5a\x63\x48\x47','\x6e\x38\x6f\x37\x63\x4a\x78\x63\x4f\x47','\x57\x37\x56\x64\x4c\x53\x6b\x75\x57\x36\x2f\x64\x4a\x61','\x6e\x4e\x6c\x63\x56\x43\x6f\x73\x57\x52\x65','\x57\x51\x30\x50\x64\x53\x6f\x7a\x63\x47\x70\x64\x52\x66\x4b','\x57\x4f\x75\x2f\x57\x50\x68\x63\x51\x6d\x6f\x36','\x68\x76\x74\x63\x51\x38\x6f\x4e\x69\x38\x6b\x54\x57\x35\x38\x35','\x65\x43\x6f\x57\x65\x77\x46\x64\x4e\x48\x65\x6c\x70\x47','\x57\x52\x68\x64\x49\x73\x70\x63\x55\x6d\x6b\x50\x57\x35\x48\x50\x57\x4f\x6d','\x63\x48\x35\x46\x57\x34\x71\x75','\x57\x35\x56\x64\x52\x6d\x6b\x65\x57\x36\x2f\x64\x49\x38\x6b\x35','\x73\x43\x6f\x57\x44\x38\x6f\x69','\x57\x35\x56\x64\x55\x43\x6b\x63\x57\x37\x37\x63\x48\x6d\x6f\x51','\x57\x4f\x4b\x4e\x57\x51\x42\x63\x4e\x38\x6f\x46\x71\x77\x4b','\x57\x50\x57\x44\x6b\x43\x6f\x77\x67\x47','\x7a\x38\x6f\x71\x57\x51\x46\x63\x53\x61','\x57\x51\x79\x34\x57\x4f\x74\x63\x4f\x6d\x6f\x75','\x7a\x6d\x6f\x6a\x57\x52\x33\x63\x55\x30\x30','\x62\x43\x6f\x59\x66\x64\x4f','\x57\x36\x2f\x64\x51\x77\x43\x74\x74\x74\x6a\x4b\x57\x34\x4b','\x57\x52\x48\x53\x69\x38\x6b\x45\x57\x36\x78\x63\x50\x68\x79','\x57\x51\x70\x63\x4e\x38\x6f\x5a\x63\x71','\x6e\x4d\x5a\x63\x4b\x6d\x6b\x32\x46\x53\x6f\x31','\x70\x65\x4a\x64\x4b\x4b\x74\x63\x4f\x73\x72\x31\x6f\x61','\x63\x58\x4a\x63\x4c\x31\x31\x6c\x6a\x43\x6f\x2b\x57\x51\x65','\x57\x52\x5a\x63\x53\x73\x72\x6f','\x78\x6d\x6f\x54\x6f\x5a\x68\x63\x4d\x71','\x68\x32\x64\x63\x4c\x53\x6b\x37\x41\x57','\x57\x37\x31\x79\x57\x52\x68\x63\x49\x6d\x6f\x6d\x78\x43\x6b\x51\x57\x52\x75','\x57\x35\x4b\x64\x57\x36\x72\x43\x57\x36\x74\x63\x4c\x38\x6b\x6b\x69\x57','\x57\x52\x74\x64\x53\x6d\x6b\x64\x57\x34\x66\x52\x42\x57','\x57\x34\x35\x32\x57\x37\x4a\x63\x54\x74\x5a\x64\x4b\x32\x39\x39','\x65\x59\x35\x48\x57\x36\x71\x78\x76\x57','\x45\x6d\x6f\x71\x57\x51\x64\x63\x55\x30\x43\x52\x42\x57','\x41\x5a\x2f\x64\x49\x43\x6f\x4b\x70\x6d\x6f\x53\x57\x50\x52\x63\x4b\x4b\x5a\x63\x48\x38\x6b\x4e','\x78\x38\x6f\x71\x57\x34\x43\x42\x64\x53\x6b\x67\x57\x4f\x42\x64\x4a\x47','\x57\x52\x4e\x64\x4e\x63\x6c\x63\x4d\x43\x6f\x46','\x74\x65\x6c\x63\x4b\x38\x6f\x57\x67\x38\x6b\x70\x63\x57','\x57\x35\x4b\x65\x57\x37\x6a\x73','\x43\x38\x6f\x64\x70\x5a\x75\x39','\x6b\x4d\x4a\x63\x4a\x6d\x6b\x57\x7a\x57','\x63\x66\x6c\x63\x56\x38\x6f\x59\x57\x51\x4f','\x72\x43\x6f\x6a\x77\x72\x46\x63\x52\x30\x54\x38\x57\x37\x79','\x65\x6d\x6f\x37\x71\x33\x64\x63\x4d\x57\x43\x63\x6b\x71','\x79\x38\x6f\x6d\x57\x52\x56\x63\x54\x4c\x53'];_0x1949=function(){return _0x25ffef;};return _0x1949();}function _0x5d8b(_0x32d42a,_0x58300e){_0x32d42a=_0x32d42a-(0x1*0xcd8+0x5bb+-0x11a2);const _0x27dc0d=_0x1949();let _0x253320=_0x27dc0d[_0x32d42a];if(_0x5d8b['\x4a\x4f\x55\x57\x78\x55']===undefined){var _0x1b8fba=function(_0x43b017){const _0x493f25='\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 _0x581a1d='',_0x1bce81='',_0x3fb302=_0x581a1d+_0x1b8fba,_0x55e7e1=(''+function(){return-0x2af*-0xe+-0x1*-0x1561+0x3af3*-0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x2356+-0x1*0x14af+-0xea6);for(let _0x469d1f=-0x4*0xaa+-0x1bcf*0x1+0x2c5*0xb,_0x107a61,_0x154f91,_0x29d2d0=-0x7*0x89+-0x46b*0x3+0x1100;_0x154f91=_0x43b017['\x63\x68\x61\x72\x41\x74'](_0x29d2d0++);~_0x154f91&&(_0x107a61=_0x469d1f%(-0x2d1*0x1+0x1bb4+-0x18df)?_0x107a61*(-0x5fb*-0x1+0x183+0x39f*-0x2)+_0x154f91:_0x154f91,_0x469d1f++%(-0x1ec3+-0xeff+0x2dc6))?_0x581a1d+=_0x55e7e1||_0x3fb302['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x29d2d0+(0x1009+0x1a58+0xe1d*-0x3))-(0x3f6+0x202f+-0x241b)!==0xeb5+0x6fd+0x2*-0xad9?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1d*-0xce+-0xfa2+-0x11*0x65&_0x107a61>>(-(-0xb1+-0x19a2*-0x1+-0x18ef)*_0x469d1f&0x17d+0x25*0x18+-0x4ef)):_0x469d1f:0x17a4+0x19ef+0x715*-0x7){_0x154f91=_0x493f25['\x69\x6e\x64\x65\x78\x4f\x66'](_0x154f91);}for(let _0x108f41=-0xef2+0xe28+0xca,_0x2244a0=_0x581a1d['\x6c\x65\x6e\x67\x74\x68'];_0x108f41<_0x2244a0;_0x108f41++){_0x1bce81+='\x25'+('\x30\x30'+_0x581a1d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x108f41)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0xcf8+-0x1723+0x242b))['\x73\x6c\x69\x63\x65'](-(-0x1*0x143b+0x75a+0xce3));}return decodeURIComponent(_0x1bce81);};const _0x224e7d=function(_0x57c21a,_0x148c8e){let _0x34c207=[],_0x49cfd3=-0x2*0x916+-0x102a*0x1+-0x6de*-0x5,_0x5d5b5f,_0x10ee7d='';_0x57c21a=_0x1b8fba(_0x57c21a);let _0x27994a;for(_0x27994a=-0xda*-0x1b+0xfe+-0x17fc;_0x27994a<-0x3*-0xa7b+0xb*0x2e5+-0x3e48;_0x27994a++){_0x34c207[_0x27994a]=_0x27994a;}for(_0x27994a=-0x3a1+0x13ee+-0xd*0x141;_0x27994a<-0x1199*0x2+0x32b*0x3+0x1ab1;_0x27994a++){_0x49cfd3=(_0x49cfd3+_0x34c207[_0x27994a]+_0x148c8e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x27994a%_0x148c8e['\x6c\x65\x6e\x67\x74\x68']))%(-0x3ad*0x2+-0x538+0x486*0x3),_0x5d5b5f=_0x34c207[_0x27994a],_0x34c207[_0x27994a]=_0x34c207[_0x49cfd3],_0x34c207[_0x49cfd3]=_0x5d5b5f;}_0x27994a=0x64f*-0x1+-0x120c+0x185b,_0x49cfd3=-0x670+0x1c4*0x2+0x2e8;for(let _0x1e0d92=0x1f05*-0x1+-0x186c+0x3771;_0x1e0d92<_0x57c21a['\x6c\x65\x6e\x67\x74\x68'];_0x1e0d92++){_0x27994a=(_0x27994a+(0x61b*0x3+-0x25+-0x122b))%(0x2f*-0x4+0x1131+-0x527*0x3),_0x49cfd3=(_0x49cfd3+_0x34c207[_0x27994a])%(-0x115f+0x8b6*0x1+-0x9a9*-0x1),_0x5d5b5f=_0x34c207[_0x27994a],_0x34c207[_0x27994a]=_0x34c207[_0x49cfd3],_0x34c207[_0x49cfd3]=_0x5d5b5f,_0x10ee7d+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x57c21a['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1e0d92)^_0x34c207[(_0x34c207[_0x27994a]+_0x34c207[_0x49cfd3])%(-0x8f+-0x24fd+0x268c)]);}return _0x10ee7d;};_0x5d8b['\x44\x45\x4a\x43\x50\x52']=_0x224e7d,_0x5d8b['\x4b\x66\x59\x76\x50\x64']={},_0x5d8b['\x4a\x4f\x55\x57\x78\x55']=!![];}const _0xfc47d2=_0x27dc0d[0x7*0x60+-0x595*-0x1+-0x1*0x835],_0x3fea7a=_0x32d42a+_0xfc47d2,_0x5efb54=_0x5d8b['\x4b\x66\x59\x76\x50\x64'][_0x3fea7a];if(!_0x5efb54){if(_0x5d8b['\x77\x6c\x42\x62\x4f\x61']===undefined){const _0x16d822=function(_0xfa8366){this['\x65\x4e\x4d\x52\x67\x73']=_0xfa8366,this['\x53\x48\x53\x63\x42\x64']=[0x4*0x56+-0x13*-0x10+0x287*-0x1,0x13*-0x77+-0x2b*-0x8b+0xe84*-0x1,0x14*-0x10b+0x16df*0x1+0x203*-0x1],this['\x45\x7a\x47\x4b\x55\x48']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x50\x6d\x6c\x42\x68\x67']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x6d\x43\x62\x67\x74\x64']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x16d822['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x46\x68\x44\x54\x53\x6b']=function(){const _0xf7a745=new RegExp(this['\x50\x6d\x6c\x42\x68\x67']+this['\x6d\x43\x62\x67\x74\x64']),_0x24673a=_0xf7a745['\x74\x65\x73\x74'](this['\x45\x7a\x47\x4b\x55\x48']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x53\x48\x53\x63\x42\x64'][-0x1*0x18f3+-0x231b+0x3c0f]:--this['\x53\x48\x53\x63\x42\x64'][-0x141e+0x1931+0x3*-0x1b1];return this['\x79\x71\x50\x42\x55\x58'](_0x24673a);},_0x16d822['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x79\x71\x50\x42\x55\x58']=function(_0x52f061){if(!Boolean(~_0x52f061))return _0x52f061;return this['\x58\x59\x4e\x59\x61\x4c'](this['\x65\x4e\x4d\x52\x67\x73']);},_0x16d822['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x58\x59\x4e\x59\x61\x4c']=function(_0x4e6aed){for(let _0x5376d8=-0x1*0x4dc+0x207a+0xca*-0x23,_0x54a9c1=this['\x53\x48\x53\x63\x42\x64']['\x6c\x65\x6e\x67\x74\x68'];_0x5376d8<_0x54a9c1;_0x5376d8++){this['\x53\x48\x53\x63\x42\x64']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x54a9c1=this['\x53\x48\x53\x63\x42\x64']['\x6c\x65\x6e\x67\x74\x68'];}return _0x4e6aed(this['\x53\x48\x53\x63\x42\x64'][0xdb+-0x143a+0x13*0x105]);},(''+function(){return-0x7b*0xe+0xba5+0x4eb*-0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x24f3+0x1*-0x1b41+0x4035)&&new _0x16d822(_0x5d8b)['\x46\x68\x44\x54\x53\x6b'](),_0x5d8b['\x77\x6c\x42\x62\x4f\x61']=!![];}_0x253320=_0x5d8b['\x44\x45\x4a\x43\x50\x52'](_0x253320,_0x58300e),_0x5d8b['\x4b\x66\x59\x76\x50\x64'][_0x3fea7a]=_0x253320;}else _0x253320=_0x5efb54;return _0x253320;}const _0x11507c=require('\x66\x73'),_0x4d2268=require(_0x24e6b3(0xfc,'\x36\x59\x64\x57')),{getReflectionLogPath:_0x9d5b50,getEvolutionDir:_0x2009fe}=require(_0x24e6b3(0x20c,'\x6c\x50\x56\x61')),_0x315896=-0x2702+-0x1ffe+-0x4705*-0x1,_0x417827=0x68a+0x1507*0x1+0x13*-0x173,_0x5495fd=0x5dd+0x1*0x516+-0xaf0,_0x167f99=(-0x5*-0x26b+-0x1a1b+0xe22)*(0x1ca+0x1*0x183b+-0x19c9)*(-0xa65+0xf50+0x103*-0x1),_0x2567d0=_0x315896;function _0xbba91c(_0x266f11){const _0x5abe55=_0x24e6b3;try{const _0x57eb7a={};_0x57eb7a[_0x5abe55(0x24c,'\x6d\x54\x6d\x76')+'\x65']=!![];if(!_0x11507c[_0x5abe55(0x19a,'\x78\x21\x54\x6a')+'\x6e\x63'](_0x266f11))_0x11507c[_0x5abe55(0x2bb,'\x24\x35\x29\x65')+'\x63'](_0x266f11,_0x57eb7a);}catch(_0x2bed91){}}function _0x3254c8(_0x1c25b1){const _0x4ce950=_0x24e6b3,_0x3a858c={};_0x3a858c[_0x4ce950(0x29a,'\x56\x67\x76\x68')]=function(_0x4c881e,_0x4302cd){return _0x4c881e===_0x4302cd;},_0x3a858c[_0x4ce950(0x103,'\x78\x69\x4c\x52')]=_0x4ce950(0xf1,'\x37\x33\x65\x39'),_0x3a858c[_0x4ce950(0x284,'\x5b\x34\x49\x31')]=function(_0x322bde,_0x2d338f){return _0x322bde===_0x2d338f;},_0x3a858c[_0x4ce950(0x145,'\x36\x59\x64\x57')]=function(_0x32b7e1,_0xe680c5){return _0x32b7e1===_0xe680c5;},_0x3a858c[_0x4ce950(0x27a,'\x2a\x72\x5b\x28')]=_0x4ce950(0x2d8,'\x74\x59\x50\x64'),_0x3a858c[_0x4ce950(0x269,'\x56\x69\x44\x36')]=function(_0x3babb9,_0x160634){return _0x3babb9<_0x160634;};const _0x2c5535=_0x3a858c;try{var _0x1b91c9=Array[_0x4ce950(0x111,'\x79\x6a\x37\x59')](_0x1c25b1)?_0x1c25b1:[];if(_0x2c5535[_0x4ce950(0x1ba,'\x58\x32\x55\x6e')](_0x1b91c9[_0x4ce950(0x2b0,'\x69\x59\x77\x74')],-0xa1*-0x3d+-0x6*0x20d+0xd06*-0x2))return _0x315896;var _0x3bb9a9=_0x1b91c9[_0x4ce950(0x150,'\x47\x46\x26\x4f')](-(-0x1a2c+-0x1*0x2692+0xb*0x5e3)),_0xdbe565=_0x3bb9a9[_0x4ce950(0x22d,'\x36\x59\x64\x57')](function(_0x168df3){const _0x5f370d=_0x4ce950;return _0x168df3&&_0x168df3[_0x5f370d(0x125,'\x47\x32\x65\x54')]&&_0x2c5535[_0x5f370d(0x1bd,'\x70\x56\x47\x74')](_0x168df3[_0x5f370d(0x1c6,'\x74\x59\x50\x64')][_0x5f370d(0x1db,'\x2a\x4f\x29\x6f')],_0x2c5535['\x4f\x46\x43\x68\x55']);}),_0x55cf26=_0x3bb9a9[_0x4ce950(0x183,'\x69\x59\x77\x74')](function(_0x1fb0d2){const _0x4f2ae7=_0x4ce950;if(_0x2c5535[_0x4f2ae7(0x171,'\x25\x51\x40\x46')]('\x41\x74\x78\x79\x52',_0x4f2ae7(0x25c,'\x37\x33\x65\x39')))return _0x1fb0d2&&_0x1fb0d2[_0x4f2ae7(0x2bc,'\x68\x70\x71\x4a')]&&_0x2c5535[_0x4f2ae7(0x106,'\x5d\x55\x24\x51')](_0x1fb0d2[_0x4f2ae7(0x1f1,'\x24\x35\x29\x65')][_0x4f2ae7(0x2b3,'\x25\x55\x70\x40')],_0x2c5535['\x4e\x67\x4c\x62\x54']);else _0x29710a[_0x4f2ae7(0xf7,'\x78\x69\x4c\x52')]('\x2d\x20\x45\x78\x70\x6c\x61\x6e'+_0x4f2ae7(0x1a9,'\x36\x59\x64\x57')+_0xe6c867[_0x4f2ae7(0x127,'\x65\x66\x61\x58')+'\x69\x6f\x6e']);});if(_0xdbe565)return _0x417827;if(_0x55cf26)return _0x5495fd;}catch(_0x1a0f78){}return _0x315896;}function _0x490d33({cycleCount:_0x2a48c2,recentEvents:_0x491cba}){const _0x2b086a=_0x24e6b3,_0xa9ac91={'\x49\x4c\x64\x43\x4a':function(_0xc1ea8,_0x177568){return _0xc1ea8>_0x177568;},'\x46\x70\x52\x75\x55':function(_0x46a87f,_0x386b3e){return _0x46a87f(_0x386b3e);},'\x54\x64\x79\x59\x52':function(_0x24551b,_0x57996a){return _0x24551b<_0x57996a;},'\x6c\x41\x6e\x65\x4b':function(_0x277d35,_0x469582){return _0x277d35!==_0x469582;},'\x42\x58\x52\x4f\x52':function(_0x409020,_0x4402b0){return _0x409020%_0x4402b0;},'\x63\x74\x49\x69\x52':_0x2b086a(0x233,'\x61\x32\x4c\x26'),'\x42\x6e\x51\x70\x61':function(_0x2fa010,_0x40489e){return _0x2fa010<_0x40489e;},'\x6a\x4a\x77\x67\x72':function(_0x183319,_0x551420){return _0x183319-_0x551420;}};var _0x3a6455=_0xa9ac91[_0x2b086a(0x1bc,'\x5b\x43\x24\x59')](_0x3254c8,_0x491cba);if(!Number[_0x2b086a(0x1fd,'\x76\x56\x42\x48')](_0x2a48c2)||_0xa9ac91[_0x2b086a(0x227,'\x4b\x21\x78\x41')](_0x2a48c2,_0x3a6455))return![];if(_0xa9ac91['\x6c\x41\x6e\x65\x4b'](_0xa9ac91[_0x2b086a(0x222,'\x5e\x24\x4f\x70')](_0x2a48c2,_0x3a6455),-0x1c3*-0x5+-0x85*-0x18+-0x1547))return![];const _0x5d7533=_0x9d5b50();try{if(_0x11507c[_0x2b086a(0x156,'\x29\x59\x70\x59')+'\x6e\x63'](_0x5d7533)){if(_0x2b086a(0x233,'\x61\x32\x4c\x26')!==_0xa9ac91[_0x2b086a(0x208,'\x21\x68\x72\x74')])_0x26cd78[_0x2b086a(0x2d0,'\x7a\x4e\x42\x62')]('\x23\x23\x20\x4d\x65\x6d\x6f\x72'+_0x2b086a(0x29c,'\x58\x32\x55\x6e')+_0x2b086a(0x2a4,'\x25\x51\x40\x46')),_0x47bb52[_0x2b086a(0x1d7,'\x25\x51\x40\x46')+_0x2b086a(0x1be,'\x5e\x24\x4f\x70')]&&_0x13ed41[_0x2b086a(0x2ce,'\x43\x59\x4d\x30')]('\x2d\x20\x50\x72\x65\x66\x65\x72'+_0x2b086a(0x11c,'\x25\x51\x40\x46')+'\x3a\x20'+_0x4bfb0e['\x70\x72\x65\x66\x65\x72\x72\x65'+_0x2b086a(0x1be,'\x5e\x24\x4f\x70')]),_0x4e6edb[_0x2b086a(0x1b9,'\x32\x48\x26\x6f')](_0x118f45[_0x2b086a(0x224,'\x21\x68\x72\x74')+_0x2b086a(0xfd,'\x36\x37\x6c\x24')])&&_0xa9ac91[_0x2b086a(0x213,'\x5b\x43\x24\x59')](_0x183562[_0x2b086a(0x262,'\x2a\x72\x5b\x28')+'\x6e\x65\x49\x64\x73'][_0x2b086a(0x23b,'\x7a\x4e\x42\x62')],0x5f8+0xe*-0x83+-0x9*-0x22)&&_0x4c6352[_0x2b086a(0x133,'\x69\x59\x77\x74')](_0x2b086a(0x194,'\x70\x4c\x51\x38')+_0x2b086a(0x16d,'\x79\x6a\x37\x59')+_0x30bba4[_0x2b086a(0x286,'\x61\x32\x4c\x26')+_0x2b086a(0x104,'\x6d\x54\x6d\x76')][_0x2b086a(0x181,'\x43\x59\x4d\x30')]('\x2c\x20')),_0x29c24f[_0x2b086a(0x2ae,'\x70\x56\x47\x74')+_0x2b086a(0x21f,'\x67\x5d\x30\x76')]&&_0x16fff0[_0x2b086a(0x1e0,'\x32\x48\x26\x6f')](_0x2b086a(0x176,'\x5e\x24\x4f\x70')+'\x61\x74\x69\x6f\x6e\x3a\x20'+_0x226fbf[_0x2b086a(0x182,'\x5b\x34\x49\x31')+_0x2b086a(0x279,'\x78\x21\x54\x6a')]),_0x2b1c54[_0x2b086a(0x19e,'\x24\x35\x29\x65')]('');else{const _0x1e13fd=_0x11507c[_0x2b086a(0x200,'\x7a\x4e\x42\x62')](_0x5d7533);if(_0xa9ac91[_0x2b086a(0x299,'\x74\x68\x41\x46')](_0xa9ac91[_0x2b086a(0x234,'\x36\x59\x64\x57')](Date[_0x2b086a(0x229,'\x65\x66\x61\x58')](),_0x1e13fd[_0x2b086a(0x256,'\x70\x4c\x51\x38')]),_0x167f99))return![];}}}catch(_0x1a2f04){}return!![];}function _0x2eb6cb(_0x3fc9b9){const _0x20ebde=_0x24e6b3,_0x2e0985={'\x79\x66\x67\x6c\x71':function(_0x269335,_0x451560){return _0x269335===_0x451560;},'\x70\x6d\x4d\x41\x59':_0x20ebde(0xf5,'\x61\x32\x4c\x26')+_0x20ebde(0x1e9,'\x5d\x55\x24\x51')+_0x20ebde(0x14c,'\x5e\x24\x4f\x70'),'\x6c\x50\x42\x63\x52':function(_0x364fa2,_0x1c722b){return _0x364fa2===_0x1c722b;},'\x4a\x54\x56\x55\x56':_0x20ebde(0x217,'\x2a\x4f\x29\x6f')+_0x20ebde(0x1fc,'\x74\x59\x50\x64')+_0x20ebde(0x170,'\x4b\x21\x78\x41')+_0x20ebde(0x202,'\x6c\x50\x56\x61'),'\x46\x50\x49\x79\x54':_0x20ebde(0x2c3,'\x47\x46\x26\x4f')+_0x20ebde(0x22e,'\x2a\x4f\x29\x6f')+'\x5f\x64\x65\x74\x65\x63\x74\x65'+'\x64','\x46\x67\x72\x55\x75':_0x20ebde(0x287,'\x4b\x21\x78\x41')+'\x72','\x65\x50\x6a\x6d\x6e':function(_0x3b0859,_0x7df6ce){return _0x3b0859(_0x7df6ce);},'\x72\x73\x41\x59\x61':'\x65\x72\x72\x73\x69\x67\x5f\x6e'+'\x6f\x72\x6d\x3a','\x4f\x7a\x4a\x68\x52':_0x20ebde(0x2d6,'\x37\x33\x65\x39')+_0x20ebde(0x20d,'\x4b\x65\x57\x62')+_0x20ebde(0x134,'\x21\x68\x72\x74')+_0x20ebde(0x22b,'\x25\x55\x70\x40'),'\x56\x66\x76\x71\x49':_0x20ebde(0x101,'\x36\x30\x33\x6c'),'\x4c\x51\x63\x56\x5a':_0x20ebde(0x14d,'\x79\x6a\x37\x59'),'\x71\x4c\x51\x50\x57':function(_0x5ab0a7,_0x3a62f8){return _0x5ab0a7===_0x3a62f8;},'\x7a\x77\x4c\x6d\x50':_0x20ebde(0x260,'\x70\x56\x47\x74')+_0x20ebde(0xf8,'\x4b\x21\x78\x41')+_0x20ebde(0x20f,'\x5e\x24\x4f\x70'),'\x45\x6c\x59\x6f\x6a':'\x65\x72\x72\x6f\x72\x73\x20\x64'+_0x20ebde(0x1ab,'\x4b\x65\x57\x62')+_0x20ebde(0x10b,'\x21\x68\x72\x74')+_0x20ebde(0x143,'\x58\x32\x55\x6e'),'\x75\x5a\x68\x54\x65':_0x20ebde(0x14f,'\x58\x32\x55\x6e')+_0x20ebde(0x259,'\x66\x79\x79\x33'),'\x46\x70\x75\x78\x72':_0x20ebde(0x13d,'\x2a\x4f\x29\x6f')+_0x20ebde(0x21a,'\x25\x55\x70\x40')+_0x20ebde(0x1b5,'\x4b\x21\x78\x41')+_0x20ebde(0x119,'\x70\x4c\x51\x38')};var _0x1be2ee=Array[_0x20ebde(0x2b6,'\x47\x46\x26\x4f')](_0x3fc9b9)?_0x3fc9b9:[],_0x1f4660=[],_0xf8ed06=_0x1be2ee[_0x20ebde(0x1b2,'\x4b\x21\x78\x41')](function(_0x307ed3){const _0x15b776=_0x20ebde;return _0x2e0985[_0x15b776(0x2b2,'\x67\x5d\x30\x76')](_0x307ed3,_0x2e0985[_0x15b776(0xf4,'\x69\x59\x77\x74')])||_0x2e0985[_0x15b776(0x161,'\x37\x33\x65\x39')](_0x307ed3,_0x2e0985[_0x15b776(0x185,'\x74\x59\x50\x64')])||_0x307ed3===_0x2e0985[_0x15b776(0x1b3,'\x5e\x24\x4f\x70')];}),_0x4f8f41=_0x1be2ee[_0x20ebde(0x2d9,'\x74\x59\x50\x64')](function(_0x257ddd){const _0x139956=_0x20ebde;return _0x2e0985[_0x139956(0x2d5,'\x4b\x65\x57\x62')](_0x257ddd,_0x2e0985[_0x139956(0x1c1,'\x25\x51\x40\x46')])||_0x2e0985[_0x139956(0x2b8,'\x70\x56\x47\x74')](String,_0x257ddd)[_0x139956(0x265,'\x70\x4c\x51\x38')+'\x74\x68'](_0x139956(0x235,'\x6f\x23\x50\x63'))||_0x2e0985[_0x139956(0x22f,'\x67\x5d\x30\x76')](String,_0x257ddd)[_0x139956(0x25f,'\x67\x5d\x30\x76')+'\x74\x68'](_0x2e0985[_0x139956(0x249,'\x6f\x75\x34\x4a')]);}),_0x45fd56=_0x1be2ee['\x73\x6f\x6d\x65'](function(_0x167970){const _0x654255=_0x20ebde,_0xcd94dc={'\x7a\x4d\x66\x72\x62':_0x2e0985['\x4f\x7a\x4a\x68\x52'],'\x4d\x4a\x70\x53\x50':function(_0xf904c0,_0x3f71cd){const _0x4c681a=_0x5d8b;return _0x2e0985[_0x4c681a(0x164,'\x5b\x34\x49\x31')](_0xf904c0,_0x3f71cd);}};if(_0x2e0985[_0x654255(0x12d,'\x68\x46\x25\x51')]===_0x2e0985[_0x654255(0x15f,'\x24\x35\x29\x65')])_0x58300e[_0x654255(0x1a4,'\x65\x66\x61\x58')](_0xcd94dc[_0x654255(0x28a,'\x47\x42\x6c\x72')]),_0x27dc0d[_0x654255(0xff,'\x68\x70\x71\x4a')](_0xcd94dc['\x4d\x4a\x70\x53\x50'](_0x253320,_0x1b8fba)[_0x654255(0x267,'\x56\x69\x44\x36')](0x1bf5*0x1+0x3*0x209+0x8*-0x442,0xd78+0x247b+-0x1*0x263b)),_0xfc47d2[_0x654255(0xfe,'\x58\x32\x55\x6e')]('');else return _0x167970===_0x654255(0x2d1,'\x29\x59\x70\x59')+_0x654255(0x24b,'\x25\x51\x40\x46')||_0x2e0985[_0x654255(0x1ac,'\x32\x48\x26\x6f')](_0x167970,_0x2e0985[_0x654255(0x272,'\x6f\x75\x34\x4a')]);});if(_0xf8ed06){const _0x332965={};_0x332965[_0x20ebde(0x2d3,'\x21\x68\x72\x74')]='\x63\x72\x65\x61\x74\x69\x76\x69'+'\x74\x79',_0x332965[_0x20ebde(0x167,'\x66\x79\x79\x33')]=+(-0xd*-0x1be+-0x1723+0x7d*0x1+0.05),_0x332965[_0x20ebde(0x2c6,'\x47\x46\x26\x4f')]=_0x20ebde(0x132,'\x54\x68\x44\x46')+_0x20ebde(0x20b,'\x68\x70\x71\x4a')+_0x20ebde(0x165,'\x36\x30\x33\x6c')+_0x20ebde(0x281,'\x7a\x4e\x42\x62')+'\x6e',_0x1f4660[_0x20ebde(0x2af,'\x70\x56\x47\x74')](_0x332965);}if(_0x4f8f41){const _0x5e4a0f={};_0x5e4a0f[_0x20ebde(0x1eb,'\x66\x79\x79\x33')]=_0x20ebde(0x2c8,'\x25\x55\x70\x40'),_0x5e4a0f[_0x20ebde(0x184,'\x32\x48\x26\x6f')]=+(0x1*0x1619+0x74a+-0x1*0x1d63+0.05),_0x5e4a0f[_0x20ebde(0x179,'\x4b\x65\x57\x62')]=_0x2e0985[_0x20ebde(0x290,'\x70\x56\x47\x74')],_0x1f4660[_0x20ebde(0x162,'\x5d\x55\x24\x51')](_0x5e4a0f);}if(_0x45fd56){const _0x25cd88={};_0x25cd88[_0x20ebde(0x280,'\x73\x38\x53\x26')]=_0x2e0985[_0x20ebde(0x2cd,'\x2a\x72\x5b\x28')],_0x25cd88['\x64\x65\x6c\x74\x61']=+(-0x6fd*0x2+-0x34*0xad+0x311e+0.05),_0x25cd88[_0x20ebde(0x241,'\x78\x69\x4c\x52')]=_0x2e0985[_0x20ebde(0x19d,'\x5e\x24\x4f\x70')],_0x1f4660[_0x20ebde(0x295,'\x25\x51\x40\x46')](_0x25cd88);}return _0x1f4660['\x73\x6c\x69\x63\x65'](-0x14d5+0x1*0x373+0x1162,-0x2*-0x401+0x22c8+-0x2ac8);}function _0x4bff93({recentEvents:_0x175d4d,signals:_0x59efb4,memoryAdvice:_0x411836,narrative:_0x40e593}){const _0x168d14=_0x24e6b3,_0x6ef019={'\x68\x46\x74\x51\x52':function(_0x328478,_0x2f7622){return _0x328478+_0x2f7622;},'\x6d\x66\x51\x6f\x54':_0x168d14(0x13a,'\x4b\x21\x78\x41'),'\x71\x4a\x55\x77\x43':function(_0x513c72,_0x40f06b){return _0x513c72+_0x40f06b;},'\x55\x79\x6d\x55\x63':_0x168d14(0x11b,'\x56\x67\x76\x68')+_0x168d14(0x1e4,'\x24\x35\x29\x65')+_0x168d14(0x23d,'\x6f\x23\x50\x63')+_0x168d14(0x136,'\x69\x59\x77\x74')+'\x6e','\x44\x47\x66\x4c\x4f':function(_0x4e3ddd,_0x1ba137){return _0x4e3ddd+_0x1ba137;},'\x44\x41\x52\x52\x43':_0x168d14(0x198,'\x7a\x4e\x42\x62')+_0x168d14(0x1da,'\x78\x69\x4c\x52')+_0x168d14(0x15b,'\x5e\x24\x4f\x70')+_0x168d14(0x174,'\x47\x32\x65\x54')+_0x168d14(0x11d,'\x36\x37\x6c\x24'),'\x58\x55\x76\x46\x77':function(_0x1600e4,_0x361167){return _0x1600e4===_0x361167;},'\x53\x65\x49\x52\x72':_0x168d14(0x277,'\x47\x46\x26\x4f'),'\x5a\x65\x59\x54\x57':_0x168d14(0x2c7,'\x79\x6a\x37\x59')+_0x168d14(0x1b7,'\x2a\x4f\x29\x6f')+_0x168d14(0x291,'\x43\x59\x4d\x30')+_0x168d14(0x1a1,'\x47\x42\x6c\x72')+'\x65\x66\x6c\x65\x63\x74\x69\x6f'+_0x168d14(0x1dc,'\x65\x66\x61\x58')+_0x168d14(0x1de,'\x58\x32\x55\x6e')+_0x168d14(0x192,'\x68\x70\x71\x4a')+_0x168d14(0x270,'\x5b\x43\x24\x59'),'\x75\x74\x49\x6c\x5a':_0x168d14(0x228,'\x79\x6a\x37\x59')+'\x74\x68\x65\x20\x70\x61\x74\x74'+_0x168d14(0x1bf,'\x29\x59\x70\x59')+_0x168d14(0x12e,'\x36\x59\x64\x57')+'\x72\x6f\x76\x69\x64\x65\x20\x63'+_0x168d14(0x168,'\x74\x59\x50\x64')+_0x168d14(0x1f2,'\x21\x68\x72\x74')+_0x168d14(0x108,'\x58\x32\x55\x6e')+'\x65\x2e','\x53\x73\x4b\x44\x59':function(_0x25107d,_0x1041b9){return _0x25107d>_0x1041b9;},'\x61\x69\x49\x46\x61':_0x168d14(0x21b,'\x73\x38\x53\x26'),'\x6f\x4b\x4a\x78\x75':'\x23\x23\x20\x43\x75\x72\x72\x65'+'\x6e\x74\x20\x53\x69\x67\x6e\x61'+'\x6c\x73','\x52\x49\x4d\x57\x70':function(_0x1c3f6c,_0x2d2a17){return _0x1c3f6c!==_0x2d2a17;},'\x69\x47\x44\x62\x56':'\x52\x69\x64\x7a\x56','\x71\x62\x57\x43\x69':_0x168d14(0x10d,'\x74\x68\x41\x46'),'\x62\x54\x4b\x71\x42':_0x168d14(0x23c,'\x5d\x55\x24\x51')+_0x168d14(0x2cc,'\x4b\x65\x57\x62')+_0x168d14(0x131,'\x58\x32\x55\x6e'),'\x48\x75\x73\x6c\x56':_0x168d14(0x114,'\x79\x6a\x37\x59'),'\x77\x77\x55\x42\x58':function(_0x34696b,_0x4a8892){return _0x34696b>_0x4a8892;},'\x71\x44\x68\x78\x6d':function(_0x511da5,_0x59897f){return _0x511da5!==_0x59897f;},'\x4f\x62\x47\x75\x62':function(_0x53992d,_0x32164f){return _0x53992d!==_0x32164f;},'\x79\x43\x4c\x42\x54':_0x168d14(0x2c2,'\x54\x68\x44\x46'),'\x4b\x69\x78\x6e\x6e':_0x168d14(0x178,'\x58\x61\x58\x6a')+_0x168d14(0x236,'\x74\x59\x50\x64')+_0x168d14(0x23f,'\x25\x72\x55\x43')+_0x168d14(0x2be,'\x73\x38\x53\x26'),'\x47\x59\x70\x6a\x4e':function(_0x4b5bf0,_0x1b48be){return _0x4b5bf0(_0x1b48be);},'\x71\x78\x67\x6b\x4a':_0x168d14(0x1d5,'\x5b\x43\x24\x59')+_0x168d14(0x191,'\x76\x56\x42\x48')+_0x168d14(0x172,'\x78\x69\x4c\x52'),'\x49\x4b\x6f\x77\x6a':_0x168d14(0x23e,'\x36\x37\x6c\x24')+_0x168d14(0x12f,'\x21\x68\x72\x74')+_0x168d14(0x117,'\x36\x37\x6c\x24')+'\x73\x69\x67\x6e\x61\x6c\x73\x20'+_0x168d14(0x28e,'\x76\x56\x42\x48')+_0x168d14(0x155,'\x21\x68\x72\x74'),'\x70\x5a\x51\x75\x63':_0x168d14(0x1d6,'\x74\x68\x41\x46')+_0x168d14(0x1c5,'\x47\x32\x65\x54')+_0x168d14(0x1f4,'\x25\x55\x70\x40')+_0x168d14(0x230,'\x56\x69\x44\x36')+_0x168d14(0x1c8,'\x24\x35\x29\x65')+_0x168d14(0x2bf,'\x6f\x23\x50\x63')+_0x168d14(0x252,'\x67\x5d\x30\x76')+_0x168d14(0x257,'\x74\x59\x50\x64')+_0x168d14(0x1ff,'\x36\x30\x33\x6c')+_0x168d14(0x2cb,'\x61\x32\x4c\x26'),'\x46\x77\x6d\x49\x49':_0x168d14(0x2d2,'\x74\x59\x50\x64')+_0x168d14(0x177,'\x24\x35\x29\x65')+_0x168d14(0x2ab,'\x68\x46\x25\x51')+'\x74\x77\x65\x65\x6e\x20\x72\x65'+_0x168d14(0x254,'\x58\x32\x55\x6e')+_0x168d14(0x1f5,'\x56\x67\x76\x68')+_0x168d14(0x1e6,'\x78\x69\x4c\x52')+_0x168d14(0x245,'\x5b\x34\x49\x31'),'\x6d\x66\x70\x49\x44':_0x168d14(0x13c,'\x5d\x55\x24\x51')+_0x168d14(0x1aa,'\x78\x69\x4c\x52')+_0x168d14(0x271,'\x74\x68\x41\x46')+_0x168d14(0x2dd,'\x5d\x55\x24\x51')+_0x168d14(0x25a,'\x25\x55\x70\x40')+_0x168d14(0x1f6,'\x36\x37\x6c\x24')+_0x168d14(0x274,'\x67\x5d\x30\x76')+_0x168d14(0x1cb,'\x36\x59\x64\x57'),'\x46\x62\x74\x6b\x65':_0x168d14(0x1f7,'\x25\x51\x40\x46')+_0x168d14(0x21c,'\x24\x35\x29\x65')+_0x168d14(0x2a3,'\x21\x68\x72\x74')+_0x168d14(0x18b,'\x58\x61\x58\x6a')+_0x168d14(0x209,'\x79\x6a\x37\x59')+_0x168d14(0x146,'\x58\x61\x58\x6a')+_0x168d14(0x16b,'\x2a\x4f\x29\x6f')+'\x67\x79\x5f\x61\x64\x6a\x75\x73'+_0x168d14(0x141,'\x24\x35\x29\x65')+_0x168d14(0xf3,'\x76\x56\x42\x48')+_0x168d14(0x275,'\x47\x32\x65\x54')+_0x168d14(0x1ad,'\x58\x61\x58\x6a')+_0x168d14(0x289,'\x43\x59\x4d\x30')+'\x20\x7d'},_0x1df2c9=[_0x6ef019[_0x168d14(0x154,'\x6f\x23\x50\x63')]];_0x1df2c9[_0x168d14(0x147,'\x78\x21\x54\x6a')](_0x6ef019[_0x168d14(0x1cd,'\x7a\x4e\x42\x62')]),_0x1df2c9[_0x168d14(0x18e,'\x25\x55\x70\x40')]('');if(Array[_0x168d14(0x1b1,'\x76\x56\x42\x48')](_0x175d4d)&&_0x6ef019[_0x168d14(0x112,'\x69\x59\x77\x74')](_0x175d4d[_0x168d14(0x122,'\x25\x55\x70\x40')],-0x1*-0x152a+0x2057+-0x3581)){if(_0x6ef019[_0x168d14(0x1e1,'\x78\x69\x4c\x52')](_0x6ef019[_0x168d14(0x1cc,'\x78\x21\x54\x6a')],_0x6ef019[_0x168d14(0x1df,'\x5d\x55\x24\x51')])){const _0x1568e2=_0x175d4d[_0x168d14(0x196,'\x37\x33\x65\x39')](-(-0x3*-0xb47+0xbe6+-0x2db1)),_0xbbffca=_0x1568e2[_0x168d14(0x2c5,'\x32\x48\x26\x6f')](_0x232a3b=>_0x232a3b&&_0x232a3b[_0x168d14(0x1a5,'\x32\x48\x26\x6f')]&&_0x232a3b[_0x168d14(0x1fa,'\x6f\x23\x50\x63')][_0x168d14(0x10e,'\x5d\x55\x24\x51')]===_0x168d14(0x142,'\x5b\x43\x24\x59'))[_0x168d14(0x124,'\x74\x68\x41\x46')],_0x32ae15=_0x1568e2[_0x168d14(0x148,'\x6f\x23\x50\x63')](_0x1f2717=>_0x1f2717&&_0x1f2717[_0x168d14(0x1ca,'\x2a\x72\x5b\x28')]&&_0x1f2717[_0x168d14(0x25d,'\x76\x56\x42\x48')][_0x168d14(0x2dc,'\x54\x68\x44\x46')]===_0x168d14(0x206,'\x5b\x34\x49\x31'))[_0x168d14(0x25b,'\x73\x38\x53\x26')],_0x1aa8e2={};_0x1568e2['\x66\x6f\x72\x45\x61\x63\x68'](_0x474bb7=>{const _0x36f61a=_0x168d14,_0x505e4e=_0x474bb7&&_0x474bb7['\x69\x6e\x74\x65\x6e\x74']?_0x474bb7[_0x36f61a(0x226,'\x65\x66\x61\x58')]:_0x36f61a(0x231,'\x70\x4c\x51\x38');_0x1aa8e2[_0x505e4e]=_0x6ef019[_0x36f61a(0x107,'\x68\x46\x25\x51')](_0x1aa8e2[_0x505e4e]||-0x9d9*-0x1+0xc79+-0x2*0xb29,-0x1724+0x7f6*0x1+-0x1*-0xf2f);});const _0x4d70bc={};_0x1568e2[_0x168d14(0x1e3,'\x73\x38\x53\x26')](_0x4ea4bc=>{const _0x454d92=_0x168d14,_0x591309=_0x4ea4bc&&Array[_0x454d92(0x2d4,'\x70\x4c\x51\x38')](_0x4ea4bc[_0x454d92(0x1ea,'\x79\x6a\x37\x59')+'\x65\x64'])&&_0x4ea4bc['\x67\x65\x6e\x65\x73\x5f\x75\x73'+'\x65\x64'][-0x1*0x1873+-0x1c12+0x3485]?_0x4ea4bc[_0x454d92(0x2a8,'\x47\x42\x6c\x72')+'\x65\x64'][-0x59f*-0x1+-0x4d0*0x6+0x1741]:_0x6ef019[_0x454d92(0x276,'\x36\x59\x64\x57')];_0x4d70bc[_0x591309]=_0x6ef019[_0x454d92(0x18f,'\x6f\x23\x50\x63')](_0x4d70bc[_0x591309]||0x684*-0x5+0x2*-0xf95+-0x18e*-0x29,0x1b*-0x25+0x19*-0xec+0x1af4);}),_0x1df2c9[_0x168d14(0x18e,'\x25\x55\x70\x40')](_0x6ef019[_0x168d14(0x2a2,'\x29\x59\x70\x59')]),_0x1df2c9[_0x168d14(0x1d1,'\x6f\x75\x34\x4a')](_0x168d14(0x268,'\x74\x59\x50\x64')+_0x168d14(0x285,'\x2a\x72\x5b\x28')+_0xbbffca+(_0x168d14(0x294,'\x68\x70\x71\x4a')+'\x3a\x20')+_0x32ae15),_0x1df2c9[_0x168d14(0x255,'\x2a\x4f\x29\x6f')](_0x168d14(0x2ac,'\x58\x32\x55\x6e')+_0x168d14(0x26b,'\x68\x70\x71\x4a')+_0x168d14(0x251,'\x67\x5d\x30\x76')+JSON[_0x168d14(0x15a,'\x37\x33\x65\x39')+'\x79'](_0x1aa8e2)),_0x1df2c9[_0x168d14(0xf7,'\x78\x69\x4c\x52')](_0x168d14(0x1e2,'\x5b\x34\x49\x31')+'\x73\x61\x67\x65\x3a\x20'+JSON[_0x168d14(0x137,'\x58\x61\x58\x6a')+'\x79'](_0x4d70bc)),_0x1df2c9[_0x168d14(0x189,'\x68\x46\x25\x51')]('');}else{const _0x43eb07={};_0x43eb07[_0x168d14(0x12c,'\x5b\x34\x49\x31')]=_0x168d14(0x21e,'\x70\x56\x47\x74')+'\x74\x79',_0x43eb07[_0x168d14(0x1a3,'\x6f\x75\x34\x4a')]=+(0x96b*0x2+-0xa74+-0x862+0.05),_0x43eb07[_0x168d14(0x250,'\x25\x55\x70\x40')]=dfuseD[_0x168d14(0x19b,'\x6c\x50\x56\x61')],_0x12d9ba[_0x168d14(0x239,'\x54\x68\x44\x46')](_0x43eb07);}}Array[_0x168d14(0x28d,'\x6f\x23\x50\x63')](_0x59efb4)&&_0x59efb4[_0x168d14(0xfa,'\x6d\x54\x6d\x76')]>-0x107b+-0x17*0xa2+0x1f09&&(_0x1df2c9[_0x168d14(0x24d,'\x49\x28\x33\x69')](_0x6ef019[_0x168d14(0x1f0,'\x32\x48\x26\x6f')]),_0x1df2c9['\x70\x75\x73\x68'](_0x59efb4[_0x168d14(0x15c,'\x74\x59\x50\x64')](0x16b5+0x1ba8+0x325d*-0x1,-0x16e9*-0x1+-0x1e87+0x7b2)[_0x168d14(0x27d,'\x6f\x23\x50\x63')]('\x2c\x20')),_0x1df2c9[_0x168d14(0x12a,'\x29\x59\x70\x59')](''));if(_0x411836){if(_0x6ef019[_0x168d14(0x15d,'\x6d\x54\x6d\x76')](_0x6ef019[_0x168d14(0x128,'\x36\x30\x33\x6c')],_0x6ef019[_0x168d14(0x157,'\x6f\x23\x50\x63')])){_0x1df2c9[_0x168d14(0x1a4,'\x65\x66\x61\x58')](_0x6ef019[_0x168d14(0x2c4,'\x6f\x75\x34\x4a')]);if(_0x411836[_0x168d14(0x121,'\x29\x59\x70\x59')+_0x168d14(0x27e,'\x43\x59\x4d\x30')]){if(_0x6ef019['\x58\x55\x76\x46\x77'](_0x6ef019[_0x168d14(0x158,'\x29\x59\x70\x59')],_0x6ef019[_0x168d14(0x2cf,'\x36\x59\x64\x57')]))_0x1df2c9['\x70\x75\x73\x68'](_0x168d14(0x1bb,'\x66\x79\x79\x33')+_0x168d14(0x1ef,'\x7a\x4e\x42\x62')+'\x3a\x20'+_0x411836[_0x168d14(0x242,'\x36\x30\x33\x6c')+_0x168d14(0x2a1,'\x25\x72\x55\x43')]);else{const _0x34b964={};_0x34b964[_0x168d14(0x193,'\x5b\x43\x24\x59')]=_0x6ef019[_0x168d14(0x24f,'\x43\x59\x4d\x30')];const _0x4a23b6=_0x34b964,_0x4f9b8d=_0x53b519[_0x168d14(0x25e,'\x7a\x4e\x42\x62')](-(-0x9e3+0x1*0x25aa+-0x1bbd)),_0x5787db=_0x4f9b8d[_0x168d14(0x1dd,'\x47\x42\x6c\x72')](_0x14fd7a=>_0x14fd7a&&_0x14fd7a['\x6f\x75\x74\x63\x6f\x6d\x65']&&_0x14fd7a[_0x168d14(0x1ec,'\x6f\x75\x34\x4a')][_0x168d14(0x240,'\x65\x66\x61\x58')]==='\x73\x75\x63\x63\x65\x73\x73')[_0x168d14(0x11a,'\x5b\x34\x49\x31')],_0x3c16ee=_0x4f9b8d[_0x168d14(0x148,'\x6f\x23\x50\x63')](_0x130bda=>_0x130bda&&_0x130bda[_0x168d14(0x118,'\x4b\x21\x78\x41')]&&_0x130bda[_0x168d14(0x219,'\x36\x37\x6c\x24')]['\x73\x74\x61\x74\x75\x73']===_0x168d14(0x16e,'\x76\x56\x42\x48'))[_0x168d14(0xfa,'\x6d\x54\x6d\x76')],_0xf24d4c={};_0x4f9b8d[_0x168d14(0x1e3,'\x73\x38\x53\x26')](_0xfafd53=>{const _0x2823c0=_0x168d14,_0x9d449b=_0xfafd53&&_0xfafd53['\x69\x6e\x74\x65\x6e\x74']?_0xfafd53[_0x2823c0(0x1f3,'\x24\x35\x29\x65')]:_0x4a23b6['\x62\x77\x73\x67\x61'];_0xf24d4c[_0x9d449b]=(_0xf24d4c[_0x9d449b]||0x94*-0x2f+-0x622+-0xcb*-0x2a)+(-0x2226+-0x17f*0xd+0x359a);});const _0xf3aba5={};_0x4f9b8d[_0x168d14(0x1d9,'\x2a\x72\x5b\x28')](_0x2a26e8=>{const _0x260690=_0x168d14,_0x3360cc=_0x2a26e8&&_0x2f82d9[_0x260690(0x129,'\x66\x79\x79\x33')](_0x2a26e8[_0x260690(0x186,'\x70\x4c\x51\x38')+'\x65\x64'])&&_0x2a26e8[_0x260690(0x247,'\x47\x32\x65\x54')+'\x65\x64'][-0xcd3+-0x2313+-0x1*-0x2fe6]?_0x2a26e8[_0x260690(0x244,'\x36\x30\x33\x6c')+'\x65\x64'][0x95*0x11+0x155f+0x74*-0x45]:_0x260690(0x246,'\x56\x69\x44\x36');_0xf3aba5[_0x3360cc]=_0x6ef019[_0x260690(0x18c,'\x68\x70\x71\x4a')](_0xf3aba5[_0x3360cc]||-0x2035+-0x25c1+-0x255*-0x1e,-0xfb*-0x6+-0x6c2+-0x9*-0x19);}),_0x9d41b2['\x70\x75\x73\x68'](_0x6ef019[_0x168d14(0x153,'\x7a\x4e\x42\x62')]),_0x11e1b4[_0x168d14(0x10f,'\x61\x32\x4c\x26')](_0x168d14(0x24e,'\x25\x51\x40\x46')+_0x168d14(0x19f,'\x2a\x4f\x29\x6f')+_0x5787db+(_0x168d14(0x173,'\x74\x59\x50\x64')+'\x3a\x20')+_0x3c16ee),_0x4be536[_0x168d14(0x205,'\x58\x61\x58\x6a')](_0x168d14(0x238,'\x2a\x4f\x29\x6f')+_0x168d14(0x123,'\x24\x35\x29\x65')+_0x168d14(0x18d,'\x36\x37\x6c\x24')+_0x571a9e[_0x168d14(0x1d0,'\x4b\x21\x78\x41')+'\x79'](_0xf24d4c)),_0x12fb84[_0x168d14(0x113,'\x47\x32\x65\x54')]('\x2d\x20\x47\x65\x6e\x65\x20\x75'+_0x168d14(0x110,'\x5d\x55\x24\x51')+_0x17c243[_0x168d14(0x215,'\x49\x28\x33\x69')+'\x79'](_0xf3aba5)),_0x460bc7['\x70\x75\x73\x68']('');}}Array[_0x168d14(0x263,'\x49\x28\x33\x69')](_0x411836[_0x168d14(0x2c1,'\x58\x32\x55\x6e')+_0x168d14(0x283,'\x43\x59\x4d\x30')])&&_0x6ef019[_0x168d14(0x1f9,'\x24\x35\x29\x65')](_0x411836[_0x168d14(0x160,'\x74\x68\x41\x46')+'\x6e\x65\x49\x64\x73'][_0x168d14(0x1e7,'\x67\x5d\x30\x76')],-0x5*-0x5da+-0x1f02+-0x40*-0x7)&&_0x1df2c9[_0x168d14(0x1b6,'\x56\x69\x44\x36')](_0x168d14(0x243,'\x61\x32\x4c\x26')+_0x168d14(0x1d2,'\x61\x32\x4c\x26')+_0x411836['\x62\x61\x6e\x6e\x65\x64\x47\x65'+_0x168d14(0x2ca,'\x68\x70\x71\x4a')][_0x168d14(0x29d,'\x74\x59\x50\x64')]('\x2c\x20')),_0x411836[_0x168d14(0x24a,'\x43\x59\x4d\x30')+_0x168d14(0x14b,'\x73\x38\x53\x26')]&&(_0x6ef019[_0x168d14(0x2a9,'\x68\x46\x25\x51')](_0x168d14(0x12b,'\x5b\x43\x24\x59'),'\x56\x6b\x6d\x55\x49')?_0x3d4f22[_0x168d14(0x1d1,'\x6f\x75\x34\x4a')]('\x2d\x20\x50\x72\x65\x66\x65\x72'+'\x72\x65\x64\x20\x67\x65\x6e\x65'+'\x3a\x20'+_0x277a14[_0x168d14(0x14a,'\x47\x42\x6c\x72')+_0x168d14(0x2b4,'\x24\x35\x29\x65')]):_0x1df2c9['\x70\x75\x73\x68'](_0x168d14(0x2c0,'\x43\x59\x4d\x30')+_0x168d14(0x1af,'\x69\x59\x77\x74')+_0x411836['\x65\x78\x70\x6c\x61\x6e\x61\x74'+_0x168d14(0x14b,'\x73\x38\x53\x26')])),_0x1df2c9[_0x168d14(0x1f8,'\x2a\x72\x5b\x28')]('');}else return _0x383793&&_0x1d8884[_0x168d14(0x125,'\x47\x32\x65\x54')]&&dfuseD[_0x168d14(0x187,'\x65\x66\x61\x58')](_0x116cbf[_0x168d14(0x17c,'\x5e\x24\x4f\x70')][_0x168d14(0xf2,'\x78\x21\x54\x6a')],dfuseD[_0x168d14(0x152,'\x68\x46\x25\x51')]);}return _0x40e593&&(_0x6ef019[_0x168d14(0x1e8,'\x68\x70\x71\x4a')](_0x6ef019[_0x168d14(0x28c,'\x25\x55\x70\x40')],_0x6ef019[_0x168d14(0x298,'\x47\x46\x26\x4f')])?_0x11e310[_0x168d14(0x18e,'\x25\x55\x70\x40')]('\x2d\x20\x42\x61\x6e\x6e\x65\x64'+_0x168d14(0x10c,'\x78\x21\x54\x6a')+_0x1b48fa[_0x168d14(0x180,'\x74\x59\x50\x64')+_0x168d14(0x211,'\x68\x46\x25\x51')]['\x6a\x6f\x69\x6e']('\x2c\x20')):(_0x1df2c9['\x70\x75\x73\x68'](_0x6ef019[_0x168d14(0x14e,'\x4b\x21\x78\x41')]),_0x1df2c9[_0x168d14(0x133,'\x69\x59\x77\x74')](_0x6ef019[_0x168d14(0x2aa,'\x47\x46\x26\x4f')](String,_0x40e593)['\x73\x6c\x69\x63\x65'](-0x1658+-0x252c+0x1a*0x24a,-0x3*0xaf1+-0x4*0x80a+0xa5*0x77)),_0x1df2c9['\x70\x75\x73\x68'](''))),_0x1df2c9[_0x168d14(0x144,'\x74\x68\x41\x46')](_0x6ef019[_0x168d14(0x1a2,'\x43\x59\x4d\x30')]),_0x1df2c9[_0x168d14(0x210,'\x56\x67\x76\x68')](_0x6ef019[_0x168d14(0x140,'\x47\x46\x26\x4f')]),_0x1df2c9[_0x168d14(0x1ee,'\x70\x4c\x51\x38')](_0x6ef019[_0x168d14(0x16c,'\x36\x59\x64\x57')]),_0x1df2c9['\x70\x75\x73\x68'](_0x6ef019[_0x168d14(0x22c,'\x36\x30\x33\x6c')]),_0x1df2c9[_0x168d14(0xff,'\x68\x70\x71\x4a')](_0x6ef019[_0x168d14(0x17a,'\x37\x33\x65\x39')]),_0x1df2c9[_0x168d14(0x18e,'\x25\x55\x70\x40')](_0x168d14(0x26d,'\x66\x79\x79\x33')+_0x168d14(0x2da,'\x29\x59\x70\x59')+_0x168d14(0x1b0,'\x5b\x43\x24\x59')+_0x168d14(0x1c3,'\x68\x46\x25\x51')+_0x168d14(0x20e,'\x49\x28\x33\x69')+_0x168d14(0x26e,'\x25\x51\x40\x46')+_0x168d14(0x223,'\x6d\x54\x6d\x76')+_0x168d14(0x197,'\x68\x70\x71\x4a')+'\x74\x3f'),_0x1df2c9[_0x168d14(0x1b6,'\x56\x69\x44\x36')](''),_0x1df2c9[_0x168d14(0x19e,'\x24\x35\x29\x65')](_0x6ef019[_0x168d14(0x237,'\x37\x33\x65\x39')]),_0x1df2c9['\x6a\x6f\x69\x6e']('\x0a');}function _0x948bf2(_0x45252c){const _0x2696e8=_0x24e6b3,_0x5abb66={'\x57\x4d\x4a\x54\x5a':function(_0x356b4c){return _0x356b4c();},'\x4f\x66\x41\x4c\x5a':function(_0x7112e4,_0x218800){return _0x7112e4(_0x218800);},'\x77\x6e\x78\x65\x55':function(_0x1e7164,_0x8f4e62){return _0x1e7164+_0x8f4e62;},'\x57\x41\x71\x4a\x56':_0x2696e8(0xf6,'\x49\x28\x33\x69')},_0x3fde7e=_0x5abb66['\x57\x4d\x4a\x54\x5a'](_0x9d5b50);_0x5abb66['\x4f\x66\x41\x4c\x5a'](_0xbba91c,_0x4d2268[_0x2696e8(0x2a5,'\x6f\x23\x50\x63')](_0x3fde7e));const _0x379b52=_0x5abb66[_0x2696e8(0x29b,'\x70\x4c\x51\x38')](JSON[_0x2696e8(0x2ad,'\x5e\x24\x4f\x70')+'\x79']({'\x74\x73':new Date()['\x74\x6f\x49\x53\x4f\x53\x74\x72'+_0x2696e8(0x288,'\x6f\x23\x50\x63')](),'\x74\x79\x70\x65':'\x72\x65\x66\x6c\x65\x63\x74\x69'+'\x6f\x6e',..._0x45252c}),'\x0a');_0x11507c[_0x2696e8(0x20a,'\x25\x51\x40\x46')+_0x2696e8(0x2a0,'\x2a\x72\x5b\x28')](_0x3fde7e,_0x379b52,_0x5abb66[_0x2696e8(0x188,'\x4b\x21\x78\x41')]);}function _0x1b3693(_0x3afeff){const _0x572b8f=_0x24e6b3,_0x3eb668={};_0x3eb668[_0x572b8f(0x169,'\x29\x59\x70\x59')]=_0x572b8f(0x204,'\x78\x21\x54\x6a'),_0x3eb668[_0x572b8f(0x214,'\x74\x59\x50\x64')]=function(_0x26ad7e,_0x3cb602){return _0x26ad7e===_0x3cb602;},_0x3eb668[_0x572b8f(0x11e,'\x36\x59\x64\x57')]=_0x572b8f(0x19c,'\x58\x32\x55\x6e'),_0x3eb668[_0x572b8f(0x26a,'\x68\x46\x25\x51')]=_0x572b8f(0x1d8,'\x67\x5d\x30\x76');const _0x18f2e3=_0x3eb668,_0x5bbe4e=Number[_0x572b8f(0x297,'\x7a\x4e\x42\x62')](_0x3afeff)?_0x3afeff:0x1b5*0x15+0x1b1*-0x1+-0x2225,_0xa8b520=_0x9d5b50();try{if(_0x18f2e3[_0x572b8f(0x22a,'\x78\x69\x4c\x52')](_0x18f2e3['\x76\x53\x42\x47\x58'],_0x18f2e3[_0x572b8f(0x293,'\x43\x59\x4d\x30')])){if(!_0x11507c[_0x572b8f(0x296,'\x58\x61\x58\x6a')+'\x6e\x63'](_0xa8b520))return[];const _0x4b68f9=_0x11507c[_0x572b8f(0x10a,'\x47\x46\x26\x4f')+_0x572b8f(0x116,'\x76\x56\x42\x48')](_0xa8b520,_0x18f2e3[_0x572b8f(0x166,'\x67\x5d\x30\x76')])[_0x572b8f(0x2b5,'\x67\x5d\x30\x76')]()['\x73\x70\x6c\x69\x74']('\x0a')[_0x572b8f(0x253,'\x6c\x50\x56\x61')](Boolean);return _0x4b68f9[_0x572b8f(0x115,'\x47\x32\x65\x54')](-_0x5bbe4e)[_0x572b8f(0x17b,'\x5b\x34\x49\x31')](_0x2e15b8=>{const _0x10a7f7=_0x572b8f;try{return JSON[_0x10a7f7(0x149,'\x49\x28\x33\x69')](_0x2e15b8);}catch(_0x221eee){return null;}})[_0x572b8f(0x21d,'\x70\x56\x47\x74')](Boolean);}else{const _0x38b8df=_0x394858&&_0x2546fd[_0x572b8f(0x2d4,'\x70\x4c\x51\x38')](_0x3153cd[_0x572b8f(0x273,'\x78\x69\x4c\x52')+'\x65\x64'])&&_0x3123b9[_0x572b8f(0x16a,'\x5b\x43\x24\x59')+'\x65\x64'][0x27c+-0x2*0xe05+-0x2*-0xcc7]?_0x43b17f[_0x572b8f(0x2bd,'\x2a\x72\x5b\x28')+'\x65\x64'][0x76f*0x5+0xd7b*-0x1+-0x5ec*0x4]:NytIeO[_0x572b8f(0x278,'\x6c\x50\x56\x61')];_0x3f4564[_0x38b8df]=(_0x3067ff[_0x38b8df]||0x51b+-0xa99+-0x1*-0x57e)+(0x2*-0x133e+-0x2*-0xa30+-0x1*-0x121d);}}catch(_0x2402bd){return[];}}const _0x6cfda5={};_0x6cfda5[_0x24e6b3(0x100,'\x5b\x34\x49\x31')+_0x24e6b3(0x151,'\x78\x69\x4c\x52')]=_0x490d33,_0x6cfda5[_0x24e6b3(0x1b4,'\x25\x51\x40\x46')+_0x24e6b3(0x264,'\x25\x51\x40\x46')+_0x24e6b3(0x138,'\x7a\x4e\x42\x62')]=_0x4bff93,_0x6cfda5['\x72\x65\x63\x6f\x72\x64\x52\x65'+_0x24e6b3(0x218,'\x6d\x54\x6d\x76')]=_0x948bf2,_0x6cfda5['\x6c\x6f\x61\x64\x52\x65\x63\x65'+_0x24e6b3(0x13f,'\x5b\x34\x49\x31')+_0x24e6b3(0x130,'\x47\x32\x65\x54')]=_0x1b3693,_0x6cfda5[_0x24e6b3(0x1c2,'\x36\x30\x33\x6c')+_0x24e6b3(0x1cf,'\x24\x35\x29\x65')+_0x24e6b3(0x220,'\x6c\x50\x56\x61')]=_0x2eb6cb,_0x6cfda5[_0x24e6b3(0x120,'\x56\x69\x44\x36')+_0x24e6b3(0x195,'\x49\x28\x33\x69')+_0x24e6b3(0x1a7,'\x5e\x24\x4f\x70')+'\x45\x53']=_0x2567d0,module[_0x24e6b3(0x29e,'\x6f\x75\x34\x4a')]=_0x6cfda5;
1
+ 'use strict';
2
+
3
+ const fs = require('fs');
4
+ const path = require('path');
5
+ const { getReflectionLogPath, getEvolutionDir } = require('./paths');
6
+
7
+ const REFLECTION_INTERVAL_DEFAULT = 5;
8
+ const REFLECTION_INTERVAL_SUCCESS = 8;
9
+ const REFLECTION_INTERVAL_FAILURE = 3;
10
+ const REFLECTION_COOLDOWN_MS = 30 * 60 * 1000;
11
+
12
+ // Keep the export name for backward compat.
13
+ const REFLECTION_INTERVAL_CYCLES = REFLECTION_INTERVAL_DEFAULT;
14
+
15
+ function ensureDir(dir) {
16
+ try { if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true }); } catch (_) {}
17
+ }
18
+
19
+ function computeReflectionInterval(recentEvents) {
20
+ try {
21
+ var events = Array.isArray(recentEvents) ? recentEvents : [];
22
+ if (events.length < 3) return REFLECTION_INTERVAL_DEFAULT;
23
+ var tail = events.slice(-3);
24
+ var allSuccess = tail.every(function (e) {
25
+ return e && e.outcome && e.outcome.status === 'success';
26
+ });
27
+ var allFailed = tail.every(function (e) {
28
+ return e && e.outcome && e.outcome.status === 'failed';
29
+ });
30
+ if (allSuccess) return REFLECTION_INTERVAL_SUCCESS;
31
+ if (allFailed) return REFLECTION_INTERVAL_FAILURE;
32
+ } catch (_) {}
33
+ return REFLECTION_INTERVAL_DEFAULT;
34
+ }
35
+
36
+ function shouldReflect({ cycleCount, recentEvents }) {
37
+ var interval = computeReflectionInterval(recentEvents);
38
+ if (!Number.isFinite(cycleCount) || cycleCount < interval) return false;
39
+ if (cycleCount % interval !== 0) return false;
40
+
41
+ const logPath = getReflectionLogPath();
42
+ try {
43
+ if (fs.existsSync(logPath)) {
44
+ const stat = fs.statSync(logPath);
45
+ if (Date.now() - stat.mtimeMs < REFLECTION_COOLDOWN_MS) return false;
46
+ }
47
+ } catch (_) {}
48
+
49
+ return true;
50
+ }
51
+
52
+ function buildSuggestedMutations(signals) {
53
+ var sigs = Array.isArray(signals) ? signals : [];
54
+ var muts = [];
55
+ var hasStagnation = sigs.some(function (s) {
56
+ return s === 'stable_success_plateau' ||
57
+ s === 'evolution_stagnation_detected' ||
58
+ s === 'empty_cycle_loop_detected';
59
+ });
60
+ var hasError = sigs.some(function (s) {
61
+ return s === 'log_error' || String(s).startsWith('errsig:') || String(s).startsWith('errsig_norm:');
62
+ });
63
+ var hasGap = sigs.some(function (s) {
64
+ return s === 'capability_gap' || s === 'external_opportunity';
65
+ });
66
+ if (hasStagnation) {
67
+ muts.push({ param: 'creativity', delta: +0.05, reason: 'stagnation detected in reflection' });
68
+ }
69
+ if (hasError) {
70
+ muts.push({ param: 'rigor', delta: +0.05, reason: 'errors detected in reflection' });
71
+ }
72
+ if (hasGap) {
73
+ muts.push({ param: 'risk_tolerance', delta: +0.05, reason: 'capability gap in reflection' });
74
+ }
75
+ return muts.slice(0, 2);
76
+ }
77
+
78
+ function buildReflectionContext({ recentEvents, signals, memoryAdvice, narrative }) {
79
+ const parts = ['You are performing a strategic reflection on recent evolution cycles.'];
80
+ parts.push('Analyze the patterns below and provide concise strategic guidance.');
81
+ parts.push('');
82
+
83
+ if (Array.isArray(recentEvents) && recentEvents.length > 0) {
84
+ const last10 = recentEvents.slice(-10);
85
+ const successCount = last10.filter(e => e && e.outcome && e.outcome.status === 'success').length;
86
+ const failCount = last10.filter(e => e && e.outcome && e.outcome.status === 'failed').length;
87
+ const intents = {};
88
+ last10.forEach(e => {
89
+ const i = e && e.intent ? e.intent : 'unknown';
90
+ intents[i] = (intents[i] || 0) + 1;
91
+ });
92
+ const genes = {};
93
+ last10.forEach(e => {
94
+ const g = e && Array.isArray(e.genes_used) && e.genes_used[0] ? e.genes_used[0] : 'unknown';
95
+ genes[g] = (genes[g] || 0) + 1;
96
+ });
97
+
98
+ parts.push('## Recent Cycle Statistics (last 10)');
99
+ parts.push(`- Success: ${successCount}, Failed: ${failCount}`);
100
+ parts.push(`- Intent distribution: ${JSON.stringify(intents)}`);
101
+ parts.push(`- Gene usage: ${JSON.stringify(genes)}`);
102
+ parts.push('');
103
+ }
104
+
105
+ if (Array.isArray(signals) && signals.length > 0) {
106
+ parts.push('## Current Signals');
107
+ parts.push(signals.slice(0, 20).join(', '));
108
+ parts.push('');
109
+ }
110
+
111
+ if (memoryAdvice) {
112
+ parts.push('## Memory Graph Advice');
113
+ if (memoryAdvice.preferredGeneId) {
114
+ parts.push(`- Preferred gene: ${memoryAdvice.preferredGeneId}`);
115
+ }
116
+ if (Array.isArray(memoryAdvice.bannedGeneIds) && memoryAdvice.bannedGeneIds.length > 0) {
117
+ parts.push(`- Banned genes: ${memoryAdvice.bannedGeneIds.join(', ')}`);
118
+ }
119
+ if (memoryAdvice.explanation) {
120
+ parts.push(`- Explanation: ${memoryAdvice.explanation}`);
121
+ }
122
+ parts.push('');
123
+ }
124
+
125
+ if (narrative) {
126
+ parts.push('## Recent Evolution Narrative');
127
+ parts.push(String(narrative).slice(0, 3000));
128
+ parts.push('');
129
+ }
130
+
131
+ parts.push('## Questions to Answer');
132
+ parts.push('1. Are there persistent signals being ignored?');
133
+ parts.push('2. Is the gene selection strategy optimal, or are we stuck in a local maximum?');
134
+ parts.push('3. Should the balance between repair/optimize/innovate shift?');
135
+ parts.push('4. Are there capability gaps that no current gene addresses?');
136
+ parts.push('5. What single strategic adjustment would have the highest impact?');
137
+ parts.push('');
138
+ parts.push('Respond with a JSON object: { "insights": [...], "strategy_adjustment": "...", "priority_signals": [...] }');
139
+
140
+ return parts.join('\n');
141
+ }
142
+
143
+ function recordReflection(reflection) {
144
+ const logPath = getReflectionLogPath();
145
+ ensureDir(path.dirname(logPath));
146
+
147
+ const entry = JSON.stringify({
148
+ ts: new Date().toISOString(),
149
+ type: 'reflection',
150
+ ...reflection,
151
+ }) + '\n';
152
+
153
+ fs.appendFileSync(logPath, entry, 'utf8');
154
+ }
155
+
156
+ function loadRecentReflections(count) {
157
+ const n = Number.isFinite(count) ? count : 3;
158
+ const logPath = getReflectionLogPath();
159
+ try {
160
+ if (!fs.existsSync(logPath)) return [];
161
+ const lines = fs.readFileSync(logPath, 'utf8').trim().split('\n').filter(Boolean);
162
+ return lines.slice(-n).map(line => {
163
+ try { return JSON.parse(line); } catch (_) { return null; }
164
+ }).filter(Boolean);
165
+ } catch (_) {
166
+ return [];
167
+ }
168
+ }
169
+
170
+ module.exports = {
171
+ shouldReflect,
172
+ buildReflectionContext,
173
+ recordReflection,
174
+ loadRecentReflections,
175
+ buildSuggestedMutations,
176
+ REFLECTION_INTERVAL_CYCLES,
177
+ };
@@ -1 +1,112 @@
1
- const _0x7ea805=_0x3c37;(function(_0x142d66,_0x4313e1){const _0x502bfc=_0x3c37,_0x44c5ca=_0x142d66();while(!![]){try{const _0x344334=-parseInt(_0x502bfc(0xdb,'\x43\x24\x39\x6a'))/(-0x1e90+-0x42+-0x1ed3*-0x1)*(parseInt(_0x502bfc(0x90,'\x33\x21\x23\x58'))/(0x1a48+0x1a34+0x8bf*-0x6))+parseInt(_0x502bfc(0xe5,'\x26\x70\x31\x46'))/(-0xbf*-0x1+-0x1*0x1+-0xbb)+-parseInt(_0x502bfc(0xf9,'\x4f\x78\x55\x23'))/(-0x3fd+-0x300+0x701)+parseInt(_0x502bfc(0xaf,'\x4a\x74\x5e\x66'))/(0xe44+-0xefe+0xbf*0x1)+-parseInt(_0x502bfc(0x7c,'\x52\x71\x54\x41'))/(-0x260a+0x249f+0x171)*(parseInt(_0x502bfc(0x72,'\x6c\x45\x4c\x74'))/(-0x1b2+0x8*-0x4a3+0x26d1))+parseInt(_0x502bfc(0x7b,'\x4e\x23\x4a\x47'))/(-0x15d0+0x658+-0x20*-0x7c)*(parseInt(_0x502bfc(0xfe,'\x38\x32\x42\x74'))/(-0x2000+-0x2a5*-0xb+-0xd*-0x3a))+parseInt(_0x502bfc(0xa2,'\x57\x26\x52\x66'))/(0x738+-0x1*0x1632+0xf04);if(_0x344334===_0x4313e1)break;else _0x44c5ca['push'](_0x44c5ca['shift']());}catch(_0x5006da){_0x44c5ca['push'](_0x44c5ca['shift']());}}}(_0x9ee7,-0x1*-0x6affa+0x60bc5+0x1*-0x319a1));const _0x269814=(function(){let _0x1099e0=!![];return function(_0xe1f87b,_0xf891b7){const _0x128ee0=_0x1099e0?function(){const _0x269fe8=_0x3c37;if(_0xf891b7){const _0x2ceae4=_0xf891b7[_0x269fe8(0x8c,'\x50\x58\x4b\x69')](_0xe1f87b,arguments);return _0xf891b7=null,_0x2ceae4;}}:function(){};return _0x1099e0=![],_0x128ee0;};}()),_0x21f748=_0x269814(this,function(){const _0x2be385=_0x3c37,_0x298926={};_0x298926[_0x2be385(0xf8,'\x5e\x5b\x43\x6e')]=_0x2be385(0x78,'\x38\x32\x42\x74')+_0x2be385(0xbb,'\x5e\x5b\x43\x6e');const _0x164d19=_0x298926;return _0x21f748['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x2be385(0xe9,'\x26\x54\x54\x69')](_0x164d19[_0x2be385(0xf1,'\x4f\x35\x75\x63')])['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x2be385(0xa6,'\x47\x64\x77\x6e')+_0x2be385(0xc6,'\x31\x68\x26\x4b')](_0x21f748)[_0x2be385(0x93,'\x64\x50\x79\x58')](_0x2be385(0xff,'\x47\x67\x5d\x61')+_0x2be385(0x101,'\x51\x63\x25\x23'));});_0x21f748();'use strict';function _0x9ee7(){const _0x4de278=['\x77\x6d\x6f\x2b\x57\x34\x39\x48\x45\x67\x71\x47\x62\x38\x6f\x64\x57\x52\x70\x63\x48\x6d\x6f\x6d\x7a\x57','\x78\x43\x6b\x61\x6c\x43\x6f\x4e\x57\x35\x47','\x45\x43\x6b\x2f\x61\x74\x6d\x56','\x62\x53\x6b\x4e\x57\x4f\x69','\x57\x4f\x4a\x64\x48\x53\x6f\x50\x57\x36\x75','\x6d\x58\x66\x57\x76\x5a\x6c\x64\x4b\x43\x6f\x75\x79\x71','\x46\x77\x43\x73\x57\x52\x4e\x63\x4d\x6d\x6f\x65\x42\x77\x47','\x44\x74\x46\x63\x4e\x68\x4a\x64\x50\x47','\x6c\x68\x68\x64\x47\x4a\x69','\x57\x34\x64\x64\x47\x43\x6b\x72\x57\x35\x64\x63\x50\x71','\x64\x43\x6b\x56\x57\x34\x52\x63\x4d\x76\x56\x63\x48\x6d\x6b\x6d\x75\x71','\x57\x36\x58\x44\x57\x35\x4f\x62\x57\x51\x38','\x77\x4e\x4a\x63\x56\x53\x6f\x6f\x64\x57','\x57\x4f\x4b\x47\x57\x51\x39\x68\x57\x35\x6e\x6a\x78\x53\x6f\x33\x72\x43\x6b\x70\x64\x47','\x57\x34\x56\x64\x52\x43\x6f\x61\x6b\x6d\x6f\x75\x57\x37\x43\x2f\x57\x37\x71','\x57\x52\x75\x48\x73\x38\x6b\x59\x43\x38\x6b\x6d\x57\x35\x35\x51','\x57\x37\x4e\x64\x51\x53\x6f\x30\x63\x6d\x6f\x77','\x57\x50\x4e\x64\x4c\x53\x6b\x77\x6a\x53\x6b\x72\x57\x4f\x53','\x57\x52\x61\x44\x76\x38\x6b\x34\x7a\x47','\x68\x33\x4a\x63\x48\x62\x78\x63\x47\x61','\x77\x6d\x6b\x33\x57\x52\x42\x63\x51\x6d\x6f\x74\x57\x50\x4a\x63\x4f\x71\x69','\x57\x36\x42\x64\x4b\x43\x6f\x72\x68\x53\x6f\x5a\x57\x34\x69','\x57\x37\x58\x6f\x41\x5a\x65\x67\x57\x52\x69\x42\x71\x38\x6f\x6c\x67\x47\x34\x34','\x68\x49\x6c\x64\x4a\x4e\x74\x64\x53\x62\x66\x73\x57\x37\x61','\x57\x36\x78\x64\x48\x38\x6f\x56\x63\x6d\x6f\x31\x57\x34\x71\x75\x57\x34\x71','\x73\x6d\x6f\x53\x57\x34\x6d\x52\x66\x75\x42\x63\x4c\x5a\x4f','\x45\x6d\x6b\x56\x7a\x6d\x6f\x57\x69\x4a\x4c\x68\x57\x52\x79','\x57\x4f\x37\x64\x49\x43\x6f\x2b\x57\x37\x35\x64\x46\x53\x6b\x4e\x57\x51\x69','\x6b\x71\x34\x48\x65\x4e\x46\x63\x4d\x43\x6b\x5a\x6f\x61','\x57\x34\x76\x34\x7a\x43\x6b\x6a\x78\x75\x4a\x63\x4b\x6d\x6f\x69','\x74\x38\x6b\x56\x57\x36\x64\x64\x4f\x77\x43\x4f\x66\x71','\x57\x4f\x48\x50\x70\x43\x6b\x4b\x71\x4a\x78\x64\x4b\x64\x39\x59\x57\x35\x70\x63\x4b\x71\x30','\x57\x4f\x6c\x64\x52\x53\x6b\x65\x57\x37\x78\x63\x50\x65\x4e\x63\x53\x47','\x79\x53\x6f\x35\x57\x35\x75\x76\x62\x4c\x46\x63\x4a\x61\x4f','\x79\x58\x70\x63\x53\x75\x68\x64\x4d\x57','\x57\x34\x4a\x63\x47\x53\x6f\x72\x43\x33\x65','\x57\x4f\x42\x63\x51\x6d\x6b\x4d\x6c\x6d\x6f\x56','\x57\x34\x33\x64\x47\x38\x6b\x6b\x57\x37\x37\x63\x4a\x57','\x7a\x48\x42\x64\x53\x33\x6e\x4d\x68\x32\x61\x61','\x44\x4d\x58\x48\x75\x58\x53','\x6f\x47\x47\x46\x57\x52\x7a\x44','\x6b\x31\x70\x63\x4c\x64\x6c\x63\x56\x61','\x57\x50\x52\x64\x51\x73\x70\x63\x48\x43\x6b\x76\x57\x35\x46\x63\x47\x72\x75','\x66\x53\x6f\x56\x43\x6d\x6b\x36\x75\x38\x6b\x45\x57\x4f\x70\x64\x54\x57','\x57\x50\x70\x64\x51\x49\x52\x63\x4d\x38\x6b\x50','\x68\x6d\x6b\x56\x57\x34\x4a\x63\x48\x4b\x64\x63\x4b\x6d\x6b\x77\x79\x57','\x57\x4f\x64\x64\x4b\x48\x6a\x48\x77\x61','\x57\x51\x34\x72\x6c\x4e\x7a\x43\x57\x37\x75\x55\x44\x47','\x57\x34\x56\x63\x4b\x38\x6f\x73\x44\x4e\x53','\x65\x59\x37\x64\x47\x67\x2f\x64\x4d\x47','\x64\x66\x68\x64\x4c\x66\x74\x64\x4e\x71','\x64\x4e\x2f\x63\x4b\x62\x78\x63\x47\x38\x6b\x35\x57\x52\x78\x63\x52\x71','\x57\x52\x4e\x63\x4b\x38\x6b\x32\x69\x38\x6f\x33\x57\x35\x53\x42\x57\x34\x74\x63\x54\x47','\x42\x5a\x33\x63\x51\x68\x74\x64\x54\x47','\x68\x47\x39\x41\x57\x50\x64\x64\x51\x62\x4e\x64\x4a\x30\x69','\x6f\x53\x6b\x48\x57\x4f\x6d\x31\x57\x35\x52\x63\x47\x61','\x57\x34\x6e\x33\x43\x53\x6b\x74\x76\x32\x46\x63\x4d\x38\x6f\x35','\x71\x64\x5a\x64\x4f\x66\x50\x53','\x73\x48\x46\x63\x48\x4b\x37\x64\x50\x61','\x57\x50\x52\x63\x4a\x53\x6b\x4d\x70\x38\x6f\x6d','\x62\x4b\x71\x33\x65\x32\x30','\x70\x33\x74\x64\x4b\x4e\x2f\x63\x4e\x61\x56\x64\x49\x71','\x57\x4f\x4c\x78\x57\x37\x50\x50\x71\x33\x58\x50\x41\x47','\x57\x4f\x6e\x4c\x6f\x38\x6b\x4d\x72\x64\x4e\x63\x49\x62\x76\x56\x57\x37\x46\x63\x53\x73\x42\x64\x50\x47','\x41\x66\x39\x62\x42\x72\x34','\x45\x6d\x6b\x35\x6f\x64\x47\x39','\x67\x38\x6b\x43\x57\x37\x61','\x57\x51\x4f\x42\x62\x78\x44\x73\x57\x37\x6d\x59\x74\x71','\x42\x4b\x6c\x63\x55\x6d\x6f\x66\x69\x72\x39\x33','\x57\x36\x33\x63\x4b\x53\x6f\x48\x76\x65\x38','\x57\x37\x56\x64\x54\x6d\x6f\x64\x45\x53\x6b\x59\x6c\x71\x48\x56\x57\x35\x7a\x55\x57\x36\x58\x31\x57\x4f\x33\x63\x4c\x57','\x57\x37\x4c\x51\x65\x43\x6f\x68\x65\x61','\x61\x6d\x6b\x4a\x57\x50\x71\x4d\x68\x49\x62\x5a\x68\x57','\x63\x67\x74\x63\x48\x72\x6c\x63\x49\x43\x6b\x39\x57\x51\x78\x63\x4c\x57','\x73\x68\x33\x63\x48\x43\x6f\x2f\x67\x73\x6a\x6d\x68\x71','\x57\x51\x33\x63\x4c\x6d\x6b\x42\x68\x43\x6f\x4b','\x57\x52\x37\x63\x56\x53\x6b\x63\x6b\x47','\x41\x53\x6b\x48\x71\x59\x44\x4a\x57\x4f\x4a\x63\x50\x47','\x62\x38\x6b\x41\x57\x37\x6e\x39\x57\x50\x50\x56\x71\x38\x6b\x69','\x57\x4f\x34\x41\x42\x6d\x6f\x52\x68\x77\x54\x63\x6e\x38\x6f\x54','\x57\x50\x53\x76\x64\x53\x6f\x4b\x42\x38\x6f\x48\x57\x50\x78\x63\x47\x61','\x72\x53\x6b\x2b\x57\x37\x37\x64\x51\x32\x79','\x67\x68\x33\x64\x53\x75\x56\x64\x4f\x4e\x44\x68','\x78\x73\x33\x63\x4b\x59\x70\x64\x49\x31\x33\x63\x4a\x33\x74\x63\x51\x6d\x6b\x6c\x57\x34\x57\x72\x77\x57','\x57\x34\x69\x78\x72\x53\x6f\x71\x6c\x47','\x73\x43\x6f\x57\x57\x34\x57\x72\x63\x31\x64\x63\x4f\x62\x79','\x57\x51\x43\x65\x64\x71\x61','\x57\x34\x75\x4c\x57\x34\x64\x64\x4e\x4b\x47\x74\x76\x48\x38','\x57\x51\x47\x71\x6c\x32\x50\x68','\x45\x38\x6b\x51\x57\x51\x4e\x63\x51\x53\x6f\x76','\x57\x34\x76\x47\x44\x6d\x6b\x76\x72\x4d\x46\x63\x4e\x43\x6f\x5a','\x63\x4a\x50\x6a\x57\x37\x70\x64\x52\x6d\x6b\x44\x69\x5a\x6d','\x57\x34\x39\x35\x57\x37\x71\x73\x57\x50\x76\x63\x44\x71','\x77\x53\x6b\x45\x66\x63\x69\x49\x43\x47','\x68\x57\x5a\x64\x52\x68\x4a\x64\x4b\x47','\x44\x65\x76\x48\x57\x36\x65','\x41\x30\x4c\x53\x7a\x65\x47','\x57\x4f\x34\x43\x71\x38\x6b\x59\x45\x38\x6b\x6a\x57\x34\x35\x49','\x57\x4f\x34\x39\x69\x6d\x6f\x34\x74\x47','\x57\x4f\x79\x73\x7a\x38\x6b\x63\x78\x64\x35\x66\x6e\x38\x6f\x50\x57\x35\x54\x68\x64\x47','\x57\x4f\x79\x78\x62\x6d\x6f\x31\x7a\x61','\x42\x38\x6b\x56\x79\x43\x6f\x5a\x69\x5a\x48\x56\x57\x51\x71','\x57\x52\x53\x6a\x70\x58\x69\x51','\x65\x65\x42\x64\x4d\x4b\x4a\x64\x4f\x68\x58\x6d\x57\x37\x57','\x7a\x49\x37\x63\x4a\x68\x69','\x57\x34\x37\x64\x47\x6d\x6f\x57\x57\x52\x68\x63\x4f\x53\x6b\x30\x65\x43\x6f\x48','\x45\x6d\x6b\x56\x46\x71','\x69\x38\x6f\x41\x71\x43\x6b\x41\x7a\x6d\x6b\x44\x57\x52\x78\x64\x48\x61','\x46\x62\x52\x64\x4f\x75\x72\x31\x64\x4d\x53\x5a','\x57\x37\x56\x64\x4b\x53\x6f\x52\x67\x6d\x6f\x46\x57\x34\x61\x75\x57\x35\x69','\x7a\x68\x4c\x36\x78\x73\x52\x64\x4d\x43\x6f\x32\x44\x47','\x66\x5a\x31\x6b\x57\x35\x42\x64\x4d\x57','\x71\x4d\x68\x63\x52\x43\x6f\x4c\x61\x5a\x4c\x6e\x67\x57','\x57\x34\x39\x49\x43\x6d\x6b\x78','\x73\x43\x6b\x32\x57\x51\x4e\x63\x56\x38\x6f\x75\x57\x4f\x37\x63\x4c\x57','\x57\x35\x61\x47\x75\x43\x6f\x48\x67\x32\x42\x64\x4d\x64\x75','\x57\x50\x42\x64\x4e\x59\x74\x63\x50\x6d\x6b\x4c','\x57\x34\x4c\x2f\x57\x36\x57\x44\x57\x4f\x75','\x57\x4f\x6e\x6a\x57\x34\x66\x41\x73\x67\x4b','\x43\x57\x56\x63\x49\x67\x64\x64\x50\x38\x6b\x64','\x68\x38\x6f\x44\x76\x53\x6b\x69\x73\x61','\x57\x4f\x34\x79\x7a\x43\x6b\x67\x75\x5a\x61\x41\x79\x38\x6f\x41\x57\x37\x35\x5a\x68\x6d\x6b\x79\x42\x57','\x57\x34\x64\x64\x53\x38\x6b\x72\x57\x37\x6c\x63\x52\x67\x71','\x57\x34\x64\x64\x4a\x38\x6b\x42\x57\x36\x68\x63\x50\x33\x70\x63\x4e\x6d\x6f\x73','\x57\x34\x50\x35\x45\x6d\x6b\x76','\x57\x52\x56\x63\x4f\x38\x6f\x69\x77\x43\x6b\x6f\x57\x50\x72\x55\x63\x47','\x57\x37\x39\x30\x46\x43\x6b\x45\x78\x66\x5a\x63\x4a\x6d\x6f\x34','\x57\x36\x46\x63\x4a\x76\x6d\x4e\x6c\x58\x33\x63\x49\x74\x6c\x64\x4d\x33\x65\x50','\x68\x48\x37\x64\x4d\x32\x70\x64\x55\x73\x4f','\x57\x4f\x70\x64\x50\x73\x4b','\x57\x4f\x42\x64\x56\x64\x6e\x41\x75\x5a\x37\x63\x47\x59\x65','\x42\x57\x37\x64\x54\x32\x52\x63\x54\x71','\x67\x43\x6b\x2f\x7a\x62\x39\x63\x57\x4f\x37\x63\x4d\x71','\x42\x73\x4a\x64\x4f\x30\x46\x63\x47\x75\x69\x51\x6a\x47','\x67\x43\x6f\x4b\x73\x38\x6b\x2f\x57\x50\x4c\x45\x61\x64\x46\x63\x49\x6d\x6b\x58\x57\x34\x58\x37','\x57\x4f\x74\x64\x52\x72\x72\x44\x43\x57','\x57\x36\x7a\x4e\x57\x34\x79\x73\x42\x64\x43\x31\x73\x61','\x68\x6d\x6f\x47\x74\x38\x6b\x35\x57\x50\x58\x44\x45\x72\x70\x63\x48\x53\x6b\x67\x57\x36\x4c\x6d\x68\x61','\x57\x51\x5a\x64\x4b\x38\x6b\x62\x6e\x38\x6b\x71','\x57\x52\x48\x63\x57\x34\x58\x68\x7a\x71','\x57\x51\x5a\x63\x50\x38\x6f\x6d\x77\x43\x6b\x77\x57\x50\x7a\x63\x72\x61','\x6f\x77\x61\x75\x62\x30\x7a\x56','\x44\x68\x42\x63\x47\x32\x78\x64\x52\x43\x6b\x6a','\x74\x6d\x6b\x59\x57\x36\x74\x64\x52\x78\x30\x64\x65\x59\x57','\x6b\x53\x6b\x52\x57\x50\x61\x49','\x57\x51\x4e\x64\x47\x57\x39\x57\x57\x37\x43\x55\x76\x38\x6b\x71','\x76\x5a\x68\x63\x4a\x31\x78\x64\x47\x71','\x57\x50\x68\x64\x48\x6d\x6b\x75\x64\x53\x6b\x6a','\x57\x4f\x68\x63\x53\x43\x6b\x6b\x70\x6d\x6f\x56','\x57\x35\x69\x38\x57\x34\x46\x64\x54\x32\x65','\x57\x35\x4e\x63\x47\x6d\x6b\x6c\x6a\x6d\x6b\x6b\x57\x50\x4b\x52\x6d\x71','\x6c\x4c\x64\x64\x4f\x77\x4b','\x68\x49\x4b\x67\x57\x52\x76\x46','\x57\x34\x4c\x31\x57\x36\x57\x61\x57\x4f\x72\x59\x79\x53\x6f\x69','\x57\x52\x5a\x64\x4a\x38\x6b\x72\x63\x53\x6b\x45','\x57\x52\x64\x64\x4b\x58\x6e\x32\x45\x47','\x70\x71\x79\x50\x57\x52\x6e\x47'];_0x9ee7=function(){return _0x4de278;};return _0x9ee7();}const _0xa14a5f=require(_0x7ea805(0xb2,'\x4b\x64\x25\x6b')),_0x6a31ce=require(_0xa14a5f[_0x7ea805(0xd8,'\x70\x71\x57\x71')](__dirname,'\x2e\x2e','\x2e\x2e',_0x7ea805(0xc1,'\x31\x68\x26\x4b')+_0x7ea805(0x9e,'\x5e\x47\x24\x2a'),_0x7ea805(0xd9,'\x51\x66\x70\x4a')+_0x7ea805(0xec,'\x64\x50\x79\x58'),_0x7ea805(0x89,'\x68\x28\x4a\x51')+_0x7ea805(0xea,'\x51\x63\x25\x23'))),_0x2e9ddd=_0x1157be=>Math[_0x7ea805(0x100,'\x51\x63\x25\x23')]((_0x1157be+Number[_0x7ea805(0xe0,'\x33\x47\x63\x40')])*(-0xd55+-0x69d+0x1456))/(0x8eb*0x2+0x3*-0xc4f+0x137b),_0x23df58=_0x247f95=>Math[_0x7ea805(0xd1,'\x4d\x48\x46\x4e')]((_0x247f95+Number[_0x7ea805(0xa0,'\x47\x64\x77\x6e')])*(0x1*-0x2121+-0x1*0x17d9+0x600a))/(0x3c3+-0x1*0x326e+0x55bb),_0x4bcc15=_0x579581=>Math[_0x7ea805(0xfc,'\x4f\x78\x55\x23')](0x3*-0x261+0x949*0x3+-0x14b8*0x1,Math[_0x7ea805(0x6f,'\x77\x53\x56\x6d')](Number(_0x579581)||-0x991+0x1a70+-0x10df));function _0x519ee3(_0x7b2549,_0xd0f2b5){const _0x147e6f=_0x7ea805,_0xdf1c11={'\x67\x53\x69\x52\x6f':function(_0x28091b,_0x1211c7){return _0x28091b(_0x1211c7);},'\x71\x48\x7a\x73\x56':function(_0x5788ff,_0x41acaa){return _0x5788ff-_0x41acaa;},'\x69\x79\x48\x51\x42':function(_0x90d764,_0x1920da){return _0x90d764*_0x1920da;}},_0x38a737=_0xdf1c11[_0x147e6f(0xa7,'\x57\x26\x52\x66')](_0x4bcc15,_0x7b2549),_0x48e79f=_0x4bcc15(_0xd0f2b5),_0x3ccd5c=Math['\x6d\x61\x78'](0x1300+-0xe9d+-0x1*0x463,_0xdf1c11[_0x147e6f(0x8e,'\x69\x36\x54\x72')](_0x38a737,_0x48e79f)),_0x82d3b9=_0x38a737>0x17c9+-0x64*0x4f+0x1*0x713?Math[_0x147e6f(0xdd,'\x40\x32\x6f\x57')](0x7fc*0x4+0x191*0x3+-0x24a3,_0xdf1c11[_0x147e6f(0x6c,'\x33\x21\x23\x58')](0x1835+0xb*0x10+0x162*-0x12,_0x48e79f/_0x38a737)):-0x198f+-0x3ad*0x8+0x36f7;return{'\x74\x6f\x6b\x65\x6e\x73\x5f\x73\x61\x76\x65\x64':_0x3ccd5c,'\x73\x61\x76\x69\x6e\x67\x73\x5f\x70\x63\x74':_0xdf1c11[_0x147e6f(0xd0,'\x21\x49\x32\x63')](_0x2e9ddd,_0xdf1c11[_0x147e6f(0x9c,'\x38\x32\x42\x74')](_0x82d3b9,0x815*-0x3+-0x405+0x20c*0xe))};}function _0xf5e60a(_0x161d0){const _0x5aa191=_0x7ea805,_0x3e40b0={'\x57\x72\x74\x67\x68':function(_0x120669,_0x135554){return _0x120669(_0x135554);},'\x72\x72\x48\x57\x49':function(_0x56763f,_0x51a75a){return _0x56763f>=_0x51a75a;},'\x54\x4f\x75\x4c\x78':function(_0x31ae2c,_0x1d9973){return _0x31ae2c*_0x1d9973;}},_0x3f3c2e=_0x3e40b0[_0x5aa191(0xb5,'\x21\x40\x4e\x72')](Number,_0x161d0)||-0x24f0+0x166d*0x1+0x1*0xe83;return _0x3e40b0['\x72\x72\x48\x57\x49'](_0x3f3c2e,-0x1d83*0x1+-0xc6*-0x1d+0x716)?_0x3e40b0[_0x5aa191(0xfb,'\x43\x73\x5a\x59')](_0x2e9ddd,_0x3e40b0[_0x5aa191(0x95,'\x4e\x75\x66\x61')](0x1*0x18c1+-0x25df*0x1+0xd1f-(0x3*-0x719+0x1b89+0x1*-0x63d)/_0x3f3c2e,0x65e+-0x3d+0x1*-0x5bd)):-0x568+0xf52+-0x9ea;}function _0x44e12f(_0x5224f5){const _0x4e40cf=_0x7ea805,_0x21af3b={'\x68\x6e\x6e\x75\x4a':function(_0x1804eb,_0xb1ad18){return _0x1804eb>=_0xb1ad18;},'\x51\x50\x71\x4e\x6e':function(_0x57a74a,_0x106a0f){return _0x57a74a(_0x106a0f);},'\x42\x72\x70\x41\x68':function(_0x1672b9,_0x320418){return _0x1672b9*_0x320418;},'\x54\x67\x69\x4d\x4e':function(_0x557701,_0x8a4008){return _0x557701/_0x8a4008;},'\x47\x64\x73\x78\x74':function(_0x9f9ef1,_0x58b9b1){return _0x9f9ef1*_0x58b9b1;},'\x75\x41\x56\x6d\x4e':function(_0x14d1c4,_0x352d1c){return _0x14d1c4/_0x352d1c;},'\x65\x6e\x76\x65\x67':function(_0x199d1d,_0x9772ab){return _0x199d1d!==_0x9772ab;},'\x7a\x73\x66\x41\x6d':function(_0x1adfbd,_0x2db075){return _0x1adfbd===_0x2db075;},'\x57\x78\x63\x45\x7a':_0x4e40cf(0x81,'\x52\x71\x54\x41'),'\x68\x65\x41\x62\x74':function(_0x270cf2,_0x1d7c24){return _0x270cf2(_0x1d7c24);},'\x6f\x57\x52\x51\x73':_0x4e40cf(0x6e,'\x4e\x24\x6d\x21'),'\x78\x72\x72\x77\x45':_0x4e40cf(0x7e,'\x51\x63\x25\x23'),'\x73\x47\x48\x45\x5a':function(_0x43b591,_0x57f89d){return _0x43b591(_0x57f89d);},'\x46\x44\x65\x49\x58':function(_0x1caeaa,_0x53e8aa){return _0x1caeaa!=_0x53e8aa;},'\x46\x63\x61\x49\x52':function(_0x410029,_0x2cf0a1){return _0x410029*_0x2cf0a1;}};let _0x5803ce=-0x1638+0x6f*-0x4a+0x364e,_0x26ae47=-0x35*0x85+-0xb*-0x6b+-0xb78*-0x2;for(const _0x215d45 of _0x5224f5||[]){let _0x56124a;if(_0x21af3b[_0x4e40cf(0xf7,'\x43\x24\x39\x6a')](_0x215d45[_0x4e40cf(0xac,'\x64\x64\x72\x57')+_0x4e40cf(0xdc,'\x78\x25\x21\x48')],undefined)&&_0x215d45[_0x4e40cf(0x70,'\x21\x40\x4e\x72')+_0x4e40cf(0xd3,'\x51\x63\x25\x23')]!==null){if(_0x21af3b[_0x4e40cf(0xef,'\x71\x48\x74\x51')](_0x4e40cf(0x8d,'\x78\x25\x21\x48'),_0x21af3b[_0x4e40cf(0xf6,'\x71\x48\x74\x51')]))_0x56124a=_0x21af3b[_0x4e40cf(0x91,'\x51\x63\x25\x23')](_0x4bcc15,_0x215d45[_0x4e40cf(0x76,'\x31\x68\x26\x4b')+_0x4e40cf(0xb9,'\x43\x73\x5a\x59')]);else{const _0x4c0bd5=_0x543261(_0x16f78a)||0x5af*-0x1+0x27*-0x9e+0x1dc1;return vvAgfD['\x68\x6e\x6e\x75\x4a'](_0x4c0bd5,0x1c0d+0x1fbe+-0x13ee*0x3)?vvAgfD[_0x4e40cf(0xe3,'\x43\x24\x39\x6a')](_0x198f1e,vvAgfD[_0x4e40cf(0xcb,'\x47\x67\x5d\x61')](0x8f5+-0x20*-0xc+-0x6*0x1be-vvAgfD[_0x4e40cf(0xe7,'\x4f\x21\x6c\x51')](0xc30+0x38c+-0xfbb,_0x4c0bd5),0x2*-0x60d+-0x11a3+0x1e21)):0x9c0+0x2317+-0x2cd7;}}else{if(_0x21af3b[_0x4e40cf(0xd4,'\x38\x6e\x40\x6a')]!==_0x21af3b['\x78\x72\x72\x77\x45']){const _0x21503c=_0x6a31ce[_0x4e40cf(0x8b,'\x6c\x45\x4c\x74')+_0x4e40cf(0xb6,'\x70\x71\x57\x71')+_0x4e40cf(0x86,'\x21\x49\x32\x63')][_0x215d45[_0x4e40cf(0xa8,'\x57\x26\x52\x66')]];if(_0x21af3b['\x7a\x73\x66\x41\x6d'](_0x21503c,undefined))continue;_0x56124a=_0x21503c;}else return _0x5a4e37(_0x21af3b[_0x4e40cf(0xe6,'\x71\x48\x74\x51')](_0x21af3b[_0x4e40cf(0xba,'\x78\x25\x21\x48')](_0x21af3b['\x51\x50\x71\x4e\x6e'](_0xae7650,_0x1b85e2),0x18b8b9+-0x9f1*-0x26b+-0x218034),_0x5dc105[_0x4e40cf(0xb3,'\x4f\x35\x75\x63')+_0x4e40cf(0xc3,'\x69\x36\x54\x72')+_0x4e40cf(0xbd,'\x4e\x24\x6d\x21')]));}const _0x310220=_0x21af3b[_0x4e40cf(0xb0,'\x4e\x23\x4a\x47')](_0x4bcc15,_0x21af3b[_0x4e40cf(0x85,'\x77\x53\x56\x6d')](_0x215d45['\x63\x6f\x75\x6e\x74'],null)?_0x215d45[_0x4e40cf(0xb4,'\x6c\x45\x4c\x74')]:0x201c+0x1057*0x1+0x4e*-0x9f);_0x5803ce+=_0x21af3b['\x46\x63\x61\x49\x52'](_0x56124a,_0x310220),_0x26ae47+=_0x310220;}const _0x1197bc={};return _0x1197bc['\x74\x6f\x74\x61\x6c\x5f\x74\x6f'+_0x4e40cf(0xa4,'\x4f\x78\x55\x23')+'\x65\x64']=_0x5803ce,_0x1197bc[_0x4e40cf(0x73,'\x78\x25\x21\x48')+_0x4e40cf(0xfd,'\x50\x6d\x6d\x67')]=_0x26ae47,_0x1197bc;}function _0xe77fde(_0x535217){const _0x16de19=_0x7ea805,_0x258791={'\x47\x71\x43\x4e\x4d':function(_0x29691c,_0x51fbb8){return _0x29691c(_0x51fbb8);},'\x50\x69\x66\x43\x43':function(_0x3327ee,_0x48fc9c){return _0x3327ee||_0x48fc9c;},'\x74\x61\x61\x54\x6c':function(_0x256c9a,_0x2b468c){return _0x256c9a!==_0x2b468c;},'\x50\x49\x54\x70\x47':_0x16de19(0x83,'\x38\x32\x42\x74'),'\x66\x43\x66\x44\x42':function(_0x2b6749,_0x4d7ebc){return _0x2b6749*_0x4d7ebc;},'\x4d\x4f\x6f\x58\x66':function(_0x274b8c,_0x591775){return _0x274b8c===_0x591775;},'\x61\x47\x45\x79\x4f':function(_0x9dd800,_0x1620bb){return _0x9dd800(_0x1620bb);}};let _0x2e62ac=0x8d8+0x1*-0x1d03+0x142b;for(const [_0x4efc0e,_0x47c175]of Object[_0x16de19(0xce,'\x21\x40\x4e\x72')](_0x258791[_0x16de19(0xee,'\x51\x63\x25\x23')](_0x535217,{}))){if(_0x258791[_0x16de19(0x102,'\x52\x71\x54\x41')](_0x16de19(0xf4,'\x5e\x5b\x43\x6e'),_0x258791[_0x16de19(0x97,'\x57\x26\x52\x66')])){const _0x2a185b=_0x6a31ce[_0x16de19(0xeb,'\x4b\x4b\x63\x5d')+'\x61\x67\x65\x5f\x74\x6f\x6b\x65'+_0x16de19(0x71,'\x33\x21\x23\x58')][_0x4efc0e];_0x2e62ac+=_0x258791[_0x16de19(0xdf,'\x5a\x37\x35\x54')](_0x258791[_0x16de19(0x96,'\x51\x63\x25\x23')](_0x2a185b,undefined)?-0x1*0x26ab+-0x2*0xbb6+0x3a7*0x11:_0x2a185b,_0x258791[_0x16de19(0xbe,'\x64\x64\x72\x57')](_0x4bcc15,_0x47c175));}else _0x150350=dCgeCx[_0x16de19(0xa1,'\x50\x58\x4b\x69')](_0x53f72a,_0x429e77[_0x16de19(0xb1,'\x4e\x2a\x7a\x71')+_0x16de19(0xd6,'\x52\x71\x54\x41')]);}return _0x2e62ac;}function _0x172bfa(_0x535733,_0x54e3ae){const _0x2b0cf0=_0x7ea805,_0x301310={'\x71\x6a\x55\x42\x62':function(_0xfabcbc,_0x5a7c00){return _0xfabcbc(_0x5a7c00);},'\x6b\x56\x54\x7a\x46':function(_0x2a287b,_0x2c0cb7){return _0x2a287b>_0x2c0cb7;},'\x79\x55\x65\x6d\x53':function(_0xdf6121,_0x343449){return _0xdf6121===_0x343449;},'\x57\x4d\x43\x72\x4e':_0x2b0cf0(0xaa,'\x5e\x47\x24\x2a')+'\x65'},_0x40635b=_0x6a31ce[_0x2b0cf0(0xf5,'\x4d\x48\x46\x4e')+_0x2b0cf0(0xb8,'\x4d\x48\x46\x4e')],_0xc0af45=_0x301310[_0x2b0cf0(0x105,'\x47\x64\x77\x6e')](Number,_0x535733),_0x4ceb9b=Number[_0x2b0cf0(0xcc,'\x47\x64\x77\x6e')](_0xc0af45)&&_0x301310['\x6b\x56\x54\x7a\x46'](_0xc0af45,0x1bcd+0x47*0x5+-0x1d30),_0x4eb9dd=_0x4ceb9b?'\x65\x73\x74\x69\x6d\x61\x74\x65'+'\x64\x5f\x62\x6c\x61\x73\x74\x5f'+_0x2b0cf0(0x6d,'\x71\x48\x74\x51'):_0x2b0cf0(0xa5,'\x77\x53\x56\x6d')+_0x2b0cf0(0x6b,'\x4e\x24\x6d\x21')+'\x74',_0x247e4d=_0x4ceb9b?_0xc0af45:_0x40635b[_0x2b0cf0(0xc5,'\x67\x68\x57\x50')+_0x2b0cf0(0x8f,'\x77\x53\x56\x6d')+_0x2b0cf0(0xad,'\x4b\x4b\x63\x5d')],_0x264866=Math['\x6d\x69\x6e'](_0x40635b[_0x2b0cf0(0xe1,'\x5a\x37\x35\x54')+'\x61\x73\x65\x5f\x74\x6f\x6b\x65'+'\x6e\x73']+_0x247e4d*_0x40635b[_0x2b0cf0(0x92,'\x28\x6e\x6b\x35')+_0x2b0cf0(0x9a,'\x4f\x21\x6c\x51')+_0x2b0cf0(0xae,'\x69\x36\x54\x72')],_0x40635b[_0x2b0cf0(0xe8,'\x51\x66\x70\x4a')+_0x2b0cf0(0xcf,'\x4e\x23\x4a\x47')+'\x73']),_0x48eff9=Math['\x72\x6f\x75\x6e\x64'](_0x301310['\x79\x55\x65\x6d\x53'](_0x54e3ae,_0x301310[_0x2b0cf0(0x104,'\x4d\x48\x46\x4e')])?_0x264866*_0x40635b[_0x2b0cf0(0x82,'\x4e\x75\x66\x61')+_0x2b0cf0(0xca,'\x38\x32\x42\x74')+_0x2b0cf0(0x7d,'\x4e\x2a\x7a\x71')+'\x6e']:_0x264866),_0x28f600={};return _0x28f600[_0x2b0cf0(0xd7,'\x52\x71\x54\x41')+_0x2b0cf0(0xc4,'\x51\x63\x25\x23')]=_0x48eff9,_0x28f600[_0x2b0cf0(0x7f,'\x50\x58\x4b\x69')]=_0x4eb9dd,_0x28f600;}function _0x1cdc95(_0x4ad9d2,_0x154b21){const _0x4e5180=_0x7ea805,_0x968238={'\x4c\x6f\x54\x63\x64':function(_0x17658f,_0x27658c){return _0x17658f(_0x27658c);},'\x56\x74\x4d\x6c\x7a':function(_0x399e4d,_0x328d94){return _0x399e4d(_0x328d94);},'\x4b\x76\x78\x73\x64':function(_0x22a9e0,_0x30a689){return _0x22a9e0*_0x30a689;},'\x46\x41\x45\x74\x7a':function(_0x5a098d,_0x34e1c9){return _0x5a098d/_0x34e1c9;}},_0x5c9ab7=_0x968238[_0x4e5180(0x80,'\x57\x26\x52\x66')](_0x4bcc15,_0x4ad9d2),_0x2a7297=_0x968238[_0x4e5180(0x9d,'\x43\x73\x5a\x59')](_0x4bcc15,_0x154b21);return _0x5c9ab7+_0x2a7297>0x620+-0x83*-0xe+0x1b*-0x7e?_0x2e9ddd(_0x968238[_0x4e5180(0xf0,'\x57\x26\x52\x66')](_0x968238[_0x4e5180(0xa3,'\x33\x67\x61\x21')](_0x5c9ab7,_0x5c9ab7+_0x2a7297),0x531*0x1+-0x1*0xfd3+0x2*0x583)):-0x1*-0x1d54+-0x12*-0x3d+0x296*-0xd;}function _0x3c37(_0x2f42f7,_0x20c29c){_0x2f42f7=_0x2f42f7-(0x60e+0x32d*-0x2+0xb5);const _0x17d04d=_0x9ee7();let _0xfc3da0=_0x17d04d[_0x2f42f7];if(_0x3c37['\x6d\x47\x45\x6c\x4b\x73']===undefined){var _0x2c8bfc=function(_0x1fd290){const _0x109b05='\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 _0x524f61='',_0x4ce4b6='',_0x49b835=_0x524f61+_0x2c8bfc,_0x5e26e8=(''+function(){return 0x23fd*-0x1+0x26f0+0x1*-0x2f3;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x18e9+0x26dd+-0x3fc5);for(let _0x1f5d79=0x2432+-0x1*0xaab+-0x1987,_0x95d6c,_0xf8639d,_0x3bed18=-0xa*-0xbb+0x1d23+0x2471*-0x1;_0xf8639d=_0x1fd290['\x63\x68\x61\x72\x41\x74'](_0x3bed18++);~_0xf8639d&&(_0x95d6c=_0x1f5d79%(-0x12*-0x1f1+-0xec2+-0x142c)?_0x95d6c*(0x1e4e+-0x22c3+0x4b5)+_0xf8639d:_0xf8639d,_0x1f5d79++%(-0x62*0x4f+0x1a*0x2b+0x1*0x19e4))?_0x524f61+=_0x5e26e8||_0x49b835['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3bed18+(-0x1c2e+0x1fb9+-0x381))-(0x1c0d+0x3*0x829+0x347e*-0x1)!==-0x1727*-0x1+0x1c8+-0x1eb*0xd?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x3*0x92+0x32+0x1*-0xe9&_0x95d6c>>(-(-0x1d*-0x121+0x2176+-0x4231)*_0x1f5d79&0xe*-0x4e+-0xb8b+0xfd5)):_0x1f5d79:0xd4c+0x6c9+-0x1415){_0xf8639d=_0x109b05['\x69\x6e\x64\x65\x78\x4f\x66'](_0xf8639d);}for(let _0x58d1ea=0x1225+0x569*-0x3+0xf5*-0x2,_0x1f9541=_0x524f61['\x6c\x65\x6e\x67\x74\x68'];_0x58d1ea<_0x1f9541;_0x58d1ea++){_0x4ce4b6+='\x25'+('\x30\x30'+_0x524f61['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x58d1ea)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x49*-0xd+-0x4d2+0x897*0x1))['\x73\x6c\x69\x63\x65'](-(-0xb*0x1f9+-0x2666+0x3c1b));}return decodeURIComponent(_0x4ce4b6);};const _0x2c6322=function(_0x235677,_0xb69aac){let _0xdb568d=[],_0x3e41a4=-0x1367+0x213*-0xc+0x11*0x29b,_0x23003f,_0x8b3c7b='';_0x235677=_0x2c8bfc(_0x235677);let _0x1f6c5e;for(_0x1f6c5e=-0x2273+0x607*-0x5+-0x4096*-0x1;_0x1f6c5e<-0x20c9*-0x1+-0x23de*-0x1+0x2f1*-0x17;_0x1f6c5e++){_0xdb568d[_0x1f6c5e]=_0x1f6c5e;}for(_0x1f6c5e=0x23f2*-0x1+0x2b*0x65+0x12fb;_0x1f6c5e<0x23c8+0x1f86+-0x424e;_0x1f6c5e++){_0x3e41a4=(_0x3e41a4+_0xdb568d[_0x1f6c5e]+_0xb69aac['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1f6c5e%_0xb69aac['\x6c\x65\x6e\x67\x74\x68']))%(0x951+0x1f62+-0x27b3),_0x23003f=_0xdb568d[_0x1f6c5e],_0xdb568d[_0x1f6c5e]=_0xdb568d[_0x3e41a4],_0xdb568d[_0x3e41a4]=_0x23003f;}_0x1f6c5e=-0x17d+-0x2*-0x470+-0x763,_0x3e41a4=-0x25ab+-0x22a6+0x4851;for(let _0x20084a=0x10ea*-0x2+-0x1*-0xfc3+0x1211;_0x20084a<_0x235677['\x6c\x65\x6e\x67\x74\x68'];_0x20084a++){_0x1f6c5e=(_0x1f6c5e+(-0x2352+-0x12b2+0x1*0x3605))%(0x1100+-0xfcc+-0x1a*0x2),_0x3e41a4=(_0x3e41a4+_0xdb568d[_0x1f6c5e])%(0x3*-0x59d+-0x60*-0x1a+0x13*0x6d),_0x23003f=_0xdb568d[_0x1f6c5e],_0xdb568d[_0x1f6c5e]=_0xdb568d[_0x3e41a4],_0xdb568d[_0x3e41a4]=_0x23003f,_0x8b3c7b+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x235677['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x20084a)^_0xdb568d[(_0xdb568d[_0x1f6c5e]+_0xdb568d[_0x3e41a4])%(0x13b6+0x2*0xcc7+-0x2c44)]);}return _0x8b3c7b;};_0x3c37['\x65\x67\x67\x70\x6c\x78']=_0x2c6322,_0x3c37['\x44\x78\x41\x6f\x4c\x64']={},_0x3c37['\x6d\x47\x45\x6c\x4b\x73']=!![];}const _0x3d44c9=_0x17d04d[-0xc11+0x3f1*0x1+0xd*0xa0],_0x4e595a=_0x2f42f7+_0x3d44c9,_0x32ac51=_0x3c37['\x44\x78\x41\x6f\x4c\x64'][_0x4e595a];if(!_0x32ac51){if(_0x3c37['\x4f\x57\x67\x50\x55\x6d']===undefined){const _0x3cd7b7=function(_0x586797){this['\x73\x57\x75\x48\x76\x67']=_0x586797,this['\x62\x53\x7a\x71\x47\x6a']=[0x7c4*0x4+-0x4cb*0x6+0x13*-0x1f,-0x2639+0x8d*-0x20+0x37d9,0xc14*-0x1+-0x15f3+0x2207],this['\x45\x45\x49\x46\x72\x4a']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x4c\x43\x61\x5a\x6d\x62']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x46\x56\x73\x79\x6f\x51']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x3cd7b7['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x65\x73\x49\x6c\x55\x4f']=function(){const _0x3f29b1=new RegExp(this['\x4c\x43\x61\x5a\x6d\x62']+this['\x46\x56\x73\x79\x6f\x51']),_0x566292=_0x3f29b1['\x74\x65\x73\x74'](this['\x45\x45\x49\x46\x72\x4a']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x62\x53\x7a\x71\x47\x6a'][0x2386*-0x1+-0x745*0x1+0x2acc]:--this['\x62\x53\x7a\x71\x47\x6a'][-0x1*0x25+-0x1ed7+-0x7bf*-0x4];return this['\x76\x6b\x4e\x66\x59\x6a'](_0x566292);},_0x3cd7b7['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x76\x6b\x4e\x66\x59\x6a']=function(_0x4733b0){if(!Boolean(~_0x4733b0))return _0x4733b0;return this['\x44\x42\x58\x6d\x63\x4c'](this['\x73\x57\x75\x48\x76\x67']);},_0x3cd7b7['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x44\x42\x58\x6d\x63\x4c']=function(_0xef57ba){for(let _0x486da9=-0x8*-0x38b+-0x1*0x19af+-0x2a9,_0x2e9a1a=this['\x62\x53\x7a\x71\x47\x6a']['\x6c\x65\x6e\x67\x74\x68'];_0x486da9<_0x2e9a1a;_0x486da9++){this['\x62\x53\x7a\x71\x47\x6a']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x2e9a1a=this['\x62\x53\x7a\x71\x47\x6a']['\x6c\x65\x6e\x67\x74\x68'];}return _0xef57ba(this['\x62\x53\x7a\x71\x47\x6a'][0x106a+-0x1*0x1d5c+0xcf2]);},(''+function(){return 0x1fc9+0xeab*0x2+-0x3d1f*0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x851*0x4+0x22ad+-0x168)&&new _0x3cd7b7(_0x3c37)['\x65\x73\x49\x6c\x55\x4f'](),_0x3c37['\x4f\x57\x67\x50\x55\x6d']=!![];}_0xfc3da0=_0x3c37['\x65\x67\x67\x70\x6c\x78'](_0xfc3da0,_0x20c29c),_0x3c37['\x44\x78\x41\x6f\x4c\x64'][_0x4e595a]=_0xfc3da0;}else _0xfc3da0=_0x32ac51;return _0xfc3da0;}function _0x5b6ad7(_0x541411){const _0x55cdd7=_0x7ea805,_0x1a9b2f={'\x55\x6f\x77\x72\x45':function(_0x33f675,_0x1fa0a6){return _0x33f675(_0x1fa0a6);},'\x6c\x6c\x46\x7a\x55':function(_0xe60c1d,_0x3fced3){return _0xe60c1d*_0x3fced3;},'\x73\x55\x57\x6d\x74':function(_0xfa023a,_0x3ff21e){return _0xfa023a/_0x3ff21e;}};return _0x1a9b2f[_0x55cdd7(0x8a,'\x43\x24\x39\x6a')](_0x2e9ddd,_0x1a9b2f[_0x55cdd7(0xc2,'\x4b\x64\x25\x6b')](_0x1a9b2f[_0x55cdd7(0xfa,'\x26\x70\x31\x46')](_0x4bcc15(_0x541411),-0x17fb1f+-0x11d389+-0x2*-0x1c8874),_0x6a31ce[_0x55cdd7(0x75,'\x4e\x2a\x7a\x71')+_0x55cdd7(0xe4,'\x40\x63\x43\x6c')+_0x55cdd7(0xda,'\x70\x71\x57\x71')]));}function _0x19d03c(_0x1af6cc,_0x45f495){const _0x212e80=_0x7ea805,_0xb5bd99={'\x4c\x41\x42\x66\x48':function(_0x21c593,_0x614979){return _0x21c593(_0x614979);},'\x54\x6a\x65\x56\x7a':function(_0x1a4086,_0x4daeac){return _0x1a4086*_0x4daeac;},'\x79\x44\x6a\x6a\x57':function(_0x312b36,_0x3a4e01){return _0x312b36/_0x3a4e01;},'\x62\x66\x67\x6d\x63':function(_0x1d067c,_0x17f1db){return _0x1d067c===_0x17f1db;}},_0x1fa66e=_0x6a31ce[_0x212e80(0x94,'\x70\x71\x57\x71')+_0x212e80(0x9f,'\x6c\x45\x4c\x74')+_0x212e80(0xb7,'\x47\x67\x5d\x61')+'\x5f\x6d\x5f\x74\x6f\x6b\x65\x6e'+'\x73'][_0x1af6cc];return _0xb5bd99[_0x212e80(0x98,'\x26\x54\x54\x69')](_0x23df58,_0xb5bd99['\x54\x6a\x65\x56\x7a'](_0xb5bd99['\x79\x44\x6a\x6a\x57'](_0xb5bd99[_0x212e80(0xbc,'\x62\x23\x78\x4c')](_0x4bcc15,_0x45f495),-0xc1f2b+-0x11653a+0x2cc6a5*0x1),_0xb5bd99[_0x212e80(0x88,'\x21\x49\x32\x63')](_0x1fa66e,undefined)?-0x1f0f*-0x1+-0x1*-0x1e7a+0x3*-0x1483:_0x1fa66e));}const _0x171e48={};_0x171e48[_0x7ea805(0xde,'\x43\x24\x39\x6a')+_0x7ea805(0xc7,'\x38\x6e\x40\x6a')+_0x7ea805(0xf3,'\x69\x36\x54\x72')]=_0x6a31ce[_0x7ea805(0xc9,'\x33\x21\x23\x58')+'\x73\x69\x6f\x6e'],_0x171e48[_0x7ea805(0x6a,'\x33\x21\x23\x58')+'\x53']=_0x6a31ce,_0x171e48[_0x7ea805(0x74,'\x33\x21\x23\x58')+_0x7ea805(0x99,'\x4a\x74\x5e\x66')]=_0x519ee3,_0x171e48[_0x7ea805(0x103,'\x68\x28\x4a\x51')+_0x7ea805(0xd2,'\x4f\x21\x6c\x51')]=_0xf5e60a,_0x171e48[_0x7ea805(0x79,'\x70\x71\x57\x71')+_0x7ea805(0xcd,'\x70\x71\x57\x71')]=_0x44e12f,_0x171e48[_0x7ea805(0x87,'\x38\x6e\x40\x6a')+'\x67\x65\x45\x73\x74\x69\x6d\x61'+'\x74\x65']=_0xe77fde,_0x171e48[_0x7ea805(0xed,'\x7a\x21\x51\x66')+_0x7ea805(0xc0,'\x64\x64\x72\x57')]=_0x172bfa,_0x171e48[_0x7ea805(0xc8,'\x4e\x75\x66\x61')+'\x63\x74']=_0x1cdc95,_0x171e48['\x75\x73\x64\x53\x61\x76\x65\x64']=_0x5b6ad7,_0x171e48[_0x7ea805(0x77,'\x50\x6d\x6d\x67')+_0x7ea805(0x84,'\x5e\x5b\x43\x6e')]=_0x19d03c,module[_0x7ea805(0x7a,'\x4b\x4b\x63\x5d')]=_0x171e48;
1
+ 'use strict';
2
+
3
+ // savings-core -- token-savings formula, Node (CJS) implementation for evolver.
4
+ //
5
+ // Single source of truth: EvoMap/savings-core (spec v0.3.0). Constants come ONLY from the vendored
6
+ // conformance/savings-core/constants.json; formula semantics mirror savings-core's Node oracle
7
+ // (gen-vectors.mjs) and must reproduce conformance/savings-core/golden-vectors.json bit-for-bit --
8
+ // test/savingsCoreConformance.test.js is the gate, and savings-core's daily drift-check locks the
9
+ // vendored copies to upstream. To change a coefficient: change savings-core first, regenerate
10
+ // vectors there, bump spec_version, then re-vendor here AND in evomap-hub / evomap-private /
11
+ // evox-online-deck / evomap-desktop / evox.
12
+ //
13
+ // evolver's production path uses E3 via src/gep/tokenSavings.js (the estimator basis behind
14
+ // dispatch.js's measured > cost_index > estimator precedence); the rest of the set is here so this
15
+ // repo replays the full vector set like every other consumer.
16
+
17
+ const path = require('path');
18
+
19
+ const CONSTANTS = require(path.join(__dirname, '..', '..', 'conformance', 'savings-core', 'constants.json'));
20
+
21
+ const round2 = (x) => Math.round((x + Number.EPSILON) * 100) / 100;
22
+ const round4 = (x) => Math.round((x + Number.EPSILON) * 10000) / 10000;
23
+ const coerce = (x) => Math.max(0, Math.round(Number(x) || 0));
24
+
25
+ // R1 -- measured savings from a raw/optimized token pair (preferred basis).
26
+ function measuredSavings(rawTokens, optimizedTokens) {
27
+ const raw = coerce(rawTokens);
28
+ const optimized = coerce(optimizedTokens);
29
+ const saved = Math.max(0, raw - optimized);
30
+ const rate = raw > 0 ? Math.max(0, 1 - optimized / raw) : 0;
31
+ return { tokens_saved: saved, savings_pct: round2(rate * 100) };
32
+ }
33
+
34
+ // R2 -- rollout-folding rate.
35
+ function rolloutFoldPct(nAvgRollouts) {
36
+ const n = Number(nAvgRollouts) || 0;
37
+ return n >= 1 ? round2((1 - 1 / n) * 100) : 0;
38
+ }
39
+
40
+ // E1 -- aggregate estimated savings over entropy events (unknown types skipped).
41
+ function entropyTotal(events) {
42
+ let tokens = 0;
43
+ let count = 0;
44
+ for (const e of events || []) {
45
+ let per;
46
+ if (e.tokensEstSaved !== undefined && e.tokensEstSaved !== null) {
47
+ per = coerce(e.tokensEstSaved);
48
+ } else {
49
+ const coeff = CONSTANTS.entropy_event_tokens_est[e.type];
50
+ if (coeff === undefined) continue;
51
+ per = coeff;
52
+ }
53
+ const n = coerce(e.count != null ? e.count : 1);
54
+ tokens += per * n;
55
+ count += n;
56
+ }
57
+ return { total_tokens_saved: tokens, total_events: count };
58
+ }
59
+
60
+ // E2 -- node fetch-usage estimate; unknown asset types contribute 0.
61
+ function fetchUsageEstimate(byType) {
62
+ let sum = 0;
63
+ for (const [type, n] of Object.entries(byType || {})) {
64
+ const coeff = CONSTANTS.fetch_usage_tokens_est[type];
65
+ sum += (coeff === undefined ? 0 : coeff) * coerce(n);
66
+ }
67
+ return sum;
68
+ }
69
+
70
+ // E3 -- blast-radius reuse estimator (the `estimator` basis; production wrapper in tokenSavings.js).
71
+ // Calibration anchor: 120,000 + 75 x 800 = 180,000, the deprecated blanket.
72
+ function reuseEstimate(blastRadiusLines, mode) {
73
+ const E = CONSTANTS.reuse_estimator;
74
+ const n = Number(blastRadiusLines);
75
+ const valid = Number.isFinite(n) && n > 0;
76
+ const basis = valid ? 'estimated_blast_radius' : 'estimated_default';
77
+ const lines = valid ? n : E.typical_changed_lines;
78
+ const full = Math.min(E.derive_base_tokens + lines * E.tokens_per_changed_line, E.derive_cap_tokens);
79
+ const tokens = Math.round(mode === 'reference' ? full * E.reference_saving_fraction : full);
80
+ return { tokens_saved: tokens, basis };
81
+ }
82
+
83
+ // H1 -- search hit rate as a 2-dp percentage.
84
+ function hitRatePct(hits, misses) {
85
+ const h = coerce(hits);
86
+ const m = coerce(misses);
87
+ return h + m > 0 ? round2((h / (h + m)) * 100) : 0;
88
+ }
89
+
90
+ // U1 -- USD value of saved tokens at the blended rate.
91
+ function usdSaved(tokens) {
92
+ return round2((coerce(tokens) / 1_000_000) * CONSTANTS.usd_per_m_tokens_blended);
93
+ }
94
+
95
+ // C1 -- prompt-cache savings in USD (4 dp); unknown providers contribute 0.
96
+ function cacheSavedUsd(provider, cacheReadTokens) {
97
+ const rate = CONSTANTS.cache_read_saved_usd_per_m_tokens[provider];
98
+ return round4((coerce(cacheReadTokens) / 1_000_000) * (rate === undefined ? 0 : rate));
99
+ }
100
+
101
+ module.exports = {
102
+ SAVINGS_SPEC_VERSION: CONSTANTS.spec_version,
103
+ CONSTANTS,
104
+ measuredSavings,
105
+ rolloutFoldPct,
106
+ entropyTotal,
107
+ fetchUsageEstimate,
108
+ reuseEstimate,
109
+ hitRatePct,
110
+ usdSaved,
111
+ cacheSavedUsd,
112
+ };