@mooncompany/uplink-chat 0.32.2 → 0.32.3

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 (136) hide show
  1. package/bin/uplink.js +1 -1
  2. package/middleware/error-handler.js +1 -1
  3. package/package.json +1 -1
  4. package/public/dist/bundle.493af136.js +1 -0
  5. package/public/icon-192.png +0 -0
  6. package/public/icon-512.png +0 -0
  7. package/public/img/logo.svg +12 -12
  8. package/public/img/wordmark.svg +34 -20
  9. package/public/index.html +16 -6
  10. package/public/js/agents-data.js +1 -1
  11. package/public/js/agents-ui.js +1 -1
  12. package/public/js/agents.js +1 -1
  13. package/public/js/app.js +1 -1
  14. package/public/js/appearance-settings.js +1 -1
  15. package/public/js/artifacts.js +1 -1
  16. package/public/js/audio-pcm-processor.js +1 -1
  17. package/public/js/audio-queue.js +1 -1
  18. package/public/js/bootstrap.js +1 -1
  19. package/public/js/chat.js +1 -1
  20. package/public/js/commands.js +1 -1
  21. package/public/js/connection-api.js +1 -1
  22. package/public/js/connection.js +1 -1
  23. package/public/js/context-tracker.js +1 -1
  24. package/public/js/core.js +1 -1
  25. package/public/js/cron-panel.js +1 -1
  26. package/public/js/dashboard.js +1 -1
  27. package/public/js/developer.js +1 -1
  28. package/public/js/encryption.js +1 -1
  29. package/public/js/errors.js +1 -1
  30. package/public/js/event-bus.js +1 -1
  31. package/public/js/fetch-utils.js +1 -1
  32. package/public/js/file-handler.js +1 -1
  33. package/public/js/files.js +1 -1
  34. package/public/js/gateway-chat.js +1 -1
  35. package/public/js/logger.js +1 -1
  36. package/public/js/markdown.js +1 -1
  37. package/public/js/message-actions.js +1 -1
  38. package/public/js/message-renderer.js +1 -1
  39. package/public/js/missed-messages.js +1 -1
  40. package/public/js/mobile-debug.js +1 -1
  41. package/public/js/notifications.js +1 -1
  42. package/public/js/offline-queue.js +1 -1
  43. package/public/js/onboarding.js +1 -1
  44. package/public/js/panels.js +1 -1
  45. package/public/js/premium.js +1 -1
  46. package/public/js/primary-header.js +1 -1
  47. package/public/js/realtime-voice.js +1 -1
  48. package/public/js/satellite-sync.js +1 -1
  49. package/public/js/satellite-ui.js +1 -1
  50. package/public/js/satellites.js +1 -1
  51. package/public/js/settings.js +1 -1
  52. package/public/js/shortcuts.js +1 -1
  53. package/public/js/split-chat.js +1 -1
  54. package/public/js/split-resize.js +1 -1
  55. package/public/js/splitview.js +1 -1
  56. package/public/js/storage.js +1 -1
  57. package/public/js/streaming-handler.js +1 -1
  58. package/public/js/stt-settings.js +1 -1
  59. package/public/js/themes.js +1 -1
  60. package/public/js/timestamps.js +1 -1
  61. package/public/js/tts-settings.js +1 -1
  62. package/public/js/ui.js +1 -1
  63. package/public/js/update-notifier.js +1 -1
  64. package/public/js/utils/constants.js +1 -1
  65. package/public/js/utils/icons.js +1 -1
  66. package/public/js/utils/sanitize.js +1 -1
  67. package/public/js/utils/sse-parser.js +1 -1
  68. package/public/js/vad.js +1 -1
  69. package/public/js/vendor/dompurify.min.js +1 -1
  70. package/public/js/voice-settings-v2.js +1 -1
  71. package/public/js/voice.js +1 -1
  72. package/public/sw.js +1 -1
  73. package/public/u-icon.png +0 -0
  74. package/server/channel.js +1 -1
  75. package/server/chat.js +1 -1
  76. package/server/config-store.js +1 -1
  77. package/server/config.js +1 -1
  78. package/server/context.js +1 -1
  79. package/server/gateway-api-proxy.js +1 -1
  80. package/server/gateway-commands.js +1 -1
  81. package/server/gateway-proxy.js +1 -1
  82. package/server/index.js +1 -1
  83. package/server/logger.js +1 -1
  84. package/server/message-store.js +1 -1
  85. package/server/middleware/auth.js +1 -1
  86. package/server/middleware.js +1 -1
  87. package/server/openclaw-discover.js +1 -1
  88. package/server/premium/index.js +1 -1
  89. package/server/premium/license.js +1 -1
  90. package/server/realtime/bridge.js +1 -1
  91. package/server/realtime/index.js +1 -1
  92. package/server/realtime/tts-stream.js +1 -1
  93. package/server/routes/agents.js +1 -1
  94. package/server/routes/artifacts.js +1 -1
  95. package/server/routes/chat.js +1 -1
  96. package/server/routes/config-settings.js +1 -1
  97. package/server/routes/config.js +1 -1
  98. package/server/routes/cron.js +1 -1
  99. package/server/routes/files.js +1 -1
  100. package/server/routes/index.js +1 -1
  101. package/server/routes/media.js +1 -1
  102. package/server/routes/missed-messages.js +1 -1
  103. package/server/routes/premium.js +1 -1
  104. package/server/routes/push.js +1 -1
  105. package/server/routes/satellite.js +1 -1
  106. package/server/routes/status.js +1 -1
  107. package/server/routes/stt.js +1 -1
  108. package/server/routes/voice.js +1 -1
  109. package/server/routes/webhooks.js +1 -1
  110. package/server/routes.js +1 -1
  111. package/server/runtime-config.js +1 -1
  112. package/server/share.js +1 -1
  113. package/server/stt/faster-whisper.js +1 -1
  114. package/server/stt/groq.js +1 -1
  115. package/server/stt/index.js +1 -1
  116. package/server/stt/openai.js +1 -1
  117. package/server/sync.js +1 -1
  118. package/server/tailscale-https.js +1 -1
  119. package/server/tts.js +1 -1
  120. package/server/update-checker.js +1 -1
  121. package/server/utils/filename.js +1 -1
  122. package/server/utils.js +1 -1
  123. package/server/watchdog.js +1 -1
  124. package/server/websocket/broadcast.js +1 -1
  125. package/server/websocket/connections.js +1 -1
  126. package/server/websocket/index.js +1 -1
  127. package/server/websocket/routing.js +1 -1
  128. package/server/websocket/sync.js +1 -1
  129. package/server.js +1 -1
  130. package/utils/detect-tool-usage.js +1 -1
  131. package/utils/errors.js +1 -1
  132. package/utils/html-escape.js +1 -1
  133. package/utils/id-sanitize.js +1 -1
  134. package/utils/response.js +1 -1
  135. package/utils/with-retry.js +1 -1
  136. package/public/dist/bundle.d3a90e4a.js +0 -1
package/server/share.js CHANGED
@@ -1 +1 @@
1
- (function(_0x5357d4,_0x42f04d){const _0x5ca375=_0x5357d4();function _0x189c1e(_0x3d6393,_0x54ad85){return _0x40b5(_0x54ad85-0x3d7,_0x3d6393);}function _0x19112a(_0x16fe3e,_0x591ff5){return _0x40b5(_0x16fe3e-0x89,_0x591ff5);}while(!![]){try{const _0x2335da=-parseInt(_0x189c1e(0x761,0x674))/(-0x423*-0x7+-0x16d1+-0x623*0x1)+-parseInt(_0x189c1e(0x681,0x575))/(0x26*0xeb+-0x17*0x15+-0x20fd)+-parseInt(_0x189c1e(0x570,0x5d2))/(0x3ad*0x1+-0x8eb+0x541)*(parseInt(_0x19112a(0x225,0x27b))/(-0xd*0x2bf+-0xe8f*-0x2+0x699))+parseInt(_0x189c1e(0x6a3,0x5f6))/(0x195f+0x1847+-0x31a1)*(-parseInt(_0x189c1e(0x52c,0x4ef))/(-0x5e*0x57+0x1f1b+0x1*0xdd))+-parseInt(_0x19112a(0x2df,0x3f5))/(-0x1d27*0x1+0x1666+-0x8*-0xd9)+-parseInt(_0x19112a(0x1ff,0x2de))/(0x23f8+-0x5e*0x2+-0x2334)+-parseInt(_0x19112a(0x39e,0x394))/(-0x812+0x207*-0x6+-0x1*-0x1445)*(-parseInt(_0x19112a(0x30e,0x209))/(-0xd7+-0x25cc+-0x26ad*-0x1));if(_0x2335da===_0x42f04d)break;else _0x5ca375['push'](_0x5ca375['shift']());}catch(_0xc745ce){_0x5ca375['push'](_0x5ca375['shift']());}}}(_0x1c56,0x2*0x4b815+0x99ddf+-0xafc36));const _0xbe2a16=(function(){let _0x550e22=!![];return function(_0x41d3bc,_0x18233b){const _0x2822e8=_0x550e22?function(){if(_0x18233b){const _0xd10315=_0x18233b['apply'](_0x41d3bc,arguments);return _0x18233b=null,_0xd10315;}}:function(){};return _0x550e22=![],_0x2822e8;};}()),_0x17e714=_0xbe2a16(this,function(){function _0x420436(_0x1d4b03,_0x22cd5b){return _0x40b5(_0x1d4b03-0x1cd,_0x22cd5b);}const _0x3bfc78={};_0x3bfc78[_0x420436(0x3c0,0x2d3)]=_0x587650(0x2a1,0x360)+_0x420436(0x4da,0x562)+'+$';const _0x1720a3=_0x3bfc78;function _0x587650(_0x5a63f6,_0x89b574){return _0x40b5(_0x89b574-0x1a0,_0x5a63f6);}return _0x17e714[_0x587650(0x584,0x471)+'ing']()[_0x420436(0x49a,0x562)+'h'](_0x1720a3[_0x420436(0x3c0,0x2bd)])[_0x420436(0x49e,0x51a)+_0x587650(0x4fc,0x423)]()['const'+'ructo'+'r'](_0x17e714)[_0x420436(0x49a,0x5b0)+'h'](_0x587650(0x3d3,0x360)+')+)+)'+'+$');});_0x17e714();import{randomUUID}from'crypto';import _0x4085d5 from'fs/promises';import _0x544fa5 from'path';import{log}from'./utils.js';import{escapeHtml,escapeForJS}from'../utils/html-escape.js';import{sanitizeShareId,parseNumericParam}from'../utils/id-sanitize.js';import{sendSuccess,sendError}from'../utils/response.js';import{errors}from'../utils/errors.js';import{strictLimiter}from'./middleware.js';const DEFAULT_EXPIRY_HOURS=-0xbc6+-0x1*-0x1d7d+0xb*-0x18d,MIN_EXPIRY_HOURS=0x2*0x7ca+-0x199f+0xa0c;function _0x176460(_0x395289,_0x43785a){return _0x40b5(_0x43785a-0x398,_0x395289);}const MAX_EXPIRY_HOURS=-0x5*-0xb17+0x10ee*-0x1+0x16f*-0x3,MAX_MESSAGE_TEXT_LENGTH=-0x1*-0x2c25+0x1*-0x1247+-0x233*-0x6,MAX_MESSAGES_PER_SHARE=0x12*-0x202+0x1487*0x1+0x1191;function sanitizeMessageText(_0x2517c0){const _0x3e221c={};function _0x53057e(_0x5aa8cf,_0x3f93b4){return _0x40b5(_0x3f93b4-0x25e,_0x5aa8cf);}_0x3e221c['vTdrE']=function(_0x41cc3d,_0x2ba9d5){return _0x41cc3d!==_0x2ba9d5;};function _0x57322a(_0x120b0c,_0x4ad298){return _0x40b5(_0x4ad298- -0x34a,_0x120b0c);}_0x3e221c[_0x53057e(0x50f,0x502)]='strin'+'g';const _0x1f94a4=_0x3e221c;if(!_0x2517c0||_0x1f94a4[_0x57322a(-0x191,-0xc9)](typeof _0x2517c0,_0x1f94a4[_0x53057e(0x5c6,0x502)]))return'';let _0x3e9e7e=_0x2517c0[_0x57322a(-0x237,-0x16f)+_0x57322a(-0x1e5,-0x177)](0x1*-0x2089+0x1876+0x813,MAX_MESSAGE_TEXT_LENGTH);return _0x3e9e7e=_0x3e9e7e['repla'+'ce'](/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]/g,''),_0x3e9e7e;}function sanitizeMessageType(_0x574e73){const _0x49524d={};_0x49524d[_0x5d73fd(0x3a5,0x3a0)]=_0x5d73fd(0x1fc,0x2c4),_0x49524d['bBlvM']=_0x5d73fd(0x1e8,0x2b1)+'tant';function _0x5d73fd(_0x2798af,_0x5386bc){return _0x40b5(_0x2798af-0xa2,_0x5386bc);}_0x49524d[_0x450a83(0x4d3,0x4b8)]=_0x450a83(0x51b,0x437)+'m';function _0x450a83(_0x55fbb6,_0x37e34b){return _0x40b5(_0x55fbb6-0x2c3,_0x37e34b);}_0x49524d[_0x450a83(0x5c9,0x587)]=_0x5d73fd(0x22a,0x1cd)+'g',_0x49524d[_0x450a83(0x4c6,0x3b0)]=function(_0x4b6585,_0x3ef2f5){return _0x4b6585!==_0x3ef2f5;},_0x49524d[_0x450a83(0x5ae,0x54c)]='UwSec';const _0xdb3cb7=_0x49524d,_0x513468=[_0xdb3cb7[_0x5d73fd(0x3a5,0x2c5)],_0xdb3cb7[_0x5d73fd(0x38e,0x277)],_0xdb3cb7[_0x450a83(0x4d3,0x46a)]];if(typeof _0x574e73===_0xdb3cb7[_0x5d73fd(0x3a8,0x47f)]&&_0x513468[_0x450a83(0x525,0x453)+'des'](_0x574e73))return _0xdb3cb7['GwQSb'](_0xdb3cb7[_0x450a83(0x5ae,0x608)],_0x5d73fd(0x368,0x43a))?_0x3f076e[_0x5d73fd(0x204,0x27b)+_0x5d73fd(0x34b,0x3c7)](_0x2ee110,_0x12088b[_0x5d73fd(0x371,0x260)]):_0x574e73;return _0xdb3cb7[_0x5d73fd(0x3a5,0x43c)];}export function setupShareRoutes(_0x4c6d25,_0x4def77){const _0x47ad66={'pmmZM':function(_0x127b2a,_0x972260){return _0x127b2a===_0x972260;},'kDGwm':'strin'+'g','nvjxE':_0x19c831(-0x113,-0x18f),'ANhij':'messa'+'ges\x20a'+_0x3f61f3(0xab,-0x33)+_0x3f61f3(-0x8f,-0x15a)+'red','jrNuF':function(_0x4673f5,_0x26c60a){return _0x4673f5!==_0x26c60a;},'QYuXL':_0x3f61f3(-0x7e,-0x5c),'SrpnU':_0x19c831(-0x9a,0x4f),'DiHOC':_0x3f61f3(-0x15f,-0x176),'cbcvD':function(_0x15a7ff,_0x5c0be8,_0x585a92){return _0x15a7ff(_0x5c0be8,_0x585a92);},'kkGUF':'expir'+_0x19c831(0x54,-0x84)+'ours','EccfG':function(_0x16083b,_0x1489da){return _0x16083b===_0x1489da;},'kcxEH':_0x3f61f3(-0x8e,-0xed),'mktdp':_0x19c831(-0x196,-0x186),'htpTL':_0x3f61f3(-0xe1,-0xc4),'NuTZD':_0x3f61f3(0x97,-0x62),'DgJSx':function(_0xfa6b16,_0x349e47){return _0xfa6b16>_0x349e47;},'SavGj':function(_0x21fe27){return _0x21fe27();},'alwyR':_0x19c831(-0x39,-0x76)+_0x3f61f3(-0x2a,-0xe4)+'versa'+_0x3f61f3(-0x8e,-0x42),'Ippuu':function(_0x26882b,_0x3bbc49){return _0x26882b+_0x3bbc49;},'dEUuD':function(_0x33057f,_0x424835){return _0x33057f*_0x424835;},'UaSJv':function(_0x441c73){return _0x441c73();},'qOlbR':function(_0x50c0d9,_0x577bad,_0x37dd69){return _0x50c0d9(_0x577bad,_0x37dd69);},'oNvBD':function(_0x2c3fb8,_0x5f45cc){return _0x2c3fb8===_0x5f45cc;},'NZCLw':_0x19c831(-0x71,-0xd7),'KMBRK':_0x19c831(-0x249,-0x171),'dNMEk':function(_0x10e0bc,_0x470ec7,_0x21443e,_0x274118){return _0x10e0bc(_0x470ec7,_0x21443e,_0x274118);},'zPhJE':_0x3f61f3(0x9f,-0x51),'BNTYS':_0x19c831(0x25,-0x82)+_0x19c831(-0x2d5,-0x1bc)+_0x3f61f3(-0xf7,-0xb2)+'error'+':','VyxLP':'Share'+_0x19c831(-0xf9,-0x1d0)+_0x19c831(-0x1a1,-0x147),'ivXmq':'[Shar'+'e]\x20Ge'+_0x3f61f3(-0x192,-0x19c)+_0x3f61f3(-0x17e,-0x17a),'rOnrX':_0x19c831(-0x22a,-0x127)+'d\x20to\x20'+_0x3f61f3(-0x60,-0x46)+_0x3f61f3(0x84,-0x47),'YlUAT':function(_0x30c081,_0x113c37){return _0x30c081!==_0x113c37;},'MZKSF':function(_0x2929f5,_0x4a8fa3){return _0x2929f5!==_0x4a8fa3;},'yMOsx':'xfolQ','CJcEH':_0x19c831(-0x27c,-0x1d4),'fojXF':'JEaAF','gIyDI':function(_0x4adf86,_0x3c1cc7){return _0x4adf86(_0x3c1cc7);},'HTOsX':function(_0x3a5696,_0x4f1760){return _0x3a5696!==_0x4f1760;},'mvYrM':_0x19c831(-0x14a,-0x109),'mdLtZ':function(_0x1b2e5b,_0x41ea34){return _0x1b2e5b>_0x41ea34;},'mIXfY':_0x3f61f3(-0x1d7,-0x1e4),'QsdNt':_0x3f61f3(0x3a,0x8),'NbIvM':function(_0x36fc53,_0x300d91,_0x7a419c){return _0x36fc53(_0x300d91,_0x7a419c);},'lpzkd':function(_0x45c58c,_0x1c2e98){return _0x45c58c!==_0x1c2e98;},'WIxaF':_0x19c831(0xe5,0x29),'ITqqN':_0x19c831(0x36,-0x1),'kSkGq':function(_0x29d1ad,_0x14937b){return _0x29d1ad!==_0x14937b;},'xOhyd':_0x3f61f3(-0x201,-0x1a5),'vqedu':function(_0x5bf97a,_0x12b9d7){return _0x5bf97a(_0x12b9d7);},'roQXH':_0x3f61f3(0x8f,-0x7f),'cpVgO':_0x19c831(0x1,-0xa3),'NXEyl':function(_0x4aca93,_0x16197d){return _0x4aca93(_0x16197d);},'lwbqv':_0x3f61f3(-0x6,-0x50),'uOOhE':function(_0x2befa8,_0x1d1599){return _0x2befa8(_0x1d1599);},'uCUsM':_0x3f61f3(-0x85,-0x30)+_0x19c831(-0xbb,-0x9e)+'/:sha'+_0x19c831(-0x3d,0x1b),'vTvTE':'/shar'+_0x3f61f3(0xd7,-0x22)+'areId'},_0x23b80d={};function _0x19c831(_0x3346ca,_0x2e0953){return _0x40b5(_0x2e0953- -0x2e9,_0x3346ca);}_0x23b80d['recur'+_0x3f61f3(-0x19e,-0x1eb)]=!![],_0x4085d5[_0x3f61f3(-0x13b,-0x177)](_0x4def77,_0x23b80d)[_0x3f61f3(-0x34,-0xab)](()=>{}),_0x4c6d25[_0x19c831(-0x1f9,-0x10d)]('/api/'+_0x19c831(-0x137,-0x9e)+_0x19c831(0x98,0x19)+'te',strictLimiter,async(_0x5ae169,_0x5d6ace)=>{const _0x30603c={};_0x30603c[_0x58440e(0x297,0x306)]='(((.+'+')+)+)'+'+$',_0x30603c[_0x58440e(0x20f,0x1d4)]=_0x47ad66[_0x58440e(0x2e6,0x37c)];const _0x572e67=_0x30603c;function _0x2a9880(_0x2ed12e,_0x5235fc){return _0x19c831(_0x2ed12e,_0x5235fc-0x551);}function _0x58440e(_0x1c7a12,_0x47259e){return _0x19c831(_0x1c7a12,_0x47259e-0x34c);}if(_0x47ad66[_0x2a9880(0x387,0x40b)](_0x47ad66[_0x2a9880(0x4c5,0x599)],_0x47ad66[_0x2a9880(0x391,0x41d)]))try{if(_0x47ad66[_0x58440e(0x3d9,0x2fe)](_0x2a9880(0x374,0x412),_0x47ad66[_0x58440e(0x2f8,0x276)])){const {title:_0x4f4706,messages:_0x5c78ab,expiresInHours:_0x48f4f9}=_0x5ae169[_0x2a9880(0x512,0x4bb)],_0x13e5e8=_0x47ad66['cbcvD'](parseNumericParam,_0x48f4f9,{'min':MIN_EXPIRY_HOURS,'max':MAX_EXPIRY_HOURS,'defaultValue':DEFAULT_EXPIRY_HOURS,'paramName':_0x47ad66[_0x58440e(0xb8,0x173)]});if(!_0x13e5e8[_0x2a9880(0x478,0x4dc)]){if(_0x47ad66['EccfG'](_0x47ad66[_0x2a9880(0x52b,0x4d3)],_0x47ad66[_0x2a9880(0x377,0x3a5)])){const _0x569d19=[_0x2a9880(0x349,0x3c2),'assis'+_0x2a9880(0x47b,0x45d),'syste'+'m'];if(ISRMJo[_0x58440e(0x397,0x2fe)](typeof _0x521044,ISRMJo[_0x58440e(0x29c,0x26a)])&&_0x569d19['inclu'+_0x2a9880(0x40b,0x512)](_0xad9a2d))return _0x201894;return ISRMJo[_0x2a9880(0x5f7,0x591)];}else return errors['badRe'+_0x58440e(0x229,0x30c)](_0x5d6ace,_0x13e5e8[_0x58440e(0x3c8,0x332)]);}const _0x1b29be=_0x13e5e8[_0x2a9880(0x62f,0x561)];if(!_0x5c78ab||!Array['isArr'+'ay'](_0x5c78ab)||_0x5c78ab['lengt'+'h']===0x1ceb+0x834+-0x251f)return _0x47ad66[_0x2a9880(0x412,0x503)](_0x47ad66[_0x2a9880(0x54f,0x441)],_0x47ad66[_0x2a9880(0x54b,0x4c5)])?_0x66efb6['badRe'+_0x2a9880(0x4bc,0x511)](_0x10ddf2,_0x19ac6e[_0x58440e(0x2a1,0x332)]):errors[_0x58440e(0x12f,0x1c5)+_0x58440e(0x2b6,0x30c)](_0x5d6ace,_0x2a9880(0x496,0x3fb)+_0x58440e(0x29b,0x1c2)+_0x2a9880(0x471,0x555)+_0x2a9880(0x418,0x42e)+'red');if(_0x47ad66[_0x2a9880(0x3ae,0x413)](_0x5c78ab[_0x58440e(0x398,0x303)+'h'],MAX_MESSAGES_PER_SHARE))return errors[_0x2a9880(0x3b0,0x3ca)+_0x2a9880(0x436,0x511)](_0x5d6ace,_0x58440e(0x285,0x2cc)+_0x2a9880(0x3f8,0x3eb)+_0x2a9880(0x61f,0x540)+'es\x20(m'+_0x2a9880(0x543,0x522)+MAX_MESSAGES_PER_SHARE+')');const _0x5cdf5f=_0x47ad66[_0x2a9880(0x5d1,0x5a1)](randomUUID)[_0x58440e(0x358,0x312)+'ce'](/-/g,'')['subst'+_0x58440e(0x1ec,0x236)](0xf6f+0x8*0x2b4+-0x250f,-0x1a38*-0x1+0x2552+-0x3f7e),_0x4474f1=_0x544fa5[_0x2a9880(0x443,0x4c1)](_0x4def77,_0x5cdf5f+'.json'),_0x43e037=_0x47ad66[_0x58440e(0x234,0x2fe)](typeof _0x4f4706,_0x47ad66[_0x58440e(0x2df,0x26a)])?_0x4f4706[_0x58440e(0x2d5,0x23e)+_0x2a9880(0x3b9,0x43b)](-0x1b57+0xce3+0xe74,0xb88+0x73*0x11+-0x1263)['repla'+'ce'](/[\x00-\x1F\x7F]/g,''):_0x47ad66[_0x58440e(0x11d,0x1cd)],_0x51cd81=_0x5c78ab[_0x58440e(0x200,0x1d2)](_0x300331=>({'type':sanitizeMessageType(_0x300331[_0x2a9880(0x419,0x376)]),'text':sanitizeMessageText(_0x300331['text']),'timestamp':typeof _0x300331[_0x58440e(0x285,0x207)+_0x2a9880(0x4c0,0x3ff)]===_0x58440e(0x310,0x2c1)+'r'?_0x300331[_0x58440e(0x23a,0x207)+_0x2a9880(0x483,0x3ff)]:Date[_0x2a9880(0x583,0x4c8)]()})),_0x31b808={'id':_0x5cdf5f,'title':_0x43e037,'messages':_0x51cd81,'createdAt':Date[_0x2a9880(0x533,0x4c8)](),'expiresAt':_0x47ad66[_0x2a9880(0x4a8,0x3df)](Date[_0x2a9880(0x5ce,0x4c8)](),_0x47ad66[_0x2a9880(0x41b,0x523)](_0x47ad66['dEUuD'](_0x1b29be,-0x209c+0x197*0x2+0x1daa),-0xee7+-0x1e0e*-0x1+-0x4f9*0x3)*(-0x2401+0xb*-0x2c5+0x4660)),'viewCount':0x0},_0x513959=_0x544fa5[_0x58440e(0x239,0x2bc)](_0x4def77,_0x2a9880(0x5ae,0x50f)+_0x5cdf5f+'-'+_0x47ad66[_0x2a9880(0x467,0x43e)](randomUUID)+_0x58440e(0x3a4,0x398));await _0x4085d5[_0x2a9880(0x3c6,0x4b2)+_0x2a9880(0x446,0x47f)](_0x513959,JSON['strin'+_0x58440e(0x42e,0x385)](_0x31b808,null,0x4*0x72+-0x12ef+-0x1129*-0x1)),await _0x4085d5[_0x58440e(0x132,0x1ab)+'e'](_0x513959,_0x4474f1),_0x47ad66[_0x58440e(0x217,0x1e1)](log,'info',_0x2a9880(0x480,0x4cf)+_0x58440e(0x84,0x190)+_0x58440e(0x22c,0x2b1)+_0x58440e(0x11b,0x19d)+'e:\x20'+_0x5cdf5f);const _0x24ed4d={};return _0x24ed4d[_0x2a9880(0x526,0x4b3)+'Id']=_0x5cdf5f,_0x24ed4d[_0x2a9880(0x39f,0x4b3)+_0x58440e(0x367,0x25a)]='/shar'+'e/'+_0x5cdf5f,_0x24ed4d[_0x58440e(0x2f1,0x397)+'esAt']=_0x31b808[_0x2a9880(0x4fe,0x59c)+_0x58440e(0x101,0x17e)],_0x47ad66['qOlbR'](sendSuccess,_0x5d6ace,_0x24ed4d);}else return _0x66176c[_0x58440e(0x2a6,0x334)+_0x2a9880(0x5a3,0x4eb)]()[_0x2a9880(0x450,0x535)+'h'](eCedrJ[_0x2a9880(0x4e2,0x50b)])[_0x58440e(0x2fd,0x334)+_0x58440e(0x364,0x2e6)]()['const'+_0x58440e(0x3c0,0x313)+'r'](_0x8a3d8)[_0x2a9880(0x4b6,0x535)+'h'](_0x2a9880(0x4c8,0x428)+_0x58440e(0x3dd,0x370)+'+$');}catch(_0x3f34f1){return _0x47ad66['oNvBD'](_0x47ad66[_0x2a9880(0x49c,0x4a6)],_0x47ad66[_0x58440e(0x1d7,0x297)])?_0x11bf5a[_0x2a9880(0x3cf,0x3ca)+_0x2a9880(0x5aa,0x511)](_0xadfe8b,_0x572e67['VMagF']):(_0x47ad66['dNMEk'](log,_0x47ad66[_0x2a9880(0x401,0x46d)],_0x47ad66[_0x2a9880(0x460,0x4aa)],_0x3f34f1[_0x2a9880(0x3f2,0x3fb)+'ge']),errors[_0x2a9880(0x2e8,0x3e2)+_0x2a9880(0x360,0x420)+'r'](_0x5d6ace,_0x58440e(0x169,0x225)+_0x2a9880(0x4f5,0x4b4)+_0x2a9880(0x485,0x3be)+_0x58440e(0x21f,0x1f5)+'re'));}else return _0x1fdfd2[_0x58440e(0x23d,0x1c5)+_0x58440e(0x3dc,0x30c)](_0x5e02ab,_0x77a989['error']);}),_0x4c6d25['get'](_0x47ad66['uCUsM'],async(_0x451268,_0x1309ba)=>{const _0x41ecba={'VHGtS':function(_0x216216,_0x2c04b6,_0x574fff,_0x31946c){function _0x440bc2(_0x3e9c71,_0x4298d6){return _0x40b5(_0x3e9c71- -0x257,_0x4298d6);}return _0x47ad66[_0x440bc2(0x3b,-0xb7)](_0x216216,_0x2c04b6,_0x574fff,_0x31946c);},'bKKnK':_0x47ad66['zPhJE'],'TOrEJ':'Faile'+_0x239b4e(-0x72,0x6)+_0x43a91e(-0x26c,-0x31d)+_0x43a91e(-0x230,-0x1dd)+'re'};function _0x43a91e(_0x1351d3,_0x4ea0b1){return _0x19c831(_0x4ea0b1,_0x1351d3- -0xd9);}function _0x239b4e(_0x2534fe,_0x2079c9){return _0x19c831(_0x2534fe,_0x2079c9-0xa3);}if(_0x47ad66[_0x43a91e(-0x213,-0x17c)](_0x47ad66[_0x43a91e(-0x1ce,-0x1e9)],_0x47ad66[_0x43a91e(-0x249,-0x2ab)]))try{if(_0x47ad66[_0x239b4e(-0x61,-0xa3)](_0x47ad66[_0x43a91e(-0x20b,-0x2ee)],_0x47ad66[_0x239b4e(-0xf1,-0x8f)]))return _0xc7d251[_0x43a91e(-0x8b,-0x17f)+_0x43a91e(-0x11a,-0x126)](_0x29db8e,_0x47ad66[_0x239b4e(-0xe9,-0xfa)]);else{const {shareId:_0x72317a}=_0x451268['param'+'s'],_0x54920a=_0x47ad66[_0x239b4e(-0xb4,0x4e)](sanitizeShareId,_0x72317a);if(!_0x54920a[_0x43a91e(-0x14e,-0x1e4)])return errors['badRe'+_0x43a91e(-0x119,-0x10d)](_0x1309ba,_0x54920a[_0x239b4e(0xdb,0x89)]);const _0x3771c0=_0x54920a[_0x43a91e(-0x161,-0x1cd)+'ized'],_0x45d8af=_0x544fa5['join'](_0x4def77,_0x3771c0+'.json');try{if(_0x47ad66[_0x43a91e(-0x18c,-0x169)](_0x239b4e(0x21,0x26),_0x47ad66[_0x239b4e(0x63,0xe6)])){const _0x3e9e4d=await _0x4085d5[_0x239b4e(-0x13d,-0x6f)+_0x239b4e(0x3e,0x22)](_0x45d8af,'utf8'),_0x482d3a=JSON[_0x239b4e(-0x1d,-0x35)](_0x3e9e4d);if(_0x47ad66[_0x43a91e(-0x235,-0x27a)](Date[_0x43a91e(-0x162,-0x130)](),_0x482d3a[_0x239b4e(0xfa,0xee)+_0x43a91e(-0x2a7,-0x2a8)]))return _0x47ad66[_0x239b4e(-0x64,0x6d)]===_0x47ad66[_0x239b4e(0x158,0xb9)]?_0xddd348:(await _0x4085d5[_0x239b4e(0x7a,0x9c)+'k'](_0x45d8af)[_0x43a91e(-0x14d,-0x12d)](()=>{}),errors[_0x239b4e(0x101,0xf1)+_0x43a91e(-0x11a,-0xb0)](_0x1309ba,'Share'+_0x43a91e(-0x110,-0x218)+'\x20has\x20'+_0x43a91e(-0x8e,-0x14c)+'ed'));return _0x482d3a['viewC'+_0x43a91e(-0x1b9,-0x1ca)]++,await _0x4085d5[_0x43a91e(-0x178,-0x6d)+_0x43a91e(-0x1ab,-0x1ee)](_0x45d8af,JSON[_0x239b4e(0x44,-0xbe)+_0x239b4e(0x149,0xdc)](_0x482d3a,null,-0xa40+0x1314+-0x469*0x2)),_0x47ad66['NbIvM'](sendSuccess,_0x1309ba,_0x482d3a);}else return _0x47ad66['dNMEk'](_0x31cb3a,_0x47ad66[_0x239b4e(-0x14f,-0x41)],_0x47ad66[_0x239b4e(0x2c,0x3c)],_0x352206[_0x239b4e(-0xed,-0xb3)+'ge']),_0x367cd8[_0x43a91e(-0x248,-0x16e)+_0x43a91e(-0x20a,-0x2cf)+'r'](_0x315830,_0x47ad66[_0x239b4e(-0x71,0xf)]);}catch(_0x457d10){if(_0x47ad66[_0x43a91e(-0x100,-0xa3)](_0x47ad66['WIxaF'],_0x47ad66['WIxaF'])){if(!_0x4ed5d8||ISRMJo[_0x43a91e(-0x1b6,-0x183)](typeof _0x5e8b35,ISRMJo[_0x43a91e(-0x1bb,-0x208)]))return'';let _0x213fd9=_0x1e36da[_0x239b4e(0x89,-0x6b)+'ring'](-0x991*0x2+-0x21bd+0x34df,_0x250924);return _0x213fd9=_0x213fd9[_0x43a91e(-0x113,-0x1f9)+'ce'](/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]/g,''),_0x213fd9;}else return errors['notFo'+_0x239b4e(0x86,0x62)](_0x1309ba,_0x43a91e(-0x14f,-0x23c)+_0x43a91e(-0x2a9,-0x390)+_0x43a91e(-0x220,-0x21a));}}}catch(_0x5939fa){return log(_0x47ad66[_0x43a91e(-0x1bd,-0x297)],_0x47ad66[_0x239b4e(0x9b,0x3c)],_0x5939fa['messa'+'ge']),errors[_0x43a91e(-0x248,-0x28a)+_0x43a91e(-0x20a,-0x2c4)+'r'](_0x1309ba,_0x47ad66[_0x43a91e(-0x16d,-0xc0)]);}else return cslCQi['VHGtS'](_0x369de5,cslCQi[_0x43a91e(-0xab,-0x139)],_0x239b4e(0x6,0x21)+_0x239b4e(-0x102,-0x119)+'eate\x20'+_0x43a91e(-0xf3,-0x105)+':',_0x4a4c09['messa'+'ge']),_0x15a9d3[_0x239b4e(-0x104,-0xcc)+_0x43a91e(-0x20a,-0x2d5)+'r'](_0x4b5e42,cslCQi[_0x43a91e(-0x273,-0x347)]);});function _0x3f61f3(_0x44f716,_0x54feed){return _0x40b5(_0x54feed- -0x320,_0x44f716);}_0x4c6d25['delet'+'e'](_0x47ad66['uCUsM'],strictLimiter,async(_0x407d85,_0x6f490a)=>{function _0x2d353a(_0x2a5215,_0x23d9d1){return _0x3f61f3(_0x23d9d1,_0x2a5215- -0x58);}function _0x46663b(_0x4799d1,_0x5deaca){return _0x3f61f3(_0x4799d1,_0x5deaca-0x3fc);}if(_0x47ad66[_0x2d353a(-0x24e,-0x189)]==='HkOfz')return'';else try{if(_0x47ad66[_0x46663b(0x222,0x2f2)](_0x47ad66['xOhyd'],_0x47ad66[_0x2d353a(-0x126,-0xca)]))return _0x53a3a3[_0x46663b(0x418,0x413)+_0x46663b(0x406,0x384)](_0xa4d7d,_0x47ad66['VyxLP']);else{const {shareId:_0x3dea57}=_0x407d85[_0x2d353a(-0x1e8,-0x285)+'s'],_0x3efb13=_0x47ad66[_0x46663b(0x35c,0x2cc)](sanitizeShareId,_0x3dea57);if(!_0x3efb13['valid'])return _0x47ad66[_0x2d353a(-0xbc,-0x71)]!==_0x47ad66['cpVgO']?errors[_0x46663b(0x309,0x23e)+_0x2d353a(-0xcf,-0x3f)](_0x6f490a,_0x3efb13['error']):_0x11d42b[_0x46663b(0x1f5,0x23e)+_0x46663b(0x3db,0x385)](_0x4d3c01,'Too\x20m'+'any\x20m'+'essag'+'es\x20(m'+_0x46663b(0x489,0x396)+_0x59010e+')');const _0x7e9f9e=_0x3efb13[_0x46663b(0x3ce,0x33d)+'ized'],_0x8268ed=_0x544fa5[_0x46663b(0x24e,0x335)](_0x4def77,_0x7e9f9e+_0x2d353a(-0x43,-0x100));return await _0x4085d5[_0x2d353a(-0x96,-0x85)+'k'](_0x8268ed),_0x47ad66[_0x2d353a(-0x6d,0x7b)](sendSuccess,_0x6f490a);}}catch(_0x2ab47d){return errors[_0x2d353a(-0x41,-0x82)+_0x2d353a(-0xd0,-0x166)](_0x6f490a,_0x2d353a(-0x105,-0x80)+_0x2d353a(-0x25f,-0x1c2)+_0x2d353a(-0x1d6,-0x1b8));}}),_0x4c6d25[_0x3f61f3(-0x143,-0x18a)](_0x47ad66[_0x3f61f3(-0x7,-0x100)],async(_0x27a394,_0x2d0506)=>{function _0x9302f2(_0x1e3612,_0x3c105d){return _0x19c831(_0x1e3612,_0x3c105d-0x3d6);}function _0x1270ae(_0x469df2,_0x3f9b14){return _0x19c831(_0x3f9b14,_0x469df2- -0xbf);}const _0x3b4a50={'hUvAk':function(_0x337b5d,_0x44bdc8){return _0x47ad66['NXEyl'](_0x337b5d,_0x44bdc8);}};_0x47ad66[_0x9302f2(0x2a0,0x2f9)](_0x47ad66[_0x9302f2(0x2c7,0x2b7)],_0x47ad66[_0x1270ae(-0x1de,-0x19a)])?_0x48e3a9[_0x9302f2(0x3d7,0x389)](_0x3b4a50['hUvAk'](_0x248df2,_0x26c7fc[_0x9302f2(0x2df,0x27d)+'s'][_0x1270ae(-0x15d,-0xc0)+'Id'])):_0x2d0506[_0x1270ae(-0x10c,-0x215)](_0x47ad66[_0x1270ae(-0xae,-0x1b1)](getSharePageHTML,_0x27a394[_0x1270ae(-0x218,-0x22c)+'s']['share'+'Id']));});}function _0x1c56(){const _0x875a92=['ile','Too\x20m','serif','kcxEH','otLxz','ges\x20{','eate\x20','TML\x20=','devic','ext-a','\x20\x20<st','Share','valid','catch','.erro',';\x20ret','>\x0a\x20\x20<','v.inn','ment(','align','\x20\x27</d','textC','rror\x22','ter\x20{','\x20\x20\x20})','vTdrE','ivXmq','ing','333;\x0a','32074590GSlVBz','\x22load','-star','\x20\x20tex','Eleme','cript','\x20<tit','umn;\x20','20px;','\x27mess','\x20\x20bor','class','oAqtS','dNMEk','.filt','gIyDI','00px;','v\x20cla','sage.','.type','Route','ame=\x22','pmmZM','send','539352UKSdkQ','emFon','red\x20v','lengt','LITIx','d(\x27me','eeIbr','qQhxu','!==\x20\x27','type\x20','.tmp-','und','quest','des','ainer','s=\x22me','urn\x20d','\x200.9e','repla','ructo','t-ali','\x20link','mIXfY','on\x20-\x20','v\x27);\x0a','\x20\x20\x20\x20b','\x0a<!DO','top:\x20','lign-','ax\x20','dEUuD','roQXH','hare/','PjMyw','x-siz','teEle','\x20.loa','lpzkd','0;\x20pa','rXlTb','(m.te','UwSec','color','\x20\x27<di','\x20\x20\x20ba','t\x20=\x20t','etEle','e\x22\x20id','searc','ort\x22\x20','error','NaGNg','toStr','\x20\x20\x20fu','pple-','\x20font','CTYPE','r.jso','ogo\x20{','essag','hare','get\x20s','div\x20c','\x27div\x27',').tex','tion','\x20.joi','\x0a\x20\x20<m','user\x20','unlin','eTitl','xt)\x20+','ia\x20<a','r:\x20#6','istan','lcBBZ','\x20=>\x20\x27','888;\x20','QhUJL','bBlvM','rray\x20','\x20+\x20\x27\x22','t\x20=\x20s','/api/','gap:\x20','}\x0a\x20\x20<','>Fail','.mess','nd;\x0a\x20','{\x20fon','ding\x20','\x20{\x20bo','value','uOOhE','k</ti',';\x20col','r-box','e/:sh','QsdNt','tml>\x0a','paddi','/crea','JkRDn','reId','\x20func','uRuXo','groun','tCont','gn:\x20c','heade','NXEyl','nnerH',')+)+)','eateE','ent.g','flex;','r:\x20#f','VaNAg','</div','=\x22sha','9Lchjhp','-deco','bKKnK','.inne','ANhij','gin:\x20','taine','tom:\x20','30px;','\x20\x20\x20\x20<','ss=\x22e','d:\x20#1',':\x20#63','gify','y:\x20-a',':\x20100','gn-se','yId(\x27','x;\x0a\x20\x20','SwjAL','nvjxE','\x20data','\x27\x20+\x20s','mvYrM','\x20colo','\x20\x20\x20.h','.cont','x;\x20\x0a\x20','QYuXL','r\x20=>\x20','g...<','expir','.json','\x0a\x20\x20<s','notFo','CWOlN','SavGj','8;\x20}\x0a','e:\x201.','vh;\x0a\x20','>\x0a<ht','\x200\x2030','\x20\x20\x20.t','type','self:','kkGUF','ass=\x22','t-siz','{\x20\x0a\x20\x20','\x20\x20\x20do','nBSAg','order','Conve','12lIVIhX','\x20not\x20','=\x22err','esAt','d)\x0a\x20\x20','rHTML','ng:\x201','/scri','if\x20(!','\x20\x20}\x0a\x20','ight-','ocume','>\x0a\x20\x20\x20','<div\x20','\x20retu','\x20#ef4','tle;\x0a','\x20\x20\x20.f','ITqqN','text-','/\x5cn/g','e]\x20Cr','font-','\x20\x20Sha','\x20{\x20ma','ById(','ror\x27;','enter','tch(e','sive','\x20+\x20es',';\x0a\x20\x20\x20','L.rep','t=\x22UT','\x20shar','\x20back','CsfLe','mktdp','max-w','nt=\x22w','s:\x204p','\x20\x20\x20\x20d','ntent','Title','-size','px\x20so','assis','2px\x201','renam','\x2020px','l-sca','/styl','VyxLP','s\x27).i','.crea','TOrEJ','rsati','=\x22mes','\x20\x20\x20\x20\x20','le=1.','#333;','or\x22>\x27','creat','ottom','olor:','or:\x20#','user','m,\x20Bl',';\x20pad','ding-','nst\x20s','ges\x20a','\x20}\x0a\x20\x20','\x20\x27Err','badRe','hEtxc','m\x27)\x0a\x20','head>','=\x20doc','iv\x20cl','\x27).te','-dire','alwyR','6f1;\x20','444;\x20','ter\x22>','\x20auto','map','addin','VMagF','/div>','\x0a\x20\x20\x20\x20','reTit','1a;\x20\x0a','8138680GpZJUG','Ippuu','XomEZ','CJcEH','serve','YXjrr','\x20\x20mar','\x20cent','cbcvD','borde','ckgro','lass=','hareI','any\x20m','t\x20err','erHTM','...</','\x20\x20.ca','strin','r\x22>\x0a\x20','st\x20di','ement','F-8\x22>','mdLtZ','ument','=\x22foo','param','2em;\x20','e\x20sha','messa','tent\x20','ok\x20||','get','tamp',':\x20#88','\x20\x20\x20\x20*','k</di','le\x22>L','12YgvZqL','e-wid','855274AkZVCr','setup','L\x20=\x20\x27','conte','found','jrNuF','times','op:\x201','or:','dius:','y>\x0a\x20\x20','mkdir','TzzVi','DgJSx','cSyst','entBy','min-h','MZKSF','\x27shar','itle\x20','ntByI','nctio','a.err','SrpnU','egoe\x20','fojXF','rErro','{\x0a\x20\x20\x20','inkMa','\x20marg','er(m\x20','\x20#636','o\x22>🛰️\x20',';\x20}\x0a\x20','(((.+','n())\x0a','Faile','ared\x20','om-le','ment.','requi','1px\x20s','eta\x20c','n;\x0a\x20\x20','lwbqv','\x20\x20con','\x20\x20pad','eight','ages\x0a','t(\x27di',');\x20d.','rgin-','\x20{\x20\x0a\x20','ring','\x20<div','>\x27;\x0a\x20','UaSJv','readF','\x2085%;','htpTL','\x20div.','subst','post','oadin','ssage','#0f0f','sgJcV','\x20=\x20da','px;\x0a\x20','tElem','\x20\x20\x20\x20a','});\x0a\x20','e.ass','nown\x20','v>\x27;\x0a','nt.cr','\x20\x20.me','\x20docu','ooter','t.get',':\x2020p','ratio','vqedu','x-wid','d\x20=\x20\x27','hGtrg','yMOsx','tant','{\x20tex','Url','ing:\x20','getEl','lex-e','100593FPNAEL','/body','gin-b','t;\x0a\x20\x20','66;\x0a\x20','n(\x27\x27)','\x27\x20+\x20m','onten','GwQSb','\x20flex','zPhJE','\x20\x20\x20\x20}','kDGwm','sage\x20','ount','0px;\x0a','Uplin','YlUAT','extCo','idth:','ff;\x0a\x20','UfyHA','parse','PeyNg','DiHOC','nt.ge','}\x0a\x20\x20\x20','kSkGq','File','\x204px;','then(','idth=','\x20\x20\x20<d','=\x22/\x22>','tom-r','\x20disp','44090HwLDoz','vTvTE','hareT',':\x20col','\x2040px','ne;\x20}','\x20.foo','ng:\x202','ft-ra','der-r','viewp','docum','\x20body','r\x20{\x20t','\x20a\x20{\x20','v>\x0a\x20\x20','Id(\x27s','sans-','adius','12px;','qJWRY','KMBRK','nvers','HTOsX','radiu','n\x22>\x0a<','m;\x0a\x20\x20','ext;\x0a','s\x22\x20id','d\x20Con','n\x20esc','NZCLw','\x27</di','map(m','=\x22log','BNTYS','escap','ages\x27','r>\x27);','qZzSB','r)\x20{\x0a','eta\x20n',';\x20mar','write','share','d\x20to\x20','cumen','eated','c(dat','\x20\x27Unk','Loadi','xOhyd','body',':\x20cen','rOnrX','4032385KXcLGw','lid\x20#','syste','join','n(dat','famil','ZTuuJ','NuTZD','numbe','\x22>\x0a\x20\x20','now','sanit','inclu','=>\x20m.','harse','esInH','eHtml','[Shar'];_0x1c56=function(){return _0x875a92;};return _0x1c56();}function getSharePageHTML(_0x1630e1){const _0x4989b8={'oAqtS':function(_0x74d05b,_0x33a83c){return _0x74d05b(_0x33a83c);}};function _0x262527(_0x374beb,_0xa37aff){return _0x40b5(_0xa37aff-0x242,_0x374beb);}const _0x1fa92d=_0x4989b8[_0x262527(0x437,0x4d3)](escapeForJS,_0x1630e1[_0x382bd8(0x211,0x2fe)+'ce'](/[^a-zA-Z0-9]/g,'')[_0x382bd8(0x2e6,0x22a)+_0x382bd8(0x306,0x222)](0x179a+0x1bcd+0x1*-0x3367,0xef9*0x1+0x194+0x19*-0xa9));function _0x382bd8(_0x47337a,_0x47c0b9){return _0x40b5(_0x47c0b9-0x4f,_0x47337a);}return _0x262527(0x5f2,0x4f9)+_0x382bd8(0x29c,0x324)+'\x20html'+_0x382bd8(0x366,0x38c)+'ml\x20la'+'ng=\x22e'+_0x262527(0x389,0x47a)+'head>'+_0x382bd8(0x342,0x32f)+_0x382bd8(0x320,0x217)+_0x262527(0x3ff,0x4a6)+_0x382bd8(0xde,0x188)+_0x382bd8(0x1b6,0x1db)+_0x382bd8(0x21c,0x32f)+_0x262527(0x3ab,0x48a)+_0x382bd8(0x29a,0x2e9)+_0x262527(0x396,0x46b)+_0x382bd8(0x308,0x31d)+_0x262527(0x30b,0x3e3)+_0x382bd8(0x181,0x18e)+_0x262527(0x40e,0x45c)+_0x382bd8(0x1d4,0x2bf)+_0x262527(0x4f8,0x3df)+'th,\x20i'+'nitia'+_0x262527(0x2e8,0x38c)+_0x262527(0x3b2,0x395)+'0\x22>\x0a\x20'+_0x382bd8(0x332,0x2da)+'le>Sh'+_0x382bd8(0x2c7,0x212)+_0x382bd8(0xf5,0x166)+_0x382bd8(0x163,0x19f)+_0x262527(0x56b,0x4f6)+_0x382bd8(0x22c,0x25a)+_0x262527(0x463,0x53d)+'tle>\x0a'+_0x382bd8(0x341,0x2c1)+'yle>\x0a'+_0x262527(0x48e,0x3db)+_0x262527(0x618,0x53a)+_0x262527(0x436,0x501)+_0x382bd8(0x1ac,0x247)+_0x382bd8(0x23d,0x1ce)+_0x382bd8(0x415,0x34c)+_0x382bd8(0x27f,0x298)+_0x382bd8(0x2ba,0x369)+_0x382bd8(0x337,0x312)+'dding'+':\x200;\x20'+_0x262527(0x342,0x457)+_0x382bd8(0x18f,0x27a)+_0x382bd8(0x23a,0x221)+_0x382bd8(0x154,0x1a1)+_0x262527(0x3fc,0x370)+_0x382bd8(0x2a8,0x2aa)+_0x262527(0x4aa,0x565)+_0x382bd8(0x37e,0x322)+_0x262527(0x450,0x49a)+_0x262527(0x412,0x39d)+_0x262527(0x3d6,0x3fc)+_0x382bd8(0x2d9,0x1fb)+_0x262527(0x5ea,0x4e0)+'t,\x20\x27S'+_0x262527(0x4f9,0x3f8)+'UI\x27,\x20'+_0x262527(0x398,0x472)+_0x382bd8(0x24d,0x2b9)+_0x262527(0x3d5,0x379)+_0x382bd8(0x406,0x318)+_0x262527(0x4ba,0x3c2)+'und:\x20'+_0x382bd8(0x262,0x22e)+_0x382bd8(0x201,0x1c4)+_0x262527(0x2ca,0x394)+_0x262527(0x52b,0x56f)+_0x262527(0x5dc,0x553)+_0x382bd8(0x174,0x25e)+_0x382bd8(0x1da,0x1a1)+_0x382bd8(0x2d0,0x1fd)+_0x382bd8(0x1f1,0x21c)+_0x262527(0x4ab,0x566)+_0x262527(0x62f,0x57e)+_0x382bd8(0x18c,0x1a1)+_0x382bd8(0x2d6,0x350)+_0x262527(0x57c,0x468)+_0x382bd8(0x1bd,0x259)+_0x262527(0x47e,0x448)+'\x0a\x20\x20\x20\x20'+_0x262527(0x595,0x571)+_0x382bd8(0x1e9,0x2fa)+_0x262527(0x2d1,0x372)+_0x262527(0x39d,0x433)+'th:\x207'+_0x382bd8(0x375,0x2e4)+_0x262527(0x454,0x3fd)+'in:\x200'+_0x382bd8(0x1b6,0x1bd)+_0x382bd8(0x28d,0x20e)+_0x382bd8(0x496,0x37d)+'eader'+_0x262527(0x3cc,0x414)+_0x262527(0x401,0x394)+_0x262527(0x257,0x36d)+_0x262527(0x3ff,0x4bd)+_0x382bd8(0x1f5,0x2a3)+'ter;\x20'+_0x262527(0x460,0x3b5)+'\x20\x20pad'+'ding:'+_0x382bd8(0xce,0x198)+_0x262527(0x47d,0x580)+_0x262527(0x4ef,0x424)+_0x262527(0x302,0x394)+_0x382bd8(0x292,0x1ce)+'r-bot'+_0x262527(0x511,0x55e)+_0x262527(0x37b,0x409)+'olid\x20'+_0x382bd8(0x285,0x1a3)+_0x262527(0x3d6,0x3b5)+_0x382bd8(0x18a,0x1cb)+_0x382bd8(0x162,0x24c)+_0x262527(0x474,0x399)+_0x382bd8(0x23a,0x23d)+'x;\x0a\x20\x20'+_0x262527(0x470,0x363)+'\x20\x20\x20.l'+_0x262527(0x44f,0x519)+_0x382bd8(0x323,0x323)+_0x382bd8(0x193,0x193)+':\x202em'+_0x382bd8(0x2cf,0x298)+_0x262527(0x393,0x43f)+_0x262527(0x315,0x399)+':\x208px'+_0x262527(0x407,0x401)+_0x262527(0x68a,0x581)+_0x262527(0x2de,0x3f3)+_0x382bd8(0x3e9,0x345)+_0x382bd8(0x134,0x161)+_0x262527(0x5e4,0x57d)+_0x262527(0x30a,0x3d3)+_0x382bd8(0x2cf,0x316)+_0x262527(0x33c,0x3da)+_0x382bd8(0x359,0x389)+'\x20\x20\x20\x20.'+'messa'+_0x382bd8(0x1b7,0x2bc)+_0x382bd8(0x1e4,0x26d)+'lay:\x20'+_0x382bd8(0x305,0x35f)+'\x20flex'+_0x262527(0x377,0x3ab)+'ction'+_0x382bd8(0x2a2,0x271)+_0x382bd8(0x339,0x2db)+_0x262527(0x505,0x533)+_0x382bd8(0x25d,0x281)+'\x20}\x0a\x20\x20'+_0x382bd8(0x307,0x239)+'ssage'+_0x262527(0x46d,0x414)+_0x382bd8(0x14f,0x1a1)+'paddi'+_0x262527(0x2d2,0x360)+_0x382bd8(0x231,0x196)+'6px;\x20'+'\x0a\x20\x20\x20\x20'+_0x262527(0x3f0,0x4d1)+_0x382bd8(0x34e,0x277)+_0x382bd8(0x360,0x280)+':\x2012p'+_0x382bd8(0x415,0x37f)+_0x382bd8(0x22b,0x1a1)+_0x382bd8(0x170,0x18d)+_0x382bd8(0x26e,0x25d)+_0x262527(0x4e7,0x41a)+_0x382bd8(0x1c1,0x1c2)+_0x262527(0x4ff,0x457)+'\x20.mes'+_0x262527(0x5ed,0x4d9)+_0x262527(0x497,0x523)+_0x262527(0x261,0x355)+_0x262527(0x5f1,0x4f8)+'ackgr'+'ound:'+_0x262527(0x4f8,0x3ff)+_0x382bd8(0x1ee,0x1ba)+_0x262527(0x3c6,0x3b5)+'\x20\x20ali'+_0x382bd8(0x324,0x374)+'lf:\x20f'+_0x262527(0x46c,0x43c)+_0x382bd8(0x37c,0x344)+_0x382bd8(0x100,0x1a1)+'borde'+'r-bot'+_0x382bd8(0x337,0x26c)+_0x382bd8(0x229,0x171)+(_0x382bd8(0x210,0x286)+_0x382bd8(0xfd,0x18f)+_0x262527(0x5e0,0x569)+_0x382bd8(0x1e7,0x170)+'\x20\x20\x20.m'+'essag'+_0x262527(0x396,0x428)+_0x262527(0x636,0x529)+'t\x20{\x20\x0a'+_0x262527(0x38f,0x394)+_0x382bd8(0x1ac,0x18a)+_0x382bd8(0x466,0x356)+_0x382bd8(0x37b,0x36f)+'e1e2e'+';\x20\x0a\x20\x20'+_0x262527(0x38d,0x426)+_0x382bd8(0x261,0x308)+_0x382bd8(0x97,0x15e)+_0x382bd8(0x168,0x253)+_0x382bd8(0x204,0x2d6)+_0x382bd8(0x13d,0x24d)+_0x262527(0x506,0x4f8)+_0x382bd8(0x265,0x165)+'-bott'+_0x382bd8(0x253,0x213)+_0x262527(0x407,0x469)+_0x262527(0x40d,0x3e9)+_0x382bd8(0x266,0x267)+_0x262527(0x460,0x3b5)+_0x382bd8(0x2ba,0x264)+_0x382bd8(0x25a,0x274)+_0x262527(0x559,0x4c1)+_0x262527(0x3e6,0x3b5)+_0x382bd8(0x1e4,0x2d7)+_0x262527(0x55f,0x4f3)+_0x382bd8(0x2fe,0x358)+_0x382bd8(0x79,0x182)+';\x0a\x20\x20\x20'+'\x20\x20\x20ma'+_0x382bd8(0x1a7,0x220)+_0x382bd8(0x303,0x307)+_0x262527(0x4bb,0x55f)+'\x0a\x20\x20\x20\x20'+_0x262527(0x40b,0x40e)+_0x382bd8(0x1d7,0x1ac)+_0x262527(0x5d4,0x4fa)+_0x262527(0x51a,0x4cf)+'\x0a\x20\x20\x20\x20'+_0x382bd8(0x28e,0x2de)+'der-t'+_0x382bd8(0x244,0x1f4)+_0x382bd8(0x105,0x194)+_0x262527(0x3a7,0x499)+_0x382bd8(0x237,0x2d3)+'\x20\x20\x20\x20\x20'+_0x262527(0x66e,0x56f)+_0x262527(0x51c,0x528)+_0x382bd8(0x16d,0x24e)+_0x382bd8(0x204,0x1a1)+_0x262527(0x3b8,0x370)+'size:'+_0x262527(0x510,0x4f0)+_0x262527(0x3eb,0x47b)+_0x382bd8(0x241,0x170)+_0x262527(0x470,0x36b)+_0x262527(0x47f,0x42e)+_0x262527(0x410,0x46f)+_0x262527(0x4ef,0x509)+_0x382bd8(0x32a,0x370)+'66f1;'+'\x20text'+_0x382bd8(0x435,0x365)+_0x382bd8(0x184,0x23e)+'n:\x20no'+_0x262527(0x3a6,0x466)+_0x382bd8(0x177,0x1c2)+_0x262527(0x442,0x4b8)+_0x262527(0x45c,0x46e)+_0x382bd8(0x328,0x2c0)+'lign:'+_0x382bd8(0x1a7,0x1cc)+'er;\x20p'+_0x262527(0x318,0x3b2)+'g:\x2040'+'px;\x20c'+_0x262527(0x44e,0x39a)+_0x262527(0x2cf,0x369)+_0x382bd8(0x2ad,0x1bb)+_0x382bd8(0x159,0x264)+_0x382bd8(0x338,0x310)+_0x382bd8(0x311,0x346)+_0x382bd8(0x2fd,0x245)+_0x382bd8(0x2b8,0x300)+_0x262527(0x43a,0x54b)+_0x262527(0x30b,0x375)+_0x262527(0x31b,0x39e)+'ding:'+_0x382bd8(0x1da,0x272)+_0x382bd8(0x284,0x34b)+_0x262527(0x289,0x39b)+_0x262527(0x607,0x52c)+_0x382bd8(0x414,0x341)+_0x262527(0x3c5,0x38d)+'e>\x0a</'+_0x382bd8(0x146,0x1b4)+'\x0a<bod'+_0x382bd8(0x208,0x1f7)+_0x262527(0x400,0x367)+'class'+'=\x22con'+_0x382bd8(0x400,0x36a)+_0x262527(0x4c8,0x3cb)+_0x262527(0x514,0x45d)+_0x382bd8(0x145,0x1b6)+_0x382bd8(0x1fe,0x160)+_0x262527(0x4de,0x54c)+'r\x22>\x0a\x20'+_0x382bd8(0x151,0x1a1)+_0x382bd8(0x1ae,0x174)+_0x382bd8(0x235,0x2df)+_0x262527(0x4b7,0x483)+_0x382bd8(0x2b5,0x20d)+_0x262527(0x349,0x44d)+_0x262527(0x463,0x3dc)+_0x262527(0x3e9,0x470)+'\x20\x20\x20\x20<'+_0x262527(0x560,0x51d)+_0x382bd8(0x149,0x1d0)+'\x22titl'+_0x262527(0x4aa,0x50e)+_0x262527(0x47b,0x556)+_0x262527(0x358,0x3b6)+_0x382bd8(0x1e8,0x1ea)+_0x382bd8(0x2e6,0x22c)+_0x382bd8(0x3e2,0x382)+_0x382bd8(0x2bf,0x1c1)+_0x262527(0x41a,0x3b5)+_0x262527(0x61c,0x555)+_0x382bd8(0x276,0x173)+_0x382bd8(0x13e,0x223)+'\x20clas'+_0x382bd8(0x21b,0x2fb)+_0x382bd8(0x1df,0x22d)+_0x262527(0x497,0x47d)+'=\x22mes'+'sages'+_0x382bd8(0x2db,0x2ae)+_0x382bd8(0x42e,0x36d)+'div\x20c'+_0x382bd8(0x26a,0x1d0)+_0x382bd8(0x278,0x2d5)+'ing\x22>'+_0x262527(0x444,0x493)+'ng\x20co'+_0x262527(0x587,0x477)+'ation'+_0x382bd8(0xbe,0x1d5)+'div>\x0a'+'\x20\x20\x20\x20<'+_0x382bd8(0x1d5,0x1c1)+_0x382bd8(0x2ab,0x1c2)+_0x262527(0x281,0x367)+_0x382bd8(0x321,0x2df)+_0x382bd8(0x1f7,0x1de)+_0x262527(0x2b6,0x3af)+_0x382bd8(0x234,0x1c2)+_0x262527(0x31d,0x371)+_0x262527(0x411,0x4e1)+_0x262527(0x61c,0x527)+'\x20href'+_0x382bd8(0x262,0x26b)+_0x262527(0x386,0x44d)+'k</a>'+_0x382bd8(0x230,0x1c2)+_0x262527(0x667,0x555)+_0x382bd8(0x3b6,0x2c7)+_0x382bd8(0x260,0x1c1)+_0x382bd8(0x3e4,0x385)+_0x262527(0x50f,0x4cc)+_0x262527(0x377,0x366)+_0x262527(0x438,0x547)+'tion\x20'+'esc(s'+')\x20{\x20v'+'ar\x20d\x20'+_0x382bd8(0x134,0x1b5)+_0x262527(0x4d1,0x3d0)+_0x262527(0x297,0x390)+_0x262527(0x466,0x502)+_0x382bd8(0x307,0x2c9)+_0x382bd8(0x28d,0x32b)+_0x382bd8(0x118,0x21f)+_0x382bd8(0x2fa,0x2cc)+'onten'+_0x382bd8(0x3b1,0x33e)+_0x382bd8(0x305,0x2c6)+_0x262527(0x480,0x4ef)+_0x262527(0x45c,0x55a)+_0x262527(0x283,0x35f)+_0x382bd8(0x22f,0x20e))+('\x20\x20\x20co'+_0x262527(0x493,0x3a0)+_0x262527(0x32a,0x3c4)+_0x382bd8(0x354,0x241))+_0x1fa92d+('\x27;\x0a\x20\x20'+'\x20\x20fet'+'ch(\x27/'+'api/s'+_0x262527(0x549,0x4ff)+_0x262527(0x65b,0x56d)+_0x262527(0x470,0x3c4)+_0x262527(0x403,0x35e)+'\x20\x20\x20\x20.'+_0x262527(0x4ba,0x45b)+_0x262527(0x527,0x574)+_0x262527(0x4cd,0x518)+_0x382bd8(0x236,0x210)+'\x20\x20\x20\x20\x20'+'\x20.the'+_0x262527(0x47f,0x49c)+'a\x20=>\x20'+_0x262527(0x3ec,0x3fb)+_0x262527(0x2bb,0x394)+_0x382bd8(0xb1,0x16f)+'data.'+_0x382bd8(0x14e,0x1e4)+'\x20data'+'.erro'+_0x262527(0x450,0x489)+_0x382bd8(0x235,0x1a1)+_0x382bd8(0x210,0x1a1)+_0x262527(0x3a7,0x46c)+_0x262527(0x546,0x551)+_0x382bd8(0x20e,0x31a)+'mentB'+_0x262527(0x53d,0x568)+_0x262527(0x379,0x48d)+_0x382bd8(0x16e,0x192)+_0x262527(0x45c,0x3aa)+'xtCon'+_0x382bd8(0x157,0x1e3)+'=\x20\x27Er'+_0x262527(0x377,0x374)+_0x382bd8(0x11b,0x1c2)+_0x262527(0x409,0x394)+_0x262527(0x3c0,0x42d)+_0x382bd8(0x1ca,0x214)+'getEl'+'ement'+_0x262527(0x33d,0x373)+_0x262527(0x442,0x4d0)+_0x382bd8(0x299,0x293)+').inn'+_0x382bd8(0xd9,0x1d4)+_0x382bd8(0x2db,0x1ef)+_0x262527(0x44b,0x367)+_0x382bd8(0x3ca,0x2df)+_0x262527(0x2da,0x35c)+_0x382bd8(0x24f,0x1a4)+_0x382bd8(0x23b,0x185)+_0x262527(0x439,0x491)+_0x382bd8(0x2e6,0x203)+'or\x20||'+_0x262527(0x4ff,0x492)+_0x382bd8(0x129,0x236)+_0x382bd8(0x2eb,0x31e)+'\x27)\x20+\x20'+_0x262527(0x4b0,0x481)+_0x382bd8(0x182,0x237)+_0x382bd8(0x1dc,0x1a1)+'\x20\x20\x20\x20\x20'+'retur'+_0x262527(0x393,0x40b)+_0x262527(0x3c6,0x394)+_0x262527(0x3e4,0x3a2)+'\x20\x20\x20\x20\x20'+'\x20docu'+'ment.'+_0x262527(0x468,0x43b)+_0x262527(0x3e9,0x3cd)+_0x262527(0x463,0x373)+_0x262527(0x2ee,0x3f2)+_0x382bd8(0x2d5,0x332)+'e\x27).t'+_0x262527(0x55a,0x44f)+_0x262527(0x40a,0x384)+_0x262527(0x52d,0x423)+'ta.ti'+_0x382bd8(0x8c,0x177)+_0x262527(0x293,0x394)+'\x20\x20\x20do'+_0x262527(0x59f,0x48f)+_0x382bd8(0x1aa,0x23c)+_0x382bd8(0x3b2,0x2d8)+_0x262527(0x379,0x3f4)+_0x382bd8(0x391,0x2f1)+_0x382bd8(0x2ef,0x22d)+'s\x27).i'+_0x262527(0x5c1,0x54e)+_0x382bd8(0x38e,0x2be)+_0x262527(0x463,0x56c)+_0x262527(0x46a,0x536)+_0x262527(0x411,0x410)+'\x20\x20\x20\x20\x20'+_0x262527(0x2cf,0x394)+_0x262527(0x59f,0x4d5)+_0x382bd8(0x302,0x20b)+_0x382bd8(0x2e1,0x2b2)+_0x262527(0x538,0x4e8)+_0x262527(0x4ac,0x4e7)+_0x262527(0x569,0x49a)+_0x382bd8(0x2ad,0x1b3)+_0x262527(0x2be,0x394)+'\x20\x20\x20\x20.'+_0x262527(0x456,0x482)+_0x382bd8(0x42a,0x338)+_0x382bd8(0x1a1,0x174)+'class'+_0x262527(0x43d,0x393)+_0x262527(0x526,0x44a)+_0x262527(0x3f1,0x443)+_0x262527(0x47f,0x4da)+_0x262527(0x4c4,0x530)+'>\x27\x20+\x20'+_0x382bd8(0x19a,0x292)+_0x382bd8(0x349,0x2b5)+_0x382bd8(0x388,0x314)+_0x382bd8(0x334,0x333)+_0x262527(0x4b5,0x4be)+'iv>\x27)'+_0x382bd8(0xc0,0x1c2)+_0x382bd8(0x2b5,0x1a1)+_0x382bd8(0x3cd,0x32e)+_0x262527(0x527,0x442)+_0x382bd8(0x217,0x186)+_0x382bd8(0x24c,0x2cf)+_0x262527(0x3ef,0x3b5)+_0x382bd8(0xde,0x1d6)+_0x382bd8(0x23d,0x183)+'\x20=>\x20{'+'\x0a\x20\x20\x20\x20'+_0x382bd8(0x7b,0x190)+'ocume'+_0x382bd8(0x224,0x263)+_0x262527(0x33b,0x425)+_0x262527(0x451,0x3ef)+_0x262527(0x481,0x471)+_0x382bd8(0x236,0x270)+'itle\x27'+_0x262527(0x5b3,0x51f)+_0x262527(0x60a,0x54a)+'ent\x20='+_0x382bd8(0x240,0x1b0)+'or\x27;\x0a'+_0x262527(0x3e5,0x394)+_0x262527(0x31d,0x356)+'cumen'+_0x262527(0x35c,0x42f)+_0x262527(0x59d,0x4cb)+_0x382bd8(0x2f3,0x201)+_0x262527(0x4ee,0x4e4)+'ssage'+_0x262527(0x3d0,0x38f)+_0x382bd8(0x36a,0x35b)+_0x262527(0x4dd,0x4b1)+_0x262527(0x440,0x50a)+_0x262527(0x4e5,0x4d8)+_0x382bd8(0x46a,0x36e)+_0x262527(0x4d2,0x4c0)+_0x262527(0x456,0x535)+'ed\x20to'+'\x20load'+_0x262527(0x43e,0x555)+_0x382bd8(0x2c5,0x224)+_0x382bd8(0x112,0x1a1)+_0x262527(0x4e2,0x427)+_0x382bd8(0x2f7,0x321)+_0x262527(0x30c,0x3f5)+_0x382bd8(0x289,0x28c)+'apeHt'+'ml(te'+'xt)\x20{'+'\x0a\x20\x20\x20\x20'+_0x382bd8(0x2e5,0x21a)+_0x382bd8(0x11b,0x1d9)+'v\x20=\x20d'+_0x262527(0x2cf,0x365)+_0x382bd8(0x217,0x238)+_0x262527(0x480,0x550)+'lemen'+_0x262527(0x3ba,0x411)+_0x262527(0x517,0x4f7)+_0x382bd8(0xa6,0x1a1)+_0x262527(0x381,0x41c)+_0x262527(0x4e1,0x4bf)+_0x382bd8(0x1de,0x251)+_0x382bd8(0x3f1,0x319)+_0x382bd8(0x27e,0x289)+_0x382bd8(0x19c,0x1a1)+_0x382bd8(0x68,0x175)+'rn\x20di'+_0x262527(0x534,0x4bb)+_0x382bd8(0xc3,0x1d4)+_0x382bd8(0x1ad,0x187)+('lace('+_0x262527(0x3a2,0x36e)+',\x20\x27<b'+_0x262527(0x3e0,0x487)+'\x0a\x20\x20\x20\x20'+_0x382bd8(0x303,0x341)+_0x262527(0x37f,0x361)+'pt>\x0a<'+_0x382bd8(0x1d2,0x24b)+'>\x0a</h'+_0x262527(0x44f,0x542)+'\x20\x20'));}function _0x24ecc5(_0x2870a0,_0x1e3603){return _0x40b5(_0x2870a0- -0x1fb,_0x1e3603);}const _0x4af7ac={};_0x4af7ac[_0x24ecc5(-0x5c,-0x75)+'Share'+_0x176460(0x6ed,0x631)+'s']=setupShareRoutes;function _0x40b5(_0x1c569e,_0x40b543){_0x1c569e=_0x1c569e-(0x44f+-0x21f2+0x1eb1);const _0xda0ffb=_0x1c56();let _0x235ae9=_0xda0ffb[_0x1c569e];return _0x235ae9;}export default _0x4af7ac;
1
+ (function(_0x457b74,_0x2521e6){function _0x7fe298(_0x1e43cf,_0x80e086){return _0x587c(_0x1e43cf-0x13a,_0x80e086);}function _0x153d7d(_0x19d62b,_0x39c8d8){return _0x587c(_0x19d62b- -0x338,_0x39c8d8);}const _0x535256=_0x457b74();while(!![]){try{const _0x51950c=-parseInt(_0x153d7d(-0x5b,-0xd0))/(0x1792+-0x165b+0xa*-0x1f)+parseInt(_0x153d7d(-0xa7,0x57))/(0x156+-0x700+0x16*0x42)*(-parseInt(_0x153d7d(-0x150,-0x119))/(-0x1a59+0xaa*-0x14+-0xac*-0x3b))+-parseInt(_0x7fe298(0x283,0x39c))/(-0x1dc+-0x1f*0xd+0x373*0x1)*(-parseInt(_0x7fe298(0x4a6,0x5ba))/(-0x6d7*0x1+-0x27*-0x1e+0x24a))+parseInt(_0x7fe298(0x4d4,0x568))/(0x65+-0x6c1+-0x331*-0x2)*(parseInt(_0x153d7d(-0x1dd,-0xf2))/(0x1*0xcc1+0x94d*0x2+-0x1f54))+parseInt(_0x153d7d(-0x107,-0x24b))/(0x1*-0xa84+0x2c1*-0x8+0x1a1*0x14)*(parseInt(_0x7fe298(0x2e6,0x329))/(0x1709+-0x1*0x1d39+0x639))+-parseInt(_0x7fe298(0x40b,0x43a))/(0x11*0x83+-0x1*-0x1c12+-0x24bb)+parseInt(_0x153d7d(-0xb7,-0x1f3))/(0x1f5e+-0x93*0x28+0x45*-0x1f);if(_0x51950c===_0x2521e6)break;else _0x535256['push'](_0x535256['shift']());}catch(_0x22c55a){_0x535256['push'](_0x535256['shift']());}}}(_0x2fd8,-0x1*0xdbac3+-0x67*0x3f21+-0x14*-0x29d13));const _0x2f7c38=(function(){function _0x4fe0e0(_0x2cf576,_0x3641ee){return _0x587c(_0x2cf576- -0xca,_0x3641ee);}const _0x2e0880={'sWxFC':function(_0x5d7c7c,_0x4aa56f){return _0x5d7c7c===_0x4aa56f;},'mchQL':'HGpES','wnYgK':function(_0x1fcd8b,_0x254924){return _0x1fcd8b===_0x254924;},'TYzGC':_0x4fe0e0(0x1e8,0x27b),'MTEhE':function(_0x6e1bfd,_0x4385d4,_0x3f98e4,_0x43777c){return _0x6e1bfd(_0x4385d4,_0x3f98e4,_0x43777c);},'ZJjME':_0x4fe0e0(0x85,0x198)+_0x3dc7fb(0x289,0x339)+_0x4fe0e0(0x2dc,0x3bc)+_0x4fe0e0(0x1f7,0x2b0),'EbrLB':'ZiRuH','vQTAI':_0x4fe0e0(0x2ab,0x193)};function _0x3dc7fb(_0x817f32,_0x47c06d){return _0x587c(_0x47c06d-0xb,_0x817f32);}let _0x2f3059=!![];return function(_0x2041df,_0x15a80f){const _0x191063={'gDBfH':function(_0x3403fe,_0x14de5a,_0x1709a4,_0x47e147){function _0x51ce18(_0x293a62,_0x13173e){return _0x587c(_0x13173e-0x117,_0x293a62);}return _0x2e0880[_0x51ce18(0x3b4,0x2cb)](_0x3403fe,_0x14de5a,_0x1709a4,_0x47e147);},'DmFyY':_0x358d48(0x348,0x2a7),'YcNUt':_0x2e0880['ZJjME']};function _0x358d48(_0x509019,_0x57ba13){return _0x3dc7fb(_0x509019,_0x57ba13-0xa7);}function _0x24a3e6(_0x2c2724,_0x3ad81a){return _0x3dc7fb(_0x3ad81a,_0x2c2724-0x16b);}if(_0x2e0880[_0x24a3e6(0x468,0x412)](_0x2e0880[_0x358d48(0x189,0x2ab)],_0x2e0880['vQTAI']))return _0x738e9f[_0x24a3e6(0x434,0x35d)+'quest'](_0x3ef039,_0x24a3e6(0x479,0x502)+_0x24a3e6(0x31a,0x1fe)+'rray\x20'+_0x24a3e6(0x2f4,0x2bd)+_0x24a3e6(0x494,0x35f));else{const _0x585bc8=_0x2f3059?function(){function _0x3b682a(_0x106b72,_0xab5f16){return _0x358d48(_0xab5f16,_0x106b72- -0x1d5);}function _0x5a51f1(_0x1ab637,_0x5f4e05){return _0x358d48(_0x1ab637,_0x5f4e05- -0x1a);}if(_0x2e0880[_0x5a51f1(0x2ca,0x38a)](_0x2e0880[_0x3b682a(0x8e,0x142)],_0x2e0880[_0x5a51f1(0x124,0x249)])){if(_0x15a80f){if(_0x2e0880[_0x3b682a(0x134,0x1e3)](_0x2e0880[_0x5a51f1(0x233,0x21a)],_0x2e0880[_0x5a51f1(0x2aa,0x21a)])){const _0x5220b7=_0x15a80f[_0x3b682a(0x2a6,0x3a7)](_0x2041df,arguments);return _0x15a80f=null,_0x5220b7;}else return _0xb486a5[_0x5a51f1(0x421,0x356)+_0x3b682a(0x202,0x269)](_0x4e814a,'Too\x20m'+'any\x20m'+'essag'+_0x5a51f1(0x28b,0x354)+_0x5a51f1(0x3a2,0x434)+_0x550861+')');}}else return _0x191063[_0x5a51f1(0x1d6,0x2e8)](_0x5c3229,_0x191063[_0x3b682a(0x1af,0x128)],_0x191063[_0x3b682a(0x13c,0xfa)],_0x7ebb7e['messa'+'ge']),_0x1868e1[_0x5a51f1(0x3ea,0x3e8)+_0x3b682a(0x14a,0x287)+'r'](_0x58a0b9,_0x3b682a(0x256,0x2e6)+'d\x20to\x20'+_0x3b682a(0x205,0xcb)+'hare');}:function(){};return _0x2f3059=![],_0x585bc8;}};}());function _0x32d0ef(_0x4a05e8,_0x49d368){return _0x587c(_0x4a05e8-0x11,_0x49d368);}const _0x2fc43f=_0x2f7c38(this,function(){const _0x5a325f={};function _0x29982e(_0x6ff694,_0x2c5479){return _0x587c(_0x2c5479-0x218,_0x6ff694);}function _0x154253(_0x2f7174,_0x1bc5bd){return _0x587c(_0x2f7174-0x2e1,_0x1bc5bd);}_0x5a325f['SJlIX']=_0x154253(0x4ee,0x5f9)+_0x154253(0x499,0x486)+'+$';const _0x1f9519=_0x5a325f;return _0x2fc43f[_0x154253(0x533,0x61f)+'ing']()[_0x29982e(0x4e2,0x53c)+'h'](_0x1f9519[_0x29982e(0x344,0x3bb)])['toStr'+_0x154253(0x59c,0x5d0)]()[_0x29982e(0x461,0x363)+_0x29982e(0x3a8,0x410)+'r'](_0x2fc43f)[_0x29982e(0x452,0x53c)+'h'](_0x29982e(0x30d,0x425)+_0x29982e(0x505,0x3d0)+'+$');});_0x2fc43f();import{randomUUID}from'crypto';function _0x2fd8(){const _0xd54dad=['rgKxO','sans-','clczi','ound:','n(\x27\x27)','\x20\x20tex','umn;\x20','ktWZT','-deco','iwguR','ument','th,\x20i','reId','subst','83362arxguJ','iv>\x27)','\x20\x20\x20\x20<','ocume','t-siz','\x20\x20.ca','YvFfV','g:\x2040','nitia','6px;\x20','m\x27)\x0a\x20','ized','\x27mess','lace(','n;\x0a\x20\x20','ight-','nown\x20','\x20\x20\x20do','20px;','notFo','or\x20||','extCo','type\x20','top:\x20','v>\x27;\x0a','ame=\x22','heade','parse',')\x20{\x20v','ia\x20<a','\x0a<!DO','\x204px;','emFon','hDDbz','FcQHM','g...<','get','12px;','\x20=\x20da',':\x20100','!==\x20\x27','\x20\x20\x20.t','ing','es\x20(m','now','badRe','ptHaY','div\x20c','or:','borde','ages\x0a','mkdir','e>\x0a</','r\x20=>\x20','\x20\x20<st','r-bot','MOBRM','body','max-w','map(m','JyNak','0\x22>\x0a\x20','Uplin','v>\x0a\x20\x20','1974310bcQjyt','DmFyY','r)\x20{\x0a','eTitl','om-le','.crea',').tex','eader','mentB','Title','rsati','s\x22\x20id','1657174rCXXDC','444;\x20','FItXp',',\x20\x27<b','x;\x0a\x20\x20','(m.te',':\x202em','IWGkq','esc(s','tch(e','data.','\x20\x20\x20.h','idth=','NTYaY','\x20.joi','#0f0f','onten','value','getEl','ml\x20la','ta.ti','sWxFC','66f1;','istan','0px;\x0a','llILs','versa','/\x5cn/g','\x27)\x20+\x20','>\x0a</h','mYwIZ','{\x20\x0a\x20\x20','tml>\x0a','<div\x20','.type','ntent','zpswa','or:\x20#','messa','font-','essag','addin','info','\x20colo','lign:','e:\x20','hiCxH','rMwQw','ng\x20co','join','\x20not\x20','lemen','ng=\x22e','t\x20=\x20s','00px;','ZnmvP','gmKqX','\x20#ef4','/styl','olid\x20','ne;\x20}','.erro','\x20\x27Unk','=\x22mes','t\x20=\x20t','red','\x0a\x20\x20\x20\x20','der-r','BBFQm','s\x27).i','30px;','searc','quest','n\x22>\x0a<','>\x0a\x20\x20<','get\x20s','taine','x-siz','\x20\x20ali','MJFem','radiu','e]\x20Ge','}\x0a\x20\x20\x20','ext-a','=\x22/\x22>','yACtc','}\x0a\x20\x20<','>\x0a<ht','\x20\x20\x20ma','expir','gify','2px\x201','\x22>\x0a\x20\x20','.json','size:','zABoA','UUThS','yAIeN','esAt','QxaNL','ort\x22\x20','\x0a\x20\x20<s','t,\x20\x27S','t;\x0a\x20\x20','nt.cr','areId','eated','tSMzt','Loadi','ar\x20d\x20','{\x0a\x20\x20\x20','ement','olor:','nt.ge','l-sca','serve','CYHsx','y>\x0a\x20\x20','qxZHY','ZZLKU','pple-','min-h','der-t','op:\x201',';\x20mar','File','8;\x20}\x0a','ogo\x20{','v.inn',';\x20}\x0a\x20','tom:\x20','api/s','=\x22sha','viewC',':\x20cen','v\x20cla','ter\x20{','lf:\x20f','tom-r','\x20\x20\x20\x20a','sive','F-8\x22>','m,\x20Bl','1371785WGpSTX','docum','cript',':\x20#63','sage\x20','\x20cent','groun','isArr','MkqGz','WttEa','\x20\x20fet','=\x22log','div>\x0a','Faile','lengt','readF','teEle','1px\x20s','a\x20=>\x20','nzcMt','DOTbm','\x20\x20\x20\x20\x20','\x20=>\x20\x27','gap:\x20','ZZZPa','s:\x204p','er(m\x20','t-ali','head>','then(','tElem','uINUo','\x20{\x20ma','ss=\x22e','\x20a\x20{\x20','\x0a<bod','\x27;\x0a\x20\x20','\x20\x20\x20<d','egoe\x20','or\x22>\x27','on\x20-\x20','\x200.9e','CQfiJ','rgin-','escap','xt)\x20{','1212IiRhcC','gin-b','ax\x20','});\x0a\x20','ff;\x0a\x20','ding-','\x20shar','sSzyV','nNQOk','>Fail','strin','px\x20so','t\x20err','\x20retu','ft-ra','/div>','0;\x20pa','\x20.mes','rHTML','888;\x20','v\x20=\x20d','ding\x20','sages','/:sha','gfuuI','\x20.foo','reTit','n(dat',':\x208px','YluBD','ing:\x20','enter','textC','sJSya','biuZX','pt>\x0a<','t(\x27di','\x20}\x0a\x20\x20','MgNzk','setup','\x22load','ass=\x22','\x20data','ation','bmoiX','k</a>','utf8','apply','if\x20(!','d\x20Con','\x20\x20mar','e\x22\x20id','d\x20=\x20\x27','vh;\x0a\x20','r>\x27);','erHTM','\x20marg','gn-se','\x20div.','-dire',':\x200;\x20','=\x22err','famil','st\x20di','harse','user','\x20=>\x20{','4Vgabye','DDrKd','const','ment.',').inn','des','[Shar','dCZVk','k</di','v\x27);\x0a','write','.filt','\x20docu','r\x20{\x20t','ges\x20{','y:\x20-a','r\x22>\x0a\x20','ulwLA','52199pHAVSF','YcpAr','adius','eight',';\x0a\x20\x20\x20','ding:','rrsId','ById(','66;\x0a\x20','ratio','px;\x0a\x20',');\x20d.','WtEAq','-star','itle\x20','ssage','tent\x20','333;\x0a','\x20\x20con','viewp','\x20<div','=>\x20m.','etEle','{\x20tex','SDRAW','\x27\x20+\x20m','e\x27).t','repla','\x20\x27<di','d\x20to\x20','d(\x27me','or\x27;\x0a','/api/','param','devic','requi','ooter','n())\x0a','\x20\x20\x20.f','TYzGC','cumen','user\x20','gn:\x20c','dius:','d)\x0a\x20\x20','eYZyP','nnerH','\x20\x20pad','idth:','e]\x20Cr',':\x20#88','\x20+\x20es','\x20link','\x20\x20}\x0a\x20','\x2085%;','le\x22>L','tle;\x0a','ction','ng:\x201','er;\x20p','text','ng:\x202','flex;','ter;\x20','amvSI','>\x27\x20+\x20','e1e2e','px;\x20c','.tmp-','c(dat','ent\x20=','rn\x20di','SJlIX','ges\x20a',';\x20pad','\x20\x20\x20.m','.cont','uLWhQ','tamp','yle>\x0a','\x20.the','9PtziHB','\x20+\x20\x27\x22','CfbnW','/scri','t\x20{\x20\x0a','mchQL','Conve','nvers','MTEhE','PXnEA','e.ass','MgHSe',')+)+)','-size','JeMQy','\x27shar','...</','\x20clas','Route','tion\x20','>\x0a\x20\x20\x20','L\x20=\x20\x27','valid','Id(\x27s','=\x20\x27Er','tant','hare/','self:','\x20\x20\x20\x20}','ages\x27','gin:\x20','oIBYc','ours','paddi','ottom','assis','renam','cAZVa','t.get','dding','\x20{\x20bo','urn\x20d','eta\x20n','\x27</di','=\x20doc','xtCon','\x22titl','cSyst','lid\x20#','entBy','apeHt','e/:sh','CTYPE','conte','/body','hareI','ment(','eHtml','hareT','-bott','57ZyIGBZ','d:\x20#1','lay:\x20','=\x22con','ml(te','ing\x22>','Eleme','color','o\x22>🛰️\x20','r:\x20#f','QPbIj','EQchS','fhVot','error','ror\x27;','th:\x207','ructo','EbrLB','order','ckgro','r.jso','share','\x20#636','serif','\x20font','iv\x20cl','und:\x20','r-box','\x20\x20\x20fu','\x20disp','ainer','nt=\x22w','any\x20m','\x20<tit','ch(\x27/','nd;\x0a\x20','lass=','(((.+','found','e-wid','\x2020px','\x20\x20\x20\x20*','oadin','type','</div','in:\x200','s=\x22me','\x27).te','t=\x22UT',';\x20\x0a\x20\x20','tle>\x0a','align','und','2em;\x20',':\x2012p','ed\x20to','GDeeu','ok\x20||','n:\x20no','WPtOp','hare','\x20{\x20\x0a\x20','\x20\x20\x20\x20b','ring','\x20\x20\x20})','e\x20sha','eta\x20c','ared\x20','\x20\x20\x20ba','vZeMv','ntByI','ext;\x0a','text-','13692424yBNtwv','eateE','\x27div\x27','>\x27;\x0a\x20','\x0a\x20\x20<m','a.err','\x2040px','UZufI','\x20auto','red\x20v','YPdgT','kicnJ','creat','IKAQC','nctio','r:\x20#6','\x20back','xt)\x20+','\x20\x27Err','eate\x20','inkMa','sage.','\x20\x20\x20\x20d','nst\x20s','#333;','lign-','6f1;\x20','\x20text','pietL','\x20href','retur','gDBfH','/crea','toStr','le=1.','yId(\x27','\x20has\x20','n\x20esc','wnYgK','BECPD',';\x20ret',':\x20col','TML\x20=','\x20flex','/shar','\x20body','YcNUt','\x20load','=\x22foo','\x20\x20\x20.l','{\x20fon','ter\x22>','times','\x20\x20bor','itle\x27','ile','syste','\x20\x20\x20\x20.','ount','.mess','rErro','le>Sh','\x20\x20Sha','\x20func','inclu','\x200\x2030','UI\x27,\x20','m;\x0a\x20\x20','ent.g','recur','\x20\x20.me','send','x-wid',':\x2020p','tCont','unlin','lex-e','.inne',';\x20col','Share','171798MagJPD','class'];_0x2fd8=function(){return _0xd54dad;};return _0x2fd8();}import _0x3c165a from'fs/promises';import _0x12b772 from'path';import{log}from'./utils.js';function _0x587c(_0x1e6196,_0x286ffd){_0x1e6196=_0x1e6196-(0x1d3e+-0x1*0x485+0x35a*-0x7);const _0x5690ff=_0x2fd8();let _0x23c53e=_0x5690ff[_0x1e6196];return _0x23c53e;}import{escapeHtml,escapeForJS}from'../utils/html-escape.js';import{sanitizeShareId,parseNumericParam}from'../utils/id-sanitize.js';import{sendSuccess,sendError}from'../utils/response.js';import{errors}from'../utils/errors.js';import{strictLimiter}from'./middleware.js';const DEFAULT_EXPIRY_HOURS=-0x1038+0x1de2+-0xd02;function _0x1c4abc(_0x4ae15f,_0x2c3589){return _0x587c(_0x2c3589- -0x289,_0x4ae15f);}const MIN_EXPIRY_HOURS=0x2d*-0x70+-0x32a+0x16db,MAX_EXPIRY_HOURS=0x7*-0x218+0x851*0x1+0x288f,MAX_MESSAGE_TEXT_LENGTH=-0x1*-0x47ec+0x3ab1+-0x5b8d,MAX_MESSAGES_PER_SHARE=-0x3*-0x806+-0x216b+-0xb*-0x107;function sanitizeMessageText(_0x2f2a42){const _0x346d58={'JyNak':function(_0x3560a5,_0xcb3cba){return _0x3560a5(_0xcb3cba);},'amvSI':function(_0x414920,_0x5d3b0c){return _0x414920!==_0x5d3b0c;},'ZZZPa':_0x33b0df(0x1f0,0x1c1)+'g','uLWhQ':function(_0x402905,_0xde2d77){return _0x402905===_0xde2d77;},'PXnEA':_0x5395d(0x584,0x4e0),'zBMaQ':_0x33b0df(-0x41,-0x14f)};if(!_0x2f2a42||_0x346d58[_0x5395d(0x3a0,0x461)](typeof _0x2f2a42,_0x346d58[_0x5395d(0x589,0x4a8)])){if(_0x346d58[_0x5395d(0x3ad,0x414)](_0x346d58[_0x5395d(0x3ba,0x2bb)],_0x346d58['zBMaQ'])){const _0x310bb9=_0x346d58[_0x5395d(0x4d2,0x4d7)](_0x18a04b,_0x40fdfa[_0x33b0df(-0x3e,-0x129)+'ce'](/[^a-zA-Z0-9]/g,'')[_0x5395d(0x495,0x4bf)+_0x5395d(0x42c,0x509)](-0x152+-0x1609+-0x175b*-0x1,-0x9ae+0x43e+-0xea*-0x6));return _0x5395d(0x4b4,0x5cc)+_0x33b0df(0x2c,0x8e)+'\x20html'+_0x33b0df(0x180,0x53)+_0x5395d(0x4f5,0x5a1)+_0x5395d(0x516,0x575)+_0x33b0df(0x172,0x89)+_0x33b0df(0x1d4,0x174)+'\x0a\x20\x20<m'+_0x5395d(0x42f,0x49f)+_0x5395d(0x34b,0x2ce)+_0x33b0df(0x64,0x2e)+_0x5395d(0x56f,0x493)+_0x33b0df(0x81,-0xab)+_0x5395d(0x3db,0x3d7)+_0x5395d(0x4af,0x3fc)+_0x33b0df(-0x46,0x9b)+_0x33b0df(0x18d,0x1c0)+_0x33b0df(0x2d,0x100)+'nt=\x22w'+'idth='+_0x5395d(0x382,0x2a4)+_0x5395d(0x414,0x338)+_0x5395d(0x493,0x48e)+_0x5395d(0x49e,0x418)+_0x33b0df(0x19b,0x85)+_0x5395d(0x458,0x3b8)+_0x33b0df(0x11a,0x6b)+_0x33b0df(0x55,-0xd1)+_0x33b0df(0xba,0x63)+_0x33b0df(0x77,0x17)+_0x33b0df(-0x2,-0xba)+_0x33b0df(0x127,0x259)+_0x33b0df(0x1e0,0x169)+_0x33b0df(0x11b,0x238)+'k</ti'+_0x33b0df(0x66,0x15e)+_0x5395d(0x4cc,0x56c)+_0x33b0df(-0xa,-0x59)+_0x33b0df(0x5d,-0xba)+_0x33b0df(0x20,0x7c)+'x-siz'+_0x33b0df(0x204,0x326)+'borde'+_0x33b0df(0x4f,-0x1e)+_0x33b0df(0x1a5,0x112)+'gin:\x20'+'0;\x20pa'+_0x33b0df(0x1f,-0xdb)+_0x5395d(0x5db,0x4f9)+_0x33b0df(0x17b,0x2af)+'\x20body'+_0x5395d(0x42a,0x4c1)+_0x5395d(0x586,0x67b)+_0x5395d(0x509,0x4a1)+_0x33b0df(-0x70,-0x180)+'y:\x20-a'+_0x5395d(0x55a,0x687)+'syste'+_0x5395d(0x570,0x53c)+_0x33b0df(0x91,0x10c)+_0x5395d(0x3e0,0x3e6)+_0x5395d(0x4b6,0x4ce)+_0x5395d(0x548,0x62e)+_0x5395d(0x597,0x4f3)+_0x5395d(0x478,0x5aa)+_0x33b0df(0xd0,0xac)+'serif'+_0x33b0df(-0x55,0xd3)+_0x5395d(0x431,0x37d)+_0x5395d(0x400,0x470)+_0x5395d(0x407,0x389)+_0x33b0df(0x138,0x189)+'1a;\x20\x0a'+_0x5395d(0x586,0x471)+_0x33b0df(0x154,0x1e1)+_0x33b0df(0x3d,-0xfd)+_0x33b0df(0x1ea,0x13e)+_0x5395d(0x586,0x5d2)+_0x5395d(0x55b,0x4ee)+_0x5395d(0x363,0x251)+_0x5395d(0x4bd,0x5a3)+_0x5395d(0x5d4,0x645)+'\x20\x20\x20\x20\x20'+_0x33b0df(0x19,0x97)+_0x5395d(0x39d,0x49b)+_0x33b0df(0x141,0x1d3)+_0x33b0df(0x14,0x113)+_0x33b0df(0x16b,0x1ed)+_0x5395d(0x3ac,0x485)+_0x5395d(0x40b,0x405)+_0x5395d(0x591,0x489)+_0x5395d(0x47e,0x381)+_0x33b0df(0x43,0x171)+'00px;'+'\x20marg'+_0x33b0df(0x61,0x136)+'\x20auto'+_0x33b0df(0x1aa,0x22c)+_0x5395d(0x4ed,0x452)+'eader'+_0x33b0df(0x71,0x19d)+'\x20\x20\x20\x20\x20'+_0x33b0df(0x7c,-0x63)+_0x33b0df(0x67,0xed)+':\x20cen'+_0x33b0df(-0x1a,0x5b)+_0x33b0df(0x16b,0x37)+_0x5395d(0x38f,0x343)+_0x33b0df(-0x54,0x9a)+_0x5395d(0x415,0x37e)+_0x5395d(0x477,0x494)+_0x5395d(0x36a,0x337)+'\x20\x20\x20\x20\x20'+_0x33b0df(0x10e,0x19c)+_0x33b0df(0x114,0x8f)+_0x33b0df(0x1ab,0xa8)+'1px\x20s'+_0x5395d(0x51d,0x417)+_0x5395d(0x44e,0x3f1)+_0x33b0df(0x16b,0x19b)+_0x5395d(0x5d1,0x6b7)+_0x33b0df(0x1e7,0x255)+'ottom'+_0x5395d(0x47f,0x4a1)+_0x5395d(0x4e6,0x4dd)+_0x5395d(0x395,0x429)+_0x33b0df(0xae,0x84)+'ogo\x20{'+'\x20font'+_0x5395d(0x3be,0x2dd)+_0x33b0df(0x12f,0x199)+_0x33b0df(0x1a5,0x20a)+_0x5395d(0x5a0,0x669)+_0x5395d(0x3d3,0x3e9)+_0x33b0df(0x202,0x131)+_0x5395d(0x563,0x565)+_0x5395d(0x4bf,0x4c4)+'itle\x20'+_0x5395d(0x468,0x406)+_0x33b0df(0xe1,0x174)+'e:\x201.'+_0x5395d(0x422,0x3ae)+_0x33b0df(0x3b,0x10)+':\x20#88'+_0x33b0df(0x1a7,0x281)+_0x33b0df(0xb6,0x92)+_0x5395d(0x508,0x51d)+_0x5395d(0x35c,0x2fd)+_0x33b0df(0x51,-0x1d)+'lay:\x20'+_0x5395d(0x39e,0x4e4)+_0x5395d(0x461,0x35b)+_0x5395d(0x5da,0x575)+'ction'+':\x20col'+_0x5395d(0x48e,0x457)+'gap:\x20'+_0x5395d(0x4bb,0x575)+'\x20}\x0a\x20\x20'+_0x33b0df(0xc3,0x1d0)+'ssage'+_0x5395d(0x42a,0x4f6)+_0x33b0df(0x1cd,0x213)+_0x5395d(0x3d2,0x47f)+_0x5395d(0x39a,0x2af)+_0x33b0df(0x184,0x21b)+_0x33b0df(0xe6,0x70)+_0x33b0df(0x16b,0xdf)+_0x5395d(0x46b,0x3be)+_0x5395d(0x525,0x5b0)+'adius'+_0x33b0df(0x6a,0x99)+'x;\x20\x0a\x20'+_0x33b0df(0x1cd,0x120)+'max-w'+_0x5395d(0x390,0x320)+_0x5395d(0x396,0x495)+_0x33b0df(0x16b,0x2c)+_0x5395d(0x534,0x65b)+_0x33b0df(0x1f7,0x222)+_0x5395d(0x44b,0x3e3)+_0x5395d(0x389,0x4c2)+_0x5395d(0x501,0x5ce)+'\x20\x20\x20\x20b'+'ackgr'+_0x5395d(0x48b,0x3c5)+'\x20#636'+'6f1;\x20'+_0x5395d(0x524,0x496)+_0x5395d(0x530,0x458)+_0x5395d(0x5d8,0x48e)+_0x5395d(0x56b,0x45e)+'lex-e'+'nd;\x0a\x20'+_0x5395d(0x586,0x641)+'borde'+_0x33b0df(0x114,0x96)+_0x33b0df(0x1b3,0xaa)+_0x5395d(0x4a5,0x43f)+(_0x33b0df(0x179,0x11f)+'s:\x204p'+_0x5395d(0x4e6,0x3fa)+_0x33b0df(-0x24,0xfc)+_0x5395d(0x3ab,0x459)+_0x33b0df(0x151,0x1d3)+'e.ass'+_0x5395d(0x4f9,0x406)+_0x5395d(0x3b5,0x351)+_0x33b0df(0x1cd,0xf9)+_0x33b0df(0x8d,0x1a9)+_0x5395d(0x577,0x541)+_0x5395d(0x3ee,0x396)+_0x33b0df(-0x17,-0x74)+_0x33b0df(0x65,0x179)+'\x20\x20\x20\x20a'+'lign-'+_0x5395d(0x3cc,0x4f9)+_0x33b0df(0xa8,0x77)+'-star'+_0x33b0df(0x190,0x28e)+'\x20\x20\x20\x20b'+_0x33b0df(0x46,0xb0)+'-bott'+'om-le'+_0x5395d(0x5ad,0x6c6)+_0x33b0df(-0x2e,0x9f)+'\x204px;'+_0x5395d(0x524,0x47c)+'}\x0a\x20\x20\x20'+_0x5395d(0x5b8,0x519)+'ter\x20{'+'\x0a\x20\x20\x20\x20'+_0x33b0df(0xd4,0x20f)+_0x5395d(0x58c,0x5db)+'gn:\x20c'+_0x33b0df(0x205,0x34e)+_0x5395d(0x364,0x2bd)+_0x33b0df(0x181,0x1af)+_0x33b0df(0x1e3,0x2a7)+'top:\x20'+_0x33b0df(0x16f,0x41)+_0x33b0df(0x16b,0x25d)+_0x33b0df(-0x2a,-0xb4)+_0x5395d(0x5a4,0x5cb)+_0x5395d(0x4ad,0x5c2)+_0x33b0df(0xef,0x10)+'\x0a\x20\x20\x20\x20'+'\x20\x20bor'+_0x33b0df(0x1a3,0x13f)+_0x33b0df(0x1a4,0x17b)+_0x33b0df(0x1f1,0xd2)+_0x5395d(0x3e1,0x343)+_0x5395d(0x371,0x405)+_0x33b0df(0x1cd,0x229)+_0x33b0df(0x154,0x291)+_0x5395d(0x445,0x533)+_0x33b0df(-0x51,0xd0)+_0x33b0df(0x1cd,0x2c5)+_0x33b0df(0x150,0x1d6)+_0x33b0df(0x187,0x2b7)+_0x33b0df(0x1e1,0x150)+_0x33b0df(0xc0,-0x61)+_0x5395d(0x395,0x462)+'\x20\x20\x20.f'+'ooter'+_0x33b0df(0x1da,0xe6)+_0x5395d(0x3f4,0x518)+_0x33b0df(0x1bb,0x224)+'66f1;'+_0x5395d(0x451,0x3fd)+_0x5395d(0x490,0x540)+'ratio'+_0x33b0df(0x6e,0x17d)+_0x5395d(0x51e,0x609)+_0x5395d(0x524,0x5fd)+_0x5395d(0x51f,0x564)+_0x33b0df(-0x5e,-0x13a)+_0x5395d(0x535,0x550)+_0x33b0df(0x155,0x161)+_0x5395d(0x576,0x4e1)+_0x33b0df(-0x1e,0x65)+_0x5395d(0x50b,0x638)+_0x33b0df(0xe4,0x175)+'px;\x20c'+_0x5395d(0x552,0x5c6)+'\x20#ef4'+_0x5395d(0x4e3,0x4b7)+_0x33b0df(0x17b,0xea)+'\x20.loa'+_0x5395d(0x5b4,0x4d3)+_0x5395d(0x377,0x2f3)+'t-ali'+_0x33b0df(-0x2f,-0x134)+_0x33b0df(0x205,0x1a9)+_0x5395d(0x3aa,0x403)+_0x33b0df(-0x54,0x96)+_0x33b0df(0x83,-0x50)+_0x5395d(0x484,0x4ca)+_0x33b0df(0x14e,0x25a)+_0x33b0df(0x1f9,0x1ed)+_0x5395d(0x538,0x52f)+_0x33b0df(0x163,0x22b)+'e>\x0a</'+_0x5395d(0x58d,0x6d4)+_0x33b0df(0x1db,0x141)+_0x5395d(0x557,0x5e8)+_0x33b0df(0x14a,0x242)+_0x33b0df(0xce,0x11f)+_0x33b0df(0x37,0x47)+_0x5395d(0x52e,0x626)+'r\x22>\x0a\x20'+_0x33b0df(0x1dd,0x215)+_0x33b0df(0x4d,0x167)+_0x5395d(0x5c8,0x6f1)+'heade'+_0x5395d(0x35e,0x284)+_0x5395d(0x586,0x668)+_0x33b0df(0x14a,0x2a)+'class'+'=\x22log'+'o\x22>🛰️\x20'+'Uplin'+_0x33b0df(-0x63,0x3f)+'v>\x0a\x20\x20'+_0x33b0df(0xdf,0xca)+_0x5395d(0x4c5,0x3aa)+_0x33b0df(0x58,0x7a)+_0x5395d(0x3df,0x478)+_0x5395d(0x5d2,0x69b)+_0x5395d(0x566,0x4af)+_0x5395d(0x5b9,0x499)+_0x5395d(0x397,0x4ca)+_0x33b0df(0x5e,-0xca)+_0x33b0df(0x100,0x20d)+_0x33b0df(0x1f5,0x222)+_0x33b0df(0x16b,0xa7)+_0x33b0df(0x60,-0xdc)+_0x33b0df(0xc,0x125)+_0x5395d(0x374,0x434)+_0x33b0df(0x9,-0x2e)+_0x33b0df(0x62,0x18a)+_0x33b0df(-0x4a,-0x12f)+_0x33b0df(0x128,0x1ed)+_0x33b0df(0x168,0x218)+_0x33b0df(0x1fc,0x33f)+_0x5395d(0x53e,0x46a)+'\x20\x20\x20\x20<'+'div\x20c'+_0x5395d(0x411,0x432)+_0x33b0df(0x20e,0x14d)+_0x5395d(0x3f2,0x4e2)+_0x5395d(0x54e,0x614)+_0x33b0df(0x159,0x1a3)+_0x5395d(0x3b8,0x3f1)+_0x33b0df(0x211,0x27d)+_0x33b0df(0x8,0x43)+_0x33b0df(0x1c4,0xcf)+'\x20\x20\x20\x20<'+_0x5395d(0x5ae,0x5c1)+_0x5395d(0x524,0x48d)+'<div\x20'+_0x5395d(0x487,0x45c)+_0x5395d(0x466,0x3c7)+_0x5395d(0x469,0x536)+'\x0a\x20\x20\x20\x20'+_0x5395d(0x474,0x3d8)+'red\x20v'+_0x5395d(0x4b3,0x483)+_0x33b0df(0x9a,0x12d)+_0x5395d(0x536,0x5cb)+_0x33b0df(0x11b,0x1a4)+'k</a>'+_0x33b0df(0x16b,0xba)+_0x33b0df(0x60,-0x6)+_0x33b0df(0x173,0x149)+'/div>'+_0x5395d(0x547,0x5b1)+_0x5395d(0x573,0x67c)+_0x33b0df(0xc,-0x30)+_0x33b0df(0xbc,0xc6)+_0x5395d(0x3c4,0x473)+_0x5395d(0x4ea,0x4d4)+_0x5395d(0x4b2,0x5cc)+_0x33b0df(0x196,0x132)+_0x5395d(0x3dd,0x2a5)+_0x33b0df(0xd9,0x156)+_0x5395d(0x4db,0x471)+_0x33b0df(0x1c8,0x27f)+'ment('+_0x5395d(0x438,0x530)+_0x5395d(0x36b,0x2c8)+_0x5395d(0x5bf,0x590)+_0x5395d(0x4f2,0x545)+_0x33b0df(0x15e,0x116)+_0x33b0df(0xa5,-0x81)+_0x33b0df(0x21,0x138)+_0x5395d(0x483,0x468)+_0x5395d(0x5b1,0x48d)+_0x33b0df(0x1aa,0x15e))+('\x20\x20\x20co'+_0x33b0df(0x94,-0xb6)+'hareI'+_0x33b0df(0x21a,0x351))+_0x310bb9+(_0x5395d(0x595,0x62b)+_0x33b0df(0x1c2,0x2eb)+_0x5395d(0x40f,0x369)+_0x5395d(0x565,0x46b)+_0x5395d(0x3cb,0x421)+'\x27\x20+\x20s'+_0x5395d(0x3e8,0x3a0)+_0x33b0df(-0x2d,-0x3c)+_0x33b0df(0xb6,-0x94)+_0x33b0df(0x1d5,0x19d)+_0x5395d(0x4cb,0x441)+_0x33b0df(0x48,0xf4)+_0x5395d(0x385,0x317)+'\x20\x20\x20\x20\x20'+_0x33b0df(-0x9,-0xee)+_0x5395d(0x5ba,0x58b)+_0x5395d(0x583,0x5a3)+'{\x0a\x20\x20\x20'+'\x20\x20\x20\x20\x20'+'if\x20(!'+_0x5395d(0x4ec,0x4b9)+_0x5395d(0x426,0x3b8)+_0x5395d(0x5c9,0x5a5)+_0x5395d(0x51f,0x631)+_0x5395d(0x4d8,0x40f)+_0x5395d(0x586,0x4e8)+'\x20\x20\x20\x20\x20'+_0x33b0df(0x1b9,0x1f3)+_0x33b0df(0xc1,0x11)+_0x33b0df(-0x43,0x6d)+_0x33b0df(0x125,0xe9)+_0x33b0df(0xa0,0x157)+'share'+'Title'+_0x33b0df(0x63,-0x83)+_0x33b0df(0x25,0x1c)+'tent\x20'+_0x33b0df(0x10,0x9b)+_0x5395d(0x3fb,0x495)+_0x33b0df(0x16b,0x26e)+_0x33b0df(0x1cd,0x2a8)+_0x5395d(0x35a,0x2f5)+'ment.'+_0x33b0df(0x13b,0x13)+_0x33b0df(0x198,0x2c1)+_0x5395d(0x367,0x322)+_0x5395d(0x4a2,0x4bf)+_0x33b0df(0x15,0x106)+_0x5395d(0x352,0x49c)+'erHTM'+_0x5395d(0x3c6,0x487)+'<div\x20'+_0x5395d(0x487,0x3fa)+_0x33b0df(-0x71,-0xce)+_0x5395d(0x598,0x508)+'\x20+\x20es'+_0x33b0df(-0x14,-0xd5)+_0x33b0df(0x82,0xbf)+'or\x20||'+_0x5395d(0x520,0x5a7)+_0x5395d(0x4a6,0x564)+_0x33b0df(0x41,0x14e)+_0x5395d(0x4fe,0x3f8)+_0x5395d(0x3dc,0x520)+_0x5395d(0x4ae,0x5be)+_0x5395d(0x586,0x5e9)+'\x20\x20\x20\x20\x20'+'retur'+_0x5395d(0x4a4,0x458)+_0x33b0df(0x1cd,0x300)+_0x33b0df(0x20b,0x1f1)+_0x33b0df(0x1cd,0x224)+_0x33b0df(-0x5f,0xba)+_0x5395d(0x351,0x3df)+_0x33b0df(0x13b,0x190)+_0x33b0df(0x198,0x1e3)+_0x33b0df(-0x52,0x50)+_0x5395d(0x3c0,0x380)+_0x5395d(0x4d9,0x57e)+'e\x27).t'+_0x33b0df(0xf2,0x1e0)+_0x33b0df(0x14c,0x27f)+_0x33b0df(0x103,0x238)+_0x33b0df(0x13d,0x12c)+_0x33b0df(-0x21,-0x52)+_0x33b0df(0x1cd,0x2d0)+_0x5395d(0x4a7,0x50e)+'cumen'+_0x5395d(0x3d7,0x37b)+_0x33b0df(0x3a,0x10a)+_0x5395d(0x433,0x537)+_0x5395d(0x37e,0x3a8)+_0x5395d(0x36f,0x2f1)+_0x5395d(0x527,0x55e)+_0x5395d(0x38e,0x2cf)+'TML\x20='+'\x20data'+_0x5395d(0x471,0x445)+'ages\x0a'+_0x33b0df(0x1cd,0x18e)+'\x20\x20\x20\x20\x20'+_0x33b0df(-0x60,-0x145)+_0x5395d(0x58b,0x66a)+_0x5395d(0x375,0x3a2)+_0x5395d(0x4ac,0x3b1)+_0x33b0df(0x105,0x21a)+_0x33b0df(0xb5,0x1a3)+'m\x27)\x0a\x20'+_0x33b0df(0x1cd,0x293)+'\x20\x20\x20\x20.'+_0x33b0df(0x118,0x43)+_0x5395d(0x587,0x6aa)+_0x5395d(0x503,0x490)+_0x5395d(0x487,0x3d6)+_0x5395d(0x521,0x50f)+_0x5395d(0x575,0x67f)+_0x33b0df(-0x40,-0x7)+'.type'+_0x5395d(0x3b2,0x3b5)+_0x5395d(0x3a1,0x2be)+'escap'+'eHtml'+_0x5395d(0x4e7,0x405)+'xt)\x20+'+'\x20\x27</d'+_0x33b0df(0xde,0x154)+'\x0a\x20\x20\x20\x20'+_0x33b0df(0x1cd,0x155)+_0x5395d(0x4f0,0x61b)+_0x33b0df(0xd3,0x7a)+_0x5395d(0x364,0x344)+_0x5395d(0x42d,0x507)+'\x0a\x20\x20\x20\x20'+_0x5395d(0x49b,0x5c1)+_0x33b0df(0x132,0x228)+_0x33b0df(-0x6c,0xc8)+_0x33b0df(0x16b,0x26d)+_0x33b0df(0x93,0x1da)+_0x33b0df(0xe0,0xe4)+_0x33b0df(0x19a,0x74)+_0x5395d(0x58f,0x642)+'entBy'+_0x5395d(0x3c8,0x38a)+_0x33b0df(0x32,-0x3e)+_0x33b0df(0xb3,0x3)+_0x33b0df(0x123,0xe)+'tCont'+_0x5395d(0x3a6,0x2d2)+_0x5395d(0x448,0x501)+_0x5395d(0x37f,0x435)+_0x5395d(0x586,0x579)+_0x5395d(0x4a7,0x4ff)+'cumen'+_0x33b0df(0x1e,0x9c)+_0x33b0df(0x3a,0x8e)+_0x33b0df(0x7a,0xa1)+'d(\x27me'+_0x33b0df(-0x4a,0x3)+_0x33b0df(0x16e,0x21b)+'nnerH'+_0x33b0df(0xa7,-0x39)+_0x5395d(0x37c,0x3bb)+_0x5395d(0x569,0x510)+_0x5395d(0x592,0x4d9)+'rror\x22'+_0x33b0df(0x1ef,0x302)+_0x5395d(0x424,0x537)+_0x33b0df(0xac,0x1b7)+_0x33b0df(0x60,0x67)+_0x5395d(0x439,0x3b7)+'\x20\x20\x20\x20\x20'+_0x33b0df(0x1e9,0x2c4)+_0x33b0df(0x50,-0x4)+_0x33b0df(0x8b,0xa0)+'n\x20esc'+'apeHt'+'ml(te'+_0x5395d(0x59e,0x67c)+_0x5395d(0x524,0x48b)+_0x33b0df(-0x47,0xb7)+_0x5395d(0x34a,0x33c)+_0x5395d(0x5b3,0x568)+_0x5395d(0x499,0x35d)+_0x33b0df(0x191,0x76)+_0x5395d(0x437,0x509)+_0x33b0df(0x15c,0x1b6)+_0x5395d(0x5c3,0x5d4)+_0x33b0df(-0x62,-0x71)+_0x33b0df(0x1cd,0x1de)+'\x20div.'+'textC'+_0x33b0df(0x139,0x282)+_0x33b0df(0x169,0x13d)+_0x33b0df(0x7b,-0x9c)+_0x33b0df(0x1cd,0x19c)+_0x33b0df(0x1f3,0x1bd)+_0x33b0df(-0x12,0x8f)+_0x5395d(0x562,0x595)+_0x33b0df(0x21d,0x207)+'L.rep'+(_0x33b0df(0xea,0xf0)+_0x33b0df(0x144,0xde)+_0x5395d(0x4e5,0x508)+_0x5395d(0x5d5,0x61f)+_0x33b0df(0x16b,0x188)+_0x5395d(0x538,0x669)+_0x5395d(0x3b4,0x4f0)+_0x33b0df(0x209,0x1a7)+_0x33b0df(0x2e,0xc7)+_0x5395d(0x4ff,0x4b3)+_0x33b0df(0x149,0x283)+'\x20\x20'));}else return'';}let _0x5c3426=_0x2f2a42['subst'+_0x5395d(0x42c,0x4ac)](0x535+-0x135*0x8+0x473,MAX_MESSAGE_TEXT_LENGTH);function _0x33b0df(_0x3526e6,_0x5d740e){return _0x587c(_0x3526e6- -0x1b4,_0x5d740e);}_0x5c3426=_0x5c3426[_0x5395d(0x37b,0x25e)+'ce'](/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]/g,'');function _0x5395d(_0x228a2a,_0x5ae2e8){return _0x587c(_0x228a2a-0x205,_0x5ae2e8);}return _0x5c3426;}function sanitizeMessageType(_0x4e25f7){const _0x582c24={};_0x582c24['rrsId']=_0x15a097(0x1cf,0x251),_0x582c24[_0x15a097(0x41e,0x38b)]=_0x271816(-0x45,-0x38)+_0x15a097(0x24d,0x325);function _0x15a097(_0x2bdf97,_0x4a650e){return _0x587c(_0x2bdf97-0x88,_0x4a650e);}_0x582c24[_0x15a097(0x372,0x4ba)]=_0x15a097(0x2f1,0x2e3)+'m';function _0x271816(_0x3fdc0b,_0x2e2ab8){return _0x587c(_0x2e2ab8- -0x207,_0x3fdc0b);}_0x582c24['WtEAq']=function(_0xecfd59,_0x19b633){return _0xecfd59===_0x19b633;},_0x582c24[_0x271816(0x16a,0x1b0)]=_0x15a097(0x42c,0x46a)+'g';const _0x249cea=_0x582c24,_0x440430=[_0x249cea[_0x15a097(0x1e9,0x1e3)],_0x249cea[_0x271816(0x19f,0x18f)],_0x249cea['NTYaY']];if(_0x249cea[_0x15a097(0x1ef,0x2e3)](typeof _0x4e25f7,_0x249cea[_0x15a097(0x43f,0x573)])&&_0x440430[_0x271816(0xc9,0x6a)+'des'](_0x4e25f7))return _0x4e25f7;return _0x249cea['rrsId'];}export function setupShareRoutes(_0x8605fb,_0x45f15f){function _0x7da624(_0x46cada,_0x39d11d){return _0x587c(_0x46cada-0x39d,_0x39d11d);}const _0x7d2e2={'biuZX':'assis'+_0x7da624(0x562,0x5e6),'zABoA':_0x7da624(0x606,0x654)+'m','gmKqX':function(_0x84f4ce,_0x366c62){return _0x84f4ce===_0x366c62;},'nNQOk':_0x7da624(0x4e4,0x46c),'lqCeH':function(_0x3cc6bf,_0x19621f){return _0x3cc6bf===_0x19621f;},'bmoiX':function(_0x23e328,_0x2ddb71){return _0x23e328!==_0x2ddb71;},'clczi':_0x1e1fc4(0x286,0x3bf),'kicnJ':function(_0x45c0bd,_0x59886f,_0x374b3f){return _0x45c0bd(_0x59886f,_0x374b3f);},'fhVot':_0x7da624(0x6d3,0x7df)+'esInH'+_0x1e1fc4(0x1c8,0x83),'aYQuO':function(_0x51e59c,_0x4b2f1b){return _0x51e59c===_0x4b2f1b;},'axbeP':_0x1e1fc4(0x2ff,0x3b2)+_0x7da624(0x541,0x40c)+'rray\x20'+_0x1e1fc4(0x17a,0xc6)+_0x1e1fc4(0x31a,0x324),'mYwIZ':function(_0x2775c9,_0x47e04e){return _0x2775c9>_0x47e04e;},'oIBYc':_0x1e1fc4(0x249,0x364),'IKAQC':function(_0x3313cb){return _0x3313cb();},'ZZLKU':_0x1e1fc4(0x3a0,0x301)+'g','MkqGz':_0x7da624(0x61d,0x5a4)+_0x7da624(0x768,0x879)+_0x1e1fc4(0x2f3,0x39d)+'tion','CYHsx':function(_0xa86460,_0x15d3d4){return _0xa86460*_0x15d3d4;},'Sxoet':function(_0x5c5092,_0x2f9a0c){return _0x5c5092*_0x2f9a0c;},'ahbxW':function(_0x1adb7f){return _0x1adb7f();},'zpswa':function(_0x3f7141,_0xf10b15,_0x3d1d00){return _0x3f7141(_0xf10b15,_0x3d1d00);},'YcpAr':_0x7da624(0x6a4,0x58c),'cAZVa':function(_0x229e35,_0x4ce51e){return _0x229e35!==_0x4ce51e;},'DOTbm':_0x1e1fc4(0x3bc,0x292),'uINUo':function(_0x25d81b,_0x459402,_0x1e1f0b,_0x22838b){return _0x25d81b(_0x459402,_0x1e1f0b,_0x22838b);},'tSMzt':_0x1e1fc4(0x1f1,0x261),'YPdgT':_0x1e1fc4(0x375,0x29d)+_0x7da624(0x515,0x406)+_0x7da624(0x5da,0x64f)+_0x1e1fc4(0x225,0x10a)+'re','qxZHY':function(_0x58ab0c,_0x4d0b3c){return _0x58ab0c!==_0x4d0b3c;},'VKSMZ':function(_0x336178,_0x59dc5d){return _0x336178!==_0x59dc5d;},'FItXp':_0x1e1fc4(0x184,0x102),'VeCDW':function(_0xe45f1a,_0x5e2c82){return _0xe45f1a!==_0x5e2c82;},'UZufI':function(_0x3cabcd,_0x564060){return _0x3cabcd(_0x564060);},'yAIeN':_0x1e1fc4(0x3c4,0x3b3),'ulwLA':function(_0x594d3a,_0x1bb7e9){return _0x594d3a===_0x1bb7e9;},'rMwQw':'mbuFd','CfbnW':_0x7da624(0x6cf,0x5d2),'qTMNz':function(_0x31f3c1,_0xb483f3){return _0x31f3c1===_0xb483f3;},'dCZVk':_0x7da624(0x666,0x725),'QPbIj':_0x1e1fc4(0x3ae,0x362),'UUThS':_0x1e1fc4(0x27c,0x229)+_0x7da624(0x6ac,0x7ae)+_0x7da624(0x5ab,0x47b),'ptHaY':function(_0x483eb8,_0x430b8b){return _0x483eb8===_0x430b8b;},'QKRry':_0x1e1fc4(0x1ef,0xb8),'IWGkq':_0x1e1fc4(0x375,0x37f)+_0x7da624(0x515,0x4c3)+'get\x20s'+_0x7da624(0x5c1,0x4c0),'DDrKd':_0x1e1fc4(0x14b,0xad)+'e]\x20Cr'+'eate\x20'+'error'+':','JeMQy':_0x1e1fc4(0x33c,0x2b1),'FcQHM':_0x1e1fc4(0x2f2,0x417),'zjJET':_0x1e1fc4(0x209,0x10a)+')+)+)'+'+$','ZGOFV':'XzGqo','zgviK':function(_0x417f91,_0x4863d2){return _0x417f91(_0x4863d2);},'YvFfV':'/api/'+_0x1e1fc4(0x1f9,0x2ae)+_0x1e1fc4(0x24d,0x259)+'te','MgHSe':_0x7da624(0x518,0x4ac)+'share'+_0x7da624(0x74e,0x6b4)+'reId'},_0x3501cf={};function _0x1e1fc4(_0x5970d2,_0x2bbd1d){return _0x587c(_0x5970d2- -0x4,_0x2bbd1d);}_0x3501cf[_0x7da624(0x613,0x65c)+_0x1e1fc4(0x365,0x247)]=!![],_0x3c165a[_0x7da624(0x661,0x58e)](_0x45f15f,_0x3501cf)['catch'](()=>{}),_0x8605fb['post'](_0x7d2e2[_0x7da624(0x634,0x63f)],strictLimiter,async(_0x1c3ec5,_0x82a5a5)=>{function _0x43d5d2(_0x15705d,_0x1d6b05){return _0x7da624(_0x15705d- -0x450,_0x1d6b05);}function _0xd41012(_0x2af974,_0xe909f4){return _0x7da624(_0xe909f4- -0x24a,_0x2af974);}const _0x400ddf={'BECPD':_0x7d2e2[_0x43d5d2(0x309,0x2d8)],'sSzyV':_0x7d2e2[_0x43d5d2(0x289,0x152)],'sJSya':function(_0x77f709,_0x2e4691){function _0xece155(_0x1189c1,_0x30bad9){return _0x43d5d2(_0x30bad9-0x9d,_0x1189c1);}return _0x7d2e2[_0xece155(0x3a3,0x2ff)](_0x77f709,_0x2e4691);},'BBFQm':_0x7d2e2[_0xd41012(0x4de,0x4f5)]};if(_0x7d2e2['lqCeH'](_0xd41012(0x52b,0x467),_0xd41012(0x44a,0x47f))){const _0x2f8901=[_0x43d5d2(0x94,0x16c),yxkKis[_0x43d5d2(0x1a5,0x120)],yxkKis[_0xd41012(0x3cf,0x4f4)]];if(yxkKis[_0x43d5d2(0x308,0x2a1)](typeof _0x2aa463,'strin'+'g')&&_0x2f8901[_0xd41012(0x505,0x3c4)+_0x43d5d2(0x9b,0x1b4)](_0x361002))return _0x32a311;return yxkKis[_0x43d5d2(0x26e,0x3b8)];}else try{if(_0x7d2e2[_0xd41012(0x627,0x519)](_0x7d2e2[_0xd41012(0x4bf,0x3d8)],_0x7d2e2[_0xd41012(0x458,0x3d8)]))return _0x2c1ed5['badRe'+'quest'](_0x2be602,_0x2bf65f[_0x43d5d2(0x142,0x41)]);else{const {title:_0x51318b,messages:_0x5b009,expiresInHours:_0x562e5e}=_0x1c3ec5[_0xd41012(0x30c,0x41d)],_0x203a7e=_0x7d2e2[_0xd41012(0x487,0x38f)](parseNumericParam,_0x562e5e,{'min':MIN_EXPIRY_HOURS,'max':MAX_EXPIRY_HOURS,'defaultValue':DEFAULT_EXPIRY_HOURS,'paramName':_0x7d2e2[_0xd41012(0x31b,0x347)]});if(!_0x203a7e['valid'])return errors[_0xd41012(0x4ff,0x411)+_0xd41012(0x3b9,0x478)](_0x82a5a5,_0x203a7e[_0x43d5d2(0x142,0x236)]);const _0x16e445=_0x203a7e[_0x43d5d2(0x23b,0x20e)];if(!_0x5b009||!Array[_0xd41012(0x603,0x4c6)+'ay'](_0x5b009)||_0x7d2e2['aYQuO'](_0x5b009[_0xd41012(0x3cc,0x4cd)+'h'],-0xd5*-0x7+-0x209a+0x5*0x55b))return errors[_0xd41012(0x537,0x411)+_0xd41012(0x47e,0x478)](_0x82a5a5,_0x7d2e2['axbeP']);if(_0x7d2e2[_0xd41012(0x39a,0x44e)](_0x5b009[_0x43d5d2(0x2c7,0x405)+'h'],MAX_MESSAGES_PER_SHARE))return _0x7d2e2[_0x43d5d2(0x313,0x3b4)](_0x7d2e2[_0xd41012(0x21d,0x31e)],_0x7d2e2[_0x43d5d2(0x118,0x19b)])?_0x34ccd1:errors[_0x43d5d2(0x20b,0x33d)+_0x43d5d2(0x272,0x19c)](_0x82a5a5,'Too\x20m'+_0xd41012(0x265,0x35b)+_0xd41012(0x468,0x458)+_0xd41012(0x350,0x40f)+_0x43d5d2(0x2e9,0x245)+MAX_MESSAGES_PER_SHARE+')');const _0x31528b=_0x7d2e2[_0x43d5d2(0x18b,0x16f)](randomUUID)['repla'+'ce'](/-/g,'')[_0xd41012(0x331,0x3e3)+_0xd41012(0x25a,0x37a)](0xdd5+0x4ed+-0x12c2,0x1813+-0x6d7*-0x1+0x3*-0xa4a),_0x3e5af6=_0x12b772['join'](_0x45f15f,_0x31528b+_0x43d5d2(0x287,0x3ac)),_0xa9074f=_0x7d2e2['aYQuO'](typeof _0x51318b,_0x7d2e2['ZZLKU'])?_0x51318b['subst'+_0x43d5d2(0x174,0x14c)](-0x4c*-0x43+-0x8f3+-0xaf1*0x1,-0x1342+-0x136+0x1540)[_0xd41012(0x30d,0x2c9)+'ce'](/[\x00-\x1F\x7F]/g,''):_0x7d2e2[_0xd41012(0x5a3,0x4c7)],_0x1bd7de=_0x5b009['map'](_0x300176=>({'type':sanitizeMessageType(_0x300176[_0xd41012(0x2d4,0x366)]),'text':sanitizeMessageText(_0x300176[_0xd41012(0x26b,0x2ea)]),'timestamp':typeof _0x300176[_0x43d5d2(0x1b2,0x1f8)+_0x43d5d2(0xf6,0x22a)]==='numbe'+'r'?_0x300176[_0xd41012(0x3c7,0x3b8)+_0x43d5d2(0xf6,0x16b)]:Date[_0xd41012(0x368,0x410)]()})),_0x3caa4f={'id':_0x31528b,'title':_0xa9074f,'messages':_0x1bd7de,'createdAt':Date[_0xd41012(0x48b,0x410)](),'expiresAt':Date['now']()+_0x7d2e2[_0x43d5d2(0x29e,0x2b4)](_0x7d2e2['Sxoet'](_0x16e445,-0x574+0x19ab+-0x13fb)*(0x305+-0xa57*-0x2+-0x1777*0x1),0x247d+-0x10*0x8e+-0x15*0x121),'viewCount':0x0},_0x4487ba=_0x12b772[_0xd41012(0x518,0x461)](_0x45f15f,_0x43d5d2(0xec,0x134)+_0x31528b+'-'+_0x7d2e2['ahbxW'](randomUUID)+'.json');await _0x3c165a[_0x43d5d2(0xa0,0x12d)+_0xd41012(0x4f3,0x4ad)](_0x4487ba,JSON['strin'+_0x43d5d2(0x284,0x21e)](_0x3caa4f,null,-0x1*-0x179e+-0x2cd+-0x14cf)),await _0x3c165a[_0xd41012(0x3ca,0x323)+'e'](_0x4487ba,_0x3e5af6),_0x7d2e2[_0xd41012(0x443,0x454)](log,_0x7d2e2[_0x43d5d2(0xa9,-0xf)],_0xd41012(0x3c0,0x2a2)+'e]\x20Cr'+_0x43d5d2(0x294,0x350)+_0x43d5d2(0x2ed,0x2d9)+_0xd41012(0x333,0x45d)+_0x31528b);const _0x56ec9e={};return _0x56ec9e[_0x43d5d2(0x14a,0x180)+'Id']=_0x31528b,_0x56ec9e[_0xd41012(0x25a,0x350)+'Url']=_0xd41012(0x41e,0x3b0)+'e/'+_0x31528b,_0x56ec9e['expir'+'esAt']=_0x3caa4f[_0xd41012(0x45d,0x489)+_0x43d5d2(0x28c,0x1c2)],sendSuccess(_0x82a5a5,_0x56ec9e);}}catch(_0x5aff1c){return _0x7d2e2[_0x43d5d2(0x11e,0xf9)](_0x7d2e2[_0x43d5d2(0x2cd,0x1cf)],_0x7d2e2[_0xd41012(0x511,0x4d3)])?_0x40ef4e[_0xd41012(0x32b,0x411)+'quest'](_0xd488a,_0x5b6e66['error']):(_0x7d2e2[_0xd41012(0x550,0x4de)](log,_0x7d2e2[_0x43d5d2(0x295,0x226)],_0x43d5d2(0x9c,-0x47)+_0x43d5d2(0xd9,0x15a)+_0x43d5d2(0x191,0x96)+_0x43d5d2(0x142,0x18c)+':',_0x5aff1c[_0xd41012(0x55e,0x456)+'ge']),errors[_0xd41012(0x525,0x4a3)+_0x43d5d2(0x1ba,0xb6)+'r'](_0x82a5a5,_0x7d2e2['YPdgT']));}}),_0x8605fb[_0x1e1fc4(0x2b1,0x36c)](_0x7d2e2[_0x1e1fc4(0x1b3,0x222)],async(_0x4c25d1,_0x4afdaa)=>{function _0x971e18(_0x51d850,_0x1f9475){return _0x7da624(_0x1f9475- -0x27c,_0x51d850);}function _0x54fea7(_0x2881db,_0x2ba291){return _0x7da624(_0x2ba291- -0x29f,_0x2881db);}const _0x299b53={};_0x299b53[_0x54fea7(0x213,0x32b)]=_0x971e18(0x2f8,0x3a1)+_0x54fea7(0x375,0x40d)+_0x54fea7(0x29f,0x30c);const _0x49451e=_0x299b53;if(_0x7d2e2['VKSMZ'](_0x7d2e2[_0x971e18(0x44c,0x400)],_0x7d2e2[_0x971e18(0x2e5,0x400)]))return _0x55733c[_0x971e18(0x327,0x3c5)+_0x971e18(0x22e,0x33d)](_0x7dea37,_0x971e18(0x4d3,0x3a1)+_0x54fea7(0x42c,0x40d)+_0x54fea7(0x2b0,0x30c));else try{if(_0x7d2e2['VeCDW'](_0x971e18(0x394,0x341),_0x54fea7(0x337,0x31e)))_0x366a3c[_0x54fea7(0x23d,0x376)](_0x4c7e71(_0x36564c['param'+'s'][_0x971e18(0x454,0x31e)+'Id']));else{const {shareId:_0x41579e}=_0x4c25d1[_0x54fea7(0x341,0x27a)+'s'],_0x4e46e9=_0x7d2e2[_0x54fea7(0x366,0x336)](sanitizeShareId,_0x41579e);if(!_0x4e46e9[_0x54fea7(0x22a,0x2c0)])return errors['badRe'+'quest'](_0x4afdaa,_0x4e46e9['error']);const _0x59cb17=_0x4e46e9['sanit'+_0x971e18(0x499,0x3bd)],_0xd10fc9=_0x12b772[_0x971e18(0x563,0x42f)](_0x45f15f,_0x59cb17+_0x54fea7(0x3f8,0x438));try{const _0x449664=await _0x3c165a[_0x971e18(0x4cb,0x49c)+_0x971e18(0x347,0x389)](_0xd10fc9,_0x7d2e2[_0x971e18(0x478,0x45f)]),_0x13922e=JSON[_0x54fea7(0x45d,0x3aa)](_0x449664);if(_0x7d2e2['mYwIZ'](Date[_0x54fea7(0x3b4,0x3bb)](),_0x13922e['expir'+_0x971e18(0x580,0x460)]))return _0x7d2e2[_0x971e18(0x1bb,0x27b)](_0x7d2e2[_0x54fea7(0x366,0x40a)],_0x7d2e2[_0x971e18(0x23b,0x2cf)])?_0x2ae9bd['badRe'+_0x54fea7(0x468,0x423)](_0x211ddc,_0x170b3c['error']):(await _0x3c165a[_0x54fea7(0x29a,0x37a)+'k'](_0xd10fc9)['catch'](()=>{}),errors['notFo'+_0x54fea7(0x2e2,0x31a)](_0x4afdaa,_0x971e18(0x48e,0x3a1)+_0x971e18(0x1d1,0x2b0)+_0x971e18(0x283,0x376)+_0x971e18(0x3d2,0x457)+'ed'));return _0x13922e[_0x971e18(0x347,0x483)+_0x971e18(0x47b,0x38c)]++,await _0x3c165a[_0x54fea7(0x179,0x251)+'File'](_0xd10fc9,JSON['strin'+_0x54fea7(0x301,0x435)](_0x13922e,null,-0x25*-0x4e+-0x1acc+0xf88)),_0x7d2e2['zpswa'](sendSuccess,_0x4afdaa,_0x13922e);}catch(_0x101912){if(_0x7d2e2['qTMNz'](_0x7d2e2[_0x971e18(0x312,0x271)],_0x7d2e2[_0x54fea7(0x3f2,0x2f0)])){if(!_0x2b4d54||DXEomy[_0x971e18(0x42a,0x474)](typeof _0x4ed568,DXEomy[_0x54fea7(0x33d,0x452)]))return'';let _0x3d47ac=_0x58bfc2[_0x971e18(0x427,0x3b1)+_0x971e18(0x317,0x348)](0x1*-0x1e63+-0x1dd+-0x81*-0x40,_0x13b40f);return _0x3d47ac=_0x3d47ac[_0x54fea7(0x31c,0x274)+'ce'](/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]/g,''),_0x3d47ac;}else return errors[_0x54fea7(0x276,0x3a2)+_0x971e18(0x487,0x33d)](_0x4afdaa,_0x7d2e2[_0x971e18(0x3c5,0x45e)]);}}}catch(_0x1948de){return _0x7d2e2[_0x54fea7(0x3ec,0x3bd)](_0x7d2e2['QKRry'],'EQchS')?(log(_0x971e18(0x3d7,0x316),_0x54fea7(0x2c2,0x24d)+_0x971e18(0x41e,0x44f)+'t\x20err'+'or:',_0x1948de[_0x54fea7(0x367,0x401)+'ge']),errors['serve'+_0x54fea7(0x366,0x36b)+'r'](_0x4afdaa,_0x7d2e2[_0x54fea7(0x350,0x3e2)])):_0x32324a[_0x971e18(0x431,0x3c5)+_0x971e18(0x298,0x33d)](_0x5b84f3,_0x49451e[_0x54fea7(0x3aa,0x32b)]);}}),_0x8605fb['delet'+'e'](_0x1e1fc4(0x177,0x206)+_0x1e1fc4(0x1f9,0x325)+'/:sha'+_0x7da624(0x62c,0x6c6),strictLimiter,async(_0x5c71f6,_0x231da5)=>{function _0x2f70d1(_0x4cfefa,_0x5b6e51){return _0x1e1fc4(_0x4cfefa- -0x5,_0x5b6e51);}const _0x50f214={'lLrJD':function(_0x3923b5,_0x30a66b,_0x28d363,_0x2256ad){function _0x29178c(_0x1f5811,_0x2b55d5){return _0x587c(_0x2b55d5- -0x77,_0x1f5811);}return _0x7d2e2[_0x29178c(0x2e8,0x314)](_0x3923b5,_0x30a66b,_0x28d363,_0x2256ad);},'hiCxH':_0x7d2e2[_0x30d17(0x4a3,0x46c)],'iwguR':_0x7d2e2[_0x30d17(0x469,0x55d)]};function _0x30d17(_0x667116,_0x491059){return _0x1e1fc4(_0x491059-0x326,_0x667116);}try{const {shareId:_0x280a51}=_0x5c71f6[_0x2f70d1(0x173,0x1f7)+'s'],_0x5690e8=sanitizeShareId(_0x280a51);if(!_0x5690e8[_0x30d17(0x4a2,0x4e4)])return _0x7d2e2['VeCDW'](_0x7d2e2['JeMQy'],_0x7d2e2[_0x30d17(0x609,0x4dc)])?'':errors[_0x30d17(0x562,0x5e0)+_0x30d17(0x609,0x647)](_0x231da5,_0x5690e8['error']);const _0x33ae40=_0x5690e8['sanit'+_0x30d17(0x5cd,0x5be)],_0x37d0d9=_0x12b772['join'](_0x45f15f,_0x33ae40+_0x2f70d1(0x331,0x24e));return await _0x3c165a[_0x30d17(0x644,0x59e)+'k'](_0x37d0d9),sendSuccess(_0x231da5);}catch(_0x4df93b){return _0x7d2e2['ulwLA'](_0x7d2e2[_0x2f70d1(0x2aa,0x3bc)],_0x7d2e2[_0x30d17(0x4e9,0x5d5)])?errors[_0x30d17(0x668,0x5c6)+_0x30d17(0x5ce,0x53e)](_0x231da5,_0x2f70d1(0x277,0x32f)+_0x30d17(0x5dd,0x631)+'found'):(UgOeye['lLrJD'](_0x2972aa,_0x2f70d1(0x1ec,0x273),UgOeye[_0x30d17(0x514,0x62d)],_0x1c1617['messa'+'ge']),_0x1fb2cc[_0x2f70d1(0x347,0x369)+'rErro'+'r'](_0x82efdf,UgOeye[_0x30d17(0x695,0x5ae)]));}}),_0x8605fb[_0x7da624(0x652,0x5ff)]('/shar'+_0x7da624(0x57c,0x681)+_0x1e1fc4(0x342,0x2c3),async(_0x135c7c,_0x4ddaa4)=>{const _0x17066e={};function _0x4bcde9(_0x4254df,_0xe064ea){return _0x7da624(_0x4254df- -0x3b3,_0xe064ea);}_0x17066e[_0x4bcde9(0x26d,0x2cb)]=_0x7d2e2['zjJET'];function _0x848814(_0x514018,_0x5cf290){return _0x7da624(_0x5cf290- -0x280,_0x514018);}const _0x4db3e1=_0x17066e;if(_0x7d2e2['ZGOFV']!==_0x7d2e2['ZGOFV'])return _0xcbc13[_0x848814(0x3a7,0x36f)+_0x848814(0x4df,0x3d8)]()[_0x4bcde9(0x30e,0x430)+'h'](SqmZwP[_0x4bcde9(0x26d,0x362)])[_0x848814(0x3de,0x36f)+'ing']()[_0x848814(0x1a2,0x268)+_0x848814(0x45a,0x315)+'r'](_0x490a38)[_0x4bcde9(0x30e,0x265)+'h'](SqmZwP[_0x4bcde9(0x26d,0x2ae)]);else _0x4ddaa4['send'](_0x7d2e2['zgviK'](getSharePageHTML,_0x135c7c[_0x4bcde9(0x166,0x186)+'s'][_0x4bcde9(0x1e7,0x22a)+'Id']));});}function getSharePageHTML(_0x480c1d){function _0x597bff(_0x284df3,_0x4a3b95){return _0x587c(_0x284df3- -0xe4,_0x4a3b95);}const _0x295cc1={'WPtOp':function(_0x57ef5e,_0x56f27e){return _0x57ef5e(_0x56f27e);}};function _0x1f9c82(_0x4e610f,_0x4279b8){return _0x587c(_0x4279b8- -0xdc,_0x4e610f);}const _0x21e2cb=_0x295cc1[_0x1f9c82(0x179,0x147)](escapeForJS,_0x480c1d['repla'+'ce'](/[^a-zA-Z0-9]/g,'')[_0x1f9c82(0x2ed,0x1b4)+_0x597bff(0x143,0x74)](0xcc0+0x7*0x443+0x2a95*-0x1,0x218c+0x1*-0x12db+-0xa3*0x17));return _0x1f9c82(0x263,0x1d3)+_0x1f9c82(0x8c,0x104)+'\x20html'+_0x597bff(0x250,0x2aa)+_0x1f9c82(0x263,0x214)+_0x597bff(0x22d,0x166)+'n\x22>\x0a<'+_0x597bff(0x2a4,0x322)+_0x1f9c82(0x4e,0x159)+_0x597bff(0x146,0xa2)+_0x1f9c82(-0x34,0x6a)+_0x1f9c82(0x3c,0x13c)+_0x1f9c82(0x305,0x28e)+_0x597bff(0x151,0x16)+_0x597bff(0xf2,-0x47)+_0x597bff(0x1c6,0x266)+'viewp'+'ort\x22\x20'+_0x597bff(0xfd,0xdd)+_0x597bff(0x123,0x13b)+_0x1f9c82(0x2e9,0x20d)+_0x1f9c82(0x1b9,0xa1)+_0x597bff(0x12b,0xae)+'th,\x20i'+_0x1f9c82(0x155,0x1bd)+_0x597bff(0x26b,0x1ed)+'le=1.'+'0\x22>\x0a\x20'+_0x1f9c82(0x6b,0x12d)+_0x597bff(0x18a,0xd4)+_0x597bff(0x147,0x6c)+'Conve'+_0x1f9c82(0x273,0x1ff)+_0x1f9c82(0x1ac,0x2b8)+_0x1f9c82(0x1ca,0x1f3)+'k</ti'+_0x597bff(0x136,0xf7)+_0x597bff(0x1e3,0x15b)+_0x1f9c82(0x18f,0xce)+_0x597bff(0x12d,0x1e5)+_0x1f9c82(-0x4d,0xf8)+_0x597bff(0x246,0x19b)+'ing:\x20'+_0x1f9c82(0x23a,0x1e6)+_0x597bff(0x11f,0x176)+_0x597bff(0x275,0x1c8)+_0x1f9c82(0x181,0xee)+_0x597bff(0x2c6,0x36c)+_0x597bff(0xef,0x48)+':\x200;\x20'+_0x597bff(0x24b,0x17e)+_0x1f9c82(0x1f5,0x182)+'\x20{\x20\x0a\x20'+_0x1f9c82(0x32a,0x2a5)+'font-'+_0x597bff(0x60,0x97)+_0x1f9c82(-0xc9,0x7c)+_0x597bff(0x271,0x376)+'syste'+_0x1f9c82(0x333,0x28f)+'inkMa'+'cSyst'+_0x597bff(0x1cd,0x90)+_0x1f9c82(0x1c4,0x267)+'egoe\x20'+_0x1f9c82(0x274,0x197)+'sans-'+_0x1f9c82(0x10b,0x123)+_0x1f9c82(0x1bf,0x83)+_0x1f9c82(0x188,0x150)+'ckgro'+_0x597bff(0x11e,0x246)+_0x597bff(0x208,0xf1)+'1a;\x20\x0a'+_0x1f9c82(0x3e2,0x2a5)+'\x20colo'+_0x1f9c82(0x41,0x115)+_0x1f9c82(0x21f,0x2c2)+_0x597bff(0x29d,0x155)+_0x1f9c82(0x319,0x27a)+'eight'+_0x597bff(0x1d4,0x280)+_0x597bff(0x2eb,0x2ee)+_0x1f9c82(0x34b,0x2a5)+_0x597bff(0xe9,0x1a8)+_0x1f9c82(0x39,0xbc)+_0x1f9c82(0x19f,0x219)+_0x1f9c82(0x134,0xec)+'\x0a\x20\x20\x20\x20'+'.cont'+'ainer'+'\x20{\x20ma'+_0x597bff(0x195,0x10c)+_0x1f9c82(0xe8,0x11b)+_0x1f9c82(0x22c,0x237)+_0x1f9c82(0x320,0x2f6)+'in:\x200'+_0x597bff(0x155,0xcc)+';\x20}\x0a\x20'+_0x597bff(0x204,0x190)+_0x597bff(0x1f4,0xfa)+_0x1f9c82(0x1ba,0x149)+'\x20\x20\x20\x20\x20'+_0x1f9c82(0xad,0x154)+_0x597bff(0x137,0x73)+_0x597bff(0x27f,0x1bf)+_0x597bff(0xb6,0xee)+_0x597bff(0x23b,0x1b9)+'\x20\x20pad'+_0x597bff(0x7c,-0xba)+_0x597bff(0x12c,0x238)+'\x200\x2030'+_0x1f9c82(-0x67,0x89)+_0x1f9c82(0x1c5,0x2a5)+_0x1f9c82(0x1df,0x1e6)+'r-bot'+_0x1f9c82(0x3a6,0x283)+_0x1f9c82(0x3ce,0x2a1)+_0x1f9c82(0x125,0x23c)+_0x597bff(0x165,0x6c)+_0x597bff(0x23b,0x1e5)+'\x20\x20mar'+_0x597bff(0x2b7,0x292)+_0x597bff(0xea,0x1e2)+_0x597bff(0x196,0x233)+'x;\x0a\x20\x20'+_0x597bff(0xac,-0xf)+_0x1f9c82(0x52,0x186)+_0x597bff(0x278,0x3c2)+_0x597bff(0x11c,0x138)+_0x597bff(0xd5,-0x1f)+_0x597bff(0x1ff,0x244)+';\x20mar'+_0x1f9c82(0x2e8,0x2bf)+_0x1f9c82(0x49,0xf2)+_0x597bff(0x2d2,0x3d6)+';\x20}\x0a\x20'+_0x597bff(0x1d6,0x264)+_0x1f9c82(0x1bc,0x8d)+_0x1f9c82(0x21f,0x187)+_0x597bff(0x1b1,0x138)+'e:\x201.'+_0x1f9c82(0x129,0x141)+_0x1f9c82(0xca,0x113)+_0x1f9c82(0xba,0xb1)+_0x597bff(0x277,0x20b)+_0x1f9c82(0x228,0x18e)+_0x597bff(0x21f,0x358)+'ges\x20{'+_0x597bff(0x121,0x230)+_0x597bff(0x106,0x1f6)+_0x597bff(0xb5,0x1d8)+_0x1f9c82(0x10a,0x180)+_0x1f9c82(0x236,0x2f9)+_0x1f9c82(0x17c,0xb8)+_0x597bff(0x176,0x76)+_0x597bff(0x1a5,0xdf)+_0x597bff(0x29f,0x3a6)+_0x597bff(0x1d2,0x22e)+_0x597bff(0x2db,0x21e)+_0x597bff(0x193,0x2a8)+_0x597bff(0x86,0x12d)+_0x597bff(0x141,0xb9)+_0x1f9c82(0x303,0x2a5)+_0x1f9c82(0x1bf,0xf1)+'ng:\x201'+'2px\x201'+_0x1f9c82(0x1fd,0x1be)+_0x1f9c82(0x299,0x243)+_0x1f9c82(0x13d,0x18a)+_0x597bff(0x23c,0x1f0)+_0x1f9c82(0x18d,0x81)+_0x597bff(0x13a,0xf7)+'x;\x20\x0a\x20'+'\x20\x20\x20\x20\x20'+_0x1f9c82(0x200,0x1ef)+_0x1f9c82(0x52,0xaf)+_0x1f9c82(-0x46,0xb5)+_0x597bff(0x23b,0x2f3)+_0x597bff(0x24b,0x19c)+'\x20.mes'+'sage.'+_0x597bff(0xa0,0x19d)+_0x1f9c82(0x1d4,0x220)+_0x1f9c82(0x24f,0x14a)+'ackgr'+'ound:'+_0x1f9c82(0x9c,0x122)+_0x597bff(0x167,0x261)+_0x1f9c82(0x1fd,0x243)+'\x20\x20ali'+_0x597bff(0x2ef,0x1f2)+_0x1f9c82(0x39f,0x28a)+_0x1f9c82(0xb1,0x1a1)+_0x597bff(0x127,0x7b)+_0x597bff(0x29d,0x35d)+_0x597bff(0x1de,0x249)+'r-bot'+_0x597bff(0x283,0x2f6)+_0x1f9c82(0x8a,0x1c4)+(_0x1f9c82(0x159,0x251)+_0x597bff(0x2a1,0x1d9)+_0x597bff(0x1fd,0x138)+_0x597bff(0xac,0x166)+_0x1f9c82(0x112,0xca)+'essag'+_0x1f9c82(0x11,0xda)+_0x597bff(0x210,0x17e)+'t\x20{\x20\x0a'+'\x20\x20\x20\x20\x20'+_0x597bff(0x15d,0x277)+_0x597bff(0x28e,0x1c3)+_0x597bff(0x105,0x137)+_0x597bff(0xb9,0x1b2)+_0x597bff(0x135,0x10e)+_0x1f9c82(0x216,0x28c)+_0x597bff(0x166,0x197)+_0x597bff(0xe3,0x186)+'\x20flex'+_0x597bff(0x84,0xf3)+_0x597bff(0x260,0x326)+_0x1f9c82(0x20c,0x14a)+_0x597bff(0x116,0x199)+_0x1f9c82(0x15,0x10b)+_0x1f9c82(0xd1,0x1f9)+_0x1f9c82(0x3c3,0x2cc)+_0x1f9c82(0x98,0xaa)+_0x1f9c82(0x151,0x1d4)+_0x1f9c82(0x360,0x243)+_0x1f9c82(0x1aa,0x253)+_0x1f9c82(0x30c,0x2d7)+_0x597bff(0x281,0x290)+_0x1f9c82(0x2dc,0x243)+_0x597bff(0x1a4,0x200)+_0x1f9c82(0x1fb,0x2ab)+_0x1f9c82(0x8c,0xa9)+'enter'+';\x0a\x20\x20\x20'+_0x1f9c82(0x2c4,0x259)+_0x597bff(0x2b3,0x3d6)+'top:\x20'+_0x597bff(0x23f,0x155)+_0x597bff(0x23b,0x1a5)+_0x597bff(0xa6,0x1af)+_0x597bff(0x2bb,0x3af)+_0x597bff(0x1c4,0x205)+'20px;'+_0x1f9c82(0x22b,0x243)+_0x597bff(0x182,0xc7)+_0x1f9c82(0x2df,0x27b)+'op:\x201'+_0x597bff(0x2c1,0x25a)+_0x597bff(0xf8,0x70)+'333;\x0a'+_0x1f9c82(0x28b,0x2a5)+_0x597bff(0x224,0x25c)+_0x597bff(0x15c,0x1c0)+_0x597bff(0x7f,0xb1)+_0x597bff(0x29d,0x1d8)+_0x597bff(0x220,0x25b)+_0x1f9c82(0x2ec,0x25f)+'\x200.9e'+_0x597bff(0x190,0x2b9)+_0x1f9c82(0x1c9,0xb4)+_0x597bff(0x9d,0x9c)+_0x1f9c82(0xd6,0xa3)+'\x20a\x20{\x20'+_0x1f9c82(0x151,0x113)+_0x597bff(0x28b,0x361)+_0x597bff(0x20f,0x2a9)+_0x1f9c82(0x13d,0x170)+_0x597bff(0x1a7,0x7b)+_0x597bff(0x80,0x83)+_0x597bff(0x13e,0x5a)+_0x597bff(0x235,0x176)+'\x0a\x20\x20\x20\x20'+_0x1f9c82(0x211,0x23e)+_0x1f9c82(-0x98,0x7a)+_0x597bff(0x24c,0x26e)+_0x597bff(0x225,0x2ba)+_0x597bff(0x28d,0x397)+'er;\x20p'+_0x1f9c82(0x1fa,0x22a)+_0x1f9c82(0x2fe,0x1bc)+_0x597bff(0xba,0x13)+_0x1f9c82(0x2f3,0x271)+_0x597bff(0x232,0x25a)+_0x1f9c82(0x125,0x202)+_0x1f9c82(0x275,0x253)+'\x20.loa'+'ding\x20'+_0x597bff(0x8e,-0x3c)+_0x597bff(0x2a3,0x1f7)+_0x597bff(0xa1,0x14a)+_0x597bff(0x2d5,0x333)+_0x597bff(0xc1,0x1e8)+_0x597bff(0x7c,0xf4)+_0x597bff(0x153,0x1f1)+_0x597bff(0x19b,0x134)+_0x1f9c82(0x1b2,0x226)+'888;\x20'+'}\x0a\x20\x20<'+_0x597bff(0x233,0x32c)+_0x1f9c82(0x157,0x1e9)+_0x1f9c82(0x3c6,0x2ac)+_0x1f9c82(0x3d4,0x2b3)+_0x1f9c82(0x2f1,0x276)+'<div\x20'+_0x1f9c82(0xbc,0x1a6)+'=\x22con'+'taine'+'r\x22>\x0a\x20'+_0x597bff(0x2ad,0x26a)+_0x1f9c82(0x139,0x125)+_0x597bff(0x2df,0x2d0)+_0x597bff(0x1c7,0x114)+_0x1f9c82(0x90,0x7d)+_0x597bff(0x29d,0x19b)+_0x597bff(0x21a,0x26e)+_0x597bff(0x19e,0x1bf)+_0x1f9c82(0x3c8,0x29b)+_0x597bff(0x10c,-0xa)+_0x597bff(0x1eb,0x147)+_0x597bff(0x6d,0xa7)+_0x597bff(0x1ec,0xbe)+_0x597bff(0x1af,0x16c)+'div\x20c'+'lass='+_0x1f9c82(0x6e,0xfe)+_0x597bff(0x2e9,0x285)+_0x597bff(0x27d,0x219)+'reTit'+_0x597bff(0xae,-0x68)+_0x1f9c82(0x14e,0x136)+_0x1f9c82(0x2db,0x1d8)+_0x1f9c82(0x2c6,0x2cd)+'\x0a\x20\x20\x20\x20'+'</div'+_0x1f9c82(0x140,0xe4)+_0x597bff(0x8b,0xf7)+'\x20clas'+_0x597bff(0x132,0x3d)+_0x597bff(0x86,0x183)+_0x597bff(0x1f8,0xce)+_0x1f9c82(0x221,0x240)+_0x597bff(0x2cc,0x347)+_0x597bff(0x255,0x1b0)+_0x1f9c82(0x2d2,0x1b7)+_0x597bff(0x1dc,0x9e)+_0x597bff(0x128,0xce)+'\x22load'+_0x1f9c82(0x25,0x111)+_0x1f9c82(0x378,0x26d)+_0x597bff(0x229,0x134)+_0x597bff(0xcf,-0x27)+_0x597bff(0x2e1,0x40f)+'...</'+_0x1f9c82(0x202,0x29c)+_0x597bff(0x1af,0x278)+'/div>'+_0x597bff(0x23b,0x2f3)+_0x597bff(0x21a,0x283)+'class'+'=\x22foo'+_0x597bff(0x180,0x39)+_0x597bff(0x23b,0x26a)+'\x20\x20Sha'+_0x597bff(0x156,0xe6)+_0x1f9c82(0x247,0x1d2)+_0x597bff(0x16a,0x21e)+'=\x22/\x22>'+_0x597bff(0x1eb,0x1d4)+_0x597bff(0x2e3,0x1af)+_0x597bff(0x23b,0x33b)+_0x1f9c82(0x144,0x138)+_0x1f9c82(0x330,0x24b)+_0x597bff(0x2c5,0x1c6)+_0x597bff(0x25e,0x379)+'cript'+_0x1f9c82(-0x5f,0xe4)+_0x1f9c82(0x1e2,0x194)+'tion\x20'+'esc(s'+_0x1f9c82(0x194,0x1d1)+_0x597bff(0x266,0x368)+_0x597bff(0xf4,0x1a2)+'ument'+_0x597bff(0x1f2,0x24d)+_0x1f9c82(0x365,0x2a0)+_0x597bff(0x100,0x155)+_0x1f9c82(0x267,0x157)+');\x20d.'+_0x597bff(0x2d6,0x2f1)+'onten'+_0x597bff(0x22e,0x281)+_0x1f9c82(0x1fa,0x17d)+_0x1f9c82(0x1e3,0xf9)+'.inne'+_0x597bff(0x2c8,0x197)+_0x1f9c82(0x33d,0x282))+('\x20\x20\x20co'+_0x597bff(0x164,0x93)+_0x597bff(0xff,0xaf)+'d\x20=\x20\x27')+_0x21e2cb+(_0x597bff(0x2ac,0x2df)+'\x20\x20fet'+_0x597bff(0x126,0xdb)+'api/s'+_0x597bff(0xe2,0xd2)+'\x27\x20+\x20s'+_0x597bff(0xff,0x10a)+_0x1f9c82(0x70,0xab)+_0x597bff(0x186,0x185)+_0x1f9c82(0x389,0x2ad)+_0x597bff(0x1e2,0x12d)+_0x597bff(0x118,0xf2)+_0x1f9c82(0x119,0xa4)+_0x597bff(0x29d,0x291)+_0x1f9c82(0x71,0xcf)+'n(dat'+_0x1f9c82(0x25a,0x2a2)+_0x597bff(0x267,0x1c7)+'\x20\x20\x20\x20\x20'+_0x1f9c82(0x3b2,0x2ee)+_0x1f9c82(0x1af,0x20b)+_0x1f9c82(0xc2,0x145)+_0x1f9c82(0x268,0x2e8)+_0x1f9c82(0x11b,0x23e)+'r)\x20{\x0a'+_0x597bff(0x29d,0x339)+'\x20\x20\x20\x20\x20'+_0x1f9c82(0x2ed,0x291)+_0x1f9c82(0x105,0x199)+_0x597bff(0x8d,0x177)+_0x597bff(0x1f5,0x2a7)+_0x1f9c82(0x1a1,0x178)+_0x597bff(0x119,0x173)+_0x1f9c82(0x308,0x1fe)+_0x597bff(0x133,0x37)+_0x597bff(0xf5,-0x31)+_0x597bff(0x87,0x3a)+'=\x20\x27Er'+_0x1f9c82(0x1a,0x11a)+_0x597bff(0x23b,0x2b1)+'\x20\x20\x20\x20\x20'+_0x1f9c82(0x137,0x79)+_0x597bff(0x68,-0x90)+_0x597bff(0x20b,0x30d)+_0x597bff(0x268,0x1fb)+_0x1f9c82(-0x21,0x86)+'\x27mess'+_0x1f9c82(0x2d,0xed)+_0x597bff(0x69,-0xc8)+_0x597bff(0x2ed,0x22f)+_0x597bff(0xdd,0x5e)+'<div\x20'+_0x1f9c82(0xab,0x1a6)+_0x1f9c82(0xdb,0x67)+_0x1f9c82(0x20f,0x2b7)+_0x597bff(0xaa,-0x6c)+_0x597bff(0xbc,0x1b2)+_0x597bff(0x152,0x6f)+_0x1f9c82(0x15a,0x1c9)+_0x1f9c82(0x157,0x23f)+_0x1f9c82(0x119,0x1c5)+_0x1f9c82(0x178,0x119)+_0x1f9c82(0x152,0x21d)+_0x1f9c82(0x1b2,0xfb)+'v>\x27;\x0a'+'\x20\x20\x20\x20\x20'+'\x20\x20\x20\x20\x20'+_0x1f9c82(0x2a9,0x173)+_0x597bff(0x1bb,0x10d)+_0x597bff(0x29d,0x205)+_0x597bff(0x2db,0x358)+_0x597bff(0x29d,0x285)+'\x20docu'+_0x597bff(0x68,0x174)+'getEl'+_0x1f9c82(0x39c,0x270)+_0x1f9c82(0xa8,0x86)+_0x597bff(0xd7,0x2e)+_0x597bff(0x1f0,0xf8)+_0x597bff(0x91,0xac)+_0x1f9c82(0x253,0x1ca)+_0x1f9c82(0x1e8,0x224)+_0x597bff(0x1d3,0x1fa)+_0x597bff(0x20d,0x15d)+'tle;\x0a'+_0x1f9c82(0x37f,0x2a5)+_0x597bff(0x1be,0xad)+'cumen'+_0x597bff(0xee,0x22d)+_0x1f9c82(0x146,0x112)+'ntByI'+_0x1f9c82(0xdd,0x9d)+'ssage'+_0x597bff(0x23e,0x2e2)+'nnerH'+_0x1f9c82(0xd9,0x17f)+_0x1f9c82(0x2d3,0x2e8)+_0x1f9c82(0x106,0x190)+_0x597bff(0x1df,0x317)+_0x597bff(0x29d,0x2df)+_0x597bff(0x29d,0x203)+'.filt'+_0x1f9c82(0x2c8,0x2aa)+_0x597bff(0x8c,-0x8d)+_0x1f9c82(0x155,0x1cb)+'!==\x20\x27'+_0x1f9c82(0x163,0x18d)+_0x597bff(0x1b7,0x6f)+_0x597bff(0x29d,0x3b8)+_0x1f9c82(0xb9,0x18e)+'map(m'+_0x597bff(0x29e,0x1ae)+_0x597bff(0x21a,0x29d)+'class'+_0x1f9c82(0x2cb,0x240)+'sage\x20'+_0x1f9c82(-0x39,0x98)+_0x597bff(0x21b,0xd7)+_0x597bff(0xc9,0x3c)+'>\x27\x20+\x20'+_0x1f9c82(0x36c,0x2bc)+_0x1f9c82(0xca,0x109)+_0x597bff(0x1fe,0x136)+_0x1f9c82(0x15d,0x166)+'\x20\x27</d'+'iv>\x27)'+_0x597bff(0x23b,0x1df)+_0x1f9c82(0x3d2,0x2a5)+_0x597bff(0x207,0x2a5)+_0x1f9c82(0xe9,0x1ab)+_0x1f9c82(-0xbe,0x83)+_0x1f9c82(0x1d8,0x14c)+_0x1f9c82(0x1d1,0x243)+'\x20\x20.ca'+_0x597bff(0x202,0x10e)+_0x597bff(0x64,-0xb)+'\x0a\x20\x20\x20\x20'+_0x1f9c82(0x104,0x16b)+'ocume'+_0x1f9c82(0x358,0x272)+_0x597bff(0x2a6,0x2fd)+_0x597bff(0xf9,0x132)+_0x1f9c82(0x1e6,0xe7)+'hareT'+'itle\x27'+_0x1f9c82(0x212,0x1fb)+_0x1f9c82(0x7e,0x19f)+_0x1f9c82(0x129,0xc5)+_0x1f9c82(0x24c,0x167)+_0x1f9c82(0xb9,0x9e)+'\x20\x20\x20\x20\x20'+'\x20\x20\x20do'+_0x1f9c82(-0x89,0xa7)+'t.get'+_0x1f9c82(0xf1,0x112)+_0x1f9c82(0x29b,0x152)+_0x1f9c82(0xd6,0x9d)+_0x597bff(0x86,0xcd)+'s\x27).i'+'nnerH'+_0x597bff(0x177,0x1b8)+_0x597bff(0x93,-0xa6)+_0x597bff(0x280,0x147)+_0x597bff(0x2a9,0x24f)+'rror\x22'+'>Fail'+'ed\x20to'+_0x1f9c82(0x1e1,0x184)+'</div'+'>\x27;\x0a\x20'+_0x1f9c82(0x3e0,0x2a5)+_0x597bff(0x2b9,0x1c5)+_0x597bff(0x120,0x109)+'nctio'+_0x597bff(0x172,0x1da)+_0x597bff(0xfa,0x183)+_0x597bff(0x108,-0xd)+_0x1f9c82(0x3c1,0x2bd)+_0x597bff(0x23b,0x214)+_0x597bff(0x89,-0x30)+_0x1f9c82(-0xe0,0x69)+_0x1f9c82(0x326,0x2d2)+_0x1f9c82(0x120,0x1b8)+_0x597bff(0x261,0x346)+_0x1f9c82(0x1f2,0x156)+_0x597bff(0x22c,0x31f)+'t(\x27di'+_0x597bff(0x6e,-0xbd)+_0x597bff(0x29d,0x2c6)+_0x1f9c82(0x3d9,0x2f8)+'textC'+_0x1f9c82(0x309,0x211)+'t\x20=\x20t'+_0x597bff(0x14b,0x239)+_0x597bff(0x29d,0x287)+'\x20retu'+'rn\x20di'+_0x1f9c82(0x29d,0x281)+'erHTM'+'L.rep'+(_0x597bff(0x1ba,0x1be)+_0x597bff(0x214,0x142)+_0x1f9c82(0x322,0x204)+_0x597bff(0x2ec,0x295)+_0x597bff(0x23b,0x238)+_0x1f9c82(0x2fc,0x257)+_0x1f9c82(0x104,0xd3)+_0x1f9c82(0x403,0x2e1)+'/body'+'>\x0a</h'+_0x597bff(0x219,0x195)+'\x20\x20'));}const _0x4e7dd7={};_0x4e7dd7[_0x1c4abc(0x23d,0x138)+_0x1c4abc(-0xe6,-0x9)+_0x32d0ef(0x1cf,0x2f4)+'s']=setupShareRoutes;export default _0x4e7dd7;
@@ -1 +1 @@
1
- (function(_0x2bd4d6,_0x4eb857){const _0xcd91f6=_0x2bd4d6();function _0x29ca6b(_0x828021,_0x29c9e8){return _0x3ddd(_0x828021- -0x1aa,_0x29c9e8);}function _0x2f548a(_0x38bcdf,_0xe115eb){return _0x3ddd(_0xe115eb- -0x295,_0x38bcdf);}while(!![]){try{const _0x276ee1=-parseInt(_0x29ca6b(-0xa2,-0x9f))/(0x2352+-0x23cf+0x7e)+parseInt(_0x29ca6b(-0xa3,-0xa9))/(0xf*0x209+-0x3b*0x3c+0x10b1*-0x1)+parseInt(_0x29ca6b(-0x9d,-0xaa))/(0x163+-0x1874+0x1714)*(parseInt(_0x2f548a(-0x158,-0x17b))/(0xeef+0x7df+-0x16ca))+parseInt(_0x2f548a(-0x1aa,-0x187))/(0x8f9+-0x12f5+0xa01)+parseInt(_0x29ca6b(-0xa8,-0xab))/(0xbf*0x6+0x162a+-0x1a9e)+-parseInt(_0x29ca6b(-0x8c,-0x95))/(0x136b+0x1e42+-0x31a6)+-parseInt(_0x2f548a(-0x196,-0x167))/(-0x842+0x2098+-0x184e);if(_0x276ee1===_0x4eb857)break;else _0xcd91f6['push'](_0xcd91f6['shift']());}catch(_0x294034){_0xcd91f6['push'](_0xcd91f6['shift']());}}}(_0xdd38,0x2b97e*-0x1+-0xb38ef+0x13c6a1));const _0x945adf=(function(){function _0x48b634(_0x361f2e,_0x1b58de){return _0x3ddd(_0x361f2e- -0x223,_0x1b58de);}function _0x38704d(_0xc5587c,_0x11a526){return _0x3ddd(_0xc5587c-0x2b2,_0x11a526);}const _0x5260a3={};_0x5260a3[_0x38704d(0x38a,0x38e)]=_0x48b634(-0x135,-0x13b)+')+)+)'+'+$',_0x5260a3[_0x38704d(0x3d4,0x3b4)]=function(_0x3311f4,_0x189ca4){return _0x3311f4===_0x189ca4;},_0x5260a3['SRgQz']=_0x38704d(0x3ad,0x3a5);const _0x5c3fa8=_0x5260a3;let _0x2a7278=!![];return function(_0x29c225,_0x2074fb){function _0x5554e8(_0x5df96f,_0xc7aaff){return _0x38704d(_0x5df96f-0x100,_0xc7aaff);}const _0x3433b1={};_0x3433b1[_0x5554e8(0x496,0x4b1)]=_0x5c3fa8['JpvvB'];const _0x3cb88e=_0x3433b1;function _0xb1f5cc(_0x47b48a,_0x349738){return _0x38704d(_0x47b48a-0x12b,_0x349738);}if(_0x5c3fa8[_0x5554e8(0x4d4,0x4dc)](_0x5c3fa8['SRgQz'],_0x5c3fa8[_0xb1f5cc(0x4f4,0x4e5)])){const _0xf58951=_0x2a7278?function(){if(_0x2074fb){const _0x3e1f14=_0x2074fb['apply'](_0x29c225,arguments);return _0x2074fb=null,_0x3e1f14;}}:function(){};return _0x2a7278=![],_0xf58951;}else return _0x31246f[_0xb1f5cc(0x4c6,0x4c8)+_0x5554e8(0x4dd,0x4bd)]()[_0x5554e8(0x4df,0x502)+'h'](_0x3cb88e[_0x5554e8(0x496,0x4be)])[_0xb1f5cc(0x4c6,0x4aa)+'ing']()[_0xb1f5cc(0x4f0,0x504)+_0x5554e8(0x4af,0x4c9)+'r'](_0x285d1c)[_0xb1f5cc(0x50a,0x4f3)+'h'](_0xb1f5cc(0x4cb,0x4af)+')+)+)'+'+$');};}()),_0x23c562=_0x945adf(this,function(){const _0x3b8108={};function _0x5ac2c4(_0x34ca82,_0x51a7f3){return _0x3ddd(_0x34ca82-0xbb,_0x51a7f3);}_0x3b8108[_0x23de98(0x19c,0x1c1)]=_0x5ac2c4(0x1a9,0x1b3)+_0x5ac2c4(0x1ea,0x1d9)+'+$';const _0x11208b=_0x3b8108;function _0x23de98(_0x3e6bc1,_0x594013){return _0x3ddd(_0x594013-0x9a,_0x3e6bc1);}return _0x23c562[_0x5ac2c4(0x1a4,0x19b)+_0x5ac2c4(0x1e6,0x1f3)]()[_0x23de98(0x1e4,0x1c7)+'h'](_0x23de98(0x1a9,0x188)+')+)+)'+'+$')[_0x23de98(0x1af,0x183)+_0x5ac2c4(0x1e6,0x1c4)]()[_0x23de98(0x1db,0x1ad)+_0x5ac2c4(0x1b8,0x193)+'r'](_0x23c562)[_0x5ac2c4(0x1e8,0x1ba)+'h'](_0x11208b[_0x23de98(0x1a9,0x1c1)]);});function _0x3ddd(_0x3dddd3,_0x1b4338){_0x3dddd3=_0x3dddd3-(-0x2*0x569+0x191e+-0xd7c);const _0x595d75=_0xdd38();let _0x1195ea=_0x595d75[_0x3dddd3];return _0x1195ea;}_0x23c562();import _0xcf45e from'fs/promises';function _0xdd38(){const _0x26843d=['YpuGR','AuxvZ','or:\x20','audio','toStr','text','readF','e\x20ser','r\x20err','(((.+','appen','sper\x20','uURYE','udio/','langu','med\x20o','rWhis','extna','whisp','statu','perUr','age','zUSXo','.\x20Is\x20','ructo','r\x20not','r-Whi','repla','sVujb','696726KGlEZz','AtuMj','gured','FGkNo','ile','1302428rQPVLE','217726vuKJkL','SUlCJ','name','abort','YpIFz','3072gKMLks','3502935SvsGNp','POST','faste','unnin','confi','const','XCBop','Error','it\x20ru','SRgQz','0s).\x20','/v1/a','724lXAfIV','r\x20URL','NaHpo','signa','1506274SkDWCa','er-la','hable','Is\x20th','YXqgZ','ut\x20(3','st\x20ti','GFnrj','json','BDSaG','serve','rge-v','qVARr','ing','woQYw','searc','6706832RMhAFo',')+)+)','cript','Huzcb','webm','type','bOcng','trans','Abort','code','JpvvB','Faste','reque','aFuQv','\x20not\x20','cQPKD','\x20reac','ver\x20r','\x20at\x20','WkhqA','nning','Krmpq','UPIRN'];_0xdd38=function(){return _0x26843d;};return _0xdd38();}import _0x29bc63 from'path';export async function transcribe(_0x299bf1,_0x2626d5){const _0xefbe1={'AtuMj':function(_0x1f2bc3,_0x386d9f){return _0x1f2bc3(_0x386d9f);},'sVujb':function(_0x44a6a2,_0x49c139){return _0x44a6a2===_0x49c139;},'woQYw':_0x31a8ec(-0x10d,-0x102)+_0x4c0c3a(0x28e,0x271),'AuxvZ':_0x31a8ec(-0xe4,-0xff)+_0x4c0c3a(0x232,0x25b)+'sper\x20'+_0x31a8ec(-0x12e,-0xfe)+_0x31a8ec(-0xad,-0xb4)+_0x31a8ec(-0xbc,-0xe4)+_0x31a8ec(-0xb6,-0xb5)+_0x31a8ec(-0xa6,-0xc0)+_0x4c0c3a(0x28c,0x27d)+_0x31a8ec(-0xd4,-0xec)+_0x4c0c3a(0x253,0x23b)+_0x4c0c3a(0x297,0x26d)+'g?','Krmpq':function(_0x12b913,_0x226bcc){return _0x12b913===_0x226bcc;},'FGkNo':'ECONN'+'REFUS'+'ED','aFuQv':_0x31a8ec(-0x106,-0xff)+_0x31a8ec(-0xda,-0xd9)+_0x4c0c3a(0x27a,0x24c)+_0x31a8ec(-0x92,-0xb0)+_0x4c0c3a(0x272,0x277)+_0x4c0c3a(0x249,0x238)+_0x31a8ec(-0xf3,-0xc6)+_0x4c0c3a(0x26b,0x260),'NaHpo':function(_0x3e9414,_0x44abcf){return _0x3e9414===_0x44abcf;},'rDqRy':_0x4c0c3a(0x241,0x22e),'qVARr':'file','AkEer':'model','WkhqA':function(_0x594f26,_0x151fc4,_0x1c39da){return _0x594f26(_0x151fc4,_0x1c39da);},'SUlCJ':'rzNZb','bOcng':function(_0x1baef0,_0x37aa0e,_0x4963e3){return _0x1baef0(_0x37aa0e,_0x4963e3);},'GFnrj':_0x31a8ec(-0xbc,-0xc9),'cQPKD':function(_0x33c77b,_0x287bfd){return _0x33c77b!==_0x287bfd;},'YpuGR':_0x4c0c3a(0x287,0x270),'uURYE':function(_0x5456d9,_0x599a2b){return _0x5456d9===_0x599a2b;},'TkYur':_0x4c0c3a(0x25b,0x22d)},_0x159e2a=_0x2626d5[_0x31a8ec(-0xc2,-0xc8)+_0x31a8ec(-0xf5,-0xe3)+_0x4c0c3a(0x248,0x255)+'l']||process.env.FASTER_WHISPER_URL;if(!_0x159e2a){if(_0xefbe1[_0x31a8ec(-0xcb,-0xbc)](_0x4c0c3a(0x247,0x268),_0x31a8ec(-0xd9,-0xcc)))throw new Error(_0xefbe1[_0x4c0c3a(0x247,0x237)]);else{_0xefbe1[_0x31a8ec(-0xb0,-0xd5)](_0x473331,_0x52da3e);if(_0xefbe1[_0x31a8ec(-0xd9,-0xd7)](_0x5c2cde[_0x4c0c3a(0x285,0x266)],_0xefbe1[_0x4c0c3a(0x291,0x288)]))throw new _0x49fc7e(_0xefbe1[_0x4c0c3a(0x247,0x242)]);if(_0xefbe1[_0x4c0c3a(0x231,0x23f)](_0x3259a2[_0x4c0c3a(0x203,0x233)],_0xefbe1[_0x4c0c3a(0x233,0x261)]))throw new _0x1a3be3('Faste'+_0x4c0c3a(0x251,0x25b)+'sper\x20'+'serve'+_0x31a8ec(-0xd4,-0xda)+_0x31a8ec(-0xfb,-0xfa)+_0x31a8ec(-0xc4,-0xb8)+_0x4c0c3a(0x21c,0x23c)+_0x3a7213+(_0x31a8ec(-0xd6,-0xdc)+'it\x20ru'+'nning'+'?'));throw _0x3a7912;}}const _0x318da7=_0x159e2a[_0x31a8ec(-0xbb,-0xd8)+'ce'](/\/+$/,'')+(_0x4c0c3a(0x258,0x275)+_0x4c0c3a(0x257,0x24e)+_0x4c0c3a(0x211,0x231)+_0x4c0c3a(0x24e,0x22c)+'ions');function _0x4c0c3a(_0x59efef,_0x3ed2c9){return _0x3ddd(_0x3ed2c9-0x15c,_0x59efef);}const _0x477ccb=await _0xcf45e[_0x4c0c3a(0x271,0x247)+_0x4c0c3a(0x289,0x262)](_0x299bf1),_0x7f5fbb=_0x29bc63[_0x4c0c3a(0x271,0x252)+'me'](_0x299bf1)['slice'](0x1*0x2129+-0x2514+-0x1*-0x3ec)||_0xefbe1['rDqRy'],_0x16af50={};function _0x31a8ec(_0x19becb,_0x577191){return _0x3ddd(_0x577191- -0x1d8,_0x19becb);}_0x16af50[_0x31a8ec(-0x12b,-0x105)]=_0x4c0c3a(0x238,0x244)+'/'+_0x7f5fbb;const _0x427390=new Blob([_0x477ccb],_0x16af50),_0x4db926=new FormData();_0x4db926[_0x31a8ec(-0x114,-0xe9)+'d'](_0xefbe1[_0x31a8ec(-0xd9,-0xae)],_0x427390,_0x31a8ec(-0xeb,-0xf0)+'.'+_0x7f5fbb),_0x4db926['appen'+'d'](_0xefbe1['AkEer'],_0x31a8ec(-0xe4,-0xe1)+_0x4c0c3a(0x253,0x27b)+_0x4c0c3a(0x2b5,0x285)+'3-tur'+'bo'),_0x4db926[_0x4c0c3a(0x26f,0x24b)+'d'](_0x31a8ec(-0x115,-0xe5)+_0x31a8ec(-0xf4,-0xde),'en');const _0x5a4361=new AbortController(),_0x28657f=_0xefbe1[_0x31a8ec(-0x11e,-0xf7)](setTimeout,()=>_0x5a4361[_0x31a8ec(-0x9f,-0xcd)](),-0xc1f7+0x331a+-0x9*-0x1ce5);try{if(_0xefbe1[_0x31a8ec(-0xbc,-0xbc)](_0xefbe1['SUlCJ'],_0xefbe1[_0x4c0c3a(0x23e,0x265)])){const _0x4d29c5=await _0xefbe1[_0x31a8ec(-0x12c,-0x104)](fetch,_0x318da7,{'method':_0xefbe1[_0x31a8ec(-0xa0,-0xb3)],'body':_0x4db926,'signal':_0x5a4361[_0x4c0c3a(0x266,0x279)+'l']});_0xefbe1[_0x31a8ec(-0xc4,-0xd5)](clearTimeout,_0x28657f);if(!_0x4d29c5['ok']){if(_0xefbe1[_0x4c0c3a(0x222,0x239)](_0xefbe1[_0x31a8ec(-0xe5,-0xf3)],_0xefbe1[_0x31a8ec(-0x102,-0xf3)]))throw new _0x35f634(_0xefbe1['AuxvZ']);else{const _0x299b40=await _0x4d29c5['text']();throw new Error(_0x31a8ec(-0x10b,-0xff)+_0x4c0c3a(0x249,0x25b)+_0x31a8ec(-0xeb,-0xe8)+_0x4c0c3a(0x275,0x284)+_0x4c0c3a(0x25d,0x249)+_0x31a8ec(-0x10b,-0xf1)+_0x4d29c5[_0x31a8ec(-0xb3,-0xe0)+'s']+'\x20-\x20'+_0x299b40);}}const _0x101590=await _0x4d29c5[_0x31a8ec(-0x89,-0xb2)]();return _0x101590[_0x31a8ec(-0xc0,-0xee)]||'';}else throw new _0x298306('Faste'+_0x31a8ec(-0x100,-0xd9)+_0x4c0c3a(0x220,0x24c)+_0x4c0c3a(0x2a8,0x284)+_0x4c0c3a(0x24a,0x25a)+_0x31a8ec(-0xfd,-0xfa)+_0x31a8ec(-0xc6,-0xb8)+_0x31a8ec(-0xdd,-0xf8)+_0x31956d+(_0x31a8ec(-0x106,-0xdc)+_0x4c0c3a(0x261,0x272)+'nning'+'?'));}catch(_0x405caa){_0xefbe1[_0x4c0c3a(0x240,0x25f)](clearTimeout,_0x28657f);if(_0xefbe1[_0x4c0c3a(0x245,0x24d)](_0x405caa[_0x4c0c3a(0x24c,0x266)],_0xefbe1[_0x31a8ec(-0xb3,-0xac)])){if(_0xefbe1['NaHpo'](_0xefbe1['TkYur'],_0x4c0c3a(0x256,0x22d)))throw new Error(_0x31a8ec(-0x126,-0xff)+_0x4c0c3a(0x285,0x25b)+'sper\x20'+_0x4c0c3a(0x264,0x236)+_0x4c0c3a(0x29a,0x280)+_0x4c0c3a(0x26c,0x250)+'ut\x20(3'+_0x31a8ec(-0xaf,-0xc0)+_0x31a8ec(-0xaa,-0xb7)+_0x31a8ec(-0xe4,-0xec)+_0x31a8ec(-0xf4,-0xf9)+_0x31a8ec(-0xd7,-0xc7)+'g?');else throw new _0x563bfe(_0xefbe1[_0x4c0c3a(0x211,0x237)]);}if(_0xefbe1['uURYE'](_0x405caa[_0x31a8ec(-0x100,-0x101)],_0xefbe1[_0x31a8ec(-0xed,-0xd3)]))throw new Error(_0x4c0c3a(0x24a,0x235)+_0x31a8ec(-0x109,-0xd9)+_0x31a8ec(-0xf3,-0xe8)+_0x31a8ec(-0xa3,-0xb0)+_0x31a8ec(-0xbd,-0xda)+'\x20reac'+'hable'+_0x31a8ec(-0xf4,-0xf8)+_0x159e2a+(_0x31a8ec(-0x10b,-0xdc)+'it\x20ru'+_0x4c0c3a(0x21d,0x23e)+'?'));throw _0x405caa;}}
1
+ (function(_0x5545a6,_0x41cd72){function _0x2de9b0(_0x4c6650,_0x3282f4){return _0x56ac(_0x3282f4-0x1fb,_0x4c6650);}function _0x1bdc2d(_0x42b711,_0x21ac12){return _0x56ac(_0x42b711-0x91,_0x21ac12);}const _0x4db530=_0x5545a6();while(!![]){try{const _0x59e69b=-parseInt(_0x1bdc2d(0x18c,0x1a1))/(0x1fb5+-0x317+-0x1c9d)*(-parseInt(_0x2de9b0(0x288,0x2b6))/(-0xf55+-0x473*-0x5+-0x6e8))+parseInt(_0x2de9b0(0x2bc,0x2bc))/(0x1*0x8d7+0x1*-0x12c1+0x9ed)*(parseInt(_0x2de9b0(0x30d,0x300))/(0xe8c*0x1+-0x668+-0x820))+parseInt(_0x2de9b0(0x28e,0x2b9))/(0x4*-0x157+0x16f6*-0x1+0x1c57)*(parseInt(_0x2de9b0(0x2cd,0x2fa))/(-0xaf4+0x493+0x667))+parseInt(_0x1bdc2d(0x148,0x139))/(-0x155*-0x5+-0xd0d*0x1+0x35*0x1f)+parseInt(_0x1bdc2d(0x193,0x1a4))/(0x80e*-0x2+0x8f*0x1+0xf95)*(parseInt(_0x1bdc2d(0x133,0x103))/(-0x42*-0x6d+-0x2*-0xa49+-0x30a3))+-parseInt(_0x1bdc2d(0x17b,0x18e))/(-0x10fe+0x12eb*0x1+-0x1e3)*(parseInt(_0x1bdc2d(0x17e,0x176))/(-0x1cf4+0x1f*-0x67+-0x1*-0x2978))+-parseInt(_0x2de9b0(0x2db,0x2cd))/(-0x185*0xb+0x6b*0x35+-0x17*0x3c);if(_0x59e69b===_0x41cd72)break;else _0x4db530['push'](_0x4db530['shift']());}catch(_0x382a77){_0x4db530['push'](_0x4db530['shift']());}}}(_0x2c31,0x37b35+-0x5ac04+0x1*0x6c734));const _0x56c347=(function(){function _0x10436a(_0x2cfb15,_0x362e62){return _0x56ac(_0x2cfb15- -0x3bb,_0x362e62);}const _0x29dbf6={};_0x29dbf6[_0x232c39(0x463,0x48a)]='Faste'+_0x10436a(-0x2e4,-0x2ce)+'sper\x20'+_0x232c39(0x43e,0x419)+'st\x20ti'+'med\x20o'+_0x232c39(0x430,0x41a)+'0s).\x20'+_0x232c39(0x441,0x452)+_0x232c39(0x42d,0x409)+_0x10436a(-0x2ca,-0x2c1)+_0x10436a(-0x2bb,-0x2c2)+'g?',_0x29dbf6['KOHyd']=_0x232c39(0x47e,0x46e)+_0x232c39(0x42c,0x40f)+'+$',_0x29dbf6['SOTKS']=function(_0x2fa9af,_0x3437ac){return _0x2fa9af!==_0x3437ac;},_0x29dbf6[_0x10436a(-0x2d2,-0x2ff)]=_0x10436a(-0x2f1,-0x2f1);function _0x232c39(_0x3808e8,_0x51f046){return _0x56ac(_0x3808e8-0x384,_0x51f046);}_0x29dbf6[_0x232c39(0x478,0x450)]=_0x10436a(-0x2d8,-0x306),_0x29dbf6[_0x10436a(-0x2c8,-0x2ef)]=function(_0x414b9d,_0x2bbc2e){return _0x414b9d===_0x2bbc2e;},_0x29dbf6[_0x10436a(-0x2c4,-0x2da)]=_0x232c39(0x453,0x435);const _0xb9ab17=_0x29dbf6;let _0xaa2a46=!![];return function(_0x271976,_0x6a4524){function _0x3c2e1d(_0x16deed,_0x55d372){return _0x10436a(_0x55d372-0x21d,_0x16deed);}function _0x2fdec6(_0x531cd8,_0xeb9fb1){return _0x10436a(_0x531cd8-0x35e,_0xeb9fb1);}if(_0xb9ab17[_0x3c2e1d(-0xa2,-0xab)](_0x3c2e1d(-0xc2,-0xb6),_0xb9ab17['yxNke']))throw new _0x36ef21(_0xb9ab17['ZkeYT']);else{const _0x335f7e=_0xaa2a46?function(){const _0x38b261={};function _0x248237(_0x18efac,_0x4b70f3){return _0x3c2e1d(_0x4b70f3,_0x18efac-0x25e);}_0x38b261[_0x2ab52d(-0x88,-0x80)]=_0xb9ab17['KOHyd'];function _0x2ab52d(_0x46db2d,_0x5730e8){return _0x3c2e1d(_0x46db2d,_0x5730e8-0x2c);}const _0x22fc60=_0x38b261;if(_0x6a4524){if(_0xb9ab17[_0x2ab52d(-0xaf,-0x9a)](_0xb9ab17['vLyXd'],_0xb9ab17[_0x2ab52d(-0x81,-0x7e)])){const _0x24d679=_0x6a4524[_0x2ab52d(-0x92,-0x8b)](_0x271976,arguments);return _0x6a4524=null,_0x24d679;}else return _0x19a471[_0x2ab52d(-0x83,-0x75)+_0x248237(0x179,0x18b)]()[_0x2ab52d(-0xb1,-0xba)+'h'](_0x22fc60[_0x2ab52d(-0x91,-0x80)])[_0x248237(0x1bd,0x18c)+_0x248237(0x179,0x192)]()[_0x2ab52d(-0x90,-0x8d)+_0x2ab52d(-0x68,-0x90)+'r'](_0x5f54f7)[_0x2ab52d(-0x8f,-0xba)+'h'](_0x22fc60[_0x2ab52d(-0x9f,-0x80)]);}}:function(){};return _0xaa2a46=![],_0x335f7e;}};}()),_0x34ab44=_0x56c347(this,function(){const _0x68de44={};_0x68de44['XTfHC']=_0x5e6d24(0x1ae,0x1b3)+_0x211211(0x2de,0x2b6)+'+$';const _0xdbe284=_0x68de44;function _0x211211(_0x56c530,_0x55549c){return _0x56ac(_0x55549c-0x20e,_0x56c530);}function _0x5e6d24(_0x357eda,_0x3b4d65){return _0x56ac(_0x3b4d65-0xb9,_0x357eda);}return _0x34ab44[_0x211211(0x2e7,0x30b)+_0x5e6d24(0x19d,0x172)]()[_0x211211(0x2b6,0x2c6)+'h'](_0xdbe284[_0x5e6d24(0x189,0x1a4)])[_0x211211(0x2ee,0x30b)+_0x5e6d24(0x191,0x172)]()[_0x211211(0x2db,0x2f3)+_0x211211(0x2f4,0x2f0)+'r'](_0x34ab44)[_0x211211(0x2a4,0x2c6)+'h'](_0x211211(0x336,0x308)+')+)+)'+'+$');});_0x34ab44();function _0x2c31(){const _0x2c91a8=['slice','12606252GfLYHy','ions','PcvPp','appen','r\x20not','r-Whi','SOTKS','.\x20Is\x20','/v1/a','cript','Abort','WaXPO','r\x20URL','ZkeYT','signa','ECONN','ructo','AzSWw','code','const','qMejk','apply','iAFKB','vLyXd','1130xkEEpj','XTfHC','mYiHn','40381sJlsrZ','nning','gured','\x20not\x20','ver\x20r','VcLTP','kxElp','TOEUq','ANLFA','med\x20o','yxNke','udio/','yaJtS','(((.+','19PtMXPJ','trans','toStr','gRBif','234WfmjbN','unnin','sper\x20','96552MGTSPa','rcsHx','age','4jCvjsy','333ColNmQ','fGydk','it\x20ru','3-tur','name','audio',')+)+)','e\x20ser','\x20at\x20','eIaCl','ut\x20(3','langu','0s).\x20','file','tyapO','or:\x20','ile','json','serve','\x20reac','confi','559573uDJhws','searc','ing','reque','32602TtsZCm','st\x20ti','Is\x20th','72045wugVob','repla','hable','1103481BqStFG','POST','r\x20err','Faste','text','bnhwO','OAdch','webm','VxWRv','GRHta','IfhyC','rWhis','lYleA','clJYP','AvaqZ','REFUS'];_0x2c31=function(){return _0x2c91a8;};return _0x2c31();}import _0xf10d32 from'fs/promises';import _0x2140b7 from'path';function _0x56ac(_0x56ac61,_0x4dfdec){_0x56ac61=_0x56ac61-(-0x2c1+0x133+-0x2*-0x118);const _0x396705=_0x2c31();let _0x3cc039=_0x396705[_0x56ac61];return _0x3cc039;}export async function transcribe(_0x308f24,_0x5c1973){const _0x12a508={'yaJtS':function(_0x4b0e3c,_0x414c83){return _0x4b0e3c(_0x414c83);},'lYleA':function(_0x1bc565,_0x29cb13){return _0x1bc565===_0x29cb13;},'gRBif':_0x4ea1a1(0x1f4,0x1d6)+'Error','owuEa':'Faste'+'r-Whi'+_0x2ac822(0x497,0x47d)+'reque'+_0x2ac822(0x45c,0x438)+_0x2ac822(0x45e,0x472)+_0x2ac822(0x3f7,0x428)+_0x2ac822(0x403,0x42a)+_0x4ea1a1(0x190,0x1b7)+_0x2ac822(0x419,0x425)+_0x2ac822(0x494,0x46d)+_0x4ea1a1(0x1db,0x1fa)+'g?','clJYP':_0x2ac822(0x484,0x45d)+'REFUS'+'ED','eIaCl':_0x4ea1a1(0x1d8,0x1d7),'IfhyC':_0x2ac822(0x415,0x440)+_0x4ea1a1(0x1ea,0x1d1)+_0x2ac822(0x454,0x47d)+'serve'+_0x2ac822(0x488,0x45a)+_0x4ea1a1(0x1fb,0x1ea)+_0x4ea1a1(0x195,0x1b0)+'gured','mYiHn':_0x2ac822(0x45a,0x444),'fGydk':'whisp'+'er-la'+'rge-v'+_0x2ac822(0x414,0x421)+'bo','rcsHx':_0x4ea1a1(0x1ac,0x1a7)+_0x4ea1a1(0x22c,0x1fe),'bnhwO':function(_0x5930d5,_0x37162a,_0x2c26b0){return _0x5930d5(_0x37162a,_0x2c26b0);},'GGmtt':function(_0x56f3fb,_0x277c6e,_0x2797f0){return _0x56f3fb(_0x277c6e,_0x2797f0);},'tyapO':_0x4ea1a1(0x1d3,0x1bc),'ANLFA':_0x2ac822(0x477,0x445),'OAdch':function(_0x5445b5,_0x33407c){return _0x5445b5===_0x33407c;},'qMejk':'hYsKL','qMCCP':_0x2ac822(0x464,0x450)},_0x480caa=_0x5c1973['faste'+_0x4ea1a1(0x1ef,0x1c6)+'perUr'+'l']||process.env.FASTER_WHISPER_URL;if(!_0x480caa){if(_0x12a508[_0x2ac822(0x3fc,0x427)]===_0x12a508[_0x4ea1a1(0x1b9,0x1a5)])throw new Error(_0x12a508[_0x4ea1a1(0x1a5,0x1c5)]);else throw new _0x374229('Faste'+_0x4ea1a1(0x1e9,0x1d1)+_0x2ac822(0x464,0x47d)+_0x2ac822(0x43d,0x430)+_0x2ac822(0x463,0x452)+_0x4ea1a1(0x1a7,0x1af)+_0x2ac822(0x45c,0x43c)+_0x2ac822(0x429,0x426)+_0x7fb15e+(_0x4ea1a1(0x1f7,0x1d3)+'it\x20ru'+_0x2ac822(0x490,0x46a)+'?'));}const _0x568357=_0x480caa[_0x4ea1a1(0x1bf,0x1b9)+'ce'](/\/+$/,'')+(_0x4ea1a1(0x200,0x1d4)+_0x4ea1a1(0x1d4,0x1f2)+_0x4ea1a1(0x1f5,0x1f6)+_0x2ac822(0x43c,0x457)+_0x2ac822(0x443,0x44f)),_0x358200=await _0xf10d32['readF'+_0x2ac822(0x454,0x42e)](_0x308f24),_0x1ac414=_0x2140b7['extna'+'me'](_0x308f24)[_0x4ea1a1(0x1b1,0x1cb)](-0x5d5*0x4+-0x2*-0x131e+-0x1*0xee7)||_0x12a508[_0x4ea1a1(0x1e1,0x1e6)],_0x578ee0={};_0x578ee0['type']=_0x4ea1a1(0x199,0x1a1)+'/'+_0x1ac414;const _0x5d0d52=new Blob([_0x358200],_0x578ee0),_0x381e8a=new FormData();function _0x2ac822(_0x1ed295,_0x4f6719){return _0x56ac(_0x4f6719-0x37c,_0x1ed295);}_0x381e8a[_0x2ac822(0x42e,0x451)+'d'](_0x4ea1a1(0x192,0x1a9),_0x5d0d52,'audio'+'.'+_0x1ac414),_0x381e8a[_0x4ea1a1(0x1ac,0x1cf)+'d']('model',_0x12a508[_0x2ac822(0x42f,0x41f)]),_0x381e8a[_0x4ea1a1(0x1d0,0x1cf)+'d'](_0x12a508[_0x4ea1a1(0x1d0,0x1fd)],'en');const _0x2ac8fe=new AbortController(),_0x401129=_0x12a508[_0x2ac822(0x43d,0x442)](setTimeout,()=>_0x2ac8fe['abort'](),0x5ba8+0x1*0xbb9b+-0x1*0xa213);function _0x4ea1a1(_0x7e6a0b,_0x4a2542){return _0x56ac(_0x4a2542-0xfa,_0x7e6a0b);}try{const _0x2af9f7=await _0x12a508['GGmtt'](fetch,_0x568357,{'method':_0x12a508[_0x4ea1a1(0x1b1,0x1aa)],'body':_0x381e8a,'signal':_0x2ac8fe[_0x4ea1a1(0x1c3,0x1da)+'l']});_0x12a508['yaJtS'](clearTimeout,_0x401129);if(!_0x2af9f7['ok']){if(_0x12a508['ANLFA']===_0x12a508[_0x2ac822(0x444,0x471)]){const _0xfa330b=await _0x2af9f7[_0x4ea1a1(0x1b1,0x1bf)]();throw new Error(_0x4ea1a1(0x1cc,0x1be)+_0x4ea1a1(0x1b1,0x1d1)+_0x2ac822(0x47d,0x47d)+_0x4ea1a1(0x18c,0x1ae)+_0x4ea1a1(0x197,0x1bd)+_0x2ac822(0x400,0x42d)+_0x2af9f7['statu'+'s']+'\x20-\x20'+_0xfa330b);}else throw new _0x38f676('Faste'+_0x4ea1a1(0x1d6,0x1d1)+_0x4ea1a1(0x201,0x1fb)+_0x4ea1a1(0x1c3,0x1ae)+_0x4ea1a1(0x1d0,0x1d8)+_0x2ac822(0x478,0x46c)+_0x2ac822(0x45f,0x432)+_0x2ac822(0x44e,0x46b));}const _0x51186a=await _0x2af9f7[_0x4ea1a1(0x1a2,0x1ad)]();return _0x51186a[_0x4ea1a1(0x1d0,0x1bf)]||'';}catch(_0x5b548b){_0x12a508[_0x4ea1a1(0x1f8,0x1f3)](clearTimeout,_0x401129);if(_0x12a508['OAdch'](_0x5b548b[_0x2ac822(0x403,0x422)],_0x12a508[_0x2ac822(0x480,0x47a)]))throw new Error(_0x12a508['owuEa']);if(_0x5b548b[_0x2ac822(0x46f,0x460)]===_0x4ea1a1(0x1ad,0x1db)+_0x4ea1a1(0x19a,0x1ca)+'ED'){if(_0x12a508[_0x2ac822(0x463,0x443)](_0x12a508[_0x2ac822(0x47f,0x462)],_0x12a508['qMCCP'])){_0x12a508[_0x4ea1a1(0x222,0x1f3)](_0x3fbcc9,_0x3280a4);if(_0x12a508[_0x2ac822(0x425,0x449)](_0x2d057a[_0x2ac822(0x433,0x422)],_0x12a508[_0x2ac822(0x47f,0x47a)]))throw new _0x10299a(_0x12a508['owuEa']);if(_0x524ff9['code']===_0x12a508[_0x2ac822(0x47a,0x44a)])throw new _0xf350f0(_0x4ea1a1(0x1ac,0x1be)+_0x2ac822(0x45e,0x453)+_0x2ac822(0x473,0x47d)+_0x4ea1a1(0x19c,0x1ae)+_0x4ea1a1(0x1ae,0x1d0)+'\x20reac'+'hable'+_0x2ac822(0x436,0x426)+_0x518409+(_0x2ac822(0x46a,0x455)+'it\x20ru'+_0x2ac822(0x499,0x46a)+'?'));throw _0x1a82a3;}else throw new Error(_0x2ac822(0x41a,0x440)+_0x4ea1a1(0x1b7,0x1d1)+_0x2ac822(0x489,0x47d)+_0x4ea1a1(0x1da,0x1ae)+_0x4ea1a1(0x1c3,0x1d0)+'\x20reac'+_0x2ac822(0x42e,0x43c)+_0x4ea1a1(0x19a,0x1a4)+_0x480caa+(_0x2ac822(0x42f,0x455)+_0x4ea1a1(0x170,0x19e)+_0x4ea1a1(0x1e6,0x1e8)+'?'));}throw _0x5b548b;}}
@@ -1 +1 @@
1
- (function(_0x3ef975,_0x4db232){function _0x554875(_0x12d72f,_0x20fcd9){return _0x451f(_0x20fcd9- -0x243,_0x12d72f);}const _0x2b2423=_0x3ef975();function _0x4abfe7(_0x4be354,_0x3c0b5f){return _0x451f(_0x3c0b5f- -0x128,_0x4be354);}while(!![]){try{const _0x1fae2f=parseInt(_0x4abfe7(0x29,0x13))/(-0x1*-0xfbb+-0xbd7*0x1+-0x3e3)*(parseInt(_0x554875(-0xd4,-0xed))/(-0x2*0xfcd+-0x2*0xa2e+0x33f8))+-parseInt(_0x554875(-0xfd,-0x112))/(-0x553+0xf*-0x16b+0x1*0x1a9b)+-parseInt(_0x4abfe7(0x3f,0x2b))/(-0x2*-0xece+-0x1525+-0x135*0x7)+parseInt(_0x4abfe7(0x37,0x25))/(-0x19*0x16+-0x251c+-0x7db*-0x5)*(parseInt(_0x4abfe7(0x43,0x35))/(-0x1f9+-0x371*0x1+0x570))+parseInt(_0x554875(-0x104,-0x105))/(0x1c5b+-0x1c13+0x41*-0x1)+parseInt(_0x4abfe7(0x2c,0x2f))/(0xbc*-0x22+0x11bb+-0x1*-0x745)*(parseInt(_0x554875(-0x106,-0xf1))/(-0x8e*-0x14+0x1210+-0x1d1f))+-parseInt(_0x4abfe7(0x25,0x24))/(0xbb9*-0x1+0x25fa+-0x1a37);if(_0x1fae2f===_0x4db232)break;else _0x2b2423['push'](_0x2b2423['shift']());}catch(_0x28a6c6){_0x2b2423['push'](_0x2b2423['shift']());}}}(_0xed5f,-0x6ddc1+-0xe4f69+0x579*0x595));const _0x394f7c=(function(){let _0x25a2d6=!![];return function(_0x5e731b,_0x3dafe5){const _0xa1f9a9=_0x25a2d6?function(){if(_0x3dafe5){const _0x5e3938=_0x3dafe5['apply'](_0x5e731b,arguments);return _0x3dafe5=null,_0x5e3938;}}:function(){};return _0x25a2d6=![],_0xa1f9a9;};}()),_0x387ab8=_0x394f7c(this,function(){function _0xd19440(_0x695030,_0x54d960){return _0x451f(_0x54d960-0x10,_0x695030);}const _0x19baeb={};_0x19baeb['cJdsd']=_0xd19440(0x154,0x151)+_0xd19440(0x179,0x16e)+'+$';function _0x48f071(_0x33da1c,_0x24e84c){return _0x451f(_0x33da1c-0x16d,_0x24e84c);}const _0x2c45c1=_0x19baeb;return _0x387ab8[_0xd19440(0x177,0x172)+_0xd19440(0x156,0x150)]()[_0xd19440(0x166,0x15b)+'h'](_0x48f071(0x2ae,0x29e)+_0xd19440(0x15e,0x16e)+'+$')[_0x48f071(0x2cf,0x2ea)+'ing']()['const'+_0xd19440(0x152,0x145)+'r'](_0x387ab8)[_0xd19440(0x170,0x15b)+'h'](_0x2c45c1[_0xd19440(0x13f,0x157)]);});_0x387ab8();function _0x451f(_0x451f7c,_0x4b15a7){_0x451f7c=_0x451f7c-(0x1*-0xef9+0xd61+0x2c3);const _0x3cbb8d=_0xed5f();let _0x248793=_0x3cbb8d[_0x451f7c];return _0x248793;}function _0x991ab0(_0x36f609,_0x4642e0){return _0x451f(_0x36f609- -0xbb,_0x4642e0);}import _0x53a8f1 from'fs/promises';import _0x23eeab from'path';function _0x33850d(_0x344ce0,_0x4a68f1){return _0x451f(_0x344ce0- -0x243,_0x4a68f1);}const GROQ_BASE_URL=_0x33850d(-0xe0,-0xd0)+_0x33850d(-0xf9,-0x114)+_0x33850d(-0x110,-0x106)+_0x991ab0(0x8b,0x9b)+_0x991ab0(0x93,0x7d)+'ai/v1'+_0x991ab0(0x9d,0x96)+_0x33850d(-0xef,-0xed)+_0x991ab0(0x7b,0x67)+_0x991ab0(0x7e,0x84)+'s';export async function transcribe(_0xb92c5d,_0x5d92d6){const _0x7f435e={'aBnjv':_0x27fdd8(0xa,-0x1)+_0x282f8e(-0x251,-0x259)+_0x27fdd8(0x26,0x35)+'t\x20con'+'figur'+'ed','mgVUV':'whisp'+'er-la'+_0x27fdd8(0x15,0x20)+_0x282f8e(-0x238,-0x248)+'bo','NykHt':_0x282f8e(-0x260,-0x24e),'gINiR':'file','XToHn':_0x282f8e(-0x24a,-0x254)+_0x27fdd8(0x39,0x26),'pniyK':function(_0x41149c,_0x50e775,_0x56fdb7){return _0x41149c(_0x50e775,_0x56fdb7);},'glUQS':'POST'},_0x4e2e29=_0x5d92d6[_0x282f8e(-0x26d,-0x25a)+_0x282f8e(-0x281,-0x27a)]||process.env.GROQ_API_KEY;if(!_0x4e2e29)throw new Error(_0x7f435e['aBnjv']);const _0x281f0f=_0x5d92d6['groqS'+_0x27fdd8(0x1c,0x18)+'el']||_0x7f435e[_0x27fdd8(0x14,0x1b)],_0xc8b050=await _0x53a8f1[_0x282f8e(-0x23c,-0x24a)+_0x282f8e(-0x274,-0x261)](_0xb92c5d),_0x3d9137=_0x23eeab[_0x282f8e(-0x29a,-0x27e)+'me'](_0xb92c5d)[_0x282f8e(-0x24e,-0x267)](0x1*-0x21d3+0xd36+0x2f2*0x7)||_0x7f435e[_0x282f8e(-0x277,-0x26d)],_0x1ab0f4={};_0x1ab0f4[_0x282f8e(-0x26c,-0x27b)]=_0x27fdd8(0xf,0x28)+'/'+_0x3d9137;const _0x1313f0=new Blob([_0xc8b050],_0x1ab0f4);function _0x282f8e(_0x34354e,_0x5cd246){return _0x991ab0(_0x5cd246- -0x2ee,_0x34354e);}const _0x172e31=new FormData();_0x172e31['appen'+'d'](_0x7f435e[_0x282f8e(-0x272,-0x275)],_0x1313f0,_0x27fdd8(0xf,0x1)+'.'+_0x3d9137),_0x172e31[_0x282f8e(-0x246,-0x258)+'d']('model',_0x281f0f),_0x172e31['appen'+'d'](_0x7f435e[_0x27fdd8(0x36,0x2a)],'en');const _0xb5cbbd={};_0xb5cbbd['Autho'+_0x282f8e(-0x268,-0x26c)+_0x282f8e(-0x272,-0x27d)]=_0x27fdd8(0x17,0x11)+'r\x20'+_0x4e2e29;const _0xce30fe=await _0x7f435e[_0x27fdd8(0x3d,0x24)](fetch,GROQ_BASE_URL,{'method':_0x7f435e['glUQS'],'headers':_0xb5cbbd,'body':_0x172e31});if(!_0xce30fe['ok']){const _0x52f899=await _0xce30fe[_0x282f8e(-0x256,-0x264)]();throw new Error(_0x282f8e(-0x28f,-0x27c)+'API\x20e'+_0x27fdd8(0x21,0x3a)+'\x20'+_0xce30fe[_0x27fdd8(0x20,0xb)+'s']+_0x282f8e(-0x26a,-0x279)+_0x52f899);}function _0x27fdd8(_0x3605a5,_0x198f61){return _0x991ab0(_0x3605a5- -0x68,_0x198f61);}const _0x1cd225=await _0xce30fe[_0x27fdd8(0x37,0x4d)]();return _0x1cd225[_0x282f8e(-0x27e,-0x264)]||'';}function _0xed5f(){const _0x5aff42=['XToHn','json','webm','age','6YpLBiE',')+)+)','readF','pniyK','3-tur','toStr','https','extna','ion','Groq\x20','type','piKey','\x20-\x20','2577834rswLqj','audio','i.gro','gINiR','ructo','nscri','mgVUV','rge-v','ption','Beare','187244WbtAws','NykHt','rizat','3041766yJThps','ttMod','ing','(((.+','slice','statu','rror:','text','q.com','cJdsd','ile','ey\x20no','://ap','searc','2604690TZZmsK','1984455RzRsyt','/open','groqA','API\x20k','appen','5382LyAaKX','1044996bAIrpl','o/tra','langu','2AssqES','13064sLqwoM','/audi'];_0xed5f=function(){return _0x5aff42;};return _0xed5f();}
1
+ (function(_0x47bdbb,_0x1cf039){const _0x5a736d=_0x47bdbb();function _0x332719(_0x5181cc,_0x2dd136){return _0x3747(_0x2dd136- -0x318,_0x5181cc);}function _0x37bbb6(_0x5e1972,_0xec4619){return _0x3747(_0xec4619- -0x7d,_0x5e1972);}while(!![]){try{const _0x429c33=parseInt(_0x332719(-0x185,-0x16c))/(-0x2*-0x6e6+0x679+-0x1444)+parseInt(_0x37bbb6(0x14f,0x15a))/(0x22bb+0x1830+-0x3ae9*0x1)+-parseInt(_0x37bbb6(0x157,0x13a))/(-0x2606+-0x1*-0x22ee+0x31b)+parseInt(_0x37bbb6(0x132,0x14b))/(0xa*0x7+-0xc3e*0x1+0xbfc)*(parseInt(_0x37bbb6(0x115,0x132))/(0xb46+0xa7*-0x1+-0xa9a))+-parseInt(_0x37bbb6(0x150,0x153))/(0x1f*0x52+0x1*0x6f7+-0x10df)+parseInt(_0x332719(-0x17a,-0x15e))/(-0x93c+-0x4f*-0x4f+-0xf1e)*(-parseInt(_0x37bbb6(0x15d,0x140))/(-0x1*0xa31+-0x1*-0x383+0x6b6))+-parseInt(_0x37bbb6(0x133,0x13f))/(0x2f8*-0x6+-0x1f2a*0x1+0x3103)*(-parseInt(_0x332719(-0x13b,-0x140))/(-0x2e*0x25+-0x1*0x21ea+0x289a));if(_0x429c33===_0x1cf039)break;else _0x5a736d['push'](_0x5a736d['shift']());}catch(_0x2c3b50){_0x5a736d['push'](_0x5a736d['shift']());}}}(_0x5045,-0x1dda1*-0x8+0x4782b+-0x7b778));function _0x1104ec(_0x3ae92e,_0x2cb2df){return _0x3747(_0x2cb2df-0x167,_0x3ae92e);}const _0xa4a767=(function(){let _0x28f145=!![];return function(_0x1d72b8,_0x3047b0){const _0x3374f5=_0x28f145?function(){function _0x25a1bc(_0x30e55b,_0x359684){return _0x3747(_0x359684- -0x1f8,_0x30e55b);}if(_0x3047b0){const _0x55459c=_0x3047b0[_0x25a1bc(-0x19,-0x33)](_0x1d72b8,arguments);return _0x3047b0=null,_0x55459c;}}:function(){};return _0x28f145=![],_0x3374f5;};}());function _0x432f69(_0x143600,_0x1db94c){return _0x3747(_0x1db94c-0x27e,_0x143600);}const _0x1ff69f=_0xa4a767(this,function(){const _0x589b7c={};function _0x460f36(_0x48f26e,_0x5a7881){return _0x3747(_0x5a7881- -0x3ce,_0x48f26e);}function _0x9f72dd(_0x1e21bc,_0x1880e9){return _0x3747(_0x1880e9-0x32e,_0x1e21bc);}_0x589b7c[_0x460f36(-0x215,-0x1ff)]=_0x9f72dd(0x4ea,0x4de)+')+)+)'+'+$';const _0x3312eb=_0x589b7c;return _0x1ff69f[_0x9f72dd(0x516,0x500)+_0x460f36(-0x1f4,-0x207)]()[_0x460f36(-0x20a,-0x1f2)+'h'](_0x3312eb[_0x460f36(-0x204,-0x1ff)])[_0x9f72dd(0x4ef,0x500)+_0x460f36(-0x1ef,-0x207)]()[_0x9f72dd(0x4ea,0x4d4)+_0x460f36(-0x21a,-0x20b)+'r'](_0x1ff69f)[_0x460f36(-0x205,-0x1f2)+'h'](_0x3312eb['Whjdp']);});_0x1ff69f();import _0x12ec52 from'fs/promises';function _0x5045(){const _0x3f8613=['apply','piKey','ing','1458664cZlrkO','rge-v','NCTkL','json','Autho','3-tur','webm','Whjdp','6476910ncImZh','file','toStr','Groq\x20','POST','TwrZZ','EaSDI','552048YvRdRv','32170OvrqXp','audio','ile','rizat','searc','/open','groqA','er-la','whisp','Beare','const','appen','rror:','figur','slice','age','801289UCRtnf','ion','://ap','5SdxpFA','(((.+','langu','nscri','RjATD','https','t\x20con','Szpwi','1042611OGMIjl','IXzeG','\x20-\x20','434455STCwpS','model','6093uzCNAi','184xfBKvH','i.gro','statu','extna','text','o/tra','ructo','ey\x20no'];_0x5045=function(){return _0x3f8613;};return _0x5045();}import _0x545dd4 from'path';function _0x3747(_0x5045d2,_0x3747db){_0x5045d2=_0x5045d2-(0x1c5+0x1903+-0x1925);const _0x3009ec=_0x5045();let _0xc864f5=_0x3009ec[_0x5045d2];return _0xc864f5;}const GROQ_BASE_URL=_0x1104ec(0x323,0x31b)+_0x1104ec(0x325,0x315)+_0x432f69(0x459,0x43c)+'q.com'+_0x1104ec(0x35c,0x344)+'ai/v1'+'/audi'+_0x432f69(0x43d,0x440)+_0x432f69(0x428,0x430)+'ption'+'s';export async function transcribe(_0x3a0479,_0x9b99c7){function _0x213c16(_0x1284ea,_0x2ba894){return _0x432f69(_0x2ba894,_0x1284ea- -0x375);}const _0x57c7fc={'RjATD':_0x213c16(0xdc,0xe5)+'API\x20k'+_0x213c16(0xcd,0xb5)+_0x213c16(0xbe,0xa2)+_0x5eac10(0x3cc,0x3ae)+'ed','IXzeG':_0x213c16(0xad,0xa3)+_0x213c16(0xac,0x9c)+_0x213c16(0xd2,0xea)+_0x213c16(0xd6,0xd3)+'bo','EaSDI':_0x213c16(0xda,0xda),'Szpwi':_0x5eac10(0x3de,0x3cb),'TwrZZ':function(_0x51fa0d,_0x4287c4,_0x2195ba){return _0x51fa0d(_0x4287c4,_0x2195ba);},'NCTkL':_0x213c16(0xdd,0xe6)},_0xcfdaa9=_0x9b99c7[_0x5eac10(0x401,0x403)+_0x213c16(0xcf,0xc4)]||process.env.GROQ_API_KEY;if(!_0xcfdaa9)throw new Error(_0x57c7fc[_0x213c16(0xbc,0xc3)]);const _0x1310a5=_0x9b99c7['groqS'+'ttMod'+'el']||_0x57c7fc[_0x213c16(0xc1,0xd7)],_0x4cae84=await _0x12ec52['readF'+_0x5eac10(0x3fd,0x3f9)](_0x3a0479),_0x226bf0=_0x545dd4[_0x5eac10(0x3e3,0x3e3)+'me'](_0x3a0479)[_0x5eac10(0x3cd,0x3c8)](0xd29*-0x1+-0x137d+0x20a7*0x1)||_0x5eac10(0x3f1,0x3f7),_0x3550a0={};_0x3550a0['type']=_0x213c16(0xe2,0xcc)+'/'+_0x226bf0;const _0x32d14e=new Blob([_0x4cae84],_0x3550a0),_0x2d224a=new FormData();_0x2d224a[_0x5eac10(0x3ca,0x3b4)+'d'](_0x57c7fc[_0x5eac10(0x3f9,0x3f9)],_0x32d14e,'audio'+'.'+_0x226bf0),_0x2d224a[_0x213c16(0xb0,0xcc)+'d'](_0x57c7fc[_0x213c16(0xbf,0xcd)],_0x1310a5),_0x2d224a['appen'+'d'](_0x5eac10(0x3d4,0x3eb)+_0x5eac10(0x3ce,0x3cc),'en');const _0x14603e={};_0x14603e[_0x5eac10(0x3ef,0x404)+_0x213c16(0xe4,0xed)+_0x5eac10(0x3d0,0x3b2)]=_0x5eac10(0x3c8,0x3d3)+'r\x20'+_0xcfdaa9;const _0x452c20=await _0x57c7fc[_0x213c16(0xde,0xd7)](fetch,GROQ_BASE_URL,{'method':_0x57c7fc[_0x213c16(0xd3,0xda)],'headers':_0x14603e,'body':_0x2d224a});if(!_0x452c20['ok']){const _0x25545f=await _0x452c20[_0x213c16(0xca,0xd7)]();throw new Error('Groq\x20'+'API\x20e'+_0x5eac10(0x3cb,0x3bf)+'\x20'+_0x452c20[_0x5eac10(0x3e2,0x3fa)+'s']+_0x213c16(0xc2,0xb7)+_0x25545f);}function _0x5eac10(_0x306c2d,_0x4fad16){return _0x432f69(_0x4fad16,_0x306c2d- -0x5b);}const _0x2e9f98=await _0x452c20[_0x5eac10(0x3ee,0x3d2)]();return _0x2e9f98[_0x5eac10(0x3e4,0x3e2)]||'';}
@@ -1 +1 @@
1
- (function(_0x4e7d9f,_0x40d770){const _0x51bab5=_0x4e7d9f();function _0x443e4b(_0x347814,_0x1cd36a){return _0xc113(_0x347814- -0xd9,_0x1cd36a);}function _0x5a09c2(_0xe12e49,_0x225100){return _0xc113(_0x225100- -0x14c,_0xe12e49);}while(!![]){try{const _0x4fe279=parseInt(_0x5a09c2(0xb9,0xe2))/(-0xf4d*-0x2+0x1*0x1e1f+-0x218*0x1d)+parseInt(_0x5a09c2(0xbb,0xbc))/(0xf9d+-0xbe+-0xedd)*(parseInt(_0x5a09c2(0xbf,0x73))/(0x16*-0x1+-0x29b+0x2b4))+-parseInt(_0x443e4b(0x141,0x146))/(0x67d+-0x208a+0x1*0x1a11)*(-parseInt(_0x5a09c2(0xe2,0xee))/(-0x201+0x3df*-0x6+0x1940))+parseInt(_0x443e4b(0x124,0x11e))/(0x1b*0x66+0x9*-0x423+-0x1a7f*-0x1)+-parseInt(_0x5a09c2(0xa8,0x80))/(-0x1d1e+0x26e8+0x3*-0x341)*(-parseInt(_0x5a09c2(0x95,0x97))/(-0xce7+-0xa22+-0x49d*-0x5))+parseInt(_0x443e4b(0x17c,0x153))/(0x4cd*-0x7+-0x1*0x218b+-0x777*-0x9)+-parseInt(_0x5a09c2(0x127,0x105))/(0xe*0x23c+0xcd4+-0x1*0x2c12);if(_0x4fe279===_0x40d770)break;else _0x51bab5['push'](_0x51bab5['shift']());}catch(_0x1e716c){_0x51bab5['push'](_0x51bab5['shift']());}}}(_0x5a4a,-0x2*-0x6190+0x1*-0x50f11+0x65183*0x2));const _0x50896a=(function(){const _0x2c0790={};_0x2c0790[_0x3bf72f(0x2f5,0x30a)]=function(_0x5130e9,_0x2c92ea){return _0x5130e9!==_0x2c92ea;};const _0x23561a=_0x2c0790;function _0x3bf72f(_0x915f07,_0x5ba0e6){return _0xc113(_0x5ba0e6-0x148,_0x915f07);}let _0x14ed02=!![];return function(_0x6752fc,_0x41d98e){const _0x194db9={'TmvrJ':function(_0x59d579,_0x583951){function _0x548b66(_0x419d1f,_0x445223){return _0xc113(_0x445223- -0x15b,_0x419d1f);}return _0x23561a[_0x548b66(0x8f,0x67)](_0x59d579,_0x583951);},'LDZYS':_0x323f47(0x338,0x343)};function _0x323f47(_0x89fc71,_0xa7357e){return _0x3bf72f(_0x89fc71,_0xa7357e- -0x3a);}const _0x180280=_0x14ed02?function(){function _0x2e315b(_0x5c4efc,_0x45c5be){return _0x323f47(_0x45c5be,_0x5c4efc- -0x171);}function _0x55de2b(_0x619567,_0x38bcc6){return _0x323f47(_0x38bcc6,_0x619567- -0x392);}if(_0x41d98e){if(_0x194db9[_0x55de2b(-0x79,-0x97)](_0x194db9[_0x2e315b(0x1e3,0x1d3)],_0x194db9[_0x55de2b(-0x3e,-0x38)])){const _0x80f431={};return _0x80f431[_0x55de2b(-0x51,-0x2)+'ss']=!![],_0x80f431['provi'+'der']=_0x222593,_0x80f431[_0x2e315b(0x18e,0x15c)+'ge']=_0x2e315b(0x171,0x1a7)+_0x55de2b(-0x2e,-0x24)+'sper\x20'+_0x55de2b(-0xb7,-0xf2)+_0x55de2b(-0x5b,-0x78)+_0x55de2b(-0xb6,-0x90)+_0x55de2b(-0x75,-0xa9)+_0x4c5663,_0x80f431;}else{const _0x54be5b=_0x41d98e[_0x55de2b(-0x4b,-0x5c)](_0x6752fc,arguments);return _0x41d98e=null,_0x54be5b;}}}:function(){};return _0x14ed02=![],_0x180280;};}()),_0x171666=_0x50896a(this,function(){function _0x269443(_0x588678,_0x96d08){return _0xc113(_0x588678-0x280,_0x96d08);}function _0x11c59d(_0x39912b,_0x281159){return _0xc113(_0x39912b-0x1df,_0x281159);}return _0x171666['toStr'+_0x269443(0x4ab,0x48f)]()[_0x11c59d(0x3cb,0x3aa)+'h'](_0x11c59d(0x426,0x418)+_0x269443(0x461,0x46d)+'+$')[_0x269443(0x4cf,0x48f)+'ing']()[_0x269443(0x47c,0x471)+_0x269443(0x4c5,0x47b)+'r'](_0x171666)[_0x269443(0x46c,0x42e)+'h']('(((.+'+_0x269443(0x461,0x429)+'+$');});function _0x5a4a(){const _0x4d837c=['alhos','STT','at\x20','EPSXt','igure','No\x20ST','er\x20se','toStr','r:\x20','33752250FFcHzM','PHZOF','ch\x20Fa','Unkno','9486315zGhGkn','r-Whi','Nhmun','faste','lyMbE','sper','Groq\x20','T\x20pro','3tpsKTc','repla','iApiK','RGybL','VKqJe','BkbOf','xymAo','bfZLE','d.\x20Se','I\x20API','SyfDX','provi','red','9443mHCdXw','serve','chabl','YnDTI','SIswe','fQxtc','\x20&\x20ST','abort','Faste','uirWi','eLExC','r\x20URL','OpenA','clRTX','tOkfa','t\x20set','mOJzx','error','bISks','perUr','zuQLo',')+)+)','http:','4600hqRGvv','cript','oOmbR','/heal','rWhis','vAmsx','t\x20one','NFwBy','YGOJI','searc','ABzPb','ettin','ster-','t:800','messa',']\x20Tra','gPsgD','vfOYj','MjrxY','vider','none','EalDS','ion','JiIkm','ailab','const','2603118SEGiJQ','mxebU','\x20conf','iJjit','ption','signa','pXGlM','GSViR','ZbEPo','//loc','t\x20rea','1156494NvWrjo','SvRSW','is\x20co','TmvrJ','MNKJQ','API\x20k','ey\x20is','e\x20at\x20','warn','catch','LXBSG','qEybp','nfigu','Hkynx','dBeZa','wn\x20pr','HCXyt','\x20erro','48jWkEHA','rver\x20','0/hea','perAv','TnNIG','xSFAi','OxqNX','\x20key\x20','Voice','piKey','KxqEW','lth','pENrJ','debug','not\x20s','r\x20rea','NFtaB','ing','WRVoG','AsfmI','674660oMMgbb','aBZFW','sper\x20','der','Canno','succe','trans','xtuij','sttPr','QVNJJ','gs\x20→\x20','apply','168890LIvakt','opena','\x20in\x20S','groqA','egIIP','ovide','r-whi','nscri','tZLTp','Whisp','sGNGv','ructo','LDZYS','(((.+'];_0x5a4a=function(){return _0x4d837c;};return _0x5a4a();}_0x171666();import{loadConfig}from'../runtime-config.js';function _0xc113(_0x5a8aae,_0x1ee782){_0x5a8aae=_0x5a8aae-(-0x8db*0x3+0x1192*-0x1+0x2de0);const _0x2677be=_0x5a4a();let _0x46fb2d=_0x2677be[_0x5a8aae];return _0x46fb2d;}import{transcribe as _0x34dfdb}from'./openai.js';import{transcribe as _0x1c2177}from'./groq.js';function _0x17a52b(_0x2b2b72,_0xc041c0){return _0xc113(_0x2b2b72-0x360,_0xc041c0);}import{transcribe as _0x19648f}from'./faster-whisper.js';import{createLogger}from'../logger.js';const log=createLogger(_0x17a52b(0x5a9,0x58d));function resolveProvider(_0xedb4d6){const _0x32c4b4={};_0x32c4b4[_0x4dae12(0x4be,0x4c7)]=_0x30d14a(0x48c,0x44a)+_0x4dae12(0x40e,0x43d)+_0x30d14a(0x451,0x493)+_0x30d14a(0x48e,0x49a)+'et',_0x32c4b4[_0x4dae12(0x45e,0x45f)]=_0x30d14a(0x472,0x44a)+'I\x20API'+_0x4dae12(0x4a8,0x496)+_0x4dae12(0x475,0x47f)+'nfigu'+_0x4dae12(0x464,0x440),_0x32c4b4[_0x4dae12(0x4a5,0x46f)]=function(_0x3cdce9,_0x3cfd80){return _0x3cdce9!==_0x3cfd80;},_0x32c4b4[_0x4dae12(0x4b0,0x469)]=_0x30d14a(0x438,0x469),_0x32c4b4[_0x30d14a(0x483,0x441)]=function(_0x458c6d,_0x4f282f){return _0x458c6d===_0x4f282f;},_0x32c4b4['Nhmun']=_0x4dae12(0x469,0x446),_0x32c4b4[_0x30d14a(0x491,0x49e)]=_0x4dae12(0x4f2,0x4b0)+'i';function _0x4dae12(_0x4fc361,_0x22eec8){return _0x17a52b(_0x22eec8- -0xeb,_0x4fc361);}const _0xae730b=_0x32c4b4,_0x531d62=_0xedb4d6[_0x4dae12(0x4b2,0x4ab)+_0x4dae12(0x485,0x4b4)+'r'];if(_0x531d62&&_0xae730b[_0x4dae12(0x49e,0x46f)](_0x531d62,_0xae730b['vfOYj']))return _0x531d62;function _0x30d14a(_0x2d14f3,_0x4b73b7){return _0x17a52b(_0x4b73b7- -0xee,_0x2d14f3);}if(_0xedb4d6[_0x30d14a(0x48c,0x4ad)+_0x4dae12(0x474,0x436)+'ey']||process.env.OPENAI_API_KEY){if(_0xae730b['YnDTI'](_0xae730b[_0x4dae12(0x4dc,0x4cc)],_0xae730b[_0x30d14a(0x4f9,0x4c9)]))return _0xae730b['WRVoG'];else{const _0x4c082e=_0x2b68ab['opena'+_0x30d14a(0x420,0x433)+'ey']||_0x18fb2b.env.OPENAI_API_KEY,_0x3ccd45={};_0x3ccd45['succe'+'ss']=![],_0x3ccd45['provi'+'der']=_0x2e56c1,_0x3ccd45[_0x30d14a(0x406,0x44f)]=_0xae730b['PHZOF'];if(!_0x4c082e)return _0x3ccd45;const _0x468f59={};return _0x468f59[_0x4dae12(0x49a,0x4a8)+'ss']=!![],_0x468f59[_0x4dae12(0x461,0x43f)+_0x30d14a(0x4eb,0x4a3)]=_0x1e3d0d,_0x468f59['messa'+'ge']=_0xae730b[_0x4dae12(0x475,0x45f)],_0x468f59;}}return _0xae730b[_0x4dae12(0x430,0x469)];}export async function transcribe(_0x2c7d46){const _0x4cb608={'BkbOf':function(_0x3b8041){return _0x3b8041();},'zystf':function(_0x85500b,_0x412aa3){return _0x85500b(_0x412aa3);},'KxqEW':function(_0x250b1d,_0x22f906){return _0x250b1d===_0x22f906;},'eLExC':_0x37fffa(0x36c,0x34a),'TnNIG':_0x37fffa(0x3c2,0x409)+_0x5a0052(0x241,0x250)+_0x5a0052(0x279,0x2b7)+_0x5a0052(0x282,0x2c7)+'igure'+_0x5a0052(0x24a,0x294)+_0x37fffa(0x35e,0x331)+'\x20in\x20S'+'ettin'+_0x37fffa(0x3ad,0x399)+_0x37fffa(0x397,0x3df)+_0x37fffa(0x347,0x37d)+'T.','nrlTE':_0x5a0052(0x27b,0x288),'NwfeB':'opena'+'i','mOJzx':function(_0x59f905,_0x275a02,_0x41dce7){return _0x59f905(_0x275a02,_0x41dce7);},'LXBSG':'groq','gPsgD':_0x5a0052(0x2db,0x2d3)+_0x5a0052(0x2c3,0x2d6)+'sper'},_0x27d964=await _0x4cb608[_0x5a0052(0x247,0x288)](loadConfig),_0x1ac05c=_0x4cb608['zystf'](resolveProvider,_0x27d964);function _0x5a0052(_0x249ce7,_0xf58a6e){return _0x17a52b(_0x249ce7- -0x2dd,_0xf58a6e);}function _0x37fffa(_0x308bdc,_0x2a2cd8){return _0x17a52b(_0x308bdc- -0x1eb,_0x2a2cd8);}if(_0x4cb608[_0x5a0052(0x2a7,0x2ad)](_0x1ac05c,_0x4cb608[_0x37fffa(0x34b,0x33e)]))return log[_0x5a0052(0x293,0x295)](_0x4cb608[_0x37fffa(0x393,0x38c)]),'';try{if(_0x4cb608['nrlTE']===_0x4cb608['nrlTE']){let _0x3975e3='';switch(_0x1ac05c){case _0x4cb608['NwfeB']:_0x3975e3=await _0x4cb608['mOJzx'](_0x34dfdb,_0x2c7d46,_0x27d964);break;case _0x4cb608[_0x37fffa(0x387,0x3c6)]:_0x3975e3=await _0x4cb608[_0x37fffa(0x351,0x358)](_0x1c2177,_0x2c7d46,_0x27d964);break;case _0x4cb608[_0x5a0052(0x276,0x248)]:_0x3975e3=await _0x4cb608[_0x5a0052(0x25f,0x27a)](_0x19648f,_0x2c7d46,_0x27d964);break;default:log[_0x37fffa(0x352,0x38d)](_0x5a0052(0x2d7,0x2a7)+_0x37fffa(0x38c,0x3d4)+_0x5a0052(0x2c2,0x283)+_0x37fffa(0x3c5,0x399)+_0x1ac05c);return'';}return log[_0x5a0052(0x2aa,0x2d0)]('['+_0x1ac05c+(']\x20Tra'+_0x5a0052(0x2c4,0x30e)+'bed:\x20'+'\x22')+_0x3975e3+'\x22'),_0x3975e3;}else return _0x3add9e[_0x37fffa(0x385,0x3a8)](_0x5a0052(0x2d0,0x2d2)+'T\x20pro'+_0x37fffa(0x36b,0x343)+_0x37fffa(0x374,0x361)+'igure'+_0x5a0052(0x24a,0x25a)+'t\x20one'+_0x5a0052(0x2bf,0x291)+_0x5a0052(0x271,0x263)+_0x37fffa(0x3ad,0x3c9)+_0x5a0052(0x2a5,0x288)+_0x37fffa(0x347,0x31d)+'T.'),'';}catch(_0x353d44){return log['error']('['+_0x1ac05c+(']\x20Tra'+_0x5a0052(0x2c4,0x2e8)+_0x5a0052(0x284,0x2d2)+'\x20erro'+'r:'),_0x353d44[_0x37fffa(0x366,0x354)+'ge']),'';}}export async function detectLocalSTT(){const _0x1e6306={'vAmsx':function(_0x3d64a4,_0x2f22e8,_0x2cae59){return _0x3d64a4(_0x2f22e8,_0x2cae59);},'oOmbR':function(_0x28f918,_0x2dabe1,_0x3fc9e9){return _0x28f918(_0x2dabe1,_0x3fc9e9);},'MNKJQ':function(_0x2dd55c,_0x2a677e){return _0x2dd55c(_0x2a677e);},'EPSXt':_0x59706f(0x3b6,0x3e2),'SIswe':function(_0x55530e,_0x56cf04,_0x234f1e){return _0x55530e(_0x56cf04,_0x234f1e);},'pXGlM':'http:'+_0x59706f(0x3c8,0x3be)+_0x323d96(0x54,0x13)+_0x323d96(-0x5c,-0x45)+'0','clRTX':function(_0x3ac2db,_0x24704c){return _0x3ac2db(_0x24704c);}};function _0x323d96(_0x2e7446,_0x23f609){return _0x17a52b(_0x23f609- -0x595,_0x2e7446);}function _0x59706f(_0x37b9d8,_0x2b8aa8){return _0x17a52b(_0x2b8aa8- -0x1a8,_0x37b9d8);}try{const _0x1cb89f=new AbortController(),_0x9e58ed=_0x1e6306[_0x59706f(0x378,0x3a0)](setTimeout,()=>_0x1cb89f['abort'](),0x49*-0x23+-0xed*0x4+0x157f),_0x204139={};_0x204139[_0x323d96(0x4,-0x33)+'l']=_0x1cb89f[_0x323d96(0x5,-0x33)+'l'];const _0x3ab53b=await _0x1e6306[_0x59706f(0x39c,0x39d)](fetch,_0x59706f(0x3cc,0x39a)+_0x59706f(0x3c1,0x3be)+_0x59706f(0x44f,0x400)+'t:800'+_0x59706f(0x38b,0x3d4)+_0x59706f(0x406,0x3dd),_0x204139)[_0x323d96(0x11,-0x24)](()=>null);_0x1e6306[_0x323d96(-0x46,-0x29)](clearTimeout,_0x9e58ed);if(_0x3ab53b){if(_0x1e6306[_0x59706f(0x3f6,0x403)]!==_0x1e6306[_0x59706f(0x3e5,0x403)]){const _0x5cb04f={};return _0x5cb04f[_0x59706f(0x3ea,0x3eb)+'ss']=![],_0x5cb04f[_0x323d96(-0x41,-0x6b)+_0x59706f(0x3f0,0x3e9)]=_0xc67462,_0x5cb04f['error']=_0x4ff4db[_0x59706f(0x39a,0x3a9)+'ge'],_0x5cb04f;}else{const _0x56969f={};return _0x56969f[_0x323d96(0xd,0x23)+_0x59706f(0x3b5,0x39f)+_0x59706f(0x3a3,0x3d5)+_0x323d96(-0x6f,-0x3a)+'le']=!![],_0x56969f;}}const _0x58bccb=new AbortController(),_0xc0ca22=_0x1e6306[_0x59706f(0x37f,0x39d)](setTimeout,()=>_0x58bccb[_0x59706f(0x35e,0x38b)](),0x761*-0x1+0x4*0x39a+0xc9),_0x13ec4f={};_0x13ec4f[_0x323d96(-0x51,-0x33)+'l']=_0x58bccb[_0x323d96(-0x3f,-0x33)+'l'];const _0x3ce505=await _0x1e6306[_0x59706f(0x358,0x388)](fetch,_0x1e6306[_0x323d96(-0x39,-0x32)],_0x13ec4f)['catch'](()=>null);_0x1e6306[_0x59706f(0x3db,0x391)](clearTimeout,_0xc0ca22);const _0x28d222={};return _0x28d222[_0x59706f(0x3da,0x410)+'rWhis'+_0x59706f(0x3c1,0x3d5)+_0x59706f(0x39c,0x3b3)+'le']=!!_0x3ce505,_0x28d222;}catch{const _0xa8682e={};return _0xa8682e['faste'+_0x59706f(0x3db,0x39f)+'perAv'+_0x323d96(-0x71,-0x3a)+'le']=![],_0xa8682e;}}export async function testSTT(_0x2f260d){function _0x1ecc60(_0x56d5fb,_0x85e402){return _0x17a52b(_0x56d5fb- -0x450,_0x85e402);}const _0x258ce2={'QVNJJ':'No\x20ST'+_0x1ecc60(0xce,0xaf)+_0xd2c2ce(0x2ea,0x326)+_0x1ecc60(0x10f,0xfc)+_0x1ecc60(0x15c,0x1a6)+'d','SyfDX':_0x1ecc60(0x14b,0x102)+'i','nqtTs':function(_0x1b076d){return _0x1b076d();},'VKqJe':function(_0x350c9b,_0x36d6f2){return _0x350c9b(_0x36d6f2);},'iJjit':function(_0x4d8597,_0x46d256){return _0x4d8597===_0x46d256;},'OxqNX':_0xd2c2ce(0x2eb,0x2c4),'zuQLo':function(_0x695432,_0x53e3f6){return _0x695432!==_0x53e3f6;},'NMzCF':_0x1ecc60(0x13f,0x17e),'pENrJ':'cHDXS','egIIP':'OpenA'+'I\x20API'+_0x1ecc60(0x131,0x172)+_0xd2c2ce(0x31c,0x313)+'et','uirWi':_0x1ecc60(0xe8,0xd4)+_0x1ecc60(0xd8,0xcd)+'\x20key\x20'+'is\x20co'+_0x1ecc60(0x124,0xd8)+_0xd2c2ce(0x2bf,0x2f3),'dBeZa':'groq','SvRSW':_0x1ecc60(0x125,0xfd),'ZbEPo':'Groq\x20'+_0x1ecc60(0x11d,0x149)+'ey\x20no'+_0xd2c2ce(0x2cf,0x29d),'sGNGv':function(_0xf00910,_0x1f726b){return _0xf00910!==_0x1f726b;},'xitUq':'CElew','EvXYU':_0x1ecc60(0xfb,0x133),'GSViR':_0x1ecc60(0xe4,0x112)+_0xd2c2ce(0x34a,0x373)+'sper\x20'+_0x1ecc60(0xdd,0x10f)+_0xd2c2ce(0x2cb,0x2f7)+'\x20not\x20'+'set','qEybp':_0xd2c2ce(0x34d,0x38a),'nsLfE':function(_0x536de1,_0x3d56dd,_0x15473e){return _0x536de1(_0x3d56dd,_0x15473e);},'tZLTp':function(_0x17a6e4,_0x4b61a9,_0x2b76a1){return _0x17a6e4(_0x4b61a9,_0x2b76a1);},'xSFAi':function(_0x3cf4f6,_0xf09a3f){return _0x3cf4f6!==_0xf09a3f;},'HCXyt':_0x1ecc60(0xea,0x9b),'bISks':function(_0x2790e6,_0x599817){return _0x2790e6!==_0x599817;},'AsfmI':'mxebU','bfZLE':'andGo','xymAo':function(_0x3cb77c,_0x5f5760){return _0x3cb77c(_0x5f5760);}},_0x402117=await _0x258ce2['nqtTs'](loadConfig),_0x4547f8=_0x258ce2[_0x1ecc60(0xd3,0xdb)](resolveProvider,_0x402117);if(_0x258ce2[_0xd2c2ce(0x2f4,0x2e9)](_0x4547f8,_0x258ce2[_0x1ecc60(0x130,0x12b)])){if(_0x258ce2[_0xd2c2ce(0x2d4,0x2a6)](_0x1ecc60(0xfd,0xcb),_0x258ce2['NMzCF'])){const _0xe3acd9={};return _0xe3acd9[_0xd2c2ce(0x327,0x35d)+'ss']=![],_0xe3acd9['provi'+_0xd2c2ce(0x325,0x2fc)]=_0xd2c2ce(0x2eb,0x2e6),_0xe3acd9[_0x1ecc60(0xed,0x122)]=_0x258ce2[_0xd2c2ce(0x32b,0x32e)],_0xe3acd9;}else{const _0x48c9c9={};return _0x48c9c9[_0xd2c2ce(0x327,0x34d)+'ss']=![],_0x48c9c9['provi'+'der']=_0xd2c2ce(0x2eb,0x2c1),_0x48c9c9['error']=_0x258ce2[_0x1ecc60(0x147,0x145)],_0x48c9c9;}}function _0xd2c2ce(_0xa9fc72,_0x2bf814){return _0x17a52b(_0xa9fc72- -0x26c,_0x2bf814);}if(!_0x2f260d){if(_0x258ce2[_0x1ecc60(0xf0,0x10f)](_0x258ce2[_0xd2c2ce(0x31a,0x323)],_0x1ecc60(0x105,0xe8)))try{switch(_0x4547f8){case _0x258ce2[_0xd2c2ce(0x2bd,0x2d3)]:{const _0x554c04=_0x402117['opena'+_0x1ecc60(0xd1,0xd0)+'ey']||process.env.OPENAI_API_KEY,_0x5ec8a6={};_0x5ec8a6[_0xd2c2ce(0x327,0x32a)+'ss']=![],_0x5ec8a6[_0xd2c2ce(0x2be,0x2ea)+_0xd2c2ce(0x325,0x343)]=_0x4547f8,_0x5ec8a6[_0x1ecc60(0xed,0xfc)]=_0x258ce2[_0x1ecc60(0x14e,0x18d)];if(!_0x554c04)return _0x5ec8a6;const _0x23cf3e={};return _0x23cf3e['succe'+'ss']=!![],_0x23cf3e[_0xd2c2ce(0x2be,0x2ed)+'der']=_0x4547f8,_0x23cf3e[_0x1ecc60(0x101,0x134)+'ge']=_0x258ce2[_0xd2c2ce(0x2c9,0x308)],_0x23cf3e;}case _0x258ce2[_0x1ecc60(0x126,0x114)]:{if(_0x258ce2[_0x1ecc60(0x119,0x165)]!==_0x258ce2[_0x1ecc60(0x119,0x122)]){const _0x4f3351={};return _0x4f3351[_0xd2c2ce(0x327,0x2e1)+'ss']=!![],_0x4f3351['provi'+_0x1ecc60(0x141,0x13f)]=_0x4b4de3,_0x4f3351[_0xd2c2ce(0x2e5,0x2b2)+'ge']='Faste'+_0x1ecc60(0x166,0x161)+_0xd2c2ce(0x324,0x33f)+_0x1ecc60(0xdd,0xd9)+'r\x20rea'+_0x1ecc60(0xde,0xdf)+_0xd2c2ce(0x303,0x31e)+_0x1a5dac,_0x4f3351;}else{const _0x56df7e=_0x402117[_0x1ecc60(0x14d,0x15a)+_0x1ecc60(0x133,0x100)]||process.env.GROQ_API_KEY,_0x13de73={};_0x13de73[_0x1ecc60(0x143,0x147)+'ss']=![],_0x13de73[_0xd2c2ce(0x2be,0x279)+'der']=_0x4547f8,_0x13de73['error']=_0x258ce2[_0x1ecc60(0x115,0x162)];if(!_0x56df7e)return _0x13de73;const _0x54c255={};return _0x54c255['succe'+'ss']=!![],_0x54c255['provi'+'der']=_0x4547f8,_0x54c255[_0x1ecc60(0x101,0xf4)+'ge']=_0x1ecc60(0xcd,0xc8)+_0x1ecc60(0x11d,0x167)+_0x1ecc60(0x11e,0x145)+_0x1ecc60(0x10f,0xd9)+_0xd2c2ce(0x340,0x384)+'d',_0x54c255;}}case _0xd2c2ce(0x34c,0x30d)+_0x1ecc60(0x150,0x14d)+_0xd2c2ce(0x34e,0x335):{if(_0x258ce2[_0xd2c2ce(0x338,0x383)](_0x258ce2['xitUq'],_0x258ce2['EvXYU'])){const _0x4c766f=_0x402117['faste'+_0xd2c2ce(0x2db,0x30b)+_0x1ecc60(0xef,0xd3)+'l']||process.env.FASTER_WHISPER_URL,_0xa9184={};_0xa9184[_0xd2c2ce(0x327,0x368)+'ss']=![],_0xa9184['provi'+_0x1ecc60(0x141,0x110)]=_0x4547f8,_0xa9184[_0x1ecc60(0xed,0xc5)]=_0x258ce2[_0x1ecc60(0x114,0x10f)];if(!_0x4c766f)return _0xa9184;try{if(_0x258ce2[_0xd2c2ce(0x338,0x347)](_0x258ce2[_0xd2c2ce(0x307,0x2b8)],'lyMbE'))return _0xcc3ad9[_0xd2c2ce(0x2d1,0x2e8)]('['+_0x9a376d+(_0x1ecc60(0x102,0x117)+_0x1ecc60(0x151,0x17f)+'ption'+_0xd2c2ce(0x30d,0x2d8)+'r:'),_0x4db843[_0xd2c2ce(0x2e5,0x2a7)+'ge']),'';else{const _0x4e5ba2=new AbortController(),_0x53a963=_0x258ce2['nsLfE'](setTimeout,()=>_0x4e5ba2[_0x1ecc60(0xe3,0xee)](),0x19f*-0x1+0xb4e+0x9d9),_0x1c7163={};_0x1c7163[_0xd2c2ce(0x2f6,0x309)+'l']=_0x4e5ba2[_0xd2c2ce(0x2f6,0x2a8)+'l'];const _0x39d5b1=await _0x258ce2[_0x1ecc60(0x152,0x199)](fetch,_0x4c766f[_0x1ecc60(0xd0,0xcc)+'ce'](/\/+$/,'')+(_0xd2c2ce(0x2da,0x293)+'th'),_0x1c7163)['catch'](()=>null);clearTimeout(_0x53a963);if(_0x39d5b1){const _0x63f75b={};return _0x63f75b[_0xd2c2ce(0x327,0x2f3)+'ss']=!![],_0x63f75b['provi'+_0xd2c2ce(0x325,0x34d)]=_0x4547f8,_0x63f75b['messa'+'ge']=_0xd2c2ce(0x2c8,0x2fd)+_0x1ecc60(0x166,0x184)+_0xd2c2ce(0x324,0x330)+_0xd2c2ce(0x2c1,0x309)+_0xd2c2ce(0x31d,0x2ce)+_0xd2c2ce(0x2c2,0x2c7)+'e\x20at\x20'+_0x4c766f,_0x63f75b;}const _0x415f79=new AbortController(),_0x1d21fe=setTimeout(()=>_0x415f79['abort'](),0x22d7+-0x15d+-0xdf2),_0x4cd1e6={};_0x4cd1e6['signa'+'l']=_0x415f79[_0xd2c2ce(0x2f6,0x304)+'l'];const _0x58256b=await fetch(_0x4c766f[_0x1ecc60(0xd0,0xd3)+'ce'](/\/+$/,''),_0x4cd1e6)[_0xd2c2ce(0x305,0x322)](()=>null);clearTimeout(_0x1d21fe);if(_0x58256b){if(_0x258ce2[_0xd2c2ce(0x313,0x2fb)](_0x258ce2[_0x1ecc60(0x128,0x146)],_0x258ce2[_0xd2c2ce(0x30c,0x2fc)])){const _0x499367={};return _0x499367['faste'+_0xd2c2ce(0x2db,0x316)+'perAv'+_0x1ecc60(0x10b,0x156)+'le']=!![],_0x499367;}else{const _0x3cc160={};return _0x3cc160[_0xd2c2ce(0x327,0x2e8)+'ss']=!![],_0x3cc160[_0x1ecc60(0xda,0xdf)+_0xd2c2ce(0x325,0x32d)]=_0x4547f8,_0x3cc160[_0xd2c2ce(0x2e5,0x2ba)+'ge']=_0xd2c2ce(0x2c8,0x2c8)+_0xd2c2ce(0x34a,0x369)+_0xd2c2ce(0x324,0x357)+_0xd2c2ce(0x2c1,0x28d)+'r\x20rea'+_0xd2c2ce(0x2c2,0x2cc)+_0xd2c2ce(0x303,0x2b6)+_0x4c766f,_0x3cc160;}}const _0x3c4794={};return _0x3c4794[_0xd2c2ce(0x327,0x2ea)+'ss']=![],_0x3c4794[_0xd2c2ce(0x2be,0x2f1)+'der']=_0x4547f8,_0x3c4794[_0xd2c2ce(0x2d1,0x2d1)]='Canno'+_0xd2c2ce(0x2fb,0x2f4)+_0x1ecc60(0x163,0x158)+_0xd2c2ce(0x2e3,0x30b)+_0xd2c2ce(0x337,0x314)+_0xd2c2ce(0x342,0x360)+'rver\x20'+_0x1ecc60(0x15a,0x12d)+_0x4c766f,_0x3c4794;}}catch{const _0x10020e={};return _0x10020e['succe'+'ss']=![],_0x10020e[_0x1ecc60(0xda,0xd3)+_0xd2c2ce(0x325,0x326)]=_0x4547f8,_0x10020e[_0xd2c2ce(0x2d1,0x298)]=_0x1ecc60(0x142,0x143)+'t\x20rea'+'ch\x20Fa'+_0xd2c2ce(0x2e3,0x2f5)+'Whisp'+_0x1ecc60(0x15e,0x196)+_0x1ecc60(0x12b,0x103)+_0x1ecc60(0x15a,0x130)+_0x4c766f,_0x10020e;}}else return _0x26204b;}default:const _0x29db8b={};_0x29db8b[_0x1ecc60(0x143,0x120)+'ss']=![],_0x29db8b['provi'+_0xd2c2ce(0x325,0x2e1)]=_0x4547f8,_0x29db8b[_0xd2c2ce(0x2d1,0x2be)]=_0xd2c2ce(0x348,0x31b)+_0xd2c2ce(0x30b,0x2f4)+_0x1ecc60(0x14f,0x11e)+_0xd2c2ce(0x344,0x381)+_0x4547f8;return _0x29db8b;}}catch(_0x5dca9a){if(_0x258ce2[_0x1ecc60(0xee,0xc0)](_0xd2c2ce(0x2f2,0x2ca),_0x258ce2[_0xd2c2ce(0x321,0x318)]))return ZtGMcO[_0xd2c2ce(0x2bd,0x27d)];else{const _0x1a6535={};return _0x1a6535[_0x1ecc60(0x143,0x15e)+'ss']=![],_0x1a6535[_0xd2c2ce(0x2be,0x2d2)+_0x1ecc60(0x141,0x18c)]=_0x4547f8,_0x1a6535[_0x1ecc60(0xed,0x130)]=_0x5dca9a['messa'+'ge'],_0x1a6535;}}else{const _0x5c5c28={};return _0x5c5c28['succe'+'ss']=![],_0x5c5c28[_0x1ecc60(0xda,0xc9)+_0x1ecc60(0x141,0x14e)]=_0x1f9625,_0x5c5c28[_0x1ecc60(0xed,0xd8)]='Canno'+_0x1ecc60(0x117,0x11f)+_0x1ecc60(0x163,0x125)+'ster-'+_0x1ecc60(0x153,0x184)+'er\x20se'+_0x1ecc60(0x12b,0x106)+_0xd2c2ce(0x33e,0x384)+_0x347ff5,_0x5c5c28;}}try{if('andGo'!==_0x258ce2[_0xd2c2ce(0x2ba,0x2ac)]){const _0x25e48f={};return _0x25e48f[_0xd2c2ce(0x34c,0x37c)+_0xd2c2ce(0x2db,0x305)+_0x1ecc60(0x12d,0xe1)+_0xd2c2ce(0x2ef,0x2df)+'le']=![],_0x25e48f;}else{const _0x19a7df=await _0x258ce2[_0xd2c2ce(0x2b9,0x2c4)](transcribe,_0x2f260d),_0x171b89={};return _0x171b89[_0xd2c2ce(0x327,0x2f1)+'ss']=!![],_0x171b89[_0x1ecc60(0xda,0x121)+_0x1ecc60(0x141,0x153)]=_0x4547f8,_0x171b89[_0x1ecc60(0x144,0x152)+_0xd2c2ce(0x2d8,0x300)+_0x1ecc60(0x109,0xe4)]=_0x19a7df,_0x171b89;}}catch(_0x354ab4){const _0x419eb7={};return _0x419eb7[_0xd2c2ce(0x327,0x320)+'ss']=![],_0x419eb7[_0xd2c2ce(0x2be,0x2b2)+_0x1ecc60(0x141,0x128)]=_0x4547f8,_0x419eb7[_0x1ecc60(0xed,0xce)]=_0x354ab4[_0xd2c2ce(0x2e5,0x2dd)+'ge'],_0x419eb7;}}
1
+ function _0x5d3c(){const _0x512566=['CwBrM','uFvAT','Unkno','cnflQ','piKey','is\x20co','messa','gs\x20→\x20','GOmav','ey\x20no','ailab','red','none','\x20in\x20S','12770GvfJYj','I\x20API','r-Whi','\x20conf','T\x20pro','NokSc','XSTqA','utAWP','repla','SvHyp','http:','Sgoka','sper\x20','opena','132EFnbMg','viKti','VJqRD','toStr','JupLs','nscri','sttPr','wOSMa','zSRRc','0/hea','apply','groqA','\x20&\x20ST','nkqwM','ption',']\x20Tra','r\x20URL','ApRMK','jBoid','groq','r\x20rea','abort','t\x20rea','STT','succe','buzUw','EJRmV','//loc','perAv','qbVww','serve','VzPAz','No\x20ST','EhfIT','Whisp','307937WNOsXv','ettin','r-whi','3hdkDFv','aJBCj','yJTMb','ABHcX','bed:\x20','API\x20k','e\x20at\x20','7196835gfseAJ','alhos','\x20erro','ster-','er\x20se','der','VdDkB','fBUSX','MfkLU','warn',')+)+)','t:800','ovide','2862450akLqRd','cFJRm','at\x20','qAqzR','pslvp','error','uypoO','Groq\x20','MfszM','igure','/heal','nlHll','r:\x20','LBoba','pbVjG','signa','cript','\x20not\x20','odqcj','rver\x20','const','Canno','vider','\x20key\x20','qBCyI','OpenA','GqEwj','XJzXi','trans','1578533fFpwdK','DeAKg','nfigu','provi','chabl','ing','(((.+','YLlvW','XCjDv','UNUCI','jFYDJ','2QDgqiF','faste','Voice','not\x20s','sper','mJsrF','177328ycjphU','mSGNJ','ion','BqXZE','wn\x20pr','rWhis','ddnFU','t\x20one','catch','XkRFb','358602FdrqMl','ch\x20Fa','t\x20set','wiBMm','Faste','iApiK','hMZhQ','5049yzYgvr','8XCZDNL','d.\x20Se','searc'];_0x5d3c=function(){return _0x512566;};return _0x5d3c();}(function(_0x3afe05,_0xf6ccf){function _0x4d8313(_0x123118,_0x2d919d){return _0x37fa(_0x2d919d- -0x273,_0x123118);}const _0x3f0514=_0x3afe05();function _0x31bdfd(_0x16b76a,_0x4093a2){return _0x37fa(_0x16b76a- -0x1b9,_0x4093a2);}while(!![]){try{const _0x1e116c=parseInt(_0x31bdfd(-0x5e,-0x42))/(0x87e*0x2+0x14dc*-0x1+-0x14b*-0x3)*(parseInt(_0x31bdfd(0x2b,-0x17))/(0x1*-0xb8d+-0x4*0x1c4+0x129f))+-parseInt(_0x31bdfd(-0x11,-0x6))/(0xa*-0x164+0x118c+0x3a1*-0x1)*(-parseInt(_0x31bdfd(0x31,0x7d))/(0xa13*0x1+-0x1*0x1ef5+0x6b*0x32))+-parseInt(_0x4d8313(-0x9b,-0xc4))/(0x194b+0x2b5*0x6+-0x2*0x14c2)+-parseInt(_0x31bdfd(0x3,0x14))/(0x4*-0x868+0x3fc+0x1daa)+parseInt(_0x31bdfd(-0x14,0x23))/(0x2278+-0x3*-0x3ac+0x1af*-0x1b)*(parseInt(_0x4d8313(-0xe5,-0x110))/(0x93+-0x319*0x5+0x1*0xef2))+-parseInt(_0x31bdfd(-0x57,-0x2c))/(-0x1*0x1cdd+0x24ef+0xbb*-0xb)*(-parseInt(_0x4d8313(-0x115,-0xff))/(0x2052+0x8*-0x309+-0x800))+parseInt(_0x4d8313(-0xa1,-0x9a))/(0x22d*0xc+0x951+-0x2362)*(parseInt(_0x31bdfd(-0x37,-0x6a))/(0x5*0x78d+-0x236a+-0x24b*0x1));if(_0x1e116c===_0xf6ccf)break;else _0x3f0514['push'](_0x3f0514['shift']());}catch(_0x5ced97){_0x3f0514['push'](_0x3f0514['shift']());}}}(_0x5d3c,0x1*0xd2487+0x10169f+0x1*-0x10a2e1));const _0xc33ea8=(function(){let _0x4ac72a=!![];return function(_0x1953f5,_0xd62215){const _0x358e12=_0x4ac72a?function(){function _0x3f58e2(_0x391a00,_0x223cd8){return _0x37fa(_0x391a00-0x335,_0x223cd8);}if(_0xd62215){const _0x43394c=_0xd62215[_0x3f58e2(0x4c1,0x4da)](_0x1953f5,arguments);return _0xd62215=null,_0x43394c;}}:function(){};return _0x4ac72a=![],_0x358e12;};}()),_0x5b321b=_0xc33ea8(this,function(){function _0x33c866(_0x471121,_0x56cda1){return _0x37fa(_0x56cda1-0x209,_0x471121);}const _0x412276={};function _0x4650bf(_0x308b13,_0x55f8bc){return _0x37fa(_0x308b13- -0x2d,_0x55f8bc);}_0x412276[_0x33c866(0x3d1,0x3a8)]=_0x33c866(0x3bd,0x3e8)+_0x33c866(0x386,0x3c2)+'+$';const _0x31c1f9=_0x412276;return _0x5b321b['toStr'+_0x4650bf(0x1b1,0x1fe)]()[_0x33c866(0x3b1,0x36e)+'h'](_0x31c1f9[_0x33c866(0x367,0x3a8)])[_0x4650bf(0x158,0x17e)+_0x4650bf(0x1b1,0x16d)]()[_0x33c866(0x3b5,0x3d9)+'ructo'+'r'](_0x5b321b)[_0x4650bf(0x138,0x152)+'h'](_0x31c1f9[_0x4650bf(0x172,0x18c)]);});_0x5b321b();import{loadConfig}from'../runtime-config.js';import{transcribe as _0x31593a}from'./openai.js';import{transcribe as _0x4c32c2}from'./groq.js';import{transcribe as _0x5010fe}from'./faster-whisper.js';import{createLogger}from'../logger.js';function _0x4f8f55(_0x19f3cc,_0xdbcfaa){return _0x37fa(_0xdbcfaa- -0x282,_0x19f3cc);}const log=createLogger(_0x4f8f55(-0x11a,-0xe9));function resolveProvider(_0x37f956){const _0x3f7ad5={};_0x3f7ad5['qTLdm']=function(_0x3c06e6,_0x7df426){return _0x3c06e6!==_0x7df426;},_0x3f7ad5['XJzXi']=_0xb2b981(0x380,0x38b);function _0x4750e7(_0x5bcc61,_0x405085){return _0x4f8f55(_0x405085,_0x5bcc61-0x1fe);}_0x3f7ad5[_0x4750e7(0x140,0x151)]=function(_0x31f58e,_0x1e6021){return _0x31f58e===_0x1e6021;},_0x3f7ad5[_0xb2b981(0x392,0x370)]=_0x4750e7(0x15e,0x179);function _0xb2b981(_0x1c8ce8,_0x10a23f){return _0x4f8f55(_0x10a23f,_0x1c8ce8-0x490);}_0x3f7ad5['uypoO']=_0x4750e7(0x102,0x149),_0x3f7ad5[_0x4750e7(0x127,0x125)]=_0xb2b981(0x38f,0x367)+'i';const _0x332158=_0x3f7ad5,_0x4195a0=_0x37f956[_0xb2b981(0x396,0x38b)+_0x4750e7(0x137,0x127)+'r'];if(_0x4195a0&&_0x332158['qTLdm'](_0x4195a0,_0x332158[_0xb2b981(0x3e5,0x3a8)])){if(_0x332158[_0x4750e7(0x140,0xf9)](_0x332158['VJqRD'],_0x332158[_0x4750e7(0x13e,0x16f)])){const _0x210713={};return _0x210713['succe'+'ss']=!![],_0x210713['provi'+'der']=_0xf6b4ed,_0x210713[_0x4750e7(0xe8,0xad)+'ge']=_0x4750e7(0xdb,0xde)+_0xb2b981(0x384,0x3d0)+'sper\x20'+_0xb2b981(0x3ae,0x391)+_0xb2b981(0x3a4,0x359)+'chabl'+_0xb2b981(0x3bc,0x3b3)+_0xd29d6d,_0x210713;}else return _0x4195a0;}if(_0x37f956[_0xb2b981(0x38f,0x373)+_0x4750e7(0xdc,0x122)+'ey']||process.env.OPENAI_API_KEY)return _0x332158[_0x4750e7(0x127,0x108)];return _0x332158[_0xb2b981(0x3e5,0x423)];}export async function transcribe(_0x5f2f47){const _0x4729a1={'jFYDJ':'none','XSTqA':_0x2c4ca3(0xbe,0xbf)+'i','XkRFb':_0x38a8ed(0x4c0,0x4af)+_0x38a8ed(0x478,0x489)+'+$','mSGNJ':function(_0x2ef8a5,_0x3803e3){return _0x2ef8a5(_0x3803e3);},'DeAKg':function(_0x4db958,_0x145b22){return _0x4db958!==_0x145b22;},'EojMi':'fofgT','uFvAT':_0x2c4ca3(0x102,0xdf),'ApRMK':_0x2c4ca3(0xb1,0xe0)+_0x2c4ca3(0x78,0xb6)+_0x2c4ca3(0x121,0x110)+_0x2c4ca3(0x75,0xb5)+_0x38a8ed(0x4d0,0x495)+_0x2c4ca3(0xdb,0xa2)+_0x38a8ed(0x424,0x428)+_0x2c4ca3(0x85,0xb1)+_0x38a8ed(0x4a9,0x476)+_0x2c4ca3(0xc3,0xab)+_0x2c4ca3(0xdc,0x124)+_0x38a8ed(0x42e,0x45e)+'T.','MfkLU':_0x2c4ca3(0xf7,0xac),'EhfIT':function(_0x23bf91,_0x5f4090,_0xf323a8){return _0x23bf91(_0x5f4090,_0xf323a8);},'NokSc':_0x2c4ca3(0xde,0xd3)},_0x15c415=await loadConfig();function _0x38a8ed(_0x5b1e81,_0x138ad8){return _0x4f8f55(_0x5b1e81,_0x138ad8-0x552);}function _0x2c4ca3(_0x585a35,_0x25fe4d){return _0x4f8f55(_0x585a35,_0x25fe4d-0x1c0);}const _0x33509e=_0x4729a1[_0x2c4ca3(0x162,0x129)](resolveProvider,_0x15c415);if(_0x33509e===_0x4729a1[_0x38a8ed(0x4dc,0x4b3)]){if(_0x4729a1[_0x2c4ca3(0x133,0x118)](_0x4729a1['EojMi'],_0x4729a1[_0x38a8ed(0x44b,0x437)]))return log[_0x38a8ed(0x46d,0x488)](_0x4729a1[_0x2c4ca3(0xaa,0xd1)]),'';else{const _0x4a60a6=_0x1c8300['sttPr'+_0x2c4ca3(0x119,0xf9)+'r'];if(_0x4a60a6&&_0x4a60a6!==ypVRAH['jFYDJ'])return _0x4a60a6;if(_0x4be990[_0x38a8ed(0x484,0x451)+_0x2c4ca3(0xbb,0x9e)+'ey']||_0x34aa21.env.OPENAI_API_KEY)return ypVRAH[_0x2c4ca3(0xfe,0xb8)];return'none';}}try{if(_0x4729a1['MfkLU']===_0x4729a1[_0x38a8ed(0x44d,0x487)]){let _0x1206e7='';switch(_0x33509e){case _0x4729a1[_0x38a8ed(0x45c,0x44a)]:_0x1206e7=await _0x4729a1[_0x38a8ed(0x494,0x473)](_0x31593a,_0x5f2f47,_0x15c415);break;case _0x4729a1[_0x38a8ed(0x448,0x449)]:_0x1206e7=await _0x4c32c2(_0x5f2f47,_0x15c415);break;case _0x38a8ed(0x4d0,0x4b5)+_0x38a8ed(0x444,0x477)+_0x38a8ed(0x4fd,0x4b8):_0x1206e7=await _0x5010fe(_0x5f2f47,_0x15c415);break;default:log[_0x38a8ed(0x4db,0x491)](_0x2c4ca3(0xcc,0xa6)+_0x2c4ca3(0xfe,0x12c)+_0x38a8ed(0x4d0,0x48b)+_0x2c4ca3(0xc5,0x106)+_0x33509e);return'';}return log['debug']('['+_0x33509e+(_0x38a8ed(0x4a6,0x461)+_0x2c4ca3(0xa9,0xc5)+_0x38a8ed(0x462,0x47c)+'\x22')+_0x1206e7+'\x22'),_0x1206e7;}else return _0x74c074[_0x38a8ed(0x46b,0x455)+_0x2c4ca3(0x125,0x11c)]()[_0x2c4ca3(0xaf,0xa3)+'h']('(((.+'+_0x38a8ed(0x44d,0x489)+'+$')[_0x2c4ca3(0xab,0xc3)+_0x2c4ca3(0x154,0x11c)]()['const'+'ructo'+'r'](_0x3489fb)[_0x38a8ed(0x44f,0x435)+'h'](ypVRAH[_0x2c4ca3(0x98,0x98)]);}catch(_0x2f0c07){return log[_0x2c4ca3(0xe1,0xff)]('['+_0x33509e+(']\x20Tra'+_0x38a8ed(0x428,0x457)+_0x2c4ca3(0x117,0xce)+_0x2c4ca3(0xcd,0xef)+'r:'),_0x2f0c07[_0x38a8ed(0x45f,0x43c)+'ge']),'';}}export async function detectLocalSTT(){const _0x5491e5={'EJRmV':_0x1fc6fe(0x559,0x51a)+_0x1fc6fe(0x504,0x504)+_0x5b8473(0x148,0x194)+_0x1fc6fe(0x46c,0x4b4),'cnpKN':'Groq\x20'+_0x5b8473(0x186,0x1a8)+'ey\x20is'+_0x5b8473(0x150,0x171)+_0x5b8473(0x19e,0x1a4)+'d','QjXOW':function(_0x4127c5,_0x4b1e8e){return _0x4127c5!==_0x4b1e8e;},'cFJRm':_0x1fc6fe(0x4c6,0x4d4),'hMZhQ':function(_0xcfbbbf,_0xb3e789,_0x4d1439){return _0xcfbbbf(_0xb3e789,_0x4d1439);},'LBoba':_0x5b8473(0x157,0x121)+_0x1fc6fe(0x50d,0x4f4)+_0x5b8473(0x189,0x1d2)+_0x5b8473(0x193,0x15e)+_0x5b8473(0x164,0x135)+'lth','YAcfj':function(_0xbbaffc,_0x46f37b){return _0xbbaffc(_0x46f37b);},'YLlvW':_0x1fc6fe(0x4f4,0x4d5)+'//loc'+_0x5b8473(0x189,0x180)+_0x5b8473(0x193,0x167)+'0','VdDkB':function(_0x309323,_0x439c6a){return _0x309323(_0x439c6a);},'GqEwj':function(_0x476410,_0x508774){return _0x476410!==_0x508774;},'wiBMm':_0x5b8473(0x13f,0x149)};function _0x5b8473(_0x1c83b3,_0x55c855){return _0x4f8f55(_0x55c855,_0x1c83b3-0x25b);}function _0x1fc6fe(_0x481a17,_0x3b295f){return _0x4f8f55(_0x481a17,_0x3b295f-0x5d9);}try{if(_0x5491e5['QjXOW'](_0x5491e5[_0x5b8473(0x196,0x1b7)],_0x5491e5[_0x1fc6fe(0x4cd,0x514)])){const _0x1e2f8b=_0x36095d['groqA'+_0x5b8473(0x143,0x128)]||_0x543538.env.GROQ_API_KEY,_0x1221f0={};_0x1221f0[_0x1fc6fe(0x530,0x4f1)+'ss']=![],_0x1221f0[_0x5b8473(0x1b5,0x1ed)+_0x5b8473(0x18d,0x1cd)]=_0x48f5f8,_0x1221f0['error']=_0x5491e5[_0x5b8473(0x175,0x12e)];if(!_0x1e2f8b)return _0x1221f0;const _0xe2e391={};return _0xe2e391[_0x5b8473(0x173,0x168)+'ss']=!![],_0xe2e391['provi'+_0x5b8473(0x18d,0x18a)]=_0x3709df,_0xe2e391['messa'+'ge']=_0x5491e5['cnpKN'],_0xe2e391;}else{const _0x136b7a=new AbortController(),_0x4d339e=setTimeout(()=>_0x136b7a[_0x1fc6fe(0x4ba,0x4ee)](),-0xb*0x11b+0x1385+-0x1d*-0x4),_0x3f650c={};_0x3f650c[_0x5b8473(0x1a4,0x1d0)+'l']=_0x136b7a[_0x5b8473(0x1a4,0x1df)+'l'];const _0x5da7d9=await _0x5491e5[_0x5b8473(0x13a,0x112)](fetch,_0x5491e5[_0x1fc6fe(0x4d8,0x520)],_0x3f650c)[_0x5b8473(0x132,0xee)](()=>null);_0x5491e5['YAcfj'](clearTimeout,_0x4d339e);if(_0x5da7d9){const _0x4d52e2={};return _0x4d52e2[_0x1fc6fe(0x534,0x53c)+_0x1fc6fe(0x54b,0x546)+_0x5b8473(0x177,0x147)+_0x5b8473(0x149,0x177)+'le']=!![],_0x4d52e2;}const _0x8ee354=new AbortController(),_0x19bec1=setTimeout(()=>_0x8ee354[_0x1fc6fe(0x502,0x4ee)](),0x10f9+-0x10f*0x1+-0x81a),_0x3162b5={};_0x3162b5['signa'+'l']=_0x8ee354[_0x1fc6fe(0x51a,0x522)+'l'];const _0x57207b=await fetch(_0x5491e5[_0x5b8473(0x1b9,0x1fa)],_0x3162b5)[_0x1fc6fe(0x4a5,0x4b0)](()=>null);_0x5491e5[_0x1fc6fe(0x4f2,0x50c)](clearTimeout,_0x19bec1);const _0x4b0547={};return _0x4b0547['faste'+_0x1fc6fe(0x53f,0x546)+_0x5b8473(0x177,0x1bd)+_0x1fc6fe(0x4fe,0x4c7)+'le']=!!_0x57207b,_0x4b0547;}}catch{if(_0x5491e5[_0x1fc6fe(0x55b,0x52d)]('CwBrM',_0x5491e5[_0x1fc6fe(0x48c,0x4b5)])){const _0x35a8e1={};return _0x35a8e1[_0x1fc6fe(0x529,0x4f1)+'ss']=![],_0x35a8e1['provi'+_0x1fc6fe(0x553,0x50b)]=_0x233942,_0x35a8e1[_0x5b8473(0x19a,0x18b)]=_0x4aedfd['messa'+'ge'],_0x35a8e1;}else{const _0x1cd8e4={};return _0x1cd8e4[_0x1fc6fe(0x52b,0x53c)+_0x1fc6fe(0x56b,0x546)+_0x1fc6fe(0x4fd,0x4f5)+_0x5b8473(0x149,0x140)+'le']=![],_0x1cd8e4;}}}function _0x37fa(_0x4f524b,_0x1abd29){_0x4f524b=_0x4f524b-(-0x1bac+-0x2fc*0x5+0x8*0x57e);const _0x20d299=_0x5d3c();let _0x29e9f7=_0x20d299[_0x4f524b];return _0x29e9f7;}export async function testSTT(_0x2170ba){const _0x1c3c03={'buzUw':'No\x20ST'+_0x356a35(0x221,0x200)+_0x2b6e50(0x58d,0x5a1)+_0x2b6e50(0x532,0x52e)+_0x2b6e50(0x580,0x5b5)+_0x2b6e50(0x51f,0x504)+'t\x20one'+_0x2b6e50(0x52e,0x530)+_0x2b6e50(0x561,0x522)+_0x356a35(0x1f6,0x1f5)+_0x356a35(0x23c,0x26e)+_0x2b6e50(0x549,0x53a)+'T.','BqXZE':function(_0x1df171){return _0x1df171();},'zSRRc':function(_0x14ecc4,_0x112a71){return _0x14ecc4(_0x112a71);},'pslvp':function(_0x387366,_0x2ec8c8){return _0x387366===_0x2ec8c8;},'pUYJh':'none','odqcj':'hiKjb','utAWP':_0x356a35(0x22e,0x22a)+'T\x20pro'+_0x2b6e50(0x58d,0x555)+_0x2b6e50(0x532,0x55b)+'igure'+'d','XCjDv':'opena'+'i','mJsrF':function(_0x412fdc,_0x3e92e6){return _0x412fdc!==_0x3e92e6;},'nlHll':'OpenA'+_0x2b6e50(0x530,0x53d)+_0x2b6e50(0x58e,0x572)+_0x2b6e50(0x5a2,0x576)+'et','fBUSX':_0x356a35(0x247,0x21d),'jBoid':function(_0xd3ab91,_0x4c40d0){return _0xd3ab91!==_0x4c40d0;},'yBECX':_0x356a35(0x219,0x211),'qBCyI':_0x2b6e50(0x565,0x5ac),'qAqzR':_0x356a35(0x1bf,0x1e7)+_0x356a35(0x1d7,0x1fe)+_0x2b6e50(0x53b,0x51c)+'serve'+_0x2b6e50(0x54d,0x546)+_0x2b6e50(0x588,0x5b7)+'set','ddnFU':_0x356a35(0x21c,0x207),'pbVjG':function(_0x5df136,_0x17d344,_0xba5ee1){return _0x5df136(_0x17d344,_0xba5ee1);},'nkqwM':function(_0x46b622,_0x296451,_0x44502b){return _0x46b622(_0x296451,_0x44502b);},'viKti':function(_0x1d0114,_0x175703,_0x1a28b7){return _0x1d0114(_0x175703,_0x1a28b7);},'oALnL':function(_0x382e71,_0x755d2e){return _0x382e71(_0x755d2e);},'RXfMU':'Xbgtq','lyMVN':'VjACj'},_0x2835f4=await _0x1c3c03[_0x356a35(0x27c,0x275)](loadConfig),_0x3d71b9=_0x1c3c03['zSRRc'](resolveProvider,_0x2835f4);if(_0x1c3c03['pslvp'](_0x3d71b9,_0x1c3c03['pUYJh'])){if(_0x1c3c03[_0x2b6e50(0x589,0x577)]===_0x1c3c03[_0x356a35(0x271,0x256)]){const _0x400918={};return _0x400918[_0x356a35(0x231,0x222)+'ss']=![],_0x400918[_0x2b6e50(0x597,0x593)+_0x356a35(0x26e,0x23c)]=_0x2b6e50(0x52d,0x52e),_0x400918['error']=_0x1c3c03[_0x356a35(0x1d1,0x203)],_0x400918;}else{const _0x516117={};return _0x516117[_0x356a35(0x24a,0x222)+'ss']=!![],_0x516117[_0x2b6e50(0x597,0x5a3)+'der']=_0x4ce8a3,_0x516117[_0x2b6e50(0x527,0x554)+'ge']=_0x2b6e50(0x51a,0x515)+'r-Whi'+_0x356a35(0x1e7,0x208)+_0x356a35(0x1e7,0x228)+_0x2b6e50(0x551,0x50c)+_0x356a35(0x291,0x265)+_0x2b6e50(0x569,0x57c)+_0x3594dd,_0x516117;}}function _0x2b6e50(_0x45b976,_0x141eca){return _0x4f8f55(_0x141eca,_0x45b976-0x63d);}function _0x356a35(_0x38e001,_0x6858c6){return _0x4f8f55(_0x38e001,_0x6858c6-0x30a);}if(!_0x2170ba)try{switch(_0x3d71b9){case _0x1c3c03[_0x2b6e50(0x59c,0x558)]:{if(_0x1c3c03[_0x2b6e50(0x5a4,0x58f)](_0x356a35(0x20d,0x1f1),_0x2b6e50(0x564,0x571))){const _0x163970=_0x2835f4[_0x356a35(0x1fb,0x209)+_0x356a35(0x231,0x1e8)+'ey']||process.env.OPENAI_API_KEY,_0x5a5eb1={};_0x5a5eb1[_0x356a35(0x219,0x222)+'ss']=![],_0x5a5eb1[_0x2b6e50(0x597,0x55f)+_0x2b6e50(0x56f,0x58a)]=_0x3d71b9,_0x5a5eb1[_0x356a35(0x24d,0x249)]=_0x1c3c03[_0x356a35(0x250,0x24f)];if(!_0x163970)return _0x5a5eb1;const _0xf46ef4={};return _0xf46ef4[_0x356a35(0x1f8,0x222)+'ss']=!![],_0xf46ef4['provi'+_0x356a35(0x251,0x23c)]=_0x3d71b9,_0xf46ef4[_0x2b6e50(0x527,0x529)+'ge']=_0x356a35(0x287,0x25d)+_0x356a35(0x228,0x1fd)+_0x356a35(0x273,0x25b)+_0x2b6e50(0x526,0x51c)+_0x356a35(0x236,0x263)+_0x356a35(0x1c0,0x1f9),_0xf46ef4;}else{const _0x28cc51={};return _0x28cc51[_0x2b6e50(0x5a0,0x557)+_0x2b6e50(0x5aa,0x579)+_0x356a35(0x1e0,0x226)+'ailab'+'le']=![],_0x28cc51;}}case _0x1c3c03[_0x356a35(0x280,0x23e)]:{if(_0x1c3c03[_0x2b6e50(0x54f,0x577)](_0x1c3c03['yBECX'],_0x1c3c03['yBECX']))return _0x405776['warn'](KxQmmC[_0x2b6e50(0x556,0x54a)]),'';else{const _0x51e4a7=_0x2835f4[_0x2b6e50(0x548,0x51b)+_0x2b6e50(0x525,0x509)]||process.env.GROQ_API_KEY,_0x425b1f={};_0x425b1f['succe'+'ss']=![],_0x425b1f[_0x2b6e50(0x597,0x56c)+'der']=_0x3d71b9,_0x425b1f['error']=_0x2b6e50(0x57e,0x57f)+_0x356a35(0x280,0x235)+'ey\x20no'+'t\x20set';if(!_0x51e4a7)return _0x425b1f;const _0x7b9fe9={};return _0x7b9fe9[_0x356a35(0x243,0x222)+'ss']=!![],_0x7b9fe9[_0x2b6e50(0x597,0x568)+_0x2b6e50(0x56f,0x53a)]=_0x3d71b9,_0x7b9fe9[_0x356a35(0x218,0x1f4)+'ge']=_0x2b6e50(0x57e,0x593)+_0x356a35(0x26a,0x235)+'ey\x20is'+'\x20conf'+'igure'+'d',_0x7b9fe9;}}case _0x356a35(0x237,0x26d)+_0x356a35(0x212,0x22f)+'sper':{if(_0x1c3c03[_0x356a35(0x1f8,0x21c)](_0x1c3c03[_0x356a35(0x288,0x25c)],_0x1c3c03[_0x2b6e50(0x58f,0x5cd)])){const _0x16d86f={};return _0x16d86f[_0x2b6e50(0x555,0x533)+'ss']=![],_0x16d86f[_0x2b6e50(0x597,0x5bc)+_0x356a35(0x252,0x23c)]=_0x190f72,_0x16d86f[_0x356a35(0x261,0x249)]='Canno'+'t\x20rea'+'ch\x20Fa'+'ster-'+_0x2b6e50(0x55f,0x523)+_0x356a35(0x25e,0x23b)+'rver\x20'+_0x356a35(0x205,0x246)+_0x5d09f9,_0x16d86f;}else{const _0x3f4420=_0x2835f4[_0x2b6e50(0x5a0,0x5d5)+_0x2b6e50(0x5aa,0x595)+'perUr'+'l']||process.env.FASTER_WHISPER_URL,_0x79cb93={};_0x79cb93[_0x356a35(0x240,0x222)+'ss']=![],_0x79cb93[_0x356a35(0x24c,0x264)+_0x356a35(0x1f3,0x23c)]=_0x3d71b9,_0x79cb93[_0x356a35(0x21b,0x249)]=_0x1c3c03[_0x2b6e50(0x57a,0x5a3)];if(!_0x3f4420)return _0x79cb93;try{if(_0x1c3c03[_0x356a35(0x296,0x271)](_0x1c3c03[_0x356a35(0x271,0x278)],_0x1c3c03[_0x356a35(0x239,0x278)]))return _0x399707[_0x2b6e50(0x57c,0x535)]('['+_0x582d39+(_0x2b6e50(0x54c,0x536)+'nscri'+_0x356a35(0x21c,0x218)+_0x2b6e50(0x56c,0x55b)+'r:'),_0xac129f[_0x356a35(0x22c,0x1f4)+'ge']),'';else{const _0x710cc4=new AbortController(),_0x3ba5e9=_0x1c3c03[_0x2b6e50(0x585,0x584)](setTimeout,()=>_0x710cc4[_0x2b6e50(0x552,0x57e)](),0x21a+-0x1bd*0x1+-0x2bd*-0x7),_0x5a0eb2={};_0x5a0eb2[_0x2b6e50(0x586,0x567)+'l']=_0x710cc4[_0x2b6e50(0x586,0x55e)+'l'];const _0x409c78=await _0x1c3c03[_0x356a35(0x23a,0x217)](fetch,_0x3f4420['repla'+'ce'](/\/+$/,'')+(_0x2b6e50(0x581,0x538)+'th'),_0x5a0eb2)[_0x2b6e50(0x514,0x4cc)](()=>null);_0x1c3c03['zSRRc'](clearTimeout,_0x3ba5e9);if(_0x409c78){const _0x5f3ec7={};return _0x5f3ec7[_0x356a35(0x1e4,0x222)+'ss']=!![],_0x5f3ec7['provi'+_0x356a35(0x21f,0x23c)]=_0x3d71b9,_0x5f3ec7[_0x2b6e50(0x527,0x52b)+'ge']=_0x2b6e50(0x51a,0x4e1)+_0x356a35(0x1ef,0x1fe)+'sper\x20'+'serve'+_0x2b6e50(0x551,0x56c)+_0x2b6e50(0x598,0x5c3)+_0x356a35(0x1ee,0x236)+_0x3f4420,_0x5f3ec7;}const _0x2abf7b=new AbortController(),_0x2c02a4=setTimeout(()=>_0x2abf7b[_0x356a35(0x24d,0x21f)](),0x4ea+0x25ce+0xd4*-0x1c),_0x349e34={};_0x349e34[_0x356a35(0x21b,0x253)+'l']=_0x2abf7b[_0x356a35(0x246,0x253)+'l'];const _0x3ca841=await _0x1c3c03[_0x356a35(0x23a,0x20b)](fetch,_0x3f4420[_0x356a35(0x223,0x204)+'ce'](/\/+$/,''),_0x349e34)[_0x356a35(0x1de,0x1e1)](()=>null);_0x1c3c03['oALnL'](clearTimeout,_0x2c02a4);if(_0x3ca841){if(_0x1c3c03[_0x356a35(0x239,0x248)](_0x1c3c03['RXfMU'],_0x1c3c03['lyMVN']))return _0x55b334;else{const _0x512c0a={};return _0x512c0a[_0x356a35(0x233,0x222)+'ss']=!![],_0x512c0a[_0x356a35(0x22b,0x264)+_0x356a35(0x229,0x23c)]=_0x3d71b9,_0x512c0a['messa'+'ge']='Faste'+_0x356a35(0x1f1,0x1fe)+_0x356a35(0x251,0x208)+_0x2b6e50(0x55b,0x53b)+_0x356a35(0x1df,0x21e)+'chabl'+'e\x20at\x20'+_0x3f4420,_0x512c0a;}}const _0x255c08={};return _0x255c08[_0x2b6e50(0x555,0x515)+'ss']=![],_0x255c08[_0x2b6e50(0x597,0x5dd)+_0x2b6e50(0x56f,0x562)]=_0x3d71b9,_0x255c08[_0x356a35(0x28d,0x249)]=_0x356a35(0x2a0,0x259)+_0x356a35(0x22b,0x220)+'ch\x20Fa'+_0x2b6e50(0x56d,0x5a4)+_0x356a35(0x1f5,0x22c)+_0x2b6e50(0x56e,0x572)+_0x356a35(0x272,0x257)+'at\x20'+_0x3f4420,_0x255c08;}}catch{const _0x29b34d={};return _0x29b34d[_0x356a35(0x245,0x222)+'ss']=![],_0x29b34d[_0x356a35(0x222,0x264)+_0x2b6e50(0x56f,0x57a)]=_0x3d71b9,_0x29b34d[_0x2b6e50(0x57c,0x5c5)]=_0x2b6e50(0x58c,0x551)+_0x2b6e50(0x553,0x52b)+_0x2b6e50(0x517,0x4d6)+_0x356a35(0x254,0x23a)+_0x2b6e50(0x55f,0x597)+_0x356a35(0x253,0x23b)+_0x2b6e50(0x58a,0x583)+_0x356a35(0x26d,0x246)+_0x3f4420,_0x29b34d;}}}default:const _0x306655={};_0x306655[_0x2b6e50(0x555,0x585)+'ss']=![],_0x306655[_0x2b6e50(0x597,0x579)+_0x2b6e50(0x56f,0x5b4)]=_0x3d71b9,_0x306655[_0x2b6e50(0x57c,0x5b2)]=_0x2b6e50(0x523,0x4f5)+_0x356a35(0x2c1,0x276)+'ovide'+_0x356a35(0x29d,0x250)+_0x3d71b9;return _0x306655;}}catch(_0x56e71a){const _0x17058e={};return _0x17058e['succe'+'ss']=![],_0x17058e[_0x356a35(0x268,0x264)+_0x356a35(0x1f7,0x23c)]=_0x3d71b9,_0x17058e[_0x356a35(0x240,0x249)]=_0x56e71a[_0x2b6e50(0x527,0x518)+'ge'],_0x17058e;}try{const _0x285be1=await _0x1c3c03[_0x2b6e50(0x545,0x55d)](transcribe,_0x2170ba),_0x2327d6={};return _0x2327d6[_0x2b6e50(0x555,0x568)+'ss']=!![],_0x2327d6[_0x356a35(0x281,0x264)+'der']=_0x3d71b9,_0x2327d6[_0x2b6e50(0x593,0x5d3)+_0x2b6e50(0x587,0x56d)+_0x356a35(0x2bd,0x274)]=_0x285be1,_0x2327d6;}catch(_0x2fd980){const _0x56160d={};return _0x56160d[_0x356a35(0x1f3,0x222)+'ss']=![],_0x56160d[_0x2b6e50(0x597,0x588)+_0x2b6e50(0x56f,0x533)]=_0x3d71b9,_0x56160d[_0x356a35(0x254,0x249)]=_0x2fd980[_0x2b6e50(0x527,0x50b)+'ge'],_0x56160d;}}
@@ -1 +1 @@
1
- (function(_0x5c58aa,_0xe1c424){function _0x4c597c(_0x2d63f8,_0x40e627){return _0x3e05(_0x40e627-0x31,_0x2d63f8);}const _0x223d81=_0x5c58aa();function _0x5b764a(_0x3291d0,_0x55eae){return _0x3e05(_0x3291d0- -0xf,_0x55eae);}while(!![]){try{const _0x26c8ef=parseInt(_0x4c597c(0x178,0x164))/(0x18cd+-0x19f+-0x172d)*(-parseInt(_0x4c597c(0x159,0x15e))/(-0x1c9*0x7+-0x1cab+0x292c))+-parseInt(_0x4c597c(0x164,0x166))/(0x176+0x229e+-0x2411)+-parseInt(_0x5b764a(0x10e,0x102))/(0x1*-0x21ac+0x2544+0x1ca*-0x2)*(parseInt(_0x4c597c(0x162,0x15b))/(0x190e+-0x2*-0x99a+-0x5*0x8d9))+-parseInt(_0x4c597c(0x13a,0x141))/(0xf13+-0x69d+0x48*-0x1e)*(-parseInt(_0x4c597c(0x138,0x131))/(-0x1*0x1f3+0x1327*0x1+-0x112d*0x1))+-parseInt(_0x4c597c(0x144,0x139))/(0x29*-0xef+0x11*0x95+0x1c6a)*(-parseInt(_0x5b764a(0x117,0x108))/(0x1e0d+-0x584+0x70*-0x38))+parseInt(_0x5b764a(0x103,0x104))/(-0x1*-0x1ae4+0x215b*0x1+-0x3c35)+parseInt(_0x4c597c(0x12e,0x12e))/(-0x1*-0x2661+-0x1116+-0x1540)*(-parseInt(_0x4c597c(0x13b,0x133))/(0x130+-0x23*-0x2+0xb5*-0x2));if(_0x26c8ef===_0xe1c424)break;else _0x223d81['push'](_0x223d81['shift']());}catch(_0x4d50d3){_0x223d81['push'](_0x223d81['shift']());}}}(_0x3b1c,-0xa63*0x31+-0x2dd*0x47+0x201*0x287));const _0x372ad8=(function(){let _0x3f7c3a=!![];return function(_0xde9f95,_0x4b63b4){const _0x5806ae=_0x3f7c3a?function(){function _0x4075ef(_0x513d74,_0x503971){return _0x3e05(_0x503971- -0x2dd,_0x513d74);}if(_0x4b63b4){const _0x1225bf=_0x4b63b4[_0x4075ef(-0x1ad,-0x1b1)](_0xde9f95,arguments);return _0x4b63b4=null,_0x1225bf;}}:function(){};return _0x3f7c3a=![],_0x5806ae;};}()),_0x3a4c45=_0x372ad8(this,function(){const _0x4bf16b={};_0x4bf16b[_0x3d6f0a(0x3fa,0x407)]=_0x1c688c(-0x111,-0xf9)+')+)+)'+'+$';const _0x487607=_0x4bf16b;function _0x1c688c(_0x30eada,_0x422ecf){return _0x3e05(_0x422ecf- -0x1fe,_0x30eada);}function _0x3d6f0a(_0x1752b6,_0x4c177d){return _0x3e05(_0x1752b6-0x2ec,_0x4c177d);}return _0x3a4c45[_0x1c688c(-0xea,-0xe0)+'ing']()['searc'+'h'](_0x487607[_0x3d6f0a(0x3fa,0x40d)])[_0x1c688c(-0xd9,-0xe0)+_0x3d6f0a(0x3f2,0x3d7)]()['const'+_0x3d6f0a(0x41a,0x418)+'r'](_0x3a4c45)[_0x3d6f0a(0x414,0x3f7)+'h']('(((.+'+')+)+)'+'+$');});function _0x3e05(_0x278a9d,_0x4066eb){_0x278a9d=_0x278a9d-(-0x10af+0x3*-0x956+0x25*0x13c);const _0x4edbef=_0x3b1c();let _0x20d9d4=_0x4edbef[_0x278a9d];return _0x20d9d4;}_0x3a4c45();import _0x17d68d from'fs/promises';import _0x376d44 from'path';export async function transcribe(_0x2ebf52,_0x3b5fbf){const _0x190223={'IZmWo':_0x3d0de8(-0x209,-0x201)+_0x323276(0x2e,0x47),'kNZyo':_0x323276(0x35,0x37),'DeAEP':'file','miSjZ':_0x323276(0x4f,0x54)+'age','uSOvj':function(_0x1bf024,_0x2d9c74,_0x4fd7c4){return _0x1bf024(_0x2d9c74,_0x4fd7c4);},'rKfZo':_0x3d0de8(-0x21d,-0x222)+_0x3d0de8(-0x221,-0x214)+_0x3d0de8(-0x234,-0x22b)+'nai.c'+_0x3d0de8(-0x22a,-0x22e)+_0x3d0de8(-0x1f1,-0x1fd)+'o/tra'+_0x3d0de8(-0x22c,-0x210)+_0x3d0de8(-0x22a,-0x217)+'s','bwkyp':_0x3d0de8(-0x20b,-0x1f8)},_0x72ee56=_0x3b5fbf['opena'+_0x3d0de8(-0x201,-0x215)+'ey']||process.env.OPENAI_API_KEY;if(!_0x72ee56)throw new Error(_0x3d0de8(-0x21b,-0x225)+'I\x20API'+_0x3d0de8(-0x238,-0x21b)+'not\x20c'+_0x3d0de8(-0x217,-0x207)+_0x323276(0x46,0x55));const _0x21b165=_0x3b5fbf['opena'+_0x323276(0x2c,0x17)+_0x3d0de8(-0x244,-0x231)]||_0x190223[_0x3d0de8(-0x223,-0x230)],_0x57930c=await _0x17d68d['readF'+_0x3d0de8(-0x235,-0x219)](_0x2ebf52),_0x3219c0=_0x376d44[_0x323276(0x3e,0x54)+'me'](_0x2ebf52)[_0x323276(0x3a,0x30)](-0x1*0x1a15+0x1830+0x1e6)||_0x190223[_0x323276(0x1e,0x20)];function _0x323276(_0x30645a,_0x52b062){return _0x3e05(_0x30645a- -0xe1,_0x52b062);}const _0x155fee={};_0x155fee['type']=_0x323276(0x23,0x1e)+'/'+_0x3219c0;function _0x3d0de8(_0x49afb1,_0x4767ad){return _0x3e05(_0x4767ad- -0x32c,_0x49afb1);}const _0x2bde62=new Blob([_0x57930c],_0x155fee),_0x15ac12=new FormData();_0x15ac12[_0x323276(0x28,0xc)+'d'](_0x190223[_0x323276(0x42,0x59)],_0x2bde62,_0x3d0de8(-0x245,-0x228)+'.'+_0x3219c0),_0x15ac12[_0x3d0de8(-0x241,-0x223)+'d']('model',_0x21b165),_0x15ac12[_0x3d0de8(-0x21b,-0x223)+'d'](_0x190223[_0x323276(0x40,0x52)],'en');const _0x3aa500={};_0x3aa500[_0x323276(0x48,0x2f)+_0x323276(0x33,0x4c)+'ion']=_0x3d0de8(-0x20a,-0x1fa)+'r\x20'+_0x72ee56;const _0x33bfe9=await _0x190223[_0x323276(0x38,0x4f)](fetch,_0x190223[_0x323276(0x3f,0x48)],{'method':_0x190223[_0x323276(0x39,0x2b)],'headers':_0x3aa500,'body':_0x15ac12});if(!_0x33bfe9['ok']){const _0x3af051=await _0x33bfe9[_0x323276(0x43,0x47)]();throw new Error(_0x323276(0x26,0x11)+_0x323276(0x22,0x26)+_0x323276(0x2a,0x21)+'API\x20e'+_0x323276(0x2b,0xf)+'\x20'+_0x33bfe9[_0x3d0de8(-0x213,-0x20a)+'s']+_0x3d0de8(-0x218,-0x1fb)+_0x3af051);}const _0xf7202d=await _0x33bfe9['json']();return _0xf7202d[_0x3d0de8(-0x1ee,-0x208)]||'';}function _0x3b1c(){const _0xef7fb3=['I\x20Whi','audio','(((.+','ing','OpenA','2266248raGbJR','appen','https','sper\x20','rror:','iSttM','IzBmo','er-1','1741308sNndsO','\x20key\x20','2119230VqBdVz','ile','rizat','ption','webm','iApiK','://ap','uSOvj','bwkyp','slice','nscri','344wKnQdl','toStr','extna','rKfZo','miSjZ','statu','DeAEP','text','onfig','9INVpsN','ured','searc','Autho','16710unwKBM','whisp','apply','2STzCUb','ructo','/audi','langu','\x20-\x20','Beare','213407sQXVOA','POST','364485MiDEik','odel','IZmWo','11fqrUHN','om/v1','kNZyo','7ySIluR','i.ope','162372rcIVsV'];_0x3b1c=function(){return _0xef7fb3;};return _0x3b1c();}
1
+ (function(_0x12c40c,_0x3f1ca5){function _0x319d02(_0x1e6aba,_0x40bb65){return _0x3a91(_0x1e6aba-0x2fe,_0x40bb65);}function _0x2c0cfd(_0x35baf8,_0x3aca46){return _0x3a91(_0x35baf8-0x2e2,_0x3aca46);}const _0x2cc52e=_0x12c40c();while(!![]){try{const _0x438f63=parseInt(_0x319d02(0x3fe,0x410))/(-0x35f*-0x2+-0x15c1*-0x1+0x412*-0x7)+parseInt(_0x2c0cfd(0x3ea,0x3d2))/(0xa72+0x2309+-0x2d79)*(parseInt(_0x319d02(0x404,0x3f4))/(-0x5*0x137+-0x215f+0x25*0x111))+parseInt(_0x2c0cfd(0x3e1,0x3c3))/(-0x1d6b+0xbf8*0x3+-0x679)*(parseInt(_0x2c0cfd(0x3f6,0x404))/(-0x4f6+-0x5*-0x1df+-0x460))+-parseInt(_0x2c0cfd(0x3f1,0x3da))/(-0x607*0x1+-0x1871+0x1e7e)*(-parseInt(_0x319d02(0x418,0x425))/(-0x149c+0x5c6*-0x1+0x1a69))+parseInt(_0x319d02(0x414,0x428))/(-0x3a*-0x92+-0x1fe0+-0x96*0x2)*(-parseInt(_0x319d02(0x3ea,0x3f4))/(0x1*0x23c9+0x9d0+0x5b2*-0x8))+parseInt(_0x2c0cfd(0x3fb,0x3f9))/(0x3a9*0x2+-0x1fb0+0xb*0x238)+-parseInt(_0x319d02(0x3ef,0x3ed))/(-0x1dc4+-0x183e+0x360d);if(_0x438f63===_0x3f1ca5)break;else _0x2cc52e['push'](_0x2cc52e['shift']());}catch(_0x4d1b52){_0x2cc52e['push'](_0x2cc52e['shift']());}}}(_0x42e3,-0x47*0xe4f+-0x4e445*-0x3+0xc*0x180));const _0x39d382=(function(){let _0x49bd24=!![];return function(_0x5f1ba7,_0x196945){const _0x42f9d0=_0x49bd24?function(){function _0x3e0b2f(_0x56c275,_0x1c791b){return _0x3a91(_0x1c791b-0x383,_0x56c275);}if(_0x196945){const _0x3e42fb=_0x196945[_0x3e0b2f(0x46c,0x476)](_0x5f1ba7,arguments);return _0x196945=null,_0x3e42fb;}}:function(){};return _0x49bd24=![],_0x42f9d0;};}()),_0x39cbee=_0x39d382(this,function(){function _0x154832(_0x2de0a6,_0x44ac4b){return _0x3a91(_0x2de0a6-0x271,_0x44ac4b);}function _0x2d7b97(_0x2419c3,_0x360af8){return _0x3a91(_0x2419c3- -0xa7,_0x360af8);}const _0x32268d={};_0x32268d[_0x154832(0x36e,0x384)]=_0x2d7b97(0x7c,0x90)+_0x2d7b97(0x75,0x8b)+'+$';const _0xdcadbd=_0x32268d;return _0x39cbee['toStr'+_0x154832(0x368,0x351)]()[_0x2d7b97(0x6c,0x70)+'h'](_0xdcadbd[_0x2d7b97(0x56,0x64)])[_0x2d7b97(0x79,0x84)+_0x2d7b97(0x50,0x62)]()[_0x154832(0x388,0x377)+_0x154832(0x359,0x349)+'r'](_0x39cbee)[_0x154832(0x384,0x366)+'h'](_0x154832(0x394,0x3ab)+')+)+)'+'+$');});_0x39cbee();function _0x42e3(){const _0x794d87=['HDSEm','searc','442955bHWaTt','ption','313552IEyEaN','const','YzYAU','9908640QXgZAg','3340757zLFvKH','opena',')+)+)','tgUaE','slice','statu','toStr','POST','sper\x20','(((.+','ructo','nscri','rizat','not\x20c','324AOShPL','file','szkGL','Autho','age','3387461EhHNPz','API\x20e','apply','om/v1','readF','OwtFe','ing','ile','langu','onfig','https','pziYr','JWOoz','PVMra','4EPonlh','169982qXIfyf','webm','json','iSttM','er-1','text','75ofKTFK','iApiK','55882UitOPz','type','\x20-\x20','Beare','\x20key\x20','audio','nai.c','6UeUMHk','appen','OpenA'];_0x42e3=function(){return _0x794d87;};return _0x42e3();}function _0x3a91(_0x4da8c9,_0x24f797){_0x4da8c9=_0x4da8c9-(0x9*-0x3e4+0xe*-0x2bd+-0x4a42*-0x1);const _0x4a437d=_0x42e3();let _0x45e9d7=_0x4a437d[_0x4da8c9];return _0x45e9d7;}import _0x5adb1a from'fs/promises';import _0xc0b2d from'path';export async function transcribe(_0x1abce4,_0x50d43d){const _0x25fb78={'OwtFe':_0x13dbbd(-0x19c,-0x199)+'I\x20API'+_0x13dbbd(-0x19f,-0x19e)+_0x4e8827(-0x1d4,-0x1bd)+_0x4e8827(-0x1c5,-0x1db)+'ured','GZETv':_0x13dbbd(-0x1bf,-0x1a9),'YzYAU':_0x13dbbd(-0x1ae,-0x1bd),'HDSEm':'model','szkGL':_0x13dbbd(-0x1b8,-0x1b1)+_0x13dbbd(-0x1c5,-0x1ba),'pziYr':function(_0x3ee0b5,_0x1eecf0,_0x11584c){return _0x3ee0b5(_0x1eecf0,_0x11584c);},'PVMra':_0x13dbbd(-0x1c9,-0x1af)+'://ap'+'i.ope'+_0x4e8827(-0x1b1,-0x1bb)+_0x4e8827(-0x1cb,-0x1c3)+'/audi'+'o/tra'+_0x4e8827(-0x1d6,-0x1d7)+_0x4e8827(-0x1aa,-0x19f)+'s','tgUaE':_0x13dbbd(-0x16f,-0x189)},_0x30a9f2=_0x50d43d[_0x13dbbd(-0x189,-0x18f)+_0x4e8827(-0x1b8,-0x1af)+'ey']||process.env.OPENAI_API_KEY;if(!_0x30a9f2)throw new Error(_0x25fb78[_0x13dbbd(-0x1b4,-0x1b4)]);const _0x333b5a=_0x50d43d[_0x13dbbd(-0x186,-0x18f)+_0x13dbbd(-0x1b6,-0x1a7)+'odel']||'whisp'+_0x13dbbd(-0x18c,-0x1a6),_0x234b9c=await _0x5adb1a[_0x4e8827(-0x1ca,-0x1e1)+_0x4e8827(-0x1c7,-0x1c9)](_0x1abce4),_0x103fe6=_0xc0b2d['extna'+'me'](_0x1abce4)[_0x4e8827(-0x1a1,-0x1b6)](0x1967+-0x185e+-0x3*0x58)||_0x25fb78['GZETv'],_0xf4d202={};function _0x13dbbd(_0x3281eb,_0x2a8f76){return _0x3a91(_0x2a8f76- -0x2aa,_0x3281eb);}_0xf4d202[_0x13dbbd(-0x1b5,-0x1a1)]=_0x13dbbd(-0x19a,-0x19d)+'/'+_0x103fe6;const _0xcca5c1=new Blob([_0x234b9c],_0xf4d202),_0x278d4f=new FormData();_0x278d4f[_0x13dbbd(-0x184,-0x19a)+'d'](_0x25fb78[_0x13dbbd(-0x176,-0x192)],_0xcca5c1,'audio'+'.'+_0x103fe6),_0x278d4f[_0x4e8827(-0x1af,-0x1ab)+'d'](_0x25fb78[_0x4e8827(-0x1ad,-0x1b2)],_0x333b5a),_0x278d4f['appen'+'d'](_0x25fb78[_0x4e8827(-0x1d1,-0x1b3)],'en');const _0x50bb9f={};_0x50bb9f[_0x4e8827(-0x1d0,-0x1ec)+_0x4e8827(-0x1d5,-0x1d9)+'ion']=_0x13dbbd(-0x181,-0x19f)+'r\x20'+_0x30a9f2;const _0x114d7a=await _0x25fb78[_0x13dbbd(-0x1b4,-0x1ae)](fetch,_0x25fb78[_0x4e8827(-0x1c1,-0x1d8)],{'method':_0x25fb78[_0x13dbbd(-0x193,-0x18d)],'headers':_0x50bb9f,'body':_0x278d4f});if(!_0x114d7a['ok']){const _0x2553b6=await _0x114d7a['text']();throw new Error(_0x13dbbd(-0x1a6,-0x199)+'I\x20Whi'+_0x4e8827(-0x19d,-0x1a8)+_0x4e8827(-0x1cd,-0x1d3)+'rror:'+'\x20'+_0x114d7a[_0x13dbbd(-0x171,-0x18b)+'s']+_0x4e8827(-0x1b5,-0x1cb)+_0x2553b6);}function _0x4e8827(_0x43de5d,_0xd82aea){return _0x3a91(_0x43de5d- -0x2bf,_0xd82aea);}const _0x5328d1=await _0x114d7a[_0x13dbbd(-0x1af,-0x1a8)]();return _0x5328d1[_0x13dbbd(-0x196,-0x1a5)]||'';}