@vkontakte/videoplayer-core 2.0.131-dev.f14d8d97.0 → 2.0.131-dev.f8833e36.0

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 (73) hide show
  1. package/es2015.cjs.js +94 -33
  2. package/es2015.esm.js +90 -29
  3. package/es2018.cjs.js +95 -34
  4. package/es2018.esm.js +91 -30
  5. package/es2024.cjs.js +97 -36
  6. package/es2024.esm.js +93 -32
  7. package/esnext.cjs.js +97 -36
  8. package/esnext.esm.js +93 -32
  9. package/evergreen.esm.js +91 -30
  10. package/package.json +2 -2
  11. package/types/player/types.d.ts +0 -10
  12. package/types/providers/DashProvider/baseDashProvider.d.ts +1 -2
  13. package/types/providers/DashProvider/lib/player.d.ts +1 -4
  14. package/types/providers/DashProvider/lib/types.d.ts +1 -5
  15. package/types/providers/DashProviderNew/baseDashProvider.d.ts +57 -0
  16. package/types/providers/DashProviderNew/consts.d.ts +3 -0
  17. package/types/providers/DashProviderNew/index.d.ts +2 -0
  18. package/types/providers/DashProviderNew/lib/ElementSizeManager.d.ts +19 -0
  19. package/types/providers/DashProviderNew/lib/LiveTextManager.d.ts +23 -0
  20. package/types/providers/DashProviderNew/lib/buffer.d.ts +117 -0
  21. package/types/providers/DashProviderNew/lib/fetcher.d.ts +59 -0
  22. package/types/providers/DashProviderNew/lib/parsers/ietf/index.d.ts +13 -0
  23. package/types/providers/DashProviderNew/lib/parsers/index.d.ts +3 -0
  24. package/types/providers/DashProviderNew/lib/parsers/mpd.d.ts +3 -0
  25. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxModel.d.ts +20 -0
  26. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxParser.d.ts +21 -0
  27. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxTypeEnum.d.ts +30 -0
  28. package/types/providers/DashProviderNew/lib/parsers/mpeg/box.d.ts +74 -0
  29. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/avc1.d.ts +8 -0
  30. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/equi.d.ts +21 -0
  31. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/ftyp.d.ts +17 -0
  32. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/index.d.ts +26 -0
  33. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdat.d.ts +15 -0
  34. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdia.d.ts +8 -0
  35. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mfhd.d.ts +11 -0
  36. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/minf.d.ts +8 -0
  37. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moof.d.ts +8 -0
  38. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moov.d.ts +8 -0
  39. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mvhd.d.ts +35 -0
  40. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/prhd.d.ts +16 -0
  41. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/proj.d.ts +8 -0
  42. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sidx.d.ts +48 -0
  43. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/st3d.d.ts +23 -0
  44. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stbl.d.ts +8 -0
  45. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stsd.d.ts +11 -0
  46. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sv3d.d.ts +8 -0
  47. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfdt.d.ts +17 -0
  48. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfhd.d.ts +22 -0
  49. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tkhd.d.ts +42 -0
  50. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/traf.d.ts +8 -0
  51. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trak.d.ts +8 -0
  52. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trun.d.ts +31 -0
  53. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/unknown.d.ts +6 -0
  54. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/uuid.d.ts +11 -0
  55. package/types/providers/DashProviderNew/lib/parsers/mpeg/fullBox.d.ts +15 -0
  56. package/types/providers/DashProviderNew/lib/parsers/mpeg/isobmff.d.ts +12 -0
  57. package/types/providers/DashProviderNew/lib/parsers/webm/ebml.d.ts +76 -0
  58. package/types/providers/DashProviderNew/lib/parsers/webm/webm.d.ts +3 -0
  59. package/types/providers/DashProviderNew/lib/player.d.ts +92 -0
  60. package/types/providers/DashProviderNew/lib/sourceBufferTaskQueue.d.ts +19 -0
  61. package/types/providers/DashProviderNew/lib/types.d.ts +186 -0
  62. package/types/providers/DashProviderNew/lib/utils.d.ts +21 -0
  63. package/types/providers/DashProviderNew/newDashCmafLiveProvider.d.ts +8 -0
  64. package/types/providers/DashProviderNew/newDashProvider.d.ts +6 -0
  65. package/types/providers/ProviderContainer/index.d.ts +0 -2
  66. package/types/providers/ProviderContainer/utils/formatsSupport.d.ts +1 -4
  67. package/types/providers/types.d.ts +1 -3
  68. package/types/providers/utils/HTMLVideoElement/observable.d.ts +0 -1
  69. package/types/providers/utils/StallsManager.d.ts +18 -4
  70. package/types/utils/StatefulIterator/index.d.ts +1 -5
  71. package/types/utils/autoSelectTrack.d.ts +6 -3
  72. package/types/utils/qualityLimits.d.ts +3 -18
  73. package/types/utils/tuningConfig.d.ts +27 -8
package/es2024.cjs.js CHANGED
@@ -1,73 +1,127 @@
1
1
  /**
2
- * @vkontakte/videoplayer-core v2.0.131-dev.f14d8d97.0
3
- * Thu, 17 Apr 2025 15:45:13 GMT
2
+ * @vkontakte/videoplayer-core v2.0.131-dev.f8833e36.0
3
+ * Thu, 15 May 2025 11:30:37 GMT
4
4
  * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-131/doc/
5
5
  */
6
- "use strict";var Iv=Object.create;var Ba=Object.defineProperty;var Ev=Object.getOwnPropertyDescriptor;var xv=Object.getOwnPropertyNames;var Pv=Object.getPrototypeOf,kv=Object.prototype.hasOwnProperty;var f=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),wv=(r,e)=>{for(var t in e)Ba(r,t,{get:e[t],enumerable:!0})},tl=(r,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let a of xv(e))!kv.call(r,a)&&a!==t&&Ba(r,a,{get:()=>e[a],enumerable:!(i=Ev(e,a))||i.enumerable});return r};var F=(r,e,t)=>(t=r!=null?Iv(Pv(r)):{},tl(e||!r||!r.__esModule?Ba(t,"default",{value:r,enumerable:!0}):t,r)),Av=r=>tl(Ba({},"__esModule",{value:!0}),r);var de=f((sn,il)=>{"use strict";var rr=function(r){return r&&r.Math===Math&&r};il.exports=rr(typeof globalThis=="object"&&globalThis)||rr(typeof window=="object"&&window)||rr(typeof self=="object"&&self)||rr(typeof global=="object"&&global)||rr(typeof sn=="object"&&sn)||function(){return this}()||Function("return this")()});var Ie=f((lL,rl)=>{"use strict";rl.exports=function(r){try{return!!r()}catch{return!0}}});var ar=f((cL,al)=>{"use strict";var Lv=Ie();al.exports=!Lv(function(){var r=function(){}.bind();return typeof r!="function"||r.hasOwnProperty("prototype")})});var nn=f((dL,ul)=>{"use strict";var Rv=ar(),ol=Function.prototype,sl=ol.apply,nl=ol.call;ul.exports=typeof Reflect=="object"&&Reflect.apply||(Rv?nl.bind(sl):function(){return nl.apply(sl,arguments)})});var Se=f((pL,dl)=>{"use strict";var ll=ar(),cl=Function.prototype,on=cl.call,$v=ll&&cl.bind.bind(on,on);dl.exports=ll?$v:function(r){return function(){return on.apply(r,arguments)}}});var Jt=f((hL,hl)=>{"use strict";var pl=Se(),Mv=pl({}.toString),Cv=pl("".slice);hl.exports=function(r){return Cv(Mv(r),8,-1)}});var un=f((mL,ml)=>{"use strict";var Dv=Jt(),Vv=Se();ml.exports=function(r){if(Dv(r)==="Function")return Vv(r)}});var le=f((fL,fl)=>{"use strict";var ln=typeof document=="object"&&document.all;fl.exports=typeof ln>"u"&&ln!==void 0?function(r){return typeof r=="function"||r===ln}:function(r){return typeof r=="function"}});var Ue=f((bL,bl)=>{"use strict";var Bv=Ie();bl.exports=!Bv(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var He=f((gL,gl)=>{"use strict";var Ov=ar(),Na=Function.prototype.call;gl.exports=Ov?Na.bind(Na):function(){return Na.apply(Na,arguments)}});var cn=f(yl=>{"use strict";var vl={}.propertyIsEnumerable,Sl=Object.getOwnPropertyDescriptor,_v=Sl&&!vl.call({1:2},1);yl.f=_v?function(e){var t=Sl(this,e);return!!t&&t.enumerable}:vl});var sr=f((SL,Tl)=>{"use strict";Tl.exports=function(r,e){return{enumerable:!(r&1),configurable:!(r&2),writable:!(r&4),value:e}}});var El=f((yL,Il)=>{"use strict";var Nv=Se(),Fv=Ie(),qv=Jt(),dn=Object,Uv=Nv("".split);Il.exports=Fv(function(){return!dn("z").propertyIsEnumerable(0)})?function(r){return qv(r)==="String"?Uv(r,""):dn(r)}:dn});var yi=f((TL,xl)=>{"use strict";xl.exports=function(r){return r==null}});var Bt=f((IL,Pl)=>{"use strict";var Hv=yi(),jv=TypeError;Pl.exports=function(r){if(Hv(r))throw new jv("Can't call method on "+r);return r}});var Zt=f((EL,kl)=>{"use strict";var Qv=El(),Gv=Bt();kl.exports=function(r){return Qv(Gv(r))}});var je=f((xL,wl)=>{"use strict";var Wv=le();wl.exports=function(r){return typeof r=="object"?r!==null:Wv(r)}});var Ti=f((PL,Al)=>{"use strict";Al.exports={}});var It=f((kL,Rl)=>{"use strict";var pn=Ti(),hn=de(),Yv=le(),Ll=function(r){return Yv(r)?r:void 0};Rl.exports=function(r,e){return arguments.length<2?Ll(pn[r])||Ll(hn[r]):pn[r]&&pn[r][e]||hn[r]&&hn[r][e]}});var nr=f((wL,$l)=>{"use strict";var zv=Se();$l.exports=zv({}.isPrototypeOf)});var ei=f((AL,Dl)=>{"use strict";var Kv=de(),Ml=Kv.navigator,Cl=Ml&&Ml.userAgent;Dl.exports=Cl?String(Cl):""});var fn=f((LL,Fl)=>{"use strict";var Nl=de(),mn=ei(),Vl=Nl.process,Bl=Nl.Deno,Ol=Vl&&Vl.versions||Bl&&Bl.version,_l=Ol&&Ol.v8,it,Fa;_l&&(it=_l.split("."),Fa=it[0]>0&&it[0]<4?1:+(it[0]+it[1]));!Fa&&mn&&(it=mn.match(/Edge\/(\d+)/),(!it||it[1]>=74)&&(it=mn.match(/Chrome\/(\d+)/),it&&(Fa=+it[1])));Fl.exports=Fa});var bn=f((RL,Ul)=>{"use strict";var ql=fn(),Xv=Ie(),Jv=de(),Zv=Jv.String;Ul.exports=!!Object.getOwnPropertySymbols&&!Xv(function(){var r=Symbol("symbol detection");return!Zv(r)||!(Object(r)instanceof Symbol)||!Symbol.sham&&ql&&ql<41})});var gn=f(($L,Hl)=>{"use strict";var eS=bn();Hl.exports=eS&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var vn=f((ML,jl)=>{"use strict";var tS=It(),iS=le(),rS=nr(),aS=gn(),sS=Object;jl.exports=aS?function(r){return typeof r=="symbol"}:function(r){var e=tS("Symbol");return iS(e)&&rS(e.prototype,sS(r))}});var or=f((CL,Ql)=>{"use strict";var nS=String;Ql.exports=function(r){try{return nS(r)}catch{return"Object"}}});var mt=f((DL,Gl)=>{"use strict";var oS=le(),uS=or(),lS=TypeError;Gl.exports=function(r){if(oS(r))return r;throw new lS(uS(r)+" is not a function")}});var ur=f((VL,Wl)=>{"use strict";var cS=mt(),dS=yi();Wl.exports=function(r,e){var t=r[e];return dS(t)?void 0:cS(t)}});var zl=f((BL,Yl)=>{"use strict";var Sn=He(),yn=le(),Tn=je(),pS=TypeError;Yl.exports=function(r,e){var t,i;if(e==="string"&&yn(t=r.toString)&&!Tn(i=Sn(t,r))||yn(t=r.valueOf)&&!Tn(i=Sn(t,r))||e!=="string"&&yn(t=r.toString)&&!Tn(i=Sn(t,r)))return i;throw new pS("Can't convert object to primitive value")}});var rt=f((OL,Kl)=>{"use strict";Kl.exports=!0});var Zl=f((_L,Jl)=>{"use strict";var Xl=de(),hS=Object.defineProperty;Jl.exports=function(r,e){try{hS(Xl,r,{value:e,configurable:!0,writable:!0})}catch{Xl[r]=e}return e}});var lr=f((NL,ic)=>{"use strict";var mS=rt(),fS=de(),bS=Zl(),ec="__core-js_shared__",tc=ic.exports=fS[ec]||bS(ec,{});(tc.versions||(tc.versions=[])).push({version:"3.38.0",mode:mS?"pure":"global",copyright:"\xA9 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var In=f((FL,ac)=>{"use strict";var rc=lr();ac.exports=function(r,e){return rc[r]||(rc[r]=e||{})}});var Ii=f((qL,sc)=>{"use strict";var gS=Bt(),vS=Object;sc.exports=function(r){return vS(gS(r))}});var at=f((UL,nc)=>{"use strict";var SS=Se(),yS=Ii(),TS=SS({}.hasOwnProperty);nc.exports=Object.hasOwn||function(e,t){return TS(yS(e),t)}});var En=f((HL,oc)=>{"use strict";var IS=Se(),ES=0,xS=Math.random(),PS=IS(1 .toString);oc.exports=function(r){return"Symbol("+(r===void 0?"":r)+")_"+PS(++ES+xS,36)}});var Ee=f((jL,lc)=>{"use strict";var kS=de(),wS=In(),uc=at(),AS=En(),LS=bn(),RS=gn(),Ei=kS.Symbol,xn=wS("wks"),$S=RS?Ei.for||Ei:Ei&&Ei.withoutSetter||AS;lc.exports=function(r){return uc(xn,r)||(xn[r]=LS&&uc(Ei,r)?Ei[r]:$S("Symbol."+r)),xn[r]}});var hc=f((QL,pc)=>{"use strict";var MS=He(),cc=je(),dc=vn(),CS=ur(),DS=zl(),VS=Ee(),BS=TypeError,OS=VS("toPrimitive");pc.exports=function(r,e){if(!cc(r)||dc(r))return r;var t=CS(r,OS),i;if(t){if(e===void 0&&(e="default"),i=MS(t,r,e),!cc(i)||dc(i))return i;throw new BS("Can't convert object to primitive value")}return e===void 0&&(e="number"),DS(r,e)}});var Pn=f((GL,mc)=>{"use strict";var _S=hc(),NS=vn();mc.exports=function(r){var e=_S(r,"string");return NS(e)?e:e+""}});var qa=f((WL,bc)=>{"use strict";var FS=de(),fc=je(),kn=FS.document,qS=fc(kn)&&fc(kn.createElement);bc.exports=function(r){return qS?kn.createElement(r):{}}});var wn=f((YL,gc)=>{"use strict";var US=Ue(),HS=Ie(),jS=qa();gc.exports=!US&&!HS(function(){return Object.defineProperty(jS("div"),"a",{get:function(){return 7}}).a!==7})});var yc=f(Sc=>{"use strict";var QS=Ue(),GS=He(),WS=cn(),YS=sr(),zS=Zt(),KS=Pn(),XS=at(),JS=wn(),vc=Object.getOwnPropertyDescriptor;Sc.f=QS?vc:function(e,t){if(e=zS(e),t=KS(t),JS)try{return vc(e,t)}catch{}if(XS(e,t))return YS(!GS(WS.f,e,t),e[t])}});var An=f((KL,Tc)=>{"use strict";var ZS=Ie(),ey=le(),ty=/#|\.prototype\./,cr=function(r,e){var t=ry[iy(r)];return t===sy?!0:t===ay?!1:ey(e)?ZS(e):!!e},iy=cr.normalize=function(r){return String(r).replace(ty,".").toLowerCase()},ry=cr.data={},ay=cr.NATIVE="N",sy=cr.POLYFILL="P";Tc.exports=cr});var xi=f((XL,Ec)=>{"use strict";var Ic=un(),ny=mt(),oy=ar(),uy=Ic(Ic.bind);Ec.exports=function(r,e){return ny(r),e===void 0?r:oy?uy(r,e):function(){return r.apply(e,arguments)}}});var Ln=f((JL,xc)=>{"use strict";var ly=Ue(),cy=Ie();xc.exports=ly&&cy(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var ft=f((ZL,Pc)=>{"use strict";var dy=je(),py=String,hy=TypeError;Pc.exports=function(r){if(dy(r))return r;throw new hy(py(r)+" is not an object")}});var ti=f(wc=>{"use strict";var my=Ue(),fy=wn(),by=Ln(),Ua=ft(),kc=Pn(),gy=TypeError,Rn=Object.defineProperty,vy=Object.getOwnPropertyDescriptor,$n="enumerable",Mn="configurable",Cn="writable";wc.f=my?by?function(e,t,i){if(Ua(e),t=kc(t),Ua(i),typeof e=="function"&&t==="prototype"&&"value"in i&&Cn in i&&!i[Cn]){var a=vy(e,t);a&&a[Cn]&&(e[t]=i.value,i={configurable:Mn in i?i[Mn]:a[Mn],enumerable:$n in i?i[$n]:a[$n],writable:!1})}return Rn(e,t,i)}:Rn:function(e,t,i){if(Ua(e),t=kc(t),Ua(i),fy)try{return Rn(e,t,i)}catch{}if("get"in i||"set"in i)throw new gy("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var Pi=f((tR,Ac)=>{"use strict";var Sy=Ue(),yy=ti(),Ty=sr();Ac.exports=Sy?function(r,e,t){return yy.f(r,e,Ty(1,t))}:function(r,e,t){return r[e]=t,r}});var me=f((iR,Rc)=>{"use strict";var dr=de(),Iy=nn(),Ey=un(),xy=le(),Py=yc().f,ky=An(),ki=Ti(),wy=xi(),wi=Pi(),Lc=at();lr();var Ay=function(r){var e=function(t,i,a){if(this instanceof e){switch(arguments.length){case 0:return new r;case 1:return new r(t);case 2:return new r(t,i)}return new r(t,i,a)}return Iy(r,this,arguments)};return e.prototype=r.prototype,e};Rc.exports=function(r,e){var t=r.target,i=r.global,a=r.stat,s=r.proto,n=i?dr:a?dr[t]:dr[t]&&dr[t].prototype,o=i?ki:ki[t]||wi(ki,t,{})[t],u=o.prototype,l,d,p,h,m,b,v,T,I;for(h in e)l=ky(i?h:t+(a?".":"#")+h,r.forced),d=!l&&n&&Lc(n,h),b=o[h],d&&(r.dontCallGetSet?(I=Py(n,h),v=I&&I.value):v=n[h]),m=d&&v?v:e[h],!(!l&&!s&&typeof b==typeof m)&&(r.bind&&d?T=wy(m,dr):r.wrap&&d?T=Ay(m):s&&xy(m)?T=Ey(m):T=m,(r.sham||m&&m.sham||b&&b.sham)&&wi(T,"sham",!0),wi(o,h,T),s&&(p=t+"Prototype",Lc(ki,p)||wi(ki,p,{}),wi(ki[p],h,m),r.real&&u&&(l||!u[h])&&wi(u,h,m)))}});var Mc=f((rR,$c)=>{"use strict";var Ly=Math.ceil,Ry=Math.floor;$c.exports=Math.trunc||function(e){var t=+e;return(t>0?Ry:Ly)(t)}});var pr=f((aR,Cc)=>{"use strict";var $y=Mc();Cc.exports=function(r){var e=+r;return e!==e||e===0?0:$y(e)}});var Vc=f((sR,Dc)=>{"use strict";var My=pr(),Cy=Math.max,Dy=Math.min;Dc.exports=function(r,e){var t=My(r);return t<0?Cy(t+e,0):Dy(t,e)}});var Dn=f((nR,Bc)=>{"use strict";var Vy=pr(),By=Math.min;Bc.exports=function(r){var e=Vy(r);return e>0?By(e,9007199254740991):0}});var Ai=f((oR,Oc)=>{"use strict";var Oy=Dn();Oc.exports=function(r){return Oy(r.length)}});var Vn=f((uR,Nc)=>{"use strict";var _y=Zt(),Ny=Vc(),Fy=Ai(),_c=function(r){return function(e,t,i){var a=_y(e),s=Fy(a);if(s===0)return!r&&-1;var n=Ny(i,s),o;if(r&&t!==t){for(;s>n;)if(o=a[n++],o!==o)return!0}else for(;s>n;n++)if((r||n in a)&&a[n]===t)return r||n||0;return!r&&-1}};Nc.exports={includes:_c(!0),indexOf:_c(!1)}});var hr=f((lR,Fc)=>{"use strict";Fc.exports=function(){}});var qc=f(()=>{"use strict";var qy=me(),Uy=Vn().includes,Hy=Ie(),jy=hr(),Qy=Hy(function(){return!Array(1).includes()});qy({target:"Array",proto:!0,forced:Qy},{includes:function(e){return Uy(this,e,arguments.length>1?arguments[1]:void 0)}});jy("includes")});var Ot=f((pR,Uc)=>{"use strict";var Gy=It();Uc.exports=Gy});var jc=f((hR,Hc)=>{"use strict";qc();var Wy=Ot();Hc.exports=Wy("Array","includes")});var Gc=f((mR,Qc)=>{"use strict";var Yy=jc();Qc.exports=Yy});var De=f((fR,Wc)=>{"use strict";var zy=Gc();Wc.exports=zy});var ja=f((kR,Kc)=>{"use strict";var Xy=In(),Jy=En(),zc=Xy("keys");Kc.exports=function(r){return zc[r]||(zc[r]=Jy(r))}});var Jc=f((wR,Xc)=>{"use strict";var Zy=Ie();Xc.exports=!Zy(function(){function r(){}return r.prototype.constructor=null,Object.getPrototypeOf(new r)!==r.prototype})});var Qa=f((AR,ed)=>{"use strict";var eT=at(),tT=le(),iT=Ii(),rT=ja(),aT=Jc(),Zc=rT("IE_PROTO"),Bn=Object,sT=Bn.prototype;ed.exports=aT?Bn.getPrototypeOf:function(r){var e=iT(r);if(eT(e,Zc))return e[Zc];var t=e.constructor;return tT(t)&&e instanceof t?t.prototype:e instanceof Bn?sT:null}});var Ga=f((LR,td)=>{"use strict";td.exports={}});var ad=f((RR,rd)=>{"use strict";var nT=Se(),On=at(),oT=Zt(),uT=Vn().indexOf,lT=Ga(),id=nT([].push);rd.exports=function(r,e){var t=oT(r),i=0,a=[],s;for(s in t)!On(lT,s)&&On(t,s)&&id(a,s);for(;e.length>i;)On(t,s=e[i++])&&(~uT(a,s)||id(a,s));return a}});var _n=f(($R,sd)=>{"use strict";sd.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Nn=f((MR,nd)=>{"use strict";var cT=ad(),dT=_n();nd.exports=Object.keys||function(e){return cT(e,dT)}});var Fn=f((CR,dd)=>{"use strict";var ud=Ue(),pT=Ie(),ld=Se(),hT=Qa(),mT=Nn(),fT=Zt(),bT=cn().f,cd=ld(bT),gT=ld([].push),vT=ud&&pT(function(){var r=Object.create(null);return r[2]=2,!cd(r,2)}),od=function(r){return function(e){for(var t=fT(e),i=mT(t),a=vT&&hT(t)===null,s=i.length,n=0,o=[],u;s>n;)u=i[n++],(!ud||(a?u in t:cd(t,u)))&&gT(o,r?[u,t[u]]:t[u]);return o}};dd.exports={entries:od(!0),values:od(!1)}});var pd=f(()=>{"use strict";var ST=me(),yT=Fn().entries;ST({target:"Object",stat:!0},{entries:function(e){return yT(e)}})});var md=f((BR,hd)=>{"use strict";pd();var TT=Ti();hd.exports=TT.Object.entries});var bd=f((OR,fd)=>{"use strict";var IT=md();fd.exports=IT});var Li=f((_R,gd)=>{"use strict";var ET=bd();gd.exports=ET});var ii=f((NR,vd)=>{"use strict";vd.exports={}});var Td=f((FR,yd)=>{"use strict";var xT=de(),PT=le(),Sd=xT.WeakMap;yd.exports=PT(Sd)&&/native code/.test(String(Sd))});var jn=f((qR,xd)=>{"use strict";var kT=Td(),Ed=de(),wT=je(),AT=Pi(),qn=at(),Un=lr(),LT=ja(),RT=Ga(),Id="Object already initialized",Hn=Ed.TypeError,$T=Ed.WeakMap,Wa,mr,Ya,MT=function(r){return Ya(r)?mr(r):Wa(r,{})},CT=function(r){return function(e){var t;if(!wT(e)||(t=mr(e)).type!==r)throw new Hn("Incompatible receiver, "+r+" required");return t}};kT||Un.state?(st=Un.state||(Un.state=new $T),st.get=st.get,st.has=st.has,st.set=st.set,Wa=function(r,e){if(st.has(r))throw new Hn(Id);return e.facade=r,st.set(r,e),e},mr=function(r){return st.get(r)||{}},Ya=function(r){return st.has(r)}):(ri=LT("state"),RT[ri]=!0,Wa=function(r,e){if(qn(r,ri))throw new Hn(Id);return e.facade=r,AT(r,ri,e),e},mr=function(r){return qn(r,ri)?r[ri]:{}},Ya=function(r){return qn(r,ri)});var st,ri;xd.exports={set:Wa,get:mr,has:Ya,enforce:MT,getterFor:CT}});var Wn=f((UR,kd)=>{"use strict";var Qn=Ue(),DT=at(),Pd=Function.prototype,VT=Qn&&Object.getOwnPropertyDescriptor,Gn=DT(Pd,"name"),BT=Gn&&function(){}.name==="something",OT=Gn&&(!Qn||Qn&&VT(Pd,"name").configurable);kd.exports={EXISTS:Gn,PROPER:BT,CONFIGURABLE:OT}});var Ad=f(wd=>{"use strict";var _T=Ue(),NT=Ln(),FT=ti(),qT=ft(),UT=Zt(),HT=Nn();wd.f=_T&&!NT?Object.defineProperties:function(e,t){qT(e);for(var i=UT(t),a=HT(t),s=a.length,n=0,o;s>n;)FT.f(e,o=a[n++],i[o]);return e}});var Yn=f((jR,Ld)=>{"use strict";var jT=It();Ld.exports=jT("document","documentElement")});var Jn=f((QR,Bd)=>{"use strict";var QT=ft(),GT=Ad(),Rd=_n(),WT=Ga(),YT=Yn(),zT=qa(),KT=ja(),$d=">",Md="<",Kn="prototype",Xn="script",Dd=KT("IE_PROTO"),zn=function(){},Vd=function(r){return Md+Xn+$d+r+Md+"/"+Xn+$d},Cd=function(r){r.write(Vd("")),r.close();var e=r.parentWindow.Object;return r=null,e},XT=function(){var r=zT("iframe"),e="java"+Xn+":",t;return r.style.display="none",YT.appendChild(r),r.src=String(e),t=r.contentWindow.document,t.open(),t.write(Vd("document.F=Object")),t.close(),t.F},za,Ka=function(){try{za=new ActiveXObject("htmlfile")}catch{}Ka=typeof document<"u"?document.domain&&za?Cd(za):XT():Cd(za);for(var r=Rd.length;r--;)delete Ka[Kn][Rd[r]];return Ka()};WT[Dd]=!0;Bd.exports=Object.create||function(e,t){var i;return e!==null?(zn[Kn]=QT(e),i=new zn,zn[Kn]=null,i[Dd]=e):i=Ka(),t===void 0?i:GT.f(i,t)}});var Ri=f((GR,Od)=>{"use strict";var JT=Pi();Od.exports=function(r,e,t,i){return i&&i.enumerable?r[e]=t:JT(r,e,t),r}});var io=f((WR,Fd)=>{"use strict";var ZT=Ie(),eI=le(),tI=je(),iI=Jn(),_d=Qa(),rI=Ri(),aI=Ee(),sI=rt(),to=aI("iterator"),Nd=!1,Et,Zn,eo;[].keys&&(eo=[].keys(),"next"in eo?(Zn=_d(_d(eo)),Zn!==Object.prototype&&(Et=Zn)):Nd=!0);var nI=!tI(Et)||ZT(function(){var r={};return Et[to].call(r)!==r});nI?Et={}:sI&&(Et=iI(Et));eI(Et[to])||rI(Et,to,function(){return this});Fd.exports={IteratorPrototype:Et,BUGGY_SAFARI_ITERATORS:Nd}});var Xa=f((YR,Ud)=>{"use strict";var oI=Ee(),uI=oI("toStringTag"),qd={};qd[uI]="z";Ud.exports=String(qd)==="[object z]"});var fr=f((zR,Hd)=>{"use strict";var lI=Xa(),cI=le(),Ja=Jt(),dI=Ee(),pI=dI("toStringTag"),hI=Object,mI=Ja(function(){return arguments}())==="Arguments",fI=function(r,e){try{return r[e]}catch{}};Hd.exports=lI?Ja:function(r){var e,t,i;return r===void 0?"Undefined":r===null?"Null":typeof(t=fI(e=hI(r),pI))=="string"?t:mI?Ja(e):(i=Ja(e))==="Object"&&cI(e.callee)?"Arguments":i}});var Qd=f((KR,jd)=>{"use strict";var bI=Xa(),gI=fr();jd.exports=bI?{}.toString:function(){return"[object "+gI(this)+"]"}});var br=f((XR,Wd)=>{"use strict";var vI=Xa(),SI=ti().f,yI=Pi(),TI=at(),II=Qd(),EI=Ee(),Gd=EI("toStringTag");Wd.exports=function(r,e,t,i){var a=t?r:r&&r.prototype;a&&(TI(a,Gd)||SI(a,Gd,{configurable:!0,value:e}),i&&!vI&&yI(a,"toString",II))}});var zd=f((JR,Yd)=>{"use strict";var xI=io().IteratorPrototype,PI=Jn(),kI=sr(),wI=br(),AI=ii(),LI=function(){return this};Yd.exports=function(r,e,t,i){var a=e+" Iterator";return r.prototype=PI(xI,{next:kI(+!i,t)}),wI(r,a,!1,!0),AI[a]=LI,r}});var Xd=f((ZR,Kd)=>{"use strict";var RI=Se(),$I=mt();Kd.exports=function(r,e,t){try{return RI($I(Object.getOwnPropertyDescriptor(r,e)[t]))}catch{}}});var Zd=f((e$,Jd)=>{"use strict";var MI=je();Jd.exports=function(r){return MI(r)||r===null}});var tp=f((t$,ep)=>{"use strict";var CI=Zd(),DI=String,VI=TypeError;ep.exports=function(r){if(CI(r))return r;throw new VI("Can't set "+DI(r)+" as a prototype")}});var ro=f((i$,ip)=>{"use strict";var BI=Xd(),OI=je(),_I=Bt(),NI=tp();ip.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var r=!1,e={},t;try{t=BI(Object.prototype,"__proto__","set"),t(e,[]),r=e instanceof Array}catch{}return function(a,s){return _I(a),NI(s),OI(a)&&(r?t(a,s):a.__proto__=s),a}}():void 0)});var hp=f((r$,pp)=>{"use strict";var FI=me(),qI=He(),Za=rt(),cp=Wn(),UI=le(),HI=zd(),rp=Qa(),ap=ro(),jI=br(),QI=Pi(),ao=Ri(),GI=Ee(),sp=ii(),dp=io(),WI=cp.PROPER,YI=cp.CONFIGURABLE,np=dp.IteratorPrototype,es=dp.BUGGY_SAFARI_ITERATORS,gr=GI("iterator"),op="keys",vr="values",up="entries",lp=function(){return this};pp.exports=function(r,e,t,i,a,s,n){HI(t,e,i);var o=function(I){if(I===a&&h)return h;if(!es&&I&&I in d)return d[I];switch(I){case op:return function(){return new t(this,I)};case vr:return function(){return new t(this,I)};case up:return function(){return new t(this,I)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,d=r.prototype,p=d[gr]||d["@@iterator"]||a&&d[a],h=!es&&p||o(a),m=e==="Array"&&d.entries||p,b,v,T;if(m&&(b=rp(m.call(new r)),b!==Object.prototype&&b.next&&(!Za&&rp(b)!==np&&(ap?ap(b,np):UI(b[gr])||ao(b,gr,lp)),jI(b,u,!0,!0),Za&&(sp[u]=lp))),WI&&a===vr&&p&&p.name!==vr&&(!Za&&YI?QI(d,"name",vr):(l=!0,h=function(){return qI(p,this)})),a)if(v={values:o(vr),keys:s?h:o(op),entries:o(up)},n)for(T in v)(es||l||!(T in d))&&ao(d,T,v[T]);else FI({target:e,proto:!0,forced:es||l},v);return(!Za||n)&&d[gr]!==h&&ao(d,gr,h,{name:a}),sp[e]=h,v}});var fp=f((a$,mp)=>{"use strict";mp.exports=function(r,e){return{value:r,done:e}}});var no=f((s$,yp)=>{"use strict";var zI=Zt(),so=hr(),bp=ii(),vp=jn(),KI=ti().f,XI=hp(),ts=fp(),JI=rt(),ZI=Ue(),Sp="Array Iterator",eE=vp.set,tE=vp.getterFor(Sp);yp.exports=XI(Array,"Array",function(r,e){eE(this,{type:Sp,target:zI(r),index:0,kind:e})},function(){var r=tE(this),e=r.target,t=r.index++;if(!e||t>=e.length)return r.target=void 0,ts(void 0,!0);switch(r.kind){case"keys":return ts(t,!1);case"values":return ts(e[t],!1)}return ts([t,e[t]],!1)},"values");var gp=bp.Arguments=bp.Array;so("keys");so("values");so("entries");if(!JI&&ZI&&gp.name!=="values")try{KI(gp,"name",{value:"values"})}catch{}});var Ip=f((n$,Tp)=>{"use strict";var iE=Ee(),rE=ii(),aE=iE("iterator"),sE=Array.prototype;Tp.exports=function(r){return r!==void 0&&(rE.Array===r||sE[aE]===r)}});var oo=f((o$,xp)=>{"use strict";var nE=fr(),Ep=ur(),oE=yi(),uE=ii(),lE=Ee(),cE=lE("iterator");xp.exports=function(r){if(!oE(r))return Ep(r,cE)||Ep(r,"@@iterator")||uE[nE(r)]}});var kp=f((u$,Pp)=>{"use strict";var dE=He(),pE=mt(),hE=ft(),mE=or(),fE=oo(),bE=TypeError;Pp.exports=function(r,e){var t=arguments.length<2?fE(r):e;if(pE(t))return hE(dE(t,r));throw new bE(mE(r)+" is not iterable")}});var Lp=f((l$,Ap)=>{"use strict";var gE=He(),wp=ft(),vE=ur();Ap.exports=function(r,e,t){var i,a;wp(r);try{if(i=vE(r,"return"),!i){if(e==="throw")throw t;return t}i=gE(i,r)}catch(s){a=!0,i=s}if(e==="throw")throw t;if(a)throw i;return wp(i),t}});var rs=f((c$,Cp)=>{"use strict";var SE=xi(),yE=He(),TE=ft(),IE=or(),EE=Ip(),xE=Ai(),Rp=nr(),PE=kp(),kE=oo(),$p=Lp(),wE=TypeError,is=function(r,e){this.stopped=r,this.result=e},Mp=is.prototype;Cp.exports=function(r,e,t){var i=t&&t.that,a=!!(t&&t.AS_ENTRIES),s=!!(t&&t.IS_RECORD),n=!!(t&&t.IS_ITERATOR),o=!!(t&&t.INTERRUPTED),u=SE(e,i),l,d,p,h,m,b,v,T=function(A){return l&&$p(l,"normal",A),new is(!0,A)},I=function(A){return a?(TE(A),o?u(A[0],A[1],T):u(A[0],A[1])):o?u(A,T):u(A)};if(s)l=r.iterator;else if(n)l=r;else{if(d=kE(r),!d)throw new wE(IE(r)+" is not iterable");if(EE(d)){for(p=0,h=xE(r);h>p;p++)if(m=I(r[p]),m&&Rp(Mp,m))return m;return new is(!1)}l=PE(r,d)}for(b=s?r.next:l.next;!(v=yE(b,l)).done;){try{m=I(v.value)}catch(A){$p(l,"throw",A)}if(typeof m=="object"&&m&&Rp(Mp,m))return m}return new is(!1)}});var Vp=f((d$,Dp)=>{"use strict";var AE=Ue(),LE=ti(),RE=sr();Dp.exports=function(r,e,t){AE?LE.f(r,e,RE(0,t)):r[e]=t}});var Bp=f(()=>{"use strict";var $E=me(),ME=rs(),CE=Vp();$E({target:"Object",stat:!0},{fromEntries:function(e){var t={};return ME(e,function(i,a){CE(t,i,a)},{AS_ENTRIES:!0}),t}})});var _p=f((m$,Op)=>{"use strict";no();Bp();var DE=Ti();Op.exports=DE.Object.fromEntries});var Fp=f((f$,Np)=>{"use strict";Np.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}});var Up=f(()=>{"use strict";no();var VE=Fp(),BE=de(),OE=br(),qp=ii();for(as in VE)OE(BE[as],as),qp[as]=qp.Array;var as});var jp=f((v$,Hp)=>{"use strict";var _E=_p();Up();Hp.exports=_E});var uo=f((S$,Qp)=>{"use strict";var NE=jp();Qp.exports=NE});var Gp=f(()=>{"use strict"});var lo=f((I$,Wp)=>{"use strict";var Sr=de(),FE=ei(),qE=Jt(),ss=function(r){return FE.slice(0,r.length)===r};Wp.exports=function(){return ss("Bun/")?"BUN":ss("Cloudflare-Workers")?"CLOUDFLARE":ss("Deno/")?"DENO":ss("Node.js/")?"NODE":Sr.Bun&&typeof Bun.version=="string"?"BUN":Sr.Deno&&typeof Deno.version=="object"?"DENO":qE(Sr.process)==="process"?"NODE":Sr.window&&Sr.document?"BROWSER":"REST"}()});var ns=f((E$,Yp)=>{"use strict";var UE=lo();Yp.exports=UE==="NODE"});var Kp=f((x$,zp)=>{"use strict";var HE=ti();zp.exports=function(r,e,t){return HE.f(r,e,t)}});var Zp=f((P$,Jp)=>{"use strict";var jE=It(),QE=Kp(),GE=Ee(),WE=Ue(),Xp=GE("species");Jp.exports=function(r){var e=jE(r);WE&&e&&!e[Xp]&&QE(e,Xp,{configurable:!0,get:function(){return this}})}});var th=f((k$,eh)=>{"use strict";var YE=nr(),zE=TypeError;eh.exports=function(r,e){if(YE(e,r))return r;throw new zE("Incorrect invocation")}});var po=f((w$,ih)=>{"use strict";var KE=Se(),XE=le(),co=lr(),JE=KE(Function.toString);XE(co.inspectSource)||(co.inspectSource=function(r){return JE(r)});ih.exports=co.inspectSource});var mo=f((A$,oh)=>{"use strict";var ZE=Se(),ex=Ie(),rh=le(),tx=fr(),ix=It(),rx=po(),ah=function(){},sh=ix("Reflect","construct"),ho=/^\s*(?:class|function)\b/,ax=ZE(ho.exec),sx=!ho.test(ah),yr=function(e){if(!rh(e))return!1;try{return sh(ah,[],e),!0}catch{return!1}},nh=function(e){if(!rh(e))return!1;switch(tx(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return sx||!!ax(ho,rx(e))}catch{return!0}};nh.sham=!0;oh.exports=!sh||ex(function(){var r;return yr(yr.call)||!yr(Object)||!yr(function(){r=!0})||r})?nh:yr});var lh=f((L$,uh)=>{"use strict";var nx=mo(),ox=or(),ux=TypeError;uh.exports=function(r){if(nx(r))return r;throw new ux(ox(r)+" is not a constructor")}});var fo=f((R$,dh)=>{"use strict";var ch=ft(),lx=lh(),cx=yi(),dx=Ee(),px=dx("species");dh.exports=function(r,e){var t=ch(r).constructor,i;return t===void 0||cx(i=ch(t)[px])?e:lx(i)}});var hh=f(($$,ph)=>{"use strict";var hx=Se();ph.exports=hx([].slice)});var fh=f((M$,mh)=>{"use strict";var mx=TypeError;mh.exports=function(r,e){if(r<e)throw new mx("Not enough arguments");return r}});var bo=f((C$,bh)=>{"use strict";var fx=ei();bh.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(fx)});var Po=f((D$,Ph)=>{"use strict";var Qe=de(),bx=nn(),gx=xi(),gh=le(),vx=at(),xh=Ie(),vh=Yn(),Sx=hh(),Sh=qa(),yx=fh(),Tx=bo(),Ix=ns(),Io=Qe.setImmediate,Eo=Qe.clearImmediate,Ex=Qe.process,go=Qe.Dispatch,xx=Qe.Function,yh=Qe.MessageChannel,Px=Qe.String,vo=0,Tr={},Th="onreadystatechange",Ir,ai,So,yo;xh(function(){Ir=Qe.location});var xo=function(r){if(vx(Tr,r)){var e=Tr[r];delete Tr[r],e()}},To=function(r){return function(){xo(r)}},Ih=function(r){xo(r.data)},Eh=function(r){Qe.postMessage(Px(r),Ir.protocol+"//"+Ir.host)};(!Io||!Eo)&&(Io=function(e){yx(arguments.length,1);var t=gh(e)?e:xx(e),i=Sx(arguments,1);return Tr[++vo]=function(){bx(t,void 0,i)},ai(vo),vo},Eo=function(e){delete Tr[e]},Ix?ai=function(r){Ex.nextTick(To(r))}:go&&go.now?ai=function(r){go.now(To(r))}:yh&&!Tx?(So=new yh,yo=So.port2,So.port1.onmessage=Ih,ai=gx(yo.postMessage,yo)):Qe.addEventListener&&gh(Qe.postMessage)&&!Qe.importScripts&&Ir&&Ir.protocol!=="file:"&&!xh(Eh)?(ai=Eh,Qe.addEventListener("message",Ih,!1)):Th in Sh("script")?ai=function(r){vh.appendChild(Sh("script"))[Th]=function(){vh.removeChild(this),xo(r)}}:ai=function(r){setTimeout(To(r),0)});Ph.exports={set:Io,clear:Eo}});var Ah=f((V$,wh)=>{"use strict";var kh=de(),kx=Ue(),wx=Object.getOwnPropertyDescriptor;wh.exports=function(r){if(!kx)return kh[r];var e=wx(kh,r);return e&&e.value}});var ko=f((B$,Rh)=>{"use strict";var Lh=function(){this.head=null,this.tail=null};Lh.prototype={add:function(r){var e={item:r,next:null},t=this.tail;t?t.next=e:this.head=e,this.tail=e},get:function(){var r=this.head;if(r){var e=this.head=r.next;return e===null&&(this.tail=null),r.item}}};Rh.exports=Lh});var Mh=f((O$,$h)=>{"use strict";var Ax=ei();$h.exports=/ipad|iphone|ipod/i.test(Ax)&&typeof Pebble<"u"});var Dh=f((_$,Ch)=>{"use strict";var Lx=ei();Ch.exports=/web0s(?!.*chrome)/i.test(Lx)});var qh=f((N$,Fh)=>{"use strict";var Mi=de(),Rx=Ah(),Vh=xi(),wo=Po().set,$x=ko(),Mx=bo(),Cx=Mh(),Dx=Dh(),Ao=ns(),Bh=Mi.MutationObserver||Mi.WebKitMutationObserver,Oh=Mi.document,_h=Mi.process,os=Mi.Promise,$o=Rx("queueMicrotask"),$i,Lo,Ro,us,Nh;$o||(Er=new $x,xr=function(){var r,e;for(Ao&&(r=_h.domain)&&r.exit();e=Er.get();)try{e()}catch(t){throw Er.head&&$i(),t}r&&r.enter()},!Mx&&!Ao&&!Dx&&Bh&&Oh?(Lo=!0,Ro=Oh.createTextNode(""),new Bh(xr).observe(Ro,{characterData:!0}),$i=function(){Ro.data=Lo=!Lo}):!Cx&&os&&os.resolve?(us=os.resolve(void 0),us.constructor=os,Nh=Vh(us.then,us),$i=function(){Nh(xr)}):Ao?$i=function(){_h.nextTick(xr)}:(wo=Vh(wo,Mi),$i=function(){wo(xr)}),$o=function(r){Er.head||$i(),Er.add(r)});var Er,xr;Fh.exports=$o});var Hh=f((F$,Uh)=>{"use strict";Uh.exports=function(r,e){try{arguments.length===1?console.error(r):console.error(r,e)}catch{}}});var ls=f((q$,jh)=>{"use strict";jh.exports=function(r){try{return{error:!1,value:r()}}catch(e){return{error:!0,value:e}}}});var si=f((U$,Qh)=>{"use strict";var Vx=de();Qh.exports=Vx.Promise});var Ci=f((H$,zh)=>{"use strict";var Bx=de(),Pr=si(),Ox=le(),_x=An(),Nx=po(),Fx=Ee(),Gh=lo(),qx=rt(),Mo=fn(),Wh=Pr&&Pr.prototype,Ux=Fx("species"),Co=!1,Yh=Ox(Bx.PromiseRejectionEvent),Hx=_x("Promise",function(){var r=Nx(Pr),e=r!==String(Pr);if(!e&&Mo===66||qx&&!(Wh.catch&&Wh.finally))return!0;if(!Mo||Mo<51||!/native code/.test(r)){var t=new Pr(function(s){s(1)}),i=function(s){s(function(){},function(){})},a=t.constructor={};if(a[Ux]=i,Co=t.then(function(){})instanceof i,!Co)return!0}return!e&&(Gh==="BROWSER"||Gh==="DENO")&&!Yh});zh.exports={CONSTRUCTOR:Hx,REJECTION_EVENT:Yh,SUBCLASSING:Co}});var Di=f((j$,Xh)=>{"use strict";var Kh=mt(),jx=TypeError,Qx=function(r){var e,t;this.promise=new r(function(i,a){if(e!==void 0||t!==void 0)throw new jx("Bad Promise constructor");e=i,t=a}),this.resolve=Kh(e),this.reject=Kh(t)};Xh.exports.f=function(r){return new Qx(r)}});var bm=f(()=>{"use strict";var Gx=me(),Wx=rt(),hs=ns(),_t=de(),_i=He(),Jh=Ri(),Zh=ro(),Yx=br(),zx=Zp(),Kx=mt(),ps=le(),Xx=je(),Jx=th(),Zx=fo(),am=Po().set,_o=qh(),eP=Hh(),tP=ls(),iP=ko(),sm=jn(),ms=si(),No=Ci(),nm=Di(),fs="Promise",om=No.CONSTRUCTOR,rP=No.REJECTION_EVENT,aP=No.SUBCLASSING,Do=sm.getterFor(fs),sP=sm.set,Vi=ms&&ms.prototype,ni=ms,cs=Vi,um=_t.TypeError,Vo=_t.document,Fo=_t.process,Bo=nm.f,nP=Bo,oP=!!(Vo&&Vo.createEvent&&_t.dispatchEvent),lm="unhandledrejection",uP="rejectionhandled",em=0,cm=1,lP=2,qo=1,dm=2,ds,tm,cP,im,pm=function(r){var e;return Xx(r)&&ps(e=r.then)?e:!1},hm=function(r,e){var t=e.value,i=e.state===cm,a=i?r.ok:r.fail,s=r.resolve,n=r.reject,o=r.domain,u,l,d;try{a?(i||(e.rejection===dm&&pP(e),e.rejection=qo),a===!0?u=t:(o&&o.enter(),u=a(t),o&&(o.exit(),d=!0)),u===r.promise?n(new um("Promise-chain cycle")):(l=pm(u))?_i(l,u,s,n):s(u)):n(t)}catch(p){o&&!d&&o.exit(),n(p)}},mm=function(r,e){r.notified||(r.notified=!0,_o(function(){for(var t=r.reactions,i;i=t.get();)hm(i,r);r.notified=!1,e&&!r.rejection&&dP(r)}))},fm=function(r,e,t){var i,a;oP?(i=Vo.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(r,!1,!0),_t.dispatchEvent(i)):i={promise:e,reason:t},!rP&&(a=_t["on"+r])?a(i):r===lm&&eP("Unhandled promise rejection",t)},dP=function(r){_i(am,_t,function(){var e=r.facade,t=r.value,i=rm(r),a;if(i&&(a=tP(function(){hs?Fo.emit("unhandledRejection",t,e):fm(lm,e,t)}),r.rejection=hs||rm(r)?dm:qo,a.error))throw a.value})},rm=function(r){return r.rejection!==qo&&!r.parent},pP=function(r){_i(am,_t,function(){var e=r.facade;hs?Fo.emit("rejectionHandled",e):fm(uP,e,r.value)})},Bi=function(r,e,t){return function(i){r(e,i,t)}},Oi=function(r,e,t){r.done||(r.done=!0,t&&(r=t),r.value=e,r.state=lP,mm(r,!0))},Oo=function(r,e,t){if(!r.done){r.done=!0,t&&(r=t);try{if(r.facade===e)throw new um("Promise can't be resolved itself");var i=pm(e);i?_o(function(){var a={done:!1};try{_i(i,e,Bi(Oo,a,r),Bi(Oi,a,r))}catch(s){Oi(a,s,r)}}):(r.value=e,r.state=cm,mm(r,!1))}catch(a){Oi({done:!1},a,r)}}};if(om&&(ni=function(e){Jx(this,cs),Kx(e),_i(ds,this);var t=Do(this);try{e(Bi(Oo,t),Bi(Oi,t))}catch(i){Oi(t,i)}},cs=ni.prototype,ds=function(e){sP(this,{type:fs,done:!1,notified:!1,parent:!1,reactions:new iP,rejection:!1,state:em,value:void 0})},ds.prototype=Jh(cs,"then",function(e,t){var i=Do(this),a=Bo(Zx(this,ni));return i.parent=!0,a.ok=ps(e)?e:!0,a.fail=ps(t)&&t,a.domain=hs?Fo.domain:void 0,i.state===em?i.reactions.add(a):_o(function(){hm(a,i)}),a.promise}),tm=function(){var r=new ds,e=Do(r);this.promise=r,this.resolve=Bi(Oo,e),this.reject=Bi(Oi,e)},nm.f=Bo=function(r){return r===ni||r===cP?new tm(r):nP(r)},!Wx&&ps(ms)&&Vi!==Object.prototype)){im=Vi.then,aP||Jh(Vi,"then",function(e,t){var i=this;return new ni(function(a,s){_i(im,i,a,s)}).then(e,t)},{unsafe:!0});try{delete Vi.constructor}catch{}Zh&&Zh(Vi,cs)}Gx({global:!0,constructor:!0,wrap:!0,forced:om},{Promise:ni});Yx(ni,fs,!1,!0);zx(fs)});var Tm=f((W$,ym)=>{"use strict";var hP=Ee(),vm=hP("iterator"),Sm=!1;try{gm=0,Uo={next:function(){return{done:!!gm++}},return:function(){Sm=!0}},Uo[vm]=function(){return this},Array.from(Uo,function(){throw 2})}catch{}var gm,Uo;ym.exports=function(r,e){try{if(!e&&!Sm)return!1}catch{return!1}var t=!1;try{var i={};i[vm]=function(){return{next:function(){return{done:t=!0}}}},r(i)}catch{}return t}});var Ho=f((Y$,Im)=>{"use strict";var mP=si(),fP=Tm(),bP=Ci().CONSTRUCTOR;Im.exports=bP||!fP(function(r){mP.all(r).then(void 0,function(){})})});var Em=f(()=>{"use strict";var gP=me(),vP=He(),SP=mt(),yP=Di(),TP=ls(),IP=rs(),EP=Ho();gP({target:"Promise",stat:!0,forced:EP},{all:function(e){var t=this,i=yP.f(t),a=i.resolve,s=i.reject,n=TP(function(){var o=SP(t.resolve),u=[],l=0,d=1;IP(e,function(p){var h=l++,m=!1;d++,vP(o,t,p).then(function(b){m||(m=!0,u[h]=b,--d||a(u))},s)}),--d||a(u)});return n.error&&s(n.value),i.promise}})});var Pm=f(()=>{"use strict";var xP=me(),PP=rt(),kP=Ci().CONSTRUCTOR,Qo=si(),wP=It(),AP=le(),LP=Ri(),xm=Qo&&Qo.prototype;xP({target:"Promise",proto:!0,forced:kP,real:!0},{catch:function(r){return this.then(void 0,r)}});!PP&&AP(Qo)&&(jo=wP("Promise").prototype.catch,xm.catch!==jo&&LP(xm,"catch",jo,{unsafe:!0}));var jo});var km=f(()=>{"use strict";var RP=me(),$P=He(),MP=mt(),CP=Di(),DP=ls(),VP=rs(),BP=Ho();RP({target:"Promise",stat:!0,forced:BP},{race:function(e){var t=this,i=CP.f(t),a=i.reject,s=DP(function(){var n=MP(t.resolve);VP(e,function(o){$P(n,t,o).then(i.resolve,a)})});return s.error&&a(s.value),i.promise}})});var wm=f(()=>{"use strict";var OP=me(),_P=Di(),NP=Ci().CONSTRUCTOR;OP({target:"Promise",stat:!0,forced:NP},{reject:function(e){var t=_P.f(this),i=t.reject;return i(e),t.promise}})});var Go=f((rM,Am)=>{"use strict";var FP=ft(),qP=je(),UP=Di();Am.exports=function(r,e){if(FP(r),qP(e)&&e.constructor===r)return e;var t=UP.f(r),i=t.resolve;return i(e),t.promise}});var $m=f(()=>{"use strict";var HP=me(),jP=It(),Lm=rt(),QP=si(),Rm=Ci().CONSTRUCTOR,GP=Go(),WP=jP("Promise"),YP=Lm&&!Rm;HP({target:"Promise",stat:!0,forced:Lm||Rm},{resolve:function(e){return GP(YP&&this===WP?QP:this,e)}})});var Mm=f(()=>{"use strict";bm();Em();Pm();km();wm();$m()});var Bm=f(()=>{"use strict";var zP=me(),KP=rt(),bs=si(),XP=Ie(),Dm=It(),Vm=le(),JP=fo(),Cm=Go(),ZP=Ri(),Yo=bs&&bs.prototype,ek=!!bs&&XP(function(){Yo.finally.call({then:function(){}},function(){})});zP({target:"Promise",proto:!0,real:!0,forced:ek},{finally:function(r){var e=JP(this,Dm("Promise")),t=Vm(r);return this.then(t?function(i){return Cm(e,r()).then(function(){return i})}:r,t?function(i){return Cm(e,r()).then(function(){throw i})}:r)}});!KP&&Vm(bs)&&(Wo=Dm("Promise").prototype.finally,Yo.finally!==Wo&&ZP(Yo,"finally",Wo,{unsafe:!0}));var Wo});var _m=f((cM,Om)=>{"use strict";Gp();Mm();Bm();var tk=Ot();Om.exports=tk("Promise","finally")});var Fm=f((dM,Nm)=>{"use strict";var ik=_m();Nm.exports=ik});var gs=f((pM,qm)=>{"use strict";var rk=Fm();qm.exports=rk});var Ym=f(()=>{"use strict";var uk=me(),lk=Fn().values;uk({target:"Object",stat:!0},{values:function(e){return lk(e)}})});var Km=f((HM,zm)=>{"use strict";Ym();var ck=Ti();zm.exports=ck.Object.values});var Jm=f((jM,Xm)=>{"use strict";var dk=Km();Xm.exports=dk});var Ni=f((QM,Zm)=>{"use strict";var pk=Jm();Zm.exports=pk});var pf=f(()=>{"use strict";var Ik=me(),Ek=Ii(),xk=Ai(),Pk=pr(),kk=hr();Ik({target:"Array",proto:!0},{at:function(e){var t=Ek(this),i=xk(t),a=Pk(e),s=a>=0?a:i+a;return s<0||s>=i?void 0:t[s]}});kk("at")});var mf=f((zC,hf)=>{"use strict";pf();var wk=Ot();hf.exports=wk("Array","at")});var bf=f((KC,ff)=>{"use strict";var Ak=mf();ff.exports=Ak});var Ut=f((XC,gf)=>{"use strict";var Lk=bf();gf.exports=Lk});var mu=f((P0,Nf)=>{"use strict";var qk=Jt();Nf.exports=Array.isArray||function(e){return qk(e)==="Array"}});var qf=f((k0,Ff)=>{"use strict";var Uk=TypeError,Hk=9007199254740991;Ff.exports=function(r){if(r>Hk)throw Uk("Maximum allowed index exceeded");return r}});var jf=f((w0,Hf)=>{"use strict";var jk=mu(),Qk=Ai(),Gk=qf(),Wk=xi(),Uf=function(r,e,t,i,a,s,n,o){for(var u=a,l=0,d=n?Wk(n,o):!1,p,h;l<i;)l in t&&(p=d?d(t[l],l,e):t[l],s>0&&jk(p)?(h=Qk(p),u=Uf(r,e,p,h,u,s-1)-1):(Gk(u+1),r[u]=p),u++),l++;return u};Hf.exports=Uf});var Yf=f((A0,Wf)=>{"use strict";var Qf=mu(),Yk=mo(),zk=je(),Kk=Ee(),Xk=Kk("species"),Gf=Array;Wf.exports=function(r){var e;return Qf(r)&&(e=r.constructor,Yk(e)&&(e===Gf||Qf(e.prototype))?e=void 0:zk(e)&&(e=e[Xk],e===null&&(e=void 0))),e===void 0?Gf:e}});var Kf=f((L0,zf)=>{"use strict";var Jk=Yf();zf.exports=function(r,e){return new(Jk(r))(e===0?0:e)}});var Xf=f(()=>{"use strict";var Zk=me(),ew=jf(),tw=mt(),iw=Ii(),rw=Ai(),aw=Kf();Zk({target:"Array",proto:!0},{flatMap:function(e){var t=iw(this),i=rw(t),a;return tw(e),a=aw(t,0),a.length=ew(a,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),a}})});var Jf=f(()=>{"use strict";var sw=hr();sw("flatMap")});var eb=f((D0,Zf)=>{"use strict";Xf();Jf();var nw=Ot();Zf.exports=nw("Array","flatMap")});var ib=f((V0,tb)=>{"use strict";var ow=eb();tb.exports=ow});var fu=f((B0,rb)=>{"use strict";var uw=ib();rb.exports=uw});var Or=f((O0,ab)=>{"use strict";var lw=fr(),cw=String;ab.exports=function(r){if(lw(r)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return cw(r)}});var bu=f((_0,sb)=>{"use strict";sb.exports=`
7
- \v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`});var ub=f((N0,ob)=>{"use strict";var dw=Se(),pw=Bt(),hw=Or(),vu=bu(),nb=dw("".replace),mw=RegExp("^["+vu+"]+"),fw=RegExp("(^|[^"+vu+"])["+vu+"]+$"),gu=function(r){return function(e){var t=hw(pw(e));return r&1&&(t=nb(t,mw,"")),r&2&&(t=nb(t,fw,"$1")),t}};ob.exports={start:gu(1),end:gu(2),trim:gu(3)}});var pb=f((F0,db)=>{"use strict";var bw=Wn().PROPER,gw=Ie(),lb=bu(),cb="\u200B\x85\u180E";db.exports=function(r){return gw(function(){return!!lb[r]()||cb[r]()!==cb||bw&&lb[r].name!==r})}});var Su=f((q0,hb)=>{"use strict";var vw=ub().start,Sw=pb();hb.exports=Sw("trimStart")?function(){return vw(this)}:"".trimStart});var fb=f(()=>{"use strict";var yw=me(),mb=Su();yw({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==mb},{trimLeft:mb})});var gb=f(()=>{"use strict";fb();var Tw=me(),bb=Su();Tw({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==bb},{trimStart:bb})});var Sb=f((G0,vb)=>{"use strict";gb();var Iw=Ot();vb.exports=Iw("String","trimLeft")});var Tb=f((W0,yb)=>{"use strict";var Ew=Sb();yb.exports=Ew});var Eb=f((Y0,Ib)=>{"use strict";var xw=Tb();Ib.exports=xw});var Ob=f(()=>{"use strict"});var _b=f(()=>{"use strict"});var Fb=f((xO,Nb)=>{"use strict";var jw=je(),Qw=Jt(),Gw=Ee(),Ww=Gw("match");Nb.exports=function(r){var e;return jw(r)&&((e=r[Ww])!==void 0?!!e:Qw(r)==="RegExp")}});var Ub=f((PO,qb)=>{"use strict";var Yw=ft();qb.exports=function(){var r=Yw(this),e="";return r.hasIndices&&(e+="d"),r.global&&(e+="g"),r.ignoreCase&&(e+="i"),r.multiline&&(e+="m"),r.dotAll&&(e+="s"),r.unicode&&(e+="u"),r.unicodeSets&&(e+="v"),r.sticky&&(e+="y"),e}});var Qb=f((kO,jb)=>{"use strict";var zw=He(),Kw=at(),Xw=nr(),Jw=Ub(),Hb=RegExp.prototype;jb.exports=function(r){var e=r.flags;return e===void 0&&!("flags"in Hb)&&!Kw(r,"flags")&&Xw(Hb,r)?zw(Jw,r):e}});var Wb=f((wO,Gb)=>{"use strict";var ku=Se(),Zw=Ii(),eA=Math.floor,xu=ku("".charAt),tA=ku("".replace),Pu=ku("".slice),iA=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,rA=/\$([$&'`]|\d{1,2})/g;Gb.exports=function(r,e,t,i,a,s){var n=t+r.length,o=i.length,u=rA;return a!==void 0&&(a=Zw(a),u=iA),tA(s,u,function(l,d){var p;switch(xu(d,0)){case"$":return"$";case"&":return r;case"`":return Pu(e,0,t);case"'":return Pu(e,n);case"<":p=a[Pu(d,1,-1)];break;default:var h=+d;if(h===0)return l;if(h>o){var m=eA(h/10);return m===0?l:m<=o?i[m-1]===void 0?xu(d,1):i[m-1]+xu(d,1):l}p=i[h-1]}return p===void 0?"":p})}});var Kb=f(()=>{"use strict";var aA=me(),sA=He(),Au=Se(),Yb=Bt(),nA=le(),oA=yi(),uA=Fb(),Gi=Or(),lA=ur(),cA=Qb(),dA=Wb(),pA=Ee(),hA=rt(),mA=pA("replace"),fA=TypeError,wu=Au("".indexOf),bA=Au("".replace),zb=Au("".slice),gA=Math.max;aA({target:"String",proto:!0},{replaceAll:function(e,t){var i=Yb(this),a,s,n,o,u,l,d,p,h,m,b=0,v="";if(!oA(e)){if(a=uA(e),a&&(s=Gi(Yb(cA(e))),!~wu(s,"g")))throw new fA("`.replaceAll` does not allow non-global regexes");if(n=lA(e,mA),n)return sA(n,e,i,t);if(hA&&a)return bA(Gi(i),e,t)}for(o=Gi(i),u=Gi(e),l=nA(t),l||(t=Gi(t)),d=u.length,p=gA(1,d),h=wu(o,u);h!==-1;)m=l?Gi(t(u,h,o)):dA(u,o,h,[],void 0,t),v+=zb(o,b,h)+m,b=h+d,h=h+p>o.length?-1:wu(o,u,h+p);return b<o.length&&(v+=zb(o,b)),v}})});var Jb=f((RO,Xb)=>{"use strict";Ob();_b();Kb();var vA=Ot();Xb.exports=vA("String","replaceAll")});var eg=f(($O,Zb)=>{"use strict";var SA=Jb();Zb.exports=SA});var ig=f((MO,tg)=>{"use strict";var yA=eg();tg.exports=yA});var ag=f((CO,rg)=>{"use strict";var TA=pr(),IA=Or(),EA=Bt(),xA=RangeError;rg.exports=function(e){var t=IA(EA(this)),i="",a=TA(e);if(a<0||a===1/0)throw new xA("Wrong number of repetitions");for(;a>0;(a>>>=1)&&(t+=t))a&1&&(i+=t);return i}});var lg=f((DO,ug)=>{"use strict";var og=Se(),PA=Dn(),sg=Or(),kA=ag(),wA=Bt(),AA=og(kA),LA=og("".slice),RA=Math.ceil,ng=function(r){return function(e,t,i){var a=sg(wA(e)),s=PA(t),n=a.length,o=i===void 0?" ":sg(i),u,l;return s<=n||o===""?a:(u=s-n,l=AA(o,RA(u/o.length)),l.length>u&&(l=LA(l,0,u)),r?a+l:l+a)}};ug.exports={start:ng(!1),end:ng(!0)}});var dg=f((VO,cg)=>{"use strict";var $A=ei();cg.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test($A)});var pg=f(()=>{"use strict";var MA=me(),CA=lg().start,DA=dg();MA({target:"String",proto:!0,forced:DA},{padStart:function(e){return CA(this,e,arguments.length>1?arguments[1]:void 0)}})});var mg=f((_O,hg)=>{"use strict";pg();var VA=Ot();hg.exports=VA("String","padStart")});var bg=f((NO,fg)=>{"use strict";var BA=mg();fg.exports=BA});var vg=f((FO,gg)=>{"use strict";var OA=bg();gg.exports=OA});var sL={};wv(sL,{ChromecastState:()=>tr,HttpConnectionType:()=>Oa,Observable:()=>yt.Observable,PlaybackState:()=>Ce,Player:()=>wa,PredefinedQualityLimits:()=>ir,SDK_VERSION:()=>aL,Subject:()=>yt.Subject,Subscription:()=>yt.Subscription,Surface:()=>_a,VERSION:()=>an,ValueSubject:()=>yt.ValueSubject,VideoFormat:()=>ht,VideoQuality:()=>yt.VideoQuality,clientChecker:()=>Q,isMobile:()=>Fi});module.exports=Av(sL);var an="2.0.131-dev.f14d8d97.0";var Ce=(a=>(a.STOPPED="stopped",a.READY="ready",a.PLAYING="playing",a.PAUSED="paused",a))(Ce||{}),ht=(P=>(P.MPEG="MPEG",P.DASH="DASH",P.DASH_SEP="DASH_SEP",P.DASH_SEP_VK="DASH_SEP",P.DASH_WEBM="DASH_WEBM",P.DASH_WEBM_AV1="DASH_WEBM_AV1",P.DASH_STREAMS="DASH_STREAMS",P.DASH_WEBM_VK="DASH_WEBM",P.DASH_ONDEMAND="DASH_ONDEMAND",P.DASH_ONDEMAND_VK="DASH_ONDEMAND",P.DASH_LIVE="DASH_LIVE",P.DASH_LIVE_CMAF="DASH_LIVE_CMAF",P.DASH_LIVE_WEBM="DASH_LIVE_WEBM",P.HLS="HLS",P.HLS_ONDEMAND="HLS_ONDEMAND",P.HLS_JS="HLS",P.HLS_LIVE="HLS_LIVE",P.HLS_LIVE_CMAF="HLS_LIVE_CMAF",P.WEB_RTC_LIVE="WEB_RTC_LIVE",P))(ht||{});var tr=(a=>(a.NOT_AVAILABLE="NOT_AVAILABLE",a.AVAILABLE="AVAILABLE",a.CONNECTING="CONNECTING",a.CONNECTED="CONNECTED",a))(tr||{}),Oa=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(Oa||{});var _a=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(_a||{}),ir=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(ir||{});var gv=F(De(),1);var q=require("@vkontakte/videoplayer-shared/es2024");var Yc=r=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",r),i.onload=()=>e(),i.onerror=a=>t(a),document.body.appendChild(i)});var Ha=class{constructor(e){this.connection$=new q.ValueSubject(void 0);this.castState$=new q.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new q.Subject;this.realCastState$=new q.ValueSubject("NOT_AVAILABLE");this.subscription=new q.Subscription;this.isDestroyed=!1;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastInitializer");let t="chrome"in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${t}`}),e.isDisabled||!t)return;let i=(0,q.isNonNullable)(window.chrome?.cast),a=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=s=>{delete window.__onGCastApiAvailable,s&&!this.isDestroyed&&this.initializeCastApi()},a||Yc("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:q.ErrorCategory.NETWORK,message:"Script loading failed!"})))}connect(){cast.framework.CastContext.getInstance()?.requestSession()}disconnect(){cast.framework.CastContext.getInstance()?.getCurrentSession()?.endSession(!0)}stopMedia(){return new Promise((e,t)=>{cast.framework.CastContext.getInstance()?.getCurrentSession()?.getMediaSession()?.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,q.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,q.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,q.isNullable)(t)||e!==t.remotePlayer.isMuted&&t.remotePlayerController.muteOrUnmute()}destroy(){this.isDestroyed=!0,this.subscription.unsubscribe()}initListeners(){let e=new cast.framework.RemotePlayer,t=new cast.framework.RemotePlayerController(e),i=cast.framework.CastContext.getInstance();this.subscription.add((0,q.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(a=>{switch(a.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=i.getCurrentSession()?.getMediaSession()?.media?.contentId;break;case cast.framework.SessionState.NO_SESSION:case cast.framework.SessionState.SESSION_ENDING:case cast.framework.SessionState.SESSION_ENDED:case cast.framework.SessionState.SESSION_START_FAILED:this.contentId=void 0;break;default:return(0,q.assertNever)(a.sessionState)}})).add((0,q.merge)((0,q.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,q.tap)(a=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(a)}`})}),(0,q.map)(a=>a.castState)),(0,q.observableFrom)([i.getCastState()])).pipe((0,q.filterChanged)(),(0,q.map)(Ky),(0,q.tap)(a=>{this.log({message:`realCastState$: ${a}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(a=>{let s=a==="CONNECTED",n=(0,q.isNonNullable)(this.connection$.getValue());if(s&&!n){let o=i.getCurrentSession();(0,q.assertNonNullable)(o);let u=o.getCastDevice(),l=o.getMediaSession()?.media?.contentId;((0,q.isNullable)(l)||l===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:o,castDevice:u}))}else!s&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(a==="CONNECTED"?(0,q.isNonNullable)(this.connection$.getValue())?"CONNECTED":"AVAILABLE":a)}))}initializeCastApi(){let e,t,i;try{e=cast.framework.CastContext.getInstance(),t=chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID,i=chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED}catch{return}try{e.setOptions({receiverApplicationId:this.params.receiverApplicationId??t,autoJoinPolicy:i}),this.initListeners()}catch(a){this.errorEvent$.next({id:"ChromecastInitializer",category:q.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},Ky=r=>{switch(r){case cast.framework.CastState.NO_DEVICES_AVAILABLE:return"NOT_AVAILABLE";case cast.framework.CastState.NOT_CONNECTED:return"AVAILABLE";case cast.framework.CastState.CONNECTING:return"CONNECTING";case cast.framework.CastState.CONNECTED:return"CONNECTED";default:return(0,q.assertNever)(r)}};var Xu=F(De(),1),av=F(Li(),1),sv=F(uo(),1);var Qm=F(gs(),1);var zo=require("@vkontakte/videoplayer-shared/es2024");var xe=(r,e=0,t=0)=>{switch(t){case 0:return r.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return r;let i=new URL(r);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(r);return!i.searchParams.get("offset_p")&&e===0?r:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,zo.assertNever)(t)}return r},vs=(r,e)=>{switch(e){case 0:return NaN;case 1:{let t=new URL(r);return Number(t.searchParams.get("playback_shift"))}case 2:{let t=new URL(r);return Number(t.searchParams.get("offset_p")??0)}default:(0,zo.assertNever)(e)}};var w=(r,e,t=!1)=>{let i=r.getTransition();(t||!i||i.to===e)&&r.setState(e)};var bt=require("@vkontakte/videoplayer-shared/es2024"),j=class{constructor(e){this.transitionStarted$=new bt.Subject;this.transitionEnded$=new bt.Subject;this.transitionUpdated$=new bt.Subject;this.forceChanged$=new bt.Subject;this.stateChangeStarted$=(0,bt.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,bt.merge)(this.transitionEnded$,this.forceChanged$);this.state=e,this.prevState=void 0}setState(e){let t=this.transition,i=this.state;this.transition=void 0,this.prevState=i,this.state=e,t?t.to===e?this.transitionEnded$.next(t):this.forceChanged$.next({from:t.from,to:e,canceledTransition:t}):this.forceChanged$.next({from:i,to:e,canceledTransition:t})}startTransitionTo(e){let t=this.transition,i=this.state;i===e||(0,bt.isNonNullable)(t)&&t.to===e||(this.prevState=i,this.state=e,t?(this.transition={from:t.from,to:e,canceledTransition:t},this.transitionUpdated$.next(this.transition)):(this.transition={from:i,to:e},this.transitionStarted$.next(this.transition)))}getTransition(){return this.transition}getState(){return this.state}getPrevState(){return this.prevState}};var Um=require("@vkontakte/videoplayer-shared/es2024"),Hm=r=>{switch(r){case"MPEG":case"DASH":case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":case"HLS":case"HLS_ONDEMAND":return!1;case"DASH_LIVE":case"DASH_LIVE_CMAF":case"HLS_LIVE":case"HLS_LIVE_CMAF":case"DASH_LIVE_WEBM":case"WEB_RTC_LIVE":return!0;default:return(0,Um.assertNever)(r)}};var L=require("@vkontakte/videoplayer-shared/es2024");var ak=5,sk=5,nk=500,jm=7e3,kr=class{constructor(e){this.subscription=new L.Subscription;this.loadMediaTimeoutSubscription=new L.Subscription;this.videoState=new j("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),a=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(s)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if(a?.to!=="paused"&&s.state==="requested"&&e!=="stopped"){this.seek(s.position/1e3);return}switch(i){case"ready":{switch(e){case"playing":case"paused":case"ready":break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,L.assertNever)(e)}break}case"playing":{switch(e){case"playing":break;case"paused":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"ready":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,L.assertNever)(e)}break}case"paused":{switch(e){case"playing":this.videoState.startTransitionTo("paused"),this.params.connection.remotePlayerController.playOrPause();break;case"paused":break;case"ready":this.videoState.startTransitionTo("paused"),this.videoState.setState("paused");break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,L.assertNever)(e)}break}default:(0,L.assertNever)(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(Hm(e.format)),this.params.output.isAudioAvailable$.next(!0),this.handleRemoteVolumeChange({volume:this.params.connection.remotePlayer.volumeLevel,muted:this.params.connection.remotePlayer.isMuted});let t=this.params.connection.session.getMediaSession();t&&this.restoreSession(t),this.subscribe()}destroy(){this.log({message:"[destroy]"}),this.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new L.Subscription;this.subscription.add(e),this.subscription.add((0,L.merge)(this.videoState.stateChangeStarted$.pipe((0,L.map)(a=>`stateChangeStarted$ ${JSON.stringify(a)}`)),this.videoState.stateChangeEnded$.pipe((0,L.map)(a=>`stateChangeEnded$ ${JSON.stringify(a)}`))).subscribe(a=>this.log({message:`[videoState] ${a}`})));let t=(a,s)=>this.subscription.add(a.subscribe(s));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let a=new L.Subject;e.add(a.pipe((0,L.debounce)(nk)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let s=NaN;e.add((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(n=>{this.logRemoteEvent(n);let o=n.value;this.params.output.position$.next(o),(this.params.desiredState.seekState.getState().state==="applying"||Math.abs(o-s)>ak)&&a.next(o),s=o})),e.add((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),a=>{this.logRemoteEvent(a),a.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),a=>{this.logRemoteEvent(a),a.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),a=>{this.logRemoteEvent(a);let{remotePlayer:s}=this.params.connection,n=a.value,o=this.params.output.isBuffering$.getValue(),u=n===chrome.cast.media.PlayerState.BUFFERING;switch(o!==u&&this.params.output.isBuffering$.next(u),n){case chrome.cast.media.PlayerState.IDLE:!this.params.output.isLive$.getValue()&&s.duration-s.currentTime<sk&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),w(this.params.desiredState.playbackState,"stopped");break;case chrome.cast.media.PlayerState.PAUSED:{this.handleRemotePause();break}case chrome.cast.media.PlayerState.PLAYING:this.handleRemotePlay();break;case chrome.cast.media.PlayerState.BUFFERING:break;default:(0,L.assertNever)(n)}}),t((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),a=>{this.logRemoteEvent(a),this.handleRemoteVolumeChange({volume:a.value})}),t((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),a=>{this.logRemoteEvent(a),this.handleRemoteVolumeChange({muted:a.value})});let i=(0,L.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,L.observableFrom)(["init"])).pipe((0,L.debounce)(0));t(i,this.syncPlayback)}restoreSession(e){this.log({message:"restoreSession"});let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),w(this.params.desiredState.playbackState,"playing"));let i=this.params.output.isLive$.getValue();this.params.output.duration$.next(i?0:t.duration),this.params.output.position$.next(i?0:t.currentTime),this.params.desiredState.seekState.setState({state:"none"})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=this.createMediaInfo(e),i=this.createLoadRequest(t);this.loadMedia(i)}handleRemotePause(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="paused"||e==="playing")&&(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="playing"||e==="paused")&&(this.videoState.setState("playing"),w(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.params.desiredState.playbackState.getTransition()?.to==="ready"&&w(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){let t=this.params.output.volume$.getValue(),i={volume:e.volume??t.volume,muted:e.muted??t.muted};(i.volume!==t.volume||i.muted!==i.muted)&&this.params.output.volume$.next(i)}seek(e){this.params.output.willSeekEvent$.next();let{remotePlayer:t,remotePlayerController:i}=this.params.connection;t.currentTime=e,i.seek()}stop(){let{remotePlayerController:e}=this.params.connection;e.stop()}createMediaInfo(e){let t=this.params.source,i,a,s;switch(e){case"MPEG":{let l=t[e];(0,L.assertNonNullable)(l);let d=(0,L.getHighestQuality)(Object.keys(l));(0,L.assertNonNullable)(d);let p=l[d];(0,L.assertNonNullable)(p),i=p,a="video/mp4",s=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let l=t[e];(0,L.assertNonNullable)(l),i=l.url,a="application/x-mpegurl",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let l=t[e];(0,L.assertNonNullable)(l),i=l.url,a="application/dash+xml",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let l=t[e];(0,L.assertNonNullable)(l),i=l.url,a="application/dash+xml",s=chrome.cast.media.StreamType.LIVE;break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let l=t[e];(0,L.assertNonNullable)(l),i=xe(l.url),a="application/x-mpegurl",s=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let l="Unsupported format for Chromecast",d=new Error(l);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:L.ErrorCategory.VIDEO_PIPELINE,message:l,thrown:d}),d}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,L.assertNever)(e)}let n=new chrome.cast.media.MediaInfo(this.params.meta.videoId??i,a);n.contentUrl=i,n.streamType=s,n.metadata=new chrome.cast.media.GenericMediaMetadata;let{title:o,subtitle:u}=this.params.meta;return(0,L.isNonNullable)(o)&&(n.metadata.title=o),(0,L.isNonNullable)(u)&&(n.metadata.subtitle=u),n}createLoadRequest(e){let t=new chrome.cast.media.LoadRequest(e);t.autoplay=!1;let i=this.params.desiredState.seekState.getState();return i.state==="applying"||i.state==="requested"?t.currentTime=this.params.output.isLive$.getValue()?0:i.position/1e3:t.currentTime=0,t}loadMedia(e){let t=this.params.connection.session.loadMedia(e),i=new Promise((a,s)=>{this.loadMediaTimeoutSubscription.add((0,L.timeout)(jm).subscribe(()=>s(`timeout(${jm})`)))});(0,Qm.default)(Promise.race([t,i]).then(()=>{this.log({message:`[loadMedia] completed, format: ${this.params.format}`}),this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.handleRemoteReady()},a=>{let s=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${a}`;this.log({message:s}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:L.ErrorCategory.VIDEO_PIPELINE,message:s,thrown:a})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var pu=F(De(),1);var Zo=require("@vkontakte/videoplayer-shared/es2024");var Gm=require("@vkontakte/videoplayer-shared/es2024"),Wm=r=>{try{r.pause(),r.playbackRate=0,(0,Gm.clearVideoElement)(r),r.remove()}catch(e){console.error(e)}};var Ss=require("@vkontakte/videoplayer-shared/es2024"),Ko=class{constructor(){this.attribute="data-pool-reused"}get(e){return e.hasAttribute(this.attribute)}set(e,t){e.toggleAttribute(this.attribute,t)}delete(e){e.removeAttribute(this.attribute)}},Xo=window.WeakMap?new WeakMap:new Ko,Jo=window.WeakMap?new WeakMap:new Map,ok=(r,e=20)=>{let t=0;return(0,Ss.fromEvent)(r,"ratechange").subscribe(i=>{t++,t>=e&&(r.currentTime=r.currentTime,t=0)})},Ve=(r,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=r.querySelector("video"),a=!!i;i?(0,Zo.clearVideoElement)(i):(i=document.createElement("video"),r.appendChild(i)),Xo.set(i,a);let s=new Ss.Subscription;return s.add(ok(i,e)),Jo.set(i,s),i.setAttribute("crossorigin","anonymous"),i.setAttribute("playsinline","playsinline"),t&&i.setAttribute("x-yandex-pip","false"),i.controls=!1,i.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),i},Be=r=>{Jo.get(r)?.unsubscribe(),Jo.delete(r);let t=Xo.get(r);Xo.delete(r),t?(0,Zo.clearVideoElement)(r):Wm(r)};var eu=F(Ni(),1),R=require("@vkontakte/videoplayer-shared/es2024");var Nt=require("@vkontakte/videoplayer-shared/es2024"),ys=(r,e,t,{equal:i=(n,o)=>n===o,changed$:a,onError:s}={})=>{let n=r.getState(),o=e(),u=(0,Nt.isNullable)(a),l=new Nt.Subscription;return a&&l.add(a.subscribe(d=>{let p=r.getState();i(d,p)&&r.setState(d)},s)),i(o,n)||(t(n),u&&r.setState(n)),l.add(r.stateChangeStarted$.subscribe(d=>{t(d.to),u&&r.setState(d.to)},s)),l},gt=(r,e,t)=>ys(e,()=>r.loop,i=>{(0,Nt.isNonNullable)(i)&&(r.loop=i)},{onError:t}),Oe=(r,e,t,i)=>ys(e,()=>({muted:r.muted,volume:r.volume}),a=>{(0,Nt.isNonNullable)(a)&&(r.muted=a.muted,r.volume=a.volume)},{equal:(a,s)=>a===s||a?.muted===s?.muted&&a?.volume===s?.volume,changed$:t,onError:i}),Ke=(r,e,t,i)=>ys(e,()=>r.playbackRate,a=>{(0,Nt.isNonNullable)(a)&&(r.playbackRate=a)},{changed$:t,onError:i}),Ft=ys;var hk=r=>["__",r.language,r.label].join("|"),mk=(r,e)=>{if(r.id===e)return!0;let[t,i,a]=e.split("|");return r.language===i&&r.label===a},tu=class r{constructor(e){this.available$=new R.Subject;this.current$=new R.ValueSubject(void 0);this.error$=new R.Subject;this.subscription=new R.Subscription;this.externalTracks=new Map;this.internalTracks=new Map;this.baseURL=e}connect(e,t,i){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let a=s=>{this.error$.next({id:"TextTracksManager",category:R.ErrorCategory.WTF,message:"Generic HtmlVideoTextTrackManager error",thrown:s})};this.subscription.add(this.available$.subscribe(i.availableTextTracks$)),this.subscription.add(this.current$.subscribe(i.currentTextTrack$)),this.subscription.add(this.error$.subscribe(i.error$)),this.subscription.add(Ft(t.internalTextTracks,()=>(0,eu.default)(this.internalTracks),s=>{(0,R.isNonNullable)(s)&&this.setInternal(s)},{equal:(s,n)=>(0,R.isNonNullable)(s)&&(0,R.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,R.map)(s=>s.filter(({type:n})=>n==="internal"))),onError:a})),this.subscription.add(Ft(t.externalTextTracks,()=>(0,eu.default)(this.externalTracks),s=>{(0,R.isNonNullable)(s)&&this.setExternal(s)},{equal:(s,n)=>(0,R.isNonNullable)(s)&&(0,R.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,R.map)(s=>s.filter(({type:n})=>n==="external"))),onError:a})),this.subscription.add(Ft(t.currentTextTrack,()=>{if(this.video)return;let s=this.htmlTextTracksAsArray().find(({mode:n})=>n==="showing");return s&&this.htmlTextTrackToITextTrack(s).id},s=>this.select(s),{changed$:this.current$,onError:a})),this.subscription.add(Ft(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let s of this.htmlTextTracksAsArray())this.applyCueSettings(s.cues),this.applyCueSettings(s.activeCues)}))}subscribe(){(0,R.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,R.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,R.merge)((0,R.fromEvent)(e,"addtrack"),(0,R.fromEvent)(e,"removetrack"),(0,R.observableFrom)(["init"])).pipe((0,R.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,R.filterChanged)((i,a)=>i.length===a.length&&i.every(({id:s},n)=>s===a[n].id))).subscribe(this.available$)),this.subscription.add((0,R.merge)((0,R.fromEvent)(e,"change"),(0,R.observableFrom)(["init"])).pipe((0,R.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,R.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,R.filterChanged)()).subscribe(this.current$));let t=i=>this.applyCueSettings(i.target?.activeCues??null);this.subscription.add((0,R.fromEvent)(e,"addtrack").subscribe(i=>{i.track?.addEventListener("cuechange",t);let a=s=>{let n=s.target?.cues??null;n&&n.length&&(this.applyCueSettings(s.target?.cues??null),s.target?.removeEventListener("cuechange",a))};i.track?.addEventListener("cuechange",a)})),this.subscription.add((0,R.fromEvent)(e,"removetrack").subscribe(i=>{i.track?.removeEventListener("cuechange",t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let i of Array.from(e)){let a=i;(0,R.isNonNullable)(t.align)&&(a.align=t.align),(0,R.isNonNullable)(t.position)&&(a.position=t.position),(0,R.isNonNullable)(t.size)&&(a.size=t.size),(0,R.isNonNullable)(t.line)&&(a.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,R.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(r.isHealthyTrack)}htmlTextTrackToITextTrack(e){let{language:t,label:i}=e,a=e.id?e.id:hk(e),s=this.externalTracks.has(a),n=(s?this.externalTracks.get(a)?.isAuto:this.internalTracks.get(a)?.isAuto)??a.includes("auto");return s?{id:a,type:"external",isAuto:n,language:t,label:i,url:this.externalTracks.get(a)?.url}:{id:a,type:"internal",isAuto:n,language:t,label:i,url:this.internalTracks.get(a)?.url}}static isHealthyTrack(e){return!(e.kind==="metadata"||e.groupId||e.id===""&&e.label===""&&e.language==="")}setExternal(e){this.internalTracks.size>0&&Array.from(this.internalTracks).forEach(([,t])=>this.detach(t)),e.filter(({id:t})=>!this.externalTracks.has(t)).forEach(t=>this.attach(t)),Array.from(this.externalTracks).filter(([t])=>!e.find(i=>i.id===t)).forEach(([,t])=>this.detach(t))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:i,language:a,isAuto:s})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===a&&n.isAuto===s)).forEach(i=>this.attach(i)),Array.from(this.internalTracks).filter(([i])=>!e.find(a=>a.id===i)).forEach(([,i])=>this.detach(i))}select(e){(0,R.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,R.isNullable)(e)||!mk(t,e))&&(t.mode="disabled")}destroy(){if(this.subscription.unsubscribe(),this.video)for(let e of Array.from(this.video.getElementsByTagName("track"))){let t=e.getAttribute("id");t&&this.externalTracks.has(t)&&this.video.removeChild(e)}this.externalTracks.clear()}attach(e){(0,R.assertNonNullable)(this.video);let t=document.createElement("track");this.baseURL?t.setAttribute("src",new URL(e.url,this.baseURL).toString()):t.setAttribute("src",e.url),t.setAttribute("id",e.id),e.label&&t.setAttribute("label",e.label),e.language&&t.setAttribute("srclang",e.language),e.type==="external"?this.externalTracks.set(e.id,e):e.type==="internal"&&this.internalTracks.set(e.id,e),this.video.appendChild(t)}detach(e){(0,R.assertNonNullable)(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName("track"),i=>i.getAttribute("id")===e.id);t&&this.video.removeChild(t),e.type==="external"?this.externalTracks.delete(e.id):e.type==="internal"&&this.internalTracks.delete(e.id)}},Xe=tu;var oi=class{constructor(){this.pausedTime=0;this.streamOffset=0;this.pauseTimestamp=0}getTotalPausedTime(){return this.pausedTime+this.getCurrentPausedTime()}getCurrentPausedTime(){return this.pauseTimestamp>0?Date.now()-this.pauseTimestamp:0}getStreamOffset(){return this.streamOffset}getTotalOffset(){return this.getTotalPausedTime()+this.streamOffset}pause(){this.pauseTimestamp===0&&(this.pauseTimestamp=Date.now())}resume(){this.pauseTimestamp>0&&(this.pausedTime+=this.getCurrentPausedTime(),this.pauseTimestamp=0)}resetTo(e,t=!1){this.streamOffset=e,this.pauseTimestamp=0,this.pausedTime=0,t&&this.pause()}};var ef=r=>{let e=r;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e?.parentNode;return e??void 0},iu=r=>{let e=ef(r);return!!(e&&e.fullscreenElement&&e.fullscreenElement===r)},tf=r=>{let e=ef(r);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===r)};var x=require("@vkontakte/videoplayer-shared/es2024");var fk=3,rf=(r,e,t=fk)=>{let i=0,a=0;for(let s=0;s<r.length;s++){let n=r.start(s),o=r.end(s);if(n<=e&&e<=o){if(i=n,a=o,!t)return{from:i,to:a};for(let u=s-1;u>=0;u--)r.end(u)+t>=i&&(i=r.start(u));for(let u=s+1;u<r.length;u++)r.start(u)-t<=a&&(a=r.end(u))}}return{from:i,to:a}};var Ts=class{get current(){return this._current}get isYandex(){return this.current==="Yandex"}get isSafari(){return this.current==="Safari"}get isSamsungBrowser(){return this.current==="SamsungBrowser"}get safariVersion(){return this._safariVersion}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?"Yandex":void 0,i=/samsungbrowser/i.test(e)?"SamsungBrowser":void 0,a=/chrome|crios/i.test(e)?"Chrome":void 0,s=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,l=/edg/i.test(e)?"Edge":void 0;this._current=t||i||n||u||l||a||s||o||"Rest"}catch(t){console.error(t)}this.isSafari&&this.detectSafariVersion()}detectSafariVersion(){try{let{userAgent:e}=window.navigator,t=e.match(/Version\/(\d+)/);if(!t)return;let i=t[1],a=parseInt(i,10);if(isNaN(a))return;this._safariVersion=a}catch(e){console.error(e)}}};var af=F(De(),1);var Fi=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;var Is=class{constructor(e){this._highEntropyValues={};this._displayChecker=e}get current(){return this._current}get isIOS(){let e=["iPhone","iPad","iPod"];return this._highEntropyValues.platform==="iOS"||(0,af.default)(e,this.current)}get isMac(){return this._highEntropyValues.platform==="macOS"||this.current==="Mac"}get isApple(){return this.isIOS||this.isMac}get isIphoneOrOldIpad(){if(!this.isApple||!this._displayChecker.isTouch)return!1;let e=this.current==="iPad"||this._displayChecker.width>700,t=this._iosVersion;return!e||e&&!!t&&t<16}get isAndroid(){return this._highEntropyValues.platform==="Android"||this.current==="Android"}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let{userAgent:e}=navigator;try{this._isMobile=Fi()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let{userAgentData:e}=navigator;if(e){let t=await e.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=t}}detectDevice(e){try{let t=/android/i.test(e)?"Android":void 0,i=/iphone/i.test(e)?"iPhone":void 0,a=/ipad/i.test(e)?"iPad":void 0,s=/ipod/i.test(e)?"iPod":void 0,n=/mac/i.test(e)?"Mac":void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?"RestMobile":void 0;this._current=t||i||a||s||o||n||"Desktop"}catch(t){console.error(t)}}detectIOSVersion(){try{if(this._highEntropyValues.platformVersion){let s=this._highEntropyValues.platformVersion.split(".").slice(0,2).join("."),n=parseFloat(s);this._iosVersion=n;return}let{userAgent:e}=window.navigator,t=e.match(/OS (\d+(_\d+)?)/i);if(!t)return;let i=t[1].replace(/_/g,".");if(!i)return;let a=parseFloat(i);if(isNaN(a))return;this._iosVersion=a}catch(e){console.error(e)}}};var Es=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in window}get maxTouchPoints(){return this._maxTouchPoints}get height(){return this._height}get width(){return this._width}get screenHeight(){return this._screenHeight}get screenWidth(){return this._screenWidth}get pixelRatio(){return this._pixelRatio}get isHDR(){return this._isHdr}get colorDepth(){return this._colorDepth}detect(){let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e??0,this._isHdr=!!matchMedia("(dynamic-range: high)")?.matches,this._colorDepth=screen.colorDepth}catch(t){console.error(t)}try{this._pixelRatio=window.devicePixelRatio||1,this._height=screen.height,this._width=screen.width,this._height=screen.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(t){console.error(t)}}};var nt=()=>window.ManagedMediaSource||window.MediaSource,xs=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),sf=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),nf=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var bk=document.createElement("video"),gk='video/mp4; codecs="avc1.42000a,mp4a.40.2"',vk='video/mp4; codecs="hev1.1.6.L93.B0"',of='video/webm; codecs="vp09.00.10.08"',uf='video/webm; codecs="av01.0.00M.08"',Sk='audio/mp4; codecs="mp4a.40.2"',yk='audio/webm; codecs="opus"',lf,Tk=async()=>{if(!window.navigator.mediaCapabilities)return;let r={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[e,t]=await Promise.all([window.navigator.mediaCapabilities.decodingInfo({...r,video:{...r.video,contentType:uf}}),window.navigator.mediaCapabilities.decodingInfo({...r,video:{...r.video,contentType:of}})]);lf={DASH_WEBM_AV1:e,DASH_WEBM:t}};Tk().catch(r=>{console.log(bk),console.error(r)});var Ps=class{constructor(e,t){this._deviceChecker=e,this._browserChecker=t}get protocols(){return this._protocols}get containers(){return this._containers}get codecs(){return this._codecs}get webmDecodingInfo(){return lf}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){this._video=document.createElement("video");try{this._protocols={mms:xs(),mse:sf(),hls:!!(this._video.canPlayType?.("application/x-mpegurl")||this._video.canPlayType?.("vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!this._video.canPlayType?.("video/mp4"),webm:!!this._video.canPlayType?.("video/webm"),cmaf:!0};let e=!!nt()?.isTypeSupported?.(gk),t=!!nt()?.isTypeSupported?.(vk),i=!!nt()?.isTypeSupported?.(Sk);this._codecs={h264:e,h265:t,vp9:!!nt()?.isTypeSupported?.(of),av1:!!nt()?.isTypeSupported?.(uf),aac:i,opus:!!nt()?.isTypeSupported?.(yk),mpeg:(e||t)&&i},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(e){console.error(e)}this.destroyVideoElement()}destroyVideoElement(){if(!this._video)return;if(this._video.pause(),this._video.currentTime=0,this._video.removeAttribute("src"),this._video.src="",this._video.load(),this._video.remove){this._video.remove(),this._video=null;return}this._video.parentNode&&this._video.parentNode.removeChild(this._video);let e=this._video.cloneNode(!1);this._video.parentNode?.replaceChild(e,this._video),this._video=null}};var cf="audio/mpeg",ks=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){this._audio=document.createElement("audio");try{this._containers={mpeg:!!this._audio.canPlayType?.(cf)},this._codecs={mp3:!!nt()?.isTypeSupported?.(cf)}}catch(e){console.error(e)}this.destroyAudioElement()}destroyAudioElement(){if(!this._audio)return;if(this._audio.pause(),this._audio.currentTime=0,this._audio.removeAttribute("src"),this._audio.src="",this._audio.load(),this._audio.remove){this._audio.remove(),this._audio=null;return}this._audio.parentNode&&this._audio.parentNode.removeChild(this._audio);let e=this._audio.cloneNode(!1);this._audio.parentNode?.replaceChild(e,this._audio),this._audio=null}};var df=require("@vkontakte/videoplayer-shared/es2024"),ru=class{constructor(){this.isInited$=new df.ValueSubject(!1);this._displayChecker=new Es,this._deviceChecker=new Is(this._displayChecker),this._browserChecker=new Ts,this._videoChecker=new Ps(this._deviceChecker,this._browserChecker),this._audioChecker=new ks,this.detect()}get display(){return this._displayChecker}get device(){return this._deviceChecker}get browser(){return this._browserChecker}get video(){return this._videoChecker}get audio(){return this._audioChecker}async detect(){this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0)}},Q=new ru;var _e=r=>{let e=E=>(0,x.fromEvent)(r,E).pipe((0,x.mapTo)(void 0)),t=new x.Subscription,i=()=>t.unsubscribe(),s=(0,x.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(E=>(0,x.fromEvent)(r,E))).pipe((0,x.map)(E=>E.type==="ended"?r.readyState<2:r.readyState<3),(0,x.filterChanged)()),n=(0,x.merge)((0,x.fromEvent)(r,"progress"),(0,x.fromEvent)(r,"timeupdate")).pipe((0,x.map)(()=>rf(r.buffered,r.currentTime))),o=Q.browser.isSafari?(0,x.combine)({play:e("play").pipe((0,x.once)()),playing:e("playing")}).pipe((0,x.mapTo)(void 0)):e("playing"),u=(0,x.fromEvent)(r,"volumechange").pipe((0,x.map)(()=>({muted:r.muted,volume:r.volume}))),l=(0,x.fromEvent)(r,"ratechange").pipe((0,x.map)(()=>r.playbackRate)),d=(0,x.fromEvent)(r,"error").pipe((0,x.filter)(()=>!!(r.error||r.played.length)),(0,x.map)(()=>{let E=r.error;return{id:E?`MediaError#${E.code}`:"HtmlVideoError",category:x.ErrorCategory.VIDEO_PIPELINE,message:E?E.message:"Error event from HTML video element",thrown:r.error??void 0}})),p=(0,x.fromEvent)(r,"timeupdate").pipe((0,x.map)(()=>r.currentTime)),h=new x.Subject,m=.3,b;t.add(p.subscribe(E=>{r.loop&&(0,x.isNonNullable)(b)&&(0,x.isNonNullable)(E)&&b>=r.duration-m&&E<=m&&h.next(b),b=E}));let v=e("pause").pipe((0,x.filter)(()=>!r.error&&b!==r.duration)),T=(0,x.fromEvent)(r,"enterpictureinpicture"),I=(0,x.fromEvent)(r,"leavepictureinpicture"),A=new x.ValueSubject(tf(r));t.add(T.subscribe(()=>A.next(!0))),t.add(I.subscribe(()=>A.next(!1)));let P=new x.ValueSubject(iu(r)),$=(0,x.fromEvent)(r,"fullscreenchange");t.add($.pipe((0,x.map)(()=>iu(r))).subscribe(P));let k=.1,Y=1e3,z=(0,x.fromEvent)(r,"timeupdate").pipe((0,x.filter)(E=>r.duration-r.currentTime<k)),X=(0,x.merge)(z.pipe((0,x.filter)(E=>!r.loop)),(0,x.fromEvent)(r,"ended")).pipe((0,x.throttle)(Y),(0,x.mapTo)(void 0)),K=z.pipe((0,x.filter)(E=>r.loop));return{playing$:o,pause$:v,canplay$:e("canplay"),ended$:X,looped$:h,loopExpected$:K,error$:d,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:p,durationChange$:(0,x.fromEvent)(r,"durationchange").pipe((0,x.map)(()=>r.duration)),isBuffering$:s,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:A,inFullscreen$:P,enterPip$:T,leavePip$:I,destroy:i}};var Pt=require("@vkontakte/videoplayer-shared/es2024"),qt=r=>{switch(r){case"mobile":return Pt.VideoQuality.Q_144P;case"lowest":return Pt.VideoQuality.Q_240P;case"low":return Pt.VideoQuality.Q_360P;case"sd":case"medium":return Pt.VideoQuality.Q_480P;case"hd":case"high":return Pt.VideoQuality.Q_720P;case"fullhd":case"full":return Pt.VideoQuality.Q_1080P;case"quadhd":case"quad":return Pt.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Pt.VideoQuality.Q_2160P}};var Ht=F(Ut(),1),Ef=F(De(),1),ws=F(Li(),1),B=require("@vkontakte/videoplayer-shared/es2024");var au=!1,kt={},vf=r=>{au=r},Sf=()=>{kt={}},yf=r=>{r(kt)},wr=(r,e)=>{au&&(kt.meta=kt.meta??{},kt.meta[r]=e)},Ae=class{constructor(e){this.name=e}next(e){if(!au)return;kt.series=kt.series??{};let t=kt.series[this.name]??[];t.push([Date.now(),e]),kt.series[this.name]=t}};var fe=require("@vkontakte/videoplayer-shared/es2024");function su({limits:r,highQualityLimit:e,trafficSavingLimit:t}){return!r.max&&r.min===e?"high_quality":!r.min&&r.max===t?"traffic_saving":"unknown"}function nu({limits:r,highQualityLimit:e,trafficSavingLimit:t}){return!!r&&su({limits:r,highQualityLimit:e,trafficSavingLimit:t})==="high_quality"}function Ar({limits:r,highestAvailableQuality:e,lowestAvailableQuality:t}){return(0,fe.isNullable)(r)||(0,fe.isNonNullable)(r.min)&&(0,fe.isNonNullable)(r.max)&&(0,fe.isLower)(r.max,r.min)||(0,fe.isNonNullable)(r.min)&&e&&(0,fe.isHigher)(r.min,e)||(0,fe.isNonNullable)(r.max)&&t&&(0,fe.isLower)(r.max,t)}function Tf({limits:r,highestAvailableHeight:e,lowestAvailableHeight:t}){return Ar({limits:{max:r?.max?(0,fe.videoHeightToQuality)(r.max):void 0,min:r?.min?(0,fe.videoHeightToQuality)(r.min):void 0},highestAvailableQuality:e?(0,fe.videoHeightToQuality)(e):void 0,lowestAvailableQuality:t?(0,fe.videoHeightToQuality)(t):void 0})}var Rk=new Ae("best_bitrate"),xf=(r,e,t)=>(e-t)*Math.pow(2,-10*r)+t;var ou=r=>(e,t)=>r*(Number(e.bitrate)-Number(t.bitrate)),Lr=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=(0,B.now)()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},Pf='Assertion "ABR Tracks is empty array" failed',As=(r,e,t,i)=>{let a=[...e].sort(ou(1)),s=[...t].sort(ou(1)),n=s.filter(u=>(0,B.isNonNullable)(u.bitrate)&&(0,B.isNonNullable)(r.bitrate)?r.bitrate/u.bitrate>i:!0),o=(0,Ht.default)(s,Math.round(s.length*a.indexOf(r)/(a.length+1)))??(0,Ht.default)(s,-1);return o&&(0,Ef.default)(n,o)?o:n.length?(0,Ht.default)(n,-1):(0,Ht.default)(s,0)},If=r=>"quality"in r,kf=(r,e,t,i)=>{let a=(0,B.isNonNullable)(i?.last?.bitrate)&&(0,B.isNonNullable)(t?.bitrate)&&i.last.bitrate<t.bitrate?r.trackCooldownIncreaseQuality:r.trackCooldownDecreaseQuality,s=t&&i&&i.history[t.id]&&(0,B.now)()-i.history[t.id]<=a&&(!i.last||t.id!==i.last.id);if(t?.id&&i&&!s&&i.recordSelection(t),s&&i?.last){let n=i.last;i?.recordSwitch(n);let o=If(n)?"video":"audio",u=If(n)?n.quality:n.bitrate;return e({message:`
6
+ "use strict";var my=Object.create;var Ja=Object.defineProperty;var by=Object.getOwnPropertyDescriptor;var gy=Object.getOwnPropertyNames;var Sy=Object.getPrototypeOf,vy=Object.prototype.hasOwnProperty;var b=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports),yy=(s,e)=>{for(var t in e)Ja(s,t,{get:e[t],enumerable:!0})},Nc=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of gy(e))!vy.call(s,r)&&r!==t&&Ja(s,r,{get:()=>e[r],enumerable:!(i=by(e,r))||i.enumerable});return s};var q=(s,e,t)=>(t=s!=null?my(Sy(s)):{},Nc(e||!s||!s.__esModule?Ja(t,"default",{value:s,enumerable:!0}):t,s)),Ty=s=>Nc(Ja({},"__esModule",{value:!0}),s);var Ce=b((Fo,Uc)=>{"use strict";var Wr=function(s){return s&&s.Math===Math&&s};Uc.exports=Wr(typeof globalThis=="object"&&globalThis)||Wr(typeof window=="object"&&window)||Wr(typeof self=="object"&&self)||Wr(typeof global=="object"&&global)||Wr(typeof Fo=="object"&&Fo)||function(){return this}()||Function("return this")()});var We=b((TM,qc)=>{"use strict";qc.exports=function(s){try{return!!s()}catch{return!0}}});var Yr=b((IM,Hc)=>{"use strict";var Iy=We();Hc.exports=!Iy(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var No=b((xM,Qc)=>{"use strict";var xy=Yr(),Gc=Function.prototype,jc=Gc.apply,zc=Gc.call;Qc.exports=typeof Reflect=="object"&&Reflect.apply||(xy?zc.bind(jc):function(){return zc.apply(jc,arguments)})});var ze=b((EM,Kc)=>{"use strict";var Wc=Yr(),Yc=Function.prototype,Uo=Yc.call,Ey=Wc&&Yc.bind.bind(Uo,Uo);Kc.exports=Wc?Ey:function(s){return function(){return Uo.apply(s,arguments)}}});var Ni=b((PM,Jc)=>{"use strict";var Xc=ze(),Py=Xc({}.toString),ky=Xc("".slice);Jc.exports=function(s){return ky(Py(s),8,-1)}});var qo=b((kM,Zc)=>{"use strict";var wy=Ni(),Ay=ze();Zc.exports=function(s){if(wy(s)==="Function")return Ay(s)}});var Me=b((wM,ed)=>{"use strict";var Ho=typeof document=="object"&&document.all;ed.exports=typeof Ho>"u"&&Ho!==void 0?function(s){return typeof s=="function"||s===Ho}:function(s){return typeof s=="function"}});var Et=b((AM,td)=>{"use strict";var Ry=We();td.exports=!Ry(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Pt=b((RM,id)=>{"use strict";var Ly=Yr(),tn=Function.prototype.call;id.exports=Ly?tn.bind(tn):function(){return tn.apply(tn,arguments)}});var jo=b(ad=>{"use strict";var rd={}.propertyIsEnumerable,sd=Object.getOwnPropertyDescriptor,My=sd&&!rd.call({1:2},1);ad.f=My?function(e){var t=sd(this,e);return!!t&&t.enumerable}:rd});var Kr=b((MM,nd)=>{"use strict";nd.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var ud=b(($M,od)=>{"use strict";var $y=ze(),By=We(),Dy=Ni(),zo=Object,Cy=$y("".split);od.exports=By(function(){return!zo("z").propertyIsEnumerable(0)})?function(s){return Dy(s)==="String"?Cy(s,""):zo(s)}:zo});var or=b((BM,ld)=>{"use strict";ld.exports=function(s){return s==null}});var Pi=b((DM,cd)=>{"use strict";var Vy=or(),Oy=TypeError;cd.exports=function(s){if(Vy(s))throw new Oy("Can't call method on "+s);return s}});var Ui=b((CM,dd)=>{"use strict";var _y=ud(),Fy=Pi();dd.exports=function(s){return _y(Fy(s))}});var kt=b((VM,pd)=>{"use strict";var Ny=Me();pd.exports=function(s){return typeof s=="object"?s!==null:Ny(s)}});var ur=b((OM,hd)=>{"use strict";hd.exports={}});var di=b((_M,md)=>{"use strict";var Go=ur(),Qo=Ce(),Uy=Me(),fd=function(s){return Uy(s)?s:void 0};md.exports=function(s,e){return arguments.length<2?fd(Go[s])||fd(Qo[s]):Go[s]&&Go[s][e]||Qo[s]&&Qo[s][e]}});var Xr=b((FM,bd)=>{"use strict";var qy=ze();bd.exports=qy({}.isPrototypeOf)});var qi=b((NM,vd)=>{"use strict";var Hy=Ce(),gd=Hy.navigator,Sd=gd&&gd.userAgent;vd.exports=Sd?String(Sd):""});var Yo=b((UM,Pd)=>{"use strict";var Ed=Ce(),Wo=qi(),yd=Ed.process,Td=Ed.Deno,Id=yd&&yd.versions||Td&&Td.version,xd=Id&&Id.v8,Ft,rn;xd&&(Ft=xd.split("."),rn=Ft[0]>0&&Ft[0]<4?1:+(Ft[0]+Ft[1]));!rn&&Wo&&(Ft=Wo.match(/Edge\/(\d+)/),(!Ft||Ft[1]>=74)&&(Ft=Wo.match(/Chrome\/(\d+)/),Ft&&(rn=+Ft[1])));Pd.exports=rn});var Ko=b((qM,wd)=>{"use strict";var kd=Yo(),jy=We(),zy=Ce(),Gy=zy.String;wd.exports=!!Object.getOwnPropertySymbols&&!jy(function(){var s=Symbol("symbol detection");return!Gy(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&kd&&kd<41})});var Xo=b((HM,Ad)=>{"use strict";var Qy=Ko();Ad.exports=Qy&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Jo=b((jM,Rd)=>{"use strict";var Wy=di(),Yy=Me(),Ky=Xr(),Xy=Xo(),Jy=Object;Rd.exports=Xy?function(s){return typeof s=="symbol"}:function(s){var e=Wy("Symbol");return Yy(e)&&Ky(e.prototype,Jy(s))}});var Jr=b((zM,Ld)=>{"use strict";var Zy=String;Ld.exports=function(s){try{return Zy(s)}catch{return"Object"}}});var Wt=b((GM,Md)=>{"use strict";var eT=Me(),tT=Jr(),iT=TypeError;Md.exports=function(s){if(eT(s))return s;throw new iT(tT(s)+" is not a function")}});var Zr=b((QM,$d)=>{"use strict";var rT=Wt(),sT=or();$d.exports=function(s,e){var t=s[e];return sT(t)?void 0:rT(t)}});var Dd=b((WM,Bd)=>{"use strict";var Zo=Pt(),eu=Me(),tu=kt(),aT=TypeError;Bd.exports=function(s,e){var t,i;if(e==="string"&&eu(t=s.toString)&&!tu(i=Zo(t,s))||eu(t=s.valueOf)&&!tu(i=Zo(t,s))||e!=="string"&&eu(t=s.toString)&&!tu(i=Zo(t,s)))return i;throw new aT("Can't convert object to primitive value")}});var Nt=b((YM,Cd)=>{"use strict";Cd.exports=!0});var _d=b((KM,Od)=>{"use strict";var Vd=Ce(),nT=Object.defineProperty;Od.exports=function(s,e){try{nT(Vd,s,{value:e,configurable:!0,writable:!0})}catch{Vd[s]=e}return e}});var es=b((XM,Ud)=>{"use strict";var oT=Nt(),uT=Ce(),lT=_d(),Fd="__core-js_shared__",Nd=Ud.exports=uT[Fd]||lT(Fd,{});(Nd.versions||(Nd.versions=[])).push({version:"3.38.0",mode:oT?"pure":"global",copyright:"\xA9 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var iu=b((JM,Hd)=>{"use strict";var qd=es();Hd.exports=function(s,e){return qd[s]||(qd[s]=e||{})}});var lr=b((ZM,jd)=>{"use strict";var cT=Pi(),dT=Object;jd.exports=function(s){return dT(cT(s))}});var Ut=b((e$,zd)=>{"use strict";var pT=ze(),hT=lr(),fT=pT({}.hasOwnProperty);zd.exports=Object.hasOwn||function(e,t){return fT(hT(e),t)}});var ru=b((t$,Gd)=>{"use strict";var mT=ze(),bT=0,gT=Math.random(),ST=mT(1 .toString);Gd.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+ST(++bT+gT,36)}});var Ye=b((i$,Wd)=>{"use strict";var vT=Ce(),yT=iu(),Qd=Ut(),TT=ru(),IT=Ko(),xT=Xo(),cr=vT.Symbol,su=yT("wks"),ET=xT?cr.for||cr:cr&&cr.withoutSetter||TT;Wd.exports=function(s){return Qd(su,s)||(su[s]=IT&&Qd(cr,s)?cr[s]:ET("Symbol."+s)),su[s]}});var Jd=b((r$,Xd)=>{"use strict";var PT=Pt(),Yd=kt(),Kd=Jo(),kT=Zr(),wT=Dd(),AT=Ye(),RT=TypeError,LT=AT("toPrimitive");Xd.exports=function(s,e){if(!Yd(s)||Kd(s))return s;var t=kT(s,LT),i;if(t){if(e===void 0&&(e="default"),i=PT(t,s,e),!Yd(i)||Kd(i))return i;throw new RT("Can't convert object to primitive value")}return e===void 0&&(e="number"),wT(s,e)}});var au=b((s$,Zd)=>{"use strict";var MT=Jd(),$T=Jo();Zd.exports=function(s){var e=MT(s,"string");return $T(e)?e:e+""}});var sn=b((a$,tp)=>{"use strict";var BT=Ce(),ep=kt(),nu=BT.document,DT=ep(nu)&&ep(nu.createElement);tp.exports=function(s){return DT?nu.createElement(s):{}}});var ou=b((n$,ip)=>{"use strict";var CT=Et(),VT=We(),OT=sn();ip.exports=!CT&&!VT(function(){return Object.defineProperty(OT("div"),"a",{get:function(){return 7}}).a!==7})});var ap=b(sp=>{"use strict";var _T=Et(),FT=Pt(),NT=jo(),UT=Kr(),qT=Ui(),HT=au(),jT=Ut(),zT=ou(),rp=Object.getOwnPropertyDescriptor;sp.f=_T?rp:function(e,t){if(e=qT(e),t=HT(t),zT)try{return rp(e,t)}catch{}if(jT(e,t))return UT(!FT(NT.f,e,t),e[t])}});var uu=b((u$,np)=>{"use strict";var GT=We(),QT=Me(),WT=/#|\.prototype\./,ts=function(s,e){var t=KT[YT(s)];return t===JT?!0:t===XT?!1:QT(e)?GT(e):!!e},YT=ts.normalize=function(s){return String(s).replace(WT,".").toLowerCase()},KT=ts.data={},XT=ts.NATIVE="N",JT=ts.POLYFILL="P";np.exports=ts});var dr=b((l$,up)=>{"use strict";var op=qo(),ZT=Wt(),eI=Yr(),tI=op(op.bind);up.exports=function(s,e){return ZT(s),e===void 0?s:eI?tI(s,e):function(){return s.apply(e,arguments)}}});var lu=b((c$,lp)=>{"use strict";var iI=Et(),rI=We();lp.exports=iI&&rI(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var Yt=b((d$,cp)=>{"use strict";var sI=kt(),aI=String,nI=TypeError;cp.exports=function(s){if(sI(s))return s;throw new nI(aI(s)+" is not an object")}});var Hi=b(pp=>{"use strict";var oI=Et(),uI=ou(),lI=lu(),an=Yt(),dp=au(),cI=TypeError,cu=Object.defineProperty,dI=Object.getOwnPropertyDescriptor,du="enumerable",pu="configurable",hu="writable";pp.f=oI?lI?function(e,t,i){if(an(e),t=dp(t),an(i),typeof e=="function"&&t==="prototype"&&"value"in i&&hu in i&&!i[hu]){var r=dI(e,t);r&&r[hu]&&(e[t]=i.value,i={configurable:pu in i?i[pu]:r[pu],enumerable:du in i?i[du]:r[du],writable:!1})}return cu(e,t,i)}:cu:function(e,t,i){if(an(e),t=dp(t),an(i),uI)try{return cu(e,t,i)}catch{}if("get"in i||"set"in i)throw new cI("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var pr=b((h$,hp)=>{"use strict";var pI=Et(),hI=Hi(),fI=Kr();hp.exports=pI?function(s,e,t){return hI.f(s,e,fI(1,t))}:function(s,e,t){return s[e]=t,s}});var _e=b((f$,mp)=>{"use strict";var is=Ce(),mI=No(),bI=qo(),gI=Me(),SI=ap().f,vI=uu(),hr=ur(),yI=dr(),fr=pr(),fp=Ut();es();var TI=function(s){var e=function(t,i,r){if(this instanceof e){switch(arguments.length){case 0:return new s;case 1:return new s(t);case 2:return new s(t,i)}return new s(t,i,r)}return mI(s,this,arguments)};return e.prototype=s.prototype,e};mp.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?is:r?is[t]:is[t]&&is[t].prototype,o=i?hr:hr[t]||fr(hr,t,{})[t],u=o.prototype,l,c,p,d,h,m,g,y,T;for(d in e)l=vI(i?d:t+(r?".":"#")+d,s.forced),c=!l&&n&&fp(n,d),m=o[d],c&&(s.dontCallGetSet?(T=SI(n,d),g=T&&T.value):g=n[d]),h=c&&g?g:e[d],!(!l&&!a&&typeof m==typeof h)&&(s.bind&&c?y=yI(h,is):s.wrap&&c?y=TI(h):a&&gI(h)?y=bI(h):y=h,(s.sham||h&&h.sham||m&&m.sham)&&fr(y,"sham",!0),fr(o,d,y),a&&(p=t+"Prototype",fp(hr,p)||fr(hr,p,{}),fr(hr[p],d,h),s.real&&u&&(l||!u[d])&&fr(u,d,h)))}});var gp=b((m$,bp)=>{"use strict";var II=Math.ceil,xI=Math.floor;bp.exports=Math.trunc||function(e){var t=+e;return(t>0?xI:II)(t)}});var rs=b((b$,Sp)=>{"use strict";var EI=gp();Sp.exports=function(s){var e=+s;return e!==e||e===0?0:EI(e)}});var yp=b((g$,vp)=>{"use strict";var PI=rs(),kI=Math.max,wI=Math.min;vp.exports=function(s,e){var t=PI(s);return t<0?kI(t+e,0):wI(t,e)}});var fu=b((S$,Tp)=>{"use strict";var AI=rs(),RI=Math.min;Tp.exports=function(s){var e=AI(s);return e>0?RI(e,9007199254740991):0}});var mr=b((v$,Ip)=>{"use strict";var LI=fu();Ip.exports=function(s){return LI(s.length)}});var mu=b((y$,Ep)=>{"use strict";var MI=Ui(),$I=yp(),BI=mr(),xp=function(s){return function(e,t,i){var r=MI(e),a=BI(r);if(a===0)return!s&&-1;var n=$I(i,a),o;if(s&&t!==t){for(;a>n;)if(o=r[n++],o!==o)return!0}else for(;a>n;n++)if((s||n in r)&&r[n]===t)return s||n||0;return!s&&-1}};Ep.exports={includes:xp(!0),indexOf:xp(!1)}});var ss=b((T$,Pp)=>{"use strict";Pp.exports=function(){}});var kp=b(()=>{"use strict";var DI=_e(),CI=mu().includes,VI=We(),OI=ss(),_I=VI(function(){return!Array(1).includes()});DI({target:"Array",proto:!0,forced:_I},{includes:function(e){return CI(this,e,arguments.length>1?arguments[1]:void 0)}});OI("includes")});var ki=b((E$,wp)=>{"use strict";var FI=di();wp.exports=FI});var Rp=b((P$,Ap)=>{"use strict";kp();var NI=ki();Ap.exports=NI("Array","includes")});var Mp=b((k$,Lp)=>{"use strict";var UI=Rp();Lp.exports=UI});var wt=b((w$,$p)=>{"use strict";var qI=Mp();$p.exports=qI});var on=b((_$,Cp)=>{"use strict";var jI=iu(),zI=ru(),Dp=jI("keys");Cp.exports=function(s){return Dp[s]||(Dp[s]=zI(s))}});var Op=b((F$,Vp)=>{"use strict";var GI=We();Vp.exports=!GI(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var un=b((N$,Fp)=>{"use strict";var QI=Ut(),WI=Me(),YI=lr(),KI=on(),XI=Op(),_p=KI("IE_PROTO"),bu=Object,JI=bu.prototype;Fp.exports=XI?bu.getPrototypeOf:function(s){var e=YI(s);if(QI(e,_p))return e[_p];var t=e.constructor;return WI(t)&&e instanceof t?t.prototype:e instanceof bu?JI:null}});var ln=b((U$,Np)=>{"use strict";Np.exports={}});var Hp=b((q$,qp)=>{"use strict";var ZI=ze(),gu=Ut(),ex=Ui(),tx=mu().indexOf,ix=ln(),Up=ZI([].push);qp.exports=function(s,e){var t=ex(s),i=0,r=[],a;for(a in t)!gu(ix,a)&&gu(t,a)&&Up(r,a);for(;e.length>i;)gu(t,a=e[i++])&&(~tx(r,a)||Up(r,a));return r}});var Su=b((H$,jp)=>{"use strict";jp.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var vu=b((j$,zp)=>{"use strict";var rx=Hp(),sx=Su();zp.exports=Object.keys||function(e){return rx(e,sx)}});var yu=b((z$,Kp)=>{"use strict";var Qp=Et(),ax=We(),Wp=ze(),nx=un(),ox=vu(),ux=Ui(),lx=jo().f,Yp=Wp(lx),cx=Wp([].push),dx=Qp&&ax(function(){var s=Object.create(null);return s[2]=2,!Yp(s,2)}),Gp=function(s){return function(e){for(var t=ux(e),i=ox(t),r=dx&&nx(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!Qp||(r?u in t:Yp(t,u)))&&cx(o,s?[u,t[u]]:t[u]);return o}};Kp.exports={entries:Gp(!0),values:Gp(!1)}});var Xp=b(()=>{"use strict";var px=_e(),hx=yu().entries;px({target:"Object",stat:!0},{entries:function(e){return hx(e)}})});var Zp=b((W$,Jp)=>{"use strict";Xp();var fx=ur();Jp.exports=fx.Object.entries});var th=b((Y$,eh)=>{"use strict";var mx=Zp();eh.exports=mx});var ji=b((K$,ih)=>{"use strict";var bx=th();ih.exports=bx});var zi=b((X$,rh)=>{"use strict";rh.exports={}});var nh=b((J$,ah)=>{"use strict";var gx=Ce(),Sx=Me(),sh=gx.WeakMap;ah.exports=Sx(sh)&&/native code/.test(String(sh))});var Eu=b((Z$,lh)=>{"use strict";var vx=nh(),uh=Ce(),yx=kt(),Tx=pr(),Tu=Ut(),Iu=es(),Ix=on(),xx=ln(),oh="Object already initialized",xu=uh.TypeError,Ex=uh.WeakMap,cn,as,dn,Px=function(s){return dn(s)?as(s):cn(s,{})},kx=function(s){return function(e){var t;if(!yx(e)||(t=as(e)).type!==s)throw new xu("Incompatible receiver, "+s+" required");return t}};vx||Iu.state?(qt=Iu.state||(Iu.state=new Ex),qt.get=qt.get,qt.has=qt.has,qt.set=qt.set,cn=function(s,e){if(qt.has(s))throw new xu(oh);return e.facade=s,qt.set(s,e),e},as=function(s){return qt.get(s)||{}},dn=function(s){return qt.has(s)}):(Gi=Ix("state"),xx[Gi]=!0,cn=function(s,e){if(Tu(s,Gi))throw new xu(oh);return e.facade=s,Tx(s,Gi,e),e},as=function(s){return Tu(s,Gi)?s[Gi]:{}},dn=function(s){return Tu(s,Gi)});var qt,Gi;lh.exports={set:cn,get:as,has:dn,enforce:Px,getterFor:kx}});var wu=b((eB,dh)=>{"use strict";var Pu=Et(),wx=Ut(),ch=Function.prototype,Ax=Pu&&Object.getOwnPropertyDescriptor,ku=wx(ch,"name"),Rx=ku&&function(){}.name==="something",Lx=ku&&(!Pu||Pu&&Ax(ch,"name").configurable);dh.exports={EXISTS:ku,PROPER:Rx,CONFIGURABLE:Lx}});var hh=b(ph=>{"use strict";var Mx=Et(),$x=lu(),Bx=Hi(),Dx=Yt(),Cx=Ui(),Vx=vu();ph.f=Mx&&!$x?Object.defineProperties:function(e,t){Dx(e);for(var i=Cx(t),r=Vx(t),a=r.length,n=0,o;a>n;)Bx.f(e,o=r[n++],i[o]);return e}});var Au=b((iB,fh)=>{"use strict";var Ox=di();fh.exports=Ox("document","documentElement")});var $u=b((rB,Th)=>{"use strict";var _x=Yt(),Fx=hh(),mh=Su(),Nx=ln(),Ux=Au(),qx=sn(),Hx=on(),bh=">",gh="<",Lu="prototype",Mu="script",vh=Hx("IE_PROTO"),Ru=function(){},yh=function(s){return gh+Mu+bh+s+gh+"/"+Mu+bh},Sh=function(s){s.write(yh("")),s.close();var e=s.parentWindow.Object;return s=null,e},jx=function(){var s=qx("iframe"),e="java"+Mu+":",t;return s.style.display="none",Ux.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(yh("document.F=Object")),t.close(),t.F},pn,hn=function(){try{pn=new ActiveXObject("htmlfile")}catch{}hn=typeof document<"u"?document.domain&&pn?Sh(pn):jx():Sh(pn);for(var s=mh.length;s--;)delete hn[Lu][mh[s]];return hn()};Nx[vh]=!0;Th.exports=Object.create||function(e,t){var i;return e!==null?(Ru[Lu]=_x(e),i=new Ru,Ru[Lu]=null,i[vh]=e):i=hn(),t===void 0?i:Fx.f(i,t)}});var br=b((sB,Ih)=>{"use strict";var zx=pr();Ih.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:zx(s,e,t),s}});var Vu=b((aB,Ph)=>{"use strict";var Gx=We(),Qx=Me(),Wx=kt(),Yx=$u(),xh=un(),Kx=br(),Xx=Ye(),Jx=Nt(),Cu=Xx("iterator"),Eh=!1,pi,Bu,Du;[].keys&&(Du=[].keys(),"next"in Du?(Bu=xh(xh(Du)),Bu!==Object.prototype&&(pi=Bu)):Eh=!0);var Zx=!Wx(pi)||Gx(function(){var s={};return pi[Cu].call(s)!==s});Zx?pi={}:Jx&&(pi=Yx(pi));Qx(pi[Cu])||Kx(pi,Cu,function(){return this});Ph.exports={IteratorPrototype:pi,BUGGY_SAFARI_ITERATORS:Eh}});var fn=b((nB,wh)=>{"use strict";var eE=Ye(),tE=eE("toStringTag"),kh={};kh[tE]="z";wh.exports=String(kh)==="[object z]"});var ns=b((oB,Ah)=>{"use strict";var iE=fn(),rE=Me(),mn=Ni(),sE=Ye(),aE=sE("toStringTag"),nE=Object,oE=mn(function(){return arguments}())==="Arguments",uE=function(s,e){try{return s[e]}catch{}};Ah.exports=iE?mn:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=uE(e=nE(s),aE))=="string"?t:oE?mn(e):(i=mn(e))==="Object"&&rE(e.callee)?"Arguments":i}});var Lh=b((uB,Rh)=>{"use strict";var lE=fn(),cE=ns();Rh.exports=lE?{}.toString:function(){return"[object "+cE(this)+"]"}});var os=b((lB,$h)=>{"use strict";var dE=fn(),pE=Hi().f,hE=pr(),fE=Ut(),mE=Lh(),bE=Ye(),Mh=bE("toStringTag");$h.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(fE(r,Mh)||pE(r,Mh,{configurable:!0,value:e}),i&&!dE&&hE(r,"toString",mE))}});var Dh=b((cB,Bh)=>{"use strict";var gE=Vu().IteratorPrototype,SE=$u(),vE=Kr(),yE=os(),TE=zi(),IE=function(){return this};Bh.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=SE(gE,{next:vE(+!i,t)}),yE(s,r,!1,!0),TE[r]=IE,s}});var Vh=b((dB,Ch)=>{"use strict";var xE=ze(),EE=Wt();Ch.exports=function(s,e,t){try{return xE(EE(Object.getOwnPropertyDescriptor(s,e)[t]))}catch{}}});var _h=b((pB,Oh)=>{"use strict";var PE=kt();Oh.exports=function(s){return PE(s)||s===null}});var Nh=b((hB,Fh)=>{"use strict";var kE=_h(),wE=String,AE=TypeError;Fh.exports=function(s){if(kE(s))return s;throw new AE("Can't set "+wE(s)+" as a prototype")}});var Ou=b((fB,Uh)=>{"use strict";var RE=Vh(),LE=kt(),ME=Pi(),$E=Nh();Uh.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=RE(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch{}return function(r,a){return ME(r),$E(a),LE(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var Jh=b((mB,Xh)=>{"use strict";var BE=_e(),DE=Pt(),bn=Nt(),Yh=wu(),CE=Me(),VE=Dh(),qh=un(),Hh=Ou(),OE=os(),_E=pr(),_u=br(),FE=Ye(),jh=zi(),Kh=Vu(),NE=Yh.PROPER,UE=Yh.CONFIGURABLE,zh=Kh.IteratorPrototype,gn=Kh.BUGGY_SAFARI_ITERATORS,us=FE("iterator"),Gh="keys",ls="values",Qh="entries",Wh=function(){return this};Xh.exports=function(s,e,t,i,r,a,n){VE(t,e,i);var o=function(T){if(T===r&&d)return d;if(!gn&&T&&T in c)return c[T];switch(T){case Gh:return function(){return new t(this,T)};case ls:return function(){return new t(this,T)};case Qh:return function(){return new t(this,T)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,c=s.prototype,p=c[us]||c["@@iterator"]||r&&c[r],d=!gn&&p||o(r),h=e==="Array"&&c.entries||p,m,g,y;if(h&&(m=qh(h.call(new s)),m!==Object.prototype&&m.next&&(!bn&&qh(m)!==zh&&(Hh?Hh(m,zh):CE(m[us])||_u(m,us,Wh)),OE(m,u,!0,!0),bn&&(jh[u]=Wh))),NE&&r===ls&&p&&p.name!==ls&&(!bn&&UE?_E(c,"name",ls):(l=!0,d=function(){return DE(p,this)})),r)if(g={values:o(ls),keys:a?d:o(Gh),entries:o(Qh)},n)for(y in g)(gn||l||!(y in c))&&_u(c,y,g[y]);else BE({target:e,proto:!0,forced:gn||l},g);return(!bn||n)&&c[us]!==d&&_u(c,us,d,{name:r}),jh[e]=d,g}});var ef=b((bB,Zh)=>{"use strict";Zh.exports=function(s,e){return{value:s,done:e}}});var Nu=b((gB,nf)=>{"use strict";var qE=Ui(),Fu=ss(),tf=zi(),sf=Eu(),HE=Hi().f,jE=Jh(),Sn=ef(),zE=Nt(),GE=Et(),af="Array Iterator",QE=sf.set,WE=sf.getterFor(af);nf.exports=jE(Array,"Array",function(s,e){QE(this,{type:af,target:qE(s),index:0,kind:e})},function(){var s=WE(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=void 0,Sn(void 0,!0);switch(s.kind){case"keys":return Sn(t,!1);case"values":return Sn(e[t],!1)}return Sn([t,e[t]],!1)},"values");var rf=tf.Arguments=tf.Array;Fu("keys");Fu("values");Fu("entries");if(!zE&&GE&&rf.name!=="values")try{HE(rf,"name",{value:"values"})}catch{}});var uf=b((SB,of)=>{"use strict";var YE=Ye(),KE=zi(),XE=YE("iterator"),JE=Array.prototype;of.exports=function(s){return s!==void 0&&(KE.Array===s||JE[XE]===s)}});var Uu=b((vB,cf)=>{"use strict";var ZE=ns(),lf=Zr(),eP=or(),tP=zi(),iP=Ye(),rP=iP("iterator");cf.exports=function(s){if(!eP(s))return lf(s,rP)||lf(s,"@@iterator")||tP[ZE(s)]}});var pf=b((yB,df)=>{"use strict";var sP=Pt(),aP=Wt(),nP=Yt(),oP=Jr(),uP=Uu(),lP=TypeError;df.exports=function(s,e){var t=arguments.length<2?uP(s):e;if(aP(t))return nP(sP(t,s));throw new lP(oP(s)+" is not iterable")}});var mf=b((TB,ff)=>{"use strict";var cP=Pt(),hf=Yt(),dP=Zr();ff.exports=function(s,e,t){var i,r;hf(s);try{if(i=dP(s,"return"),!i){if(e==="throw")throw t;return t}i=cP(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return hf(i),t}});var yn=b((IB,vf)=>{"use strict";var pP=dr(),hP=Pt(),fP=Yt(),mP=Jr(),bP=uf(),gP=mr(),bf=Xr(),SP=pf(),vP=Uu(),gf=mf(),yP=TypeError,vn=function(s,e){this.stopped=s,this.result=e},Sf=vn.prototype;vf.exports=function(s,e,t){var i=t&&t.that,r=!!(t&&t.AS_ENTRIES),a=!!(t&&t.IS_RECORD),n=!!(t&&t.IS_ITERATOR),o=!!(t&&t.INTERRUPTED),u=pP(e,i),l,c,p,d,h,m,g,y=function(w){return l&&gf(l,"normal",w),new vn(!0,w)},T=function(w){return r?(fP(w),o?u(w[0],w[1],y):u(w[0],w[1])):o?u(w,y):u(w)};if(a)l=s.iterator;else if(n)l=s;else{if(c=vP(s),!c)throw new yP(mP(s)+" is not iterable");if(bP(c)){for(p=0,d=gP(s);d>p;p++)if(h=T(s[p]),h&&bf(Sf,h))return h;return new vn(!1)}l=SP(s,c)}for(m=a?s.next:l.next;!(g=hP(m,l)).done;){try{h=T(g.value)}catch(w){gf(l,"throw",w)}if(typeof h=="object"&&h&&bf(Sf,h))return h}return new vn(!1)}});var Tf=b((xB,yf)=>{"use strict";var TP=Et(),IP=Hi(),xP=Kr();yf.exports=function(s,e,t){TP?IP.f(s,e,xP(0,t)):s[e]=t}});var If=b(()=>{"use strict";var EP=_e(),PP=yn(),kP=Tf();EP({target:"Object",stat:!0},{fromEntries:function(e){var t={};return PP(e,function(i,r){kP(t,i,r)},{AS_ENTRIES:!0}),t}})});var Ef=b((kB,xf)=>{"use strict";Nu();If();var wP=ur();xf.exports=wP.Object.fromEntries});var kf=b((wB,Pf)=>{"use strict";Pf.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}});var Af=b(()=>{"use strict";Nu();var AP=kf(),RP=Ce(),LP=os(),wf=zi();for(Tn in AP)LP(RP[Tn],Tn),wf[Tn]=wf.Array;var Tn});var Lf=b((LB,Rf)=>{"use strict";var MP=Ef();Af();Rf.exports=MP});var qu=b((MB,Mf)=>{"use strict";var $P=Lf();Mf.exports=$P});var $f=b(()=>{"use strict"});var Hu=b((DB,Bf)=>{"use strict";var cs=Ce(),BP=qi(),DP=Ni(),In=function(s){return BP.slice(0,s.length)===s};Bf.exports=function(){return In("Bun/")?"BUN":In("Cloudflare-Workers")?"CLOUDFLARE":In("Deno/")?"DENO":In("Node.js/")?"NODE":cs.Bun&&typeof Bun.version=="string"?"BUN":cs.Deno&&typeof Deno.version=="object"?"DENO":DP(cs.process)==="process"?"NODE":cs.window&&cs.document?"BROWSER":"REST"}()});var xn=b((CB,Df)=>{"use strict";var CP=Hu();Df.exports=CP==="NODE"});var Vf=b((VB,Cf)=>{"use strict";var VP=Hi();Cf.exports=function(s,e,t){return VP.f(s,e,t)}});var Ff=b((OB,_f)=>{"use strict";var OP=di(),_P=Vf(),FP=Ye(),NP=Et(),Of=FP("species");_f.exports=function(s){var e=OP(s);NP&&e&&!e[Of]&&_P(e,Of,{configurable:!0,get:function(){return this}})}});var Uf=b((_B,Nf)=>{"use strict";var UP=Xr(),qP=TypeError;Nf.exports=function(s,e){if(UP(e,s))return s;throw new qP("Incorrect invocation")}});var zu=b((FB,qf)=>{"use strict";var HP=ze(),jP=Me(),ju=es(),zP=HP(Function.toString);jP(ju.inspectSource)||(ju.inspectSource=function(s){return zP(s)});qf.exports=ju.inspectSource});var Qu=b((NB,Qf)=>{"use strict";var GP=ze(),QP=We(),Hf=Me(),WP=ns(),YP=di(),KP=zu(),jf=function(){},zf=YP("Reflect","construct"),Gu=/^\s*(?:class|function)\b/,XP=GP(Gu.exec),JP=!Gu.test(jf),ds=function(e){if(!Hf(e))return!1;try{return zf(jf,[],e),!0}catch{return!1}},Gf=function(e){if(!Hf(e))return!1;switch(WP(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return JP||!!XP(Gu,KP(e))}catch{return!0}};Gf.sham=!0;Qf.exports=!zf||QP(function(){var s;return ds(ds.call)||!ds(Object)||!ds(function(){s=!0})||s})?Gf:ds});var Yf=b((UB,Wf)=>{"use strict";var ZP=Qu(),ek=Jr(),tk=TypeError;Wf.exports=function(s){if(ZP(s))return s;throw new tk(ek(s)+" is not a constructor")}});var Wu=b((qB,Xf)=>{"use strict";var Kf=Yt(),ik=Yf(),rk=or(),sk=Ye(),ak=sk("species");Xf.exports=function(s,e){var t=Kf(s).constructor,i;return t===void 0||rk(i=Kf(t)[ak])?e:ik(i)}});var Zf=b((HB,Jf)=>{"use strict";var nk=ze();Jf.exports=nk([].slice)});var tm=b((jB,em)=>{"use strict";var ok=TypeError;em.exports=function(s,e){if(s<e)throw new ok("Not enough arguments");return s}});var Yu=b((zB,im)=>{"use strict";var uk=qi();im.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(uk)});var sl=b((GB,dm)=>{"use strict";var At=Ce(),lk=No(),ck=dr(),rm=Me(),dk=Ut(),cm=We(),sm=Au(),pk=Zf(),am=sn(),hk=tm(),fk=Yu(),mk=xn(),tl=At.setImmediate,il=At.clearImmediate,bk=At.process,Ku=At.Dispatch,gk=At.Function,nm=At.MessageChannel,Sk=At.String,Xu=0,ps={},om="onreadystatechange",hs,Qi,Ju,Zu;cm(function(){hs=At.location});var rl=function(s){if(dk(ps,s)){var e=ps[s];delete ps[s],e()}},el=function(s){return function(){rl(s)}},um=function(s){rl(s.data)},lm=function(s){At.postMessage(Sk(s),hs.protocol+"//"+hs.host)};(!tl||!il)&&(tl=function(e){hk(arguments.length,1);var t=rm(e)?e:gk(e),i=pk(arguments,1);return ps[++Xu]=function(){lk(t,void 0,i)},Qi(Xu),Xu},il=function(e){delete ps[e]},mk?Qi=function(s){bk.nextTick(el(s))}:Ku&&Ku.now?Qi=function(s){Ku.now(el(s))}:nm&&!fk?(Ju=new nm,Zu=Ju.port2,Ju.port1.onmessage=um,Qi=ck(Zu.postMessage,Zu)):At.addEventListener&&rm(At.postMessage)&&!At.importScripts&&hs&&hs.protocol!=="file:"&&!cm(lm)?(Qi=lm,At.addEventListener("message",um,!1)):om in am("script")?Qi=function(s){sm.appendChild(am("script"))[om]=function(){sm.removeChild(this),rl(s)}}:Qi=function(s){setTimeout(el(s),0)});dm.exports={set:tl,clear:il}});var fm=b((QB,hm)=>{"use strict";var pm=Ce(),vk=Et(),yk=Object.getOwnPropertyDescriptor;hm.exports=function(s){if(!vk)return pm[s];var e=yk(pm,s);return e&&e.value}});var al=b((WB,bm)=>{"use strict";var mm=function(){this.head=null,this.tail=null};mm.prototype={add:function(s){var e={item:s,next:null},t=this.tail;t?t.next=e:this.head=e,this.tail=e},get:function(){var s=this.head;if(s){var e=this.head=s.next;return e===null&&(this.tail=null),s.item}}};bm.exports=mm});var Sm=b((YB,gm)=>{"use strict";var Tk=qi();gm.exports=/ipad|iphone|ipod/i.test(Tk)&&typeof Pebble<"u"});var ym=b((KB,vm)=>{"use strict";var Ik=qi();vm.exports=/web0s(?!.*chrome)/i.test(Ik)});var wm=b((XB,km)=>{"use strict";var Sr=Ce(),xk=fm(),Tm=dr(),nl=sl().set,Ek=al(),Pk=Yu(),kk=Sm(),wk=ym(),ol=xn(),Im=Sr.MutationObserver||Sr.WebKitMutationObserver,xm=Sr.document,Em=Sr.process,En=Sr.Promise,cl=xk("queueMicrotask"),gr,ul,ll,Pn,Pm;cl||(fs=new Ek,ms=function(){var s,e;for(ol&&(s=Em.domain)&&s.exit();e=fs.get();)try{e()}catch(t){throw fs.head&&gr(),t}s&&s.enter()},!Pk&&!ol&&!wk&&Im&&xm?(ul=!0,ll=xm.createTextNode(""),new Im(ms).observe(ll,{characterData:!0}),gr=function(){ll.data=ul=!ul}):!kk&&En&&En.resolve?(Pn=En.resolve(void 0),Pn.constructor=En,Pm=Tm(Pn.then,Pn),gr=function(){Pm(ms)}):ol?gr=function(){Em.nextTick(ms)}:(nl=Tm(nl,Sr),gr=function(){nl(ms)}),cl=function(s){fs.head||gr(),fs.add(s)});var fs,ms;km.exports=cl});var Rm=b((JB,Am)=>{"use strict";Am.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch{}}});var kn=b((ZB,Lm)=>{"use strict";Lm.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var Wi=b((eD,Mm)=>{"use strict";var Ak=Ce();Mm.exports=Ak.Promise});var vr=b((tD,Cm)=>{"use strict";var Rk=Ce(),bs=Wi(),Lk=Me(),Mk=uu(),$k=zu(),Bk=Ye(),$m=Hu(),Dk=Nt(),dl=Yo(),Bm=bs&&bs.prototype,Ck=Bk("species"),pl=!1,Dm=Lk(Rk.PromiseRejectionEvent),Vk=Mk("Promise",function(){var s=$k(bs),e=s!==String(bs);if(!e&&dl===66||Dk&&!(Bm.catch&&Bm.finally))return!0;if(!dl||dl<51||!/native code/.test(s)){var t=new bs(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[Ck]=i,pl=t.then(function(){})instanceof i,!pl)return!0}return!e&&($m==="BROWSER"||$m==="DENO")&&!Dm});Cm.exports={CONSTRUCTOR:Vk,REJECTION_EVENT:Dm,SUBCLASSING:pl}});var yr=b((iD,Om)=>{"use strict";var Vm=Wt(),Ok=TypeError,_k=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new Ok("Bad Promise constructor");e=i,t=r}),this.resolve=Vm(e),this.reject=Vm(t)};Om.exports.f=function(s){return new _k(s)}});var ib=b(()=>{"use strict";var Fk=_e(),Nk=Nt(),Ln=xn(),wi=Ce(),Er=Pt(),_m=br(),Fm=Ou(),Uk=os(),qk=Ff(),Hk=Wt(),Rn=Me(),jk=kt(),zk=Uf(),Gk=Wu(),jm=sl().set,gl=wm(),Qk=Rm(),Wk=kn(),Yk=al(),zm=Eu(),Mn=Wi(),Sl=vr(),Gm=yr(),$n="Promise",Qm=Sl.CONSTRUCTOR,Kk=Sl.REJECTION_EVENT,Xk=Sl.SUBCLASSING,hl=zm.getterFor($n),Jk=zm.set,Tr=Mn&&Mn.prototype,Yi=Mn,wn=Tr,Wm=wi.TypeError,fl=wi.document,vl=wi.process,ml=Gm.f,Zk=ml,ew=!!(fl&&fl.createEvent&&wi.dispatchEvent),Ym="unhandledrejection",tw="rejectionhandled",Nm=0,Km=1,iw=2,yl=1,Xm=2,An,Um,rw,qm,Jm=function(s){var e;return jk(s)&&Rn(e=s.then)?e:!1},Zm=function(s,e){var t=e.value,i=e.state===Km,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,l,c;try{r?(i||(e.rejection===Xm&&aw(e),e.rejection=yl),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),c=!0)),u===s.promise?n(new Wm("Promise-chain cycle")):(l=Jm(u))?Er(l,u,a,n):a(u)):n(t)}catch(p){o&&!c&&o.exit(),n(p)}},eb=function(s,e){s.notified||(s.notified=!0,gl(function(){for(var t=s.reactions,i;i=t.get();)Zm(i,s);s.notified=!1,e&&!s.rejection&&sw(s)}))},tb=function(s,e,t){var i,r;ew?(i=fl.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),wi.dispatchEvent(i)):i={promise:e,reason:t},!Kk&&(r=wi["on"+s])?r(i):s===Ym&&Qk("Unhandled promise rejection",t)},sw=function(s){Er(jm,wi,function(){var e=s.facade,t=s.value,i=Hm(s),r;if(i&&(r=Wk(function(){Ln?vl.emit("unhandledRejection",t,e):tb(Ym,e,t)}),s.rejection=Ln||Hm(s)?Xm:yl,r.error))throw r.value})},Hm=function(s){return s.rejection!==yl&&!s.parent},aw=function(s){Er(jm,wi,function(){var e=s.facade;Ln?vl.emit("rejectionHandled",e):tb(tw,e,s.value)})},Ir=function(s,e,t){return function(i){s(e,i,t)}},xr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=iw,eb(s,!0))},bl=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new Wm("Promise can't be resolved itself");var i=Jm(e);i?gl(function(){var r={done:!1};try{Er(i,e,Ir(bl,r,s),Ir(xr,r,s))}catch(a){xr(r,a,s)}}):(s.value=e,s.state=Km,eb(s,!1))}catch(r){xr({done:!1},r,s)}}};if(Qm&&(Yi=function(e){zk(this,wn),Hk(e),Er(An,this);var t=hl(this);try{e(Ir(bl,t),Ir(xr,t))}catch(i){xr(t,i)}},wn=Yi.prototype,An=function(e){Jk(this,{type:$n,done:!1,notified:!1,parent:!1,reactions:new Yk,rejection:!1,state:Nm,value:void 0})},An.prototype=_m(wn,"then",function(e,t){var i=hl(this),r=ml(Gk(this,Yi));return i.parent=!0,r.ok=Rn(e)?e:!0,r.fail=Rn(t)&&t,r.domain=Ln?vl.domain:void 0,i.state===Nm?i.reactions.add(r):gl(function(){Zm(r,i)}),r.promise}),Um=function(){var s=new An,e=hl(s);this.promise=s,this.resolve=Ir(bl,e),this.reject=Ir(xr,e)},Gm.f=ml=function(s){return s===Yi||s===rw?new Um(s):Zk(s)},!Nk&&Rn(Mn)&&Tr!==Object.prototype)){qm=Tr.then,Xk||_m(Tr,"then",function(e,t){var i=this;return new Yi(function(r,a){Er(qm,i,r,a)}).then(e,t)},{unsafe:!0});try{delete Tr.constructor}catch{}Fm&&Fm(Tr,wn)}Fk({global:!0,constructor:!0,wrap:!0,forced:Qm},{Promise:Yi});Uk(Yi,$n,!1,!0);qk($n)});var ob=b((aD,nb)=>{"use strict";var nw=Ye(),sb=nw("iterator"),ab=!1;try{rb=0,Tl={next:function(){return{done:!!rb++}},return:function(){ab=!0}},Tl[sb]=function(){return this},Array.from(Tl,function(){throw 2})}catch{}var rb,Tl;nb.exports=function(s,e){try{if(!e&&!ab)return!1}catch{return!1}var t=!1;try{var i={};i[sb]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch{}return t}});var Il=b((nD,ub)=>{"use strict";var ow=Wi(),uw=ob(),lw=vr().CONSTRUCTOR;ub.exports=lw||!uw(function(s){ow.all(s).then(void 0,function(){})})});var lb=b(()=>{"use strict";var cw=_e(),dw=Pt(),pw=Wt(),hw=yr(),fw=kn(),mw=yn(),bw=Il();cw({target:"Promise",stat:!0,forced:bw},{all:function(e){var t=this,i=hw.f(t),r=i.resolve,a=i.reject,n=fw(function(){var o=pw(t.resolve),u=[],l=0,c=1;mw(e,function(p){var d=l++,h=!1;c++,dw(o,t,p).then(function(m){h||(h=!0,u[d]=m,--c||r(u))},a)}),--c||r(u)});return n.error&&a(n.value),i.promise}})});var db=b(()=>{"use strict";var gw=_e(),Sw=Nt(),vw=vr().CONSTRUCTOR,El=Wi(),yw=di(),Tw=Me(),Iw=br(),cb=El&&El.prototype;gw({target:"Promise",proto:!0,forced:vw,real:!0},{catch:function(s){return this.then(void 0,s)}});!Sw&&Tw(El)&&(xl=yw("Promise").prototype.catch,cb.catch!==xl&&Iw(cb,"catch",xl,{unsafe:!0}));var xl});var pb=b(()=>{"use strict";var xw=_e(),Ew=Pt(),Pw=Wt(),kw=yr(),ww=kn(),Aw=yn(),Rw=Il();xw({target:"Promise",stat:!0,forced:Rw},{race:function(e){var t=this,i=kw.f(t),r=i.reject,a=ww(function(){var n=Pw(t.resolve);Aw(e,function(o){Ew(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var hb=b(()=>{"use strict";var Lw=_e(),Mw=yr(),$w=vr().CONSTRUCTOR;Lw({target:"Promise",stat:!0,forced:$w},{reject:function(e){var t=Mw.f(this),i=t.reject;return i(e),t.promise}})});var Pl=b((mD,fb)=>{"use strict";var Bw=Yt(),Dw=kt(),Cw=yr();fb.exports=function(s,e){if(Bw(s),Dw(e)&&e.constructor===s)return e;var t=Cw.f(s),i=t.resolve;return i(e),t.promise}});var gb=b(()=>{"use strict";var Vw=_e(),Ow=di(),mb=Nt(),_w=Wi(),bb=vr().CONSTRUCTOR,Fw=Pl(),Nw=Ow("Promise"),Uw=mb&&!bb;Vw({target:"Promise",stat:!0,forced:mb||bb},{resolve:function(e){return Fw(Uw&&this===Nw?_w:this,e)}})});var Sb=b(()=>{"use strict";ib();lb();db();pb();hb();gb()});var Ib=b(()=>{"use strict";var qw=_e(),Hw=Nt(),Bn=Wi(),jw=We(),yb=di(),Tb=Me(),zw=Wu(),vb=Pl(),Gw=br(),wl=Bn&&Bn.prototype,Qw=!!Bn&&jw(function(){wl.finally.call({then:function(){}},function(){})});qw({target:"Promise",proto:!0,real:!0,forced:Qw},{finally:function(s){var e=zw(this,yb("Promise")),t=Tb(s);return this.then(t?function(i){return vb(e,s()).then(function(){return i})}:s,t?function(i){return vb(e,s()).then(function(){throw i})}:s)}});!Hw&&Tb(Bn)&&(kl=yb("Promise").prototype.finally,wl.finally!==kl&&Gw(wl,"finally",kl,{unsafe:!0}));var kl});var Eb=b((ID,xb)=>{"use strict";$f();Sb();Ib();var Ww=ki();xb.exports=Ww("Promise","finally")});var kb=b((xD,Pb)=>{"use strict";var Yw=Eb();Pb.exports=Yw});var gs=b((ED,wb)=>{"use strict";var Kw=kb();wb.exports=Kw});var Db=b(()=>{"use strict";var tA=_e(),iA=yu().values;tA({target:"Object",stat:!0},{values:function(e){return iA(e)}})});var Vb=b((t0,Cb)=>{"use strict";Db();var rA=ur();Cb.exports=rA.Object.values});var _b=b((i0,Ob)=>{"use strict";var sA=Vb();Ob.exports=sA});var Ki=b((r0,Fb)=>{"use strict";var aA=_b();Fb.exports=aA});var Kb=b(()=>{"use strict";var mA=_e(),bA=lr(),gA=mr(),SA=rs(),vA=ss();mA({target:"Array",proto:!0},{at:function(e){var t=bA(this),i=gA(t),r=SA(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});vA("at")});var Jb=b((oC,Xb)=>{"use strict";Kb();var yA=ki();Xb.exports=yA("Array","at")});var eg=b((uC,Zb)=>{"use strict";var TA=Jb();Zb.exports=TA});var Ht=b((lC,tg)=>{"use strict";var IA=eg();tg.exports=IA});var Gl=b((OV,xg)=>{"use strict";var $A=Ni();xg.exports=Array.isArray||function(e){return $A(e)==="Array"}});var Pg=b((_V,Eg)=>{"use strict";var BA=TypeError,DA=9007199254740991;Eg.exports=function(s){if(s>DA)throw BA("Maximum allowed index exceeded");return s}});var Ag=b((FV,wg)=>{"use strict";var CA=Gl(),VA=mr(),OA=Pg(),_A=dr(),kg=function(s,e,t,i,r,a,n,o){for(var u=r,l=0,c=n?_A(n,o):!1,p,d;l<i;)l in t&&(p=c?c(t[l],l,e):t[l],a>0&&CA(p)?(d=VA(p),u=kg(s,e,p,d,u,a-1)-1):(OA(u+1),s[u]=p),u++),l++;return u};wg.exports=kg});var $g=b((NV,Mg)=>{"use strict";var Rg=Gl(),FA=Qu(),NA=kt(),UA=Ye(),qA=UA("species"),Lg=Array;Mg.exports=function(s){var e;return Rg(s)&&(e=s.constructor,FA(e)&&(e===Lg||Rg(e.prototype))?e=void 0:NA(e)&&(e=e[qA],e===null&&(e=void 0))),e===void 0?Lg:e}});var Dg=b((UV,Bg)=>{"use strict";var HA=$g();Bg.exports=function(s,e){return new(HA(s))(e===0?0:e)}});var Cg=b(()=>{"use strict";var jA=_e(),zA=Ag(),GA=Wt(),QA=lr(),WA=mr(),YA=Dg();jA({target:"Array",proto:!0},{flatMap:function(e){var t=QA(this),i=WA(t),r;return GA(e),r=YA(t,0),r.length=zA(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var Vg=b(()=>{"use strict";var KA=ss();KA("flatMap")});var _g=b((GV,Og)=>{"use strict";Cg();Vg();var XA=ki();Og.exports=XA("Array","flatMap")});var Ng=b((QV,Fg)=>{"use strict";var JA=_g();Fg.exports=JA});var Rs=b((WV,Ug)=>{"use strict";var ZA=Ng();Ug.exports=ZA});var Ls=b((YV,qg)=>{"use strict";var eR=ns(),tR=String;qg.exports=function(s){if(eR(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return tR(s)}});var Ql=b((KV,Hg)=>{"use strict";Hg.exports=`
7
+ \v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`});var Gg=b((XV,zg)=>{"use strict";var iR=ze(),rR=Pi(),sR=Ls(),Yl=Ql(),jg=iR("".replace),aR=RegExp("^["+Yl+"]+"),nR=RegExp("(^|[^"+Yl+"])["+Yl+"]+$"),Wl=function(s){return function(e){var t=sR(rR(e));return s&1&&(t=jg(t,aR,"")),s&2&&(t=jg(t,nR,"$1")),t}};zg.exports={start:Wl(1),end:Wl(2),trim:Wl(3)}});var Kg=b((JV,Yg)=>{"use strict";var oR=wu().PROPER,uR=We(),Qg=Ql(),Wg="\u200B\x85\u180E";Yg.exports=function(s){return uR(function(){return!!Qg[s]()||Wg[s]()!==Wg||oR&&Qg[s].name!==s})}});var Kl=b((ZV,Xg)=>{"use strict";var lR=Gg().start,cR=Kg();Xg.exports=cR("trimStart")?function(){return lR(this)}:"".trimStart});var Zg=b(()=>{"use strict";var dR=_e(),Jg=Kl();dR({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==Jg},{trimLeft:Jg})});var tS=b(()=>{"use strict";Zg();var pR=_e(),eS=Kl();pR({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==eS},{trimStart:eS})});var rS=b((sO,iS)=>{"use strict";tS();var hR=ki();iS.exports=hR("String","trimLeft")});var aS=b((aO,sS)=>{"use strict";var fR=rS();sS.exports=fR});var oS=b((nO,nS)=>{"use strict";var mR=aS();nS.exports=mR});var yS=b(()=>{"use strict"});var TS=b(()=>{"use strict"});var xS=b((VF,IS)=>{"use strict";var CR=kt(),VR=Ni(),OR=Ye(),_R=OR("match");IS.exports=function(s){var e;return CR(s)&&((e=s[_R])!==void 0?!!e:VR(s)==="RegExp")}});var PS=b((OF,ES)=>{"use strict";var FR=Yt();ES.exports=function(){var s=FR(this),e="";return s.hasIndices&&(e+="d"),s.global&&(e+="g"),s.ignoreCase&&(e+="i"),s.multiline&&(e+="m"),s.dotAll&&(e+="s"),s.unicode&&(e+="u"),s.unicodeSets&&(e+="v"),s.sticky&&(e+="y"),e}});var AS=b((_F,wS)=>{"use strict";var NR=Pt(),UR=Ut(),qR=Xr(),HR=PS(),kS=RegExp.prototype;wS.exports=function(s){var e=s.flags;return e===void 0&&!("flags"in kS)&&!UR(s,"flags")&&qR(kS,s)?NR(HR,s):e}});var LS=b((FF,RS)=>{"use strict";var tc=ze(),jR=lr(),zR=Math.floor,Zl=tc("".charAt),GR=tc("".replace),ec=tc("".slice),QR=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,WR=/\$([$&'`]|\d{1,2})/g;RS.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=WR;return r!==void 0&&(r=jR(r),u=QR),GR(a,u,function(l,c){var p;switch(Zl(c,0)){case"$":return"$";case"&":return s;case"`":return ec(e,0,t);case"'":return ec(e,n);case"<":p=r[ec(c,1,-1)];break;default:var d=+c;if(d===0)return l;if(d>o){var h=zR(d/10);return h===0?l:h<=o?i[h-1]===void 0?Zl(c,1):i[h-1]+Zl(c,1):l}p=i[d-1]}return p===void 0?"":p})}});var BS=b(()=>{"use strict";var YR=_e(),KR=Pt(),rc=ze(),MS=Pi(),XR=Me(),JR=or(),ZR=xS(),Vr=Ls(),eL=Zr(),tL=AS(),iL=LS(),rL=Ye(),sL=Nt(),aL=rL("replace"),nL=TypeError,ic=rc("".indexOf),oL=rc("".replace),$S=rc("".slice),uL=Math.max;YR({target:"String",proto:!0},{replaceAll:function(e,t){var i=MS(this),r,a,n,o,u,l,c,p,d,h,m=0,g="";if(!JR(e)){if(r=ZR(e),r&&(a=Vr(MS(tL(e))),!~ic(a,"g")))throw new nL("`.replaceAll` does not allow non-global regexes");if(n=eL(e,aL),n)return KR(n,e,i,t);if(sL&&r)return oL(Vr(i),e,t)}for(o=Vr(i),u=Vr(e),l=XR(t),l||(t=Vr(t)),c=u.length,p=uL(1,c),d=ic(o,u);d!==-1;)h=l?Vr(t(u,d,o)):iL(u,o,d,[],void 0,t),g+=$S(o,m,d)+h,m=d+c,d=d+p>o.length?-1:ic(o,u,d+p);return m<o.length&&(g+=$S(o,m)),g}})});var CS=b((qF,DS)=>{"use strict";yS();TS();BS();var lL=ki();DS.exports=lL("String","replaceAll")});var OS=b((HF,VS)=>{"use strict";var cL=CS();VS.exports=cL});var sc=b((jF,_S)=>{"use strict";var dL=OS();_S.exports=dL});var NS=b((zF,FS)=>{"use strict";var pL=rs(),hL=Ls(),fL=Pi(),mL=RangeError;FS.exports=function(e){var t=hL(fL(this)),i="",r=pL(e);if(r<0||r===1/0)throw new mL("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var zS=b((GF,jS)=>{"use strict";var HS=ze(),bL=fu(),US=Ls(),gL=NS(),SL=Pi(),vL=HS(gL),yL=HS("".slice),TL=Math.ceil,qS=function(s){return function(e,t,i){var r=US(SL(e)),a=bL(t),n=r.length,o=i===void 0?" ":US(i),u,l;return a<=n||o===""?r:(u=a-n,l=vL(o,TL(u/o.length)),l.length>u&&(l=yL(l,0,u)),s?r+l:l+r)}};jS.exports={start:qS(!1),end:qS(!0)}});var QS=b((QF,GS)=>{"use strict";var IL=qi();GS.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(IL)});var WS=b(()=>{"use strict";var xL=_e(),EL=zS().start,PL=QS();xL({target:"String",proto:!0,forced:PL},{padStart:function(e){return EL(this,e,arguments.length>1?arguments[1]:void 0)}})});var KS=b((KF,YS)=>{"use strict";WS();var kL=ki();YS.exports=kL("String","padStart")});var JS=b((XF,XS)=>{"use strict";var wL=KS();XS.exports=wL});var ac=b((JF,ZS)=>{"use strict";var AL=JS();ZS.exports=AL});var gM={};yy(gM,{ChromecastState:()=>Gr,HttpConnectionType:()=>Za,Observable:()=>ii.Observable,PlaybackState:()=>nt,Player:()=>Xa,PredefinedQualityLimits:()=>Qr,SDK_VERSION:()=>bM,Subject:()=>ii.Subject,Subscription:()=>ii.Subscription,Surface:()=>en,VERSION:()=>_o,ValueSubject:()=>ii.ValueSubject,VideoFormat:()=>Qt,VideoQuality:()=>ii.VideoQuality,clientChecker:()=>W,isMobile:()=>Pr});module.exports=Ty(gM);var _o="2.0.131-dev.f8833e36.0";var nt=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(nt||{}),Qt=(x=>(x.MPEG="MPEG",x.DASH="DASH",x.DASH_SEP="DASH_SEP",x.DASH_SEP_VK="DASH_SEP",x.DASH_WEBM="DASH_WEBM",x.DASH_WEBM_AV1="DASH_WEBM_AV1",x.DASH_STREAMS="DASH_STREAMS",x.DASH_WEBM_VK="DASH_WEBM",x.DASH_ONDEMAND="DASH_ONDEMAND",x.DASH_ONDEMAND_VK="DASH_ONDEMAND",x.DASH_LIVE="DASH_LIVE",x.DASH_LIVE_CMAF="DASH_LIVE_CMAF",x.DASH_LIVE_WEBM="DASH_LIVE_WEBM",x.HLS="HLS",x.HLS_ONDEMAND="HLS_ONDEMAND",x.HLS_JS="HLS",x.HLS_LIVE="HLS_LIVE",x.HLS_LIVE_CMAF="HLS_LIVE_CMAF",x.WEB_RTC_LIVE="WEB_RTC_LIVE",x))(Qt||{});var Gr=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(Gr||{}),Za=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(Za||{});var en=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(en||{}),Qr=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Qr||{});var fy=q(wt(),1);var te=require("@vkontakte/videoplayer-shared/es2024");var Bp=s=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",s),i.onload=()=>e(),i.onerror=r=>t(r),document.body.appendChild(i)});var nn=class{constructor(e){this.connection$=new te.ValueSubject(void 0);this.castState$=new te.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new te.Subject;this.realCastState$=new te.ValueSubject("NOT_AVAILABLE");this.subscription=new te.Subscription;this.isDestroyed=!1;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastInitializer");let t="chrome"in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${t}`}),e.isDisabled||!t)return;let i=(0,te.isNonNullable)(window.chrome?.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=a=>{delete window.__onGCastApiAvailable,a&&!this.isDestroyed&&this.initializeCastApi()},r||Bp("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:te.ErrorCategory.NETWORK,message:"Script loading failed!"})))}connect(){cast.framework.CastContext.getInstance()?.requestSession()}disconnect(){cast.framework.CastContext.getInstance()?.getCurrentSession()?.endSession(!0)}stopMedia(){return new Promise((e,t)=>{cast.framework.CastContext.getInstance()?.getCurrentSession()?.getMediaSession()?.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,te.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,te.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,te.isNullable)(t)||e!==t.remotePlayer.isMuted&&t.remotePlayerController.muteOrUnmute()}destroy(){this.isDestroyed=!0,this.subscription.unsubscribe()}initListeners(){let e=new cast.framework.RemotePlayer,t=new cast.framework.RemotePlayerController(e),i=cast.framework.CastContext.getInstance();this.subscription.add((0,te.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(r=>{switch(r.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=i.getCurrentSession()?.getMediaSession()?.media?.contentId;break;case cast.framework.SessionState.NO_SESSION:case cast.framework.SessionState.SESSION_ENDING:case cast.framework.SessionState.SESSION_ENDED:case cast.framework.SessionState.SESSION_START_FAILED:this.contentId=void 0;break;default:return(0,te.assertNever)(r.sessionState)}})).add((0,te.merge)((0,te.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,te.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,te.map)(r=>r.castState)),(0,te.observableFrom)([i.getCastState()])).pipe((0,te.filterChanged)(),(0,te.map)(HI),(0,te.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{let a=r==="CONNECTED",n=(0,te.isNonNullable)(this.connection$.getValue());if(a&&!n){let o=i.getCurrentSession();(0,te.assertNonNullable)(o);let u=o.getCastDevice(),l=o.getMediaSession()?.media?.contentId;((0,te.isNullable)(l)||l===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:o,castDevice:u}))}else!a&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?(0,te.isNonNullable)(this.connection$.getValue())?"CONNECTED":"AVAILABLE":r)}))}initializeCastApi(){let e,t,i;try{e=cast.framework.CastContext.getInstance(),t=chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID,i=chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED}catch{return}try{e.setOptions({receiverApplicationId:this.params.receiverApplicationId??t,autoJoinPolicy:i}),this.initListeners()}catch(r){this.errorEvent$.next({id:"ChromecastInitializer",category:te.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:r})}}},HI=s=>{switch(s){case cast.framework.CastState.NO_DEVICES_AVAILABLE:return"NOT_AVAILABLE";case cast.framework.CastState.NOT_CONNECTED:return"AVAILABLE";case cast.framework.CastState.CONNECTING:return"CONNECTING";case cast.framework.CastState.CONNECTED:return"CONNECTED";default:return(0,te.assertNever)(s)}};var Oc=q(wt(),1),ty=q(ji(),1),iy=q(qu(),1);var Mb=q(gs(),1);var Al=require("@vkontakte/videoplayer-shared/es2024");var $e=(s,e=0,t=0)=>{switch(t){case 0:return s.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return s;let i=new URL(s);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(s);return!i.searchParams.get("offset_p")&&e===0?s:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,Al.assertNever)(t)}return s},Ai=(s,e)=>{switch(e){case 0:return NaN;case 1:{let t=new URL(s);return Number(t.searchParams.get("playback_shift"))}case 2:{let t=new URL(s);return Number(t.searchParams.get("offset_p")??0)}default:(0,Al.assertNever)(e)}};var C=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};var Kt=require("@vkontakte/videoplayer-shared/es2024"),K=class{constructor(e){this.transitionStarted$=new Kt.Subject;this.transitionEnded$=new Kt.Subject;this.transitionUpdated$=new Kt.Subject;this.forceChanged$=new Kt.Subject;this.stateChangeStarted$=(0,Kt.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,Kt.merge)(this.transitionEnded$,this.forceChanged$);this.state=e,this.prevState=void 0}setState(e){let t=this.transition,i=this.state;this.transition=void 0,this.prevState=i,this.state=e,t?t.to===e?this.transitionEnded$.next(t):this.forceChanged$.next({from:t.from,to:e,canceledTransition:t}):this.forceChanged$.next({from:i,to:e,canceledTransition:t})}startTransitionTo(e){let t=this.transition,i=this.state;i===e||(0,Kt.isNonNullable)(t)&&t.to===e||(this.prevState=i,this.state=e,t?(this.transition={from:t.from,to:e,canceledTransition:t},this.transitionUpdated$.next(this.transition)):(this.transition={from:i,to:e},this.transitionStarted$.next(this.transition)))}getTransition(){return this.transition}getState(){return this.state}getPrevState(){return this.prevState}};var Ab=require("@vkontakte/videoplayer-shared/es2024"),Rb=s=>{switch(s){case"MPEG":case"DASH":case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":case"HLS":case"HLS_ONDEMAND":return!1;case"DASH_LIVE":case"DASH_LIVE_CMAF":case"HLS_LIVE":case"HLS_LIVE_CMAF":case"DASH_LIVE_WEBM":case"WEB_RTC_LIVE":return!0;default:return(0,Ab.assertNever)(s)}};var H=require("@vkontakte/videoplayer-shared/es2024");var Xw=5,Jw=5,Zw=500,Lb=7e3,Ss=class{constructor(e){this.subscription=new H.Subscription;this.loadMediaTimeoutSubscription=new H.Subscription;this.videoState=new K("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(a)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if(r?.to!=="paused"&&a.state==="requested"&&e!=="stopped"){this.seek(a.position/1e3);return}switch(i){case"ready":{switch(e){case"playing":case"paused":case"ready":break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,H.assertNever)(e)}break}case"playing":{switch(e){case"playing":break;case"paused":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"ready":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,H.assertNever)(e)}break}case"paused":{switch(e){case"playing":this.videoState.startTransitionTo("paused"),this.params.connection.remotePlayerController.playOrPause();break;case"paused":break;case"ready":this.videoState.startTransitionTo("paused"),this.videoState.setState("paused");break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,H.assertNever)(e)}break}default:(0,H.assertNever)(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(Rb(e.format)),this.params.output.isAudioAvailable$.next(!0),this.handleRemoteVolumeChange({volume:this.params.connection.remotePlayer.volumeLevel,muted:this.params.connection.remotePlayer.isMuted});let t=this.params.connection.session.getMediaSession();t&&this.restoreSession(t),this.subscribe()}destroy(){this.log({message:"[destroy]"}),this.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new H.Subscription;this.subscription.add(e),this.subscription.add((0,H.merge)(this.videoState.stateChangeStarted$.pipe((0,H.map)(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe((0,H.map)(r=>`stateChangeEnded$ ${JSON.stringify(r)}`))).subscribe(r=>this.log({message:`[videoState] ${r}`})));let t=(r,a)=>this.subscription.add(r.subscribe(a));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let r=new H.Subject;e.add(r.pipe((0,H.debounce)(Zw)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add((0,H.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(n=>{this.logRemoteEvent(n);let o=n.value;this.params.output.position$.next(o),(this.params.desiredState.seekState.getState().state==="applying"||Math.abs(o-a)>Xw)&&r.next(o),a=o})),e.add((0,H.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,H.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t((0,H.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,H.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),r=>{this.logRemoteEvent(r);let{remotePlayer:a}=this.params.connection,n=r.value,o=this.params.output.isBuffering$.getValue(),u=n===chrome.cast.media.PlayerState.BUFFERING;switch(o!==u&&this.params.output.isBuffering$.next(u),n){case chrome.cast.media.PlayerState.IDLE:!this.params.output.isLive$.getValue()&&a.duration-a.currentTime<Jw&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),C(this.params.desiredState.playbackState,"stopped");break;case chrome.cast.media.PlayerState.PAUSED:{this.handleRemotePause();break}case chrome.cast.media.PlayerState.PLAYING:this.handleRemotePlay();break;case chrome.cast.media.PlayerState.BUFFERING:break;default:(0,H.assertNever)(n)}}),t((0,H.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t((0,H.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=(0,H.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,H.observableFrom)(["init"])).pipe((0,H.debounce)(0));t(i,this.syncPlayback)}restoreSession(e){this.log({message:"restoreSession"});let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),C(this.params.desiredState.playbackState,"playing"));let i=this.params.output.isLive$.getValue();this.params.output.duration$.next(i?0:t.duration),this.params.output.position$.next(i?0:t.currentTime),this.params.desiredState.seekState.setState({state:"none"})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=this.createMediaInfo(e),i=this.createLoadRequest(t);this.loadMedia(i)}handleRemotePause(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="paused"||e==="playing")&&(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="playing"||e==="paused")&&(this.videoState.setState("playing"),C(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.params.desiredState.playbackState.getTransition()?.to==="ready"&&C(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){let t=this.params.output.volume$.getValue(),i={volume:e.volume??t.volume,muted:e.muted??t.muted};(i.volume!==t.volume||i.muted!==i.muted)&&this.params.output.volume$.next(i)}seek(e){this.params.output.willSeekEvent$.next();let{remotePlayer:t,remotePlayerController:i}=this.params.connection;t.currentTime=e,i.seek()}stop(){let{remotePlayerController:e}=this.params.connection;e.stop()}createMediaInfo(e){let t=this.params.source,i,r,a;switch(e){case"MPEG":{let l=t[e];(0,H.assertNonNullable)(l);let c=(0,H.getHighestQuality)(Object.keys(l));(0,H.assertNonNullable)(c);let p=l[c];(0,H.assertNonNullable)(p),i=p,r="video/mp4",a=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let l=t[e];(0,H.assertNonNullable)(l),i=l.url,r="application/x-mpegurl",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let l=t[e];(0,H.assertNonNullable)(l),i=l.url,r="application/dash+xml",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let l=t[e];(0,H.assertNonNullable)(l),i=l.url,r="application/dash+xml",a=chrome.cast.media.StreamType.LIVE;break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let l=t[e];(0,H.assertNonNullable)(l),i=$e(l.url),r="application/x-mpegurl",a=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let l="Unsupported format for Chromecast",c=new Error(l);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:H.ErrorCategory.VIDEO_PIPELINE,message:l,thrown:c}),c}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,H.assertNever)(e)}let n=new chrome.cast.media.MediaInfo(this.params.meta.videoId??i,r);n.contentUrl=i,n.streamType=a,n.metadata=new chrome.cast.media.GenericMediaMetadata;let{title:o,subtitle:u}=this.params.meta;return(0,H.isNonNullable)(o)&&(n.metadata.title=o),(0,H.isNonNullable)(u)&&(n.metadata.subtitle=u),n}createLoadRequest(e){let t=new chrome.cast.media.LoadRequest(e);t.autoplay=!1;let i=this.params.desiredState.seekState.getState();return i.state==="applying"||i.state==="requested"?t.currentTime=this.params.output.isLive$.getValue()?0:i.position/1e3:t.currentTime=0,t}loadMedia(e){let t=this.params.connection.session.loadMedia(e),i=new Promise((r,a)=>{this.loadMediaTimeoutSubscription.add((0,H.timeout)(Lb).subscribe(()=>a(`timeout(${Lb})`)))});(0,Mb.default)(Promise.race([t,i]).then(()=>{this.log({message:`[loadMedia] completed, format: ${this.params.format}`}),this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.handleRemoteReady()},r=>{let a=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${r}`;this.log({message:a}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:H.ErrorCategory.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var jl=q(wt(),1);var $l=require("@vkontakte/videoplayer-shared/es2024");var $b=require("@vkontakte/videoplayer-shared/es2024"),Bb=s=>{try{s.pause(),s.playbackRate=0,(0,$b.clearVideoElement)(s),s.remove()}catch(e){console.error(e)}};var Dn=require("@vkontakte/videoplayer-shared/es2024"),Rl=class{constructor(){this.attribute="data-pool-reused"}get(e){return e.hasAttribute(this.attribute)}set(e,t){e.toggleAttribute(this.attribute,t)}delete(e){e.removeAttribute(this.attribute)}},Ll=window.WeakMap?new WeakMap:new Rl,Ml=window.WeakMap?new WeakMap:new Map,eA=(s,e=20)=>{let t=0;return(0,Dn.fromEvent)(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},Ke=(s,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=s.querySelector("video"),r=!!i;i?(0,$l.clearVideoElement)(i):(i=document.createElement("video"),s.appendChild(i)),Ll.set(i,r);let a=new Dn.Subscription;return a.add(eA(i,e)),Ml.set(i,a),i.setAttribute("crossorigin","anonymous"),i.setAttribute("playsinline","playsinline"),t&&i.setAttribute("x-yandex-pip","false"),i.controls=!1,i.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),i},Xe=s=>{Ml.get(s)?.unsubscribe(),Ml.delete(s);let t=Ll.get(s);Ll.delete(s),t?(0,$l.clearVideoElement)(s):Bb(s)};var Bl=q(Ki(),1),j=require("@vkontakte/videoplayer-shared/es2024");var Ri=require("@vkontakte/videoplayer-shared/es2024"),Cn=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=(0,Ri.isNullable)(r),l=new Ri.Subscription;return r&&l.add(r.subscribe(c=>{let p=s.getState();i(c,p)&&s.setState(c)},a)),i(o,n)||(t(n),u&&s.setState(n)),l.add(s.stateChangeStarted$.subscribe(c=>{t(c.to),u&&s.setState(c.to)},a)),l},$t=(s,e,t)=>Cn(e,()=>s.loop,i=>{(0,Ri.isNonNullable)(i)&&(s.loop=i)},{onError:t}),Je=(s,e,t,i)=>Cn(e,()=>({muted:s.muted,volume:s.volume}),r=>{(0,Ri.isNonNullable)(r)&&(s.muted=r.muted,s.volume=r.volume)},{equal:(r,a)=>r===a||r?.muted===a?.muted&&r?.volume===a?.volume,changed$:t,onError:i}),dt=(s,e,t,i)=>Cn(e,()=>s.playbackRate,r=>{(0,Ri.isNonNullable)(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),Li=Cn;var nA=s=>["__",s.language,s.label].join("|"),oA=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},Dl=class s{constructor(e){this.available$=new j.Subject;this.current$=new j.ValueSubject(void 0);this.error$=new j.Subject;this.subscription=new j.Subscription;this.externalTracks=new Map;this.internalTracks=new Map;this.baseURL=e}connect(e,t,i){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let r=a=>{this.error$.next({id:"TextTracksManager",category:j.ErrorCategory.WTF,message:"Generic HtmlVideoTextTrackManager error",thrown:a})};this.subscription.add(this.available$.subscribe(i.availableTextTracks$)),this.subscription.add(this.current$.subscribe(i.currentTextTrack$)),this.subscription.add(this.error$.subscribe(i.error$)),this.subscription.add(Li(t.internalTextTracks,()=>(0,Bl.default)(this.internalTracks),a=>{(0,j.isNonNullable)(a)&&this.setInternal(a)},{equal:(a,n)=>(0,j.isNonNullable)(a)&&(0,j.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,j.map)(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(Li(t.externalTextTracks,()=>(0,Bl.default)(this.externalTracks),a=>{(0,j.isNonNullable)(a)&&this.setExternal(a)},{equal:(a,n)=>(0,j.isNonNullable)(a)&&(0,j.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,j.map)(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(Li(t.currentTextTrack,()=>{if(this.video)return;let a=this.htmlTextTracksAsArray().find(({mode:n})=>n==="showing");return a&&this.htmlTextTrackToITextTrack(a).id},a=>this.select(a),{changed$:this.current$,onError:r})),this.subscription.add(Li(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){(0,j.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,j.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,j.merge)((0,j.fromEvent)(e,"addtrack"),(0,j.fromEvent)(e,"removetrack"),(0,j.observableFrom)(["init"])).pipe((0,j.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,j.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add((0,j.merge)((0,j.fromEvent)(e,"change"),(0,j.observableFrom)(["init"])).pipe((0,j.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,j.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,j.filterChanged)()).subscribe(this.current$));let t=i=>this.applyCueSettings(i.target?.activeCues??null);this.subscription.add((0,j.fromEvent)(e,"addtrack").subscribe(i=>{i.track?.addEventListener("cuechange",t);let r=a=>{let n=a.target?.cues??null;n&&n.length&&(this.applyCueSettings(a.target?.cues??null),a.target?.removeEventListener("cuechange",r))};i.track?.addEventListener("cuechange",r)})),this.subscription.add((0,j.fromEvent)(e,"removetrack").subscribe(i=>{i.track?.removeEventListener("cuechange",t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let i of Array.from(e)){let r=i;(0,j.isNonNullable)(t.align)&&(r.align=t.align),(0,j.isNonNullable)(t.position)&&(r.position=t.position),(0,j.isNonNullable)(t.size)&&(r.size=t.size),(0,j.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,j.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(s.isHealthyTrack)}htmlTextTrackToITextTrack(e){let{language:t,label:i}=e,r=e.id?e.id:nA(e),a=this.externalTracks.has(r),n=(a?this.externalTracks.get(r)?.isAuto:this.internalTracks.get(r)?.isAuto)??r.includes("auto");return a?{id:r,type:"external",isAuto:n,language:t,label:i,url:this.externalTracks.get(r)?.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:this.internalTracks.get(r)?.url}}static isHealthyTrack(e){return!(e.kind==="metadata"||e.groupId||e.id===""&&e.label===""&&e.language==="")}setExternal(e){this.internalTracks.size>0&&Array.from(this.internalTracks).forEach(([,t])=>this.detach(t)),e.filter(({id:t})=>!this.externalTracks.has(t)).forEach(t=>this.attach(t)),Array.from(this.externalTracks).filter(([t])=>!e.find(i=>i.id===t)).forEach(([,t])=>this.detach(t))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:i,language:r,isAuto:a})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===r&&n.isAuto===a)).forEach(i=>this.attach(i)),Array.from(this.internalTracks).filter(([i])=>!e.find(r=>r.id===i)).forEach(([,i])=>this.detach(i))}select(e){(0,j.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,j.isNullable)(e)||!oA(t,e))&&(t.mode="disabled")}destroy(){if(this.subscription.unsubscribe(),this.video)for(let e of Array.from(this.video.getElementsByTagName("track"))){let t=e.getAttribute("id");t&&this.externalTracks.has(t)&&this.video.removeChild(e)}this.externalTracks.clear()}attach(e){(0,j.assertNonNullable)(this.video);let t=document.createElement("track");this.baseURL?t.setAttribute("src",new URL(e.url,this.baseURL).toString()):t.setAttribute("src",e.url),t.setAttribute("id",e.id),e.label&&t.setAttribute("label",e.label),e.language&&t.setAttribute("srclang",e.language),e.type==="external"?this.externalTracks.set(e.id,e):e.type==="internal"&&this.internalTracks.set(e.id,e),this.video.appendChild(t)}detach(e){(0,j.assertNonNullable)(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName("track"),i=>i.getAttribute("id")===e.id);t&&this.video.removeChild(t),e.type==="external"?this.externalTracks.delete(e.id):e.type==="internal"&&this.internalTracks.delete(e.id)}},pt=Dl;var Xi=class{constructor(){this.pausedTime=0;this.streamOffset=0;this.pauseTimestamp=0}getTotalPausedTime(){return this.pausedTime+this.getCurrentPausedTime()}getCurrentPausedTime(){return this.pauseTimestamp>0?Date.now()-this.pauseTimestamp:0}getStreamOffset(){return this.streamOffset}getTotalOffset(){return this.getTotalPausedTime()+this.streamOffset}pause(){this.pauseTimestamp===0&&(this.pauseTimestamp=Date.now())}resume(){this.pauseTimestamp>0&&(this.pausedTime+=this.getCurrentPausedTime(),this.pauseTimestamp=0)}resetTo(e,t=!1){this.streamOffset=e,this.pauseTimestamp=0,this.pausedTime=0,t&&this.pause()}};var Nb=s=>{let e=s;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e?.parentNode;return e??void 0},Cl=s=>{let e=Nb(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},Ub=s=>{let e=Nb(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};var _=require("@vkontakte/videoplayer-shared/es2024");var uA=3,qb=(s,e,t=uA)=>{let i=0,r=0;for(let a=0;a<s.length;a++){let n=s.start(a),o=s.end(a);if(n<=e&&e<=o){if(i=n,r=o,!t)return{from:i,to:r};for(let u=a-1;u>=0;u--)s.end(u)+t>=i&&(i=s.start(u));for(let u=a+1;u<s.length;u++)s.start(u)-t<=r&&(r=s.end(u))}}return{from:i,to:r}};var Vn=class{get current(){return this._current}get isYandex(){return this.current==="Yandex"}get isSafari(){return this.current==="Safari"}get isSamsungBrowser(){return this.current==="SamsungBrowser"}get safariVersion(){return this._safariVersion}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?"Yandex":void 0,i=/samsungbrowser/i.test(e)?"SamsungBrowser":void 0,r=/chrome|crios/i.test(e)?"Chrome":void 0,a=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,l=/edg/i.test(e)?"Edge":void 0;this._current=t||i||n||u||l||r||a||o||"Rest"}catch(t){console.error(t)}this.isSafari&&this.detectSafariVersion()}detectSafariVersion(){try{let{userAgent:e}=window.navigator,t=e.match(/Version\/(\d+)/);if(!t)return;let i=t[1],r=parseInt(i,10);if(isNaN(r))return;this._safariVersion=r}catch(e){console.error(e)}}};var Hb=q(wt(),1);var Pr=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;var On=class{constructor(e){this._highEntropyValues={};this._displayChecker=e}get current(){return this._current}get isIOS(){let e=["iPhone","iPad","iPod"];return this._highEntropyValues.platform==="iOS"||(0,Hb.default)(e,this.current)}get isMac(){return this._highEntropyValues.platform==="macOS"||this.current==="Mac"}get isApple(){return this.isIOS||this.isMac}get isIphoneOrOldIpad(){if(!this.isApple||!this._displayChecker.isTouch)return!1;let e=this.current==="iPad"||this._displayChecker.width>700,t=this._iosVersion;return!e||e&&!!t&&t<16}get isAndroid(){return this._highEntropyValues.platform==="Android"||this.current==="Android"}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let{userAgent:e}=navigator;try{this._isMobile=Pr()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let{userAgentData:e}=navigator;if(e?.getHighEntropyValues){let t=await e.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=t}}detectDevice(e){try{let t=/android/i.test(e)?"Android":void 0,i=/iphone/i.test(e)?"iPhone":void 0,r=/ipad/i.test(e)?"iPad":void 0,a=/ipod/i.test(e)?"iPod":void 0,n=/mac/i.test(e)?"Mac":void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?"RestMobile":void 0;this._current=t||i||r||a||o||n||"Desktop"}catch(t){console.error(t)}}detectIOSVersion(){try{if(this._highEntropyValues.platformVersion){let a=this._highEntropyValues.platformVersion.split(".").slice(0,2).join("."),n=parseFloat(a);this._iosVersion=n;return}let{userAgent:e}=window.navigator,t=e.match(/OS (\d+(_\d+)?)/i);if(!t)return;let i=t[1].replace(/_/g,".");if(!i)return;let r=parseFloat(i);if(isNaN(r))return;this._iosVersion=r}catch(e){console.error(e)}}};var _n=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in window}get maxTouchPoints(){return this._maxTouchPoints}get height(){return this._height}get width(){return this._width}get screenHeight(){return this._screenHeight}get screenWidth(){return this._screenWidth}get pixelRatio(){return this._pixelRatio}get isHDR(){return this._isHdr}get colorDepth(){return this._colorDepth}detect(){let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e??0,this._isHdr=!!matchMedia("(dynamic-range: high)")?.matches,this._colorDepth=screen.colorDepth}catch(t){console.error(t)}try{this._pixelRatio=window.devicePixelRatio||1,this._height=screen.height,this._width=screen.width,this._height=screen.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(t){console.error(t)}}};var Rt=()=>window.ManagedMediaSource||window.MediaSource,kr=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),jb=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),Fn=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var lA=document.createElement("video"),cA='video/mp4; codecs="avc1.42000a,mp4a.40.2"',dA='video/mp4; codecs="hev1.1.6.L93.B0"',zb='video/webm; codecs="vp09.00.10.08"',Gb='video/webm; codecs="av01.0.00M.08"',pA='audio/mp4; codecs="mp4a.40.2"',hA='audio/webm; codecs="opus"',Qb,fA=async()=>{if(!window.navigator.mediaCapabilities)return;let s={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[e,t]=await Promise.all([window.navigator.mediaCapabilities.decodingInfo({...s,video:{...s.video,contentType:Gb}}),window.navigator.mediaCapabilities.decodingInfo({...s,video:{...s.video,contentType:zb}})]);Qb={DASH_WEBM_AV1:e,DASH_WEBM:t}};fA().catch(s=>{console.log(lA),console.error(s)});var Nn=class{constructor(e,t){this._deviceChecker=e,this._browserChecker=t}get protocols(){return this._protocols}get containers(){return this._containers}get codecs(){return this._codecs}get webmDecodingInfo(){return Qb}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){this._video=document.createElement("video");try{this._protocols={mms:kr(),mse:jb(),hls:!!(this._video.canPlayType?.("application/x-mpegurl")||this._video.canPlayType?.("vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!this._video.canPlayType?.("video/mp4"),webm:!!this._video.canPlayType?.("video/webm"),cmaf:!0};let e=!!Rt()?.isTypeSupported?.(cA),t=!!Rt()?.isTypeSupported?.(dA),i=!!Rt()?.isTypeSupported?.(pA);this._codecs={h264:e,h265:t,vp9:!!Rt()?.isTypeSupported?.(zb),av1:!!Rt()?.isTypeSupported?.(Gb),aac:i,opus:!!Rt()?.isTypeSupported?.(hA),mpeg:(e||t)&&i},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(e){console.error(e)}this.destroyVideoElement()}destroyVideoElement(){if(!this._video)return;if(this._video.pause(),this._video.currentTime=0,this._video.removeAttribute("src"),this._video.src="",this._video.load(),this._video.remove){this._video.remove(),this._video=null;return}this._video.parentNode&&this._video.parentNode.removeChild(this._video);let e=this._video.cloneNode(!1);this._video.parentNode?.replaceChild(e,this._video),this._video=null}};var Wb="audio/mpeg",Un=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){this._audio=document.createElement("audio");try{this._containers={mpeg:!!this._audio.canPlayType?.(Wb)},this._codecs={mp3:!!Rt()?.isTypeSupported?.(Wb)}}catch(e){console.error(e)}this.destroyAudioElement()}destroyAudioElement(){if(!this._audio)return;if(this._audio.pause(),this._audio.currentTime=0,this._audio.removeAttribute("src"),this._audio.src="",this._audio.load(),this._audio.remove){this._audio.remove(),this._audio=null;return}this._audio.parentNode&&this._audio.parentNode.removeChild(this._audio);let e=this._audio.cloneNode(!1);this._audio.parentNode?.replaceChild(e,this._audio),this._audio=null}};var Yb=require("@vkontakte/videoplayer-shared/es2024"),Vl=class{constructor(){this.isInited$=new Yb.ValueSubject(!1);this._displayChecker=new _n,this._deviceChecker=new On(this._displayChecker),this._browserChecker=new Vn,this._videoChecker=new Nn(this._deviceChecker,this._browserChecker),this._audioChecker=new Un,this.detect()}get display(){return this._displayChecker}get device(){return this._deviceChecker}get browser(){return this._browserChecker}get video(){return this._videoChecker}get audio(){return this._audioChecker}async detect(){this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0)}},W=new Vl;var Ze=s=>{let e=I=>(0,_.fromEvent)(s,I).pipe((0,_.mapTo)(void 0)),t=new _.Subscription,i=()=>t.unsubscribe(),r=(0,_.merge)((0,_.fromEvent)(s,"progress"),(0,_.fromEvent)(s,"timeupdate")).pipe((0,_.map)(()=>qb(s.buffered,s.currentTime))),a=W.browser.isSafari?(0,_.combine)({play:e("play").pipe((0,_.once)()),playing:e("playing")}).pipe((0,_.mapTo)(void 0)):e("playing"),n=(0,_.fromEvent)(s,"volumechange").pipe((0,_.map)(()=>({muted:s.muted,volume:s.volume}))),o=(0,_.fromEvent)(s,"ratechange").pipe((0,_.map)(()=>s.playbackRate)),u=(0,_.fromEvent)(s,"error").pipe((0,_.filter)(()=>!!(s.error||s.played.length)),(0,_.map)(()=>{let I=s.error;return{id:I?`MediaError#${I.code}`:"HtmlVideoError",category:_.ErrorCategory.VIDEO_PIPELINE,message:I?I.message:"Error event from HTML video element",thrown:s.error??void 0}})),l=(0,_.fromEvent)(s,"timeupdate").pipe((0,_.map)(()=>s.currentTime)),c=["waiting","seeking","seeked","timeupdate"],p=new _.Subject,d=.3,h;t.add((0,_.merge)(...c.map(I=>(0,_.fromEvent)(s,I))).subscribe(I=>{let U=s.currentTime;s.loop&&(0,_.isNonNullable)(h)&&(0,_.isNonNullable)(U)&&h>=s.duration-d&&U<=d&&p.next(h),h=U}));let m=e("pause").pipe((0,_.filter)(()=>!s.error&&h!==s.duration)),g=(0,_.fromEvent)(s,"enterpictureinpicture"),y=(0,_.fromEvent)(s,"leavepictureinpicture"),T=new _.ValueSubject(Ub(s));t.add(g.subscribe(()=>T.next(!0))),t.add(y.subscribe(()=>T.next(!1)));let w=new _.ValueSubject(Cl(s)),x=(0,_.fromEvent)(s,"fullscreenchange");t.add(x.pipe((0,_.map)(()=>Cl(s))).subscribe(w));let M=.1,$=1e3,F=(0,_.fromEvent)(s,"timeupdate").pipe((0,_.map)(I=>s.duration-s.currentTime<M)),Q=(0,_.merge)(F.pipe((0,_.filter)(I=>!s.loop&&I)),(0,_.fromEvent)(s,"ended")).pipe((0,_.throttle)($),(0,_.mapTo)(void 0)),D=(0,_.combine)({latestNativeEvent:(0,_.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(I=>(0,_.fromEvent)(s,I))),endedExpected:F}).pipe((0,_.map)(({endedExpected:I})=>I?s.readyState<2:s.readyState<3),(0,_.filterChanged)());return{playing$:a,pause$:m,canplay$:e("canplay"),ended$:Q,looped$:p,error$:u,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:l,durationChange$:(0,_.fromEvent)(s,"durationchange").pipe((0,_.map)(()=>s.duration)),isBuffering$:D,currentBuffer$:r,volumeState$:n,playbackRateState$:o,inPiP$:T,inFullscreen$:w,enterPip$:g,leavePip$:y,destroy:i}};var hi=require("@vkontakte/videoplayer-shared/es2024"),Jt=s=>{switch(s){case"mobile":return hi.VideoQuality.Q_144P;case"lowest":return hi.VideoQuality.Q_240P;case"low":return hi.VideoQuality.Q_360P;case"sd":case"medium":return hi.VideoQuality.Q_480P;case"hd":case"high":return hi.VideoQuality.Q_720P;case"fullhd":case"full":return hi.VideoQuality.Q_1080P;case"quadhd":case"quad":return hi.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return hi.VideoQuality.Q_2160P}};var ut=q(Ht(),1),Fl=q(wt(),1),Ji=q(ji(),1),L=require("@vkontakte/videoplayer-shared/es2024");var Ol=!1,fi={},ig=s=>{Ol=s},rg=()=>{fi={}},sg=s=>{s(fi)},vs=(s,e)=>{Ol&&(fi.meta=fi.meta??{},fi.meta[s]=e)},ot=class{constructor(e){this.name=e}next(e){if(!Ol)return;fi.series=fi.series??{};let t=fi.series[this.name]??[];t.push([Date.now(),e]),fi.series[this.name]=t}};var Fe=require("@vkontakte/videoplayer-shared/es2024");function _l(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function qn(s,e,t){return!!s&&_l(s,e,t)==="high_quality"}function wr(s,e,t){return(0,Fe.isNullable)(s)||(0,Fe.isNonNullable)(s.min)&&(0,Fe.isNonNullable)(s.max)&&(0,Fe.isLower)(s.max,s.min)||(0,Fe.isNonNullable)(s.min)&&e&&(0,Fe.isHigher)(s.min,e)||(0,Fe.isNonNullable)(s.max)&&t&&(0,Fe.isLower)(s.max,t)}function ag({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return wr({max:s?.max?(0,Fe.videoHeightToQuality)(s.max):void 0,min:s?.min?(0,Fe.videoHeightToQuality)(s.min):void 0},e?(0,Fe.videoHeightToQuality)(e):void 0,t?(0,Fe.videoHeightToQuality)(t):void 0)}var cg=new ot("best_bitrate"),jn=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var Ar=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),Mi=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=(0,L.now)()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},zn='Assertion "ABR Tracks is empty array" failed',Hn=new WeakMap,ng=new WeakMap,og=new WeakMap,ys=(s,e,t,i)=>{let r=[...e].sort(Ar(1)),a=[...t].sort(Ar(1)),n=a.filter(u=>(0,L.isNonNullable)(u.bitrate)&&(0,L.isNonNullable)(s.bitrate)?s.bitrate/u.bitrate>i:!0),o=(0,ut.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1)))??(0,ut.default)(a,-1);return o&&(0,Fl.default)(n,o)?o:n.length?(0,ut.default)(n,-1):(0,ut.default)(a,0)},Ts=(s,e,t,i)=>{let r=Hn.get(e);r||(r=[...e].sort(Ar(1)),Hn.set(e,r));let a=Hn.get(t);a||(a=[...t].sort(Ar(1)),Hn.set(t,a));let n=og.get(s);n||(n=a.filter(u=>(0,L.isNonNullable)(u.bitrate)&&(0,L.isNonNullable)(s.bitrate)?s.bitrate/u.bitrate>i:!0),og.set(s,n));let o=(0,ut.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1)))??(0,ut.default)(a,-1);return o&&(0,Fl.default)(n,o)?o:n.length?(0,ut.default)(n,-1):(0,ut.default)(a,0)},ug=s=>"quality"in s,Gn=(s,e,t,i)=>{let r=(0,L.isNonNullable)(i?.last?.bitrate)&&(0,L.isNonNullable)(t?.bitrate)&&i.last.bitrate<t.bitrate?s.trackCooldownIncreaseQuality:s.trackCooldownDecreaseQuality,a=t&&i&&i.history[t.id]&&(0,L.now)()-i.history[t.id]<=r&&(!i.last||t.id!==i.last.id);if(t?.id&&i&&!a&&i.recordSelection(t),a&&i?.last){let n=i.last;i?.recordSwitch(n);let o=ug(n)?"video":"audio",u=ug(n)?n.quality:n.bitrate;return e({message:`
8
8
  [last ${o} selected] ${u}
9
- `}),n}return i?.recordSwitch(t),t},$k=(r,e)=>Math.log(e)/Math.log(r),Mk=({tuning:r,container:e,limits:t,panelSize:i})=>{let a=r.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:a};if(r.usePixelRatio&&Q.display.pixelRatio){let s=Q.display.pixelRatio;if(r.pixelRatioMultiplier)a*=r.pixelRatioMultiplier*(s-1)+1;else{let n=r.pixelRatioLogBase,[o=0,u=0,l=0]=r.pixelRatioLogCoefficients,d=$k(n,o*s+u)+l;Number.isFinite(d)&&(a*=d)}}return nu({highQualityLimit:r.highQualityLimit,trafficSavingLimit:r.trafficSavingLimit,limits:t})&&(a*=2),{containerSizeLimit:r.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*a,height:e.height*a}:void 0,containerSizeFactor:a}},jt=(r,{container:e,estimatedThroughput:t,tuning:i,limits:a,reserve:s=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:d,droppedVideoMaxQualityLimit:p,stallsVideoMaxQualityLimit:h,stallsPredictedThroughput:m,abrLogger:b,panelSize:v})=>{(0,B.assertNotEmptyArray)(r,Pf);let{containerSizeFactor:T,containerSizeLimit:I}=Mk({container:e,tuning:i,limits:a,panelSize:v}),A=i.considerPlaybackRate&&(0,B.isNonNullable)(o)?o:1,P=r.filter(D=>!(0,B.isInvariantQuality)(D.quality)).sort((D,be)=>(0,B.isHigher)(D.quality,be.quality)?-1:1),$=(0,Ht.default)(P,-1)?.quality,k=(0,Ht.default)(P,0)?.quality,Y=Ar({limits:a,lowestAvailableQuality:$,highestAvailableQuality:k}),z=A*xf(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),X={},E=P.filter(D=>{let be=!0;if(I)if(D.size)be=D.size.width<=I.width&&D.size.height<=I.height;else{let H=I&&(0,B.videoSizeToQuality)(I);be=H?(0,B.isLowerOrEqual)(D.quality,H):!0}if(!be)return X[D.quality]="FitsContainer",!1;let M=m||t,Z=(0,B.isNonNullable)(M)&&isFinite(M)&&(0,B.isNonNullable)(D.bitrate)?M-s>=D.bitrate*z:!0,re=nu({highQualityLimit:i.highQualityLimit,trafficSavingLimit:i.trafficSavingLimit,limits:a})&&a?.min===D.quality;if(!Z&&!re)return X[D.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&(0,B.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,B.isInvariantQuality)(u.quality)&&(n??0)<i.minBufferToSwitchUp&&(0,B.isHigher)(D.quality,u.quality))return X[D.quality]="Buffer",!1;if(!!p&&(0,B.isHigherOrEqual)(D.quality,p)&&!re)return X[D.quality]="DroppedFramesLimit",!1;if(!!h&&(0,B.isHigherOrEqual)(D.quality,h)&&!re)return X[D.quality]="StallsLimit",!1;let $e=Y||((0,B.isNullable)(a?.max)||(0,B.isLowerOrEqual)(D.quality,a.max))&&((0,B.isNullable)(a?.min)||(0,B.isHigherOrEqual)(D.quality,a.min)),ee=(0,B.isNonNullable)(d)&&!d?(0,B.isLowerOrEqual)(D.quality,i.backgroundVideoQualityLimit):!0;return!$e||!ee?(X[D.quality]="FitsQualityLimits",!1):!0})[0];E&&E.bitrate&&Rk.next(E.bitrate);let U=E??(0,Ht.default)(P,-1)??r[0],C=l?.last,ie=kf(i,b,U,l);return(0,B.isNonNullable)(l)&&ie.quality!==C?.quality&&b({message:`
9
+ `}),n}return i?.recordSwitch(t),t},xA=(s,e)=>Math.log(e)/Math.log(s),dg=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&W.display.pixelRatio){let a=W.display.pixelRatio;if(s.pixelRatioMultiplier)r*=s.pixelRatioMultiplier*(a-1)+1;else{let n=s.pixelRatioLogBase,[o=0,u=0,l=0]=s.pixelRatioLogCoefficients,c=xA(n,o*a+u)+l;Number.isFinite(c)&&(r*=c)}}return qn(t,s.highQualityLimit,s.trafficSavingLimit)&&(r*=2),{containerSizeLimit:s.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*r,height:e.height*r}:void 0,containerSizeFactor:r}},lg=new WeakMap,Zt=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:c,droppedVideoMaxQualityLimit:p,stallsVideoMaxQualityLimit:d,stallsPredictedThroughput:h,abrLogger:m,panelSize:g})=>{(0,L.assertNotEmptyArray)(s,zn);let{containerSizeFactor:y,containerSizeLimit:T}=dg({container:e,tuning:i,limits:r,panelSize:g}),w=i.considerPlaybackRate&&(0,L.isNonNullable)(o)?o:1,x=lg.get(s);x||(x=s.filter(R=>!(0,L.isInvariantQuality)(R.quality)).sort((R,V)=>(0,L.isHigher)(R.quality,V.quality)?-1:1),lg.set(s,x));let M=(0,ut.default)(x,-1)?.quality,$=(0,ut.default)(x,0)?.quality,F=wr(r,$,M),Q=w*jn(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),B={},D=null;for(let R of x){let V=!0;if(T)if(R.size)V=R.size.width<=T.width&&R.size.height<=T.height;else{let O=T&&(0,L.videoSizeToQuality)(T);V=O?(0,L.isLowerOrEqual)(R.quality,O):!0}if(!V){B[R.quality]="FitsContainer";continue}let ge=h||t,N=(0,L.isNonNullable)(ge)&&isFinite(ge)&&(0,L.isNonNullable)(R.bitrate)?ge-a>=R.bitrate*Q:!0,re=qn(r,i.highQualityLimit,i.trafficSavingLimit)&&r?.min===R.quality;if(!N&&!re){B[R.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&(0,L.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,L.isInvariantQuality)(u.quality)&&(n??0)<i.minBufferToSwitchUp&&(0,L.isHigher)(R.quality,u.quality)){B[R.quality]="Buffer";continue}if(!!p&&(0,L.isHigherOrEqual)(R.quality,p)&&!re){B[R.quality]="DroppedFramesLimit";continue}if(!!d&&(0,L.isHigherOrEqual)(R.quality,d)&&!re){B[R.quality]="StallsLimit";continue}let Ie=F||((0,L.isNullable)(r?.max)||(0,L.isLowerOrEqual)(R.quality,r.max))&&((0,L.isNullable)(r?.min)||(0,L.isHigherOrEqual)(R.quality,r.min)),de=(0,L.isNonNullable)(c)&&!c?(0,L.isLowerOrEqual)(R.quality,i.backgroundVideoQualityLimit):!0;if(!Ie||!de){B[R.quality]="FitsQualityLimits";continue}D||(D=R)}D&&D.bitrate&&cg.next(D.bitrate);let I=D??(0,ut.default)(x,-1)??s[0],U=l?.last,A=Gn(i,m,I,l);return(0,L.isNonNullable)(l)&&A.quality!==U?.quality&&m({message:`
10
10
  [VIDEO TRACKS ABR]
11
11
  [available video tracks]
12
- ${r.map(D=>`{ id: ${D.id}, quality: ${D.quality}, bitrate: ${D.bitrate}, size: ${D.size?.width}:${D.size?.height} }`).join(`
12
+ ${s.map(R=>`{ id: ${R.id}, quality: ${R.quality}, bitrate: ${R.bitrate}, size: ${R.size?.width}:${R.size?.height} }`).join(`
13
13
  `)}
14
14
 
15
15
  [tuning]
16
- ${(0,ws.default)(i??{}).map(([D,be])=>`${D}: ${be}`).join(`
16
+ ${(0,Ji.default)(i??{}).map(([R,V])=>`${R}: ${V}`).join(`
17
17
  `)}
18
18
 
19
19
  [limit params]
20
- containerSizeFactor: ${T},
21
- containerSizeLimit: ${I?.width??0} x ${I?.height??0},
20
+ containerSizeFactor: ${y},
21
+ containerSizeLimit: ${T?.width??0} x ${T?.height??0},
22
22
  estimatedThroughput: ${t},
23
- stallsPredictedThroughput: ${m},
24
- reserve: ${s},
23
+ stallsPredictedThroughput: ${h},
24
+ reserve: ${a},
25
25
  playbackRate: ${o},
26
- playbackRateFactor: ${A},
26
+ playbackRateFactor: ${w},
27
27
  forwardBufferHealth: ${n},
28
- bitrateFactor: ${z},
28
+ bitrateFactor: ${Q},
29
29
  minBufferToSwitchUp: ${i.minBufferToSwitchUp},
30
30
  droppedVideoMaxQualityLimit: ${p},
31
- stallsVideoMaxQualityLimit: ${h},
32
- limitsAreInvalid: ${Y},
33
- maxQualityLimit: ${a?.max},
34
- minQualityLimit: ${a?.min},
31
+ stallsVideoMaxQualityLimit: ${d},
32
+ limitsAreInvalid: ${F},
33
+ maxQualityLimit: ${r?.max},
34
+ minQualityLimit: ${r?.min},
35
35
 
36
36
  [limited video tracks]
37
- ${(0,ws.default)(X).map(([D,be])=>`${D}: ${be}`).join(`
37
+ ${(0,Ji.default)(B).map(([R,V])=>`${R}: ${V}`).join(`
38
38
  `)||"All tracks are available"}
39
39
 
40
- [best video track] ${E?.quality}
41
- [selected video track] ${ie?.quality}
42
- `}),ie},wf=(r,e,t,{estimatedThroughput:i,tuning:a,playbackRate:s,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,B.assertNotEmptyArray)(t,Pf);let d=a.considerPlaybackRate&&(0,B.isNonNullable)(s)?s:1,p=[...t].sort(ou(-1)),h=r.bitrate;(0,B.assertNonNullable)(h);let m=d*xf(n??.5,a.bitrateAudioFactorAtEmptyBuffer,a.bitrateAudioFactorAtFullBuffer),b,v=As(r,e,t,a.minVideoAudioRatio),T=l||i;(0,B.isNonNullable)(T)&&isFinite(T)&&(b=p.find(P=>(0,B.isNonNullable)(P.bitrate)&&(0,B.isNonNullable)(v?.bitrate)?T-h>=P.bitrate*m&&P.bitrate>=v.bitrate:!1)),b||(b=v);let I=o?.last,A=b&&kf(a,u,b,o);return(0,B.isNonNullable)(o)&&A?.bitrate!==I?.bitrate&&u({message:`
40
+ [best video track] ${D?.quality}
41
+ [selected video track] ${A?.quality}
42
+ `}),A},Qn=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:c,droppedVideoMaxQualityLimit:p,stallsVideoMaxQualityLimit:d,stallsPredictedThroughput:h,abrLogger:m,panelSize:g})=>{(0,L.assertNotEmptyArray)(s,zn);let{containerSizeFactor:y,containerSizeLimit:T}=dg({container:e,tuning:i,limits:r,panelSize:g}),w=i.considerPlaybackRate&&(0,L.isNonNullable)(o)?o:1,x=s.filter(V=>!(0,L.isInvariantQuality)(V.quality)).sort((V,ge)=>(0,L.isHigher)(V.quality,ge.quality)?-1:1),M=(0,ut.default)(x,-1)?.quality,$=(0,ut.default)(x,0)?.quality,F=wr(r,M,$),Q=w*jn(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),B={},I=x.filter(V=>{let ge=!0;if(T)if(V.size)ge=V.size.width<=T.width&&V.size.height<=T.height;else{let z=T&&(0,L.videoSizeToQuality)(T);ge=z?(0,L.isLowerOrEqual)(V.quality,z):!0}if(!ge)return B[V.quality]="FitsContainer",!1;let N=h||t,re=(0,L.isNonNullable)(N)&&isFinite(N)&&(0,L.isNonNullable)(V.bitrate)?N-a>=V.bitrate*Q:!0,ce=qn(r,i.highQualityLimit,i.trafficSavingLimit)&&r?.min===V.quality;if(!re&&!ce)return B[V.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&(0,L.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,L.isInvariantQuality)(u.quality)&&(n??0)<i.minBufferToSwitchUp&&(0,L.isHigher)(V.quality,u.quality))return B[V.quality]="Buffer",!1;if(!!p&&(0,L.isHigherOrEqual)(V.quality,p)&&!ce)return B[V.quality]="DroppedFramesLimit",!1;if(!!d&&(0,L.isHigherOrEqual)(V.quality,d)&&!ce)return B[V.quality]="StallsLimit",!1;let de=F||((0,L.isNullable)(r?.max)||(0,L.isLowerOrEqual)(V.quality,r.max))&&((0,L.isNullable)(r?.min)||(0,L.isHigherOrEqual)(V.quality,r.min)),O=(0,L.isNonNullable)(c)&&!c?(0,L.isLowerOrEqual)(V.quality,i.backgroundVideoQualityLimit):!0;return!de||!O?(B[V.quality]="FitsQualityLimits",!1):!0})[0];I&&I.bitrate&&cg.next(I.bitrate);let U=I??(0,ut.default)(x,-1)??s[0],A=l?.last,R=Gn(i,m,U,l);return(0,L.isNonNullable)(l)&&R.quality!==A?.quality&&m({message:`
43
+ [VIDEO TRACKS ABR]
44
+ [available video tracks]
45
+ ${s.map(V=>`{ id: ${V.id}, quality: ${V.quality}, bitrate: ${V.bitrate}, size: ${V.size?.width}:${V.size?.height} }`).join(`
46
+ `)}
47
+
48
+ [tuning]
49
+ ${(0,Ji.default)(i??{}).map(([V,ge])=>`${V}: ${ge}`).join(`
50
+ `)}
51
+
52
+ [limit params]
53
+ containerSizeFactor: ${y},
54
+ containerSizeLimit: ${T?.width??0} x ${T?.height??0},
55
+ estimatedThroughput: ${t},
56
+ stallsPredictedThroughput: ${h},
57
+ reserve: ${a},
58
+ playbackRate: ${o},
59
+ playbackRateFactor: ${w},
60
+ forwardBufferHealth: ${n},
61
+ bitrateFactor: ${Q},
62
+ minBufferToSwitchUp: ${i.minBufferToSwitchUp},
63
+ droppedVideoMaxQualityLimit: ${p},
64
+ stallsVideoMaxQualityLimit: ${d},
65
+ limitsAreInvalid: ${F},
66
+ maxQualityLimit: ${r?.max},
67
+ minQualityLimit: ${r?.min},
68
+
69
+ [limited video tracks]
70
+ ${(0,Ji.default)(B).map(([V,ge])=>`${V}: ${ge}`).join(`
71
+ `)||"All tracks are available"}
72
+
73
+ [best video track] ${I?.quality}
74
+ [selected video track] ${R?.quality}
75
+ `}),R},Wn=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,L.assertNotEmptyArray)(t,zn);let c=r.considerPlaybackRate&&(0,L.isNonNullable)(a)?a:1,p=[...t].sort(Ar(-1)),d=s.bitrate;(0,L.assertNonNullable)(d);let h=c*jn(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),m,g=ys(s,e,t,r.minVideoAudioRatio),y=l||i;(0,L.isNonNullable)(y)&&isFinite(y)&&(m=p.find(x=>(0,L.isNonNullable)(x.bitrate)&&(0,L.isNonNullable)(g?.bitrate)?y-d>=x.bitrate*h&&x.bitrate>=g.bitrate:!1)),m||(m=g);let T=o?.last,w=m&&Gn(r,u,m,o);return(0,L.isNonNullable)(o)&&w?.bitrate!==T?.bitrate&&u({message:`
43
76
  [AUDIO TRACKS ABR]
44
77
  [available audio tracks]
45
- ${t.map(P=>`{ id: ${P.id}, bitrate: ${P.bitrate} }`).join(`
78
+ ${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
46
79
  `)}
47
80
 
48
81
  [tuning]
49
- ${(0,ws.default)(a??{}).map(([P,$])=>`${P}: ${$}`).join(`
82
+ ${(0,Ji.default)(r??{}).map(([x,M])=>`${x}: ${M}`).join(`
50
83
  `)}
51
84
 
52
85
  [limit params]
53
86
  estimatedThroughput: ${i},
54
87
  stallsPredictedThroughput: ${l},
55
- reserve: ${h},
56
- playbackRate: ${s},
57
- playbackRateFactor: ${d},
88
+ reserve: ${d},
89
+ playbackRate: ${a},
90
+ playbackRateFactor: ${c},
58
91
  forwardBufferHealth: ${n},
59
- bitrateFactor: ${m},
60
- minBufferToSwitchUp: ${a.minBufferToSwitchUp},
92
+ bitrateFactor: ${h},
93
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
61
94
 
62
- [selected audio track] ${A?.id}
63
- `}),A};var ye=r=>new URL(r).hostname;var V=require("@vkontakte/videoplayer-shared/es2024");var Cf=F(Ut(),1);var Lf=F(De(),1),Af=r=>{if(r instanceof DOMException&&(0,Lf.default)(["Failed to load because no supported source was found.","The element has no supported sources."],r.message))throw r;return!(r instanceof DOMException&&(r.code===20||r.name==="AbortError"))},Ne=async(r,e)=>{let t=r.muted;try{await r.play()}catch(i){if(!Af(i))return!1;if(e&&e(),t)return console.warn(i),!1;r.muted=!0;try{await r.play()}catch(a){return Af(a)&&(r.muted=!1,console.warn(a)),!1}}return!0};var Ge=require("@vkontakte/videoplayer-shared/es2024");var Rf=F(Ni(),1),vt=require("@vkontakte/videoplayer-shared/es2024");function Te(){return(0,vt.now)()}function uu(r){return Te()-r}function lu(r){let e=r.split("/"),t=e.slice(0,e.length-1).join("/"),i=/^([a-z]+:)?\/\//i,a=n=>i.test(n);return{resolve:(n,o,u=!1)=>{a(n)||(n.startsWith("/")||(n="/"+n),n=t+n);let l=n.indexOf("?")>-1?"&":"?";return u&&(n+=l+"lowLat=1",l="&"),o&&(n+=l+"_rnd="+Math.floor(999999999*Math.random())),n}}}function $f(r,e,t){let i=(...a)=>{t.apply(null,a),r.removeEventListener(e,i)};r.addEventListener(e,i)}function qi(r,e,t,i){let a=window.XMLHttpRequest,s,n,o,u=!1,l=0,d,p,h=!1,m="arraybuffer",b=7e3,v=2e3,T=()=>{if(u)return;(0,vt.assertNonNullable)(d);let C=uu(d),ie;if(C<v){ie=v-C,setTimeout(T,ie);return}v*=2,v>b&&(v=b),n&&n.abort(),n=new a,Y()},I=C=>(s=C,U),A=C=>(p=C,U),P=()=>(m="json",U),$=()=>{if(!u){if(--l>=0){T(),i&&i();return}u=!0,p&&p(),t&&t()}},k=C=>(h=C,U),Y=()=>{d=Te(),n=new a,n.open("get",r);let C=0,ie,D=0,be=()=>((0,vt.assertNonNullable)(d),Math.max(d,Math.max(ie||0,D||0)));if(s&&n.addEventListener("progress",M=>{let Z=Te();s.updateChunk&&M.loaded>C&&(s.updateChunk(be(),M.loaded-C),C=M.loaded,ie=Z)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>$())),n.addEventListener("load",()=>{if(u)return;(0,vt.assertNonNullable)(n);let M=n.status;if(M>=200&&M<300){let{response:Z,responseType:re}=n,ce=Z?.byteLength;if(typeof ce=="number"&&s){let ge=ce-C;ge&&s.updateChunk&&s.updateChunk(be(),ge)}re==="json"&&(!Z||!(0,Rf.default)(Z).length)?$():(p&&p(),e(Z))}else $()}),n.addEventListener("error",()=>{$()}),h){let M=()=>{(0,vt.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(D=Te(),n.removeEventListener("readystatechange",M))};n.addEventListener("readystatechange",M)}return n.responseType=m,n.send(),U},U={withBitrateReporting:I,withParallel:k,withJSONResponse:P,withRetryCount:C=>(l=C,U),withRetryInterval:(C,ie)=>((0,vt.isNonNullable)(C)&&(v=C),(0,vt.isNonNullable)(ie)&&(b=ie),U),withTimeout:C=>(o=C,U),withFinally:A,send:Y,abort:()=>{n&&(n.abort(),n=void 0),u=!0,p&&p()}};return U}var Rr=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,a=0;for(;this.intervals.length>0;){let s=this.intervals[0];if(s.end<=t)i+=s.end-s.start,a+=s.bytes,this.intervals.splice(0,1);else{if(s.start>=t)break;{let n=t-s.start,o=s.end-s.start;i+=n;let u=s.bytes*n/o;a+=u,s.start=t,s.bytes-=u}}}if(a>0&&i>0){let s=a*8/(i/1e3);return this._updateRate(s),this.logger(`rate updated, new=${Math.round(s/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(a)}/${Math.round(i)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,i){return this.intervals.push(this._createInterval(e,t,i)),this._joinIntervals(),this.intervals.length>100&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:"warn"}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var Mf=F(Ni(),1);var $r=class{constructor(e,t,i,a,s){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=a,this.logger=s}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=Te(),a=u=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=u,e._errorCB?e._errorCB(u):(this.limitCompleteCount(),this.completeRequests[t]=e)},s=u=>{e._complete=1,e._responseData=u,e._downloadTime=Te()-i,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(u,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},n=()=>{e._finallyCB&&e._finallyCB()},o=()=>{e._retry=1,e._retryCB&&e._retryCB()};e._request=qi(t,s,()=>a("error"),o),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(n),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=Te()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=Te();if(Object.keys(this.activeRequests).length>=e)return!1;let i=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),i>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),i),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,Mf.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,a){let s={};return s.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=a,n._finallyCB=s._finallyCB,n._error||n._complete?(this._removeFromActive(e),setTimeout(()=>{n._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(n._responseData,n._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),i(n._errorMsg)),s._finallyCB&&s._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let o=this.pendingQueue.indexOf(e);o!==-1&&this.pendingQueue.splice(o,1),this.logger(`Request not prefetched, starting new request, url=${e}${o===-1?"":"; removed pending"}`),this._sendRequest(s,e)}},s._cb=t,s._errorCB=i,s._retryCB=a,s.abort=function(){s.request&&s.request.abort()},s.withFinally=n=>(s._finallyCB=n,s),s}prefetch(e){this.activeRequests[e]||this.completeRequests[e]?this.logger(`Request already active for url=${e}`):(this.logger(`Added to pending queue; url=${e}`),this.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}};var Df=require("@vkontakte/videoplayer-shared/es2024");var Ls=1e4,cu=3;var Dk=6e4,Vk=10,Bk=1,Ok=500,Mr=class{constructor(e){this.paused=!1;this.autoQuality=!0;this.autoQualityLimits=void 0;this.buffering=!0;this.destroyed=!1;this.videoPlayStarted=!1;this.lowLatency=!1;this.bitrate=0;this.manifest=[];this.sourceBuffer=0;this.bufferStates=[];this.sourceJitter=-1;this.waitingForFirstBufferAfterSrcChange=!1;this.params=e,this.soundProhibitedEvent$=new Df.Subject,this.chunkRateEstimator=new Rr(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=lu(e),this.bitrateSwitcher=this._initBitrateSwitcher(),this._initManifest()}setAutoQualityEnabled(e){this.autoQuality=e}setAutoQualityLimits(e){this.autoQualityLimits=e}switchByName(e){let t;for(let i=0;i<this.manifest.length;++i)if(t=this.manifest[i],t.name===e){this._switchToQuality(t);return}}catchUp(){this.rep&&this.rep.stop(),this.currentManifestEntry&&(this.paused=!1,this._initPlayerWith(this.currentManifestEntry),this._notifyBuffering(!0))}stop(){this.params.videoElement.pause(),this.rep&&(this.rep.stop(),this.rep=null)}pause(){this.paused=!0,this.params.videoElement.pause(),this.videoPlayStarted=!1,this._notifyBuffering(!1)}play(){this.paused=!1;let e=this.lowLatency&&this._getBufferSizeSec()>this.sourceJitter+5;this.rep&&!e?(this.bufferStates=[],this.videoPlayStarted=!1,this.shouldPlay()?this._playVideoElement():this._notifyBuffering(!0)):this.catchUp()}startPlay(e,t){this.autoQuality=t,this._initPlayerWith(e)}destroy(){this.destroyed=!0,this.rep&&(this.rep.stop(),this.rep=null),this.manifestRequest&&this.manifestRequest.abort(),this.manifestRefetchTimer&&(clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=void 0)}reinit(e){this.manifestUrl=e,this.urlResolver=lu(e),this.catchUp()}_handleNetworkError(){this.params.logger("Fatal network error"),this.params.playerCallback({name:"error",type:"network"})}_retryCallback(){this.params.playerCallback({name:"retry"})}_getBufferSizeSec(){let e=this.params.videoElement,t=0,i=e.buffered.length;return i!==0&&(t=e.buffered.end(i-1)-Math.max(e.currentTime,e.buffered.start(0))),t}_notifyBuffering(e){this.destroyed||(this.params.logger(`buffering: ${e}`),this.params.playerCallback({name:"buffering",isBuffering:e}),this.buffering=e)}_initVideo(){let{videoElement:e,logger:t}=this.params;e.addEventListener("error",()=>{!!e.error&&!this.destroyed&&(t(`Video element error: ${e.error?.code}`),this.params.playerCallback({name:"error",type:"media"}))}),e.addEventListener("timeupdate",()=>{let i=this._getBufferSizeSec();!this.paused&&i<.3?this.buffering||(this.buffering=!0,window.setTimeout(()=>{!this.paused&&this.buffering&&this._notifyBuffering(!0)},(i+.1)*1e3)):this.buffering&&this.videoPlayStarted&&this._notifyBuffering(!1)}),e.addEventListener("playing",()=>{t("playing")}),e.addEventListener("stalled",()=>this._fixupStall()),e.addEventListener("waiting",()=>this._fixupStall())}_fixupStall(){let{logger:e,videoElement:t}=this.params,i=t.buffered.length,a;i!==0&&!this.waitingForFirstBufferAfterSrcChange&&(a=t.buffered.start(i-1),t.currentTime<a&&(e("Fixup stall"),t.currentTime=a))}_selectQuality(e){let{videoElement:t}=this.params,i,a,s,n=t&&1.62*(Q.display.pixelRatio||1)*t.offsetHeight||520;for(let o=0;o<this.manifest.length;++o){s=this.manifest[o];let{max:u,min:l}=this.autoQualityLimits||{};!Tf({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,Cf.default)(this.manifest,-1).video.height})&&(u&&s.video.height>u||l&&s.video.height<l)||(s.bitrate<e&&n>Math.min(s.video.height,s.video.width)?(!a||s.bitrate>a.bitrate)&&(a=s):(!i||i.bitrate>s.bitrate)&&(i=s))}return a||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||(0,Ge.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:a,playerCallback:s}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),a.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,a.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{$f(a,"progress",()=>{a.buffered.length?(a.currentTime=a.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,s({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new $r(cu,Ls,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:i,playerCallback:a}=this.params,s=!1,n=null,o=null,u=null,l=null,d=!1,p=()=>{let $=s&&(!d||d===this.rep);return $||t("Not running!"),$},h=($,k,Y)=>{u&&u.abort(),u=qi(this.urlResolver.resolve($,!1),k,Y,()=>this._retryCallback()).withTimeout(Ls).withBitrateReporting(this.bitrateSwitcher).withRetryCount(cu).withFinally(()=>{u=null}).send()},m=($,k,Y)=>{(0,Ge.assertNonNullable)(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve($,!1),k,Y,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},b=$=>{let k=i.playbackRate;i.playbackRate!==$&&(t(`Playback rate switch: ${k}=>${$}`),i.playbackRate=$)},v=$=>{this.lowLatency=$,t(`lowLatency changed to ${$}`),T()},T=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)b(1);else{let $=this._getBufferSizeSec();if(this.bufferStates.length<5){b(1);return}let Y=Te()-1e4,z=0;for(let K=0;K<this.bufferStates.length;K++){let E=this.bufferStates[K];$=Math.min($,E.buf),E.ts<Y&&z++}this.bufferStates.splice(0,z),t(`update playback rate; minBuffer=${$} drop=${z} jitter=${this.sourceJitter}`);let X=$-Bk;this.sourceJitter>=0?X-=this.sourceJitter/2:this.sourceJitter-=1,X>3?b(1.15):X>1?b(1.1):X>.3?b(1.05):b(1)}},I=$=>{let k,Y=()=>k&&k.start?k.start.length:0,z=M=>k.start[M]/1e3,X=M=>k.dur[M]/1e3,K=M=>k.fragIndex+M,E=(M,Z)=>({chunkIdx:K(M),startTS:z(M),dur:X(M),discontinuity:Z}),U=()=>{let M=0;if(k&&k.dur){let Z=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,re=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,ce=Z;this.sourceJitter>1&&(ce+=this.sourceJitter-1);let ge=k.dur.length-1;for(;ge>=0&&(ce-=k.dur[ge],!(ce<=0));--ge);M=Math.min(ge,k.dur.length-1-re),M=Math.max(M,0)}return E(M,!0)},C=M=>{let Z=Y();if(!(Z<=0)){if((0,Ge.isNonNullable)(M)){for(let re=0;re<Z;re++)if(z(re)>M)return E(re)}return U()}},ie=M=>{let Z=Y(),re=M?M.chunkIdx+1:0,ce=re-k.fragIndex;if(!(Z<=0)){if(!M||ce<0||ce-Z>Vk)return t(`Resync: offset=${ce} bChunks=${Z} chunk=`+JSON.stringify(M)),U();if(!(ce>=Z))return E(re-k.fragIndex,!1)}},D=(M,Z,re)=>{l&&l.abort(),l=qi(this.urlResolver.resolve(M,!0,this.lowLatency),Z,re,()=>this._retryCallback()).withTimeout(Ls).withRetryCount(cu).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(M,Z)=>{D($,re=>{if(!p())return;k=re;let ce=!!k.lowLatency;ce!==this.lowLatency&&v(ce);let ge=0;for(let Re=0;Re<k.dur.length;++Re)ge+=k.dur[Re];ge>0&&((0,Ge.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(ge/k.dur.length)),a({name:"index",zeroTime:k.zeroTime,shiftDuration:k.shiftDuration}),this.sourceJitter=k.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,k.jitter/1e3)):1,M(C(Z))},()=>this._handleNetworkError())},nextChunk:ie}},A=()=>{s=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,Ge.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return d={start:$=>{let{videoElement:k,logger:Y}=this.params,z=I(e.jidxUrl),X,K,E,U,C=0,ie,D,be,M=()=>{ie&&(clearTimeout(ie),ie=void 0);let H=Math.max(Ok,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Me=C+H,ke=Te(),ve=Math.min(1e4,Me-ke);C=ke;let Ye=()=>{l||p()&&z.seek(()=>{p()&&(C=Te(),Z(),M())})};ve>0?ie=window.setTimeout(()=>{this.paused?M():Ye()},ve):Ye()},Z=()=>{let H;for(;H=z.nextChunk(U);)U=H,$e(H);let Me=z.nextChunk(E);if(Me){if(E&&Me.discontinuity){Y("Detected discontinuity; restarting playback"),this.paused?M():(A(),this._initPlayerWith(e));return}Re(Me)}else M()},re=(H,Me)=>{if(!p()||!this.sourceBuffer)return;let ke,ve,Ye,Mt=lt=>{window.setTimeout(()=>{p()&&re(H,Me)},lt)};if(this.sourceBuffer.updating)Y("Source buffer is updating; delaying appendBuffer"),Mt(100);else{let lt=Te(),qe=k.currentTime;!this.paused&&k.buffered.length>1&&D===qe&&lt-be>500&&(Y("Stall suspected; trying to fix"),this._fixupStall()),D!==qe&&(D=qe,be=lt);let Ct=this._getBufferSizeSec();if(Ct>30)Y(`Buffered ${Ct} seconds; delaying appendBuffer`),Mt(2e3);else try{this.sourceBuffer.appendBuffer(H),this.videoPlayStarted?(this.bufferStates.push({ts:lt,buf:Ct}),T(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Me&&Me()}catch(ct){if(ct.name==="QuotaExceededError")Y("QuotaExceededError; delaying appendBuffer"),Ye=this.sourceBuffer.buffered.length,Ye!==0&&(ke=this.sourceBuffer.buffered.start(0),ve=qe,ve-ke>4&&this.sourceBuffer.remove(ke,ve-3)),Mt(1e3);else throw ct}}},ce=()=>{K&&X&&(Y([`Appending chunk, sz=${K.byteLength}:`,JSON.stringify(E)]),re(K,function(){K=null,Z()}))},ge=H=>e.fragUrlTemplate.replace("%%id%%",H.chunkIdx),Re=H=>{p()&&m(ge(H),(Me,ke)=>{if(p()){if(ke/=1e3,K=Me,E=H,n=H.startTS,ke){let ve=Math.min(10,H.dur/ke);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*ve:ve}ce()}},()=>this._handleNetworkError())},$e=H=>{p()&&((0,Ge.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(ge(H),!1)))},ee=H=>{p()&&(e.cachedHeader=H,re(H,()=>{X=!0,ce()}))};s=!0,z.seek(H=>{if(p()){if(C=Te(),!H){M();return}U=H,!(0,Ge.isNullable)($)||H.startTS>$?Re(H):(E=H,Z())}},$),e.cachedHeader?ee(e.cachedHeader):h(e.headerUrl,ee,()=>this._handleNetworkError())},stop:A,getTimestampSec:()=>n},d}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,a;e.bitrate!==this.bitrate&&(this.rep&&(a=this.rep.getTimestampSec(),(0,Ge.isNonNullable)(a)&&(a+=.1),this.rep.stop()),this.currentManifestEntry=e,this.rep=this._representation(e),t(`switch to quality: codecs=${e.codecs}; headerUrl=${e.headerUrl}; bitrate=${e.bitrate}`),this.bitrate=e.bitrate,(0,Ge.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(a),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,Ge.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=p=>{if(!this.autoQuality)return;let h,m,b;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&p<this.bitrate&&(m=this._getBufferSizeSec(),b=p/this.bitrate,m>10&&b>.8||m>15&&b>.5||m>20&&b>.3)){e(`Not switching: buffer=${Math.floor(m)}; bitrate=${this.bitrate}; newRate=${Math.floor(p)}`);return}h=this._selectQuality(p),h?this._switchToQuality(h):e(`Could not find quality by bitrate ${p}`)},s={updateChunk:(h,m)=>{let b=Te();if(this.chunkRateEstimator.addInterval(h,b,m)){let T=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:m,duration:b-h,speed:T}),!0}},get:()=>{let h=this.chunkRateEstimator.getBitRate();return h?h*.85:0}},n=-1/0,o,u=!0,l=()=>{let p=s.get();if(p&&o&&this.autoQuality){if(u&&p>o&&uu(n)<3e4)return;i(p)}u=this.autoQuality};return{updateChunk:(p,h)=>{let m=s.updateChunk(p,h);return m&&l(),m},notifySwitch:p=>{let h=Te();p<o&&(n=h),o=p}}}_fetchManifest(e,t,i){this.manifestRequest=qi(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(Ls).withRetryCount(this.params.config.manifestRetryMaxCount).withRetryInterval(this.params.config.manifestRetryInterval,this.params.config.manifestRetryMaxInterval).send().withFinally(()=>{this.manifestRequest=void 0})}_playVideoElement(){let{videoElement:e}=this.params;Ne(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{t||(this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{logger:t,playerCallback:i,videoElement:a}=this.params,s=n=>{let o=[];return n?.length?(n.forEach((u,l)=>{u.video&&a.canPlayType(u.codecs).replace(/no/,"")&&window.MediaSource?.isTypeSupported?.(u.codecs)&&(u.index=l,o.push(u))}),o.sort(function(u,l){return u.video&&l.video?l.video.height-u.video.height:l.bitrate-u.bitrate}),o):(i({name:"error",type:"empty_manifest"}),[])};this.manifest=s(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),i({name:"manifest",manifest:this.manifest})}_refetchManifest(e){this.destroyed||(this.manifestRefetchTimer&&clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=window.setTimeout(()=>{this._fetchManifest(e,t=>{this.destroyed||(this._handleManifestUpdate(t),this._refetchManifest(e))},()=>this._refetchManifest(e))},Dk))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var Vf=F(Li(),1),ue=require("@vkontakte/videoplayer-shared/es2024"),du=class{constructor(){this.onDroopedVideoFramesLimit$=new ue.Subject;this.subscription=new ue.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new ue.Subject;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>t?.height===this.video.videoHeight&&t?.width===this.video.videoWidth);e&&!(0,ue.isInvariantQuality)(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,a=t-this.prevDroppedVideoFrames,s=1-(i-a)/i;!isNaN(s)&&s>0&&this.log({message:`[dropped]. current dropped percent: ${s}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(s)&&s>=this.droppedFramesChecker.percentLimit&&(0,ue.isHigher)(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=(this.limitCounts[this.currentQuality]??0)+1,this.maxQualityLimit=this.getMaxQualityLimit(this.currentQuality),this.currentTimer&&window.clearTimeout(this.currentTimer),this.currentTimer=window.setTimeout(()=>this.maxQualityLimit=this.getMaxQualityLimit(),this.droppedFramesChecker.qualityUpWaitingTime),this.onDroopedVideoFramesLimitTrigger()),this.savePrevFrameCounts(e,t)}}connect(e){this.log=e.logger.createComponentLog("DroppedFramesManager"),this.video=e.video,this.isAuto=e.isAuto,this.tracks=e.tracks,this.droppedFramesChecker=e.droppedFramesChecker,this.subscription.add(e.playing$.subscribe(()=>this.playing=!0)),this.subscription.add(e.pause$.subscribe(()=>this.playing=!1)),this.isEnabled&&this.subscribe()}destroy(){this.currentTimer&&window.clearTimeout(this.currentTimer),this.subscription.unsubscribe()}get droppedVideoMaxQualityLimit(){return this.maxQualityLimit}subscribe(){this.subscription.add((0,ue.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,ue.interval)(this.droppedFramesChecker.checkTime).pipe((0,ue.filter)(()=>this.playing),(0,ue.filter)(()=>{let a=!!this.isForceCheckCounter;return a&&(this.isForceCheckCounter-=1),!a})),t=this.forceChecker$.pipe((0,ue.debounce)(this.droppedFramesChecker.checkTime)),i=(0,ue.merge)(e,t);this.subscription.add(i.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:i}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,i),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){let t=(0,Vf.default)(this.limitCounts).filter(([,i])=>i>=this.droppedFramesChecker.countLimit).sort(([i],[a])=>(0,ue.isLower)(i,a)?-1:1)?.[0]?.[0];return e??t}get isEnabled(){return this.droppedFramesChecker.enabled&&this.isDroppedFramesCheckerSupport}get isDroppedFramesCheckerSupport(){return!!this.video&&typeof this.video.getVideoPlaybackQuality=="function"}savePrevFrameCounts(e,t){this.prevTotalVideoFrames=e,this.prevDroppedVideoFrames=t}},Rs=du;var $s=require("@vkontakte/videoplayer-shared/es2024"),Bf=require("@vkontakte/videoplayer-shared/es2024");var Cr=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement;var _k=(r,e)=>new $s.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},a=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Cr()))},{...i,...e});a.observe(r);let s=(0,Bf.fromEvent)(document,"visibilitychange").pipe((0,$s.map)(n=>!document.hidden||Cr())).subscribe(n=>t.next(n));return()=>{a.unobserve(r),s.unsubscribe()}}),Je=_k;var Nk=["paused","playing","ready"],Fk=["paused","playing","ready"],Dr=class{constructor(e){this.subscription=new V.Subscription;this.videoState=new j("stopped");this.representations$=new V.ValueSubject([]);this.droppedFramesManager=new Rs;this.maxSeekBackTime$=new V.ValueSubject(1/0);this.zeroTime$=new V.ValueSubject(void 0);this.liveOffset=new oi;this._dashCb=e=>{switch(e.name){case"buffering":{let t=e.isBuffering;this.params.output.isBuffering$.next(t);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:V.ErrorCategory.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let t=e.manifest,i=[];for(let a of t){let s=a.name??a.index.toString(10),n=qt(a.name)??(0,V.videoSizeToQuality)(a.video),o=a.bitrate/1e3,u={...a.video};if(!n)continue;let l={id:s,quality:n,bitrate:o,size:u};i.push({track:l,representation:a})}this.representations$.next(i),this.params.output.availableVideoTracks$.next(i.map(({track:a})=>a)),this.videoState.getTransition()?.to==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let t=e.quality,i=this.representations$.getValue().find(({representation:a})=>a===t)?.track;this.params.output.hostname$.next(new URL(t.headerUrl,this.params.source.url).hostname),(0,V.isNonNullable)(i)&&this.params.output.currentVideoTrack$.next(i);break}case"bandwidth":{let{size:t,duration:i}=e;this.params.dependencies.throughputEstimator.addRawSpeed(t,i);break}case"index":{this.maxSeekBackTime$.next(e.shiftDuration||0),this.zeroTime$.next(e.zeroTime);break}}};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),a=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; seekState: ${JSON.stringify(s)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.dash.destroy(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"));return}if(t)return;let n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if((0,pu.default)(Fk,e)&&(n||o)){this.prepare();return}if(a?.to!=="paused"&&s.state==="requested"&&(0,pu.default)(Nk,e)){this.seek(s.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(xe(this.params.source.url));return;case"manifest_ready":this.videoState.startTransitionTo("ready"),this.prepare();break;case"ready":if(i==="paused")this.videoState.setState("paused");else if(i==="playing"){this.videoState.startTransitionTo("playing");let u=a?.from;u&&u==="ready"&&this.dash.catchUp(),this.dash.play()}return;case"playing":i==="paused"&&(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.dash.pause());return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.dash.play(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let u=this.liveOffset.getTotalOffset();u>=this.maxSeekBackTime$.getValue()&&(u=0,this.liveOffset.resetTo(u)),this.liveOffset.resume(),this.params.output.position$.next(-u/1e3),this.dash.reinit(xe(this.params.source.url,u))}return;default:return(0,V.assertNever)(e)}};this.textTracksManager=new Xe(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=a=>{e.output.error$.next({id:"DashLiveProvider",category:V.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:a})};this.subscription.add((0,V.merge)(this.videoState.stateChangeStarted$.pipe((0,V.map)(a=>({transition:a,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,V.map)(a=>({transition:a,type:"end"})))).subscribe(({transition:a,type:s})=>{this.log({message:`[videoState change] ${s}: ${JSON.stringify(a)}`})})),this.video=Ve(e.container,e.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(ye(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let i=_e(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,V.map)(a=>a.map(({track:s})=>s)),(0,V.filter)(a=>!!a.length),(0,V.once)()).subscribe(a=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:a}))),this.subscription.add(i.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready")},t)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused")},t)).add(i.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.videoState.setState("playing")},t)).add(i.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe((0,V.filterChanged)(),(0,V.map)(a=>-a/1e3)).subscribe(this.params.output.duration$)).add((0,V.combine)({zeroTime:this.zeroTime$.pipe((0,V.filter)(V.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:a,position:s})=>this.params.output.liveTime$.next(a+s*1e3),t)).add(gt(this.video,this.params.desiredState.isLooped,t)).add(Oe(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Ke(this.video,this.params.desiredState.playbackRate,i.playbackRateState$,t)).add(i.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(i.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(i.playing$.subscribe(this.params.output.firstFrameEvent$)).add(i.canplay$.subscribe(this.params.output.canplay$)).add(i.inPiP$.subscribe(this.params.output.inPiP$)).add(i.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(Je(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:a,min:s}})=>{this.dash.setAutoQualityLimits({max:a&&(0,V.videoQualityToHeight)(a),min:s&&(0,V.videoQualityToHeight)(s)}),this.params.output.autoVideoTrackLimits$.next({max:a,min:s})})).add(this.videoState.stateChangeEnded$.subscribe(a=>{switch(a.to){case"stopped":this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":this.params.desiredState.playbackState.getTransition()?.to==="ready"&&this.params.desiredState.playbackState.setState("ready");break;case"paused":this.params.desiredState.playbackState.setState("paused");break;case"playing":this.params.desiredState.playbackState.setState("playing");break;default:return(0,V.assertNever)(a.to)}},t)).add((0,V.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,V.observableFrom)(["init"])).pipe((0,V.debounce)(0)).subscribe(this.syncPlayback,t))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Be(this.video)}createLiveDashPlayer(){let e=new Mr({videoElement:this.video,videoState:this.videoState,liveOffset:this.liveOffset,config:{maxParallelRequests:this.params.config.maxParallelRequests,minBuffer:this.params.tuning.live.minBuffer,minBufferSegments:this.params.tuning.live.minBufferSegments,lowLatencyMinBuffer:this.params.tuning.live.lowLatencyMinBuffer,lowLatencyMinBufferSegments:this.params.tuning.live.lowLatencyMinBufferSegments,isLiveCatchUpMode:this.params.tuning.live.isLiveCatchUpMode,manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){let e=this.representations$.getValue(),t=this.params.desiredState.videoTrack.getTransition()?.to??this.params.desiredState.videoTrack.getState(),i=this.params.desiredState.autoVideoTrackSwitching.getTransition()?.to??this.params.desiredState.autoVideoTrackSwitching.getState(),a=!i&&(0,V.isNonNullable)(t)?t:jt(e.map(({track:l})=>l),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),s=a?.id,n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.videoTrack.getState()?.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(a&&(n||s!==o)&&this.setVideoTrack(a),u&&this.setAutoQuality(i),n||u||s!==o){let l=e.find(({track:d})=>d.id===s)?.representation;(0,V.assertNonNullable)(l,"Representations missing"),this.dash.startPlay(l,i)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:i})=>i.id===e.id)?.representation;(0,V.assertNonNullable)(t,`No such representation ${e.id}`),this.dash.switchByName(t.name),this.params.desiredState.videoTrack.setState(e)}setAutoQuality(e){this.dash.setAutoQualityEnabled(e),this.params.desiredState.autoVideoTrackSwitching.setState(e)}seek(e){this.log({message:`[seek] position: ${e}`}),this.params.output.willSeekEvent$.next();let t=this.params.desiredState.playbackState.getState(),i=this.videoState.getState(),a=t==="paused"&&i==="paused",s=-e,n=s<=this.maxSeekBackTime$.getValue()?s:0;this.params.output.position$.next(e/1e3),this.dash.reinit(xe(this.params.source.url,n)),a&&this.dash.pause(),this.liveOffset.resetTo(n,a)}};var Of=Dr;var Yg=F(De(),1);var Ui=(r,e)=>{let t=0;for(let i=0;i<r.length;i++){let a=r.start(i)*1e3,s=r.end(i)*1e3;a<=e&&e<=s&&(t=s)}return Math.max(t-e,0)};var N=require("@vkontakte/videoplayer-shared/es2024");var Ms=class{constructor(){Object.defineProperty(this,"listeners",{value:{},writable:!0,configurable:!0})}addEventListener(e,t,i){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push({callback:t,options:i})}removeEventListener(e,t){if(!(e in this.listeners))return;let i=this.listeners[e];for(let a=0,s=i.length;a<s;a++)if(i[a].callback===t){i.splice(a,1);return}}dispatchEvent(e){if(!(e.type in this.listeners))return;let i=this.listeners[e.type].slice();for(let a=0,s=i.length;a<s;a++){let n=i[a];try{n.callback.call(this,e)}catch(o){Promise.resolve().then(()=>{throw o})}n.options&&n.options.once&&this.removeEventListener(e.type,n.callback)}return!e.defaultPrevented}},Hi=class extends Ms{constructor(){super(),this.listeners||Ms.call(this),Object.defineProperty(this,"aborted",{value:!1,writable:!0,configurable:!0}),Object.defineProperty(this,"onabort",{value:null,writable:!0,configurable:!0}),Object.defineProperty(this,"reason",{value:void 0,writable:!0,configurable:!0})}toString(){return"[object AbortSignal]"}dispatchEvent(e){e.type==="abort"&&(this.aborted=!0,typeof this.onabort=="function"&&this.onabort.call(this,e)),super.dispatchEvent(e)}},Vr=class{constructor(){Object.defineProperty(this,"signal",{value:new Hi,writable:!0,configurable:!0})}abort(e){let t;try{t=new Event("abort")}catch{typeof document<"u"?document.createEvent?(t=document.createEvent("Event"),t.initEvent("abort",!1,!1)):(t=document.createEventObject(),t.type="abort"):t={type:"abort",bubbles:!1,cancelable:!1}}let i=e;if(i===void 0)if(typeof document>"u")i=new Error("This operation was aborted"),i.name="AbortError";else try{i=new DOMException("signal is aborted without reason")}catch{i=new Error("This operation was aborted"),i.name="AbortError"}this.signal.reason=i,this.signal.dispatchEvent(t)}toString(){return"[object AbortController]"}};typeof Symbol<"u"&&Symbol.toStringTag&&(Vr.prototype[Symbol.toStringTag]="AbortController",Hi.prototype[Symbol.toStringTag]="AbortSignal");function Cs(r){return r.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log("__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill"),!0):typeof r.Request=="function"&&!r.Request.prototype.hasOwnProperty("signal")||!r.AbortController}function hu(r){typeof r=="function"&&(r={fetch:r});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:a=!1}=r;if(!Cs({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:a}))return{fetch:e,Request:s};let s=t;(s&&!s.prototype.hasOwnProperty("signal")||a)&&(s=function(l,d){let p;d&&d.signal&&(p=d.signal,delete d.signal);let h=new t(l,d);return p&&Object.defineProperty(h,"signal",{writable:!1,enumerable:!1,configurable:!0,value:p}),h},s.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let d=s&&s.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(d){let p;try{p=new DOMException("Aborted","AbortError")}catch{p=new Error("Aborted"),p.name="AbortError"}if(d.aborted)return Promise.reject(p);let h=new Promise((m,b)=>{d.addEventListener("abort",()=>b(p),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([h,n(u,l)])}return n(u,l)},Request:s}}var Br=Cs({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),_f=Br?hu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,St=Br?_f.fetch:window.fetch,I0=Br?_f.Request:window.Request,Pe=Br?Vr:window.AbortController,E0=Br?Hi:window.AbortSignal;var jg=F(De(),1),ju=F(fu(),1);var xb=F(Eb(),1),ji=require("@vkontakte/videoplayer-shared/es2024"),Pb=r=>{if(!r)return{id:"EmptyResponse",category:ji.ErrorCategory.PARSER,message:"Empty response"};if(r.length<=2&&r.match(/^\d+$/))return{id:`UVError#${r}`,category:ji.ErrorCategory.NETWORK,message:`UV Error ${r}`};let e=(0,xb.default)(r).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:ji.ErrorCategory.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(r,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:ji.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:ji.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var Qt=(r,e,t=0)=>{for(let i=0;i<r.length;i++)if(r.start(i)*1e3-t<=e&&r.end(i)*1e3+t>e)return!0;return!1};var g=require("@vkontakte/videoplayer-shared/es2024");var Ds=F(De(),1),Wi=F(Ut(),1),Vs=F(fu(),1);var Pw=(r,e={})=>{let i=e.timeout||1,a=performance.now();return window.setTimeout(()=>{r({get didTimeout(){return e.timeout?!1:performance.now()-a-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-a))}})},1)},kw=r=>window.clearTimeout(r),kb=r=>typeof r=="function"&&r?.toString().endsWith("{ [native code] }"),wb=!kb(window.requestIdleCallback)||!kb(window.cancelIdleCallback),yu=wb?Pw:window.requestIdleCallback,_r=wb?kw:window.cancelIdleCallback;var Cg=F(gs(),1);var Gt=require("@vkontakte/videoplayer-shared/es2024");var ww=18,Ab=!1;try{Ab=Q.browser.isSafari&&!!Q.browser.safariVersion&&Q.browser.safariVersion<=ww}catch(r){console.error(r)}var Tu=class{constructor(e){this.bufferFull$=new Gt.Subject;this.error$=new Gt.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{try{if(this.currentTask){let e=this.currentTask.signal?.aborted;this.currentTask.callback(!e),this.currentTask=null}this.queue.length&&this.pull()}catch(e){this.error$.next({id:"BufferTaskQueueUnknown",category:Gt.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:e})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(i=>{let a={operation:"append",data:e,signal:t,callback:i};this.queue.push(a),this.pull()})}async remove(e,t,i){return i&&i.aborted?!1:new Promise(a=>{let s={operation:"remove",from:e,to:t,signal:i,callback:a};this.queue.unshift(s),this.pull()})}async abort(e){return new Promise(t=>{let i,a=s=>{this.abortRequested=!1,t(s)};Ab&&e?i={operation:"safariAbort",init:e,callback:a}:i={operation:"abort",callback:a};for(let{callback:s}of this.queue)s(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if(e.signal?.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(a){a instanceof DOMException&&a.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):a instanceof DOMException&&a.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:Gt.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:a}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,Gt.assertNever)(t)}}},Lb=Tu;var Iu=r=>{let e=0;for(let t=0;t<r.length;t++)e+=r.end(t)-r.start(t);return e*1e3};var y=require("@vkontakte/videoplayer-shared/es2024");var J=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),this.size32=i<=e.buffer.byteLength-e.byteOffset?i:NaN;let a=this.size32?this.size32-8:void 0,s=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,s,a)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let a=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,a}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var Qi=class extends J{};var Nr=class extends J{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let a=this.content.byteOffset,s=a+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(a,s)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var Fr=class extends J{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let a=this.readString(4);this.compatibleBrands.push(a),i-=4}}};var qr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var se=class extends J{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var Ur=class extends se{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16()}};var Hr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var jr=class extends J{constructor(e,t){super(e,t),this.data=this.content}};var ui=class extends se{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let a=this.readUint32(),s=a>>>31,n=a<<1>>>1,o=this.readUint32();a=this.readUint32();let u=a>>>28,l=a<<3>>>3;this.segments.push({referenceType:s,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var Qr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Gr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Wr=class extends se{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var Yr=class extends se{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var zr=class extends se{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var Kr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Xr=class extends se{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var Jr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Zr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ea=class extends se{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var ta=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ia=class extends se{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var ra=class extends se{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var aa=class extends se{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let a=0;a<this.sampleCount;a++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var sa=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var na=class extends se{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var oa=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var Lw={ftyp:Fr,moov:qr,mvhd:Ur,moof:Hr,mdat:jr,sidx:ui,trak:Qr,mdia:Kr,mfhd:ea,tkhd:Xr,traf:ta,tfhd:ia,tfdt:ra,trun:aa,minf:Jr,sv3d:Gr,st3d:Wr,prhd:Yr,proj:Zr,equi:zr,uuid:Nr,stbl:sa,stsd:na,avc1:oa,unknown:Qi},wt=class r{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let s=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(s,new DataView(e.buffer,e.byteOffset+i));if(!n.size)break;t.push(n),i+=n.size}catch{break}return t}createBox(e,t){let i=Lw[e];return i?new i(t,new r):new Qi(t,new r)}};var Wt=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{this.index[t.type]??=[],this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children)})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var $w=new TextDecoder("ascii"),Mw=r=>$w.decode(new DataView(r.buffer,r.byteOffset+4,4))==="ftyp",Cw=r=>{let e=new ui(r,new wt),t=e.earliestPresentationTime/e.timescale*1e3,i=r.byteOffset+r.byteLength+e.firstOffset;return e.segments.map(s=>{if(s.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=s.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+s.referencedSize-1}};return t+=n,i+=s.referencedSize,o})},Dw=(r,e)=>{let i=new wt().parse(r),a=new Wt(i),s=a.findAll("moof"),n=e?a.findAll("uuid"):a.findAll("mdat");if(!(n.length&&s.length))return null;let o=s[0],u=n[n.length-1],l=o.source.byteOffset,p=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(r.buffer,l,p)},Vw=r=>{let t=new wt().parse(r),i=new Wt(t),a={},s=i.findAll("uuid");return s.length?s[s.length-1]:a},Bw=r=>{let t=new wt().parse(r);return new Wt(t).find("sidx")?.timescale},Ow=(r,e)=>{let i=new wt().parse(r),s=new Wt(i).findAll("traf"),n=s[s.length-1].children.find(p=>p.type==="tfhd"),o=s[s.length-1].children.find(p=>p.type==="tfdt"),u=s[s.length-1].children.find(p=>p.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((p,h)=>p+h,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},_w=r=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new wt().parse(r),a=new Wt(i);if(a.find("sv3d")){e.is3dVideo=!0;let n=a.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=a.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=a.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},Rb={validateData:Mw,parseInit:_w,getIndexRange:()=>{},parseSegments:Cw,parseFeedableSegmentChunk:Dw,getChunkEndTime:Ow,getServerLatencyTimestamps:Vw,getTimescaleFromIndex:Bw};var la=F(De(),1),At=require("@vkontakte/videoplayer-shared/es2024");var Mb=require("@vkontakte/videoplayer-shared/es2024");var $b={440786851:{type:"master"},17030:{type:"uint"},17143:{type:"uint"},17138:{type:"uint"},17139:{type:"uint"},17026:{type:"string"},17031:{type:"uint"},17029:{type:"uint"},236:{type:"binary"},408125543:{type:"master"},290298740:{type:"master"},19899:{type:"master"},21419:{type:"binary"},21420:{type:"uint"},357149030:{type:"master"},2807729:{type:"uint"},17545:{type:"float"},374648427:{type:"master"},174:{type:"master"},224:{type:"master"},30320:{type:"master"},30321:{type:"uint"},30322:{type:"master"},272869232:{type:"master"},524531317:{type:"master"},231:{type:"uint"},22612:{type:"master"},22743:{type:"uint"},167:{type:"uint"},171:{type:"uint"},163:{type:"binary"},160:{type:"master"},175:{type:"binary"},423732329:{type:"master"},307544935:{type:"master"},475249515:{type:"master"},187:{type:"master"},179:{type:"uint"},183:{type:"master"},247:{type:"uint"},241:{type:"uint"},240:{type:"uint"},178:{type:"uint"},21368:{type:"uint"},234:{type:"uint"},219:{type:"master"},150:{type:"uint"}},Cb=r=>{let e=r.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=ua(r,t),a=i in $b,s=a?$b[i].type:"binary",n=r.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(r.buffer,r.byteOffset+t+1,o-1),l=n&255>>o,d=ua(u),p=l*2**((o-1)*8)+d,h=t+o,m;return h+p>r.byteLength?m=new DataView(r.buffer,r.byteOffset+h):m=new DataView(r.buffer,r.byteOffset+h,p),{tag:a?i:"0x"+i.toString(16).toUpperCase(),type:s,tagHeaderSize:h,tagSize:h+p,value:m,valueSize:p}},ua=(r,e=r.byteLength)=>{switch(e){case 1:return r.getUint8(0);case 2:return r.getUint16(0);case 3:return r.getUint8(0)*2**16+r.getUint16(1);case 4:return r.getUint32(0);case 5:return r.getUint8(0)*2**32+r.getUint32(1);case 6:return r.getUint16(0)*2**32+r.getUint32(2);case 7:{let t=r.getUint8(0)*281474976710656+r.getUint16(1)*4294967296+r.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},ot=(r,e)=>{switch(e){case"int":return r.getInt8(0);case"uint":return ua(r);case"float":return r.byteLength===4?r.getFloat32(0):r.getFloat64(0);case"string":return new TextDecoder("ascii").decode(r);case"utf8":return new TextDecoder("utf-8").decode(r);case"date":return new Date(Date.UTC(2001,0)+r.getInt8(0)).getTime();case"master":return r;case"binary":return r;default:(0,Mb.assertNever)(e)}},li=(r,e)=>{let t=0;for(;t<r.byteLength;){let i=new DataView(r.buffer,r.byteOffset+t),a=Cb(i);if(!e(a))return;a.type==="master"&&li(a.value,e),t=a.value.byteOffset-r.byteOffset+a.valueSize}},Db=r=>{if(r.getUint32(0)!==440786851)return!1;let e,t,i,a=Cb(r);return li(a.value,({tag:s,type:n,value:o})=>(s===17143?e=ot(o,n):s===17026?t=ot(o,n):s===17029&&(i=ot(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Vb=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],Nw=[231,22612,22743,167,171,163,160,175],Fw=r=>{let e,t,i,a,s=!1,n=!1,o=!1,u,l,d=!1,p=0;return li(r,({tag:h,type:m,value:b,valueSize:v})=>{if(h===21419){let T=ot(b,m);l=ua(T)}else h!==21420&&(l=void 0);return h===408125543?(e=b.byteOffset,t=b.byteOffset+v):h===357149030?s=!0:h===290298740?n=!0:h===2807729?i=ot(b,m):h===17545?a=ot(b,m):h===21420&&l===475249515?u=ot(b,m):h===374648427?li(b,({tag:T,type:I,value:A})=>T===30321?(d=ot(A,I)===1,!1):!0):s&&n&&(0,la.default)(Vb,h)&&(o=!0),!o}),(0,At.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,At.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,At.assertNonNullable)(a,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(a/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:d,stereoMode:p,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},qw=r=>{if((0,At.isNullable)(r.cuesSeekPosition))return;let e=r.segmentStart+r.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},Uw=(r,e)=>{let t=!1,i=!1,a=o=>(0,At.isNonNullable)(o.time)&&(0,At.isNonNullable)(o.position),s=[],n;return li(r,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&a(n)&&s.push(n),n={};break;case 179:n&&(n.time=ot(l,u));break;case 183:break;case 241:n&&(n.position=ot(l,u));break;default:t&&(0,la.default)(Vb,o)&&(i=!0)}return!(t&&i)}),n&&a(n)&&s.push(n),s.map((o,u)=>{let{time:l,position:d}=o,p=s[u+1];return{status:"none",time:{from:l,to:p?p.time:e.segmentDuration},byte:{from:e.segmentStart+d,to:p?e.segmentStart+p.position-1:e.segmentEnd-1}}})},Hw=r=>{let e=0,t=!1;try{li(r,i=>i.tag===524531317?i.tagSize<=r.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,la.default)(Nw,i.tag)?(e+i.tagSize<=r.byteLength&&(e+=i.tagSize,t||=(0,la.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=r.byteLength&&t?new DataView(r.buffer,r.byteOffset,e):null},Bb={validateData:Db,parseInit:Fw,getIndexRange:qw,parseSegments:Uw,parseFeedableSegmentChunk:Hw};var ca=r=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(r);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Bb;case"mp4":return Rb}}throw new ReferenceError(`Unsupported mime type ${r}`)};var Vu=F(ig(),1),Ag=F(Li(),1),Lg=F(vg(),1),Rg=F(Ut(),1),Bu=F(Ni(),1);var Sg=F(De(),1),Lu=r=>{let e=r.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[a,s,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[a,s,n]=i;return!!(a&&parseInt(a,10)>=2&&n&&parseInt(n,10)>8)}case"avc1":{let a=i[0];if(!a||a.length!==6)return!1;let[s,n]=a.toUpperCase(),o=s+n;return(0,Sg.default)(["6E","7A","F4"],o)}}return!1};var pa=require("@vkontakte/videoplayer-shared/es2024");var yg=r=>{if(r.includes("/")){let e=r.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(r)};var Tg=r=>{try{let e=_A(),t=r.match(e),{groups:i}=t??{};if(i){let a={};if(i.extensions){let o=i.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(o||[]).forEach(u=>{a[u[0]]=u.slice(2)})}let s=i.variants?.split(/-/).filter(o=>o!==""),n={extlang:i.extlang,langtag:i.langtag,language:i.language,privateuse:i.privateuse||i.privateuse2,region:i.region,script:i.script,extensions:a,variants:s};return Object.keys(n).forEach(o=>{let u=n[o];(typeof u>"u"||u==="")&&delete n[o]}),n}return null}catch{return null}};function _A(){let r="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
64
- (?<language>${`(?:[a-z]{2,3}(?:-${r})?|[a-z]{4}|[a-z]{5,8})`})
95
+ [selected audio track] ${w?.id}
96
+ `}),w},Yn=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,L.assertNotEmptyArray)(t,zn);let c=r.considerPlaybackRate&&(0,L.isNonNullable)(a)?a:1,p=ng.get(t);p||(p=[...t].sort(Ar(-1)),ng.set(t,p));let d=s.bitrate;(0,L.assertNonNullable)(d);let h=c*jn(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),m,g=Ts(s,e,t,r.minVideoAudioRatio),y=l||i;(0,L.isNonNullable)(y)&&isFinite(y)&&(m=p.find(x=>(0,L.isNonNullable)(x.bitrate)&&(0,L.isNonNullable)(g?.bitrate)?y-d>=x.bitrate*h&&x.bitrate>=g.bitrate:!1)),m||(m=g);let T=o?.last,w=m&&Gn(r,u,m,o);return(0,L.isNonNullable)(o)&&w?.bitrate!==T?.bitrate&&u({message:`
97
+ [AUDIO TRACKS ABR]
98
+ [available audio tracks]
99
+ ${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
100
+ `)}
101
+
102
+ [tuning]
103
+ ${(0,Ji.default)(r??{}).map(([x,M])=>`${x}: ${M}`).join(`
104
+ `)}
105
+
106
+ [limit params]
107
+ estimatedThroughput: ${i},
108
+ stallsPredictedThroughput: ${l},
109
+ reserve: ${d},
110
+ playbackRate: ${a},
111
+ playbackRateFactor: ${c},
112
+ forwardBufferHealth: ${n},
113
+ bitrateFactor: ${h},
114
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
115
+
116
+ [selected audio track] ${w?.id}
117
+ `}),w};var Ne=s=>new URL(s).hostname;var G=require("@vkontakte/videoplayer-shared/es2024");var gg=q(Ht(),1);var hg=q(wt(),1),pg=s=>{if(s instanceof DOMException&&(0,hg.default)(["Failed to load because no supported source was found.","The element has no supported sources."],s.message))throw s;return!(s instanceof DOMException&&(s.code===20||s.name==="AbortError"))},et=async(s,e)=>{let t=s.muted;try{await s.play()}catch(i){if(!pg(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{await s.play()}catch(r){return pg(r)&&(s.muted=!1,console.warn(r)),!1}}return!0};var Lt=require("@vkontakte/videoplayer-shared/es2024");var fg=q(Ki(),1),ei=require("@vkontakte/videoplayer-shared/es2024");function Ge(){return(0,ei.now)()}function Nl(s){return Ge()-s}function Ul(s){let e=s.split("/"),t=e.slice(0,e.length-1).join("/"),i=/^([a-z]+:)?\/\//i,r=n=>i.test(n);return{resolve:(n,o,u=!1)=>{r(n)||(n.startsWith("/")||(n="/"+n),n=t+n);let l=n.indexOf("?")>-1?"&":"?";return u&&(n+=l+"lowLat=1",l="&"),o&&(n+=l+"_rnd="+Math.floor(999999999*Math.random())),n}}}function mg(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function Rr(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,l=0,c,p,d=!1,h="arraybuffer",m=7e3,g=2e3,y=()=>{if(u)return;(0,ei.assertNonNullable)(c);let A=Nl(c),R;if(A<g){R=g-A,setTimeout(y,R);return}g*=2,g>m&&(g=m),n&&n.abort(),n=new r,F()},T=A=>(a=A,U),w=A=>(p=A,U),x=()=>(h="json",U),M=()=>{if(!u){if(--l>=0){y(),i&&i();return}u=!0,p&&p(),t&&t()}},$=A=>(d=A,U),F=()=>{c=Ge(),n=new r,n.open("get",s);let A=0,R,V=0,ge=()=>((0,ei.assertNonNullable)(c),Math.max(c,Math.max(R||0,V||0)));if(a&&n.addEventListener("progress",N=>{let re=Ge();a.updateChunk&&N.loaded>A&&(a.updateChunk(ge(),N.loaded-A),A=N.loaded,R=re)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>M())),n.addEventListener("load",()=>{if(u)return;(0,ei.assertNonNullable)(n);let N=n.status;if(N>=200&&N<300){let{response:re,responseType:ce}=n,Te=re?.byteLength;if(typeof Te=="number"&&a){let Be=Te-A;Be&&a.updateChunk&&a.updateChunk(ge(),Be)}ce==="json"&&(!re||!(0,fg.default)(re).length)?M():(p&&p(),e(re))}else M()}),n.addEventListener("error",()=>{M()}),d){let N=()=>{(0,ei.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(V=Ge(),n.removeEventListener("readystatechange",N))};n.addEventListener("readystatechange",N)}return n.responseType=h,n.send(),U},U={withBitrateReporting:T,withParallel:$,withJSONResponse:x,withRetryCount:A=>(l=A,U),withRetryInterval:(A,R)=>((0,ei.isNonNullable)(A)&&(g=A),(0,ei.isNonNullable)(R)&&(m=R),U),withTimeout:A=>(o=A,U),withFinally:w,send:F,abort:()=>{n&&(n.abort(),n=void 0),u=!0,p&&p()}};return U}var Is=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,r=0;for(;this.intervals.length>0;){let a=this.intervals[0];if(a.end<=t)i+=a.end-a.start,r+=a.bytes,this.intervals.splice(0,1);else{if(a.start>=t)break;{let n=t-a.start,o=a.end-a.start;i+=n;let u=a.bytes*n/o;r+=u,a.start=t,a.bytes-=u}}}if(r>0&&i>0){let a=r*8/(i/1e3);return this._updateRate(a),this.logger(`rate updated, new=${Math.round(a/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(r)}/${Math.round(i)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,i){return this.intervals.push(this._createInterval(e,t,i)),this._joinIntervals(),this.intervals.length>100&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:"warn"}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var bg=q(Ki(),1);var xs=class{constructor(e,t,i,r,a){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=r,this.logger=a}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=Ge(),r=u=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=u,e._errorCB?e._errorCB(u):(this.limitCompleteCount(),this.completeRequests[t]=e)},a=u=>{e._complete=1,e._responseData=u,e._downloadTime=Ge()-i,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(u,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},n=()=>{e._finallyCB&&e._finallyCB()},o=()=>{e._retry=1,e._retryCB&&e._retryCB()};e._request=Rr(t,a,()=>r("error"),o),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(n),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=Ge()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=Ge();if(Object.keys(this.activeRequests).length>=e)return!1;let i=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),i>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),i),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,bg.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,r){let a={};return a.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=r,n._finallyCB=a._finallyCB,n._error||n._complete?(this._removeFromActive(e),setTimeout(()=>{n._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(n._responseData,n._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),i(n._errorMsg)),a._finallyCB&&a._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let o=this.pendingQueue.indexOf(e);o!==-1&&this.pendingQueue.splice(o,1),this.logger(`Request not prefetched, starting new request, url=${e}${o===-1?"":"; removed pending"}`),this._sendRequest(a,e)}},a._cb=t,a._errorCB=i,a._retryCB=r,a.abort=function(){a.request&&a.request.abort()},a.withFinally=n=>(a._finallyCB=n,a),a}prefetch(e){this.activeRequests[e]||this.completeRequests[e]?this.logger(`Request already active for url=${e}`):(this.logger(`Added to pending queue; url=${e}`),this.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}};var Sg=require("@vkontakte/videoplayer-shared/es2024");var Kn=1e4,ql=3;var PA=6e4,kA=10,wA=1,AA=500,Es=class{constructor(e){this.paused=!1;this.autoQuality=!0;this.autoQualityLimits=void 0;this.buffering=!0;this.destroyed=!1;this.videoPlayStarted=!1;this.lowLatency=!1;this.bitrate=0;this.manifest=[];this.sourceBuffer=0;this.bufferStates=[];this.sourceJitter=-1;this.waitingForFirstBufferAfterSrcChange=!1;this.params=e,this.soundProhibitedEvent$=new Sg.Subject,this.chunkRateEstimator=new Is(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=Ul(e),this.bitrateSwitcher=this._initBitrateSwitcher(),this._initManifest()}setAutoQualityEnabled(e){this.autoQuality=e}setAutoQualityLimits(e){this.autoQualityLimits=e}switchByName(e){let t;for(let i=0;i<this.manifest.length;++i)if(t=this.manifest[i],t.name===e){this._switchToQuality(t);return}}catchUp(){this.rep&&this.rep.stop(),this.currentManifestEntry&&(this.paused=!1,this._initPlayerWith(this.currentManifestEntry),this._notifyBuffering(!0))}stop(){this.params.videoElement.pause(),this.rep&&(this.rep.stop(),this.rep=null)}pause(){this.paused=!0,this.params.videoElement.pause(),this.videoPlayStarted=!1,this._notifyBuffering(!1)}play(){this.paused=!1;let e=this.lowLatency&&this._getBufferSizeSec()>this.sourceJitter+5;this.rep&&!e?(this.bufferStates=[],this.videoPlayStarted=!1,this.shouldPlay()?this._playVideoElement():this._notifyBuffering(!0)):this.catchUp()}startPlay(e,t){this.autoQuality=t,this._initPlayerWith(e)}destroy(){this.destroyed=!0,this.rep&&(this.rep.stop(),this.rep=null),this.manifestRequest&&this.manifestRequest.abort(),this.manifestRefetchTimer&&(clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=void 0)}reinit(e){this.manifestUrl=e,this.urlResolver=Ul(e),this.catchUp()}_handleNetworkError(){this.params.logger("Fatal network error"),this.params.playerCallback({name:"error",type:"network"})}_retryCallback(){this.params.playerCallback({name:"retry"})}_getBufferSizeSec(){let e=this.params.videoElement,t=0,i=e.buffered.length;return i!==0&&(t=e.buffered.end(i-1)-Math.max(e.currentTime,e.buffered.start(0))),t}_notifyBuffering(e){this.destroyed||(this.params.logger(`buffering: ${e}`),this.params.playerCallback({name:"buffering",isBuffering:e}),this.buffering=e)}_initVideo(){let{videoElement:e,logger:t}=this.params;e.addEventListener("error",()=>{!!e.error&&!this.destroyed&&(t(`Video element error: ${e.error?.code}`),this.params.playerCallback({name:"error",type:"media"}))}),e.addEventListener("timeupdate",()=>{let i=this._getBufferSizeSec();!this.paused&&i<.3?this.buffering||(this.buffering=!0,window.setTimeout(()=>{!this.paused&&this.buffering&&this._notifyBuffering(!0)},(i+.1)*1e3)):this.buffering&&this.videoPlayStarted&&this._notifyBuffering(!1)}),e.addEventListener("playing",()=>{t("playing")}),e.addEventListener("stalled",()=>this._fixupStall()),e.addEventListener("waiting",()=>this._fixupStall())}_fixupStall(){let{logger:e,videoElement:t}=this.params,i=t.buffered.length,r;i!==0&&!this.waitingForFirstBufferAfterSrcChange&&(r=t.buffered.start(i-1),t.currentTime<r&&(e("Fixup stall"),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,i,r,a,n=t&&1.62*(W.display.pixelRatio||1)*t.offsetHeight||520;for(let o=0;o<this.manifest.length;++o){a=this.manifest[o];let{max:u,min:l}=this.autoQualityLimits||{};!ag({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,gg.default)(this.manifest,-1).video.height})&&(u&&a.video.height>u||l&&a.video.height<l)||(a.bitrate<e&&n>Math.min(a.video.height,a.video.width)?(!r||a.bitrate>r.bitrate)&&(r=a):(!i||i.bitrate>a.bitrate)&&(i=a))}return r||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||(0,Lt.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:r,playerCallback:a}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{mg(r,"progress",()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,a({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new xs(ql,Kn,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:i,playerCallback:r}=this.params,a=!1,n=null,o=null,u=null,l=null,c=!1,p=()=>{let M=a&&(!c||c===this.rep);return M||t("Not running!"),M},d=(M,$,F)=>{u&&u.abort(),u=Rr(this.urlResolver.resolve(M,!1),$,F,()=>this._retryCallback()).withTimeout(Kn).withBitrateReporting(this.bitrateSwitcher).withRetryCount(ql).withFinally(()=>{u=null}).send()},h=(M,$,F)=>{(0,Lt.assertNonNullable)(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(M,!1),$,F,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},m=M=>{let $=i.playbackRate;i.playbackRate!==M&&(t(`Playback rate switch: ${$}=>${M}`),i.playbackRate=M)},g=M=>{this.lowLatency=M,t(`lowLatency changed to ${M}`),y()},y=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)m(1);else{let M=this._getBufferSizeSec();if(this.bufferStates.length<5){m(1);return}let F=Ge()-1e4,Q=0;for(let D=0;D<this.bufferStates.length;D++){let I=this.bufferStates[D];M=Math.min(M,I.buf),I.ts<F&&Q++}this.bufferStates.splice(0,Q),t(`update playback rate; minBuffer=${M} drop=${Q} jitter=${this.sourceJitter}`);let B=M-wA;this.sourceJitter>=0?B-=this.sourceJitter/2:this.sourceJitter-=1,B>3?m(1.15):B>1?m(1.1):B>.3?m(1.05):m(1)}},T=M=>{let $,F=()=>$&&$.start?$.start.length:0,Q=N=>$.start[N]/1e3,B=N=>$.dur[N]/1e3,D=N=>$.fragIndex+N,I=(N,re)=>({chunkIdx:D(N),startTS:Q(N),dur:B(N),discontinuity:re}),U=()=>{let N=0;if($&&$.dur){let re=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,ce=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,Te=re;this.sourceJitter>1&&(Te+=this.sourceJitter-1);let Be=$.dur.length-1;for(;Be>=0&&(Te-=$.dur[Be],!(Te<=0));--Be);N=Math.min(Be,$.dur.length-1-ce),N=Math.max(N,0)}return I(N,!0)},A=N=>{let re=F();if(!(re<=0)){if((0,Lt.isNonNullable)(N)){for(let ce=0;ce<re;ce++)if(Q(ce)>N)return I(ce)}return U()}},R=N=>{let re=F(),ce=N?N.chunkIdx+1:0,Te=ce-$.fragIndex;if(!(re<=0)){if(!N||Te<0||Te-re>kA)return t(`Resync: offset=${Te} bChunks=${re} chunk=`+JSON.stringify(N)),U();if(!(Te>=re))return I(ce-$.fragIndex,!1)}},V=(N,re,ce)=>{l&&l.abort(),l=Rr(this.urlResolver.resolve(N,!0,this.lowLatency),re,ce,()=>this._retryCallback()).withTimeout(Kn).withRetryCount(ql).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(N,re)=>{V(M,ce=>{if(!p())return;$=ce;let Te=!!$.lowLatency;Te!==this.lowLatency&&g(Te);let Be=0;for(let Ie=0;Ie<$.dur.length;++Ie)Be+=$.dur[Ie];Be>0&&((0,Lt.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(Be/$.dur.length)),r({name:"index",zeroTime:$.zeroTime,shiftDuration:$.shiftDuration}),this.sourceJitter=$.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,$.jitter/1e3)):1,N(A(re))},()=>this._handleNetworkError())},nextChunk:R}},w=()=>{a=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,Lt.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return c={start:M=>{let{videoElement:$,logger:F}=this.params,Q=T(e.jidxUrl),B,D,I,U,A=0,R,V,ge,N=()=>{R&&(clearTimeout(R),R=void 0);let z=Math.max(AA,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),qe=A+z,De=Ge(),he=Math.min(1e4,qe-De);A=De;let Ve=()=>{l||p()&&Q.seek(()=>{p()&&(A=Ge(),re(),N())})};he>0?R=window.setTimeout(()=>{this.paused?N():Ve()},he):Ve()},re=()=>{let z;for(;z=Q.nextChunk(U);)U=z,de(z);let qe=Q.nextChunk(I);if(qe){if(I&&qe.discontinuity){F("Detected discontinuity; restarting playback"),this.paused?N():(w(),this._initPlayerWith(e));return}Ie(qe)}else N()},ce=(z,qe)=>{if(!p()||!this.sourceBuffer)return;let De,he,Ve,bt=it=>{window.setTimeout(()=>{p()&&ce(z,qe)},it)};if(this.sourceBuffer.updating)F("Source buffer is updating; delaying appendBuffer"),bt(100);else{let it=Ge(),we=$.currentTime;!this.paused&&$.buffered.length>1&&V===we&&it-ge>500&&(F("Stall suspected; trying to fix"),this._fixupStall()),V!==we&&(V=we,ge=it);let gt=this._getBufferSizeSec();if(gt>30)F(`Buffered ${gt} seconds; delaying appendBuffer`),bt(2e3);else try{this.sourceBuffer.appendBuffer(z),this.videoPlayStarted?(this.bufferStates.push({ts:it,buf:gt}),y(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),qe&&qe()}catch(Ue){if(Ue.name==="QuotaExceededError")F("QuotaExceededError; delaying appendBuffer"),Ve=this.sourceBuffer.buffered.length,Ve!==0&&(De=this.sourceBuffer.buffered.start(0),he=we,he-De>4&&this.sourceBuffer.remove(De,he-3)),bt(1e3);else throw Ue}}},Te=()=>{D&&B&&(F([`Appending chunk, sz=${D.byteLength}:`,JSON.stringify(I)]),ce(D,function(){D=null,re()}))},Be=z=>e.fragUrlTemplate.replace("%%id%%",z.chunkIdx),Ie=z=>{p()&&h(Be(z),(qe,De)=>{if(p()){if(De/=1e3,D=qe,I=z,n=z.startTS,De){let he=Math.min(10,z.dur/De);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*he:he}Te()}},()=>this._handleNetworkError())},de=z=>{p()&&((0,Lt.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(Be(z),!1)))},O=z=>{p()&&(e.cachedHeader=z,ce(z,()=>{B=!0,Te()}))};a=!0,Q.seek(z=>{if(p()){if(A=Ge(),!z){N();return}U=z,!(0,Lt.isNullable)(M)||z.startTS>M?Ie(z):(I=z,re())}},M),e.cachedHeader?O(e.cachedHeader):d(e.headerUrl,O,()=>this._handleNetworkError())},stop:w,getTimestampSec:()=>n},c}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),(0,Lt.isNonNullable)(r)&&(r+=.1),this.rep.stop()),this.currentManifestEntry=e,this.rep=this._representation(e),t(`switch to quality: codecs=${e.codecs}; headerUrl=${e.headerUrl}; bitrate=${e.bitrate}`),this.bitrate=e.bitrate,(0,Lt.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,Lt.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=p=>{if(!this.autoQuality)return;let d,h,m;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&p<this.bitrate&&(h=this._getBufferSizeSec(),m=p/this.bitrate,h>10&&m>.8||h>15&&m>.5||h>20&&m>.3)){e(`Not switching: buffer=${Math.floor(h)}; bitrate=${this.bitrate}; newRate=${Math.floor(p)}`);return}d=this._selectQuality(p),d?this._switchToQuality(d):e(`Could not find quality by bitrate ${p}`)},a={updateChunk:(d,h)=>{let m=Ge();if(this.chunkRateEstimator.addInterval(d,m,h)){let y=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:h,duration:m-d,speed:y}),!0}},get:()=>{let d=this.chunkRateEstimator.getBitRate();return d?d*.85:0}},n=-1/0,o,u=!0,l=()=>{let p=a.get();if(p&&o&&this.autoQuality){if(u&&p>o&&Nl(n)<3e4)return;i(p)}u=this.autoQuality};return{updateChunk:(p,d)=>{let h=a.updateChunk(p,d);return h&&l(),h},notifySwitch:p=>{let d=Ge();p<o&&(n=d),o=p}}}_fetchManifest(e,t,i){this.manifestRequest=Rr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(Kn).withRetryCount(this.params.config.manifestRetryMaxCount).withRetryInterval(this.params.config.manifestRetryInterval,this.params.config.manifestRetryMaxInterval).send().withFinally(()=>{this.manifestRequest=void 0})}_playVideoElement(){let{videoElement:e}=this.params;et(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{t||(this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{logger:t,playerCallback:i,videoElement:r}=this.params,a=n=>{let o=[];return n?.length?(n.forEach((u,l)=>{u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&window.MediaSource?.isTypeSupported?.(u.codecs)&&(u.index=l,o.push(u))}),o.sort(function(u,l){return u.video&&l.video?l.video.height-u.video.height:l.bitrate-u.bitrate}),o):(i({name:"error",type:"empty_manifest"}),[])};this.manifest=a(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),i({name:"manifest",manifest:this.manifest})}_refetchManifest(e){this.destroyed||(this.manifestRefetchTimer&&clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=window.setTimeout(()=>{this._fetchManifest(e,t=>{this.destroyed||(this._handleManifestUpdate(t),this._refetchManifest(e))},()=>this._refetchManifest(e))},PA))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var vg=q(ji(),1),Ae=require("@vkontakte/videoplayer-shared/es2024"),Hl=class{constructor(){this.onDroopedVideoFramesLimit$=new Ae.Subject;this.subscription=new Ae.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new Ae.Subject;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>t?.height===this.video.videoHeight&&t?.width===this.video.videoWidth);e&&!(0,Ae.isInvariantQuality)(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,r=t-this.prevDroppedVideoFrames,a=1-(i-r)/i;!isNaN(a)&&a>0&&this.log({message:`[dropped]. current dropped percent: ${a}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(a)&&a>=this.droppedFramesChecker.percentLimit&&(0,Ae.isHigher)(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=(this.limitCounts[this.currentQuality]??0)+1,this.maxQualityLimit=this.getMaxQualityLimit(this.currentQuality),this.currentTimer&&window.clearTimeout(this.currentTimer),this.currentTimer=window.setTimeout(()=>this.maxQualityLimit=this.getMaxQualityLimit(),this.droppedFramesChecker.qualityUpWaitingTime),this.onDroopedVideoFramesLimitTrigger()),this.savePrevFrameCounts(e,t)}}connect(e){this.log=e.logger.createComponentLog("DroppedFramesManager"),this.video=e.video,this.isAuto=e.isAuto,this.tracks=e.tracks,this.droppedFramesChecker=e.droppedFramesChecker,this.subscription.add(e.playing$.subscribe(()=>this.playing=!0)),this.subscription.add(e.pause$.subscribe(()=>this.playing=!1)),this.isEnabled&&this.subscribe()}destroy(){this.currentTimer&&window.clearTimeout(this.currentTimer),this.subscription.unsubscribe()}get droppedVideoMaxQualityLimit(){return this.maxQualityLimit}subscribe(){this.subscription.add((0,Ae.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,Ae.interval)(this.droppedFramesChecker.checkTime).pipe((0,Ae.filter)(()=>this.playing),(0,Ae.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,Ae.debounce)(this.droppedFramesChecker.checkTime)),i=(0,Ae.merge)(e,t);this.subscription.add(i.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:i}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,i),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){let t=(0,vg.default)(this.limitCounts).filter(([,i])=>i>=this.droppedFramesChecker.countLimit).sort(([i],[r])=>(0,Ae.isLower)(i,r)?-1:1)?.[0]?.[0];return e??t}get isEnabled(){return this.droppedFramesChecker.enabled&&this.isDroppedFramesCheckerSupport}get isDroppedFramesCheckerSupport(){return!!this.video&&typeof this.video.getVideoPlaybackQuality=="function"}savePrevFrameCounts(e,t){this.prevTotalVideoFrames=e,this.prevDroppedVideoFrames=t}},Lr=Hl;var Xn=require("@vkontakte/videoplayer-shared/es2024"),yg=require("@vkontakte/videoplayer-shared/es2024");var Ps=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement;var RA=(s,e)=>new Xn.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Ps()))},{...i,...e});r.observe(s);let a=(0,yg.fromEvent)(document,"visibilitychange").pipe((0,Xn.map)(n=>!document.hidden||Ps())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),ht=RA;var LA=["paused","playing","ready"],MA=["paused","playing","ready"],ks=class{constructor(e){this.subscription=new G.Subscription;this.videoState=new K("stopped");this.representations$=new G.ValueSubject([]);this.droppedFramesManager=new Lr;this.maxSeekBackTime$=new G.ValueSubject(1/0);this.zeroTime$=new G.ValueSubject(void 0);this.liveOffset=new Xi;this._dashCb=e=>{switch(e.name){case"buffering":{let t=e.isBuffering;this.params.output.isBuffering$.next(t);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:G.ErrorCategory.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let t=e.manifest,i=[];for(let r of t){let a=r.name??r.index.toString(10),n=Jt(r.name)??(0,G.videoSizeToQuality)(r.video),o=r.bitrate/1e3,u={...r.video};if(!n)continue;let l={id:a,quality:n,bitrate:o,size:u};i.push({track:l,representation:r})}this.representations$.next(i),this.params.output.availableVideoTracks$.next(i.map(({track:r})=>r)),this.videoState.getTransition()?.to==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let t=e.quality,i=this.representations$.getValue().find(({representation:r})=>r===t)?.track;this.params.output.hostname$.next(new URL(t.headerUrl,this.params.source.url).hostname),(0,G.isNonNullable)(i)&&this.params.output.currentVideoTrack$.next(i);break}case"bandwidth":{let{size:t,duration:i}=e;this.params.dependencies.throughputEstimator.addRawSpeed(t,i);break}case"index":{this.maxSeekBackTime$.next(e.shiftDuration||0),this.zeroTime$.next(e.zeroTime);break}}};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; seekState: ${JSON.stringify(a)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.dash.destroy(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"));return}if(t)return;let n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if((0,jl.default)(MA,e)&&(n||o)){this.prepare();return}if(r?.to!=="paused"&&a.state==="requested"&&(0,jl.default)(LA,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource($e(this.params.source.url));return;case"manifest_ready":this.videoState.startTransitionTo("ready"),this.prepare();break;case"ready":if(i==="paused")this.videoState.setState("paused");else if(i==="playing"){this.videoState.startTransitionTo("playing");let u=r?.from;u&&u==="ready"&&this.dash.catchUp(),this.dash.play()}return;case"playing":i==="paused"&&(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.dash.pause());return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.dash.play(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let u=this.liveOffset.getTotalOffset();u>=this.maxSeekBackTime$.getValue()&&(u=0,this.liveOffset.resetTo(u)),this.liveOffset.resume(),this.params.output.position$.next(-u/1e3),this.dash.reinit($e(this.params.source.url,u))}return;default:return(0,G.assertNever)(e)}};this.textTracksManager=new pt(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:G.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,G.merge)(this.videoState.stateChangeStarted$.pipe((0,G.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,G.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:a})=>{this.log({message:`[videoState change] ${a}: ${JSON.stringify(r)}`})})),this.video=Ke(e.container,e.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let i=Ze(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,G.map)(r=>r.map(({track:a})=>a)),(0,G.filter)(r=>!!r.length),(0,G.once)()).subscribe(r=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:r}))),this.subscription.add(i.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready")},t)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused")},t)).add(i.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.videoState.setState("playing")},t)).add(i.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe((0,G.filterChanged)(),(0,G.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,G.combine)({zeroTime:this.zeroTime$.pipe((0,G.filter)(G.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:a})=>this.params.output.liveTime$.next(r+a*1e3),t)).add($t(this.video,this.params.desiredState.isLooped,t)).add(Je(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(dt(this.video,this.params.desiredState.playbackRate,i.playbackRateState$,t)).add(i.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(i.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(i.playing$.subscribe(this.params.output.firstFrameEvent$)).add(i.canplay$.subscribe(this.params.output.canplay$)).add(i.inPiP$.subscribe(this.params.output.inPiP$)).add(i.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(ht(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:a}})=>{this.dash.setAutoQualityLimits({max:r&&(0,G.videoQualityToHeight)(r),min:a&&(0,G.videoQualityToHeight)(a)}),this.params.output.autoVideoTrackLimits$.next({max:r,min:a})})).add(this.videoState.stateChangeEnded$.subscribe(r=>{switch(r.to){case"stopped":this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":this.params.desiredState.playbackState.getTransition()?.to==="ready"&&this.params.desiredState.playbackState.setState("ready");break;case"paused":this.params.desiredState.playbackState.setState("paused");break;case"playing":this.params.desiredState.playbackState.setState("playing");break;default:return(0,G.assertNever)(r.to)}},t)).add((0,G.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,G.observableFrom)(["init"])).pipe((0,G.debounce)(0)).subscribe(this.syncPlayback,t))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Xe(this.video)}createLiveDashPlayer(){let e=new Es({videoElement:this.video,videoState:this.videoState,liveOffset:this.liveOffset,config:{maxParallelRequests:this.params.config.maxParallelRequests,minBuffer:this.params.tuning.live.minBuffer,minBufferSegments:this.params.tuning.live.minBufferSegments,lowLatencyMinBuffer:this.params.tuning.live.lowLatencyMinBuffer,lowLatencyMinBufferSegments:this.params.tuning.live.lowLatencyMinBufferSegments,isLiveCatchUpMode:this.params.tuning.live.isLiveCatchUpMode,manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){let e=this.representations$.getValue(),t=this.params.desiredState.videoTrack.getTransition()?.to??this.params.desiredState.videoTrack.getState(),i=this.params.desiredState.autoVideoTrackSwitching.getTransition()?.to??this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&(0,G.isNonNullable)(t)?t:Zt(e.map(({track:l})=>l),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),a=r?.id,n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.videoTrack.getState()?.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||a!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||a!==o){let l=e.find(({track:c})=>c.id===a)?.representation;(0,G.assertNonNullable)(l,"Representations missing"),this.dash.startPlay(l,i)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:i})=>i.id===e.id)?.representation;(0,G.assertNonNullable)(t,`No such representation ${e.id}`),this.dash.switchByName(t.name),this.params.desiredState.videoTrack.setState(e)}setAutoQuality(e){this.dash.setAutoQualityEnabled(e),this.params.desiredState.autoVideoTrackSwitching.setState(e)}seek(e){this.log({message:`[seek] position: ${e}`}),this.params.output.willSeekEvent$.next();let t=this.params.desiredState.playbackState.getState(),i=this.videoState.getState(),r=t==="paused"&&i==="paused",a=-e,n=a<=this.maxSeekBackTime$.getValue()?a:0;this.params.output.position$.next(e/1e3),this.dash.reinit($e(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var Tg=ks;var Iv=q(wt(),1);var Qe=(s,e)=>{let t=0;for(let i=0;i<s.length;i++){let r=s.start(i)*1e3,a=s.end(i)*1e3;r<=e&&e<=a&&(t=a)}return Math.max(t-e,0)};var ee=require("@vkontakte/videoplayer-shared/es2024");var Jn=class{constructor(){Object.defineProperty(this,"listeners",{value:{},writable:!0,configurable:!0})}addEventListener(e,t,i){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push({callback:t,options:i})}removeEventListener(e,t){if(!(e in this.listeners))return;let i=this.listeners[e];for(let r=0,a=i.length;r<a;r++)if(i[r].callback===t){i.splice(r,1);return}}dispatchEvent(e){if(!(e.type in this.listeners))return;let i=this.listeners[e.type].slice();for(let r=0,a=i.length;r<a;r++){let n=i[r];try{n.callback.call(this,e)}catch(o){Promise.resolve().then(()=>{throw o})}n.options&&n.options.once&&this.removeEventListener(e.type,n.callback)}return!e.defaultPrevented}},Mr=class extends Jn{constructor(){super(),this.listeners||Jn.call(this),Object.defineProperty(this,"aborted",{value:!1,writable:!0,configurable:!0}),Object.defineProperty(this,"onabort",{value:null,writable:!0,configurable:!0}),Object.defineProperty(this,"reason",{value:void 0,writable:!0,configurable:!0})}toString(){return"[object AbortSignal]"}dispatchEvent(e){e.type==="abort"&&(this.aborted=!0,typeof this.onabort=="function"&&this.onabort.call(this,e)),super.dispatchEvent(e)}},ws=class{constructor(){Object.defineProperty(this,"signal",{value:new Mr,writable:!0,configurable:!0})}abort(e){let t;try{t=new Event("abort")}catch{typeof document<"u"?document.createEvent?(t=document.createEvent("Event"),t.initEvent("abort",!1,!1)):(t=document.createEventObject(),t.type="abort"):t={type:"abort",bubbles:!1,cancelable:!1}}let i=e;if(i===void 0)if(typeof document>"u")i=new Error("This operation was aborted"),i.name="AbortError";else try{i=new DOMException("signal is aborted without reason")}catch{i=new Error("This operation was aborted"),i.name="AbortError"}this.signal.reason=i,this.signal.dispatchEvent(t)}toString(){return"[object AbortController]"}};typeof Symbol<"u"&&Symbol.toStringTag&&(ws.prototype[Symbol.toStringTag]="AbortController",Mr.prototype[Symbol.toStringTag]="AbortSignal");function Zn(s){return s.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log("__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill"),!0):typeof s.Request=="function"&&!s.Request.prototype.hasOwnProperty("signal")||!s.AbortController}function zl(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!Zn({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r}))return{fetch:e,Request:a};let a=t;(a&&!a.prototype.hasOwnProperty("signal")||r)&&(a=function(l,c){let p;c&&c.signal&&(p=c.signal,delete c.signal);let d=new t(l,c);return p&&Object.defineProperty(d,"signal",{writable:!1,enumerable:!1,configurable:!0,value:p}),d},a.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let c=a&&a.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(c){let p;try{p=new DOMException("Aborted","AbortError")}catch{p=new Error("Aborted"),p.name="AbortError"}if(c.aborted)return Promise.reject(p);let d=new Promise((h,m)=>{c.addEventListener("abort",()=>m(p),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([d,n(u,l)])}return n(u,l)},Request:a}}var As=Zn({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),Ig=As?zl({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,Bt=As?Ig.fetch:window.fetch,DV=As?Ig.Request:window.Request,pe=As?ws:window.AbortController,CV=As?Mr:window.AbortSignal;var Sc=q(Rs(),1);var uS=q(oS(),1),$r=require("@vkontakte/videoplayer-shared/es2024"),eo=s=>{if(!s)return{id:"EmptyResponse",category:$r.ErrorCategory.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:$r.ErrorCategory.NETWORK,message:`UV Error ${s}`};let e=(0,uS.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:$r.ErrorCategory.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(s,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:$r.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:$r.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var tt=(s,e,t=0)=>{for(let i=0;i<s.length;i++)if(s.start(i)*1e3-t<=e&&s.end(i)*1e3+t>e)return!0;return!1};var v=require("@vkontakte/videoplayer-shared/es2024");var io=q(wt(),1),_r=q(Ht(),1),ro=q(Rs(),1);var bR=(s,e={})=>{let i=e.timeout||1,r=performance.now();return window.setTimeout(()=>{s({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},gR=s=>window.clearTimeout(s),lS=s=>typeof s=="function"&&s?.toString().endsWith("{ [native code] }"),cS=!lS(window.requestIdleCallback)||!lS(window.cancelIdleCallback),Br=cS?bR:window.requestIdleCallback,ti=cS?gR:window.cancelIdleCallback;var pv=q(gs(),1);var $i=require("@vkontakte/videoplayer-shared/es2024");var SR=18,dS=!1;try{dS=W.browser.isSafari&&!!W.browser.safariVersion&&W.browser.safariVersion<=SR}catch(s){console.error(s)}var Xl=class{constructor(e){this.bufferFull$=new $i.Subject;this.error$=new $i.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{try{if(this.currentTask){let e=this.currentTask.signal?.aborted;this.currentTask.callback(!e),this.currentTask=null}this.queue.length&&this.pull()}catch(e){this.error$.next({id:"BufferTaskQueueUnknown",category:$i.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:e})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})}async remove(e,t,i){return i&&i.aborted?!1:new Promise(r=>{let a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})}async abort(e){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};dS&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:a}of this.queue)a(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if(e.signal?.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(r){r instanceof DOMException&&r.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):r instanceof DOMException&&r.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:$i.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:r}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,$i.assertNever)(t)}}},pS=Xl;var Dr=s=>{let e=0;for(let t=0;t<s.length;t++)e+=s.end(t)-s.start(t);return e*1e3};var P=require("@vkontakte/videoplayer-shared/es2024");var ne=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),this.size32=i<=e.buffer.byteLength-e.byteOffset?i:NaN;let r=this.size32?this.size32-8:void 0,a=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,a,r)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let r=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,r}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var Cr=class extends ne{};var Ms=class extends ne{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let r=this.content.byteOffset,a=r+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(r,a)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var $s=class extends ne{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let r=this.readString(4);this.compatibleBrands.push(r),i-=4}}};var Bs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Se=class extends ne{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var Ds=class extends Se{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16()}};var Cs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Vs=class extends ne{constructor(e,t){super(e,t),this.data=this.content}};var Zi=class extends Se{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let r=this.readUint32(),a=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var Os=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var _s=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Fs=class extends Se{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var Ns=class extends Se{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Us=class extends Se{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var qs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Hs=class extends Se{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var js=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var zs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Gs=class extends Se{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var Qs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ws=class extends Se{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var Ys=class extends Se{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var Ks=class extends Se{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let r=0;r<this.sampleCount;r++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var Xs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Js=class extends Se{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var Zs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var yR={ftyp:$s,moov:Bs,mvhd:Ds,moof:Cs,mdat:Vs,sidx:Zi,trak:Os,mdia:qs,mfhd:Gs,tkhd:Hs,traf:Qs,tfhd:Ws,tfdt:Ys,trun:Ks,minf:js,sv3d:_s,st3d:Fs,prhd:Ns,proj:zs,equi:Us,uuid:Ms,stbl:Xs,stsd:Js,avc1:Zs,unknown:Cr},mi=class s{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i));if(!n.size)break;t.push(n),i+=n.size}catch{break}return t}createBox(e,t){let i=yR[e];return i?new i(t,new s):new Cr(t,new s)}};var Bi=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{this.index[t.type]??=[],this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children)})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var IR=new TextDecoder("ascii"),xR=s=>IR.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",ER=s=>{let e=new Zi(s,new mi),t=e.earliestPresentationTime/e.timescale*1e3,i=s.byteOffset+s.byteLength+e.firstOffset;return e.segments.map(a=>{if(a.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=a.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+a.referencedSize-1}};return t+=n,i+=a.referencedSize,o})},PR=(s,e)=>{let i=new mi().parse(s),r=new Bi(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],l=o.source.byteOffset,p=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,p)},kR=s=>{let t=new mi().parse(s),i=new Bi(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},wR=s=>{let t=new mi().parse(s);return new Bi(t).find("sidx")?.timescale},AR=(s,e)=>{let i=new mi().parse(s),a=new Bi(i).findAll("traf"),n=a[a.length-1].children.find(p=>p.type==="tfhd"),o=a[a.length-1].children.find(p=>p.type==="tfdt"),u=a[a.length-1].children.find(p=>p.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((p,d)=>p+d,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},RR=s=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new mi().parse(s),r=new Bi(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},hS={validateData:xR,parseInit:RR,getIndexRange:()=>{},parseSegments:ER,parseFeedableSegmentChunk:PR,getChunkEndTime:AR,getServerLatencyTimestamps:kR,getTimescaleFromIndex:wR};var ta=q(wt(),1),bi=require("@vkontakte/videoplayer-shared/es2024");var mS=require("@vkontakte/videoplayer-shared/es2024");var fS={440786851:{type:"master"},17030:{type:"uint"},17143:{type:"uint"},17138:{type:"uint"},17139:{type:"uint"},17026:{type:"string"},17031:{type:"uint"},17029:{type:"uint"},236:{type:"binary"},408125543:{type:"master"},290298740:{type:"master"},19899:{type:"master"},21419:{type:"binary"},21420:{type:"uint"},357149030:{type:"master"},2807729:{type:"uint"},17545:{type:"float"},374648427:{type:"master"},174:{type:"master"},224:{type:"master"},30320:{type:"master"},30321:{type:"uint"},30322:{type:"master"},272869232:{type:"master"},524531317:{type:"master"},231:{type:"uint"},22612:{type:"master"},22743:{type:"uint"},167:{type:"uint"},171:{type:"uint"},163:{type:"binary"},160:{type:"master"},175:{type:"binary"},423732329:{type:"master"},307544935:{type:"master"},475249515:{type:"master"},187:{type:"master"},179:{type:"uint"},183:{type:"master"},247:{type:"uint"},241:{type:"uint"},240:{type:"uint"},178:{type:"uint"},21368:{type:"uint"},234:{type:"uint"},219:{type:"master"},150:{type:"uint"}},bS=s=>{let e=s.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=ea(s,t),r=i in fS,a=r?fS[i].type:"binary",n=s.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(s.buffer,s.byteOffset+t+1,o-1),l=n&255>>o,c=ea(u),p=l*2**((o-1)*8)+c,d=t+o,h;return d+p>s.byteLength?h=new DataView(s.buffer,s.byteOffset+d):h=new DataView(s.buffer,s.byteOffset+d,p),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:d,tagSize:d+p,value:h,valueSize:p}},ea=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*2**16+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*2**32+s.getUint32(1);case 6:return s.getUint16(0)*2**32+s.getUint32(2);case 7:{let t=s.getUint8(0)*281474976710656+s.getUint16(1)*4294967296+s.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},jt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return ea(s);case"float":return s.byteLength===4?s.getFloat32(0):s.getFloat64(0);case"string":return new TextDecoder("ascii").decode(s);case"utf8":return new TextDecoder("utf-8").decode(s);case"date":return new Date(Date.UTC(2001,0)+s.getInt8(0)).getTime();case"master":return s;case"binary":return s;default:(0,mS.assertNever)(e)}},er=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=bS(i);if(!e(r))return;r.type==="master"&&er(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},gS=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=bS(s);return er(r.value,({tag:a,type:n,value:o})=>(a===17143?e=jt(o,n):a===17026?t=jt(o,n):a===17029&&(i=jt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var SS=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],LR=[231,22612,22743,167,171,163,160,175],MR=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,c=!1,p=0;return er(s,({tag:d,type:h,value:m,valueSize:g})=>{if(d===21419){let y=jt(m,h);l=ea(y)}else d!==21420&&(l=void 0);return d===408125543?(e=m.byteOffset,t=m.byteOffset+g):d===357149030?a=!0:d===290298740?n=!0:d===2807729?i=jt(m,h):d===17545?r=jt(m,h):d===21420&&l===475249515?u=jt(m,h):d===374648427?er(m,({tag:y,type:T,value:w})=>y===30321?(c=jt(w,T)===1,!1):!0):a&&n&&(0,ta.default)(SS,d)&&(o=!0),!o}),(0,bi.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,bi.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,bi.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:c,stereoMode:p,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},$R=s=>{if((0,bi.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},BR=(s,e)=>{let t=!1,i=!1,r=o=>(0,bi.isNonNullable)(o.time)&&(0,bi.isNonNullable)(o.position),a=[],n;return er(s,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=jt(l,u));break;case 183:break;case 241:n&&(n.position=jt(l,u));break;default:t&&(0,ta.default)(SS,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:c}=o,p=a[u+1];return{status:"none",time:{from:l,to:p?p.time:e.segmentDuration},byte:{from:e.segmentStart+c,to:p?e.segmentStart+p.position-1:e.segmentEnd-1}}})},DR=s=>{let e=0,t=!1;try{er(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,ta.default)(LR,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||=(0,ta.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},vS={validateData:gS,parseInit:MR,getIndexRange:$R,parseSegments:BR,parseFeedableSegmentChunk:DR};var ia=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return vS;case"mp4":return hS}}throw new ReferenceError(`Unsupported mime type ${s}`)};var dc=q(sc(),1),uv=q(ji(),1),lv=q(ac(),1),cv=q(Ht(),1),pc=q(Ki(),1);var ev=q(wt(),1),Or=s=>{let e=s.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[r,a,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[r,a,n]=i;return!!(r&&parseInt(r,10)>=2&&n&&parseInt(n,10)>8)}case"avc1":{let r=i[0];if(!r||r.length!==6)return!1;let[a,n]=r.toUpperCase(),o=a+n;return(0,ev.default)(["6E","7A","F4"],o)}}return!1};var sa=require("@vkontakte/videoplayer-shared/es2024");var to=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var tv=s=>{try{let e=RL(),t=s.match(e),{groups:i}=t??{};if(i){let r={};if(i.extensions){let o=i.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(o||[]).forEach(u=>{r[u[0]]=u.slice(2)})}let a=i.variants?.split(/-/).filter(o=>o!==""),n={extlang:i.extlang,langtag:i.langtag,language:i.language,privateuse:i.privateuse||i.privateuse2,region:i.region,script:i.script,extensions:r,variants:a};return Object.keys(n).forEach(o=>{let u=n[o];(typeof u>"u"||u==="")&&delete n[o]}),n}return null}catch{return null}};function RL(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",c=`^(?:(?<langtag>${`
118
+ (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
65
119
  (-(?<script>[a-z]{4}))?
66
120
  (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
67
121
  (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
68
122
  (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
69
123
  (?:-(?<privateuse>(?:${e})))?
70
- `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var $u=F(Ut(),1);var Ig=require("@vkontakte/videoplayer-shared/es2024"),Eg=({id:r,width:e,height:t,bitrate:i,fps:a,quality:s,streamId:n})=>{let o=(s?qt(s):void 0)??(0,Ig.videoSizeToQuality)({width:e,height:t});return o&&{id:r,quality:o,bitrate:i,size:{width:e,height:t},fps:a,streamId:n}},xg=({id:r,bitrate:e})=>({id:r,bitrate:e}),Pg=({language:r,label:e},{id:t,url:i,isAuto:a})=>({id:t,url:i,isAuto:a,type:"internal",language:r,label:e}),kg=({language:r,label:e,id:t,url:i,isAuto:a})=>({id:t,url:i,isAuto:a,type:"internal",language:r,label:e}),Mu=({id:r,language:e,label:t,codecs:i,isDefault:a})=>({id:r,language:e,label:t,codec:(0,$u.default)(i.split("."),0),isDefault:a}),Cu=({id:r,language:e,label:t,hdr:i,codecs:a})=>({id:r,language:e,hdr:i,label:t,codec:(0,$u.default)(a.split("."),0)}),Du=r=>"url"in r,Le=r=>r.type==="template",da=r=>r instanceof DOMException&&(r.name==="AbortError"||r.code===20);var wg=r=>{if(!r?.startsWith("P"))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(r),a=i?.[1]==="-"?-1:1,s={days:e(i?.[5],a),hours:e(i?.[6],a),minutes:e(i?.[7],a),seconds:e(i?.[8],a)};return s.days*24*60*60*1e3+s.hours*60*60*1e3+s.minutes*60*1e3+s.seconds*1e3},Lt=(r,e)=>{let t=r;t=(0,Vu.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[a,s]of(0,Ag.default)(i)){let n=new RegExp(`\\$${a}(?:%0(\\d+)d)?\\$`,"g");t=(0,Vu.default)(t,n,(o,u)=>(0,pa.isNullable)(s)?o:(0,pa.isNullable)(u)?s:(0,Lg.default)(s,parseInt(u,10),"0"))}return t},$g=(r,e)=>{let i=new DOMParser().parseFromString(r,"application/xml"),a={video:[],audio:[],text:[]},s=i.children[0],n=Array.from(s.querySelectorAll("MPD > BaseURL").values()).map(K=>K.textContent?.trim()??""),o=(0,Rg.default)(n,0)??"",u=s.getAttribute("type")==="dynamic",l=s.getAttribute("availabilityStartTime"),d=s.getAttribute("publishTime"),p=s.getElementsByTagName("vk:Attrs")[0],h=p?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,m=p?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,b=p?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,v=p?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,T;u&&(T={availabilityStartTime:l?new Date(l).getTime():0,publishTime:d?new Date(d).getTime():0,latestSegmentPublishTime:h?new Date(h).getTime():0,streamIsAlive:m==="yes",streamIsUnpublished:b==="yes"});let I,A=s.getAttribute("mediaPresentationDuration"),P=[...s.getElementsByTagName("Period")],$=P.reduce((K,E)=>({...K,[E.id]:E.children}),{}),k=P.reduce((K,E)=>({...K,[E.id]:E.getAttribute("duration")}),{});A?I=wg(A):(0,Bu.default)(k).filter(K=>K).length&&!u?I=(0,Bu.default)(k).reduce((K,E)=>K+(wg(E)??0),0):v&&(I=parseInt(v,10));let Y=0,z=s.getAttribute("profiles")?.split(",")??[];for(let K of P.map(E=>E.id))for(let E of $[K]){let U=E.getAttribute("id")??"id"+(Y++).toString(10),C=E.getAttribute("mimeType")??"",ie=E.getAttribute("codecs")??"",D=E.getAttribute("contentType")??C?.split("/")[0],be=E.getAttribute("profiles")?.split(",")??[],M=Tg(E.getAttribute("lang")??"")??{},Z=E.querySelector("Label")?.textContent?.trim()??void 0,re=E.querySelectorAll("Representation"),ce=E.querySelector("SegmentTemplate"),ge=E.querySelector("Role")?.getAttribute("value")??void 0,Re=D,$e={id:U,language:M.language,isDefault:ge==="main",label:Z,codecs:ie,hdr:Re==="video"&&Lu(ie),mime:C,representations:[]};for(let ee of re){let H=ee.getAttribute("lang")??void 0,Me=Z??E.getAttribute("label")??ee.getAttribute("label")??void 0,ke=ee.querySelector("BaseURL")?.textContent?.trim()??"",ve=new URL(ke||o,e).toString(),Ye=ee.getAttribute("mimeType")??C,Mt=ee.getAttribute("codecs")??ie??"",lt;if(D==="text"){let qe=ee.getAttribute("id")||"",Ct=M.privateuse?.includes("x-auto")||qe.includes("_auto"),ct=ee.querySelector("SegmentTemplate");if(ct){let Xi={representationId:ee.getAttribute("id")??void 0,bandwidth:ee.getAttribute("bandwidth")??void 0},Aa=parseInt(ee.getAttribute("bandwidth")??"",10)/1e3,La=parseInt(ct.getAttribute("startNumber")??"",10)??1,mi=parseInt(ct.getAttribute("timescale")??"",10),tn=ct.querySelectorAll("SegmentTimeline S")??[],fi=ct.getAttribute("media");if(!fi)continue;let Ra=[],$a=0,Ma="",bi=0,Ji=La,we=0;for(let et of tn){let zt=parseInt(et.getAttribute("d")??"",10),ze=parseInt(et.getAttribute("r")??"",10)||0,Dt=parseInt(et.getAttribute("t")??"",10);we=Number.isFinite(Dt)?Dt:we;let Kt=zt/mi*1e3,gi=we/mi*1e3;for(let dt=0;dt<ze+1;dt++){let Vt=Lt(fi,{...Xi,segmentNumber:Ji.toString(10),segmentTime:(we+dt*zt).toString(10)}),vi=(gi??0)+dt*Kt,er=vi+Kt;Ji++,Ra.push({time:{from:vi,to:er},url:Vt})}we+=(ze+1)*zt,$a+=(ze+1)*Kt}bi=we/mi*1e3,Ma=Lt(fi,{...Xi,segmentNumber:Ji.toString(10),segmentTime:we.toString(10)});let Zi={time:{from:bi,to:1/0},url:Ma},Tt={type:"template",baseUrl:ve,segmentTemplateUrl:fi,initUrl:"",totalSegmentsDurationMs:$a,segments:Ra,nextSegmentBeyondManifest:Zi,timescale:mi};lt={id:qe,kind:"text",segmentReference:Tt,profiles:[],duration:I,bitrate:Aa,mime:"",codecs:"",width:0,height:0,isAuto:Ct}}else lt={id:qe,isAuto:Ct,kind:"text",url:ve}}else{let qe=ee.getAttribute("contentType")??Ye?.split("/")[0]??D,Ct=E.getAttribute("profiles")?.split(",")??[],ct=parseInt(ee.getAttribute("width")??"",10),Xi=parseInt(ee.getAttribute("height")??"",10),Aa=parseInt(ee.getAttribute("bandwidth")??"",10)/1e3,La=ee.getAttribute("frameRate")??"",mi=ee.getAttribute("quality")??void 0,tn=La?yg(La):void 0,fi=ee.getAttribute("id")??"id"+(Y++).toString(10),Ra=qe==="video"?`${Xi}p`:qe==="audio"?`${Aa}Kbps`:Mt,$a=`${fi}@${Ra}`,Ma=[...z,...be,...Ct],bi,Ji=ee.querySelector("SegmentBase"),we=ee.querySelector("SegmentTemplate")??ce;if(Ji){let Tt=ee.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[et,zt]=Tt.split("-").map(Vt=>parseInt(Vt,10)),ze={from:et,to:zt},Dt=ee.querySelector("SegmentBase")?.getAttribute("indexRange"),[Kt,gi]=Dt?Dt.split("-").map(Vt=>parseInt(Vt,10)):[],dt=Dt?{from:Kt,to:gi}:void 0;bi={type:"byteRange",url:ve,initRange:ze,indexRange:dt}}else if(we){let Tt={representationId:ee.getAttribute("id")??void 0,bandwidth:ee.getAttribute("bandwidth")??void 0},et=parseInt(we.getAttribute("timescale")??"",10),zt=we.getAttribute("initialization")??"",ze=we.getAttribute("media"),Dt=parseInt(we.getAttribute("startNumber")??"",10)??1,Kt=Lt(zt,Tt);if(!ze)throw new ReferenceError("No media attribute in SegmentTemplate");let gi=we.querySelectorAll("SegmentTimeline S")??[],dt=[],Vt=0,vi="",er=0;if(gi.length){let Ca=Dt,tt=0;for(let Si of gi){let pt=parseInt(Si.getAttribute("d")??"",10),Xt=parseInt(Si.getAttribute("r")??"",10)||0,Da=parseInt(Si.getAttribute("t")??"",10);tt=Number.isFinite(Da)?Da:tt;let rn=pt/et*1e3,Sv=tt/et*1e3;for(let Va=0;Va<Xt+1;Va++){let yv=Lt(ze,{...Tt,segmentNumber:Ca.toString(10),segmentTime:(tt+Va*pt).toString(10)}),el=(Sv??0)+Va*rn,Tv=el+rn;Ca++,dt.push({time:{from:el,to:Tv},url:yv})}tt+=(Xt+1)*pt,Vt+=(Xt+1)*rn}er=tt/et*1e3,vi=Lt(ze,{...Tt,segmentNumber:Ca.toString(10),segmentTime:tt.toString(10)})}else if((0,pa.isNonNullable)(I)){let tt=parseInt(we.getAttribute("duration")??"",10)/et*1e3,Si=Math.ceil(I/tt),pt=0;for(let Xt=1;Xt<Si;Xt++){let Da=Lt(ze,{...Tt,segmentNumber:Xt.toString(10),segmentTime:pt.toString(10)});dt.push({time:{from:pt,to:pt+tt},url:Da}),pt+=tt}er=pt,vi=Lt(ze,{...Tt,segmentNumber:Si.toString(10),segmentTime:pt.toString(10)})}let vv={time:{from:er,to:1/0},url:vi};bi={type:"template",baseUrl:ve,segmentTemplateUrl:ze,initUrl:Kt,totalSegmentsDurationMs:Vt,segments:dt,nextSegmentBeyondManifest:vv,timescale:et}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!qe||!Ye)continue;let Zi={video:"video",audio:"audio",text:"text"}[qe];if(!Zi)continue;Re||=Zi,lt={id:$a,kind:Zi,segmentReference:bi,profiles:Ma,duration:I,bitrate:Aa,mime:Ye,codecs:Mt,width:ct,height:Xi,fps:tn,quality:mi}}$e.language||=H,$e.label||=Me,$e.mime||=Ye,$e.codecs||=Mt,$e.hdr||=Re==="video"&&Lu(Mt),$e.representations.push(lt)}if(Re){let ee=a[Re].find(H=>H.id===$e.id);if(ee&&$e.representations.every(H=>Le(H.segmentReference)))for(let H of ee.representations){let ke=$e.representations.find(Ye=>Ye.id===H.id)?.segmentReference,ve=H.segmentReference;ve.segments.push(...ke.segments),ve.nextSegmentBeyondManifest=ke.nextSegmentBeyondManifest}else a[Re].push($e)}}return{duration:I,streams:a,baseUrls:n,live:T}};var Mg=F(De(),1),_u=require("@vkontakte/videoplayer-shared/es2024"),pe=(r,e)=>(0,_u.isNonNullable)(r)&&(0,_u.isNonNullable)(e)&&r.readyState==="open"&&(0,Mg.default)([...r.activeSourceBuffers],e);var ha=class{constructor(e,t,i,{fetcher:a,tuning:s,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new y.ValueSubject(0);this.currentLowLatencySegmentLength$=new y.ValueSubject(0);this.currentSegmentLength$=new y.ValueSubject(0);this.onLastSegment$=new y.ValueSubject(!1);this.fullyBuffered$=new y.ValueSubject(!1);this.playingRepresentation$=new y.ValueSubject(void 0);this.playingRepresentationInit$=new y.ValueSubject(void 0);this.error$=new y.Subject;this.gaps=[];this.subscription=new y.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new Pe;this.switchAbortController=new Pe;this.destroyAbortController=new Pe;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=(0,y.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,y.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new Lb(this.sourceBuffer),this.subscription.add((0,y.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:y.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add((0,y.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:y.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!pe(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Iu(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=this.getForwardBufferDuration(o),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<d).catch(p=>{this.handleAsyncError(p,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),a=this.segments.get(t.id),s=this.parsedInitData.get(t.id);(0,y.assertNonNullable)(i,"No init buffer for starting representation"),(0,y.assertNonNullable)(a,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(a,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(s))}.bind(this));this.switchTo=(0,y.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!pe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,y.assertNonNullable)(i,`No such representation ${e}`);let a=this.segments.get(e),s=this.initData.get(e);if((0,y.isNullable)(s)||(0,y.isNullable)(a)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),a=this.segments.get(e),(0,y.assertNonNullable)(a,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,y.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this));this.switchToOld=(0,y.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!pe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,y.assertNonNullable)(i,`No such representation ${e}`);let a=this.segments.get(e),s=this.initData.get(e);if((0,y.isNullable)(s)||(0,y.isNullable)(a)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),a=this.segments.get(e),(0,y.assertNonNullable)(a,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,y.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this));this.seekLive=(0,y.abortable)(this.destroyAbortController.signal,async function*(e){let t=(0,Vs.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(h=>h.id===u);l&&this.representations.set(u,l);let d=this.representations.get(u);if(!d||!Le(d.segmentReference))return;let p=this.getActualLiveStartingSegments(d.segmentReference);this.segments.set(d.id,p)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,a=this.representations.get(i);(0,y.assertNonNullable)(a);let s=this.segments.get(i);(0,y.assertNonNullable)(s,"No segments for starting representation");let n=this.initData.get(i);if((0,y.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(s,a),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));this.fetcher=a,this.tuning=s,this.compatibilityMode=u,this.forwardBufferTarget=s.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!l?.live,this.baseUrls=l?.baseUrls??[],this.initData=new Map(i.map(d=>[d.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(d=>[d.id,d])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!pe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new Pe,(0,y.abortable)(this.switchAbortController.signal,async function*(i,a=!1){this.switchingToRepresentationId=i;let s=this.representations.get(i);(0,y.assertNonNullable)(s,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,y.isNullable)(o)||(0,y.isNullable)(n)?yield this.loadInit(s,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,y.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),a)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();(0,y.isNonNullable)(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!(0,y.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new Pe,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,y.isNullable)(e)||(0,y.isNullable)(this.downloadingRepresentationId)||(0,y.isNullable)(this.playingRepresentationId)||(0,y.isNullable)(this.sourceBuffer)||!pe(this.mediaSource,this.sourceBuffer)||(0,y.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,y.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let a=i.find(d=>e>=d.time.from&&e<d.time.to);(0,y.isNonNullable)(a)&&isFinite(a.time.from)&&isFinite(a.time.to)&&this.currentSegmentLength$.next(a?.time.to-a.time.from);let s=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let d=this.getForwardBufferDuration(e),p=a?a.time.to+n:-1/0;a&&a.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&d>=a.time.to-e+n&&(s=p)}if(isFinite(this.bufferLimit)&&Iu(this.sourceBuffer.buffered)>=this.bufferLimit){let d=this.getForwardBufferDuration(e),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,d<p).catch(h=>{this.handleAsyncError(h,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,s),u.length)){let d="auto";if(this.tuning.dash.useFetchPriorityHints&&a)if((0,Ds.default)(u,a))d="high";else{let p=(0,Wi.default)(u,0);p&&p.time.from-a.time.to>=this.forwardBufferTarget/2&&(d="low")}this.loadSegments(u,t,d).catch(p=>{this.handleAsyncError(p,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&a&&a.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,Wi.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,a=this.isLive?this.liveInitialAdditionalOffset:0;for(let s of e)Math.trunc(s.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:s.time.from+a}),i=s.time.to;(0,y.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,a=[],s=0,n=t.length-1;do a.unshift(t[n]),s+=t[n].time.to-t[n].time.from,n--;while(s<i&&n>=0);return this.liveInitialAdditionalOffset=s-i,this.isActiveLowLatency()?[a[0]]:a}getLiveSegmentsToLoadState(e){let t=(0,Vs.default)(e?.streams[this.kind],a=>a.representations).find(a=>a.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i?.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){let t=(0,Vs.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!Le(i.segmentReference))return;let a=i.segmentReference.segments.map(l=>({...l,status:"none",size:void 0})),s=100,n=this.segments.get(i.id)??[],o=(0,Wi.default)(n,-1)?.time.to??0,u=a?.findIndex(l=>o>=l.time.from+s&&o<=l.time.to+s);if(u===-1){this.liveUpdateSegmentIndex=0;let l=this.getActualLiveStartingSegments(i.segmentReference);this.segments.set(i.id,l)}else{let l=a.slice(u+1);this.segments.set(i.id,[...n,...l])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,y.assertNonNullable)(e);let t=this.segments.get(e);if(t?.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let a=i.segmentReference;if(!Le(a))return;let s=this.segments.get(i.id)??[],n=s.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!s.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*a.timescale/1e3).toString(10),l=Lt(a.segmentTemplateUrl,{segmentTime:u});s.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);return i?i.find(s=>s.time.from<=e&&s.time.to>=e)?.time.from??void 0:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.sourceBufferTaskQueue?.destroy(),this.gapDetectionIdleCallback&&_r&&_r(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&_r&&_r(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name==="NotFoundError"))throw e}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){let i=e.findIndex(a=>t>=a.time.from&&t<a.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=i),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,i){let a=e.findIndex(({status:p,time:{from:h,to:m}},b)=>{let v=h<=i&&m>=i,T=h>i||v||b===0&&i===0,I=Math.min(this.forwardBufferTarget,this.bufferLimit),A=this.preloadOnly&&h<=i+I||m<=i+I;return(p==="none"||p==="partially_ejected"&&T&&A&&this.sourceBuffer&&pe(this.mediaSource,this.sourceBuffer)&&!(Qt(this.sourceBuffer.buffered,h)&&Qt(this.sourceBuffer.buffered,m)))&&T&&A});if(a===-1)return[];if(t!=="byteRange")return e.slice(a,a+1);let s=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,d=this.preloadOnly?this.forwardBufferTarget:0;for(let p=a;p<s.length&&(n<=l||o<=d);p++){let h=s[p];if(n+=h.byte.to+1-h.byte.from,o+=h.time.to+1-h.time.from,h.status==="none"||h.status==="partially_ejected")u.push(h);else break}return u}async loadSegments(e,t,i="auto"){Le(t.segmentReference)?await this.loadTemplateSegment(e[0],t,i):await this.loadByteRangeSegments(e,t,i)}async loadTemplateSegment(e,t,i="auto"){e.status="downloading";let a={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(a);let{range:s,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,y.abortable)(o,async function*(){let d=(0,y.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(p=>setTimeout(p,d))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let d=await this.fetcher.fetch(n,{range:s,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,y.now)(),!d)return;let p=new DataView(d),h=ca(t.mime);if(!isFinite(a.segment.time.to)){let v=t.segmentReference.timescale;a.segment.time.to=h.getChunkEndTime(p,v)}u&&a.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(p,o);let{serverDataReceivedTimestamp:m,serverDataPreparedTime:b}=h.getServerLatencyTimestamps(p);m&&b&&this.currentLiveSegmentServerLatency$.next(b-m),a.segment.status="downloaded",this.onSegmentFullyAppended(a,t.id),this.failedDownloads=0}catch(d){this.abortActiveSegments([e]),da(d)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())Le(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,i="auto"){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:a,url:s,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await(0,y.abortable)(n,async function*(){let u=(0,y.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,y.fromEvent)(window,"online").pipe((0,y.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(s,{range:a,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,y.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),da(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(Le(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,a={from:(0,Wi.default)(e,0).byte.from,to:(0,Wi.default)(e,-1).byte.to},{signal:s}=this.downloadAbortController;return{url:i,range:a,signal:s,onProgress:async(o,u)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,y.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:s,onSegmentAppendFailed:()=>this.abort(),globalFrom:a?a.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!Le(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let a=i.toString(),{signal:s}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,d)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,y.now)();let p=this.onSomeTemplateDataLoaded({dataView:l,loaded:d,signal:s,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(p)}catch(p){this.error$.next({id:"SegmentFeeding",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:p})}}:void 0;return{url:a,signal:s,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Ds.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:a,signal:s}){if(!this.activeSegments.size||!pe(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(s.aborted){a();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),d=ca(n.mime).parseFeedableSegmentChunk(l,this.isLive);d?.byteLength&&(u.status="partially_fed",o.feedingBytes+=d.byteLength,await this.sourceBufferTaskQueue.append(d),o.fedBytes+=d.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:a,signal:s,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!pe(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:l}=u;if(u.representationId!==t)continue;if(s.aborted){await n();continue}let d=l.byte.from-i,p=l.byte.to-i,h=p-d+1,m=d<a,b=p<=a;if(!m)continue;let v=ca(o.mime);if(l.status==="downloading"&&b){l.status="downloaded";let T=new DataView(e.buffer,e.byteOffset+d,h);await this.sourceBufferTaskQueue.append(T,s)&&!s.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(h,a-d),u.loadedBytes>u.feedingBytes)){let T=new DataView(e.buffer,e.byteOffset+d+u.feedingBytes,u.loadedBytes-u.feedingBytes),I=u.loadedBytes===h?T:v.parseFeedableSegmentChunk(T);I?.byteLength&&(l.status="partially_fed",u.feedingBytes+=I.byteLength,await this.sourceBufferTaskQueue.append(I,s)&&!s.aborted?(u.fedBytes+=I.byteLength,u.fedBytes===h&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){if(!((0,y.isNullable)(this.sourceBuffer)||!pe(this.mediaSource,this.sourceBuffer))){!this.isLive&&Q.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(Qt(this.sourceBuffer.buffered,e.segment.time.from,100)&&Qt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",Du(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values())if(i.id!==t)for(let a of this.segments.get(i.id)??[])a.status==="fed"&&Math.round(a.time.from)===Math.round(e.segment.time.from)&&Math.round(a.time.to)===Math.round(e.segment.time.to)&&(a.status="none");this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[a,s]of this.initData.entries()){let n=s instanceof Promise;t||=n,s===null&&(e=a)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=yu(()=>(0,Cg.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let a=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,y.abortable)(this.destroyAbortController.signal,async function*(){let o=(0,y.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,ca(e.mime),a)).then(async o=>{if(!o)return;let{init:u,dataView:l,segments:d}=o,p=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,p);let h=d;this.isLive&&Le(e.segmentReference)&&(h=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,h),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:y.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status="none";await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,i=!1){if(!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,y.isNullable)(e))return!1;let a=[],s=0,n=u=>{u.sort((d,p)=>d.from-p.from);let l=[u[0]];for(let d=1;d<u.length;d++){let{from:p,to:h}=u[d],m=l[l.length-1];m.to>=p?m.to=Math.max(m.to,h):l.push(u[d])}return l},o=u=>{if(s>=t)return a;a.push({...u.time}),a=n(a);let l=Du(u)?u.size??0:u.byte.to-u.byte.from;s+=l};for(let u of this.segments.values())for(let l of u){let d=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,p=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(d||p)&&l.status==="fed"&&o(l)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let l=this.sourceBuffer.buffered.start(u)*1e3,d=this.sourceBuffer.buffered.end(u)*1e3,p=0;for(let h of this.segments.values())for(let m of h)(0,Ds.default)(["none","partially_ejected"],m.status)&&Math.round(m.time.from)<=Math.round(l)&&Math.round(m.time.to)>=Math.round(d)&&p++;if(p===this.segments.size){let h={time:{from:l,to:d},url:"",status:"none"};o(h)}}if(a.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let l of this.segments.values())for(let d of l)d.time.from>=e+u&&d.status==="fed"&&o(d)}return a.length?(await Promise.all(a.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,d)=>l||d,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)}getDebugBufferState(){if(!(!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,y.isNullable)(e)?0:Ui(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer))){if(this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(a=>this.sourceBuffer&&(Math.round(a.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(a.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));for(let i of t){let a={representation:e,from:i.time.from,to:i.time.to};for(let s=0;s<this.sourceBuffer.buffered.length;s++){let n=this.sourceBuffer.buffered.start(s)*1e3,o=this.sourceBuffer.buffered.end(s)*1e3;if(!(o<=i.time.from||n>=i.time.to)){if(n<=i.time.from&&o>=i.time.to){a=void 0;break}o>i.time.from&&o<i.time.to&&(a.from=o),n<i.time.to&&n>i.time.from&&(a.to=n)}}a&&a.to-a.from>1&&!this.gaps.some(s=>a&&s.from===a.from&&s.to===a.to)&&this.gaps.push(a)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(a=>this.sourceBuffer&&(Math.round(a.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(a.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=yu(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:y.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,y.isNullable)(this.sourceBuffer)||!pe(this.mediaSource,this.sourceBuffer)||(0,y.isNullable)(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let a=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),s=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:a,to:s})}let t=100;for(let i of this.segments.values())for(let a of i){let{status:s}=a;if(s!=="fed"&&s!=="partially_ejected")continue;let n=Math.floor(a.time.from),o=Math.ceil(a.time.to),u=e.some(d=>d.from-t<=n&&d.to+t>=o),l=e.filter(d=>n>=d.from&&n<d.to-t||o>d.from+t&&o<=d.to);u||(l.length===1?a.status="partially_ejected":this.gaps.some(d=>d.from===a.time.from||d.to===a.time.to)?a.status="partially_ejected":a.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:y.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var ma=r=>{let e=new URL(r);return e.searchParams.set("quic","1"),e.toString()};var Dg=r=>{let e=r.get("X-Delivery-Type"),t=r.get("X-Reused"),i=e===null?"http1":e??void 0,a=t===null?void 0:{1:!0,0:!1}[t]??void 0;return{type:i,reused:a}};var _=require("@vkontakte/videoplayer-shared/es2024");var Vg=r=>{let e=new URL(r);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var Os=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:a=!1,useEnableSubtitlesParam:s=!1}){this.lastConnectionType$=new _.ValueSubject(void 0);this.lastConnectionReused$=new _.ValueSubject(void 0);this.lastRequestFirstBytes$=new _.ValueSubject(void 0);this.recoverableError$=new _.Subject;this.error$=new _.Subject;this.abortAllController=new Pe;this.subscription=new _.Subscription;this.fetchManifest=(0,_.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=ma(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Vg(i));let a=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Bs);return a?(t.log("success",(0,_.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(a.headers),a.text()):(t.error("error",(0,_.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=(0,_.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:a,priority:s="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){let l=e,d=new Headers,p=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{d.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let U=new URL(l,location.href);U.searchParams.append("bytes",`${i.from}-${i.to}`),l=U.toString();break}default:(0,_.assertNever)(t)}this.requestQuic&&(l=ma(l));let h=this.abortAllController.signal,m;if(n){let U=new Pe;if(m=(0,_.merge)((0,_.fromEvent)(this.abortAllController.signal,"abort"),(0,_.fromEvent)(n,"abort")).subscribe(()=>{try{U.abort()}catch(C){Bs(C)}}),this.subscription.add(m),this.abortAllController.signal.aborted||n.aborted)try{U.abort()}catch(C){Bs(C)}h=U.signal}let b=(0,_.now)();p.log("startRequest",(0,_.flattenObject)({url:l,priority:s,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:b}));let v=yield this.doFetch(l,{priority:s,headers:d,signal:h}),T=(0,_.now)();if(!v)return p.error("error",{message:"No response in request"}),p.end(),m?.unsubscribe(),null;if(this.throughputEstimator?.addRawRtt(T-b),!v.ok||!v.body){m?.unsubscribe();let U=`Fetch error ${v.status}: ${v.statusText}`;return p.error("error",{message:U}),p.end(),Promise.reject(new Error(`Fetch error ${v.status}: ${v.statusText}`))}if(this.onHeadersReceived(v.headers),!a&&!o){m?.unsubscribe();let U=(0,_.now)(),C={requestStartedAt:b,requestEndedAt:U,duration:U-b};return p.log("endRequest",(0,_.flattenObject)(C)),p.end(),v.arrayBuffer()}let[I,A]=v.body.tee(),P=I.getReader();o&&this.throughputEstimator?.trackStream(A,u);let $=0,k=new Uint8Array(0),Y=!1,z=U=>{m?.unsubscribe(),Y=!0,Bs(U)},X=(0,_.abortable)(h,async function*({done:U,value:C}){if($===0&&this.lastRequestFirstBytes$.next((0,_.now)()-b),h.aborted){m?.unsubscribe();return}if(!U&&C){let ie=new Uint8Array(k.length+C.length);ie.set(k),ie.set(C,k.length),k=ie,$+=C.byteLength,a?.(new DataView(k.buffer),$),yield P?.read().then(X,z)}}.bind(this));yield P?.read().then(X,z),m?.unsubscribe();let K=(0,_.now)(),E={failed:Y,requestStartedAt:b,requestEndedAt:K,duration:K-b};return Y?(p.error("endRequest",(0,_.flattenObject)(E)),p.end(),null):(p.log("endRequest",(0,_.flattenObject)(E)),p.end(),k.buffer)}.bind(this));this.fetchByteRangeRepresentation=(0,_.abortable)(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:a,to:s}=e.initRange,n=a,o=s,u=!1,l,d;e.indexRange&&(l=e.indexRange.from,d=e.indexRange.to,u=s+1===l,u&&(n=Math.min(l,a),o=Math.max(d,s))),n=Math.min(n,0);let p=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!p)return null;let h=new DataView(p,a-n,s-n+1);if(!t.validateData(h))throw new Error("Invalid media file");let m=t.parseInit(h),b=e.indexRange??t.getIndexRange(m);if(!b)throw new ReferenceError("No way to load representation index");let v;if(u)v=new DataView(p,b.from-n,b.to-b.from+1);else{let I=yield this.fetch(e.url,{range:b,priority:i,measureThroughput:!1});if(!I)return null;v=new DataView(I)}let T=t.parseSegments(v,m,b);return{init:m,dataView:new DataView(p),segments:T}}.bind(this));this.fetchTemplateRepresentation=(0,_.abortable)(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),a=yield this.fetch(i,{priority:t,measureThroughput:!1});return a?{init:null,segments:e.segments.map(n=>({...n,status:"none",size:void 0})),dataView:new DataView(a)}:null}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=a,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=s}onHeadersReceived(e){let{type:t,reused:i}=Dg(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}async fetchRepresentation(e,t,i="auto"){let{type:a}=e;switch(a){case"byteRange":return await this.fetchByteRangeRepresentation(e,t,i)??null;case"template":return await this.fetchTemplateRepresentation(e,i)??null;default:(0,_.assertNever)(a)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}async doFetch(e,t){let i=await St(e,t);if(i.ok)return i;let a=await i.text(),s=parseInt(a);if(!isNaN(s))switch(s){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:_.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:_.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:_.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:_.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${s})`,category:_.ErrorCategory.FATAL})}}},Bs=r=>{if(!da(r))throw r};var ci=(r,e,t)=>t*e+(1-t)*r,Nu=(r,e)=>r.reduce((t,i)=>t+i,0)/e,Bg=(r,e,t,i)=>{let a=0,s=t,n=Nu(r,e),o=e<i?e:i;for(let u=0;u<o;u++)r[s]>n?a++:a--,s=(r.length+s-1)%r.length;return Math.abs(a)===o};var fa=require("@vkontakte/videoplayer-shared/es2024"),Yt=class{constructor(e){this.prevReported=void 0;this.pastMeasures=[];this.takenMeasures=0;this.measuresCursor=0;this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new fa.ValueSubject(e.initial),this.debounced$=new fa.ValueSubject(e.initial);let t=e.label??"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new Ae(`raw_${t}`),this.smoothedSeries$=new Ae(`smoothed_${t}`),this.reportedSeries$=new Ae(`reported_${t}`),this.rawSeries$.next(e.initial),this.smoothedSeries$.next(e.initial),this.reportedSeries$.next(e.initial)}next(e){let t=0,i=0;for(let o=0;o<this.pastMeasures.length;o++)this.pastMeasures[o]!==void 0&&(t+=(this.pastMeasures[o]-this.smoothed)**2,i++);this.takenMeasures=i,t/=i;let a=Math.sqrt(t),s=this.smoothed+this.params.deviationFactor*a,n=this.smoothed-this.params.deviationFactor*a;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>s||this.smoothed<n)&&((0,fa.isNullable)(this.prevReported)||Math.abs(this.smoothed-this.prevReported)/this.prevReported>=this.params.changeThreshold)&&(this.prevReported=this.smoothed,this.debounced$.next(this.smoothed),this.reportedSeries$.next(this.smoothed))}};var _s=class extends Yt{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=ci(this.slow,e,this.params.emaAlphaSlow),this.fast=ci(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var Ns=class extends Yt{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=Nu(this.pastMeasures,this.takenMeasures);this.emaSmoothed=ci(this.emaSmoothed,e,this.params.emaAlpha);let i=Bg(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var Fs=class extends Yt{constructor(t){super(t);this.furtherValues=[];this.currentTopExtremumValue=0;this.extremumInterval=t.extremumInterval}next(t){this.currentTopExtremumValue<=t?(this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.length===this.extremumInterval?(super.next(this.currentTopExtremumValue),this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.push(t)}updateSmoothedValue(t){this.smoothed=this.smoothed?ci(this.smoothed,t,this.params.emaAlpha):t}};var di=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new _s({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new Ns({initial:e,emaAlpha:i.emaAlpha,basisTrendChangeCount:i.basisTrendChangeCount,changeThreshold:i.changeThreshold,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"})}static getLiveBufferSmoothedValue(e,t){return new Fs({initial:e,label:"liveEdgeDelay",...t})}};var Fu=(r,e)=>{r&&r.playbackRate!==e&&(r.playbackRate=e)};var qs=require("@vkontakte/videoplayer-shared/es2024");var ba=class r{constructor(e,t){this.currentRepresentation$=new qs.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!(0,qs.isNullable)(e))for(let t of this.representations)for(let i of t){let a=i.segmentReference,s=a.segments.length,n=a.segments[0].time.from,o=a.segments[s-1].time.to;if(e<n||e>o)continue;let u=a.segments.find(l=>l.time.from<=e&&l.time.to>=e);!u||this.currentSegment?.time.from===u.time.from&&this.currentSegment.time.to===u.time.to||(this.currentSegment=u,this.currentRepresentation$.next({...i,label:"Live Text",language:"ru",isAuto:!0,url:new URL(u.url,a.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let i=r.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(t=>r.filterRepresentations(t.representations))}static filterRepresentations(e){return e?.filter(t=>t.kind==="text"&&"segmentReference"in t&&Le(t.segmentReference))}};var Hs=F(Ut(),1),qu=F(De(),1);var ga=require("@vkontakte/videoplayer-shared/es2024");var Og=(r,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:a,protocols:s,codecs:n,nativeHlsSupported:o}=Q.video,u=(n.h264||n.h265)&&n.aac,l=s.mse&&(!i||!!window.MediaStreamTrack)||s.mms&&t;return r.filter(d=>{switch(d){case"DASH_SEP":return l&&a.mp4&&u;case"DASH_WEBM":return l&&a.webm&&n.vp9&&n.opus;case"DASH_WEBM_AV1":return l&&a.webm&&n.av1&&n.opus;case"DASH_STREAMS":return l&&(a.mp4&&u||a.webm&&(n.vp9||n.av1)&&(n.opus||n.aac));case"DASH_LIVE":return l&&a.mp4&&u;case"DASH_LIVE_CMAF":return l&&a.mp4&&u&&a.cmaf;case"DASH_ONDEMAND":return l&&a.mp4&&u;case"HLS":case"HLS_ONDEMAND":return o||e&&l&&a.mp4&&u;case"HLS_LIVE":case"HLS_LIVE_CMAF":return o;case"MPEG":return a.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return s.webrtc&&s.ws&&n.h264&&(a.mp4||a.webm);default:return(0,ga.assertNever)(d)}})},Us=r=>{let{webmDecodingInfo:e}=Q.video,t="DASH_WEBM",i="DASH_WEBM_AV1";switch(r){case"vp9":return[t,i];case"av1":return[i,t];case"none":return[];case"smooth":return e?e[i].smooth?[i,t]:e[t].smooth?[t,i]:[i,t]:[t,i];case"power_efficient":return e?e[i].powerEfficient?[i,t]:e[t].powerEfficient?[t,i]:[i,t]:[t,i];default:(0,ga.assertNever)(r)}return[t,i]},_g=({webmCodec:r,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...Us(r),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],a=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(Q.device.isAndroid)switch(e){case"mpeg":return["MPEG",...i,"HLS","HLS_ONDEMAND"];case"hls":return["HLS","HLS_ONDEMAND",...i,"MPEG"];case"dash":return[...i,"HLS","HLS_ONDEMAND","MPEG"];case"dash_any_mpeg":return[...a,"MPEG",...Us(r),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...Us(r),"MPEG",...a,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...Us(r),...a,"HLS","HLS_ONDEMAND"];default:(0,ga.assertNever)(e)}return Q.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},Ng=({androidPreferredFormat:r,preferCMAF:e,preferWebRTC:t})=>{let i=e?["DASH_LIVE_CMAF","DASH_LIVE"]:["DASH_LIVE","DASH_LIVE_CMAF"],a=e?["HLS_LIVE_CMAF","HLS_LIVE"]:["HLS_LIVE","HLS_LIVE_CMAF"],s=[...i,...a],n=[...a,...i],o,u=Q.device.isMac&&Q.browser.isSafari;if(Q.device.isAndroid)switch(r){case"dash":case"dash_any_mpeg":case"dash_any_webm":case"dash_sep":{o=s;break}case"hls":case"mpeg":{o=n;break}default:(0,ga.assertNever)(r)}else Q.video.nativeHlsSupported&&!u?o=n:u?o=e?["DASH_LIVE_CMAF","HLS_LIVE_CMAF","HLS_LIVE","DASH_LIVE"]:["HLS_LIVE","DASH_LIVE","DASH_LIVE_CMAF","HLS_LIVE_CMAF"]:o=s;return t?["WEB_RTC_LIVE",...o]:[...o,"WEB_RTC_LIVE"]},Uu=r=>r?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],Fg=r=>{if(r.size===0)return;if(r.size===1){let t=r.values().next();return(0,Hs.default)(t.value.split("."),0)}for(let t of r){let i=(0,Hs.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=r.values().next();return(0,Hs.default)(e.value.split("."),0)},qg=r=>{let e=r.map(i=>js(i)),{codecs:t}=Q.video;return qA().filter(i=>{if((0,qu.default)(e,i))switch(i){case"av1":return t.av1;case"vp9":return t.vp9;case"avc1":return t.h264;case"hev1":return t.h265;default:return!1}else return!1})},Ug=r=>{let e=r.map(i=>js(i)),{codecs:t}=Q.video;return UA().filter(i=>{if((0,qu.default)(e,i))switch(i){case"opus":return t.opus;case"mp4a":return t.aac;default:return!1}})},js=r=>r.split(".")[0].replace("0",""),qA=()=>["av1","vp9","avc1","hev1"],UA=()=>["opus","mp4a"];var GA=["timeupdate","progress","play","seeked","stalled","waiting"],WA=["timeupdate","progress","loadeddata","playing","seeked"];var Qs=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new g.Subscription;this.representationSubscription=new g.Subscription;this.state$=new j("none");this.currentVideoRepresentation$=new g.ValueSubject(void 0);this.currentVideoRepresentationInit$=new g.ValueSubject(void 0);this.currentAudioRepresentation$=new g.ValueSubject(void 0);this.currentVideoSegmentLength$=new g.ValueSubject(0);this.currentAudioSegmentLength$=new g.ValueSubject(0);this.error$=new g.Subject;this.lastConnectionType$=new g.ValueSubject(void 0);this.lastConnectionReused$=new g.ValueSubject(void 0);this.lastRequestFirstBytes$=new g.ValueSubject(void 0);this.currentLiveTextRepresentation$=new g.ValueSubject(null);this.isLive$=new g.ValueSubject(!1);this.isActiveLive$=new g.ValueSubject(!1);this.isLowLatency$=new g.ValueSubject(!1);this.liveDuration$=new g.ValueSubject(0);this.liveSeekableDuration$=new g.ValueSubject(0);this.liveAvailabilityStartTime$=new g.ValueSubject(0);this.liveStreamStatus$=new g.ValueSubject(void 0);this.bufferLength$=new g.ValueSubject(0);this.liveLatency$=new g.ValueSubject(void 0);this.liveLoadBufferLength$=new g.ValueSubject(0);this.livePositionFromPlayer$=new g.ValueSubject(0);this.currentStallDuration$=new g.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new g.ValueSubject(0);this.fetcherRecoverableError$=new g.Subject;this.fetcherError$=new g.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new g.Subject;this.gapWatchdogActive=!1;this.destroyController=new Pe;this.initManifest=(0,g.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=xe(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:g.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,g.abortable)(this.destroyController.signal,async function*(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(u=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:g.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=$g(e??"",this.manifestUrlString)}catch(u){let l=Pb(e)??{id:"ManifestParsing",category:g.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,d)=>!!(this.element?.canPlayType?.(l)&&nt()?.isTypeSupported?.(`${l}; codecs="${d}"`)||u==="text");if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:d,streamIsAlive:p}=t.live,h=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*h),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let m="active";p||(m=d?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(m)}let a={text:t.streams.text,video:[],audio:[]},s,n;for(let u of["video","audio"]){let d=t.streams[u].filter(({mime:h,codecs:m})=>i(u,h,m));a[u]=d;let p;if(this.tuning.dash.codecsPrioritizeEnabled){let h=d.map(({codecs:m})=>m);u==="audio"&&(n=Ug(h),p=n[0]),u==="video"&&(s=qg(h),this.forceVideoCodec&&(0,jg.default)(s,this.forceVideoCodec)?p=this.forceVideoCodec:p=s[0]),p&&(a[u]=d.filter(({codecs:m})=>js(m)===p))}else{let h=new Set(d.map(({codecs:m})=>m));p=Fg(h),p&&(a[u]=d.filter(({codecs:m})=>m.startsWith(p)))}if(u==="video"){let h=this.tuning.preferHDR,m=a.video.some(v=>v.hdr),b=a.video.some(v=>!v.hdr);Q.display.isHDR&&h&&m?a.video=a.video.filter(v=>v.hdr):b&&(a.video=a.video.filter(v=>!v.hdr))}}let o={...t,streams:a};return this.tuning.dash.codecsPrioritizeEnabled&&(o.codecs={video:s,audio:n}),this.tracer.log("updateManifestEnd",(0,g.flattenObject)(o)),o}.bind(this));this.initRepresentations=(0,g.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",(0,g.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,g.assertNonNullable)(this.manifest),(0,g.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let a=h=>{this.representationSubscription.add((0,g.fromEvent)(h,"error").pipe((0,g.filter)(m=>!!this.element?.played.length)).subscribe(m=>{this.error$.next({id:"VideoSource",category:g.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:m})}))};this.source=this.tuning.useManagedMediaSource?nf():new MediaSource;let s=document.createElement("source");if(a(s),s.src=URL.createObjectURL(this.source),this.element.appendChild(s),this.tuning.useManagedMediaSource&&xs())if(i){let h=document.createElement("source");a(h),h.type="application/x-mpegurl",h.src=i.url,this.element.appendChild(h)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((h,m)=>[...h,...m.representations],[]);if(this.videoBufferManager=new ha("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,g.isNonNullable)(t)){let h=this.manifest.streams.audio.reduce((m,b)=>[...m,...b.representations],[]);this.audioBufferManager=new ha("audio",this.source,h,n),this.bufferManagers.push(this.audioBufferManager)}ba.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new ba(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,g.merge)(...WA.map(h=>(0,g.fromEvent)(this.element,h))).pipe((0,g.map)(h=>this.element?Ui(this.element.buffered,this.element.currentTime*1e3):0),(0,g.filterChanged)(),(0,g.tap)(h=>{h>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,g.merge)((0,g.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,g.filterChanged)()).subscribe(m=>this.liveStreamEndTimestamp=(0,g.now)())),this.subscription.add((0,g.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,g.interval)(1e3).subscribe(m=>{let b=vs(this.manifestUrlString,2);this.manifestUrlString=xe(this.manifestUrlString,b+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,g.fromEvent)(this.element,"play").subscribe(m=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add((0,g.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,g.map)(({isActiveLive:m,isLowLatency:b})=>m&&b),(0,g.filterChanged)()).subscribe(m=>{this.isManualDecreasePlaybackInLive()||Fu(this.element,1)})),this.representationSubscription.add((0,g.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,g.filter)(({bufferLength:m,isActiveLive:b,isLowLatency:v})=>b&&v&&!!m)).subscribe(({bufferLength:m})=>this.liveBuffer.next(m))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(m=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!m)return;let b=this.liveSeekableDuration$.getValue()-m/1e3;this.liveSeekableDuration$.next(Math.max(b,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+m/1e3)})),this.representationSubscription.add((0,g.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,g.filter)(({isLive:m})=>m),(0,g.filterChanged)((m,b)=>b.bufferLength<m.bufferLength),(0,g.map)(({rtt:m,bufferLength:b,segmentServerLatency:v})=>{let T=vs(this.manifestUrlString,2);return(m/2+b+v+T)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,g.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:m,isActiveLive:b,isLowLatency:v})=>{if(!v||!b)return;let T=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,I=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,A=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,P=m-T;if(this.isManualDecreasePlaybackInLive())return;let $=1;Math.abs(P)>I&&($=1+Math.sign(P)*A),Fu(this.element,$)})),this.representationSubscription.add(this.bufferLength$.subscribe(m=>{let b=0;if(m){let v=(this.element?.currentTime??0)*1e3;b=Math.min(...this.bufferManagers.map(I=>I.getLiveSegmentsToLoadState(this.manifest)?.to??v))-v}this.liveLoadBufferLength$.getValue()!==b&&this.liveLoadBufferLength$.next(b)}));let h=0;this.representationSubscription.add((0,g.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,g.throttle)(1e3)).subscribe(async({liveLoadBufferLength:m,bufferLength:b})=>{if(!this.element||this.isUpdatingLive)return;let v=this.element.playbackRate,T=vs(this.manifestUrlString,2),I=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,A=Math.min(I,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*v),P=this.tuning.dashCmafLive.normalizedActualBufferOffset*v,$=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*v,k=isFinite(m)?m:b,Y=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),z=I<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(z);let X="none";if(Y?X="active_low_latency":this.isLowLatency$.getValue()&&z?(this.bufferManagers.forEach(K=>K.proceedLowLatencyLive()),X="active_low_latency"):T!==0&&k<A?X="live_forward_buffering":k<A+$&&(X="live_with_target_offset"),isFinite(m)&&(h=m>h?m:h),X==="live_forward_buffering"||X==="live_with_target_offset"){let K=h-(A+P),E=this.normolizeLiveOffset(Math.trunc(T+K/v)),U=Math.abs(E-T),C=0;!m||U<=this.tuning.dashCmafLive.offsetCalculationError?C=T:E>0&&U>this.tuning.dashCmafLive.offsetCalculationError&&(C=E),this.manifestUrlString=xe(this.manifestUrlString,C,2)}(X==="live_with_target_offset"||X==="live_forward_buffering")&&(h=0,await this.updateLive())},m=>{this.error$.next({id:"updateLive",category:g.ErrorCategory.VIDEO_PIPELINE,thrown:m,message:"Failed to update live with subscription"})}))}let l=(0,g.merge)(...this.bufferManagers.map(h=>h.fullyBuffered$)).pipe((0,g.map)(()=>this.bufferManagers.every(h=>h.fullyBuffered$.getValue()))),d=(0,g.merge)(...this.bufferManagers.map(h=>h.onLastSegment$)).pipe((0,g.map)(()=>this.bufferManagers.some(h=>h.onLastSegment$.getValue()))),p=(0,g.combine)({allBuffersFull:l,someBufferEnded:d}).pipe((0,g.filterChanged)(),(0,g.map)(({allBuffersFull:h,someBufferEnded:m})=>h&&m),(0,g.filter)(h=>h));if(this.representationSubscription.add((0,g.merge)(this.forceEnded$,p).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(h=>!h.updating))try{this.source?.endOfStream()}catch(h){this.error$.next({id:"EndOfStream",category:g.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:h})}})),this.representationSubscription.add((0,g.merge)(...this.bufferManagers.map(h=>h.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let h=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((m,b)=>{h&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){m();return}this.tuning.dash.rejectOnSourceOpenTimeout?b(new Error("Timeout reject when wait sourceopen event")):m()},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),m()},{once:!0})})}if(!this.isLive$.getValue()){let h=[this.manifest.duration??0,...(0,ju.default)((0,ju.default)([...this.manifest.streams.audio,...this.manifest.streams.video],m=>m.representations),m=>{let b=[];return m.duration&&b.push(m.duration),Le(m.segmentReference)&&m.segmentReference.totalSegmentsDurationMs&&b.push(m.segmentReference.totalSegmentsDurationMs),b})];this.source.duration=Math.max(...h)/1e3}this.audioBufferManager&&(0,g.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.tick=()=>{if(!this.element||!this.videoBufferManager||this.source?.readyState!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),this.audioBufferManager?.maintain(e),this.liveTextManager?.maintain(e),(this.videoBufferManager.gaps.length||this.audioBufferManager?.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,g.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:g.ErrorCategory.WTF,message:"Error handling gaps",thrown:t})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=e.forceVideoCodec,this.fetcher=new Os({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.liveBuffer=di.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){(0,g.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,g.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=xe(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.videoBufferManager?.seekLive(this.manifest.streams.video),await this.audioBufferManager?.seekLive(this.manifest.streams.audio),this.liveTextManager?.seekLive(this.manifest.streams.text))}initBuffer(){(0,g.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,g.merge)(...GA.map(e=>(0,g.fromEvent)(this.element,e)),(0,g.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:g.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,g.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,g.fromEvent)(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&Qt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{if(!this.element||this.source?.readyState!=="open")return;let t=this.currentStallDuration$.getValue();t+=50,this.currentStallDuration$.next(t);let i={timeInWaiting:t},a=(0,g.now)(),s=100,n=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(n);let o=this.audioBufferManager?.lastDataObtainedTimestamp??0,u=this.videoBufferManager?.getForwardBufferDuration()??0,l=this.audioBufferManager?.getForwardBufferDuration()??0,d=u<s&&a-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,p=this.audioBufferManager&&l<s&&a-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((d||p)&&t>this.tuning.dash.crashOnStallTWithoutDataTimeout||t>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${t} ms`);if(this.isLive$.getValue()&&t%2e3===0){let h=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(h).catch(m=>{this.error$.next({id:"stallIntervalCallback",category:g.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:m})}),i.liveLastOffset=h}else{let h=this.element.currentTime*1e3;this.videoBufferManager?.maintain(h),this.audioBufferManager?.maintain(h),i.position=h}this.tracer.log("stallIntervalCallback",(0,g.flattenObject)(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=(0,g.interval)(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:g.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:t})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,i=!1){let a={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?a?.switchToWithPreviousAbort(t,i):a?.switchTo(t,i):a?.switchToOld(t,i)}async seek(e,t){(0,g.assertNonNullable)(this.element),(0,g.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(i),Qt(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!((0,g.isNullable)(this.element)||(0,g.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,g.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){(0,g.isNonNullable)(this.element)&&(0,g.isNonNullable)(this.source)&&(0,g.isNonNullable)(e)&&this.source?.readyState==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(t=>t.warmUpMediaSource())}get isStreamEnded(){return this.source?.readyState==="ended"}stop(){this.tracer.log("stop"),this.element?.querySelectorAll("source").forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){return this.manifest?.streams}getCodecs(){return this.manifest?.codecs}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),this.source?.readyState==="open"&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,g.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers?.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getDebugBufferState();if(!e)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i={isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime};this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let a=this.element.currentTime*1e3,s=[],n=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let o of this.bufferManagers)for(let u of o.gaps)o.playingRepresentation$.getValue()===u.representation&&u.from-n<=a&&u.to+n>a&&(this.element.duration*1e3-u.to<this.tuning.endGapTolerance?s.push(1/0):s.push(u.to));if(s.length){let o=Math.max(...s)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,o===1/0?this.forceEnded$.next():(this.element.currentTime=o/1e3,i={...i,gapEnds:s,jumpTo:o,resultCurrentTime:this.element.currentTime},this.tracer.log("jumpGap",(0,g.flattenObject)(i)))}}};var Gs=class{constructor(e,t){this.fov=e,this.orientation=t}};var Ws=class{constructor(e,t){this.rotating=!1;this.fading=!1;this.lastTickTS=0;this.lastCameraTurnTS=0;this.fadeStartSpeed=null;this.fadeTime=0;this.camera=e,this.options=t,this.rotationSpeed={x:0,y:0,z:0},this.fadeCorrection=1/(this.options.speedFadeTime/1e3)**2}turnCamera(e=0,t=0,i=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+i)}pointCameraTo(e=0,t=0,i=0){t=this.limitCameraRotationY(t);let a=e-this.camera.orientation.x,s=t-this.camera.orientation.y,n=i-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=i,this.lastCameraTurn={x:a,y:s,z:n},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,i){this.rotationSpeed.x=e??this.rotationSpeed.x,this.rotationSpeed.y=t??this.rotationSpeed.y,this.rotationSpeed.z=i??this.rotationSpeed.z}startRotation(){this.rotating=!0}stopRotation(e=!1){e?(this.setRotationSpeed(0,0,0),this.fadeStartSpeed=null):this.startFading(this.rotationSpeed.x,this.rotationSpeed.y,this.rotationSpeed.z),this.rotating=!1}onCameraRelease(){if(this.lastCameraTurn&&this.lastCameraTurnTS){let e=Date.now()-this.lastCameraTurnTS;if(e<this.options.speedFadeThreshold){let t=(1-e/this.options.speedFadeThreshold)*this.options.rotationSpeedCorrection;this.startFading(this.lastCameraTurn.x*t,this.lastCameraTurn.y*t,this.lastCameraTurn.z*t)}}}startFading(e,t,i){this.setRotationSpeed(e,t,i),this.fadeStartSpeed={...this.rotationSpeed},this.fading=!0}stopFading(){this.fadeStartSpeed=null,this.fading=!0,this.fadeTime=0}limitCameraRotationY(e){return Math.max(-this.options.maxYawAngle,Math.min(e,this.options.maxYawAngle))}tick(e){if(!this.lastTickTS){this.lastTickTS=e,this.lastCameraTurnTS=Date.now();return}let t=e-this.lastTickTS,i=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i);else if(this.fading&&this.fadeStartSpeed){let a=-this.fadeCorrection*(this.fadeTime/1e3)**2+1;this.setRotationSpeed(this.fadeStartSpeed.x*a,this.fadeStartSpeed.y*a,this.fadeStartSpeed.z*a),a>0?this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i):(this.stopRotation(!0),this.stopFading()),this.fadeTime=Math.min(this.fadeTime+t,this.options.speedFadeTime)}this.lastTickTS=e}};var Qg=`attribute vec2 a_vertex;
124
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var oc=q(Ht(),1);var iv=require("@vkontakte/videoplayer-shared/es2024"),rv=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{let o=(a?Jt(a):void 0)??(0,iv.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},sv=({id:s,bitrate:e})=>({id:s,bitrate:e}),av=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),nv=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),uc=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,oc.default)(i.split("."),0),isDefault:r}),lc=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,oc.default)(r.split("."),0)}),cc=s=>"url"in s,lt=s=>s.type==="template",ra=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var ov=s=>{if(!s?.startsWith("P"))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(s),r=i?.[1]==="-"?-1:1,a={days:e(i?.[5],r),hours:e(i?.[6],r),minutes:e(i?.[7],r),seconds:e(i?.[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},gi=(s,e)=>{let t=s;t=(0,dc.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,uv.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,dc.default)(t,n,(o,u)=>(0,sa.isNullable)(a)?o:(0,sa.isNullable)(u)?a:(0,lv.default)(a,parseInt(u,10),"0"))}return t},dv=(s,e)=>{let i=new DOMParser().parseFromString(s,"application/xml"),r={video:[],audio:[],text:[]},a=i.children[0],n=Array.from(a.querySelectorAll("MPD > BaseURL").values()).map(D=>D.textContent?.trim()??""),o=(0,cv.default)(n,0)??"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),c=a.getAttribute("publishTime"),p=a.getElementsByTagName("vk:Attrs")[0],d=p?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=p?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,m=p?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,g=p?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,y;u&&(y={availabilityStartTime:l?new Date(l).getTime():0,publishTime:c?new Date(c).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:m==="yes"});let T,w=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],M=x.reduce((D,I)=>({...D,[I.id]:I.children}),{}),$=x.reduce((D,I)=>({...D,[I.id]:I.getAttribute("duration")}),{});w?T=ov(w):(0,pc.default)($).filter(D=>D).length&&!u?T=(0,pc.default)($).reduce((D,I)=>D+(ov(I)??0),0):g&&(T=parseInt(g,10));let F=0,Q=a.getAttribute("profiles")?.split(",")??[];for(let D of x.map(I=>I.id))for(let I of M[D]){let U=I.getAttribute("id")??"id"+(F++).toString(10),A=I.getAttribute("mimeType")??"",R=I.getAttribute("codecs")??"",V=I.getAttribute("contentType")??A?.split("/")[0],ge=I.getAttribute("profiles")?.split(",")??[],N=tv(I.getAttribute("lang")??"")??{},re=I.querySelector("Label")?.textContent?.trim()??void 0,ce=I.querySelectorAll("Representation"),Te=I.querySelector("SegmentTemplate"),Be=I.querySelector("Role")?.getAttribute("value")??void 0,Ie=V,de={id:U,language:N.language,isDefault:Be==="main",label:re,codecs:R,hdr:Ie==="video"&&Or(R),mime:A,representations:[]};for(let O of ce){let z=O.getAttribute("lang")??void 0,qe=re??I.getAttribute("label")??O.getAttribute("label")??void 0,De=O.querySelector("BaseURL")?.textContent?.trim()??"",he=new URL(De||o,e).toString(),Ve=O.getAttribute("mimeType")??A,bt=O.getAttribute("codecs")??R??"",it;if(V==="text"){let we=O.getAttribute("id")||"",gt=N.privateuse?.includes("x-auto")||we.includes("_auto"),Ue=O.querySelector("SegmentTemplate");if(Ue){let Ct={representationId:O.getAttribute("id")??void 0,bandwidth:O.getAttribute("bandwidth")??void 0},ri=parseInt(O.getAttribute("bandwidth")??"",10)/1e3,si=parseInt(Ue.getAttribute("startNumber")??"",10)??1,St=parseInt(Ue.getAttribute("timescale")??"",10),_i=Ue.querySelectorAll("SegmentTimeline S")??[],vt=Ue.getAttribute("media");if(!vt)continue;let ai=[],ni=0,oi="",yt=0,Vt=si,ue=0;for(let xe of _i){let rt=parseInt(xe.getAttribute("d")??"",10),fe=parseInt(xe.getAttribute("r")??"",10)||0,He=parseInt(xe.getAttribute("t")??"",10);ue=Number.isFinite(He)?He:ue;let st=rt/St*1e3,Tt=ue/St*1e3;for(let Re=0;Re<fe+1;Re++){let je=gi(vt,{...Ct,segmentNumber:Vt.toString(10),segmentTime:(ue+Re*rt).toString(10)}),It=(Tt??0)+Re*st,_t=It+st;Vt++,ai.push({time:{from:It,to:_t},url:je})}ue+=(fe+1)*rt,ni+=(fe+1)*st}yt=ue/St*1e3,oi=gi(vt,{...Ct,segmentNumber:Vt.toString(10),segmentTime:ue.toString(10)});let Ot={time:{from:yt,to:1/0},url:oi},Oe={type:"template",baseUrl:he,segmentTemplateUrl:vt,initUrl:"",totalSegmentsDurationMs:ni,segments:ai,nextSegmentBeyondManifest:Ot,timescale:St};it={id:we,kind:"text",segmentReference:Oe,profiles:[],duration:T,bitrate:ri,mime:"",codecs:"",width:0,height:0,isAuto:gt}}else it={id:we,isAuto:gt,kind:"text",url:he}}else{let we=O.getAttribute("contentType")??Ve?.split("/")[0]??V,gt=I.getAttribute("profiles")?.split(",")??[],Ue=parseInt(O.getAttribute("width")??"",10),Ct=parseInt(O.getAttribute("height")??"",10),ri=parseInt(O.getAttribute("bandwidth")??"",10)/1e3,si=O.getAttribute("frameRate")??"",St=O.getAttribute("quality")??void 0,_i=si?to(si):void 0,vt=O.getAttribute("id")??"id"+(F++).toString(10),ai=we==="video"?`${Ct}p`:we==="audio"?`${ri}Kbps`:bt,ni=`${vt}@${ai}`,oi=[...Q,...ge,...gt],yt,Vt=O.querySelector("SegmentBase"),ue=O.querySelector("SegmentTemplate")??Te;if(Vt){let Oe=O.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[xe,rt]=Oe.split("-").map(je=>parseInt(je,10)),fe={from:xe,to:rt},He=O.querySelector("SegmentBase")?.getAttribute("indexRange"),[st,Tt]=He?He.split("-").map(je=>parseInt(je,10)):[],Re=He?{from:st,to:Tt}:void 0;yt={type:"byteRange",url:he,initRange:fe,indexRange:Re}}else if(ue){let Oe={representationId:O.getAttribute("id")??void 0,bandwidth:O.getAttribute("bandwidth")??void 0},xe=parseInt(ue.getAttribute("timescale")??"",10),rt=ue.getAttribute("initialization")??"",fe=ue.getAttribute("media"),He=parseInt(ue.getAttribute("startNumber")??"",10)??1,st=gi(rt,Oe);if(!fe)throw new ReferenceError("No media attribute in SegmentTemplate");let Tt=ue.querySelectorAll("SegmentTimeline S")??[],Re=[],je=0,It="",_t=0;if(Tt.length){let ui=He,Ee=0;for(let xt of Tt){let Le=parseInt(xt.getAttribute("d")??"",10),at=parseInt(xt.getAttribute("r")??"",10)||0,li=parseInt(xt.getAttribute("t")??"",10);Ee=Number.isFinite(li)?li:Ee;let Fi=Le/xe*1e3,Co=Ee/xe*1e3;for(let ci=0;ci<at+1;ci++){let Vo=gi(fe,{...Oe,segmentNumber:ui.toString(10),segmentTime:(Ee+ci*Le).toString(10)}),zr=(Co??0)+ci*Fi,Oo=zr+Fi;ui++,Re.push({time:{from:zr,to:Oo},url:Vo})}Ee+=(at+1)*Le,je+=(at+1)*Fi}_t=Ee/xe*1e3,It=gi(fe,{...Oe,segmentNumber:ui.toString(10),segmentTime:Ee.toString(10)})}else if((0,sa.isNonNullable)(T)){let Ee=parseInt(ue.getAttribute("duration")??"",10)/xe*1e3,xt=Math.ceil(T/Ee),Le=0;for(let at=1;at<xt;at++){let li=gi(fe,{...Oe,segmentNumber:at.toString(10),segmentTime:Le.toString(10)});Re.push({time:{from:Le,to:Le+Ee},url:li}),Le+=Ee}_t=Le,It=gi(fe,{...Oe,segmentNumber:xt.toString(10),segmentTime:Le.toString(10)})}let Do={time:{from:_t,to:1/0},url:It};yt={type:"template",baseUrl:he,segmentTemplateUrl:fe,initUrl:st,totalSegmentsDurationMs:je,segments:Re,nextSegmentBeyondManifest:Do,timescale:xe}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!we||!Ve)continue;let Ot={video:"video",audio:"audio",text:"text"}[we];if(!Ot)continue;Ie||=Ot,it={id:ni,kind:Ot,segmentReference:yt,profiles:oi,duration:T,bitrate:ri,mime:Ve,codecs:bt,width:Ue,height:Ct,fps:_i,quality:St}}de.language||=z,de.label||=qe,de.mime||=Ve,de.codecs||=bt,de.hdr||=Ie==="video"&&Or(bt),de.representations.push(it)}if(Ie){let O=r[Ie].find(z=>z.id===de.id);if(O&&de.representations.every(z=>lt(z.segmentReference)))for(let z of O.representations){let De=de.representations.find(Ve=>Ve.id===z.id)?.segmentReference,he=z.segmentReference;he.segments.push(...De.segments),he.nextSegmentBeyondManifest=De.nextSegmentBeyondManifest}else r[Ie].push(de)}}return{duration:T,streams:r,baseUrls:n,live:y}};var fc=require("@vkontakte/videoplayer-shared/es2024"),Z=(s,e)=>(0,fc.isNonNullable)(s)&&(0,fc.isNonNullable)(e)&&s.readyState==="open"&&LL(s,e);function LL(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}var aa=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new P.ValueSubject(0);this.currentLowLatencySegmentLength$=new P.ValueSubject(0);this.currentSegmentLength$=new P.ValueSubject(0);this.onLastSegment$=new P.ValueSubject(!1);this.fullyBuffered$=new P.ValueSubject(!1);this.playingRepresentation$=new P.ValueSubject(void 0);this.playingRepresentationInit$=new P.ValueSubject(void 0);this.error$=new P.Subject;this.gaps=[];this.subscription=new P.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new pe;this.switchAbortController=new pe;this.destroyAbortController=new pe;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=(0,P.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,P.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new pS(this.sourceBuffer),this.subscription.add((0,P.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add((0,P.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:P.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!Z(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Dr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=this.getForwardBufferDuration(o),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<c).catch(p=>{this.handleAsyncError(p,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);(0,P.assertNonNullable)(i,"No init buffer for starting representation"),(0,P.assertNonNullable)(r,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a))}.bind(this));this.switchTo=(0,P.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,P.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,P.isNullable)(a)||(0,P.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,P.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,P.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this));this.switchToOld=(0,P.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,P.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,P.isNullable)(a)||(0,P.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,P.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,P.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this));this.seekLive=(0,P.abortable)(this.destroyAbortController.signal,async function*(e){let t=(0,ro.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(d=>d.id===u);l&&this.representations.set(u,l);let c=this.representations.get(u);if(!c||!lt(c.segmentReference))return;let p=this.getActualLiveStartingSegments(c.segmentReference);this.segments.set(c.id,p)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);(0,P.assertNonNullable)(r);let a=this.segments.get(i);(0,P.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,P.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(a,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!l?.live,this.baseUrls=l?.baseUrls??[],this.initData=new Map(i.map(c=>[c.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(c=>[c.id,c])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new pe,(0,P.abortable)(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,P.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,P.isNullable)(o)||(0,P.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,P.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),r)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();(0,P.isNonNullable)(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!(0,P.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new pe,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,P.isNullable)(e)||(0,P.isNullable)(this.downloadingRepresentationId)||(0,P.isNullable)(this.playingRepresentationId)||(0,P.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,P.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,P.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(c=>e>=c.time.from&&e<c.time.to);(0,P.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next(r?.time.to-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let c=this.getForwardBufferDuration(e),p=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=r.time.to-e+n&&(a=p)}if(isFinite(this.bufferLimit)&&Dr(this.sourceBuffer.buffered)>=this.bufferLimit){let c=this.getForwardBufferDuration(e),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<p).catch(d=>{this.handleAsyncError(d,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,io.default)(u,r))c="high";else{let p=(0,_r.default)(u,0);p&&p.time.from-r.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(p=>{this.handleAsyncError(p,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,_r.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r}),i=a.time.to;(0,P.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],a=0,n=t.length-1;do r.unshift(t[n]),a+=t[n].time.to-t[n].time.from,n--;while(a<i&&n>=0);return this.liveInitialAdditionalOffset=a-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,ro.default)(e?.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i?.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){let t=(0,ro.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!lt(i.segmentReference))return;let r=i.segmentReference.segments.map(l=>({...l,status:"none",size:void 0})),a=100,n=this.segments.get(i.id)??[],o=(0,_r.default)(n,-1)?.time.to??0,u=r?.findIndex(l=>o>=l.time.from+a&&o<=l.time.to+a);if(u===-1){this.liveUpdateSegmentIndex=0;let l=this.getActualLiveStartingSegments(i.segmentReference);this.segments.set(i.id,l)}else{let l=r.slice(u+1);this.segments.set(i.id,[...n,...l])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,P.assertNonNullable)(e);let t=this.segments.get(e);if(t?.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let r=i.segmentReference;if(!lt(r))return;let a=this.segments.get(i.id)??[],n=a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*r.timescale/1e3).toString(10),l=gi(r.segmentTemplateUrl,{segmentTime:u});a.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);return i?i.find(a=>a.time.from<=e&&a.time.to>=e)?.time.from??void 0:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.sourceBufferTaskQueue?.destroy(),this.gapDetectionIdleCallback&&ti&&ti(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&ti&&ti(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name==="NotFoundError"))throw e}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=i),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,i){let r=e.findIndex(({status:p,time:{from:d,to:h}},m)=>{let g=d<=i&&h>=i,y=d>i||g||m===0&&i===0,T=Math.min(this.forwardBufferTarget,this.bufferLimit),w=this.preloadOnly&&d<=i+T||h<=i+T;return(p==="none"||p==="partially_ejected"&&y&&w&&this.sourceBuffer&&Z(this.mediaSource,this.sourceBuffer)&&!(tt(this.sourceBuffer.buffered,d)&&tt(this.sourceBuffer.buffered,h)))&&y&&w});if(r===-1)return[];if(t!=="byteRange")return e.slice(r,r+1);let a=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,c=this.preloadOnly?this.forwardBufferTarget:0;for(let p=r;p<a.length&&(n<=l||o<=c);p++){let d=a[p];if(n+=d.byte.to+1-d.byte.from,o+=d.time.to+1-d.time.from,d.status==="none"||d.status==="partially_ejected")u.push(d);else break}return u}async loadSegments(e,t,i="auto"){lt(t.segmentReference)?await this.loadTemplateSegment(e[0],t,i):await this.loadByteRangeSegments(e,t,i)}async loadTemplateSegment(e,t,i="auto"){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:a,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,P.abortable)(o,async function*(){let c=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(p=>setTimeout(p,c))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,P.now)(),!c)return;let p=new DataView(c),d=ia(t.mime);if(!isFinite(r.segment.time.to)){let g=t.segmentReference.timescale;r.segment.time.to=d.getChunkEndTime(p,g)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(p,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:m}=d.getServerLatencyTimestamps(p);h&&m&&this.currentLiveSegmentServerLatency$.next(m-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),ra(c)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())lt(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,i="auto"){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await(0,P.abortable)(n,async function*(){let u=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,P.fromEvent)(window,"online").pipe((0,P.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(a,{range:r,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,P.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),ra(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(lt(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,_r.default)(e,0).byte.from,to:(0,_r.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:async(o,u)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,P.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:a,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!lt(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:a}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,c)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,P.now)();let p=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(p)}catch(p){this.error$.next({id:"SegmentFeeding",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:p})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,io.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(a.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),c=ia(n.mime).parseFeedableSegmentChunk(l,this.isLive);c?.byteLength&&(u.status="partially_fed",o.feedingBytes+=c.byteLength,await this.sourceBufferTaskQueue.append(c),o.fedBytes+=c.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:l}=u;if(u.representationId!==t)continue;if(a.aborted){await n();continue}let c=l.byte.from-i,p=l.byte.to-i,d=p-c+1,h=c<r,m=p<=r;if(!h)continue;let g=ia(o.mime);if(l.status==="downloading"&&m){l.status="downloaded";let y=new DataView(e.buffer,e.byteOffset+c,d);await this.sourceBufferTaskQueue.append(y,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(d,r-c),u.loadedBytes>u.feedingBytes)){let y=new DataView(e.buffer,e.byteOffset+c+u.feedingBytes,u.loadedBytes-u.feedingBytes),T=u.loadedBytes===d?y:g.parseFeedableSegmentChunk(y);T?.byteLength&&(l.status="partially_fed",u.feedingBytes+=T.byteLength,await this.sourceBufferTaskQueue.append(T,a)&&!a.aborted?(u.fedBytes+=T.byteLength,u.fedBytes===d&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){if(!((0,P.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer))){!this.isLive&&W.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(tt(this.sourceBuffer.buffered,e.segment.time.from,100)&&tt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",cc(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values())if(i.id!==t)for(let r of this.segments.get(i.id)??[])r.status==="fed"&&Math.round(r.time.from)===Math.round(e.segment.time.from)&&Math.round(r.time.to)===Math.round(e.segment.time.to)&&(r.status="none");this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,a]of this.initData.entries()){let n=a instanceof Promise;t||=n,a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Br(()=>(0,pv.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,P.abortable)(this.destroyAbortController.signal,async function*(){let o=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,ia(e.mime),r)).then(async o=>{if(!o)return;let{init:u,dataView:l,segments:c}=o,p=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,p);let d=c;this.isLive&&lt(e.segmentReference)&&(d=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,d),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:P.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status="none";await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,i=!1){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,P.isNullable)(e))return!1;let r=[],a=0,n=u=>{u.sort((c,p)=>c.from-p.from);let l=[u[0]];for(let c=1;c<u.length;c++){let{from:p,to:d}=u[c],h=l[l.length-1];h.to>=p?h.to=Math.max(h.to,d):l.push(u[c])}return l},o=u=>{if(a>=t)return r;r.push({...u.time}),r=n(r);let l=cc(u)?u.size??0:u.byte.to-u.byte.from;a+=l};for(let u of this.segments.values())for(let l of u){let c=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,p=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(c||p)&&l.status==="fed"&&o(l)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let l=this.sourceBuffer.buffered.start(u)*1e3,c=this.sourceBuffer.buffered.end(u)*1e3,p=0;for(let d of this.segments.values())for(let h of d)(0,io.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(l)&&Math.round(h.time.to)>=Math.round(c)&&p++;if(p===this.segments.size){let d={time:{from:l,to:c},url:"",status:"none"};o(d)}}if(r.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let l of this.segments.values())for(let c of l)c.time.from>=e+u&&c.status==="fed"&&o(c)}return r.length?(await Promise.all(r.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,c)=>l||c,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)}getDebugBufferState(){if(!(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,P.isNullable)(e)?0:Qe(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to};for(let a=0;a<this.sourceBuffer.buffered.length;a++){let n=this.sourceBuffer.buffered.start(a)*1e3,o=this.sourceBuffer.buffered.end(a)*1e3;if(!(o<=i.time.from||n>=i.time.to)){if(n<=i.time.from&&o>=i.time.to){r=void 0;break}o>i.time.from&&o<i.time.to&&(r.from=o),n<i.time.to&&n>i.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(a=>r&&a.from===r.from&&a.to===r.to)&&this.gaps.push(r)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Br(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:P.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,P.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,P.isNullable)(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let r=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),a=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:a})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:a}=r;if(a!=="fed"&&a!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(c=>c.from-t<=n&&c.to+t>=o),l=e.filter(c=>n>=c.from&&n<c.to-t||o>c.from+t&&o<=c.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(c=>c.from===r.time.from||c.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:P.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var Di=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var so=s=>{let e=s.get("X-Delivery-Type"),t=s.get("X-Reused"),i=e===null?"http1":e??void 0,r=t===null?void 0:{1:!0,0:!1}[t]??void 0;return{type:i,reused:r}};var X=require("@vkontakte/videoplayer-shared/es2024");var ao=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var oo=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new X.ValueSubject(void 0);this.lastConnectionReused$=new X.ValueSubject(void 0);this.lastRequestFirstBytes$=new X.ValueSubject(void 0);this.recoverableError$=new X.Subject;this.error$=new X.Subject;this.abortAllController=new pe;this.subscription=new X.Subscription;this.fetchManifest=(0,X.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Di(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=ao(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(no);return r?(t.log("success",(0,X.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,X.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=(0,X.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){let l=e,c=new Headers,p=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let U=new URL(l,location.href);U.searchParams.append("bytes",`${i.from}-${i.to}`),l=U.toString();break}default:(0,X.assertNever)(t)}this.requestQuic&&(l=Di(l));let d=this.abortAllController.signal,h;if(n){let U=new pe;if(h=(0,X.merge)((0,X.fromEvent)(this.abortAllController.signal,"abort"),(0,X.fromEvent)(n,"abort")).subscribe(()=>{try{U.abort()}catch(A){no(A)}}),this.subscription.add(h),this.abortAllController.signal.aborted||n.aborted)try{U.abort()}catch(A){no(A)}d=U.signal}let m=(0,X.now)();p.log("startRequest",(0,X.flattenObject)({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:m}));let g=yield this.doFetch(l,{priority:a,headers:c,signal:d}),y=(0,X.now)();if(!g)return p.error("error",{message:"No response in request"}),p.end(),h?.unsubscribe(),null;if(this.throughputEstimator?.addRawRtt(y-m),!g.ok||!g.body){h?.unsubscribe();let U=`Fetch error ${g.status}: ${g.statusText}`;return p.error("error",{message:U}),p.end(),Promise.reject(new Error(`Fetch error ${g.status}: ${g.statusText}`))}if(this.onHeadersReceived(g.headers),!r&&!o){h?.unsubscribe();let U=(0,X.now)(),A={requestStartedAt:m,requestEndedAt:U,duration:U-m};return p.log("endRequest",(0,X.flattenObject)(A)),p.end(),g.arrayBuffer()}let[T,w]=g.body.tee(),x=T.getReader();o&&this.throughputEstimator?.trackStream(w,u);let M=0,$=new Uint8Array(0),F=!1,Q=U=>{h?.unsubscribe(),F=!0,no(U)},B=(0,X.abortable)(d,async function*({done:U,value:A}){if(M===0&&this.lastRequestFirstBytes$.next((0,X.now)()-m),d.aborted){h?.unsubscribe();return}if(!U&&A){let R=new Uint8Array($.length+A.length);R.set($),R.set(A,$.length),$=R,M+=A.byteLength,r?.(new DataView($.buffer),M),yield x?.read().then(B,Q)}}.bind(this));yield x?.read().then(B,Q),h?.unsubscribe();let D=(0,X.now)(),I={failed:F,requestStartedAt:m,requestEndedAt:D,duration:D-m};return F?(p.error("endRequest",(0,X.flattenObject)(I)),p.end(),null):(p.log("endRequest",(0,X.flattenObject)(I)),p.end(),$.buffer)}.bind(this));this.fetchByteRangeRepresentation=(0,X.abortable)(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(c,a))),n=Math.min(n,0);let p=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!p)return null;let d=new DataView(p,r-n,a-n+1);if(!t.validateData(d))throw new Error("Invalid media file");let h=t.parseInit(d),m=e.indexRange??t.getIndexRange(h);if(!m)throw new ReferenceError("No way to load representation index");let g;if(u)g=new DataView(p,m.from-n,m.to-m.from+1);else{let T=yield this.fetch(e.url,{range:m,priority:i,measureThroughput:!1});if(!T)return null;g=new DataView(T)}let y=t.parseSegments(g,h,m);return{init:h,dataView:new DataView(p),segments:y}}.bind(this));this.fetchTemplateRepresentation=(0,X.abortable)(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});return r?{init:null,segments:e.segments.map(n=>({...n,status:"none",size:void 0})),dataView:new DataView(r)}:null}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a}onHeadersReceived(e){let{type:t,reused:i}=so(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}async fetchRepresentation(e,t,i="auto"){let{type:r}=e;switch(r){case"byteRange":return await this.fetchByteRangeRepresentation(e,t,i)??null;case"template":return await this.fetchTemplateRepresentation(e,i)??null;default:(0,X.assertNever)(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}async doFetch(e,t){let i=await Bt(e,t);if(i.ok)return i;let r=await i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:X.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:X.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:X.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:X.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:X.ErrorCategory.FATAL})}}},no=s=>{if(!ra(s))throw s};var Si=(s,e,t)=>t*e+(1-t)*s,mc=(s,e)=>s.reduce((t,i)=>t+i,0)/e,hv=(s,e,t,i)=>{let r=0,a=t,n=mc(s,e),o=e<i?e:i;for(let u=0;u<o;u++)s[a]>n?r++:r--,a=(s.length+a-1)%s.length;return Math.abs(r)===o};var na=require("@vkontakte/videoplayer-shared/es2024"),Ci=class{constructor(e){this.prevReported=void 0;this.pastMeasures=[];this.takenMeasures=0;this.measuresCursor=0;this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new na.ValueSubject(e.initial),this.debounced$=new na.ValueSubject(e.initial);let t=e.label??"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new ot(`raw_${t}`),this.smoothedSeries$=new ot(`smoothed_${t}`),this.reportedSeries$=new ot(`reported_${t}`),this.rawSeries$.next(e.initial),this.smoothedSeries$.next(e.initial),this.reportedSeries$.next(e.initial)}next(e){let t=0,i=0;for(let o=0;o<this.pastMeasures.length;o++)this.pastMeasures[o]!==void 0&&(t+=(this.pastMeasures[o]-this.smoothed)**2,i++);this.takenMeasures=i,t/=i;let r=Math.sqrt(t),a=this.smoothed+this.params.deviationFactor*r,n=this.smoothed-this.params.deviationFactor*r;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>a||this.smoothed<n)&&((0,na.isNullable)(this.prevReported)||Math.abs(this.smoothed-this.prevReported)/this.prevReported>=this.params.changeThreshold)&&(this.prevReported=this.smoothed,this.debounced$.next(this.smoothed),this.reportedSeries$.next(this.smoothed))}};var uo=class extends Ci{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Si(this.slow,e,this.params.emaAlphaSlow),this.fast=Si(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var lo=class extends Ci{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=mc(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Si(this.emaSmoothed,e,this.params.emaAlpha);let i=hv(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var co=class extends Ci{constructor(t){super(t);this.furtherValues=[];this.currentTopExtremumValue=0;this.extremumInterval=t.extremumInterval}next(t){this.currentTopExtremumValue<=t?(this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.length===this.extremumInterval?(super.next(this.currentTopExtremumValue),this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.push(t)}updateSmoothedValue(t){this.smoothed=this.smoothed?Si(this.smoothed,t,this.params.emaAlpha):t}};var vi=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new uo({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new lo({initial:e,emaAlpha:i.emaAlpha,basisTrendChangeCount:i.basisTrendChangeCount,changeThreshold:i.changeThreshold,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"})}static getLiveBufferSmoothedValue(e,t){return new co({initial:e,label:"liveEdgeDelay",...t})}};var Fr=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};var po=require("@vkontakte/videoplayer-shared/es2024");var oa=class s{constructor(e,t){this.currentRepresentation$=new po.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!(0,po.isNullable)(e))for(let t of this.representations)for(let i of t){let r=i.segmentReference,a=r.segments.length,n=r.segments[0].time.from,o=r.segments[a-1].time.to;if(e<n||e>o)continue;let u=r.segments.find(l=>l.time.from<=e&&l.time.to>=e);!u||this.currentSegment?.time.from===u.time.from&&this.currentSegment.time.to===u.time.to||(this.currentSegment=u,this.currentRepresentation$.next({...i,label:"Live Text",language:"ru",isAuto:!0,url:new URL(u.url,r.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let i=s.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(t=>s.filterRepresentations(t.representations))}static filterRepresentations(e){return e?.filter(t=>t.kind==="text"&&"segmentReference"in t&&lt(t.segmentReference))}};var fo=q(Ht(),1);var ua=require("@vkontakte/videoplayer-shared/es2024");var fv=(s,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:a,codecs:n,nativeHlsSupported:o}=W.video,u=(n.h264||n.h265)&&n.aac,l=a.mse&&(!i||!!window.MediaStreamTrack)||a.mms&&t;return s.filter(c=>{switch(c){case"DASH_SEP":return l&&r.mp4&&u;case"DASH_WEBM":return l&&r.webm&&n.vp9&&n.opus;case"DASH_WEBM_AV1":return l&&r.webm&&n.av1&&n.opus;case"DASH_STREAMS":return l&&(r.mp4&&u||r.webm&&(n.vp9||n.av1)&&(n.opus||n.aac));case"DASH_LIVE":return l&&r.mp4&&u;case"DASH_LIVE_CMAF":return l&&r.mp4&&u&&r.cmaf;case"DASH_ONDEMAND":return l&&r.mp4&&u;case"HLS":case"HLS_ONDEMAND":return o||e&&l&&r.mp4&&u;case"HLS_LIVE":case"HLS_LIVE_CMAF":return o;case"MPEG":return r.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return a.webrtc&&a.ws&&n.h264&&(r.mp4||r.webm);default:return(0,ua.assertNever)(c)}})},ho=s=>{let{webmDecodingInfo:e}=W.video,t="DASH_WEBM",i="DASH_WEBM_AV1";switch(s){case"vp9":return[t,i];case"av1":return[i,t];case"none":return[];case"smooth":return e?e[i].smooth?[i,t]:e[t].smooth?[t,i]:[i,t]:[t,i];case"power_efficient":return e?e[i].powerEfficient?[i,t]:e[t].powerEfficient?[t,i]:[i,t]:[t,i];default:(0,ua.assertNever)(s)}return[t,i]},mv=({webmCodec:s,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...ho(s),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(W.device.isAndroid)switch(e){case"mpeg":return["MPEG",...i,"HLS","HLS_ONDEMAND"];case"hls":return["HLS","HLS_ONDEMAND",...i,"MPEG"];case"dash":return[...i,"HLS","HLS_ONDEMAND","MPEG"];case"dash_any_mpeg":return[...r,"MPEG",...ho(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...ho(s),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...ho(s),...r,"HLS","HLS_ONDEMAND"];default:(0,ua.assertNever)(e)}return W.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},bv=({androidPreferredFormat:s,preferCMAF:e,preferWebRTC:t})=>{let i=e?["DASH_LIVE_CMAF","DASH_LIVE"]:["DASH_LIVE","DASH_LIVE_CMAF"],r=e?["HLS_LIVE_CMAF","HLS_LIVE"]:["HLS_LIVE","HLS_LIVE_CMAF"],a=[...i,...r],n=[...r,...i],o,u=W.device.isMac&&W.browser.isSafari;if(W.device.isAndroid)switch(s){case"dash":case"dash_any_mpeg":case"dash_any_webm":case"dash_sep":{o=a;break}case"hls":case"mpeg":{o=n;break}default:(0,ua.assertNever)(s)}else W.video.nativeHlsSupported&&!u?o=n:u?o=e?["DASH_LIVE_CMAF","HLS_LIVE_CMAF","HLS_LIVE","DASH_LIVE"]:["HLS_LIVE","DASH_LIVE","DASH_LIVE_CMAF","HLS_LIVE_CMAF"]:o=a;return t?["WEB_RTC_LIVE",...o]:[...o,"WEB_RTC_LIVE"]},bc=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],mo=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,fo.default)(t.value.split("."),0)}for(let t of s){let i=(0,fo.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,fo.default)(e.value.split("."),0)};var CL=["timeupdate","progress","play","seeked","stalled","waiting"],VL=["timeupdate","progress","loadeddata","playing","seeked"];var bo=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new v.Subscription;this.representationSubscription=new v.Subscription;this.state$=new K("none");this.currentVideoRepresentation$=new v.ValueSubject(void 0);this.currentVideoRepresentationInit$=new v.ValueSubject(void 0);this.currentAudioRepresentation$=new v.ValueSubject(void 0);this.currentVideoSegmentLength$=new v.ValueSubject(0);this.currentAudioSegmentLength$=new v.ValueSubject(0);this.error$=new v.Subject;this.lastConnectionType$=new v.ValueSubject(void 0);this.lastConnectionReused$=new v.ValueSubject(void 0);this.lastRequestFirstBytes$=new v.ValueSubject(void 0);this.currentLiveTextRepresentation$=new v.ValueSubject(null);this.isLive$=new v.ValueSubject(!1);this.isActiveLive$=new v.ValueSubject(!1);this.isLowLatency$=new v.ValueSubject(!1);this.liveDuration$=new v.ValueSubject(0);this.liveSeekableDuration$=new v.ValueSubject(0);this.liveAvailabilityStartTime$=new v.ValueSubject(0);this.liveStreamStatus$=new v.ValueSubject(void 0);this.bufferLength$=new v.ValueSubject(0);this.liveLatency$=new v.ValueSubject(void 0);this.liveLoadBufferLength$=new v.ValueSubject(0);this.livePositionFromPlayer$=new v.ValueSubject(0);this.currentStallDuration$=new v.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new v.ValueSubject(0);this.fetcherRecoverableError$=new v.Subject;this.fetcherError$=new v.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new v.Subject;this.gapWatchdogActive=!1;this.destroyController=new pe;this.initManifest=(0,v.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=$e(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:v.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,v.abortable)(this.destroyController.signal,async function*(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(n=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:v.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=dv(e??"",this.manifestUrlString)}catch(n){let o=eo(e)??{id:"ManifestParsing",category:v.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:n};this.error$.next(o)}if(!t)return null;let i=(n,o,u)=>!!(this.element?.canPlayType?.(o)&&Rt()?.isTypeSupported?.(`${o}; codecs="${u}"`)||n==="text");if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:n,latestSegmentPublishTime:o,streamIsUnpublished:u,streamIsAlive:l}=t.live,c=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*c),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";l||(p=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:p,codecs:d})=>i(n,p,d)),l=new Set(u.map(({codecs:p})=>p)),c=mo(l);if(c&&(r[n]=u.filter(({codecs:p})=>p.startsWith(c))),n==="video"){let p=this.tuning.preferHDR,d=r.video.some(m=>m.hdr),h=r.video.some(m=>!m.hdr);W.display.isHDR&&p&&d?r.video=r.video.filter(m=>m.hdr):h&&(r.video=r.video.filter(m=>!m.hdr))}}let a={...t,streams:r};return this.tracer.log("updateManifestEnd",(0,v.flattenObject)(a)),a}.bind(this));this.initRepresentations=(0,v.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",(0,v.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,v.assertNonNullable)(this.manifest),(0,v.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=d=>{this.representationSubscription.add((0,v.fromEvent)(d,"error").pipe((0,v.filter)(h=>!!this.element?.played.length)).subscribe(h=>{this.error$.next({id:"VideoSource",category:v.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?Fn():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&kr())if(i){let d=document.createElement("source");r(d),d.type="application/x-mpegurl",d.src=i.url,this.element.appendChild(d)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((d,h)=>[...d,...h.representations],[]);if(this.videoBufferManager=new aa("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,v.isNonNullable)(t)){let d=this.manifest.streams.audio.reduce((h,m)=>[...h,...m.representations],[]);this.audioBufferManager=new aa("audio",this.source,d,n),this.bufferManagers.push(this.audioBufferManager)}oa.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new oa(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,v.merge)(...VL.map(d=>(0,v.fromEvent)(this.element,d))).pipe((0,v.map)(d=>this.element?Qe(this.element.buffered,this.element.currentTime*1e3):0),(0,v.filterChanged)(),(0,v.tap)(d=>{d>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,v.merge)((0,v.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,v.filterChanged)()).subscribe(h=>this.liveStreamEndTimestamp=(0,v.now)())),this.subscription.add((0,v.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,v.interval)(1e3).subscribe(h=>{let m=Ai(this.manifestUrlString,2);this.manifestUrlString=$e(this.manifestUrlString,m+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,v.fromEvent)(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add((0,v.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,v.map)(({isActiveLive:h,isLowLatency:m})=>h&&m),(0,v.filterChanged)()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Fr(this.element,1)})),this.representationSubscription.add((0,v.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,v.filter)(({bufferLength:h,isActiveLive:m,isLowLatency:g})=>m&&g&&!!h)).subscribe(({bufferLength:h})=>this.liveBuffer.next(h))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(h=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!h)return;let m=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(m,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+h/1e3)})),this.representationSubscription.add((0,v.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,v.filter)(({isLive:h})=>h),(0,v.filterChanged)((h,m)=>m.bufferLength<h.bufferLength),(0,v.map)(({rtt:h,bufferLength:m,segmentServerLatency:g})=>{let y=Ai(this.manifestUrlString,2);return(h/2+m+g+y)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,v.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:m,isLowLatency:g})=>{if(!g||!m)return;let y=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,T=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,w=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,x=h-y;if(this.isManualDecreasePlaybackInLive())return;let M=1;Math.abs(x)>T&&(M=1+Math.sign(x)*w),Fr(this.element,M)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{let m=0;if(h){let g=(this.element?.currentTime??0)*1e3;m=Math.min(...this.bufferManagers.map(T=>T.getLiveSegmentsToLoadState(this.manifest)?.to??g))-g}this.liveLoadBufferLength$.getValue()!==m&&this.liveLoadBufferLength$.next(m)}));let d=0;this.representationSubscription.add((0,v.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,v.throttle)(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:m})=>{if(!this.element||this.isUpdatingLive)return;let g=this.element.playbackRate,y=Ai(this.manifestUrlString,2),T=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,w=Math.min(T,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*g),x=this.tuning.dashCmafLive.normalizedActualBufferOffset*g,M=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*g,$=isFinite(h)?h:m,F=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),Q=T<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(Q);let B="none";if(F?B="active_low_latency":this.isLowLatency$.getValue()&&Q?(this.bufferManagers.forEach(D=>D.proceedLowLatencyLive()),B="active_low_latency"):y!==0&&$<w?B="live_forward_buffering":$<w+M&&(B="live_with_target_offset"),isFinite(h)&&(d=h>d?h:d),B==="live_forward_buffering"||B==="live_with_target_offset"){let D=d-(w+x),I=this.normolizeLiveOffset(Math.trunc(y+D/g)),U=Math.abs(I-y),A=0;!h||U<=this.tuning.dashCmafLive.offsetCalculationError?A=y:I>0&&U>this.tuning.dashCmafLive.offsetCalculationError&&(A=I),this.manifestUrlString=$e(this.manifestUrlString,A,2)}(B==="live_with_target_offset"||B==="live_forward_buffering")&&(d=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:v.ErrorCategory.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=(0,v.merge)(...this.bufferManagers.map(d=>d.fullyBuffered$)).pipe((0,v.map)(()=>this.bufferManagers.every(d=>d.fullyBuffered$.getValue()))),c=(0,v.merge)(...this.bufferManagers.map(d=>d.onLastSegment$)).pipe((0,v.map)(()=>this.bufferManagers.some(d=>d.onLastSegment$.getValue()))),p=(0,v.combine)({allBuffersFull:l,someBufferEnded:c}).pipe((0,v.filterChanged)(),(0,v.map)(({allBuffersFull:d,someBufferEnded:h})=>d&&h),(0,v.filter)(d=>d));if(this.representationSubscription.add((0,v.merge)(this.forceEnded$,p).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(d=>!d.updating))try{this.source?.endOfStream()}catch(d){this.error$.next({id:"EndOfStream",category:v.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:d})}})),this.representationSubscription.add((0,v.merge)(...this.bufferManagers.map(d=>d.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let d=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((h,m)=>{d&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){h();return}this.tuning.dash.rejectOnSourceOpenTimeout?m(new Error("Timeout reject when wait sourceopen event")):h()},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),h()},{once:!0})})}if(!this.isLive$.getValue()){let d=[this.manifest.duration??0,...(0,Sc.default)((0,Sc.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let m=[];return h.duration&&m.push(h.duration),lt(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&m.push(h.segmentReference.totalSegmentsDurationMs),m})];this.source.duration=Math.max(...d)/1e3}this.audioBufferManager&&(0,v.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.tick=()=>{if(!this.element||!this.videoBufferManager||this.source?.readyState!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),this.audioBufferManager?.maintain(e),this.liveTextManager?.maintain(e),(this.videoBufferManager.gaps.length||this.audioBufferManager?.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,v.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:v.ErrorCategory.WTF,message:"Error handling gaps",thrown:t})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new oo({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.liveBuffer=vi.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){(0,v.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,v.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=$e(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.videoBufferManager?.seekLive(this.manifest.streams.video),await this.audioBufferManager?.seekLive(this.manifest.streams.audio),this.liveTextManager?.seekLive(this.manifest.streams.text))}initBuffer(){(0,v.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,v.merge)(...CL.map(e=>(0,v.fromEvent)(this.element,e)),(0,v.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:v.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,v.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,v.fromEvent)(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&tt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{if(!this.element||this.source?.readyState!=="open")return;let t=this.currentStallDuration$.getValue();t+=50,this.currentStallDuration$.next(t);let i={timeInWaiting:t},r=(0,v.now)(),a=100,n=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(n);let o=this.audioBufferManager?.lastDataObtainedTimestamp??0,u=this.videoBufferManager?.getForwardBufferDuration()??0,l=this.audioBufferManager?.getForwardBufferDuration()??0,c=u<a&&r-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,p=this.audioBufferManager&&l<a&&r-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||p)&&t>this.tuning.dash.crashOnStallTWithoutDataTimeout||t>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${t} ms`);if(this.isLive$.getValue()&&t%2e3===0){let d=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(d).catch(h=>{this.error$.next({id:"stallIntervalCallback",category:v.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:h})}),i.liveLastOffset=d}else{let d=this.element.currentTime*1e3;this.videoBufferManager?.maintain(d),this.audioBufferManager?.maintain(d),i.position=d}this.tracer.log("stallIntervalCallback",(0,v.flattenObject)(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=(0,v.interval)(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:v.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:t})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,i=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r?.switchToWithPreviousAbort(t,i):r?.switchTo(t,i):r?.switchToOld(t,i)}async seek(e,t){(0,v.assertNonNullable)(this.element),(0,v.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(i),tt(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!((0,v.isNullable)(this.element)||(0,v.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,v.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){(0,v.isNonNullable)(this.element)&&(0,v.isNonNullable)(this.source)&&(0,v.isNonNullable)(e)&&this.source?.readyState==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(t=>t.warmUpMediaSource())}get isStreamEnded(){return this.source?.readyState==="ended"}stop(){this.tracer.log("stop"),this.element?.querySelectorAll("source").forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){return this.manifest?.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),this.source?.readyState==="open"&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,v.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers?.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getDebugBufferState();if(!e)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i={isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime};this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let r=this.element.currentTime*1e3,a=[],n=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let o of this.bufferManagers)for(let u of o.gaps)o.playingRepresentation$.getValue()===u.representation&&u.from-n<=r&&u.to+n>r&&(this.element.duration*1e3-u.to<this.tuning.endGapTolerance?a.push(1/0):a.push(u.to));if(a.length){let o=Math.max(...a)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,o===1/0?this.forceEnded$.next():(this.element.currentTime=o/1e3,i={...i,gapEnds:a,jumpTo:o,resultCurrentTime:this.element.currentTime},this.tracer.log("jumpGap",(0,v.flattenObject)(i)))}}};var go=class{constructor(e,t){this.fov=e,this.orientation=t}};var So=class{constructor(e,t){this.rotating=!1;this.fading=!1;this.lastTickTS=0;this.lastCameraTurnTS=0;this.fadeStartSpeed=null;this.fadeTime=0;this.camera=e,this.options=t,this.rotationSpeed={x:0,y:0,z:0},this.fadeCorrection=1/(this.options.speedFadeTime/1e3)**2}turnCamera(e=0,t=0,i=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+i)}pointCameraTo(e=0,t=0,i=0){t=this.limitCameraRotationY(t);let r=e-this.camera.orientation.x,a=t-this.camera.orientation.y,n=i-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=i,this.lastCameraTurn={x:r,y:a,z:n},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,i){this.rotationSpeed.x=e??this.rotationSpeed.x,this.rotationSpeed.y=t??this.rotationSpeed.y,this.rotationSpeed.z=i??this.rotationSpeed.z}startRotation(){this.rotating=!0}stopRotation(e=!1){e?(this.setRotationSpeed(0,0,0),this.fadeStartSpeed=null):this.startFading(this.rotationSpeed.x,this.rotationSpeed.y,this.rotationSpeed.z),this.rotating=!1}onCameraRelease(){if(this.lastCameraTurn&&this.lastCameraTurnTS){let e=Date.now()-this.lastCameraTurnTS;if(e<this.options.speedFadeThreshold){let t=(1-e/this.options.speedFadeThreshold)*this.options.rotationSpeedCorrection;this.startFading(this.lastCameraTurn.x*t,this.lastCameraTurn.y*t,this.lastCameraTurn.z*t)}}}startFading(e,t,i){this.setRotationSpeed(e,t,i),this.fadeStartSpeed={...this.rotationSpeed},this.fading=!0}stopFading(){this.fadeStartSpeed=null,this.fading=!0,this.fadeTime=0}limitCameraRotationY(e){return Math.max(-this.options.maxYawAngle,Math.min(e,this.options.maxYawAngle))}tick(e){if(!this.lastTickTS){this.lastTickTS=e,this.lastCameraTurnTS=Date.now();return}let t=e-this.lastTickTS,i=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i);else if(this.fading&&this.fadeStartSpeed){let r=-this.fadeCorrection*(this.fadeTime/1e3)**2+1;this.setRotationSpeed(this.fadeStartSpeed.x*r,this.fadeStartSpeed.y*r,this.fadeStartSpeed.z*r),r>0?this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i):(this.stopRotation(!0),this.stopFading()),this.fadeTime=Math.min(this.fadeTime+t,this.options.speedFadeTime)}this.lastTickTS=e}};var vv=`attribute vec2 a_vertex;
71
125
  attribute vec2 a_texel;
72
126
 
73
127
  varying vec2 v_texel;
@@ -78,7 +132,7 @@ void main(void) {
78
132
  // save texel vector to pass to fragment shader
79
133
  v_texel = a_texel;
80
134
  }
81
- `;var Gg=`#ifdef GL_ES
135
+ `;var yv=`#ifdef GL_ES
82
136
  precision highp float;
83
137
  precision highp int;
84
138
  #else
@@ -121,6 +175,13 @@ void main(void) {
121
175
  // sample using new coordinates
122
176
  gl_FragColor = texture2D(u_texture, tc);
123
177
  }
124
- `;var Ys=class{constructor(e,t,i){this.videoInitialized=!1;this.active=!1;this.container=e,this.sourceVideoElement=t,this.params=i,this.canvas=this.createCanvas();let a=this.canvas.getContext("webgl");if(!a)throw new Error("Could not initialize WebGL context");this.gl=a,this.container.appendChild(this.canvas),this.camera=new Gs(this.params.fov,this.params.orientation),this.cameraRotationManager=new Ws(this.camera,{rotationSpeed:this.params.rotationSpeed,maxYawAngle:this.params.maxYawAngle,rotationSpeedCorrection:this.params.rotationSpeedCorrection,degreeToPixelCorrection:this.params.degreeToPixelCorrection,speedFadeTime:this.params.speedFadeTime,speedFadeThreshold:this.params.speedFadeThreshold}),this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.textureMappingBuffer=this.createTextureMappingBuffer(),this.updateTextureMappingBuffer(),this.program=this.createProgram(),this.videoTexture=this.createTexture(),this.gl.useProgram(this.program),this.videoElementDataLoadedFn=this.onDataLoadedHandler.bind(this),this.renderFn=this.render.bind(this)}play(){this.active||(this.videoInitialized?this.doPlay():this.sourceVideoElement.readyState>=2?(this.videoInitialized=!0,this.doPlay()):this.sourceVideoElement.addEventListener("loadeddata",this.videoElementDataLoadedFn))}stop(){this.active=!1}startCameraManualRotation(e,t){this.cameraRotationManager.setRotationSpeed(e*this.params.rotationSpeed,t*this.params.rotationSpeed,0),this.cameraRotationManager.startRotation()}stopCameraManualRotation(e=!1){this.cameraRotationManager.stopRotation(e)}turnCamera(e,t){this.cameraRotationManager.turnCamera(e,t)}pointCameraTo(e,t){this.cameraRotationManager.pointCameraTo(e,t)}pixelToDegree(e){return{x:this.params.degreeToPixelCorrection*this.params.fov.x*-e.x/this.viewportWidth,y:this.params.degreeToPixelCorrection*this.params.fov.y*e.y/this.viewportHeight}}getCameraRotation(){return this.camera.orientation}holdCamera(){this.cameraRotationManager.stopRotation(!0)}releaseCamera(){this.cameraRotationManager.onCameraRelease()}destroy(){this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),this.stop(),this.canvas.remove()}setViewportSize(e,t){this.viewportWidth=e,this.viewportHeight=t,this.canvas.width=this.viewportWidth,this.canvas.height=this.viewportHeight,this.gl.viewport(0,0,this.canvas.width,this.canvas.height)}onDataLoadedHandler(){this.videoInitialized=!0,this.doPlay()}doPlay(){this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.active=!0,this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),requestAnimationFrame(this.renderFn)}render(e){this.cameraRotationManager.tick(e),this.updateTexture(),this.updateTextureMappingBuffer();let t=this.gl.getAttribLocation(this.program,"a_vertex"),i=this.gl.getAttribLocation(this.program,"a_texel"),a=this.gl.getUniformLocation(this.program,"u_texture"),s=this.gl.getUniformLocation(this.program,"u_focus");this.gl.enableVertexAttribArray(t),this.gl.enableVertexAttribArray(i),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.vertexBuffer),this.gl.vertexAttribPointer(t,2,this.gl.FLOAT,!1,0,0),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.vertexAttribPointer(i,2,this.gl.FLOAT,!1,0,0),this.gl.activeTexture(this.gl.TEXTURE0),this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.uniform1i(a,0),this.gl.uniform2f(s,-this.camera.orientation.x,-this.camera.orientation.y),this.gl.drawArrays(this.gl.TRIANGLE_FAN,0,4),this.gl.bindTexture(this.gl.TEXTURE_2D,null),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(t),this.gl.disableVertexAttribArray(i),this.active&&requestAnimationFrame(this.renderFn)}createShader(e,t){let i=this.gl.createShader(t);if(!i)throw this.destroy(),new Error(`Could not create shader (${t})`);if(this.gl.shaderSource(i,e),this.gl.compileShader(i),!this.gl.getShaderParameter(i,this.gl.COMPILE_STATUS))throw this.destroy(),new Error("An error occurred while compiling the shader: "+this.gl.getShaderInfoLog(i));return i}createProgram(){let e=this.gl.createProgram();if(!e)throw this.destroy(),new Error("Could not create shader program");let t=this.createShader(Qg,this.gl.VERTEX_SHADER),i=this.createShader(Gg,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,i),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),new Error("Could not link shader program.");return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),new Error("Could not create texture");return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create vertex buffer");let t=1,i=1,a=this.frameHeight/(this.frameWidth/this.viewportWidth);return a>this.viewportHeight?t=this.viewportHeight/a:i=a/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-i,t,-i,t,i,-t,i]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create texture mapping buffer");return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,i=this.camera.fov.x/360/2,a=this.camera.fov.y/180/2,s=e-i,n=t-a,o=e+i,u=t-a,l=e+i,d=t+a,p=e-i,h=t+a;return[s,n,o,u,l,d,p,h]}updateTextureMappingBuffer(){this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([...this.calculateTexturePosition()]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null)}updateFrameSize(){this.frameWidth=this.sourceVideoElement.videoWidth,this.frameHeight=this.sourceVideoElement.videoHeight}createCanvas(){let e=document.createElement("canvas");return e.style.position="absolute",e.style.left="0",e.style.top="0",e.style.width="100%",e.style.height="100%",e}};var he=require("@vkontakte/videoplayer-shared/es2024"),Qu=class{constructor(){this.isSeeked$=new he.ValueSubject(!1);this.isBuffering$=new he.ValueSubject(!1);this.currentStallsCount=0;this.maxQualityLimit=void 0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new he.Subscription;this.severeStallOccurred$=new he.ValueSubject(!1)}connect(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.qualityLimitsOnStall=e.qualityLimitsOnStall,this.subscription.add(e.isSeeked$.subscribe(this.isSeeked$)),this.subscription.add(e.isBuffering$.subscribe(this.isBuffering$)),this.subscription.add(e.looped$.subscribe(t=>this.currentStallsCount=0)),this.subscription.add((0,he.combine)({isBuffering:this.isBuffering$,isSeeked:this.isSeeked$}).pipe((0,he.debounce)(this.qualityLimitsOnStall.stallDurationToBeCount),(0,he.filter)(({isBuffering:t,isSeeked:i})=>t&&!i)).subscribe(t=>{this.currentStallsCount++})),this.subscription.add((0,he.combine)({currentStallDuration:this.currentStallDuration$}).subscribe(({currentStallDuration:t})=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:a,resetQualityRestrictionTimeout:s,ignoreStallsOnSeek:n}=this.qualityLimitsOnStall;if((0,he.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),d=(0,he.now)(),p=a&&this.currentStallsCount>=a,h=i&&d-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&d-l>=i+o&&t>=i;(p||h)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,he.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),t||(this.severeStallOccurred$.next(!1),window.clearTimeout(this.qualityRestrictionTimer),this.qualityRestrictionTimer=window.setTimeout(()=>{this.maxQualityLimit=void 0,this.predictedThroughputWithoutData=0},s))}))}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,he.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe()}},Wg=Qu;var Fe=require("@vkontakte/videoplayer-shared/es2024"),zs=class{constructor(){this.subscription=new Fe.Subscription;this.pipSize$=new Fe.ValueSubject(void 0);this.videoSize$=new Fe.ValueSubject(void 0);this.elementSize$=new Fe.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=Fe.noop}connect({observableVideo:e,video:t}){let i=a=>{let s=a.target;this.pipSize$.next({width:s.width,height:s.height})};this.subscription.add((0,Fe.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:a})=>{this.pipSize$.next({width:a.width,height:a.height}),a.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{a.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,Fe.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,Fe.map)(({videoSize:a,inPip:s,pipSize:n})=>s?n:a)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var pi=class{constructor(e){this.subscription=new N.Subscription;this.videoState=new j("stopped");this.droppedFramesManager=new Rs;this.stallsManager=new Wg;this.elementSizeManager=new zs;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Lr;this.audioTrackSwitchHistory=new Lr;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(a.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(a.position,a.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&w(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():i?.to==="playing"&&w(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&w(this.params.desiredState.playbackState,"paused");return;default:return(0,N.assertNever)(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new Ys(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new Xe(e.source.url),this.params=e,this.video=Ve(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ye(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new Qs({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=_e(this.video);this.subscription.add(()=>i.destroy());let a=this.constructor.name,s=o=>{e.error$.next({id:a,category:N.ErrorCategory.WTF,message:`${a} internal logic error`,thrown:o})};return{output:e,desiredState:t,observableVideo:i,genericErrorListener:s,connect:(o,u)=>this.subscription.add(o.subscribe(u,s))}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:a,connect:s}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,N.filter)(l=>!!l.length),(0,N.once)()).subscribe(l=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,N.map)(l=>l.to.state!=="none"),(0,N.filterChanged)());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$.pipe((0,N.filterChanged)()),videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,qualityLimitsOnStall:this.params.tuning.dash.qualityLimitsOnStall,isBuffering$:i.isBuffering$,looped$:i.looped$}),s(i.ended$,e.endedEvent$),s(i.looped$,e.loopedEvent$),s(i.error$,e.error$),s(i.isBuffering$,e.isBuffering$),s(i.currentBuffer$,e.currentBuffer$),s(i.playing$,e.firstFrameEvent$),s(i.canplay$,e.canplay$),s(i.inPiP$,e.inPiP$),s(i.inFullscreen$,e.inFullscreen$),s(i.loadedMetadata$,e.loadedMetadataEvent$),s(this.player.error$,e.error$),s(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),s(this.player.fetcherError$,e.fetcherError$),s(this.player.lastConnectionType$,e.httpConnectionType$),s(this.player.lastConnectionReused$,e.httpConnectionReused$),s(this.player.isLive$,e.isLive$),s(this.player.lastRequestFirstBytes$.pipe((0,N.filter)(N.isNonNullable),(0,N.once)()),e.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe((0,N.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.loopExpected$.subscribe(l=>{t.seekState.setState({state:"requested",position:0,forcePrecise:!1})})),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),a)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,a)),this.subscription.add(gt(this.video,t.isLooped,a)),this.subscription.add(Oe(this.video,t.volume,i.volumeState$,a)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,a)),this.subscription.add(Ke(this.video,t.playbackRate,i.playbackRateState$,a)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),s(Je(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),w(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},a)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),w(t.playbackState,"paused")},a)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},a)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let d=this.player.getStreams(),p=this.player.getCodecs();if((0,N.assertNonNullable)(d,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let m=[];for(let b of d.audio){m.push(Mu(b));let v=[];for(let T of b.representations){let I=xg(T);v.push(I),this.audioTracksMap.set(I,{stream:b,representation:T})}this.audioStreamsMap.set(b,v)}this.params.output.availableAudioStreams$.next(m)}let h=[];for(let m of d.video){h.push(Cu(m));let b=[];for(let v of m.representations){let T=Eg({...v,streamId:m.id});T&&(b.push(T),this.videoTracksMap.set(T,{stream:m,representation:v}))}this.videoStreamsMap.set(m,b)}this.params.output.availableVideoStreams$.next(h);for(let m of d.text)for(let b of m.representations){let v=Pg(m,b);this.textTracksMap.set(v,{stream:m,representation:b})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),p?.video&&this.params.output.availableVideoCodecs$.next(p.video),p?.audio&&this.params.output.availableAudioCodecs$.next(p.audio),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},a)),this.subscription.add((0,N.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,N.fromEvent)(this.video,"progress")).pipe((0,N.filter)(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let l=this.player.state$.getState(),d=this.player.state$.getTransition();if(!(0,Yg.default)(["manifest_ready","running"],l)||d)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let p=this.selectVideoAudioRepresentations();if(!p)return;let[h,m]=p,b=[...this.videoTracksMap.keys()].find(T=>this.videoTracksMap.get(T)?.representation.id===h.id);(0,N.isNonNullable)(b)&&(this.stallsManager.lastVideoTrackSelected=b);let v=this.params.desiredState.autoVideoTrackLimits.getTransition();if(v&&this.params.output.autoVideoTrackLimits$.next(v.to),l==="manifest_ready")await this.player.initRepresentations(h.id,m?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",h.id),m){let T=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",m.id,T)}},a)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,N.filterChanged)()).subscribe(l=>{let d=[...this.videoTracksMap.entries()].find(([,{representation:b}])=>b.id===l);if(!d){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[p,{stream:h}]=d,m=this.params.desiredState.videoStream.getTransition();m&&m.to&&m.to.id===h.id&&this.params.desiredState.videoStream.setState(m.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(Cu(h))},a)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,N.filterChanged)()).subscribe(l=>{let d=[...this.audioTracksMap.entries()].find(([,{representation:b}])=>b.id===l);if(!d){e.currentAudioStream$.next(void 0);return}let[p,{stream:h}]=d,m=this.params.desiredState.audioStream.getTransition();m&&m.to&&m.to.id===h.id&&this.params.desiredState.audioStream.setState(m.to),e.currentAudioStream$.next(Mu(h))},a)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{if(l?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(d){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${d}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},a)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,a)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,a)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe((0,N.map)(({to:l})=>l==="ready"),(0,N.filterChanged)());this.subscription.add((0,N.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,N.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add((0,N.merge)(o,this.player.state$.stateChangeEnded$,(0,N.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,N.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,N.observableFrom)(["init"])).pipe((0,N.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,a))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let{desiredState:e,output:t}=this.params,i=e.autoVideoTrackSwitching.getState(),a=e.videoTrack.getState()?.id,n=[...this.videoTracksMap.keys()].find(({id:z})=>z===a),o=t.currentVideoTrack$.getValue(),u=e.videoStream.getState()??(n&&this.videoTracksMap.get(n)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!u)return;let l=[...this.videoStreamsMap.keys()].find(({id:z})=>z===u.id),d=l&&this.videoStreamsMap.get(l);if(!d)return;let p=Ui(this.video.buffered,this.video.currentTime*1e3),h;this.player.isActiveLive$.getValue()?h=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?h=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:h=i?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let m=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,b=Math.min(p/Math.min(h,m||1/0),1),v=e.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),T=[...this.audioStreamsMap.keys()].find(({id:z})=>z===v?.id)??this.audioStreamsMap.keys().next().value,I=0;if(T){if(n&&!i){let z=As(n,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);I=Math.max(I,z?.bitrate??-1/0)}if(o){let z=As(o,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);I=Math.max(I,z?.bitrate??-1/0)}}let A=jt(d,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:I,forwardBufferHealth:b,current:o,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}),P=i?A??n:n??A,$=T&&wf(P,d,this.audioStreamsMap.get(T)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:b,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),k=this.videoTracksMap.get(P)?.representation,Y=$&&this.audioTracksMap.get($)?.representation;if(k&&Y)return[k,Y];if(k&&!Y&&this.audioTracksMap.size===0)return[k,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:N.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Be(this.video),this.tracer.end()}};var va=class extends pi{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var ae=require("@vkontakte/videoplayer-shared/es2024");var Sa=class extends pi{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:a,connect:s}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),s(i.timeUpdate$,t.liveBufferTime$),s(this.player.liveSeekableDuration$,t.duration$),s(this.player.liveLatency$,t.liveLatency$);let n=new ae.ValueSubject(1);s(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(a.isLowLatency.stateChangeEnded$.pipe((0,ae.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,ae.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,ae.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,ae.filter)(o=>(0,ae.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,ae.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,ae.merge)(i.playbackRateState$,new ae.ValueSubject(1))}).pipe((0,ae.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),d=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;d||u<1-p||this.video.paused||(0,ae.isNullable)(l)||(e=o-l)})).add((0,ae.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,ae.merge)(i.playbackRateState$,new ae.ValueSubject(1))}).pipe((0,ae.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let d=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&l>=1-p||(0,ae.isNullable)(o)||(0,ae.isNullable)(u))return;let h=-1*(u-o-e);t.position$.next(Math.min(h,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=kg(o);this.params.output.availableTextTracks$.next([u])}}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var zg=F(gs(),1);var W=require("@vkontakte/videoplayer-shared/es2024"),ut={};var Yi=(r,e)=>new W.Observable(t=>{let i=(a,s)=>t.next(s);return r.on(e,i),()=>r.off(e,i)}),ya=class{constructor(e){this.subscription=new W.Subscription;this.videoState=new j("initializing");this.trackLevels=new Map;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(e!=="initializing")switch(i?.to!=="paused"&&a.state==="requested"&&this.seek(a.position),t){case"stopped":switch(e){case"stopped":break;case"ready":case"playing":case"paused":this.stop();break;default:(0,W.assertNever)(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:(0,W.assertNever)(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:(0,W.assertNever)(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:(0,W.assertNever)(e)}break;default:(0,W.assertNever)(t)}};this.textTracksManager=new Xe(e.source.url),this.video=Ve(e.container,e.tuning),this.params=e,this.params.output.element$.next(this.video),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ye(this.params.source.url)),this.loadHlsJs()}destroy(){this.subscription.unsubscribe(),this.trackLevels.clear(),this.textTracksManager.destroy(),this.hls?.detachMedia(),this.hls?.destroy(),this.params.output.element$.next(void 0),Be(this.video)}loadHlsJs(){let e=!1,t=a=>{e||this.params.output.error$.next({id:a==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:W.ErrorCategory.NETWORK,message:"Failed to load Hls.js",thrown:a}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,zg.default)(import("hls.js").then(a=>{e||(ut.Hls=a.default,ut.Events=a.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){(0,W.assertNonNullable)(ut.Hls,"hls.js not loaded"),this.hls=new ut.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){(0,W.assertNonNullable)(ut.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:W.ErrorCategory.WTF,message:"HlsJsProvider internal logic error",thrown:l})},a=_e(this.video);this.subscription.add(()=>a.destroy());let s=(l,d)=>this.subscription.add(l.subscribe(d,i));s(a.timeUpdate$,t.position$),s(a.durationChange$,t.duration$),s(a.ended$,t.endedEvent$),s(a.looped$,t.loopedEvent$),s(a.error$,t.error$),s(a.isBuffering$,t.isBuffering$),s(a.currentBuffer$,t.currentBuffer$),s(a.loadStart$,t.firstBytesEvent$),s(a.loadedMetadata$,t.loadedMetadataEvent$),s(a.playing$,t.firstFrameEvent$),s(a.canplay$,t.canplay$),s(a.seeked$,t.seekedEvent$),s(a.inPiP$,t.inPiP$),s(a.inFullscreen$,t.inFullscreen$),this.subscription.add(gt(this.video,e.isLooped,i)),this.subscription.add(Oe(this.video,e.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(Ke(this.video,e.playbackRate,a.playbackRateState$,i)),s(Je(this.video),t.elementVisible$),s(this.videoState.stateChangeEnded$.pipe((0,W.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(Yi(this.hls,ut.Events.ERROR).subscribe(l=>{l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:W.ErrorCategory.WTF,message:`HlsJs fatal ${l.type} ${l.details}, ${l.err?.message} ${l.reason}`,thrown:l.error})})),this.subscription.add(a.playing$.subscribe(()=>{this.videoState.setState("playing"),w(e.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),w(e.playbackState,"paused")},i)).add(a.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),s(Yi(this.hls,ut.Events.MANIFEST_PARSED).pipe((0,W.map)(({levels:l})=>l.reduce((d,p)=>{let h=p.name||p.height.toString(10),{width:m,height:b}=p,v=qt(p.attrs.QUALITY??"")??(0,W.videoSizeToQuality)({width:m,height:b});if(!v)return d;let T=p.attrs["FRAME-RATE"]?parseFloat(p.attrs["FRAME-RATE"]):void 0,I={id:h.toString(),quality:v,bitrate:p.bitrate/1e3,size:{width:m,height:b},fps:T};return this.trackLevels.set(h,{track:I,level:p}),d.push(I),d},[]))),t.availableVideoTracks$),s(Yi(this.hls,ut.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let d=[];for(let p of l.subtitleTracks){let h=p.name,m=p.attrs.URI||"",b=p.lang;d.push({id:h,url:m,language:b,type:"internal"})}e.internalTextTracks.startTransitionTo(d)}}),s(Yi(this.hls,ut.Events.LEVEL_LOADING).pipe((0,W.map)(({url:l})=>ye(l))),t.hostname$),s(Yi(this.hls,ut.Events.FRAG_CHANGED),l=>{let{video:d,audio:p}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next(((d?.endPTS??0)-(d?.startPTS??0))*1e3),t.currentAudioSegmentLength$.next(((p?.endPTS??0)-(p?.startPTS??0))*1e3)}),this.subscription.add(Ft(e.autoVideoTrackSwitching,()=>this.hls.autoLevelEnabled,l=>{this.hls.nextLevel=l?-1:this.hls.currentLevel,this.hls.loadLevel=l?-1:this.hls.loadLevel},{onError:i}));let n=l=>Array.from(this.trackLevels.values()).find(({level:d})=>d===l)?.track,o=Yi(this.hls,ut.Events.LEVEL_SWITCHED).pipe((0,W.map)(({level:l})=>n(this.hls.levels[l])));o.pipe((0,W.filter)(W.isNonNullable)).subscribe(t.currentVideoTrack$,i),this.subscription.add(Ft(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{if((0,W.isNullable)(l))return;let d=this.trackLevels.get(l.id)?.level;if(!d)return;let p=this.hls.levels.indexOf(d),h=this.hls.currentLevel,m=this.hls.levels[h];!m||d.bitrate>m.bitrate?this.hls.nextLevel=p:(this.hls.loadLevel=p,this.hls.loadLevel=p)},{changed$:o,onError:i})),s(a.progress$,()=>{this.params.dependencies.throughputEstimator.addRawThroughput(this.hls.bandwidthEstimate/1e3)}),this.textTracksManager.connect(this.video,e,t);let u=(0,W.merge)(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,W.observableFrom)(["init"])).pipe((0,W.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,i))}prepare(){this.videoState.startTransitionTo("ready"),this.hls.attachMedia(this.video),this.hls.loadSource(this.params.source.url)}async playIfAllowed(){this.videoState.startTransitionTo("playing"),await Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:W.ErrorCategory.DOM,thrown:t}))||(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused",!0))}pause(){this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}stop(){this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.hls.stopLoad(),this.hls.detachMedia(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0)}};var Kg="X-Playback-Duration",Gu=async r=>{let e=await St(r),t=await e.text(),i=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t)?.[1];return i?parseInt(i,10):e.headers.has(Kg)?parseInt(e.headers.get(Kg),10):void 0};var G=require("@vkontakte/videoplayer-shared/es2024");var Yu=F(uo(),1);var Ks=require("@vkontakte/videoplayer-shared/es2024");var XA=r=>{let e=null;if(r.QUALITY&&(e=qt(r.QUALITY)),!e&&r.RESOLUTION){let[t,i]=r.RESOLUTION.split("x").map(a=>parseInt(a,10));e=(0,Ks.videoSizeToQuality)({width:t,height:i})}return e??null},JA=(r,e)=>{let t=r.split(`
125
- `),i=[],a=[];for(let s=0;s<t.length;s++){let n=t[s],o=n.match(/^#EXT-X-STREAM-INF:(.+)/),u=n.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!o&&!u)){if(o){let l=(0,Yu.default)(o[1].split(",").map(T=>T.split("="))),d=l.QUALITY??`stream-${l.BANDWIDTH}`,p=XA(l),h;l.BANDWIDTH&&(h=parseInt(l.BANDWIDTH,10)/1e3||void 0),!h&&l["AVERAGE-BANDWIDTH"]&&(h=parseInt(l["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let m=l["FRAME-RATE"]?parseFloat(l["FRAME-RATE"]):void 0,b;if(l.RESOLUTION){let[T,I]=l.RESOLUTION.split("x").map(A=>parseInt(A,10));T&&I&&(b={width:T,height:I})}let v=new URL(t[++s],e).toString();p&&i.push({id:d,quality:p,url:v,bandwidth:h,size:b,fps:m})}if(u){let l=(0,Yu.default)(u[1].split(",").map(m=>{let b=m.indexOf("=");return[m.substring(0,b),m.substring(b+1)]}).map(([m,b])=>[m,b.replace(/^"|"$/g,"")])),d=l.URI?.replace(/playlist$/,"subtitles.vtt"),p=l.LANGUAGE,h=l.NAME;d&&p&&a.push({type:"internal",id:p,label:h,language:p,url:d,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:a}},ZA=r=>new Promise(e=>{setTimeout(()=>{e()},r)}),Wu=0,Xg=async(r,e=r,t,i)=>{let s=await(await St(r,i)).text();Wu+=1;try{let{qualityManifests:n,textTracks:o}=JA(s,e);return{qualityManifests:n,textTracks:o}}catch{if(Wu<=t.manifestRetryMaxCount)return await ZA((0,Ks.getExponentialDelay)(Wu-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),Xg(r,e,t)}return{qualityManifests:[],textTracks:[]}},Xs=Xg;var We=require("@vkontakte/videoplayer-shared/es2024");var Js=class{constructor(e,t,i,a,s){this.subscription=new We.Subscription;this.abortControllers={destroy:new Pe,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new We.ValueSubject(null);this.getCurrentTime$=new We.ValueSubject(null);this.error$=new We.Subject;this.params={fetchManifestData:i,sourceUrl:a,downloadThreshold:s},this.subscription.add(e.pipe((0,We.throttle)(1e3)).subscribe(n=>{this.processLiveTime(n)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+t.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}async prepare(e){try{let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),this.prepareUrl=t.toString();let{textTracks:i}=await this.fetchManifestData();await this.processTextTracks(i,this.params.sourceUrl)}catch(t){this.error("prepare",t)}}async processTextTracks(e,t){try{let i=await this.parseTextTracks(e,t);i&&(this.currentTextTrackData=i)}catch(i){this.error("processTextTracks",i)}}async parseTextTracks(e,t){for(let i of e){let a=new URL(i.url,t).toString(),n=await(await St(a,{signal:this.abortControllers.destroy.signal})).text(),o=this.parsePlaylist(n,a);return{textTrack:i,playlist:o}}}parsePlaylist(e,t){let i={mediaSequence:0,programDateTime:"",segments:[],targetDuration:0,vkPlaybackDuration:0,segmentStartTime:0,vkStartTime:""},a=e.split(`
126
- `),s=0;for(let n=0;n<a.length;++n){let o=a[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=a[++n],l=new URL(u,t).toString(),d=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:s,to:s+d},url:l}),s=s+d,!i.segmentStartTime){let p=new Date(i.vkStartTime).valueOf(),h=new Date(i.programDateTime).valueOf();i.segmentStartTime=h-p}break}case o.startsWith("#EXT-X-TARGETDURATION:"):i.targetDuration=Number(this.extractPlaylistRowValue("#EXT-X-TARGETDURATION:",o));break;case o.startsWith("#EXT-X-MEDIA-SEQUENCE:"):i.mediaSequence=Number(this.extractPlaylistRowValue("#EXT-X-MEDIA-SEQUENCE:",o));break;case o.startsWith("#EXT-X-VK-PLAYBACK-DURATION:"):i.vkPlaybackDuration=Number(this.extractPlaylistRowValue("#EXT-X-VK-PLAYBACK-DURATION:",o));break;case o.startsWith("#EXT-X-PROGRAM-DATE-TIME:"):{let u=this.extractPlaylistRowValue("#EXT-X-PROGRAM-DATE-TIME:",o);i.programDateTime=u;let l=new Date(u);l.setMilliseconds(0),s=l.valueOf();break}case o.startsWith("#EXT-X-VK-START-TIME:"):i.vkStartTime=this.extractPlaylistRowValue("#EXT-X-VK-START-TIME:",o);break}}return i}extractPlaylistRowValue(e,t){switch(e){case"#EXTINF:":return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if((0,We.isNonNullable)(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:i}=t[0].time,{to:a}=t[t.length-1].time;if(e<i||e>a)return;a-e<this.params.downloadThreshold&&this.fetchNextManifestData();for(let n of t)if(n.time.from<=e&&n.time.to>=e){this.availableTextTracks$.next([{...this.currentTextTrackData.textTrack,url:n.url,isAuto:!0}]);break}}}async fetchNextManifestData(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new Pe;let{textTracks:e}=await this.fetchManifestData(),t=await this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error("fetchNextManifestData",e)}finally{this.abortControllers.nextManifest=null}}async fetchManifestData(){let e=this.prepareUrl??this.params.sourceUrl;return await this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:We.ErrorCategory.WTF,thrown:t,message:e})}};var Ta=class{constructor(e){this.subscription=new G.Subscription;this.videoState=new j("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new G.ValueSubject([]);this.liveOffset=new oi;this.manifestStartTime$=new G.ValueSubject(void 0);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),a=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s||n||o){let d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if(a?.to!=="paused"&&l.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(l.position&&l.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?w(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),w(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.video.paused?this.videoState.setState("paused"):this.video.pause()):a?.to==="playing"&&w(this.params.desiredState.playbackState,"playing");return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let d=this.liveOffset.getTotalOffset();d>=this.maxSeekBackTime$.getValue()&&(d=0,this.liveOffset.resetTo(d)),this.liveOffset.resume(),this.params.output.position$.next(-d/1e3),this.prepare()}else a?.to==="paused"&&(w(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,G.assertNever)(t)}};this.params=e,this.video=Ve(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:G.VideoQuality.INVARIANT,url:this.params.source.url};let t=(i,a)=>Xs(i,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},a);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new Js(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new Xe(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:i,textTracks:a})=>{i.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:G.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),this.liveTextManager?.processTextTracks(a,this.params.source.url),this.manifests$.next([this.masterManifest,...i])}).catch(i=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:G.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:i})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ye(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new G.ValueSubject(e.source.maxSeekBackTime??1/0),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),a=t.getTransition(),s=a?.to?.id??t.getState()?.id??"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&!a&&t.startTransitionTo(this.masterManifest),n.find(u=>u.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:G.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},a=_e(this.video);this.subscription.add(()=>a.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(a.ended$,e.endedEvent$),s(a.error$,e.error$),s(a.isBuffering$,e.isBuffering$),s(a.currentBuffer$,e.currentBuffer$),s(a.loadedMetadata$,e.firstBytesEvent$),s(a.loadedMetadata$,e.loadedMetadataEvent$),s(a.playing$,e.firstFrameEvent$),s(a.canplay$,e.canplay$),s(a.inPiP$,e.inPiP$),s(a.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(Oe(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ke(this.video,t.playbackRate,a.playbackRateState$,i)),s(Je(this.video),e.elementVisible$),this.liveTextManager?(s(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),s(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(a.playing$.subscribe(()=>{this.videoState.setState("playing"),w(t.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),w(t.playbackState,"paused")},i)).add(a.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.liveTextManager&&this.subscription.add(this.liveTextManager.availableTextTracks$.subscribe(o=>{o&&this.params.output.availableTextTracks$.next(o)})),this.subscription.add(this.maxSeekBackTime$.pipe((0,G.filterChanged)(),(0,G.map)(o=>-o/1e3)).subscribe(this.params.output.duration$,i)),this.subscription.add(a.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,G.isNonNullable)(l.to)){let p=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let h=this.manifests$.getValue().find(m=>m.id===p);h&&(this.params.output.currentVideoTrack$.next(h),this.params.output.hostname$.next(ye(h.url)))}d&&this.params.desiredState.autoVideoTrackSwitching.setState(d.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o&&o.state==="requested"&&this.seek(o.position)},i)),this.subscription.add(a.loadedData$.subscribe(()=>{let o=this.video?.getStartDate?.()?.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,G.combine)({startTime:this.manifestStartTime$.pipe((0,G.filter)(G.isNonNullable)),currentTime:a.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe((0,G.map)(o=>o.map(({id:u,quality:l,size:d,bandwidth:p,fps:h})=>({id:u,quality:l,size:d,fps:h,bitrate:p})))).subscribe(this.params.output.availableVideoTracks$,i));let n=(0,G.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,G.observableFrom)(["init"])).pipe((0,G.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager?.destroy(),this.liveTextManager?.destroy(),this.params.output.element$.next(void 0),Be(this.video)}prepare(){let e=this.selectManifest();if((0,G.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),a=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:o,min:u}=t?.to??i??{};for(let[l,d]of[[o,"mq"],[u,"lq"]]){let p=String(parseFloat(l||""));d&&l&&a.searchParams.set(d,p)}}let s=this.params.format==="HLS_LIVE_CMAF"?2:0,n=xe(a.toString(),this.liveOffset.getTotalOffset(),s);this.liveTextManager?.prepare(n),this.video.setAttribute("src",n),this.video.load(),Gu(n).then(o=>{if(!(0,G.isNullable)(o))this.maxSeekBackTime$.next(o);else{let u=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();((0,G.isNullable)(u)||!isFinite(u))&&St(n).then(l=>l.text()).then(l=>{let d=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(l)?.[1];if(d){let p=new URL(d,n).toString();Gu(p).then(h=>{(0,G.isNullable)(h)||this.maxSeekBackTime$.next(h)})}}).catch(()=>{})}})}playIfAllowed(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),w(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:G.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(i),this.params.output.position$.next(-i/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=xe(this.params.source.url);if(this.params.tuning.useHlsLiveNewTextManager){let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),e=t.toString()}return e}};var te=require("@vkontakte/videoplayer-shared/es2024");var Ia=class{constructor(e){this.subscription=new te.Subscription;this.videoState=new j("stopped");this.manifests$=new te.ValueSubject([]);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),a=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s||n||o){let d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d);let{currentTime:p}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:p*1e3,forcePrecise:!0});return}switch(a?.to!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?w(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):a?.to==="playing"&&w(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):a?.to==="paused"&&w(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,te.assertNever)(t)}};this.textTracksManager=new Xe(e.source.url),this.params=e,this.video=Ve(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:te.VideoQuality.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ye(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),Xs(xe(this.params.source.url),this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount}).then(({qualityManifests:t,textTracks:i})=>{this.manifests$.next([this.masterManifest,...t]),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:te.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),a=t.getTransition(),s=a?.to?.id??t.getState()?.id??"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&(!a||!a.from)&&t.startTransitionTo(this.masterManifest),n.find(u=>u.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:te.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},a=_e(this.video);this.subscription.add(()=>a.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u));if(s(a.timeUpdate$,e.position$),s(a.durationChange$,e.duration$),s(a.ended$,e.endedEvent$),s(a.looped$,e.loopedEvent$),s(a.error$,e.error$),s(a.isBuffering$,e.isBuffering$),s(a.currentBuffer$,e.currentBuffer$),s(a.loadedMetadata$,e.firstBytesEvent$),s(a.loadedMetadata$,e.loadedMetadataEvent$),s(a.playing$,e.firstFrameEvent$),s(a.canplay$,e.canplay$),s(a.seeked$,e.seekedEvent$),s(a.inPiP$,e.inPiP$),s(a.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,te.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(gt(this.video,t.isLooped,i)),this.subscription.add(Oe(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ke(this.video,t.playbackRate,a.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(a.playing$.subscribe(()=>{this.videoState.setState("playing"),w(t.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),w(t.playbackState,"paused")},i)).add(a.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(a.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,te.isNonNullable)(l.to)){let m=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let b=this.manifests$.getValue().find(v=>v.id===m);b&&(this.params.output.currentVideoTrack$.next(b),this.params.output.hostname$.next(ye(b.url)))}let p=this.params.desiredState.playbackRate.getState(),h=this.params.output.element$.getValue()?.playbackRate;if(p!==h){let m=this.params.output.element$.getValue();m&&(this.params.desiredState.playbackRate.setState(p),m.playbackRate=p)}d&&this.params.desiredState.autoVideoTrackSwitching.setState(d.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.subscription.add(this.manifests$.pipe((0,te.map)(o=>o.map(({id:u,quality:l,size:d,bandwidth:p,fps:h})=>({id:u,quality:l,size:d,fps:h,bitrate:p})))).subscribe(this.params.output.availableVideoTracks$,i)),!Q.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,te.merge)((0,te.fromEvent)(o,"addtrack"),(0,te.fromEvent)(o,"removetrack"),(0,te.fromEvent)(o,"change"),(0,te.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,te.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,te.observableFrom)(["init"])).pipe((0,te.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Be(this.video)}prepare(){let e=this.selectManifest();if((0,te.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),a=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:s,min:n}=t?.to??i??{};for(let[o,u]of[[s,"mq"],[n,"lq"]]){let l=String(parseFloat(o||""));u&&o&&a.searchParams.set(u,l)}}this.video.setAttribute("src",a.toString()),this.video.load()}playIfAllowed(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:te.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var Jg=F(Li(),1),zu=F(Ni(),1),Zg=F(Ut(),1);var ne=require("@vkontakte/videoplayer-shared/es2024");var Ea=class{constructor(e){this.subscription=new ne.Subscription;this.videoState=new j("stopped");this.trackUrls={};this.textTracksManager=new Xe;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let s=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(s&&e!=="ready"&&!n){this.handleQualityLimitTransition(s.to);return}if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(n){let{currentTime:u}=this.video;this.prepare(),o.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:u*1e3,forcePrecise:!0});return}switch(i?.to!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?w(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):i?.to==="playing"&&w(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&w(this.params.desiredState.playbackState,"paused");return;default:return(0,ne.assertNever)(e)}};this.params=e,this.video=Ve(e.container,e.tuning),this.params.output.element$.next(this.video),(0,Jg.default)(this.params.source).reverse().forEach(([t,i],a)=>{let s=a.toString(10);this.trackUrls[s]={track:{quality:t,id:s},url:i}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next((0,zu.default)(this.trackUrls).map(({track:t})=>t)),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.desiredState.autoVideoTrackSwitching.setState(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.subscribe()}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"MpegProvider",category:ne.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},a=_e(this.video);this.subscription.add(()=>a.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(a.timeUpdate$,e.position$),s(a.durationChange$,e.duration$),s(a.ended$,e.endedEvent$),s(a.looped$,e.loopedEvent$),s(a.error$,e.error$),s(a.isBuffering$,e.isBuffering$),s(a.currentBuffer$,e.currentBuffer$),s(a.loadedMetadata$,e.firstBytesEvent$),s(a.loadedMetadata$,e.loadedMetadataEvent$),s(a.playing$,e.firstFrameEvent$),s(a.canplay$,e.canplay$),s(a.seeked$,e.seekedEvent$),s(a.inPiP$,e.inPiP$),s(a.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,ne.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(gt(this.video,t.isLooped,i)),this.subscription.add(Oe(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ke(this.video,t.playbackRate,a.playbackRateState$,i)),s(Je(this.video),e.elementVisible$),this.subscription.add(a.playing$.subscribe(()=>{this.videoState.setState("playing"),w(t.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),w(t.playbackState,"paused")},i)).add(a.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,ne.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let u=this.params.desiredState.playbackRate.getState(),l=this.params.output.element$.getValue()?.playbackRate;if(u!==l){let d=this.params.output.element$.getValue();d&&(this.params.desiredState.playbackRate.setState(u),d.playbackRate=u)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=(0,ne.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,ne.observableFrom)(["init"])).pipe((0,ne.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Be(this.video)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;(0,ne.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,ne.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=ma(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(ye(t))}playIfAllowed(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ne.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){this.params.output.autoVideoTrackLimits$.next(e);let t=l=>{this.params.output.currentVideoTrack$.next(l),this.params.desiredState.videoTrack.startTransitionTo(l)},i=l=>{let d=jt(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:l,abrLogger:this.params.dependencies.abrLogger});t(d)},a=this.params.output.currentVideoTrack$.getValue()?.quality,s=!!(e.max||e.min),n=(0,zu.default)(this.trackUrls).map(l=>l.track);if(!a||!s||Ar({limits:e,lowestAvailableQuality:(0,Zg.default)(n,-1)?.quality,highestAvailableQuality:n[0].quality})){i();return}let o=e.max?(0,ne.isLowerOrEqual)(a,e.max):!0,u=e.min?(0,ne.isHigherOrEqual)(a,e.min):!0;o&&u||i(e)}};var oe=require("@vkontakte/videoplayer-shared/es2024");var tv=require("@vkontakte/videoplayer-shared/es2024"),ev=["stun:videostun.mycdn.me:80"],eL=1e3,tL=3,Ku=()=>null,Zs=class{constructor(e,t){this.ws=null;this.peerConnection=null;this.serverUrl="";this.streamKey="";this.stream=null;this.signalingType="JOIN";this.retryCount=0;this.externalStartCallback=Ku;this.externalStopCallback=Ku;this.externalErrorCallback=Ku;this.options=this.normalizeOptions(t);let i=e.split("/");this.serverUrl=i.slice(0,i.length-1).join("/"),this.streamKey=i[i.length-1]}onStart(e){try{this.externalStartCallback=e}catch(t){this.handleSystemError(t)}}onStop(e){try{this.externalStopCallback=e}catch(t){this.handleSystemError(t)}}onError(e){try{this.externalErrorCallback=e}catch(t){this.handleSystemError(t)}}connect(){this.connectWS()}disconnect(){try{this.externalStopCallback(),this.closeConnections()}catch(e){this.handleSystemError(e)}}connectWS(){this.ws||(this.ws=new WebSocket(this.serverUrl),this.ws.onopen=this.onSocketOpen.bind(this),this.ws.onmessage=this.onSocketMessage.bind(this),this.ws.onclose=this.onSocketClose.bind(this),this.ws.onerror=this.onSocketError.bind(this))}onSocketOpen(){this.handleLogin()}onSocketClose(e){try{if(!this.ws)return;this.ws=null,e.code>1e3?(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():this.scheduleRetry()):this.externalStopCallback()}catch(t){this.handleRTCError(t)}}onSocketError(e){try{this.externalErrorCallback(new Error(e.toString()))}catch(t){this.handleRTCError(t)}}onSocketMessage(e){try{let t=this.parseMessage(e.data);switch(t.type){case"JOIN":case"CALL_JOIN":this.handleJoinMessage(t);break;case"UPDATE":this.handleUpdateMessage(t);break;case"STATUS":this.handleStatusMessage(t);break}}catch(t){this.handleRTCError(t)}}handleJoinMessage(e){switch(e.inviteType){case"ANSWER":this.handleAnswer(e.sdp);break;case"CANDIDATE":this.handleCandidate(e.candidate);break}}handleStatusMessage(e){switch(e.status){case"UNPUBLISHED":this.handleUnpublished();break}}async handleUpdateMessage(e){try{let t=await this.createOffer();this.peerConnection&&await this.peerConnection.setLocalDescription(t),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}}async handleLogin(){try{let e={iceServers:[{urls:ev}]};this.peerConnection=new RTCPeerConnection(e),this.peerConnection.ontrack=this.onPeerConnectionStream.bind(this),this.peerConnection.onicecandidate=this.onPeerConnectionIceCandidate.bind(this),this.peerConnection.oniceconnectionstatechange=this.onPeerConnectionIceConnectionStateChange.bind(this);let t=await this.createOffer();await this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}}async handleAnswer(e){try{this.peerConnection&&await this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e}))}catch(t){this.handleRTCError(t)}}async handleCandidate(e){if(e)try{this.peerConnection&&await this.peerConnection.addIceCandidate(e)}catch(t){this.handleRTCError(t)}}handleUnpublished(){try{this.closeConnections(),this.externalStopCallback()}catch(e){this.handleRTCError(e)}}handleSystemError(e){this.options.errorChanel&&this.options.errorChanel.next({id:"webrtc-provider-error",category:tv.ErrorCategory.WTF,message:e.message})}async onPeerConnectionStream(e){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:"CANDIDATE",candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;["failed","closed"].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}async createOffer(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=await this.peerConnection.createOffer(e),i=t.sdp||"";if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(i))throw new Error("No h264 codec support error");return t}handleRTCError(e){try{this.externalErrorCallback(e||new Error("RTC connection error"))}catch(t){this.handleSystemError(t)}}handleNetworkError(){try{this.externalErrorCallback(new Error("Network error"))}catch(e){this.handleSystemError(e)}}send(e){this.ws&&this.ws.send(JSON.stringify(e))}parseMessage(e){try{return JSON.parse(e)}catch{throw new Error("Can not parse socket message")}}closeConnections(){let e=this.ws;e&&(this.ws=null,e.close(1e3)),this.removePeerConnection()}removePeerConnection(){let e=this.peerConnection;e&&(this.peerConnection=null,e.close(),e.ontrack=null,e.onicecandidate=null,e.oniceconnectionstatechange=null,e=null)}scheduleRetry(){this.retryTimeout=setTimeout(this.connectWS.bind(this),eL)}normalizeOptions(e={}){let t={stunServerList:ev,maxRetryNumber:tL,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var xa=class{constructor(e){this.videoState=new j("stopped");this.maxSeekBackTime$=new oe.ValueSubject(0);this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.pause(),this.video.srcObject=null,this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let s=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):i?.to==="playing"&&w(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&w(this.params.desiredState.playbackState,"paused");return;default:return(0,oe.assertNever)(e)}};this.subscription=new oe.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Ve(e.container,e.tuning),this.liveStreamClient=new Zs(this.params.source.url,{maxRetryNumber:this.params.tuning.webrtc.connectionRetryMaxNumber,errorChanel:this.params.output.error$}),this.liveStreamClient.onStart(this.onLiveStreamStart.bind(this)),this.liveStreamClient.onStop(this.onLiveStreamStop.bind(this)),this.liveStreamClient.onError(this.onLiveStreamError.bind(this)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.subscribe()}destroy(){this.subscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),Be(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:oe.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,oe.merge)(this.videoState.stateChangeStarted$.pipe((0,oe.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,oe.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let a=_e(this.video);this.subscription.add(()=>a.destroy());let s=(n,o)=>this.subscription.add(n.subscribe(o,i));s(a.timeUpdate$,e.liveTime$),s(a.ended$,e.endedEvent$),s(a.looped$,e.loopedEvent$),s(a.error$,e.error$),s(a.isBuffering$,e.isBuffering$),s(a.currentBuffer$,e.currentBuffer$),s(Je(this.video),this.params.output.elementVisible$),this.subscription.add(a.durationChange$.subscribe(n=>{e.duration$.next(n===1/0?0:n)})).add(a.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused")},i)).add(a.playing$.subscribe(()=>{this.videoState.setState("playing")},i)).add(a.error$.subscribe(e.error$)).add(this.maxSeekBackTime$.subscribe(this.params.output.duration$)).add(Oe(this.video,t.volume,a.volumeState$,i)).add(a.volumeState$.subscribe(e.volume$,i)).add(this.videoState.stateChangeEnded$.subscribe(n=>{switch(n.to){case"stopped":e.position$.next(0),e.duration$.next(0),t.playbackState.setState("stopped");break;case"ready":break;case"paused":t.playbackState.setState("paused");break;case"playing":t.playbackState.setState("playing");break;default:return(0,oe.assertNever)(n.to)}},i)).add((0,oe.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,oe.observableFrom)(["init"])).pipe((0,oe.debounce)(0)).subscribe(this.syncPlayback.bind(this),i)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),i))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(ye(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:"webrtc",quality:oe.VideoQuality.INVARIANT}),this.video.srcObject=e,w(this.params.desiredState.playbackState,"playing")}onLiveStreamStop(){this.videoState.startTransitionTo("stopped"),this.syncPlayback(),this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:"WebRTC stream runtime error",category:oe.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:oe.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var zi=class{constructor(e){this.length=e.length,this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next(),this.index=this.index===void 0?0:this.index+1}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}isLast(){return this.index===this.length-1}};var S=require("@vkontakte/videoplayer-shared/es2024");var Rt=require("@vkontakte/videoplayer-shared/es2024"),iv=r=>new Rt.Observable(e=>{let t=new Rt.Subscription,i=r.desiredPlaybackState$.stateChangeStarted$.pipe((0,Rt.map)(({from:l,to:d})=>`${l}-${d}`)),a=r.desiredPlaybackState$.stateChangeEnded$,s=r.providerChanged$.pipe((0,Rt.map)(({type:l})=>l!==void 0)),n=new Rt.Subject,o=0,u="unknown";return t.add(i.subscribe(l=>{o&&window.clearTimeout(o),u=l,o=window.setTimeout(()=>n.next(l),r.maxTransitionInterval)})),t.add(a.subscribe(()=>{window.clearTimeout(o),u="unknown",o=0})),t.add(s.subscribe(l=>{o&&(window.clearTimeout(o),o=0,l&&(o=window.setTimeout(()=>n.next(u),r.maxTransitionInterval)))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var Ze=require("@vkontakte/videoplayer-shared/es2024");function rv(){return new(window.AudioContext||window.webkitAudioContext)}var Ki=class r{constructor(e,t,i,a){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=a;this.destroyController=new Pe;this.subscriptions=new Ze.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,Ze.filter)(s=>!!s.type),(0,Ze.once)()).subscribe(({type:s})=>this.subscribe(s)))}static{this.errorId="VolumeMultiplierManager"}subscribe(e){Q.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,Ze.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,Ze.filter)(({playbackState:t,video:i,volume:{muted:a,volume:s}})=>t==="playing"&&!!i&&!a&&!!s),(0,Ze.once)()).subscribe(({video:t})=>{this.initAudioContextOnce(t).then(i=>{i||this.destroy()}).catch(i=>{this.handleError(i),this.destroy()})}))}static isSupported(){return"AudioContext"in window&&"GainNode"in window&&"MediaElementAudioSourceNode"in window}async initAudioContextOnce(e){let{volumeMultiplier:t}=this,i=rv();this.audioContext=i;let a=i.createGain();if(this.gainNode=a,a.gain.value=t,a.connect(i.destination),i.state==="suspended"&&(await i.resume(),this.destroyController.signal.aborted))return!1;let s=i.createMediaElementSource(e);return this.mediaElementSource=s,s.connect(a),!0}cleanup(){this.mediaElementSource&&(this.mediaElementSource.disconnect(),this.mediaElementSource=null),this.gainNode&&(this.gainNode.disconnect(),this.gainNode=null),this.audioContext&&(this.audioContext.state!=="closed"&&this.audioContext.close(),this.audioContext=null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){this.volumeMultiplierError$.next({id:r.errorId,category:Ze.ErrorCategory.VIDEO_PIPELINE,message:e?.message??`${r.errorId} exception`,thrown:e})}};var iL={chunkDuration:5e3,maxParallelRequests:5},Pa=class{constructor(e){this.current$=new S.ValueSubject({type:void 0});this.providerError$=new S.Subject;this.noAvailableProvidersError$=new S.Subject;this.volumeMultiplierError$=new S.Subject;this.providerOutput={position$:new S.ValueSubject(0),duration$:new S.ValueSubject(1/0),volume$:new S.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new S.ValueSubject([]),currentVideoStream$:new S.ValueSubject(void 0),availableVideoTracks$:new S.ValueSubject([]),currentVideoTrack$:new S.ValueSubject(void 0),availableVideoCodecs$:new S.ValueSubject([]),availableAudioStreams$:new S.ValueSubject([]),currentAudioStream$:new S.ValueSubject(void 0),availableAudioTracks$:new S.ValueSubject([]),availableAudioCodecs$:new S.ValueSubject([]),currentVideoSegmentLength$:new S.ValueSubject(0),currentAudioSegmentLength$:new S.ValueSubject(0),isAudioAvailable$:new S.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new S.ValueSubject(!1),autoVideoTrackLimits$:new S.ValueSubject(void 0),currentBuffer$:new S.ValueSubject(void 0),isBuffering$:new S.ValueSubject(!0),error$:new S.Subject,fetcherError$:new S.Subject,fetcherRecoverableError$:new S.Subject,warning$:new S.Subject,willSeekEvent$:new S.Subject,soundProhibitedEvent$:new S.Subject,seekedEvent$:new S.Subject,loopedEvent$:new S.Subject,endedEvent$:new S.Subject,firstBytesEvent$:new S.Subject,loadedMetadataEvent$:new S.Subject,firstFrameEvent$:new S.Subject,canplay$:new S.Subject,isLive$:new S.ValueSubject(void 0),isLiveEnded$:new S.ValueSubject(null),isLowLatency$:new S.ValueSubject(!1),canChangePlaybackSpeed$:new S.ValueSubject(!0),liveTime$:new S.ValueSubject(void 0),liveBufferTime$:new S.ValueSubject(void 0),liveLatency$:new S.ValueSubject(void 0),severeStallOccurred$:new S.Subject,availableTextTracks$:new S.ValueSubject([]),currentTextTrack$:new S.ValueSubject(void 0),hostname$:new S.ValueSubject(void 0),httpConnectionType$:new S.ValueSubject(void 0),httpConnectionReused$:new S.ValueSubject(void 0),inPiP$:new S.ValueSubject(!1),inFullscreen$:new S.ValueSubject(!1),element$:new S.ValueSubject(void 0),elementVisible$:new S.ValueSubject(!0),availableSources$:new S.ValueSubject(void 0),is3DVideo$:new S.ValueSubject(!1),playbackState$:new S.ValueSubject(""),getCurrentTime$:new S.ValueSubject(null)};this.subscription=new S.Subscription;this.volumeMultiplierManager=null;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ProviderContainer"),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name);let t=Og([...Ng(this.params.tuning),..._g(this.params.tuning)],this.params.tuning).filter(l=>(0,S.isNonNullable)(e.sources[l])),{forceFormat:i,formatsToAvoid:a}=this.params.tuning,s=[];i?s=[i]:a.length?s=[...t.filter(l=>!(0,Xu.default)(a,l)),...t.filter(l=>(0,Xu.default)(a,l))]:s=t,this.log({message:`Selected formats: ${s.join(" > ")}`}),this.tracer.log("Selected formats",(0,S.flattenObject)(s)),this.screenFormatsIterator=new zi(s);let n=[...Uu(!0),...Uu(!1)];this.chromecastFormatsIterator=new zi(n.filter(l=>(0,S.isNonNullable)(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&Ki.isSupported()&&(this.volumeMultiplierManager=new Ki(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){this.subscription.add(this.initProviderErrorHandling()).add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()})).add(this.providerOutput.availableVideoCodecs$.subscribe(e=>{!this.videoCodecsIterator&&e.length>1&&(this.videoCodecsIterator=new zi(e))}))}destroy(){this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),this.volumeMultiplierManager?.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if((0,S.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(a){this.providerError$.next({id:"ProviderNotConstructed",category:S.ErrorCategory.WTF,message:"Failed to create provider",thrown:a})}i?this.current$.next({type:t,provider:i,destination:e}):this.current$.next({type:void 0})}reinitProvider(){this.tracer.log("reinitProvider"),this.destroyProvider(),this.initProvider()}switchToNextProvider(e){this.tracer.log("switchToNextProvider",{destination:e}),this.destroyProvider(),this.failoverIndex=void 0,this.skipFormat(e),this.initProvider()}switchToNextVideoCodec(){this.params.tuning.dash.codecsPrioritizeEnabled&&!this.videoCodecsIterator.isLast()&&(this.tracer.log("switchToNextVideoCodec"),this.destroyProvider(),this.videoCodecsIterator.next(),this.initProvider())}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:"destroyProvider"}),this.tracer.log("destroyProvider");let t=this.providerOutput.position$.getValue()*1e3,i=this.params.desiredState.seekState.getState(),a=i.state!=="none";if(this.params.desiredState.seekState.setState({state:"requested",position:a?i.position:t,forcePrecise:a?i.forcePrecise:!1}),e.scene3D){let n=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:n.x,y:n.y})}e.destroy();let s=this.providerOutput.isBuffering$;s.getValue()||s.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log("createProvider",{destination:e,format:t}),e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return(0,S.assertNever)(e)}}createScreenProvider(e){let{sources:t,container:i,desiredState:a,panelSize:s}=this.params,n=this.providerOutput,o={container:i,source:null,desiredState:a,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:s};switch(e){case"DASH_SEP":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_ONDEMAND":case"DASH_STREAMS":{let u=this.applyFailoverHost(t[e]),l=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);return(0,S.assertNonNullable)(u),new va({...o,source:u,sourceHls:l,forceVideoCodec:this.videoCodecsIterator?.getValue()})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),new Sa({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),Q.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new Ia({...o,source:u}):new ya({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),new Ta({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),new Ea({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),new Of({...o,source:u,config:{...iL,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),new xa({container:i,source:u,desiredState:a,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,S.assertNever)(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:a,meta:s}=this.params,n=this.providerOutput,o=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,S.assertNonNullable)(o),new kr({connection:o,meta:s,container:i,source:t,format:e,desiredState:a,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}chooseDestination(){return this.params.dependencies.chromecastInitializer.connection$.getValue()?"CHROMECAST":"SCREEN"}chooseFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.isCompleted()?void 0:this.screenFormatsIterator.getValue();case"CHROMECAST":return this.chromecastFormatsIterator.isCompleted()?void 0:this.chromecastFormatsIterator.getValue();default:return(0,S.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,S.assertNever)(e)}}handleNoFormatsError(e){switch(e){case"SCREEN":this.noAvailableProvidersError$.next(this.params.tuning.forceFormat),this.current$.next({type:void 0});return;case"CHROMECAST":this.params.dependencies.chromecastInitializer.disconnect();return;default:return(0,S.assertNever)(e)}}applyFailoverHost(e){if(this.failoverIndex===void 0)return e;let t=this.params.failoverHosts[this.failoverIndex];if(!t)return e;let i=a=>{let s=new URL(a);return s.host=t,s.toString()};if(e===void 0)return e;if("type"in e){if(e.type==="raw")return e;if(e.type==="url")return{...e,url:i(e.url)}}return(0,sv.default)((0,av.default)(e).map(([a,s])=>[a,i(s)]))}initProviderErrorHandling(){let e=new S.Subscription,t=!1,i=0;return e.add((0,S.merge)(this.providerOutput.error$.pipe((0,S.filter)(a=>!this.params.tuning.ignoreAudioRendererError||!a.message||!/AUDIO_RENDERER_ERROR/ig.test(a.message))),iv({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,S.map)(a=>({id:`ProviderHangup:${a}`,category:S.ErrorCategory.WTF,message:`A ${a} transition failed to complete within reasonable time`})))).subscribe(this.providerError$)),e.add(this.providerOutput.fetcherError$.subscribe(this.providerError$)),e.add(this.current$.subscribe(()=>{t=!1;let a=this.params.desiredState.playbackState.transitionEnded$.pipe((0,S.filter)(({to:s})=>s==="playing"),(0,S.once)()).subscribe(()=>t=!0);e.add(a)})),e.add(this.providerError$.subscribe(a=>{let s=this.current$.getValue().destination,n={error:a,currentDestination:s};if(s==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let o=a.category===S.ErrorCategory.NETWORK,u=a.category===S.ErrorCategory.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),d=i<this.params.tuning.providerErrorLimit&&!u,p=this.videoCodecsIterator&&!this.videoCodecsIterator.isLast()&&this.params.tuning.dash.codecsPrioritizeEnabled,h=l&&!u&&(o&&t||!d);n={...n,isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:h,canReinitProvider:d},d?(i++,this.reinitProvider()):h?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):p?this.switchToNextVideoCodec():(i=0,this.switchToNextProvider(s??"SCREEN"))}this.tracer.error("providerError",(0,S.flattenObject)(n))})),e}};var O=require("@vkontakte/videoplayer-shared/es2024");var rL=5e3,nv="one_video_throughput",ov="one_video_rtt",ka=window.navigator.connection,uv=()=>{let r=ka?.downlink;if((0,O.isNonNullable)(r)&&r!==10)return r*1e3},lv=()=>{let r=ka?.rtt;if((0,O.isNonNullable)(r)&&r!==3e3)return r},cv=(r,e,t)=>{let i=t*8,a=i/r;return i/(a+e)},Ju=class r{constructor(e){this.subscription=new O.Subscription;this.concurrentDownloads=new Set;this.tuningConfig=e;let t=r.load(nv)||(e.useBrowserEstimation?uv():void 0)||rL,i=r.load(ov)??(e.useBrowserEstimation?lv():void 0)??0;if(this.throughput$=new O.ValueSubject(t),this.rtt$=new O.ValueSubject(i),this.rttAdjustedThroughput$=new O.ValueSubject(cv(t,i,e.rttPenaltyRequestSize)),this.throughput=di.getSmoothedValue(t,-1,e),this.rtt=di.getSmoothedValue(i,1,e),e.useBrowserEstimation){let a=()=>{let n=uv();n&&this.throughput.next(n);let o=lv();(0,O.isNonNullable)(o)&&this.rtt.next(o)};ka&&"onchange"in ka&&this.subscription.add((0,O.fromEvent)(ka,"change").subscribe(a)),a()}this.subscription.add(this.throughput.smoothed$.subscribe(a=>{O.safeStorage.set(nv,a.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(a=>{O.safeStorage.set(ov,a.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,O.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,O.map)(({throughput:a,rtt:s})=>cv(a,s,e.rttPenaltyRequestSize)),(0,O.filter)(a=>{let s=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(a-s)/s>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=(0,O.now)(),a=new O.Subscription;switch(this.subscription.add(a),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:a.add((0,O.fromEvent)(e,"progress").pipe((0,O.once)()).subscribe(s=>{t=s.loaded,i=(0,O.now)()}));break;case 1:case 0:a.add((0,O.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,O.now)()}));break}a.add((0,O.fromEvent)(e,"loadend").subscribe(s=>{if(e.status===200){let n=s.loaded,o=(0,O.now)(),u=n-t,l=o-i;this.addRawSpeed(u,l,1)}this.concurrentDownloads.delete(e),a.unsubscribe()}))}trackStream(e,t=!1){let i=e.getReader();if(!i){e.cancel("Could not get reader");return}let a=0,s=(0,O.now)(),n=0,o=(0,O.now)(),u=d=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${d}`).catch(()=>{})},l=async({done:d,value:p})=>{if(d)!t&&this.addRawSpeed(a,(0,O.now)()-s,1),this.concurrentDownloads.delete(e);else if(p){if(t){let h=(0,O.now)();if(h-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||h-s>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let b=o-s;b&&this.addRawSpeed(n,b,1,t),n=p.byteLength,s=(0,O.now)()}else n+=p.byteLength;o=(0,O.now)()}else a+=p.byteLength,n+=p.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,O.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,O.now)()-o,this.concurrentDownloads.size),n=0,o=(0,O.now)());await i?.read().then(l,u)}};this.concurrentDownloads.add(e),i?.read().then(l,u)}addRawSpeed(e,t,i=1,a=!1){if(r.sanityCheck(e,t,a)){let s=e*8/t;this.throughput.next(s*i)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,i=!1){let a=e*8/t;return!(!a||!isFinite(a)||a>1e6||a<30||i&&e<1e4||!i&&e<10*1024||!i&&t<=20)}static load(e){let t=O.safeStorage.get(e);if((0,O.isNonNullable)(t))return parseInt(t,10)??void 0}},dv=Ju;var hi=require("@vkontakte/videoplayer-shared/es2024"),pv={configName:["core"],throughputEstimator:{type:"EmaAndMa",emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{bitrateFactorAtEmptyBuffer:2.8,bitrateAudioFactorAtEmptyBuffer:10,bitrateFactorAtFullBuffer:2,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,containerSizeFactor:1.3,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:hi.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:hi.VideoQuality.Q_720P,trafficSavingLimit:hi.VideoQuality.Q_480P},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:hi.VideoQuality.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,representationSwitchForwardBufferGap:3e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useFetchPriorityHints:!0,qualityLimitsOnStall:{stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!1},enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,rejectOnSourceOpenTimeout:!1,codecsPrioritizeEnabled:!1},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useManagedMediaSource:!0,useNewSwitchTo:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},hv=r=>({...(0,hi.fillWithDefault)(r,pv),configName:[...r.configName??[],...pv.configName]});var c=require("@vkontakte/videoplayer-shared/es2024");var $t=require("@vkontakte/videoplayer-shared/es2024"),Zu=({seekState:r,position$:e})=>(0,$t.merge)(r.stateChangeEnded$.pipe((0,$t.map)(({to:t})=>t.state==="none"?void 0:(t.position??NaN)/1e3),(0,$t.filter)($t.isNonNullable)),e.pipe((0,$t.filter)(()=>r.getState().state==="none")));var mv=require("@vkontakte/videoplayer-shared/es2024"),fv=r=>{let e=typeof r.container=="string"?document.getElementById(r.container):r.container;return(0,mv.assertNonNullable)(e,`Wrong container or containerId {${r.container}}`),e};var en=require("@vkontakte/videoplayer-shared/es2024"),bv=(r,e,t,i)=>{r!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&t?.getValue().length===0?t.pipe((0,en.filter)(a=>a.length>0),(0,en.once)()).subscribe(a=>{a.find(i)&&e.startTransitionTo(r)}):(r===void 0||t?.getValue().find(i))&&e.startTransitionTo(r)};var wa=class{constructor(e={configName:[]},t=c.Tracer.createRootTracer(!1)){this.subscription=new c.Subscription;this.logger=new c.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new c.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new c.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new j("stopped"),seekState:new j({state:"none"}),volume:new j({volume:1,muted:!1}),videoTrack:new j(void 0),videoStream:new j(void 0),audioStream:new j(void 0),autoVideoTrackSwitching:new j(!0),autoVideoTrackLimits:new j({}),isLooped:new j(!1),isLowLatency:new j(!1),playbackRate:new j(1),externalTextTracks:new j([]),internalTextTracks:new j([]),currentTextTrack:new j(void 0),textTrackCuesSettings:new j({}),cameraOrientation:new j({x:0,y:0})};this.info={playbackState$:new c.ValueSubject(void 0),position$:new c.ValueSubject(0),duration$:new c.ValueSubject(1/0),muted$:new c.ValueSubject(!1),volume$:new c.ValueSubject(1),availableVideoStreams$:new c.ValueSubject([]),currentVideoStream$:new c.ValueSubject(void 0),availableQualities$:new c.ValueSubject([]),availableQualitiesFps$:new c.ValueSubject({}),currentQuality$:new c.ValueSubject(void 0),isAutoQualityEnabled$:new c.ValueSubject(!0),autoQualityLimitingAvailable$:new c.ValueSubject(!1),autoQualityLimits$:new c.ValueSubject({}),predefinedQualityLimitType$:new c.ValueSubject("unknown"),availableAudioStreams$:new c.ValueSubject([]),currentAudioStream$:new c.ValueSubject(void 0),availableAudioTracks$:new c.ValueSubject([]),isAudioAvailable$:new c.ValueSubject(!0),currentPlaybackRate$:new c.ValueSubject(1),currentBuffer$:new c.ValueSubject({start:0,end:0}),isBuffering$:new c.ValueSubject(!0),isStalled$:new c.ValueSubject(!1),isEnded$:new c.ValueSubject(!1),isLooped$:new c.ValueSubject(!1),isLive$:new c.ValueSubject(void 0),isLiveEnded$:new c.ValueSubject(null),canChangePlaybackSpeed$:new c.ValueSubject(void 0),atLiveEdge$:new c.ValueSubject(void 0),atLiveDurationEdge$:new c.ValueSubject(void 0),liveTime$:new c.ValueSubject(void 0),liveBufferTime$:new c.ValueSubject(void 0),liveLatency$:new c.ValueSubject(void 0),currentFormat$:new c.ValueSubject(void 0),availableTextTracks$:new c.ValueSubject([]),currentTextTrack$:new c.ValueSubject(void 0),throughputEstimation$:new c.ValueSubject(void 0),rttEstimation$:new c.ValueSubject(void 0),videoBitrate$:new c.ValueSubject(void 0),hostname$:new c.ValueSubject(void 0),httpConnectionType$:new c.ValueSubject(void 0),httpConnectionReused$:new c.ValueSubject(void 0),surface$:new c.ValueSubject("none"),chromecastState$:new c.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new c.ValueSubject(void 0),intrinsicVideoSize$:new c.ValueSubject(void 0),availableSources$:new c.ValueSubject(void 0),is3DVideo$:new c.ValueSubject(!1),currentVideoSegmentLength$:new c.ValueSubject(0),currentAudioSegmentLength$:new c.ValueSubject(0)};this.events={inited$:new c.Subject,ready$:new c.Subject,started$:new c.Subject,playing$:new c.Subject,paused$:new c.Subject,stopped$:new c.Subject,willStart$:new c.Subject,willResume$:new c.Subject,willPause$:new c.Subject,willStop$:new c.Subject,willDestruct$:new c.Subject,watchCoverageRecord$:new c.Subject,watchCoverageLive$:new c.Subject,managedError$:new c.Subject,fatalError$:new c.Subject,fetcherRecoverableError$:new c.Subject,ended$:new c.Subject,looped$:new c.Subject,seeked$:new c.Subject,willSeek$:new c.Subject,autoplaySoundProhibited$:new c.Subject,firstBytes$:new c.Subject,loadedMetadata$:new c.Subject,firstFrame$:new c.Subject,canplay$:new c.Subject,log$:new c.Subject,fetcherError$:new c.Subject,severeStallOccured$:new c.Subject};this.experimental={element$:new c.ValueSubject(void 0),tuningConfigName$:new c.ValueSubject([]),enableDebugTelemetry$:new c.ValueSubject(!1),dumpTelemetry:yf,getCurrentTime$:new c.ValueSubject(null)};if(this.initLogs(),this.tuning=hv(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new Ha({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new dv(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new c.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,a,s)=>{let n=Reflect.get(i,a,s);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(h=>JSON.stringify(h,(m,b)=>{let v=typeof b;return(0,gv.default)(["number","string","boolean"],v)?b:b===null?null:`<${v}>`})),d=`Player.${String(a)}`,p=`Exception calling ${d} (${l.join(", ")})`;throw this.events.fatalError$.next({id:d,category:c.ErrorCategory.WTF,message:p,thrown:u}),u}}}})}initVideo(e){this.config=e,this.internalsExposure?.expose({config:e,logger:this.logger,tuning:this.tuning});let t=()=>{let{container:s,...n}=e;this.tracer.log("initVideo",(0,c.flattenObject)(n)),this.domContainer=fv(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new Pa({sources:e.sources,meta:e.meta??{},failoverHosts:e.failoverHosts??[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.setMuted(this.tuning.isAudioDisabled),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},a=()=>{this.tuning.asyncResolveClientChecker?Q.isInited$.pipe((0,c.filter)(s=>!!s),(0,c.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,c.fromEvent)(document,"visibilitychange").pipe((0,c.once)()).subscribe(a)):a(),this}destroy(){this.tracer.log("destroy"),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),this.providerContainer?.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),this.internalsExposure?.destroy()}prepare(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>!!e),(0,c.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready")})),this}play(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>!!e),(0,c.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing")})),this}pause(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>!!e),(0,c.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused")})),this}stop(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>!!e),(0,c.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("stop",{currentPlayBackState:e.getState()}),e.getState()!=="stopped"&&e.startTransitionTo("stopped")})),this}seekTime(e,t=!0){return this.subscription.add(this.playerInited.pipe((0,c.filter)(i=>!!i),(0,c.once)()).subscribe(()=>{let i=this.info.duration$.getValue(),a=this.info.isLive$.getValue(),s=e;e>=i&&!a&&(s=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:a,time:e,calculatedTime:s,forcePrecise:t}),Number.isFinite(s)&&(this.events.willSeek$.next({from:this.getExactTime(),to:s}),this.desiredState.seekState.setState({state:"requested",position:s*1e3,forcePrecise:t}))})),this}seekPercent(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{let t=this.info.duration$.getValue();this.tracer.log("seekPercent",{percent:e,duration:t}),isFinite(t)&&this.seekTime(Math.abs(t)*e,!1)})),this}setVolume(e,t){return this.subscription.add(this.playerInited.pipe((0,c.filter)(i=>!!i),(0,c.once)()).subscribe(()=>{let i=this.desiredState.volume,s=i.getTransition()?.to.muted??this.info.muted$.getValue(),n=t??(this.tuning.isAudioDisabled||s);this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:n}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})})),this}setMuted(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{let t=this.desiredState.volume,i=this.tuning.isAudioDisabled||e,s=t.getTransition()?.to.volume??this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:i,volume:s,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setMuted(i):t.startTransitionTo({volume:s,muted:i})})),this}setVideoStream(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{(0,c.assertNonNullable)(this.providerContainer);let t=this.providerContainer.providerOutput.availableVideoTracks$.getValue();this.tracer.log("setQuality",{isDelayed:t.length===0,quality:e}),this.desiredState.videoTrack.getState()===void 0&&this.desiredState.videoTrack.getPrevState()===void 0&&t.length===0?this.wasSetStartedQuality?this.providerContainer.providerOutput.availableVideoTracks$.pipe((0,c.filter)(i=>i.length>0),(0,c.once)()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)})),this}setAutoQuality(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",(0,c.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{if(this.info.predefinedQualityLimitType$.getValue()===e)return this;let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection,a;switch(e){case"high_quality":a={min:t,max:void 0};break;case"traffic_saving":a={max:i,min:void 0};break;default:a={max:void 0,min:void 0}}this.setAutoQualityLimits(a)})),this}setPlaybackRate(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{(0,c.assertNonNullable)(this.providerContainer);let t=this.providerContainer?.providerOutput.element$.getValue();this.tracer.log("setPlaybackRate",{playbackRate:e,isVideoElementAvailable:!!t}),t&&(this.desiredState.playbackRate.setState(e),t.playbackRate=e)})),this}setExternalTextTracks(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,c.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{bv(e,this.desiredState.currentTextTrack,this.providerContainer?.providerOutput.availableTextTracks$,t=>t.id===e),this.tracer.log("selectTextTrack",{textTrackId:e})})),this}setTextTrackCueSettings(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.tracer.log("setTextTrackCueSettings",{...e}),this.desiredState.textTrackCuesSettings.startTransitionTo(e)})),this}setLiveLowLatency(e){let t=this.info.isLive$.getValue(),i=this.desiredState.isLowLatency.getState();return!t||i===e?this:(this.tracer.log("live switch to low latency "+e),this.desiredState.isLowLatency.setState(e),this.seekTime(0))}setLooped(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.tracer.log("setLooped",{isLooped:e}),this.desiredState.isLooped.startTransitionTo(e)})),this}toggleChromecast(){this.tracer.log("toggleChromecast"),this.chromecastInitializer.toggleConnection()}startCameraManualRotation(e,t){return this.subscription.add(this.playerInited.pipe((0,c.filter)(i=>!!i),(0,c.once)()).subscribe(()=>{let i=this.getScene3D();this.tracer.log("startCameraManualRotation",{isScene3DAvailable:!!i,mx:e,my:t}),i&&i.startCameraManualRotation(e,t)})),this}stopCameraManualRotation(e=!1){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{let t=this.getScene3D();this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)})),this}moveCameraFocusPX(e,t){return this.subscription.add(this.playerInited.pipe((0,c.filter)(i=>!!i),(0,c.once)()).subscribe(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let a=i.getCameraRotation(),s=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:a.x+s.x,y:a.y+s.y})}})),this}holdCamera(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>e),(0,c.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>!!e),(0,c.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.releaseCamera()})),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if((0,c.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,c.isNonNullable)(i)?i/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){let e=this.providerContainer?.current$.getValue();if(e?.provider?.scene3D)return e.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((i,{width:a})=>i||a||0,0),height:e.reduce((i,{height:a})=>i||a||0,0)};t.width&&t.height&&this.info.intrinsicVideoSize$.next({width:t.width,height:t.height})}initDesiredStateSubscriptions(){this.subscription.add((0,c.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,c.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,c.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,c.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,c.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,c.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(su({limits:e,highQualityLimit:t,trafficSavingLimit:i}))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,c.filter)(({from:e})=>e==="stopped"),(0,c.once)()).subscribe(()=>{this.initedAt=(0,c.now)(),this.events.inited$.next()})).add(this.desiredState.playbackState.stateChangeEnded$.subscribe(e=>{switch(e.to){case"ready":this.events.ready$.next();break;case"playing":this.isPlaybackStarted||this.events.started$.next(),this.isPlaybackStarted=!0,this.events.playing$.next();break;case"paused":this.events.paused$.next();break;case"stopped":this.events.stopped$.next()}})).add(this.desiredState.playbackState.stateChangeStarted$.subscribe(e=>{switch(e.to){case"paused":this.events.willPause$.next();break;case"playing":this.isPlaybackStarted?this.events.willResume$.next():this.events.willStart$.next();break;case"stopped":this.events.willStop$.next();break;default:}}))}initProviderContainerSubscription(e){this.subscription.add(e.providerOutput.willSeekEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("willSeekEvent",(0,c.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:c.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,c.once)()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("seekedEvent",(0,c.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,c.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,c.map)(n=>n.destination),(0,c.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,c.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,c.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,c.isInvariantQuality)(u)?1:(0,c.isInvariantQuality)(l)?-1:(0,c.isHigher)(l,u)?1:-1))).subscribe(this.info.availableQualities$)).add(e.providerOutput.availableVideoTracks$.subscribe(n=>{let o={};for(let u of n)u.fps&&(o[u.quality]=u.fps);this.info.availableQualitiesFps$.next(o)})).add(e.providerOutput.availableAudioStreams$.subscribe(this.info.availableAudioStreams$)).add(e.providerOutput.currentVideoStream$.subscribe(this.info.currentVideoStream$)).add(e.providerOutput.currentAudioStream$.subscribe(this.info.currentAudioStream$)).add(e.providerOutput.availableAudioTracks$.subscribe(this.info.availableAudioTracks$)).add(e.providerOutput.isAudioAvailable$.pipe((0,c.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,c.filter)(n=>(0,c.isNonNullable)(n))).subscribe(n=>{this.info.currentQuality$.next(n?.quality),this.info.videoBitrate$.next(n?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe((0,c.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,c.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,c.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,c.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,c.filterChanged)()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.currentTextTrack$.subscribe(this.info.currentTextTrack$)).add(e.providerOutput.availableTextTracks$.subscribe(this.info.availableTextTracks$)).add(e.providerOutput.autoVideoTrackLimitingAvailable$.subscribe(this.info.autoQualityLimitingAvailable$)).add(e.providerOutput.autoVideoTrackLimits$.subscribe(n=>{this.desiredState.autoVideoTrackLimits.setState(n??{})})).add(e.providerOutput.currentBuffer$.pipe((0,c.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.duration$.subscribe(this.info.duration$)).add(e.providerOutput.isBuffering$.subscribe(this.info.isBuffering$)).add(e.providerOutput.isLive$.subscribe(this.info.isLive$)).add(e.providerOutput.isLiveEnded$.pipe((0,c.tap)(n=>n&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add((0,c.combine)({hasLiveOffsetByPaused:(0,c.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,c.map)(n=>n.to),(0,c.filterChanged)(),(0,c.map)(n=>n==="paused")),isLowLatency:e.providerOutput.isLowLatency$}).subscribe(({hasLiveOffsetByPaused:n,isLowLatency:o})=>{if(window.clearTimeout(this.hasLiveOffsetByPausedTimer),n){this.hasLiveOffsetByPausedTimer=window.setTimeout(()=>{this.hasLiveOffsetByPaused.next(!0)},this.getActiveLiveDelay(o));return}this.hasLiveOffsetByPaused.next(!1)})).add((0,c.combine)({atLiveEdge:(0,c.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Zu({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,c.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,c.filterChanged)(),(0,c.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,c.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,c.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,c.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,c.filterChanged)(),(0,c.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,c.map)(n=>n.muted),(0,c.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,c.map)(n=>n.volume),(0,c.filterChanged)()).subscribe(this.info.volume$)).add(Zu({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,c.merge)(e.providerOutput.endedEvent$.pipe((0,c.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,c.mapTo)(!1))).pipe((0,c.filterChanged)()).subscribe(this.info.isEnded$)).add(e.providerOutput.endedEvent$.subscribe(this.events.ended$)).add(e.providerOutput.loopedEvent$.subscribe(this.events.looped$)).add(e.providerError$.subscribe(this.events.managedError$)).add(e.providerOutput.fetcherRecoverableError$.subscribe(this.events.fetcherRecoverableError$)).add(e.providerOutput.fetcherError$.subscribe(this.events.fatalError$)).add(e.volumeMultiplierError$.subscribe(this.events.managedError$)).add(e.noAvailableProvidersError$.pipe((0,c.map)(n=>({id:n?`No${n}`:"NoProviders",category:c.ErrorCategory.VIDEO_PIPELINE,message:n?`${n} was forced but failed or not available`:"No suitable providers or all providers failed"}))).subscribe(this.events.fatalError$)).add(e.providerOutput.element$.subscribe(this.experimental.element$)).add(e.providerOutput.getCurrentTime$.subscribe(this.experimental.getCurrentTime$)).add(e.providerOutput.firstBytesEvent$.pipe((0,c.once)(),(0,c.map)(n=>n??(0,c.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,c.once)(),(0,c.map)(()=>(0,c.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,c.once)(),(0,c.map)(()=>(0,c.now)()-this.initedAt)).subscribe(this.events.canplay$)).add(this.throughputEstimator.throughput$.subscribe(this.info.throughputEstimation$)).add(this.throughputEstimator.rtt$.subscribe(this.info.rttEstimation$)).add(e.providerOutput.availableSources$.subscribe(this.info.availableSources$));let t=new c.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new c.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,c.filter)(({to:n})=>n==="playing"),(0,c.once)()).subscribe(()=>i.next(!1)));let a=0,s=(0,c.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,c.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,c.filterChanged)());this.subscription.add(s.subscribe(n=>{n?a=window.setTimeout(()=>this.info.isStalled$.next(!0),this.tuning.stallIgnoreThreshold):(window.clearTimeout(a),this.info.isStalled$.next(!1))})),this.subscription.add((0,c.merge)(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n?.videoWidth,height:n?.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n?.size?.width,height:n?.size?.height},{width:o?.videoWidth,height:o?.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add((0,c.merge)(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let n=e.providerOutput.inPiP$.getValue(),o=e.providerOutput.inFullscreen$.getValue(),u=e.providerOutput.element$.getValue(),l=e.providerOutput.elementVisible$.getValue(),d=this.chromecastInitializer.castState$.getValue(),p;d==="CONNECTED"?p="second_screen":u?l?n?p="pip":o?p="fullscreen":p="inline":p="invisible":p="none",this.info.surface$.getValue()!==p&&this.info.surface$.next(p)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe((0,c.map)(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new c.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,c.filterChanged)((i,a)=>i.provider===a.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,c.filter)(i=>i.length>0),(0,c.once)()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){let t;this.wasSetStartedQuality=!0;let i=this.explicitInitialQuality??this.info.currentQuality$.getValue();i&&(t=e.find(({quality:a})=>a===i),t||this.setAutoQuality(!0)),t||(t=jt(e,{container:this.domContainer.getBoundingClientRect(),panelSize:this.config.panelSize,estimatedThroughput:this.throughputEstimator.throughput$.getValue(),tuning:this.tuning.autoTrackSelection,limits:this.desiredState.autoVideoTrackLimits.getState(),playbackRate:this.info.currentPlaybackRate$.getValue(),forwardBufferHealth:0,abrLogger:this.abrLogger})),this.desiredState.videoTrack.startTransitionTo(t),this.info.currentQuality$.next(t.quality),this.info.videoBitrate$.next(t.bitrate)}initLogs(){this.subscription.add((0,c.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,c.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,c.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,c.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,c.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,c.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,c.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,c.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,c.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,c.map)(e=>({component:"desiredState",message:`[${e.entity} change] ${e.type}: ${JSON.stringify(e.transition)}`}))).subscribe(this.logger.log)),this.subscription.add(this.logger.log$.subscribe(this.events.log$))}initDebugTelemetry(){let e=this.providerContainer?.providerOutput;(0,c.assertNonNullable)(this.providerContainer),(0,c.assertNonNullable)(e),Sf(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(t=>vf(t)),this.providerContainer.current$.subscribe(({type:t})=>wr("provider",t)),e.duration$.subscribe(t=>wr("duration",t)),e.availableVideoTracks$.pipe((0,c.filter)(t=>!!t.length),(0,c.once)()).subscribe(t=>wr("tracks",t)),this.events.fatalError$.subscribe(new Ae("fatalError")),this.events.managedError$.subscribe(new Ae("managedError")),e.position$.subscribe(new Ae("position")),e.currentVideoTrack$.pipe((0,c.map)(t=>t?.quality)).subscribe(new Ae("quality")),this.info.currentBuffer$.subscribe(new Ae("buffer")),e.isBuffering$.subscribe(new Ae("isBuffering"))].forEach(t=>this.subscription.add(t)),wr("codecs",Q.video.supportedCodecs)}initTracerSubscription(){let e=(0,c.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,c.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.info.playbackState$.subscribe(e("playbackState"))).add(this.info.isLooped$.subscribe(e("isLooped"))).add(this.info.currentPlaybackRate$.pipe((0,c.filterChanged)()).subscribe(e("currentPlaybackRate"))).add(this.info.isAutoQualityEnabled$.subscribe(e("isAutoQualityEnabled"))).add(this.info.autoQualityLimits$.subscribe(e("autoQualityLimits"))).add(this.info.currentFormat$.subscribe(e("currentFormat"))).add(this.info.availableQualities$.subscribe(e("availableQualities"))).add(this.info.availableQualitiesFps$.subscribe(e("availableQualitiesFps"))).add(this.info.availableAudioTracks$.subscribe(e("availableAudioTracks"))).add(this.info.isAudioAvailable$.subscribe(e("isAudioAvailable"))).add((0,c.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,c.filter)(({currentQuality:i,videoBitrate:a})=>!!i&&!!a),(0,c.filterChanged)((i,a)=>i.currentQuality===a.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,c.filter)(i=>i>0),(0,c.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,c.filter)(i=>i>0),(0,c.filterChanged)()).subscribe(e("currentAudioSegmentLength"))).add(this.info.hostname$.subscribe(e("hostname"))).add(this.info.currentTextTrack$.subscribe(e("currentTextTrack"))).add(this.info.availableTextTracks$.subscribe(e("availableTextTracks"))).add(this.info.autoQualityLimitingAvailable$.subscribe(e("autoQualityLimitingAvailable"))).add((0,c.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,c.filter)(i=>i.end>0),(0,c.filterChanged)((i,a)=>i.end===a.end&&i.start===a.start)),position:this.info.position$.pipe((0,c.filterChanged)())}).pipe((0,c.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,c.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,c.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,c.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,c.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,c.filter)(({liveTime:i,liveBufferTime:a})=>!!i&&!!a),(0,c.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,c.filterChanged)(),(0,c.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,c.filterChanged)(),(0,c.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,c.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,c.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,c.filterChanged)(),(0,c.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,c.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,c.filter)(({throughputEstimation:i,rtt:a})=>!!i&&!!a),(0,c.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,c.filterChanged)(),(0,c.filter)(i=>i===!0)).subscribe(e("is3DVideo"))).add(this.info.surface$.subscribe(e("surface"))).add(this.events.ended$.subscribe(e("ended"))).add(this.events.looped$.subscribe(e("looped"))).add(this.events.managedError$.subscribe(t("managedError"))).add(this.events.fatalError$.subscribe(t("fatalError"))).add(this.events.firstBytes$.subscribe(e("firstBytes"))).add(this.events.firstFrame$.subscribe(e("firstFrame"))).add(this.events.canplay$.subscribe(e("canplay")))}initWakeLock(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e?.release(),e=void 0},i=async()=>{t(),e=await window.navigator.wakeLock.request("screen").catch(a=>{a instanceof DOMException&&a.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:c.ErrorCategory.DOM,message:String(a)})})};this.subscription.add((0,c.merge)((0,c.fromEvent)(document,"visibilitychange"),(0,c.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let a=document.visibilityState==="visible",s=this.desiredState.playbackState.getState()==="playing",n=!!e&&!e?.released;a&&s?n||i():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let i=e.find(a=>a.quality===t);this.tracer.log("setVideoTrackIdByQuality",(0,c.flattenObject)({quality:t,availableTracks:(0,c.flattenObject)(e),track:(0,c.flattenObject)(i),isAutoQuality:!i})),i?this.desiredState.videoTrack.startTransitionTo(i):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!Cr()}};var yt=require("@vkontakte/videoplayer-shared/es2024"),aL=`@vkontakte/videoplayer-core@${an}`;
178
+ `;var Nr=class{constructor(e,t,i){this.videoInitialized=!1;this.active=!1;this.container=e,this.sourceVideoElement=t,this.params=i,this.canvas=this.createCanvas();let r=this.canvas.getContext("webgl");if(!r)throw new Error("Could not initialize WebGL context");this.gl=r,this.container.appendChild(this.canvas),this.camera=new go(this.params.fov,this.params.orientation),this.cameraRotationManager=new So(this.camera,{rotationSpeed:this.params.rotationSpeed,maxYawAngle:this.params.maxYawAngle,rotationSpeedCorrection:this.params.rotationSpeedCorrection,degreeToPixelCorrection:this.params.degreeToPixelCorrection,speedFadeTime:this.params.speedFadeTime,speedFadeThreshold:this.params.speedFadeThreshold}),this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.textureMappingBuffer=this.createTextureMappingBuffer(),this.updateTextureMappingBuffer(),this.program=this.createProgram(),this.videoTexture=this.createTexture(),this.gl.useProgram(this.program),this.videoElementDataLoadedFn=this.onDataLoadedHandler.bind(this),this.renderFn=this.render.bind(this)}play(){this.active||(this.videoInitialized?this.doPlay():this.sourceVideoElement.readyState>=2?(this.videoInitialized=!0,this.doPlay()):this.sourceVideoElement.addEventListener("loadeddata",this.videoElementDataLoadedFn))}stop(){this.active=!1}startCameraManualRotation(e,t){this.cameraRotationManager.setRotationSpeed(e*this.params.rotationSpeed,t*this.params.rotationSpeed,0),this.cameraRotationManager.startRotation()}stopCameraManualRotation(e=!1){this.cameraRotationManager.stopRotation(e)}turnCamera(e,t){this.cameraRotationManager.turnCamera(e,t)}pointCameraTo(e,t){this.cameraRotationManager.pointCameraTo(e,t)}pixelToDegree(e){return{x:this.params.degreeToPixelCorrection*this.params.fov.x*-e.x/this.viewportWidth,y:this.params.degreeToPixelCorrection*this.params.fov.y*e.y/this.viewportHeight}}getCameraRotation(){return this.camera.orientation}holdCamera(){this.cameraRotationManager.stopRotation(!0)}releaseCamera(){this.cameraRotationManager.onCameraRelease()}destroy(){this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),this.stop(),this.canvas.remove()}setViewportSize(e,t){this.viewportWidth=e,this.viewportHeight=t,this.canvas.width=this.viewportWidth,this.canvas.height=this.viewportHeight,this.gl.viewport(0,0,this.canvas.width,this.canvas.height)}onDataLoadedHandler(){this.videoInitialized=!0,this.doPlay()}doPlay(){this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.active=!0,this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),requestAnimationFrame(this.renderFn)}render(e){this.cameraRotationManager.tick(e),this.updateTexture(),this.updateTextureMappingBuffer();let t=this.gl.getAttribLocation(this.program,"a_vertex"),i=this.gl.getAttribLocation(this.program,"a_texel"),r=this.gl.getUniformLocation(this.program,"u_texture"),a=this.gl.getUniformLocation(this.program,"u_focus");this.gl.enableVertexAttribArray(t),this.gl.enableVertexAttribArray(i),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.vertexBuffer),this.gl.vertexAttribPointer(t,2,this.gl.FLOAT,!1,0,0),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.vertexAttribPointer(i,2,this.gl.FLOAT,!1,0,0),this.gl.activeTexture(this.gl.TEXTURE0),this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.uniform1i(r,0),this.gl.uniform2f(a,-this.camera.orientation.x,-this.camera.orientation.y),this.gl.drawArrays(this.gl.TRIANGLE_FAN,0,4),this.gl.bindTexture(this.gl.TEXTURE_2D,null),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(t),this.gl.disableVertexAttribArray(i),this.active&&requestAnimationFrame(this.renderFn)}createShader(e,t){let i=this.gl.createShader(t);if(!i)throw this.destroy(),new Error(`Could not create shader (${t})`);if(this.gl.shaderSource(i,e),this.gl.compileShader(i),!this.gl.getShaderParameter(i,this.gl.COMPILE_STATUS))throw this.destroy(),new Error("An error occurred while compiling the shader: "+this.gl.getShaderInfoLog(i));return i}createProgram(){let e=this.gl.createProgram();if(!e)throw this.destroy(),new Error("Could not create shader program");let t=this.createShader(vv,this.gl.VERTEX_SHADER),i=this.createShader(yv,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,i),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),new Error("Could not link shader program.");return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),new Error("Could not create texture");return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create vertex buffer");let t=1,i=1,r=this.frameHeight/(this.frameWidth/this.viewportWidth);return r>this.viewportHeight?t=this.viewportHeight/r:i=r/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-i,t,-i,t,i,-t,i]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create texture mapping buffer");return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,i=this.camera.fov.x/360/2,r=this.camera.fov.y/180/2,a=e-i,n=t-r,o=e+i,u=t-r,l=e+i,c=t+r,p=e-i,d=t+r;return[a,n,o,u,l,c,p,d]}updateTextureMappingBuffer(){this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([...this.calculateTexturePosition()]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null)}updateFrameSize(){this.frameWidth=this.sourceVideoElement.videoWidth,this.frameHeight=this.sourceVideoElement.videoHeight}createCanvas(){let e=document.createElement("canvas");return e.style.position="absolute",e.style.left="0",e.style.top="0",e.style.width="100%",e.style.height="100%",e}};var Pe=require("@vkontakte/videoplayer-shared/es2024");var vo="stalls_manager_metrics",Tv="stalls_manager_abr_params",vc=class{constructor(){this.isSeeked$=new Pe.ValueSubject(!1);this.isBuffering$=new Pe.ValueSubject(!1);this.maxQualityLimit=void 0;this.currentStallsCount=0;this.sumStallsDuration=0;this.lastStallDuration=0;this.providerStartWatchingTimestamp=0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new Pe.Subscription;this.severeStallOccurred$=new Pe.ValueSubject(!1)}connect(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.tuning=e.tuning,this.abrParams=e.abrParams,this.subscribe(e)}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}get abrTuningParams(){return{...this.abrParams,...this.getStoredData(Tv)}}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,Pe.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=((0,Pe.now)()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}updateStoredAbrParams(){let e=[],t=this.getStoredData(vo,"[]");if(t.length<this.tuning.stallsMetricsHistoryLength)return;if(this.tuning.useTotalStallsDurationPerTvt){let r=t.reduce((o,u)=>o+u.tvt,0),n=t.reduce((o,u)=>o+u.stallsDuration,0)/r;e.push(this.calculateOptimalAbrParams(n))}if(this.tuning.useAverageStallsDurationPerTvt){let r=t.reduce((a,n)=>a+n.stallsDurationPerTvt,0)/t.length;e.push(this.calculateOptimalAbrParams(r))}this.tuning.useEmaStallsDurationPerTvt&&e.push(this.calculateOptimalAbrParams(t[t.length-1].stallsDurationPerTvtSmoothed));let i={bitrateFactorAtEmptyBuffer:Math.max(...e.map(r=>r.bitrateFactorAtEmptyBuffer)),bitrateFactorAtFullBuffer:Math.max(...e.map(r=>r.bitrateFactorAtFullBuffer)),containerSizeFactor:Math.min(...e.map(r=>r.containerSizeFactor))};this.setStoredData(vo,[]),this.setStoredData(Tv,i)}calculateOptimalAbrParams(e){let{targetStallsDurationPerTvt:t,deviationStallsDurationPerTvt:i,criticalStallsDurationPerTvt:r,abrAdjustingSpeed:a}=this.tuning,n=this.abrTuningParams;return e<t-i?n={bitrateFactorAtEmptyBuffer:Math.max(n.bitrateFactorAtEmptyBuffer-a,this.abrParams.minBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(n.bitrateFactorAtFullBuffer-a,this.abrParams.minBitrateFactorAtFullBuffer),containerSizeFactor:Math.min(n.containerSizeFactor+a,this.abrParams.maxContainerSizeFactor)}:e>t+i&&(n={bitrateFactorAtEmptyBuffer:Math.min(n.bitrateFactorAtEmptyBuffer+a,this.abrParams.maxBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.min(n.bitrateFactorAtFullBuffer+a,this.abrParams.maxBitrateFactorAtFullBuffer),containerSizeFactor:Math.max(n.containerSizeFactor-a,this.abrParams.minContainerSizeFactor)}),e>r&&(n={bitrateFactorAtEmptyBuffer:Math.max(n.bitrateFactorAtEmptyBuffer,this.abrParams.bitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(n.bitrateFactorAtFullBuffer,this.abrParams.bitrateFactorAtFullBuffer),containerSizeFactor:Math.min(n.containerSizeFactor,this.abrParams.containerSizeFactor)}),n}getStoredData(e,t="{}"){return JSON.parse(Pe.safeStorage.get(e)??t)}setStoredData(e,t){Pe.safeStorage.set(e,JSON.stringify(t))}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let i=this.getStoredData(vo,"[]"),r=t/e,a=i.length?Si(i[i.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r,n={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:a};i.push(n),i.length>this.tuning.stallsMetricsHistoryLength&&i.shift(),this.setStoredData(vo,i)}updateStallData(){this.providerStartWatchingTimestamp&&!this.isSeeked$.getValue()&&(this.sumStallsDuration+=Math.min(this.lastStallDuration,this.tuning.maxPossibleStallDuration),this.currentStallsCount++)}subscribe(e){this.subscription.add(e.isSeeked$.subscribe(this.isSeeked$)),this.subscription.add(e.isBuffering$.subscribe(this.isBuffering$)),this.subscription.add(e.looped$.subscribe(t=>this.currentStallsCount=0)),this.subscription.add(e.playing$.pipe((0,Pe.once)()).subscribe(t=>this.providerStartWatchingTimestamp=(0,Pe.now)())),this.subscription.add(this.currentStallDuration$.pipe((0,Pe.filterChanged)()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if((0,Pe.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),c=(0,Pe.now)(),p=r&&this.currentStallsCount>=r,d=i&&c-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&c-l>=i+o&&t>=i;(p||d)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,Pe.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&(0,Pe.now)()-this.providerStartWatchingTimestamp>this.lastStallDuration&&(this.updateStallData(),this.severeStallOccurred$.next(!1),window.clearTimeout(this.qualityRestrictionTimer),this.qualityRestrictionTimer=window.setTimeout(()=>{this.maxQualityLimit=void 0,this.predictedThroughputWithoutData=0},a)),this.lastStallDuration=t}))}},yo=vc;var ft=require("@vkontakte/videoplayer-shared/es2024"),To=class{constructor(){this.subscription=new ft.Subscription;this.pipSize$=new ft.ValueSubject(void 0);this.videoSize$=new ft.ValueSubject(void 0);this.elementSize$=new ft.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=ft.noop}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add((0,ft.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:r})=>{this.pipSize$.next({width:r.width,height:r.height}),r.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{r.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,ft.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,ft.map)(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var tr=class{constructor(e){this.subscription=new ee.Subscription;this.videoState=new K("stopped");this.droppedFramesManager=new Lr;this.stallsManager=new yo;this.elementSizeManager=new To;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Mi;this.audioTrackSwitchHistory=new Mi;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&C(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,ee.assertNever)(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new Nr(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new pt(e.source.url),this.params=e,this.video=Ke(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new bo({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=Ze(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,a=o=>{e.error$.next({id:r,category:ee.ErrorCategory.WTF,message:`${r} internal logic error`,thrown:o})};return{output:e,desiredState:t,observableVideo:i,genericErrorListener:a,connect:(o,u)=>this.subscription.add(o.subscribe(u,a))}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:a}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,ee.filter)(l=>!!l.length),(0,ee.once)()).subscribe(l=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,ee.map)(l=>l.to.state!=="none"),(0,ee.filterChanged)());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:i.isBuffering$,looped$:i.looped$,playing$:i.playing$}),a(i.ended$,e.endedEvent$),a(i.looped$,e.loopedEvent$),a(i.error$,e.error$),a(i.isBuffering$,e.isBuffering$),a(i.currentBuffer$,e.currentBuffer$),a(i.playing$,e.firstFrameEvent$),a(i.canplay$,e.canplay$),a(i.inPiP$,e.inPiP$),a(i.inFullscreen$,e.inFullscreen$),a(i.loadedMetadata$,e.loadedMetadataEvent$),a(this.player.error$,e.error$),a(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),a(this.player.fetcherError$,e.fetcherError$),a(this.player.lastConnectionType$,e.httpConnectionType$),a(this.player.lastConnectionReused$,e.httpConnectionReused$),a(this.player.isLive$,e.isLive$),a(this.player.lastRequestFirstBytes$.pipe((0,ee.filter)(ee.isNonNullable),(0,ee.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,ee.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add($t(this.video,t.isLooped,r)),this.subscription.add(Je(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(dt(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(ht(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let c=this.player.getStreams();if((0,ee.assertNonNullable)(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let d=[];for(let h of c.audio){d.push(uc(h));let m=[];for(let g of h.representations){let y=sv(g);m.push(y),this.audioTracksMap.set(y,{stream:h,representation:g})}this.audioStreamsMap.set(h,m)}this.params.output.availableAudioStreams$.next(d)}let p=[];for(let d of c.video){p.push(lc(d));let h=[];for(let m of d.representations){let g=rv({...m,streamId:d.id});g&&(h.push(g),this.videoTracksMap.set(g,{stream:d,representation:m}))}this.videoStreamsMap.set(d,h)}this.params.output.availableVideoStreams$.next(p);for(let d of c.text)for(let h of d.representations){let m=av(d,h);this.textTracksMap.set(m,{stream:d,representation:h})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r)),this.subscription.add((0,ee.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,ee.fromEvent)(this.video,"progress")).pipe((0,ee.filter)(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(!(0,Iv.default)(["manifest_ready","running"],l)||c)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let p=this.selectVideoAudioRepresentations();if(!p)return;let[d,h]=p,m=[...this.videoTracksMap.keys()].find(y=>this.videoTracksMap.get(y)?.representation.id===d.id);(0,ee.isNonNullable)(m)&&(this.stallsManager.lastVideoTrackSelected=m);let g=this.params.desiredState.autoVideoTrackLimits.getTransition();if(g&&this.params.output.autoVideoTrackLimits$.next(g.to),l==="manifest_ready")await this.player.initRepresentations(d.id,h?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",d.id),h){let y=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",h.id,y)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,ee.filterChanged)()).subscribe(l=>{let c=[...this.videoTracksMap.entries()].find(([,{representation:m}])=>m.id===l);if(!c){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(lc(d))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,ee.filterChanged)()).subscribe(l=>{let c=[...this.audioTracksMap.entries()].find(([,{representation:m}])=>m.id===l);if(!c){e.currentAudioStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(uc(d))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{if(l?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(c){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${c}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe((0,ee.map)(({to:l})=>l==="ready"),(0,ee.filterChanged)());this.subscription.add((0,ee.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,ee.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add((0,ee.merge)(o,this.player.state$.stateChangeEnded$,(0,ee.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,ee.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ee.observableFrom)(["init"])).pipe((0,ee.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ts:ys,t=this.params.tuning.useNewAutoSelectVideoTrack?Yn:Wn,i=this.params.tuning.useNewAutoSelectVideoTrack?Zt:Qn,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,l=[...this.videoTracksMap.keys()].find(({id:I})=>I===o),c=a.currentVideoTrack$.getValue(),p=r.videoStream.getState()??(l&&this.videoTracksMap.get(l)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!p)return;let d=[...this.videoStreamsMap.keys()].find(({id:I})=>I===p.id),h=d&&this.videoStreamsMap.get(d);if(!h)return;let m=Qe(this.video.buffered,this.video.currentTime*1e3),g;this.player.isActiveLive$.getValue()?g=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?g=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:g=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let y=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,T=Math.min(m/Math.min(g,y||1/0),1),w=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),x=[...this.audioStreamsMap.keys()].find(({id:I})=>I===w?.id)??this.audioStreamsMap.keys().next().value,M=0;if(x){if(l&&!n){let I=e(l,h,this.audioStreamsMap.get(x)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);M=Math.max(M,I?.bitrate??-1/0)}if(c){let I=e(c,h,this.audioStreamsMap.get(x)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);M=Math.max(M,I?.bitrate??-1/0)}}let $=i(h,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:M,forwardBufferHealth:T,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}),F=n?$??l:l??$,Q=x&&t(F,h,this.audioStreamsMap.get(x)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:T,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),B=this.videoTracksMap.get(F)?.representation,D=Q&&this.audioTracksMap.get(Q)?.representation;if(B&&D)return[B,D];if(B&&!D&&this.audioTracksMap.size===0)return[B,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ee.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Xe(this.video),this.tracer.end()}};var la=class extends tr{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var me=require("@vkontakte/videoplayer-shared/es2024");var ca=class extends tr{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),a(i.timeUpdate$,t.liveBufferTime$),a(this.player.liveSeekableDuration$,t.duration$),a(this.player.liveLatency$,t.liveLatency$);let n=new me.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,me.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,me.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,me.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,me.filter)(o=>(0,me.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,me.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,me.merge)(i.playbackRateState$,new me.ValueSubject(1))}).pipe((0,me.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;c||u<1-p||this.video.paused||(0,me.isNullable)(l)||(e=o-l)})).add((0,me.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,me.merge)(i.playbackRateState$,new me.ValueSubject(1))}).pipe((0,me.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!c&&!this.video.paused&&l>=1-p||(0,me.isNullable)(o)||(0,me.isNullable)(u))return;let d=-1*(u-o-e);t.position$.next(Math.min(d,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=nv(o);this.params.output.availableTextTracks$.next([u])}}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var ie=require("@vkontakte/videoplayer-shared/es2024");var Mc=q(Rs(),1);var S=require("@vkontakte/videoplayer-shared/es2024");var Io=q(wt(),1),qr=q(Ht(),1),xo=q(Rs(),1);var jv=q(gs(),1);var Vi=require("@vkontakte/videoplayer-shared/es2024");var NL=18,xv=!1;try{xv=W.browser.isSafari&&!!W.browser.safariVersion&&W.browser.safariVersion<=NL}catch(s){console.error(s)}var yc=class{constructor(e){this.bufferFull$=new Vi.Subject;this.error$=new Vi.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{try{if(this.currentTask){let e=this.currentTask.signal?.aborted;this.currentTask.callback(!e),this.currentTask=null}this.queue.length&&this.pull()}catch(e){this.error$.next({id:"BufferTaskQueueUnknown",category:Vi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:e})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})}async remove(e,t,i){return i&&i.aborted?!1:new Promise(r=>{let a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})}async abort(e){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};xv&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:a}of this.queue)a(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if(e.signal?.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(r){r instanceof DOMException&&r.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):r instanceof DOMException&&r.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:Vi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:r}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,Vi.assertNever)(t)}}},Ev=yc;var k=require("@vkontakte/videoplayer-shared/es2024");var oe=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),i>e.byteLength-e.byteOffset&&(this.size32=NaN);let r=this.size32?this.size32-8:void 0,a=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,a,r)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let r=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,r}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var Ur=class extends oe{};var da=class extends oe{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let r=this.content.byteOffset,a=r+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(r,a)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var pa=class extends oe{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let r=this.readString(4);this.compatibleBrands.push(r),i-=4}}};var ha=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ve=class extends oe{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var fa=class extends ve{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16()}};var ma=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ba=class extends oe{constructor(e,t){super(e,t),this.data=this.content}};var ir=class extends ve{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let r=this.readUint32(),a=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var ga=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Sa=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var va=class extends ve{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var ya=class extends ve{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Ta=class extends ve{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var Ia=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var xa=class extends ve{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var Ea=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Pa=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ka=class extends ve{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var wa=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Aa=class extends ve{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var Ra=class extends ve{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var La=class extends ve{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let r=0;r<this.sampleCount;r++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var Ma=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var $a=class extends ve{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var Ba=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var qL={ftyp:pa,moov:ha,mvhd:fa,moof:ma,mdat:ba,sidx:ir,trak:ga,mdia:Ia,mfhd:ka,tkhd:xa,traf:wa,tfhd:Aa,tfdt:Ra,trun:La,minf:Ea,sv3d:Sa,st3d:va,prhd:ya,proj:Pa,equi:Ta,uuid:da,stbl:Ma,stsd:$a,avc1:Ba,unknown:Ur},yi=class s{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i,e.byteLength-i));if(!n.size)break;t.push(n),i+=n.size}catch{break}return t}createBox(e,t){let i=qL[e];return i?new i(t,new s):new Ur(t,new s)}};var Oi=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{this.index[t.type]??=[],this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children)})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var jL=new TextDecoder("ascii"),zL=s=>jL.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",GL=s=>{let e=new ir(s,new yi),t=e.earliestPresentationTime/e.timescale*1e3,i=s.byteOffset+s.byteLength+e.firstOffset;return e.segments.map(a=>{if(a.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=a.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+a.referencedSize-1}};return t+=n,i+=a.referencedSize,o})},QL=(s,e)=>{let i=new yi().parse(s),r=new Oi(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],l=o.source.byteOffset,p=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,p)},WL=s=>{let t=new yi().parse(s),i=new Oi(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},YL=s=>{let t=new yi().parse(s);return new Oi(t).find("sidx")?.timescale},KL=(s,e)=>{let i=new yi().parse(s),a=new Oi(i).findAll("traf"),n=a[a.length-1].children.find(p=>p.type==="tfhd"),o=a[a.length-1].children.find(p=>p.type==="tfdt"),u=a[a.length-1].children.find(p=>p.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((p,d)=>p+d,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},XL=s=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new yi().parse(s),r=new Oi(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},Pv={validateData:zL,parseInit:XL,getIndexRange:()=>{},parseSegments:GL,parseFeedableSegmentChunk:QL,getChunkEndTime:KL,getServerLatencyTimestamps:WL,getTimescaleFromIndex:YL};var Ca=q(wt(),1),Ti=require("@vkontakte/videoplayer-shared/es2024");var wv=require("@vkontakte/videoplayer-shared/es2024");var kv={440786851:{type:"master"},17030:{type:"uint"},17143:{type:"uint"},17138:{type:"uint"},17139:{type:"uint"},17026:{type:"string"},17031:{type:"uint"},17029:{type:"uint"},236:{type:"binary"},408125543:{type:"master"},290298740:{type:"master"},19899:{type:"master"},21419:{type:"binary"},21420:{type:"uint"},357149030:{type:"master"},2807729:{type:"uint"},17545:{type:"float"},374648427:{type:"master"},174:{type:"master"},224:{type:"master"},30320:{type:"master"},30321:{type:"uint"},30322:{type:"master"},272869232:{type:"master"},524531317:{type:"master"},231:{type:"uint"},22612:{type:"master"},22743:{type:"uint"},167:{type:"uint"},171:{type:"uint"},163:{type:"binary"},160:{type:"master"},175:{type:"binary"},423732329:{type:"master"},307544935:{type:"master"},475249515:{type:"master"},187:{type:"master"},179:{type:"uint"},183:{type:"master"},247:{type:"uint"},241:{type:"uint"},240:{type:"uint"},178:{type:"uint"},21368:{type:"uint"},234:{type:"uint"},219:{type:"master"},150:{type:"uint"}},Av=s=>{let e=s.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=Da(s,t),r=i in kv,a=r?kv[i].type:"binary",n=s.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(s.buffer,s.byteOffset+t+1,o-1),l=n&255>>o,c=Da(u),p=l*2**((o-1)*8)+c,d=t+o,h;return d+p>s.byteLength?h=new DataView(s.buffer,s.byteOffset+d):h=new DataView(s.buffer,s.byteOffset+d,p),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:d,tagSize:d+p,value:h,valueSize:p}},Da=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*2**16+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*2**32+s.getUint32(1);case 6:return s.getUint16(0)*2**32+s.getUint32(2);case 7:{let t=s.getUint8(0)*281474976710656+s.getUint16(1)*4294967296+s.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},zt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return Da(s);case"float":return s.byteLength===4?s.getFloat32(0):s.getFloat64(0);case"string":return new TextDecoder("ascii").decode(s);case"utf8":return new TextDecoder("utf-8").decode(s);case"date":return new Date(Date.UTC(2001,0)+s.getInt8(0)).getTime();case"master":return s;case"binary":return s;default:(0,wv.assertNever)(e)}},rr=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=Av(i);if(!e(r))return;r.type==="master"&&rr(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Rv=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=Av(s);return rr(r.value,({tag:a,type:n,value:o})=>(a===17143?e=zt(o,n):a===17026?t=zt(o,n):a===17029&&(i=zt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Lv=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],JL=[231,22612,22743,167,171,163,160,175],ZL=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,c=!1,p=0;return rr(s,({tag:d,type:h,value:m,valueSize:g})=>{if(d===21419){let y=zt(m,h);l=Da(y)}else d!==21420&&(l=void 0);return d===408125543?(e=m.byteOffset,t=m.byteOffset+g):d===357149030?a=!0:d===290298740?n=!0:d===2807729?i=zt(m,h):d===17545?r=zt(m,h):d===21420&&l===475249515?u=zt(m,h):d===374648427?rr(m,({tag:y,type:T,value:w})=>y===30321?(c=zt(w,T)===1,!1):!0):a&&n&&(0,Ca.default)(Lv,d)&&(o=!0),!o}),(0,Ti.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,Ti.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,Ti.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:c,stereoMode:p,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},eM=s=>{if((0,Ti.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},tM=(s,e)=>{let t=!1,i=!1,r=o=>(0,Ti.isNonNullable)(o.time)&&(0,Ti.isNonNullable)(o.position),a=[],n;return rr(s,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=zt(l,u));break;case 183:break;case 241:n&&(n.position=zt(l,u));break;default:t&&(0,Ca.default)(Lv,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:c}=o,p=a[u+1];return{status:"none",time:{from:l,to:p?p.time:e.segmentDuration},byte:{from:e.segmentStart+c,to:p?e.segmentStart+p.position-1:e.segmentEnd-1}}})},iM=s=>{let e=0,t=!1;try{rr(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,Ca.default)(JL,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||=(0,Ca.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},Mv={validateData:Rv,parseInit:ZL,getIndexRange:eM,parseSegments:tM,parseFeedableSegmentChunk:iM};var Va=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Mv;case"mp4":return Pv}}throw new ReferenceError(`Unsupported mime type ${s}`)};var wc=q(sc(),1),Nv=q(ji(),1),Uv=q(ac(),1),qv=q(Ht(),1),Ac=q(Ki(),1);var _a=require("@vkontakte/videoplayer-shared/es2024");var $v=s=>{try{let e=rM(),t=s.match(e),{groups:i}=t??{};if(i){let r={};if(i.extensions){let o=i.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(o||[]).forEach(u=>{r[u[0]]=u.slice(2)})}let a=i.variants?.split(/-/).filter(o=>o!==""),n={extlang:i.extlang,langtag:i.langtag,language:i.language,privateuse:i.privateuse||i.privateuse2,region:i.region,script:i.script,extensions:r,variants:a};return Object.keys(n).forEach(o=>{let u=n[o];(typeof u>"u"||u==="")&&delete n[o]}),n}return null}catch{return null}};function rM(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",c=`^(?:(?<langtag>${`
179
+ (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
180
+ (-(?<script>[a-z]{4}))?
181
+ (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
182
+ (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
183
+ (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
184
+ (?:-(?<privateuse>(?:${e})))?
185
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var xc=q(Ht(),1);var Bv=require("@vkontakte/videoplayer-shared/es2024"),Dv=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{let o=(a?Jt(a):void 0)??(0,Bv.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},Cv=({id:s,bitrate:e})=>({id:s,bitrate:e}),Vv=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Ov=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Ec=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,xc.default)(i.split("."),0),isDefault:r}),Pc=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,xc.default)(r.split("."),0)}),kc=s=>"url"in s,ct=s=>s.type==="template",Oa=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var _v=s=>{s.sort((t,i)=>t.from-i.from);let e=[s[0]];for(let t=1;t<s.length;t++){let{from:i,to:r}=s[t],a=e[e.length-1];a.to>=i?a.to=Math.max(a.to,r):e.push(s[t])}return e},sr=(s,e)=>{for(let t of s)if(e(t))return t;return null};var Fv=s=>{if(!s?.startsWith("P"))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(s),r=i?.[1]==="-"?-1:1,a={days:e(i?.[5],r),hours:e(i?.[6],r),minutes:e(i?.[7],r),seconds:e(i?.[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},Ii=(s,e)=>{let t=s;t=(0,wc.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,Nv.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,wc.default)(t,n,(o,u)=>(0,_a.isNullable)(a)?o:(0,_a.isNullable)(u)?a:(0,Uv.default)(a,parseInt(u,10),"0"))}return t},Hv=(s,e)=>{let i=new DOMParser().parseFromString(s,"application/xml"),r={video:[],audio:[],text:[]},a=i.children[0],n=Array.from(a.querySelectorAll("MPD > BaseURL").values()).map(D=>D.textContent?.trim()??""),o=(0,qv.default)(n,0)??"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),c=a.getAttribute("publishTime"),p=a.getElementsByTagName("vk:Attrs")[0],d=p?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=p?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,m=p?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,g=p?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,y;u&&(y={availabilityStartTime:l?new Date(l).getTime():0,publishTime:c?new Date(c).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:m==="yes"});let T,w=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],M=x.reduce((D,I)=>({...D,[I.id]:I.children}),{}),$=x.reduce((D,I)=>({...D,[I.id]:I.getAttribute("duration")}),{});w?T=Fv(w):(0,Ac.default)($).filter(D=>D).length&&!u?T=(0,Ac.default)($).reduce((D,I)=>D+(Fv(I)??0),0):g&&(T=parseInt(g,10));let F=0,Q=a.getAttribute("profiles")?.split(",")??[];for(let D of x.map(I=>I.id))for(let I of M[D]){let U=I.getAttribute("id")??"id"+(F++).toString(10),A=I.getAttribute("mimeType")??"",R=I.getAttribute("codecs")??"",V=I.getAttribute("contentType")??A?.split("/")[0],ge=I.getAttribute("profiles")?.split(",")??[],N=$v(I.getAttribute("lang")??"")??{},re=I.querySelector("Label")?.textContent?.trim()??void 0,ce=I.querySelectorAll("Representation"),Te=I.querySelector("SegmentTemplate"),Be=I.querySelector("Role")?.getAttribute("value")??void 0,Ie=V,de={id:U,language:N.language,isDefault:Be==="main",label:re,codecs:R,hdr:Ie==="video"&&Or(R),mime:A,representations:[]};for(let O of ce){let z=O.getAttribute("lang")??void 0,qe=re??I.getAttribute("label")??O.getAttribute("label")??void 0,De=O.querySelector("BaseURL")?.textContent?.trim()??"",he=new URL(De||o,e).toString(),Ve=O.getAttribute("mimeType")??A,bt=O.getAttribute("codecs")??R??"",it;if(V==="text"){let we=O.getAttribute("id")||"",gt=N.privateuse?.includes("x-auto")||we.includes("_auto"),Ue=O.querySelector("SegmentTemplate");if(Ue){let Ct={representationId:O.getAttribute("id")??void 0,bandwidth:O.getAttribute("bandwidth")??void 0},ri=parseInt(O.getAttribute("bandwidth")??"",10)/1e3,si=parseInt(Ue.getAttribute("startNumber")??"",10)??1,St=parseInt(Ue.getAttribute("timescale")??"",10),_i=Ue.querySelectorAll("SegmentTimeline S")??[],vt=Ue.getAttribute("media");if(!vt)continue;let ai=[],ni=0,oi="",yt=0,Vt=si,ue=0;for(let xe of _i){let rt=parseInt(xe.getAttribute("d")??"",10),fe=parseInt(xe.getAttribute("r")??"",10)||0,He=parseInt(xe.getAttribute("t")??"",10);ue=Number.isFinite(He)?He:ue;let st=rt/St*1e3,Tt=ue/St*1e3;for(let Re=0;Re<fe+1;Re++){let je=Ii(vt,{...Ct,segmentNumber:Vt.toString(10),segmentTime:(ue+Re*rt).toString(10)}),It=(Tt??0)+Re*st,_t=It+st;Vt++,ai.push({time:{from:It,to:_t},url:je})}ue+=(fe+1)*rt,ni+=(fe+1)*st}yt=ue/St*1e3,oi=Ii(vt,{...Ct,segmentNumber:Vt.toString(10),segmentTime:ue.toString(10)});let Ot={time:{from:yt,to:1/0},url:oi},Oe={type:"template",baseUrl:he,segmentTemplateUrl:vt,initUrl:"",totalSegmentsDurationMs:ni,segments:ai,nextSegmentBeyondManifest:Ot,timescale:St};it={id:we,kind:"text",segmentReference:Oe,profiles:[],duration:T,bitrate:ri,mime:"",codecs:"",width:0,height:0,isAuto:gt}}else it={id:we,isAuto:gt,kind:"text",url:he}}else{let we=O.getAttribute("contentType")??Ve?.split("/")[0]??V,gt=I.getAttribute("profiles")?.split(",")??[],Ue=parseInt(O.getAttribute("width")??"",10),Ct=parseInt(O.getAttribute("height")??"",10),ri=parseInt(O.getAttribute("bandwidth")??"",10)/1e3,si=O.getAttribute("frameRate")??"",St=O.getAttribute("quality")??void 0,_i=si?to(si):void 0,vt=O.getAttribute("id")??"id"+(F++).toString(10),ai=we==="video"?`${Ct}p`:we==="audio"?`${ri}Kbps`:bt,ni=`${vt}@${ai}`,oi=[...Q,...ge,...gt],yt,Vt=O.querySelector("SegmentBase"),ue=O.querySelector("SegmentTemplate")??Te;if(Vt){let Oe=O.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[xe,rt]=Oe.split("-").map(je=>parseInt(je,10)),fe={from:xe,to:rt},He=O.querySelector("SegmentBase")?.getAttribute("indexRange"),[st,Tt]=He?He.split("-").map(je=>parseInt(je,10)):[],Re=He?{from:st,to:Tt}:void 0;yt={type:"byteRange",url:he,initRange:fe,indexRange:Re}}else if(ue){let Oe={representationId:O.getAttribute("id")??void 0,bandwidth:O.getAttribute("bandwidth")??void 0},xe=parseInt(ue.getAttribute("timescale")??"",10),rt=ue.getAttribute("initialization")??"",fe=ue.getAttribute("media"),He=parseInt(ue.getAttribute("startNumber")??"",10)??1,st=Ii(rt,Oe);if(!fe)throw new ReferenceError("No media attribute in SegmentTemplate");let Tt=ue.querySelectorAll("SegmentTimeline S")??[],Re=[],je=0,It="",_t=0;if(Tt.length){let ui=He,Ee=0;for(let xt of Tt){let Le=parseInt(xt.getAttribute("d")??"",10),at=parseInt(xt.getAttribute("r")??"",10)||0,li=parseInt(xt.getAttribute("t")??"",10);Ee=Number.isFinite(li)?li:Ee;let Fi=Le/xe*1e3,Co=Ee/xe*1e3;for(let ci=0;ci<at+1;ci++){let Vo=Ii(fe,{...Oe,segmentNumber:ui.toString(10),segmentTime:(Ee+ci*Le).toString(10)}),zr=(Co??0)+ci*Fi,Oo=zr+Fi;ui++,Re.push({time:{from:zr,to:Oo},url:Vo})}Ee+=(at+1)*Le,je+=(at+1)*Fi}_t=Ee/xe*1e3,It=Ii(fe,{...Oe,segmentNumber:ui.toString(10),segmentTime:Ee.toString(10)})}else if((0,_a.isNonNullable)(T)){let Ee=parseInt(ue.getAttribute("duration")??"",10)/xe*1e3,xt=Math.ceil(T/Ee),Le=0;for(let at=1;at<xt;at++){let li=Ii(fe,{...Oe,segmentNumber:at.toString(10),segmentTime:Le.toString(10)});Re.push({time:{from:Le,to:Le+Ee},url:li}),Le+=Ee}_t=Le,It=Ii(fe,{...Oe,segmentNumber:xt.toString(10),segmentTime:Le.toString(10)})}let Do={time:{from:_t,to:1/0},url:It};yt={type:"template",baseUrl:he,segmentTemplateUrl:fe,initUrl:st,totalSegmentsDurationMs:je,segments:Re,nextSegmentBeyondManifest:Do,timescale:xe}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!we||!Ve)continue;let Ot={video:"video",audio:"audio",text:"text"}[we];if(!Ot)continue;Ie||=Ot,it={id:ni,kind:Ot,segmentReference:yt,profiles:oi,duration:T,bitrate:ri,mime:Ve,codecs:bt,width:Ue,height:Ct,fps:_i,quality:St}}de.language||=z,de.label||=qe,de.mime||=Ve,de.codecs||=bt,de.hdr||=Ie==="video"&&Or(bt),de.representations.push(it)}if(Ie){let O=r[Ie].find(z=>z.id===de.id);if(O&&de.representations.every(z=>ct(z.segmentReference)))for(let z of O.representations){let De=de.representations.find(Ve=>Ve.id===z.id)?.segmentReference,he=z.segmentReference;he.segments.push(...De.segments),he.nextSegmentBeyondManifest=De.nextSegmentBeyondManifest}else r[Ie].push(de)}}return{duration:T,streams:r,baseUrls:n,live:y}};var Fa=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new k.ValueSubject(0);this.currentLowLatencySegmentLength$=new k.ValueSubject(0);this.currentSegmentLength$=new k.ValueSubject(0);this.onLastSegment$=new k.ValueSubject(!1);this.fullyBuffered$=new k.ValueSubject(!1);this.playingRepresentation$=new k.ValueSubject(void 0);this.playingRepresentationInit$=new k.ValueSubject(void 0);this.error$=new k.Subject;this.gaps=[];this.subscription=new k.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new pe;this.switchAbortController=new pe;this.destroyAbortController=new pe;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=(0,k.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,k.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new Ev(this.sourceBuffer),this.subscription.add((0,k.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:k.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add((0,k.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:k.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!Z(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Dr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=Qe(this.sourceBuffer.buffered,o),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<c).catch(p=>{this.handleAsyncError(p,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);(0,k.assertNonNullable)(i,"No init buffer for starting representation"),(0,k.assertNonNullable)(r,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a))}.bind(this));this.switchTo=(0,k.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,k.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,k.isNullable)(a)||(0,k.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,k.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,k.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this));this.switchToOld=(0,k.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,k.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,k.isNullable)(a)||(0,k.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,k.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,k.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this));this.seekLive=(0,k.abortable)(this.destroyAbortController.signal,async function*(e){let t=(0,xo.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(d=>d.id===u);l&&this.representations.set(u,l);let c=this.representations.get(u);if(!c||!ct(c.segmentReference))return;let p=this.getActualLiveStartingSegments(c.segmentReference);this.segments.set(c.id,p)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);(0,k.assertNonNullable)(r);let a=this.segments.get(i);(0,k.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,k.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(a,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!l?.live,this.baseUrls=l?.baseUrls??[],this.initData=new Map(i.map(c=>[c.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(c=>[c.id,c])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new pe,(0,k.abortable)(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,k.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,k.isNullable)(o)||(0,k.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,k.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),r)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();(0,k.isNonNullable)(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!(0,k.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new pe,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,k.isNullable)(e)||(0,k.isNullable)(this.downloadingRepresentationId)||(0,k.isNullable)(this.playingRepresentationId)||(0,k.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,k.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,k.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(c=>e>=c.time.from&&e<c.time.to);(0,k.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next(r?.time.to-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let c=Qe(this.sourceBuffer.buffered,e),p=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=r.time.to-e+n&&(a=p)}if(isFinite(this.bufferLimit)&&Dr(this.sourceBuffer.buffered)>=this.bufferLimit){let c=Qe(this.sourceBuffer.buffered,e),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<p).catch(d=>{this.handleAsyncError(d,"pruneBuffer")});return}let u=null;if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u?.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,Io.default)(u,r))c="high";else{let p=(0,qr.default)(u,0);p&&p.time.from-r.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(p=>{this.handleAsyncError(p,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u?.length&&Qe(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,qr.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-Qe(this.sourceBuffer.buffered,e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r}),i=a.time.to;(0,k.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],a=0,n=t.length-1;do r.unshift(t[n]),a+=t[n].time.to-t[n].time.from,n--;while(a<i&&n>=0);return this.liveInitialAdditionalOffset=a-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,xo.default)(e?.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i?.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){let t=(0,xo.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!ct(i.segmentReference))return;let r=i.segmentReference.segments.map(l=>({...l,status:"none",size:void 0})),a=100,n=this.segments.get(i.id)??[],o=(0,qr.default)(n,-1)?.time.to??0,u=r?.findIndex(l=>o>=l.time.from+a&&o<=l.time.to+a);if(u===-1){this.liveUpdateSegmentIndex=0;let l=this.getActualLiveStartingSegments(i.segmentReference);this.segments.set(i.id,l)}else{let l=r.slice(u+1);this.segments.set(i.id,[...n,...l])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,k.assertNonNullable)(e);let t=this.segments.get(e);if(t?.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let r=i.segmentReference;if(!ct(r))return;let a=this.segments.get(i.id);if(!a)continue;let n=a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*r.timescale/1e3).toString(10),l=Ii(r.segmentTemplateUrl,{segmentTime:u});a.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);return i?i.find(a=>a.time.from<=e&&a.time.to>=e)?.time.from??void 0:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.sourceBufferTaskQueue?.destroy(),this.gapDetectionIdleCallback&&ti&&ti(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&ti&&ti(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name==="NotFoundError"))throw e}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){if(this.playingRepresentationId!==this.downloadingRepresentationId){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);this.liveUpdateSegmentIndex=i}return this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):null}selectForwardBufferSegmentsRecord(e,t,i){let r=e.findIndex(({status:p,time:{from:d,to:h}},m)=>{let g=d<=i&&h>=i,y=d>i||g||m===0&&i===0,T=Math.min(this.forwardBufferTarget,this.bufferLimit),w=this.preloadOnly&&d<=i+T||h<=i+T;return(p==="none"||p==="partially_ejected"&&y&&w&&this.sourceBuffer&&Z(this.mediaSource,this.sourceBuffer)&&!(tt(this.sourceBuffer.buffered,d)&&tt(this.sourceBuffer.buffered,h)))&&y&&w});if(r===-1)return null;if(t!=="byteRange")return e.slice(r,r+1);let a=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,c=this.preloadOnly?this.forwardBufferTarget:0;for(let p=r;p<a.length&&(n<=l||o<=c);p++){let d=a[p];if(n+=d.byte.to+1-d.byte.from,o+=d.time.to+1-d.time.from,d.status==="none"||d.status==="partially_ejected")u.push(d);else break}return u}async loadSegments(e,t,i="auto"){ct(t.segmentReference)?await this.loadTemplateSegment(e[0],t,i):await this.loadByteRangeSegments(e,t,i)}async loadTemplateSegment(e,t,i="auto"){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:a,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,k.abortable)(o,async function*(){let c=(0,k.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(p=>setTimeout(p,c))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,k.now)(),!c)return;let p=new DataView(c),d=Va(t.mime);if(!isFinite(r.segment.time.to)){let g=t.segmentReference.timescale;r.segment.time.to=d.getChunkEndTime(p,g)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(p,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:m}=d.getServerLatencyTimestamps(p);h&&m&&this.currentLiveSegmentServerLatency$.next(m-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),Oa(c)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())ct(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,i="auto"){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await(0,k.abortable)(n,async function*(){let u=(0,k.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,k.fromEvent)(window,"online").pipe((0,k.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(a,{range:r,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,k.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Oa(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(ct(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,qr.default)(e,0).byte.from,to:(0,qr.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:async(o,u)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,k.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:a,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!ct(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:a}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,c)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,k.now)();let p=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(p)}catch(p){this.error$.next({id:"SegmentFeeding",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:p})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Io.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(a.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),c=Va(n.mime).parseFeedableSegmentChunk(l,this.isLive);c?.byteLength&&(u.status="partially_fed",o.feedingBytes+=c.byteLength,await this.sourceBufferTaskQueue.append(c),o.fedBytes+=c.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){if(u.representationId!==t)continue;if(a.aborted){await n();continue}let{segment:l}=u,c=l.byte.from-i,p=l.byte.to-i,d=p-c+1,h=c<r,m=p<=r;if(h){if(l.status==="downloading"&&m){l.status="downloaded";let g=new DataView(e.buffer,e.byteOffset+c,d);await this.sourceBufferTaskQueue.append(g,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(d,r-c),u.loadedBytes>u.feedingBytes)){let g=new DataView(e.buffer,e.byteOffset+c+u.feedingBytes,u.loadedBytes-u.feedingBytes),y=u.loadedBytes===d?g:Va(o.mime).parseFeedableSegmentChunk(g);y?.byteLength&&(l.status="partially_fed",u.feedingBytes+=y.byteLength,await this.sourceBufferTaskQueue.append(y,a)&&!a.aborted?(u.fedBytes+=y.byteLength,u.fedBytes===d&&this.onSegmentFullyAppended(u,t)):await n())}}}}onSegmentFullyAppended(e,t){if(!((0,k.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer))){!this.isLive&&W.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(tt(this.sourceBuffer.buffered,e.segment.time.from,100)&&tt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",kc(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values()){if(i.id===t)continue;let r=this.segments.get(i.id);if(r)for(let a of r)a.status==="fed"&&Math.round(a.time.from)===Math.round(e.segment.time.from)&&Math.round(a.time.to)===Math.round(e.segment.time.to)&&(a.status="none")}this.isActiveLowLatency()&&this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,e.segment)}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,a]of this.initData.entries()){let n=a instanceof Promise;t||=n,a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Br(()=>(0,jv.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,k.abortable)(this.destroyAbortController.signal,async function*(){let o=(0,k.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Va(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:c}=o,p=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,p);let d=c;this.isLive&&ct(e.segmentReference)&&(d=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,d),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:k.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status="none";await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,i=!1){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,k.isNullable)(e))return!1;let r=[],a=0,n=o=>{if(a>=t)return;r.push({...o.time});let u=kc(o)?o.size??0:o.byte.to-o.byte.from;a+=u};for(let o of this.segments.values())for(let u of o){let l=u.time.to<=e-this.tuning.dash.bufferPruningSafeZone,c=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||c)&&u.status==="fed"&&n(u)}for(let o=0;o<this.sourceBuffer.buffered.length;o++){let u=this.sourceBuffer.buffered.start(o)*1e3,l=this.sourceBuffer.buffered.end(o)*1e3,c=0;for(let p of this.segments.values())for(let d of p)(0,Io.default)(["none","partially_ejected"],d.status)&&Math.round(d.time.from)<=Math.round(u)&&Math.round(d.time.to)>=Math.round(l)&&c++;if(c===this.segments.size){let p={time:{from:u,to:l},url:"",status:"none"};n(p)}}if(r.length&&i){let o=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let u of this.segments.values())for(let l of u)l.time.from>=e+o&&l.status==="fed"&&n(l)}return r.length?(r=_v(r),(await Promise.all(r.map(u=>this.sourceBufferTaskQueue.remove(u.from,u.to)))).reduce((u,l)=>u||l,!1)):!1}async abortBuffer(){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)}getDebugBufferState(){if(!(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getBufferedTo(){return!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length?null:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,k.isNullable)(e)?0:Qe(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))return;if(this.tuning.useRefactoredSearchGap)for(let r=0;r<this.sourceBuffer.buffered.length;r++)this.gaps=this.gaps.filter(a=>this.sourceBuffer&&(Math.round(a.from)<Math.round(this.sourceBuffer.buffered.start(r)*1e3)||Math.round(a.to)>Math.round(this.sourceBuffer.buffered.end(r)*1e3)));let i={representation:e,from:t.time.from,to:t.time.to};for(let r=0;r<this.sourceBuffer.buffered.length;r++){let a=this.sourceBuffer.buffered.start(r)*1e3,n=this.sourceBuffer.buffered.end(r)*1e3;if(!(n<=t.time.from||a>=t.time.to)){if(a<=t.time.from&&n>=t.time.to){i=void 0;break}n>t.time.from&&n<t.time.to&&(i.from=n),a<t.time.to&&a>t.time.from&&(i.to=a)}}i&&i.to-i.from>1&&!this.gaps.some(r=>i&&r.from===i.from&&r.to===i.to)&&this.gaps.push(i)}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Br(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:k.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,k.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,k.isNullable)(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let r=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),a=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:a})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:a}=r;if(a!=="fed"&&a!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(c=>c.from-t<=n&&c.to+t>=o),l=e.filter(c=>n>=c.from&&n<c.to-t||o>c.from+t&&o<=c.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(c=>c.from===r.time.from||c.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:k.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var J=require("@vkontakte/videoplayer-shared/es2024");var Po=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new J.ValueSubject(void 0);this.lastConnectionReused$=new J.ValueSubject(void 0);this.lastRequestFirstBytes$=new J.ValueSubject(void 0);this.recoverableError$=new J.Subject;this.error$=new J.Subject;this.abortAllController=new pe;this.subscription=new J.SubscriptionRemovable;this.fetchManifest=(0,J.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Di(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=ao(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Eo);return r?(t.log("success",(0,J.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,J.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=(0,J.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){let l=e,c=new Headers,p=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let A=new URL(l,location.href);A.searchParams.append("bytes",`${i.from}-${i.to}`),l=A.toString();break}default:(0,J.assertNever)(t)}this.requestQuic&&(l=Di(l));let d=this.abortAllController.signal,h;if(n){let A=new pe;if(h=(0,J.merge)((0,J.fromEvent)(this.abortAllController.signal,"abort"),(0,J.fromEvent)(n,"abort")).subscribe(()=>{try{A.abort()}catch(R){Eo(R)}}),this.abortAllController.signal.aborted||n.aborted)try{A.abort()}catch(R){Eo(R)}d=A.signal}let m=(0,J.now)();p.log("startRequest",(0,J.flattenObject)({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:m}));let g=yield this.doFetch(l,{priority:a,headers:c,signal:d}),y=(0,J.now)();if(!g)return p.error("error",{message:"No response in request"}),p.end(),this.unsubscribeAbortSubscription(h),null;if(this.throughputEstimator?.addRawRtt(y-m),!g.ok||!g.body){this.unsubscribeAbortSubscription(h);let A=`Fetch error ${g.status}: ${g.statusText}`;return p.error("error",{message:A}),p.end(),Promise.reject(new Error(`Fetch error ${g.status}: ${g.statusText}`))}if(this.onHeadersReceived(g.headers),!r&&!o){this.unsubscribeAbortSubscription(h);let A=(0,J.now)(),R={requestStartedAt:m,requestEndedAt:A,duration:A-m};return p.log("endRequest",(0,J.flattenObject)(R)),p.end(),g.arrayBuffer()}let T=g.body;if(o){let A;[T,A]=g.body.tee(),this.throughputEstimator?.trackStream(A,u)}let w=T.getReader(),x,M=parseInt(g.headers.get("content-length")??"",10);Number.isFinite(M)&&(x=M),!x&&i&&(x=i.to-i.from+1);let $=0,F=x?new Uint8Array(x):new Uint8Array(0),Q=!1,B=A=>{this.unsubscribeAbortSubscription(h),Q=!0,Eo(A)},D=(0,J.abortable)(d,async function*({done:A,value:R}){if($===0&&this.lastRequestFirstBytes$.next((0,J.now)()-m),d.aborted){this.unsubscribeAbortSubscription(h);return}if(!A&&R){if(x)F.set(R,$),$+=R.byteLength;else{let V=new Uint8Array(F.length+R.length);V.set(F),V.set(R,F.length),F=V,$+=R.byteLength}r?.(new DataView(F.buffer),$),yield w?.read().then(D,B)}}.bind(this));yield w?.read().then(D,B),this.unsubscribeAbortSubscription(h);let I=(0,J.now)(),U={failed:Q,requestStartedAt:m,requestEndedAt:I,duration:I-m};return Q?(p.error("endRequest",(0,J.flattenObject)(U)),p.end(),null):(p.log("endRequest",(0,J.flattenObject)(U)),p.end(),F.buffer)}.bind(this));this.fetchByteRangeRepresentation=(0,J.abortable)(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(c,a))),n=Math.min(n,0);let p=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!p)return null;let d=new DataView(p,r-n,a-n+1);if(!t.validateData(d))throw new Error("Invalid media file");let h=t.parseInit(d),m=e.indexRange??t.getIndexRange(h);if(!m)throw new ReferenceError("No way to load representation index");let g;if(u)g=new DataView(p,m.from-n,m.to-m.from+1);else{let T=yield this.fetch(e.url,{range:m,priority:i,measureThroughput:!1});if(!T)return null;g=new DataView(T)}let y=t.parseSegments(g,h,m);return{init:h,dataView:new DataView(p),segments:y}}.bind(this));this.fetchTemplateRepresentation=(0,J.abortable)(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});return r?{init:null,segments:e.segments.map(n=>({...n,status:"none",size:void 0})),dataView:new DataView(r)}:null}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a}onHeadersReceived(e){let{type:t,reused:i}=so(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}async fetchRepresentation(e,t,i="auto"){let{type:r}=e;switch(r){case"byteRange":return await this.fetchByteRangeRepresentation(e,t,i)??null;case"template":return await this.fetchTemplateRepresentation(e,i)??null;default:(0,J.assertNever)(r)}}destroy(){this.abortAllController.abort(),this.tracer.end(),this.subscription.unsubscribe()}async doFetch(e,t){let i=await Bt(e,t);if(i.ok)return i;let r=await i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:J.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:J.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:J.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:J.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:J.ErrorCategory.FATAL})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},Eo=s=>{if(!Oa(s))throw s};var ko=require("@vkontakte/videoplayer-shared/es2024");var Na=class s{constructor(e,t){this.currentRepresentation$=new ko.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!(0,ko.isNullable)(e))for(let t of this.representations)for(let i of t){let r=i.segmentReference,a=r.segments.length,n=r.segments[0].time.from,o=r.segments[a-1].time.to;if(e<n||e>o)continue;let u=r.segments.find(l=>l.time.from<=e&&l.time.to>=e);!u||this.currentSegment?.time.from===u.time.from&&this.currentSegment.time.to===u.time.to||(this.currentSegment=u,this.currentRepresentation$.next({...i,label:"Live Text",language:"ru",isAuto:!0,url:new URL(u.url,r.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let i=s.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(t=>s.filterRepresentations(t.representations))}static filterRepresentations(e){return e?.filter(t=>t.kind==="text"&&"segmentReference"in t&&ct(t.segmentReference))}};var nM=["timeupdate","progress","play","seeked","stalled","waiting"],oM=["timeupdate","progress","loadeddata","playing","seeked"];var wo=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new S.Subscription;this.representationSubscription=new S.Subscription;this.state$=new K("none");this.currentVideoRepresentation$=new S.ValueSubject(void 0);this.currentVideoRepresentationInit$=new S.ValueSubject(void 0);this.currentAudioRepresentation$=new S.ValueSubject(void 0);this.currentVideoSegmentLength$=new S.ValueSubject(0);this.currentAudioSegmentLength$=new S.ValueSubject(0);this.error$=new S.Subject;this.lastConnectionType$=new S.ValueSubject(void 0);this.lastConnectionReused$=new S.ValueSubject(void 0);this.lastRequestFirstBytes$=new S.ValueSubject(void 0);this.currentLiveTextRepresentation$=new S.ValueSubject(null);this.isLive$=new S.ValueSubject(!1);this.isActiveLive$=new S.ValueSubject(!1);this.isLowLatency$=new S.ValueSubject(!1);this.liveDuration$=new S.ValueSubject(0);this.liveSeekableDuration$=new S.ValueSubject(0);this.liveAvailabilityStartTime$=new S.ValueSubject(0);this.liveStreamStatus$=new S.ValueSubject(void 0);this.bufferLength$=new S.ValueSubject(0);this.liveLatency$=new S.ValueSubject(void 0);this.liveLoadBufferLength$=new S.ValueSubject(0);this.livePositionFromPlayer$=new S.ValueSubject(0);this.currentStallDuration$=new S.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new S.ValueSubject(0);this.fetcherRecoverableError$=new S.Subject;this.fetcherError$=new S.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new S.Subject;this.gapWatchdogActive=!1;this.destroyController=new pe;this.initManifest=(0,S.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=$e(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:S.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,S.abortable)(this.destroyController.signal,async function*(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(n=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:S.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=Hv(e??"",this.manifestUrlString)}catch(n){let o=eo(e)??{id:"ManifestParsing",category:S.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:n};this.error$.next(o)}if(!t)return null;let i=(n,o,u)=>!!(this.element?.canPlayType?.(o)&&Rt()?.isTypeSupported?.(`${o}; codecs="${u}"`)||n==="text");if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:n,latestSegmentPublishTime:o,streamIsUnpublished:u,streamIsAlive:l}=t.live,c=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*c),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";l||(p=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:p,codecs:d})=>i(n,p,d)),l=new Set(u.map(({codecs:p})=>p)),c=mo(l);if(c&&(r[n]=u.filter(({codecs:p})=>p.startsWith(c))),n==="video"){let p=this.tuning.preferHDR,d=r.video.some(m=>m.hdr),h=r.video.some(m=>!m.hdr);W.display.isHDR&&p&&d?r.video=r.video.filter(m=>m.hdr):h&&(r.video=r.video.filter(m=>!m.hdr))}}let a={...t,streams:r};return this.tracer.log("updateManifestEnd",(0,S.flattenObject)(a)),a}.bind(this));this.initRepresentations=(0,S.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",(0,S.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,S.assertNonNullable)(this.manifest),(0,S.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new S.Subscription,this.state$.startTransitionTo("representations_ready");let r=d=>{this.representationSubscription.add((0,S.fromEvent)(d,"error").pipe((0,S.filter)(h=>!!this.element?.played.length)).subscribe(h=>{this.error$.next({id:"VideoSource",category:S.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?Fn():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&kr())if(i){let d=document.createElement("source");r(d),d.type="application/x-mpegurl",d.src=i.url,this.element.appendChild(d)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((d,h)=>[...d,...h.representations],[]);if(this.videoBufferManager=new Fa("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,S.isNonNullable)(t)){let d=this.manifest.streams.audio.reduce((h,m)=>[...h,...m.representations],[]);this.audioBufferManager=new Fa("audio",this.source,d,n),this.bufferManagers.push(this.audioBufferManager)}Na.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Na(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,S.merge)(...oM.map(d=>(0,S.fromEvent)(this.element,d))).pipe((0,S.map)(d=>this.element?Qe(this.element.buffered,this.element.currentTime*1e3):0),(0,S.filterChanged)(),(0,S.tap)(d=>{d>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,S.merge)((0,S.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,S.filterChanged)()).subscribe(h=>this.liveStreamEndTimestamp=(0,S.now)())),this.subscription.add((0,S.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,S.interval)(1e3).subscribe(h=>{let m=Ai(this.manifestUrlString,2);this.manifestUrlString=$e(this.manifestUrlString,m+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,S.fromEvent)(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add((0,S.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,S.map)(({isActiveLive:h,isLowLatency:m})=>h&&m),(0,S.filterChanged)()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Fr(this.element,1)})),this.representationSubscription.add((0,S.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,S.filter)(({bufferLength:h,isActiveLive:m,isLowLatency:g})=>m&&g&&!!h)).subscribe(({bufferLength:h})=>this.liveBuffer.next(h))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(h=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!h)return;let m=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(m,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+h/1e3)})),this.representationSubscription.add((0,S.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,S.filter)(({isLive:h})=>h),(0,S.filterChanged)((h,m)=>m.bufferLength<h.bufferLength),(0,S.map)(({rtt:h,bufferLength:m,segmentServerLatency:g})=>{let y=Ai(this.manifestUrlString,2);return(h/2+m+g+y)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,S.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:m,isLowLatency:g})=>{if(!g||!m)return;let y=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,T=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,w=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,x=h-y;if(this.isManualDecreasePlaybackInLive())return;let M=1;Math.abs(x)>T&&(M=1+Math.sign(x)*w),Fr(this.element,M)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{let m=0;if(h){let g=(this.element?.currentTime??0)*1e3;m=Math.min(...this.bufferManagers.map(T=>T.getLiveSegmentsToLoadState(this.manifest)?.to??g))-g}this.liveLoadBufferLength$.getValue()!==m&&this.liveLoadBufferLength$.next(m)}));let d=0;this.representationSubscription.add((0,S.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,S.throttle)(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:m})=>{if(!this.element||this.isUpdatingLive)return;let g=this.element.playbackRate,y=Ai(this.manifestUrlString,2),T=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,w=Math.min(T,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*g),x=this.tuning.dashCmafLive.normalizedActualBufferOffset*g,M=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*g,$=isFinite(h)?h:m,F=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),Q=T<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(Q);let B="none";if(F?B="active_low_latency":this.isLowLatency$.getValue()&&Q?(this.bufferManagers.forEach(D=>D.proceedLowLatencyLive()),B="active_low_latency"):y!==0&&$<w?B="live_forward_buffering":$<w+M&&(B="live_with_target_offset"),isFinite(h)&&(d=h>d?h:d),B==="live_forward_buffering"||B==="live_with_target_offset"){let D=d-(w+x),I=this.normolizeLiveOffset(Math.trunc(y+D/g)),U=Math.abs(I-y),A=0;!h||U<=this.tuning.dashCmafLive.offsetCalculationError?A=y:I>0&&U>this.tuning.dashCmafLive.offsetCalculationError&&(A=I),this.manifestUrlString=$e(this.manifestUrlString,A,2)}(B==="live_with_target_offset"||B==="live_forward_buffering")&&(d=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:S.ErrorCategory.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=(0,S.merge)(...this.bufferManagers.map(d=>d.fullyBuffered$)).pipe((0,S.map)(()=>this.bufferManagers.every(d=>d.fullyBuffered$.getValue()))),c=(0,S.merge)(...this.bufferManagers.map(d=>d.onLastSegment$)).pipe((0,S.map)(()=>this.bufferManagers.some(d=>d.onLastSegment$.getValue()))),p=(0,S.combine)({allBuffersFull:l,someBufferEnded:c}).pipe((0,S.filterChanged)(),(0,S.map)(({allBuffersFull:d,someBufferEnded:h})=>d&&h),(0,S.filter)(d=>d));if(this.representationSubscription.add((0,S.merge)(this.forceEnded$,p).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(d=>!d.updating))try{this.source?.endOfStream()}catch(d){this.error$.next({id:"EndOfStream",category:S.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:d})}})),this.representationSubscription.add((0,S.merge)(...this.bufferManagers.map(d=>d.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let d=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((h,m)=>{d&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){h();return}this.tuning.dash.rejectOnSourceOpenTimeout?m(new Error("Timeout reject when wait sourceopen event")):h()},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),h()},{once:!0})})}if(!this.isLive$.getValue()){let d=[this.manifest.duration??0,...(0,Mc.default)((0,Mc.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let m=[];return h.duration&&m.push(h.duration),ct(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&m.push(h.segmentReference.totalSegmentsDurationMs),m})];this.source.duration=Math.max(...d)/1e3}this.audioBufferManager&&(0,S.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.tick=()=>{if(!this.element||!this.videoBufferManager||this.source?.readyState!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),this.audioBufferManager?.maintain(e),this.liveTextManager?.maintain(e),(this.videoBufferManager.gaps.length||this.audioBufferManager?.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,S.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:S.ErrorCategory.WTF,message:"Error handling gaps",thrown:t})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new Po({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.liveBuffer=vi.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){(0,S.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,S.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=$e(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.videoBufferManager?.seekLive(this.manifest.streams.video),await this.audioBufferManager?.seekLive(this.manifest.streams.audio),this.liveTextManager?.seekLive(this.manifest.streams.text))}initBuffer(){(0,S.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,S.merge)(...nM.map(e=>(0,S.fromEvent)(this.element,e)),(0,S.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:S.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,S.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,S.fromEvent)(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&tt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{if(!this.element||this.source?.readyState!=="open")return;let t=this.currentStallDuration$.getValue();t+=50,this.currentStallDuration$.next(t);let i={timeInWaiting:t},r=(0,S.now)(),a=100,n=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(n);let o=this.audioBufferManager?.lastDataObtainedTimestamp??0,u=this.videoBufferManager?.getForwardBufferDuration()??0,l=this.audioBufferManager?.getForwardBufferDuration()??0,c=u<a&&r-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,p=this.audioBufferManager&&l<a&&r-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||p)&&t>this.tuning.dash.crashOnStallTWithoutDataTimeout||t>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${t} ms`);if(this.isLive$.getValue()&&t%2e3===0){let d=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(d).catch(h=>{this.error$.next({id:"stallIntervalCallback",category:S.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:h})}),i.liveLastOffset=d}else{let d=this.element.currentTime*1e3;this.videoBufferManager?.maintain(d),this.audioBufferManager?.maintain(d),i.position=d}this.tracer.log("stallIntervalCallback",(0,S.flattenObject)(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=(0,S.interval)(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:S.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:t})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,i=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r?.switchToWithPreviousAbort(t,i):r?.switchTo(t,i):r?.switchToOld(t,i)}async seek(e,t){(0,S.assertNonNullable)(this.element),(0,S.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(i),tt(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!((0,S.isNullable)(this.element)||(0,S.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,S.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){(0,S.isNonNullable)(this.element)&&(0,S.isNonNullable)(this.source)&&(0,S.isNonNullable)(e)&&this.source?.readyState==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(t=>t.warmUpMediaSource())}get isStreamEnded(){return this.source?.readyState==="ended"}stop(){this.tracer.log("stop"),this.element?.querySelectorAll("source").forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){return this.manifest?.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),this.source?.readyState==="open"&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,S.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers?.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getBufferedTo();if(e===null)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue();this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let i=this.element.currentTime*1e3,r=null,a=this.element.readyState===HTMLMediaElement.HAVE_METADATA?this.tuning.endGapTolerance:0;for(let n of this.bufferManagers)for(let o of n.gaps)n.playingRepresentation$.getValue()===o.representation&&o.from-a<=i&&o.to+a>i&&(this.element.duration*1e3-o.to<this.tuning.endGapTolerance?r=1/0:(r===null||o.to>r)&&(r=o.to));if(r!==null){let n=r+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,n===1/0?this.forceEnded$.next():(this.element.currentTime=n/1e3,this.tracer.log("jumpGap",(0,S.flattenObject)({isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime,jumpTo:n,resultCurrentTime:this.element.currentTime})))}}};var mt=require("@vkontakte/videoplayer-shared/es2024"),Ao=class{constructor(){this.subscription=new mt.Subscription;this.pipSize$=new mt.ValueSubject(void 0);this.videoSize$=new mt.ValueSubject(void 0);this.elementSize$=new mt.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=mt.noop}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add((0,mt.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:r})=>{this.pipSize$.next({width:r.width,height:r.height}),r.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{r.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,mt.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,mt.map)(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var ar=class{constructor(e){this.subscription=new ie.Subscription;this.videoState=new K("stopped");this.droppedFramesManager=new Lr;this.stallsManager=new yo;this.elementSizeManager=new Ao;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Mi;this.audioTrackSwitchHistory=new Mi;this.selectedRepresentations={audio:null,video:null};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&C(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,ie.assertNever)(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new Nr(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new pt(e.source.url),this.params=e,this.video=Ke(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new wo({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=Ze(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,a=o=>{e.error$.next({id:r,category:ie.ErrorCategory.WTF,message:`${r} internal logic error`,thrown:o})};return{output:e,desiredState:t,observableVideo:i,genericErrorListener:a,connect:(o,u)=>this.subscription.add(o.subscribe(u,a))}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:a}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,ie.filter)(l=>!!l.length),(0,ie.once)()).subscribe(l=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,ie.map)(l=>l.to.state!=="none"),(0,ie.filterChanged)());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:i.isBuffering$,looped$:i.looped$,playing$:i.playing$}),a(i.ended$,e.endedEvent$),a(i.looped$,e.loopedEvent$),a(i.error$,e.error$),a(i.isBuffering$,e.isBuffering$),a(i.currentBuffer$,e.currentBuffer$),a(i.playing$,e.firstFrameEvent$),a(i.canplay$,e.canplay$),a(i.inPiP$,e.inPiP$),a(i.inFullscreen$,e.inFullscreen$),a(i.loadedMetadata$,e.loadedMetadataEvent$),a(this.player.error$,e.error$),a(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),a(this.player.fetcherError$,e.fetcherError$),a(this.player.lastConnectionType$,e.httpConnectionType$),a(this.player.lastConnectionReused$,e.httpConnectionReused$),a(this.player.isLive$,e.isLive$),a(this.player.lastRequestFirstBytes$.pipe((0,ie.filter)(ie.isNonNullable),(0,ie.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,ie.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add($t(this.video,t.isLooped,r)),this.subscription.add(Je(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(dt(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(ht(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let c=this.player.getStreams();if((0,ie.assertNonNullable)(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let d=[];for(let h of c.audio){d.push(Ec(h));let m=[];for(let g of h.representations){let y=Cv(g);m.push(y),this.audioTracksMap.set(y,{stream:h,representation:g})}this.audioStreamsMap.set(h,m)}this.params.output.availableAudioStreams$.next(d)}let p=[];for(let d of c.video){p.push(Pc(d));let h=[];for(let m of d.representations){let g=Dv({...m,streamId:d.id});g&&(h.push(g),this.videoTracksMap.set(g,{stream:d,representation:m}))}this.videoStreamsMap.set(d,h)}this.params.output.availableVideoStreams$.next(p);for(let d of c.text)for(let h of d.representations){let m=Vv(d,h);this.textTracksMap.set(m,{stream:d,representation:h})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r)),this.subscription.add((0,ie.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,t.videoStream.stateChangeStarted$,t.audioStream.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,ie.fromEvent)(this.video,"progress")).subscribe(async()=>{let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(l!=="manifest_ready"&&l!=="running"||c)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:p,audio:d}=this.selectedRepresentations;if(!p)return;let h=sr(this.videoTracksMap.keys(),g=>this.videoTracksMap.get(g)?.representation.id===p.id);(0,ie.isNonNullable)(h)&&(this.stallsManager.lastVideoTrackSelected=h);let m=this.params.desiredState.autoVideoTrackLimits.getTransition();if(m&&this.params.output.autoVideoTrackLimits$.next(m.to),l==="manifest_ready")await this.player.initRepresentations(p.id,d?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",p.id),d){let g=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",d.id,g)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,ie.filterChanged)()).subscribe(l=>{let c=sr(this.videoTracksMap.entries(),([,{representation:m}])=>m.id===l);if(!c){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(Pc(d))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,ie.filterChanged)()).subscribe(l=>{let c=sr(this.audioTracksMap.entries(),([,{representation:m}])=>m.id===l);if(!c){e.currentAudioStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(Ec(d))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{if(l?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(c){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${c}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe((0,ie.map)(({to:l})=>l==="ready"),(0,ie.filterChanged)());this.subscription.add((0,ie.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,ie.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add((0,ie.merge)(o,this.player.state$.stateChangeEnded$,(0,ie.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,ie.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ie.observableFrom)(["init"])).pipe((0,ie.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ts:ys,t=this.params.tuning.useNewAutoSelectVideoTrack?Yn:Wn,i=this.params.tuning.useNewAutoSelectVideoTrack?Zt:Qn,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,u=sr(this.videoTracksMap.keys(),B=>B.id===o),l=a.currentVideoTrack$.getValue(),c=r.videoStream.getState()??(u&&this.videoTracksMap.get(u)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!c)return;let p=sr(this.videoStreamsMap.keys(),B=>B.id===c.id),d=p&&this.videoStreamsMap.get(p);if(!d)return;let h=Qe(this.video.buffered,this.video.currentTime*1e3),m;this.player.isActiveLive$.getValue()?m=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?m=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:m=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let g=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,y=Math.min(h/Math.min(m,g||1/0),1),T=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),w=T?.id&&sr(this.audioStreamsMap.keys(),B=>B.id===T.id)||this.audioStreamsMap.keys().next().value,x=0;if(w){if(u&&!n){let B=e(u,d,this.audioStreamsMap.get(w)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,B?.bitrate??-1/0)}if(l){let B=e(l,d,this.audioStreamsMap.get(w)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,B?.bitrate??-1/0)}}let M=u;(n||!M)&&(M=i(d,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:x,forwardBufferHealth:y,current:l,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let $=w&&t(M,d,this.audioStreamsMap.get(w)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:y,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),F=this.videoTracksMap.get(M)?.representation,Q=$&&this.audioTracksMap.get($)?.representation;F&&Q?(this.selectedRepresentations.video=F,this.selectedRepresentations.audio=Q):F&&!Q&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=F,this.selectedRepresentations.audio=null)}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ie.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Xe(this.video),this.tracer.end()}};var Ua=class extends ar{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var be=require("@vkontakte/videoplayer-shared/es2024");var qa=class extends ar{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),a(i.timeUpdate$,t.liveBufferTime$),a(this.player.liveSeekableDuration$,t.duration$),a(this.player.liveLatency$,t.liveLatency$);let n=new be.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,be.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,be.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,be.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,be.filter)(o=>(0,be.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,be.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,be.merge)(i.playbackRateState$,new be.ValueSubject(1))}).pipe((0,be.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;c||u<1-p||this.video.paused||(0,be.isNullable)(l)||(e=o-l)})).add((0,be.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,be.merge)(i.playbackRateState$,new be.ValueSubject(1))}).pipe((0,be.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!c&&!this.video.paused&&l>=1-p||(0,be.isNullable)(o)||(0,be.isNullable)(u))return;let d=-1*(u-o-e);t.position$.next(Math.min(d,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=Ov(o);this.params.output.availableTextTracks$.next([u])}}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var Gv=q(gs(),1);var ae=require("@vkontakte/videoplayer-shared/es2024"),Gt={};var Hr=(s,e)=>new ae.Observable(t=>{let i=(r,a)=>t.next(a);return s.on(e,i),()=>s.off(e,i)}),Ha=class{constructor(e){this.subscription=new ae.Subscription;this.videoState=new K("initializing");this.trackLevels=new Map;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(e!=="initializing")switch(i?.to!=="paused"&&r.state==="requested"&&this.seek(r.position),t){case"stopped":switch(e){case"stopped":break;case"ready":case"playing":case"paused":this.stop();break;default:(0,ae.assertNever)(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:(0,ae.assertNever)(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:(0,ae.assertNever)(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:(0,ae.assertNever)(e)}break;default:(0,ae.assertNever)(t)}};this.textTracksManager=new pt(e.source.url),this.video=Ke(e.container,e.tuning),this.params=e,this.params.output.element$.next(this.video),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ne(this.params.source.url)),this.loadHlsJs()}destroy(){this.subscription.unsubscribe(),this.trackLevels.clear(),this.textTracksManager.destroy(),this.hls?.detachMedia(),this.hls?.destroy(),this.params.output.element$.next(void 0),Xe(this.video)}loadHlsJs(){let e=!1,t=r=>{e||this.params.output.error$.next({id:r==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:ae.ErrorCategory.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,Gv.default)(import("hls.js").then(r=>{e||(Gt.Hls=r.default,Gt.Events=r.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){(0,ae.assertNonNullable)(Gt.Hls,"hls.js not loaded"),this.hls=new Gt.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){(0,ae.assertNonNullable)(Gt.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:ae.ErrorCategory.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=Ze(this.video);this.subscription.add(()=>r.destroy());let a=(l,c)=>this.subscription.add(l.subscribe(c,i));a(r.timeUpdate$,t.position$),a(r.durationChange$,t.duration$),a(r.ended$,t.endedEvent$),a(r.looped$,t.loopedEvent$),a(r.error$,t.error$),a(r.isBuffering$,t.isBuffering$),a(r.currentBuffer$,t.currentBuffer$),a(r.loadStart$,t.firstBytesEvent$),a(r.loadedMetadata$,t.loadedMetadataEvent$),a(r.playing$,t.firstFrameEvent$),a(r.canplay$,t.canplay$),a(r.seeked$,t.seekedEvent$),a(r.inPiP$,t.inPiP$),a(r.inFullscreen$,t.inFullscreen$),this.subscription.add($t(this.video,e.isLooped,i)),this.subscription.add(Je(this.video,e.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(dt(this.video,e.playbackRate,r.playbackRateState$,i)),a(ht(this.video),t.elementVisible$),a(this.videoState.stateChangeEnded$.pipe((0,ae.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(Hr(this.hls,Gt.Events.ERROR).subscribe(l=>{l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:ae.ErrorCategory.WTF,message:`HlsJs fatal ${l.type} ${l.details}, ${l.err?.message} ${l.reason}`,thrown:l.error})})),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(e.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(e.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),a(Hr(this.hls,Gt.Events.MANIFEST_PARSED).pipe((0,ae.map)(({levels:l})=>l.reduce((c,p)=>{let d=p.name||p.height.toString(10),{width:h,height:m}=p,g=Jt(p.attrs.QUALITY??"")??(0,ae.videoSizeToQuality)({width:h,height:m});if(!g)return c;let y=p.attrs["FRAME-RATE"]?parseFloat(p.attrs["FRAME-RATE"]):void 0,T={id:d.toString(),quality:g,bitrate:p.bitrate/1e3,size:{width:h,height:m},fps:y};return this.trackLevels.set(d,{track:T,level:p}),c.push(T),c},[]))),t.availableVideoTracks$),a(Hr(this.hls,Gt.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let c=[];for(let p of l.subtitleTracks){let d=p.name,h=p.attrs.URI||"",m=p.lang;c.push({id:d,url:h,language:m,type:"internal"})}e.internalTextTracks.startTransitionTo(c)}}),a(Hr(this.hls,Gt.Events.LEVEL_LOADING).pipe((0,ae.map)(({url:l})=>Ne(l))),t.hostname$),a(Hr(this.hls,Gt.Events.FRAG_CHANGED),l=>{let{video:c,audio:p}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next(((c?.endPTS??0)-(c?.startPTS??0))*1e3),t.currentAudioSegmentLength$.next(((p?.endPTS??0)-(p?.startPTS??0))*1e3)}),this.subscription.add(Li(e.autoVideoTrackSwitching,()=>this.hls.autoLevelEnabled,l=>{this.hls.nextLevel=l?-1:this.hls.currentLevel,this.hls.loadLevel=l?-1:this.hls.loadLevel},{onError:i}));let n=l=>Array.from(this.trackLevels.values()).find(({level:c})=>c===l)?.track,o=Hr(this.hls,Gt.Events.LEVEL_SWITCHED).pipe((0,ae.map)(({level:l})=>n(this.hls.levels[l])));o.pipe((0,ae.filter)(ae.isNonNullable)).subscribe(t.currentVideoTrack$,i),this.subscription.add(Li(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{if((0,ae.isNullable)(l))return;let c=this.trackLevels.get(l.id)?.level;if(!c)return;let p=this.hls.levels.indexOf(c),d=this.hls.currentLevel,h=this.hls.levels[d];!h||c.bitrate>h.bitrate?this.hls.nextLevel=p:(this.hls.loadLevel=p,this.hls.loadLevel=p)},{changed$:o,onError:i})),a(r.progress$,()=>{this.params.dependencies.throughputEstimator.addRawThroughput(this.hls.bandwidthEstimate/1e3)}),this.textTracksManager.connect(this.video,e,t);let u=(0,ae.merge)(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ae.observableFrom)(["init"])).pipe((0,ae.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,i))}prepare(){this.videoState.startTransitionTo("ready"),this.hls.attachMedia(this.video),this.hls.loadSource(this.params.source.url)}async playIfAllowed(){this.videoState.startTransitionTo("playing"),await et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ae.ErrorCategory.DOM,thrown:t}))||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))}pause(){this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}stop(){this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.hls.stopLoad(),this.hls.detachMedia(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0)}};var Qv="X-Playback-Duration",$c=async s=>{let e=await Bt(s),t=await e.text(),i=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t)?.[1];return i?parseInt(i,10):e.headers.has(Qv)?parseInt(e.headers.get(Qv),10):void 0};var se=require("@vkontakte/videoplayer-shared/es2024");var Dc=q(qu(),1);var Ro=require("@vkontakte/videoplayer-shared/es2024");var lM=s=>{let e=null;if(s.QUALITY&&(e=Jt(s.QUALITY)),!e&&s.RESOLUTION){let[t,i]=s.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,Ro.videoSizeToQuality)({width:t,height:i})}return e??null},cM=(s,e)=>{let t=s.split(`
186
+ `),i=[],r=[];for(let a=0;a<t.length;a++){let n=t[a],o=n.match(/^#EXT-X-STREAM-INF:(.+)/),u=n.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!o&&!u)){if(o){let l=(0,Dc.default)(o[1].split(",").map(y=>y.split("="))),c=l.QUALITY??`stream-${l.BANDWIDTH}`,p=lM(l),d;l.BANDWIDTH&&(d=parseInt(l.BANDWIDTH,10)/1e3||void 0),!d&&l["AVERAGE-BANDWIDTH"]&&(d=parseInt(l["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let h=l["FRAME-RATE"]?parseFloat(l["FRAME-RATE"]):void 0,m;if(l.RESOLUTION){let[y,T]=l.RESOLUTION.split("x").map(w=>parseInt(w,10));y&&T&&(m={width:y,height:T})}let g=new URL(t[++a],e).toString();p&&i.push({id:c,quality:p,url:g,bandwidth:d,size:m,fps:h})}if(u){let l=(0,Dc.default)(u[1].split(",").map(h=>{let m=h.indexOf("=");return[h.substring(0,m),h.substring(m+1)]}).map(([h,m])=>[h,m.replace(/^"|"$/g,"")])),c=l.URI?.replace(/playlist$/,"subtitles.vtt"),p=l.LANGUAGE,d=l.NAME;c&&p&&r.push({type:"internal",id:p,label:d,language:p,url:c,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},dM=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),Bc=0,Wv=async(s,e=s,t,i)=>{let a=await(await Bt(s,i)).text();Bc+=1;try{let{qualityManifests:n,textTracks:o}=cM(a,e);return{qualityManifests:n,textTracks:o}}catch{if(Bc<=t.manifestRetryMaxCount)return await dM((0,Ro.getExponentialDelay)(Bc-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),Wv(s,e,t)}return{qualityManifests:[],textTracks:[]}},Lo=Wv;var Mt=require("@vkontakte/videoplayer-shared/es2024");var Mo=class{constructor(e,t,i,r,a){this.subscription=new Mt.Subscription;this.abortControllers={destroy:new pe,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new Mt.ValueSubject(null);this.getCurrentTime$=new Mt.ValueSubject(null);this.error$=new Mt.Subject;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe((0,Mt.throttle)(1e3)).subscribe(n=>{this.processLiveTime(n)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+t.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}async prepare(e){try{let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),this.prepareUrl=t.toString();let{textTracks:i}=await this.fetchManifestData();await this.processTextTracks(i,this.params.sourceUrl)}catch(t){this.error("prepare",t)}}async processTextTracks(e,t){try{let i=await this.parseTextTracks(e,t);i&&(this.currentTextTrackData=i)}catch(i){this.error("processTextTracks",i)}}async parseTextTracks(e,t){for(let i of e){let r=new URL(i.url,t).toString(),n=await(await Bt(r,{signal:this.abortControllers.destroy.signal})).text(),o=this.parsePlaylist(n,r);return{textTrack:i,playlist:o}}}parsePlaylist(e,t){let i={mediaSequence:0,programDateTime:"",segments:[],targetDuration:0,vkPlaybackDuration:0,segmentStartTime:0,vkStartTime:""},r=e.split(`
187
+ `),a=0;for(let n=0;n<r.length;++n){let o=r[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=r[++n],l=new URL(u,t).toString(),c=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:a,to:a+c},url:l}),a=a+c,!i.segmentStartTime){let p=new Date(i.vkStartTime).valueOf(),d=new Date(i.programDateTime).valueOf();i.segmentStartTime=d-p}break}case o.startsWith("#EXT-X-TARGETDURATION:"):i.targetDuration=Number(this.extractPlaylistRowValue("#EXT-X-TARGETDURATION:",o));break;case o.startsWith("#EXT-X-MEDIA-SEQUENCE:"):i.mediaSequence=Number(this.extractPlaylistRowValue("#EXT-X-MEDIA-SEQUENCE:",o));break;case o.startsWith("#EXT-X-VK-PLAYBACK-DURATION:"):i.vkPlaybackDuration=Number(this.extractPlaylistRowValue("#EXT-X-VK-PLAYBACK-DURATION:",o));break;case o.startsWith("#EXT-X-PROGRAM-DATE-TIME:"):{let u=this.extractPlaylistRowValue("#EXT-X-PROGRAM-DATE-TIME:",o);i.programDateTime=u;let l=new Date(u);l.setMilliseconds(0),a=l.valueOf();break}case o.startsWith("#EXT-X-VK-START-TIME:"):i.vkStartTime=this.extractPlaylistRowValue("#EXT-X-VK-START-TIME:",o);break}}return i}extractPlaylistRowValue(e,t){switch(e){case"#EXTINF:":return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if((0,Mt.isNonNullable)(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:i}=t[0].time,{to:r}=t[t.length-1].time;if(e<i||e>r)return;r-e<this.params.downloadThreshold&&this.fetchNextManifestData();for(let n of t)if(n.time.from<=e&&n.time.to>=e){this.availableTextTracks$.next([{...this.currentTextTrackData.textTrack,url:n.url,isAuto:!0}]);break}}}async fetchNextManifestData(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new pe;let{textTracks:e}=await this.fetchManifestData(),t=await this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error("fetchNextManifestData",e)}finally{this.abortControllers.nextManifest=null}}async fetchManifestData(){let e=this.prepareUrl??this.params.sourceUrl;return await this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:Mt.ErrorCategory.WTF,thrown:t,message:e})}};var ja=class{constructor(e){this.subscription=new se.Subscription;this.videoState=new K("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new se.ValueSubject([]);this.liveOffset=new Xi;this.manifestStartTime$=new se.ValueSubject(void 0);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if(r?.to!=="paused"&&l.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(l.position&&l.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?C(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),C(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.video.paused?this.videoState.setState("paused"):this.video.pause()):r?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let c=this.liveOffset.getTotalOffset();c>=this.maxSeekBackTime$.getValue()&&(c=0,this.liveOffset.resetTo(c)),this.liveOffset.resume(),this.params.output.position$.next(-c/1e3),this.prepare()}else r?.to==="paused"&&(C(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,se.assertNever)(t)}};this.params=e,this.video=Ke(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:se.VideoQuality.INVARIANT,url:this.params.source.url};let t=(i,r)=>Lo(i,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},r);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new Mo(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new pt(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:i,textTracks:r})=>{i.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:se.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),this.liveTextManager?.processTextTracks(r,this.params.source.url),this.manifests$.next([this.masterManifest,...i])}).catch(i=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:se.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:i})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new se.ValueSubject(e.source.maxSeekBackTime??1/0),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=r?.to?.id??t.getState()?.id??"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(u=>u.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:se.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=Ze(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u,i));a(r.ended$,e.endedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(Je(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(dt(this.video,t.playbackRate,r.playbackRateState$,i)),a(ht(this.video),e.elementVisible$),this.liveTextManager?(a(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),a(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.liveTextManager&&this.subscription.add(this.liveTextManager.availableTextTracks$.subscribe(o=>{o&&this.params.output.availableTextTracks$.next(o)})),this.subscription.add(this.maxSeekBackTime$.pipe((0,se.filterChanged)(),(0,se.map)(o=>-o/1e3)).subscribe(this.params.output.duration$,i)),this.subscription.add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,se.isNonNullable)(l.to)){let p=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let d=this.manifests$.getValue().find(h=>h.id===p);d&&(this.params.output.currentVideoTrack$.next(d),this.params.output.hostname$.next(Ne(d.url)))}c&&this.params.desiredState.autoVideoTrackSwitching.setState(c.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o&&o.state==="requested"&&this.seek(o.position)},i)),this.subscription.add(r.loadedData$.subscribe(()=>{let o=this.video?.getStartDate?.()?.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,se.combine)({startTime:this.manifestStartTime$.pipe((0,se.filter)(se.isNonNullable)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe((0,se.map)(o=>o.map(({id:u,quality:l,size:c,bandwidth:p,fps:d})=>({id:u,quality:l,size:c,fps:d,bitrate:p})))).subscribe(this.params.output.availableVideoTracks$,i));let n=(0,se.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,se.observableFrom)(["init"])).pipe((0,se.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager?.destroy(),this.liveTextManager?.destroy(),this.params.output.element$.next(void 0),Xe(this.video)}prepare(){let e=this.selectManifest();if((0,se.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:o,min:u}=t?.to??i??{};for(let[l,c]of[[o,"mq"],[u,"lq"]]){let p=String(parseFloat(l||""));c&&l&&r.searchParams.set(c,p)}}let a=this.params.format==="HLS_LIVE_CMAF"?2:0,n=$e(r.toString(),this.liveOffset.getTotalOffset(),a);this.liveTextManager?.prepare(n),this.video.setAttribute("src",n),this.video.load(),$c(n).then(o=>{if(!(0,se.isNullable)(o))this.maxSeekBackTime$.next(o);else{let u=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();((0,se.isNullable)(u)||!isFinite(u))&&Bt(n).then(l=>l.text()).then(l=>{let c=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(l)?.[1];if(c){let p=new URL(c,n).toString();$c(p).then(d=>{(0,se.isNullable)(d)||this.maxSeekBackTime$.next(d)})}}).catch(()=>{})}})}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:se.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(i),this.params.output.position$.next(-i/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=$e(this.params.source.url);if(this.params.tuning.useHlsLiveNewTextManager){let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),e=t.toString()}return e}};var le=require("@vkontakte/videoplayer-shared/es2024");var za=class{constructor(e){this.subscription=new le.Subscription;this.videoState=new K("stopped");this.manifests$=new le.ValueSubject([]);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c);let{currentTime:p}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:p*1e3,forcePrecise:!0});return}switch(r?.to!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?C(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):r?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):r?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,le.assertNever)(t)}};this.textTracksManager=new pt(e.source.url),this.params=e,this.video=Ke(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:le.VideoQuality.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),Lo($e(this.params.source.url),this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount}).then(({qualityManifests:t,textTracks:i})=>{this.manifests$.next([this.masterManifest,...t]),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:le.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=r?.to?.id??t.getState()?.id??"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&(!r||!r.from)&&t.startTransitionTo(this.masterManifest),n.find(u=>u.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:le.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},r=Ze(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u));if(a(r.timeUpdate$,e.position$),a(r.durationChange$,e.duration$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.seeked$,e.seekedEvent$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),a(this.videoState.stateChangeEnded$.pipe((0,le.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add($t(this.video,t.isLooped,i)),this.subscription.add(Je(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(dt(this.video,t.playbackRate,r.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,le.isNonNullable)(l.to)){let h=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let m=this.manifests$.getValue().find(g=>g.id===h);m&&(this.params.output.currentVideoTrack$.next(m),this.params.output.hostname$.next(Ne(m.url)))}let p=this.params.desiredState.playbackRate.getState(),d=this.params.output.element$.getValue()?.playbackRate;if(p!==d){let h=this.params.output.element$.getValue();h&&(this.params.desiredState.playbackRate.setState(p),h.playbackRate=p)}c&&this.params.desiredState.autoVideoTrackSwitching.setState(c.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.subscription.add(this.manifests$.pipe((0,le.map)(o=>o.map(({id:u,quality:l,size:c,bandwidth:p,fps:d})=>({id:u,quality:l,size:c,fps:d,bitrate:p})))).subscribe(this.params.output.availableVideoTracks$,i)),!W.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,le.merge)((0,le.fromEvent)(o,"addtrack"),(0,le.fromEvent)(o,"removetrack"),(0,le.fromEvent)(o,"change"),(0,le.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,le.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,le.observableFrom)(["init"])).pipe((0,le.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Xe(this.video)}prepare(){let e=this.selectManifest();if((0,le.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:a,min:n}=t?.to??i??{};for(let[o,u]of[[a,"mq"],[n,"lq"]]){let l=String(parseFloat(o||""));u&&o&&r.searchParams.set(u,l)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:le.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var Yv=q(ji(),1),Cc=q(Ki(),1),Kv=q(Ht(),1);var ye=require("@vkontakte/videoplayer-shared/es2024");var Ga=class{constructor(e){this.subscription=new ye.Subscription;this.videoState=new K("stopped");this.trackUrls={};this.textTracksManager=new pt;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(a&&e!=="ready"&&!n){this.handleQualityLimitTransition(a.to);return}if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(n){let{currentTime:u}=this.video;this.prepare(),o.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:u*1e3,forcePrecise:!0});return}switch(i?.to!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?C(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,ye.assertNever)(e)}};this.params=e,this.video=Ke(e.container,e.tuning),this.params.output.element$.next(this.video),(0,Yv.default)(this.params.source).reverse().forEach(([t,i],r)=>{let a=r.toString(10);this.trackUrls[a]={track:{quality:t,id:a},url:i}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next((0,Cc.default)(this.trackUrls).map(({track:t})=>t)),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.desiredState.autoVideoTrackSwitching.setState(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.subscribe()}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"MpegProvider",category:ye.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},r=Ze(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u,i));a(r.timeUpdate$,e.position$),a(r.durationChange$,e.duration$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.seeked$,e.seekedEvent$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),a(this.videoState.stateChangeEnded$.pipe((0,ye.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add($t(this.video,t.isLooped,i)),this.subscription.add(Je(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(dt(this.video,t.playbackRate,r.playbackRateState$,i)),a(ht(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,ye.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let u=this.params.desiredState.playbackRate.getState(),l=this.params.output.element$.getValue()?.playbackRate;if(u!==l){let c=this.params.output.element$.getValue();c&&(this.params.desiredState.playbackRate.setState(u),c.playbackRate=u)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=(0,ye.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,ye.observableFrom)(["init"])).pipe((0,ye.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Xe(this.video)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;(0,ye.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,ye.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=Di(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(Ne(t))}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ye.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){this.params.output.autoVideoTrackLimits$.next(e);let t=l=>{this.params.output.currentVideoTrack$.next(l),this.params.desiredState.videoTrack.startTransitionTo(l)},i=l=>{let c=Zt(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:l,abrLogger:this.params.dependencies.abrLogger});t(c)},r=this.params.output.currentVideoTrack$.getValue()?.quality,a=!!(e.max||e.min),n=(0,Cc.default)(this.trackUrls).map(l=>l.track);if(!r||!a||wr(e,n[0].quality,(0,Kv.default)(n,-1)?.quality)){i();return}let o=e.max?(0,ye.isLowerOrEqual)(r,e.max):!0,u=e.min?(0,ye.isHigherOrEqual)(r,e.min):!0;o&&u||i(e)}};var ke=require("@vkontakte/videoplayer-shared/es2024");var Jv=require("@vkontakte/videoplayer-shared/es2024"),Xv=["stun:videostun.mycdn.me:80"],pM=1e3,hM=3,Vc=()=>null,$o=class{constructor(e,t){this.ws=null;this.peerConnection=null;this.serverUrl="";this.streamKey="";this.stream=null;this.signalingType="JOIN";this.retryCount=0;this.externalStartCallback=Vc;this.externalStopCallback=Vc;this.externalErrorCallback=Vc;this.options=this.normalizeOptions(t);let i=e.split("/");this.serverUrl=i.slice(0,i.length-1).join("/"),this.streamKey=i[i.length-1]}onStart(e){try{this.externalStartCallback=e}catch(t){this.handleSystemError(t)}}onStop(e){try{this.externalStopCallback=e}catch(t){this.handleSystemError(t)}}onError(e){try{this.externalErrorCallback=e}catch(t){this.handleSystemError(t)}}connect(){this.connectWS()}disconnect(){try{this.externalStopCallback(),this.closeConnections()}catch(e){this.handleSystemError(e)}}connectWS(){this.ws||(this.ws=new WebSocket(this.serverUrl),this.ws.onopen=this.onSocketOpen.bind(this),this.ws.onmessage=this.onSocketMessage.bind(this),this.ws.onclose=this.onSocketClose.bind(this),this.ws.onerror=this.onSocketError.bind(this))}onSocketOpen(){this.handleLogin()}onSocketClose(e){try{if(!this.ws)return;this.ws=null,e.code>1e3?(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():this.scheduleRetry()):this.externalStopCallback()}catch(t){this.handleRTCError(t)}}onSocketError(e){try{this.externalErrorCallback(new Error(e.toString()))}catch(t){this.handleRTCError(t)}}onSocketMessage(e){try{let t=this.parseMessage(e.data);switch(t.type){case"JOIN":case"CALL_JOIN":this.handleJoinMessage(t);break;case"UPDATE":this.handleUpdateMessage(t);break;case"STATUS":this.handleStatusMessage(t);break}}catch(t){this.handleRTCError(t)}}handleJoinMessage(e){switch(e.inviteType){case"ANSWER":this.handleAnswer(e.sdp);break;case"CANDIDATE":this.handleCandidate(e.candidate);break}}handleStatusMessage(e){switch(e.status){case"UNPUBLISHED":this.handleUnpublished();break}}async handleUpdateMessage(e){try{let t=await this.createOffer();this.peerConnection&&await this.peerConnection.setLocalDescription(t),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}}async handleLogin(){try{let e={iceServers:[{urls:Xv}]};this.peerConnection=new RTCPeerConnection(e),this.peerConnection.ontrack=this.onPeerConnectionStream.bind(this),this.peerConnection.onicecandidate=this.onPeerConnectionIceCandidate.bind(this),this.peerConnection.oniceconnectionstatechange=this.onPeerConnectionIceConnectionStateChange.bind(this);let t=await this.createOffer();await this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}}async handleAnswer(e){try{this.peerConnection&&await this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e}))}catch(t){this.handleRTCError(t)}}async handleCandidate(e){if(e)try{this.peerConnection&&await this.peerConnection.addIceCandidate(e)}catch(t){this.handleRTCError(t)}}handleUnpublished(){try{this.closeConnections(),this.externalStopCallback()}catch(e){this.handleRTCError(e)}}handleSystemError(e){this.options.errorChanel&&this.options.errorChanel.next({id:"webrtc-provider-error",category:Jv.ErrorCategory.WTF,message:e.message})}async onPeerConnectionStream(e){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:"CANDIDATE",candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;["failed","closed"].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}async createOffer(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=await this.peerConnection.createOffer(e),i=t.sdp||"";if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(i))throw new Error("No h264 codec support error");return t}handleRTCError(e){try{this.externalErrorCallback(e||new Error("RTC connection error"))}catch(t){this.handleSystemError(t)}}handleNetworkError(){try{this.externalErrorCallback(new Error("Network error"))}catch(e){this.handleSystemError(e)}}send(e){this.ws&&this.ws.send(JSON.stringify(e))}parseMessage(e){try{return JSON.parse(e)}catch{throw new Error("Can not parse socket message")}}closeConnections(){let e=this.ws;e&&(this.ws=null,e.close(1e3)),this.removePeerConnection()}removePeerConnection(){let e=this.peerConnection;e&&(this.peerConnection=null,e.close(),e.ontrack=null,e.onicecandidate=null,e.oniceconnectionstatechange=null,e=null)}scheduleRetry(){this.retryTimeout=setTimeout(this.connectWS.bind(this),pM)}normalizeOptions(e={}){let t={stunServerList:Xv,maxRetryNumber:hM,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var Qa=class{constructor(e){this.videoState=new K("stopped");this.maxSeekBackTime$=new ke.ValueSubject(0);this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.pause(),this.video.srcObject=null,this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,ke.assertNever)(e)}};this.subscription=new ke.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Ke(e.container,e.tuning),this.liveStreamClient=new $o(this.params.source.url,{maxRetryNumber:this.params.tuning.webrtc.connectionRetryMaxNumber,errorChanel:this.params.output.error$}),this.liveStreamClient.onStart(this.onLiveStreamStart.bind(this)),this.liveStreamClient.onStop(this.onLiveStreamStop.bind(this)),this.liveStreamClient.onError(this.onLiveStreamError.bind(this)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.subscribe()}destroy(){this.subscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),Xe(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:ke.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,ke.merge)(this.videoState.stateChangeStarted$.pipe((0,ke.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,ke.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=Ze(this.video);this.subscription.add(()=>r.destroy());let a=(n,o)=>this.subscription.add(n.subscribe(o,i));a(r.timeUpdate$,e.liveTime$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(ht(this.video),this.params.output.elementVisible$),this.subscription.add(r.durationChange$.subscribe(n=>{e.duration$.next(n===1/0?0:n)})).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused")},i)).add(r.playing$.subscribe(()=>{this.videoState.setState("playing")},i)).add(r.error$.subscribe(e.error$)).add(this.maxSeekBackTime$.subscribe(this.params.output.duration$)).add(Je(this.video,t.volume,r.volumeState$,i)).add(r.volumeState$.subscribe(e.volume$,i)).add(this.videoState.stateChangeEnded$.subscribe(n=>{switch(n.to){case"stopped":e.position$.next(0),e.duration$.next(0),t.playbackState.setState("stopped");break;case"ready":break;case"paused":t.playbackState.setState("paused");break;case"playing":t.playbackState.setState("playing");break;default:return(0,ke.assertNever)(n.to)}},i)).add((0,ke.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,ke.observableFrom)(["init"])).pipe((0,ke.debounce)(0)).subscribe(this.syncPlayback.bind(this),i)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),i))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:"webrtc",quality:ke.VideoQuality.INVARIANT}),this.video.srcObject=e,C(this.params.desiredState.playbackState,"playing")}onLiveStreamStop(){this.videoState.startTransitionTo("stopped"),this.syncPlayback(),this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:"WebRTC stream runtime error",category:ke.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ke.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var Wa=class{constructor(e){this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next()}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}};var E=require("@vkontakte/videoplayer-shared/es2024");var xi=require("@vkontakte/videoplayer-shared/es2024"),Zv=s=>new xi.Observable(e=>{let t=new xi.Subscription,i=s.desiredPlaybackState$.stateChangeStarted$.pipe((0,xi.map)(({from:l,to:c})=>`${l}-${c}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe((0,xi.map)(({type:l})=>l!==void 0)),n=new xi.Subject,o=0,u="unknown";return t.add(i.subscribe(l=>{o&&window.clearTimeout(o),u=l,o=window.setTimeout(()=>n.next(l),s.maxTransitionInterval)})),t.add(r.subscribe(()=>{window.clearTimeout(o),u="unknown",o=0})),t.add(a.subscribe(l=>{o&&(window.clearTimeout(o),o=0,l&&(o=window.setTimeout(()=>n.next(u),s.maxTransitionInterval)))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var Dt=require("@vkontakte/videoplayer-shared/es2024");function ey(){return new(window.AudioContext||window.webkitAudioContext)}var jr=class s{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new pe;this.subscriptions=new Dt.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,Dt.filter)(a=>!!a.type),(0,Dt.once)()).subscribe(({type:a})=>this.subscribe(a)))}static{this.errorId="VolumeMultiplierManager"}subscribe(e){W.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,Dt.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,Dt.filter)(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),(0,Dt.once)()).subscribe(({video:t})=>{this.initAudioContextOnce(t).then(i=>{i||this.destroy()}).catch(i=>{this.handleError(i),this.destroy()})}))}static isSupported(){return"AudioContext"in window&&"GainNode"in window&&"MediaElementAudioSourceNode"in window}async initAudioContextOnce(e){let{volumeMultiplier:t}=this,i=ey();this.audioContext=i;let r=i.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(i.destination),i.state==="suspended"&&(await i.resume(),this.destroyController.signal.aborted))return!1;let a=i.createMediaElementSource(e);return this.mediaElementSource=a,a.connect(r),!0}cleanup(){this.mediaElementSource&&(this.mediaElementSource.disconnect(),this.mediaElementSource=null),this.gainNode&&(this.gainNode.disconnect(),this.gainNode=null),this.audioContext&&(this.audioContext.state!=="closed"&&this.audioContext.close(),this.audioContext=null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){this.volumeMultiplierError$.next({id:s.errorId,category:Dt.ErrorCategory.VIDEO_PIPELINE,message:e?.message??`${s.errorId} exception`,thrown:e})}};var fM={chunkDuration:5e3,maxParallelRequests:5},Ya=class{constructor(e){this.current$=new E.ValueSubject({type:void 0});this.providerError$=new E.Subject;this.noAvailableProvidersError$=new E.Subject;this.volumeMultiplierError$=new E.Subject;this.providerOutput={position$:new E.ValueSubject(0),duration$:new E.ValueSubject(1/0),volume$:new E.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new E.ValueSubject([]),currentVideoStream$:new E.ValueSubject(void 0),availableVideoTracks$:new E.ValueSubject([]),currentVideoTrack$:new E.ValueSubject(void 0),availableAudioStreams$:new E.ValueSubject([]),currentAudioStream$:new E.ValueSubject(void 0),availableAudioTracks$:new E.ValueSubject([]),currentVideoSegmentLength$:new E.ValueSubject(0),currentAudioSegmentLength$:new E.ValueSubject(0),isAudioAvailable$:new E.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new E.ValueSubject(!1),autoVideoTrackLimits$:new E.ValueSubject(void 0),currentBuffer$:new E.ValueSubject(void 0),isBuffering$:new E.ValueSubject(!0),error$:new E.Subject,fetcherError$:new E.Subject,fetcherRecoverableError$:new E.Subject,warning$:new E.Subject,willSeekEvent$:new E.Subject,soundProhibitedEvent$:new E.Subject,seekedEvent$:new E.Subject,loopedEvent$:new E.Subject,endedEvent$:new E.Subject,firstBytesEvent$:new E.Subject,loadedMetadataEvent$:new E.Subject,firstFrameEvent$:new E.Subject,canplay$:new E.Subject,isLive$:new E.ValueSubject(void 0),isLiveEnded$:new E.ValueSubject(null),isLowLatency$:new E.ValueSubject(!1),canChangePlaybackSpeed$:new E.ValueSubject(!0),liveTime$:new E.ValueSubject(void 0),liveBufferTime$:new E.ValueSubject(void 0),liveLatency$:new E.ValueSubject(void 0),severeStallOccurred$:new E.Subject,availableTextTracks$:new E.ValueSubject([]),currentTextTrack$:new E.ValueSubject(void 0),hostname$:new E.ValueSubject(void 0),httpConnectionType$:new E.ValueSubject(void 0),httpConnectionReused$:new E.ValueSubject(void 0),inPiP$:new E.ValueSubject(!1),inFullscreen$:new E.ValueSubject(!1),element$:new E.ValueSubject(void 0),elementVisible$:new E.ValueSubject(!0),availableSources$:new E.ValueSubject(void 0),is3DVideo$:new E.ValueSubject(!1),playbackState$:new E.ValueSubject(""),getCurrentTime$:new E.ValueSubject(null)};this.subscription=new E.Subscription;this.volumeMultiplierManager=null;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ProviderContainer"),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name);let t=fv([...bv(this.params.tuning),...mv(this.params.tuning)],this.params.tuning).filter(l=>(0,E.isNonNullable)(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(l=>!(0,Oc.default)(r,l)),...t.filter(l=>(0,Oc.default)(r,l))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",(0,E.flattenObject)(a)),this.screenFormatsIterator=new Wa(a);let n=[...bc(!0),...bc(!1)];this.chromecastFormatsIterator=new Wa(n.filter(l=>(0,E.isNonNullable)(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&jr.isSupported()&&(this.volumeMultiplierManager=new jr(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){this.subscription.add(this.initProviderErrorHandling()),this.subscription.add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()}))}destroy(){this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),this.volumeMultiplierManager?.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if((0,E.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:E.ErrorCategory.WTF,message:"Failed to create provider",thrown:r})}i?this.current$.next({type:t,provider:i,destination:e}):this.current$.next({type:void 0})}reinitProvider(){this.tracer.log("reinitProvider"),this.destroyProvider(),this.initProvider()}switchToNextProvider(e){this.tracer.log("switchToNextProvider",{destination:e}),this.destroyProvider(),this.failoverIndex=void 0,this.skipFormat(e),this.initProvider()}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:"destroyProvider"}),this.tracer.log("destroyProvider"),e.destroy();let t=this.providerOutput.position$.getValue()*1e3,i=this.params.desiredState.seekState.getState(),r=i.state!=="none";if(this.params.desiredState.seekState.setState({state:"requested",position:r?i.position:t,forcePrecise:r?i.forcePrecise:!1}),e.scene3D){let n=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:n.x,y:n.y})}let a=this.providerOutput.isBuffering$;a.getValue()||a.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log("createProvider",{destination:e,format:t}),e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return(0,E.assertNever)(e)}}createScreenProvider(e){let{sources:t,container:i,desiredState:r,panelSize:a}=this.params,n=this.providerOutput,o={container:i,source:null,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:a};switch(e){case"DASH_SEP":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_ONDEMAND":case"DASH_STREAMS":{let u=this.applyFailoverHost(t[e]),l=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);return(0,E.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new Ua({...o,source:u,sourceHls:l}):new la({...o,source:u,sourceHls:l})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new qa({...o,source:u}):new ca({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),W.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new za({...o,source:u}):new Ha({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new ja({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new Ga({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new Tg({...o,source:u,config:{...fM,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new Qa({container:i,source:u,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,E.assertNever)(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:r,meta:a}=this.params,n=this.providerOutput,o=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,E.assertNonNullable)(o),new Ss({connection:o,meta:a,container:i,source:t,format:e,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}chooseDestination(){return this.params.dependencies.chromecastInitializer.connection$.getValue()?"CHROMECAST":"SCREEN"}chooseFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.isCompleted()?void 0:this.screenFormatsIterator.getValue();case"CHROMECAST":return this.chromecastFormatsIterator.isCompleted()?void 0:this.chromecastFormatsIterator.getValue();default:return(0,E.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,E.assertNever)(e)}}handleNoFormatsError(e){switch(e){case"SCREEN":this.noAvailableProvidersError$.next(this.params.tuning.forceFormat),this.current$.next({type:void 0});return;case"CHROMECAST":this.params.dependencies.chromecastInitializer.disconnect();return;default:return(0,E.assertNever)(e)}}applyFailoverHost(e){if(this.failoverIndex===void 0)return e;let t=this.params.failoverHosts[this.failoverIndex];if(!t)return e;let i=r=>{let a=new URL(r);return a.host=t,a.toString()};if(e===void 0)return e;if("type"in e){if(e.type==="raw")return e;if(e.type==="url")return{...e,url:i(e.url)}}return(0,iy.default)((0,ty.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new E.Subscription,t=!1,i=0;return e.add((0,E.merge)(this.providerOutput.error$.pipe((0,E.filter)(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),Zv({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,E.map)(r=>({id:`ProviderHangup:${r}`,category:E.ErrorCategory.WTF,message:`A ${r} transition failed to complete within reasonable time`})))).subscribe(this.providerError$)),e.add(this.providerOutput.fetcherError$.subscribe(this.providerError$)),e.add(this.current$.subscribe(()=>{t=!1;let r=this.params.desiredState.playbackState.transitionEnded$.pipe((0,E.filter)(({to:a})=>a==="playing"),(0,E.once)()).subscribe(()=>t=!0);e.add(r)})),e.add(this.providerError$.subscribe(r=>{let a=this.current$.getValue().destination,n={error:r,currentDestination:a};if(a==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let o=r.category===E.ErrorCategory.NETWORK,u=r.category===E.ErrorCategory.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),c=i<this.params.tuning.providerErrorLimit&&!u,p=l&&!u&&(o&&t||!c);n={...n,isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:p,canReinitProvider:c},c?(i++,this.reinitProvider()):p?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(a??"SCREEN"))}this.tracer.error("providerError",(0,E.flattenObject)(n))})),e}};var Y=require("@vkontakte/videoplayer-shared/es2024");var mM=5e3,ry="one_video_throughput",sy="one_video_rtt",Ka=window.navigator.connection,ay=()=>{let s=Ka?.downlink;if((0,Y.isNonNullable)(s)&&s!==10)return s*1e3},ny=()=>{let s=Ka?.rtt;if((0,Y.isNonNullable)(s)&&s!==3e3)return s},oy=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},_c=class s{constructor(e){this.subscription=new Y.Subscription;this.concurrentDownloads=new Set;this.tuningConfig=e;let t=s.load(ry)||(e.useBrowserEstimation?ay():void 0)||mM,i=s.load(sy)??(e.useBrowserEstimation?ny():void 0)??0;if(this.throughput$=new Y.ValueSubject(t),this.rtt$=new Y.ValueSubject(i),this.rttAdjustedThroughput$=new Y.ValueSubject(oy(t,i,e.rttPenaltyRequestSize)),this.throughput=vi.getSmoothedValue(t,-1,e),this.rtt=vi.getSmoothedValue(i,1,e),e.useBrowserEstimation){let r=()=>{let n=ay();n&&this.throughput.next(n);let o=ny();(0,Y.isNonNullable)(o)&&this.rtt.next(o)};Ka&&"onchange"in Ka&&this.subscription.add((0,Y.fromEvent)(Ka,"change").subscribe(r)),r()}this.subscription.add(this.throughput.smoothed$.subscribe(r=>{Y.safeStorage.set(ry,r.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(r=>{Y.safeStorage.set(sy,r.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,Y.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,Y.map)(({throughput:r,rtt:a})=>oy(r,a,e.rttPenaltyRequestSize)),(0,Y.filter)(r=>{let a=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(r-a)/a>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=(0,Y.now)(),r=new Y.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,Y.fromEvent)(e,"progress").pipe((0,Y.once)()).subscribe(a=>{t=a.loaded,i=(0,Y.now)()}));break;case 1:case 0:r.add((0,Y.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,Y.now)()}));break}r.add((0,Y.fromEvent)(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=(0,Y.now)(),u=n-t,l=o-i;this.addRawSpeed(u,l,1)}this.concurrentDownloads.delete(e),r.unsubscribe()}))}trackStream(e,t=!1){let i=e.getReader();if(!i){e.cancel("Could not get reader");return}let r=0,a=(0,Y.now)(),n=0,o=(0,Y.now)(),u=c=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${c}`).catch(()=>{})},l=async({done:c,value:p})=>{if(c)!t&&this.addRawSpeed(r,(0,Y.now)()-a,1),this.concurrentDownloads.delete(e);else if(p){if(t){let d=(0,Y.now)();if(d-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||d-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let m=o-a;m&&this.addRawSpeed(n,m,1,t),n=p.byteLength,a=(0,Y.now)()}else n+=p.byteLength;o=(0,Y.now)()}else r+=p.byteLength,n+=p.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,Y.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,Y.now)()-o,this.concurrentDownloads.size),n=0,o=(0,Y.now)());await i?.read().then(l,u)}};this.concurrentDownloads.add(e),i?.read().then(l,u)}addRawSpeed(e,t,i=1,r=!1){if(s.sanityCheck(e,t,r)){let a=e*8/t;this.throughput.next(a*i)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,i=!1){let r=e*8/t;return!(!r||!isFinite(r)||r>1e6||r<30||i&&e<1e4||!i&&e<10*1024||!i&&t<=20)}static load(e){let t=Y.safeStorage.get(e);if((0,Y.isNonNullable)(t))return parseInt(t,10)??void 0}},uy=_c;var nr=require("@vkontakte/videoplayer-shared/es2024"),ly={configName:["core"],throughputEstimator:{type:"EmaAndMa",emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{maxBitrateFactorAtEmptyBuffer:4,bitrateFactorAtEmptyBuffer:2.8,minBitrateFactorAtEmptyBuffer:1.5,bitrateAudioFactorAtEmptyBuffer:10,maxBitrateFactorAtFullBuffer:3,bitrateFactorAtFullBuffer:2,minBitrateFactorAtFullBuffer:1,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,maxContainerSizeFactor:2,containerSizeFactor:1.3,minContainerSizeFactor:1,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:nr.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:nr.VideoQuality.Q_720P,trafficSavingLimit:nr.VideoQuality.Q_480P},stallsManager:{stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!1,stallsMetricsHistoryLength:5,maxPossibleStallDuration:3e4,minTvtToBeCounted:0,maxTvtToBeCounted:3*60*60,targetStallsDurationPerTvt:1,deviationStallsDurationPerTvt:.5,criticalStallsDurationPerTvt:6,abrAdjustingSpeed:.1,emaAlpha:.6,useTotalStallsDurationPerTvt:!0,useAverageStallsDurationPerTvt:!0,useEmaStallsDurationPerTvt:!0},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:nr.VideoQuality.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,representationSwitchForwardBufferGap:3e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useFetchPriorityHints:!0,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,rejectOnSourceOpenTimeout:!1},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useManagedMediaSource:!0,useNewSwitchTo:!1,useNewDashProvider:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},cy=s=>({...(0,nr.fillWithDefault)(s,ly),configName:[...s.configName??[],...ly.configName]});var f=require("@vkontakte/videoplayer-shared/es2024");var Ei=require("@vkontakte/videoplayer-shared/es2024"),Fc=({seekState:s,position$:e})=>(0,Ei.merge)(s.stateChangeEnded$.pipe((0,Ei.map)(({to:t})=>t.state==="none"?void 0:(t.position??NaN)/1e3),(0,Ei.filter)(Ei.isNonNullable)),e.pipe((0,Ei.filter)(()=>s.getState().state==="none")));var dy=require("@vkontakte/videoplayer-shared/es2024"),py=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return(0,dy.assertNonNullable)(e,`Wrong container or containerId {${s.container}}`),e};var Bo=require("@vkontakte/videoplayer-shared/es2024"),hy=(s,e,t,i)=>{s!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&t?.getValue().length===0?t.pipe((0,Bo.filter)(r=>r.length>0),(0,Bo.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t?.getValue().find(i))&&e.startTransitionTo(s)};var Xa=class{constructor(e={configName:[]},t=f.Tracer.createRootTracer(!1)){this.subscription=new f.Subscription;this.logger=new f.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new f.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new f.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new K("stopped"),seekState:new K({state:"none"}),volume:new K({volume:1,muted:!1}),videoTrack:new K(void 0),videoStream:new K(void 0),audioStream:new K(void 0),autoVideoTrackSwitching:new K(!0),autoVideoTrackLimits:new K({}),isLooped:new K(!1),isLowLatency:new K(!1),playbackRate:new K(1),externalTextTracks:new K([]),internalTextTracks:new K([]),currentTextTrack:new K(void 0),textTrackCuesSettings:new K({}),cameraOrientation:new K({x:0,y:0})};this.info={playbackState$:new f.ValueSubject(void 0),position$:new f.ValueSubject(0),duration$:new f.ValueSubject(1/0),muted$:new f.ValueSubject(!1),volume$:new f.ValueSubject(1),availableVideoStreams$:new f.ValueSubject([]),currentVideoStream$:new f.ValueSubject(void 0),availableQualities$:new f.ValueSubject([]),availableQualitiesFps$:new f.ValueSubject({}),currentQuality$:new f.ValueSubject(void 0),isAutoQualityEnabled$:new f.ValueSubject(!0),autoQualityLimitingAvailable$:new f.ValueSubject(!1),autoQualityLimits$:new f.ValueSubject({}),predefinedQualityLimitType$:new f.ValueSubject("unknown"),availableAudioStreams$:new f.ValueSubject([]),currentAudioStream$:new f.ValueSubject(void 0),availableAudioTracks$:new f.ValueSubject([]),isAudioAvailable$:new f.ValueSubject(!0),currentPlaybackRate$:new f.ValueSubject(1),currentBuffer$:new f.ValueSubject({start:0,end:0}),isBuffering$:new f.ValueSubject(!0),isStalled$:new f.ValueSubject(!1),isEnded$:new f.ValueSubject(!1),isLooped$:new f.ValueSubject(!1),isLive$:new f.ValueSubject(void 0),isLiveEnded$:new f.ValueSubject(null),canChangePlaybackSpeed$:new f.ValueSubject(void 0),atLiveEdge$:new f.ValueSubject(void 0),atLiveDurationEdge$:new f.ValueSubject(void 0),liveTime$:new f.ValueSubject(void 0),liveBufferTime$:new f.ValueSubject(void 0),liveLatency$:new f.ValueSubject(void 0),currentFormat$:new f.ValueSubject(void 0),availableTextTracks$:new f.ValueSubject([]),currentTextTrack$:new f.ValueSubject(void 0),throughputEstimation$:new f.ValueSubject(void 0),rttEstimation$:new f.ValueSubject(void 0),videoBitrate$:new f.ValueSubject(void 0),hostname$:new f.ValueSubject(void 0),httpConnectionType$:new f.ValueSubject(void 0),httpConnectionReused$:new f.ValueSubject(void 0),surface$:new f.ValueSubject("none"),chromecastState$:new f.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new f.ValueSubject(void 0),intrinsicVideoSize$:new f.ValueSubject(void 0),availableSources$:new f.ValueSubject(void 0),is3DVideo$:new f.ValueSubject(!1),currentVideoSegmentLength$:new f.ValueSubject(0),currentAudioSegmentLength$:new f.ValueSubject(0)};this.events={inited$:new f.Subject,ready$:new f.Subject,started$:new f.Subject,playing$:new f.Subject,paused$:new f.Subject,stopped$:new f.Subject,willStart$:new f.Subject,willResume$:new f.Subject,willPause$:new f.Subject,willStop$:new f.Subject,willDestruct$:new f.Subject,watchCoverageRecord$:new f.Subject,watchCoverageLive$:new f.Subject,managedError$:new f.Subject,fatalError$:new f.Subject,fetcherRecoverableError$:new f.Subject,ended$:new f.Subject,looped$:new f.Subject,seeked$:new f.Subject,willSeek$:new f.Subject,autoplaySoundProhibited$:new f.Subject,firstBytes$:new f.Subject,loadedMetadata$:new f.Subject,firstFrame$:new f.Subject,canplay$:new f.Subject,log$:new f.Subject,fetcherError$:new f.Subject,severeStallOccured$:new f.Subject};this.experimental={element$:new f.ValueSubject(void 0),tuningConfigName$:new f.ValueSubject([]),enableDebugTelemetry$:new f.ValueSubject(!1),dumpTelemetry:sg,getCurrentTime$:new f.ValueSubject(null)};if(this.initLogs(),this.tuning=cy(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new nn({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new uy(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new f.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,r,a)=>{let n=Reflect.get(i,r,a);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(d=>JSON.stringify(d,(h,m)=>{let g=typeof m;return(0,fy.default)(["number","string","boolean"],g)?m:m===null?null:`<${g}>`})),c=`Player.${String(r)}`,p=`Exception calling ${c} (${l.join(", ")})`;throw this.events.fatalError$.next({id:c,category:f.ErrorCategory.WTF,message:p,thrown:u}),u}}}})}initVideo(e){this.config=e,this.internalsExposure?.expose({config:e,logger:this.logger,tuning:this.tuning}),this.setMuted(this.tuning.isAudioDisabled);let t=()=>{let{container:a,...n}=e;this.tracer.log("initVideo",(0,f.flattenObject)(n)),this.domContainer=py(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new Ya({sources:e.sources,meta:e.meta??{},failoverHosts:e.failoverHosts??[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?W.isInited$.pipe((0,f.filter)(a=>!!a),(0,f.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,f.fromEvent)(document,"visibilitychange").pipe((0,f.once)()).subscribe(r)):r(),this}destroy(){this.tracer.log("destroy"),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),this.providerContainer?.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),this.internalsExposure?.destroy()}prepare(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>!!e),(0,f.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready")})),this}play(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>!!e),(0,f.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing")})),this}pause(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>!!e),(0,f.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused")})),this}stop(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>!!e),(0,f.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("stop",{currentPlayBackState:e.getState()}),e.getState()!=="stopped"&&e.startTransitionTo("stopped")})),this}seekTime(e,t=!0){return this.subscription.add(this.playerInited.pipe((0,f.filter)(i=>!!i),(0,f.once)()).subscribe(()=>{let i=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),a=e;e>=i&&!r&&(a=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:r,time:e,calculatedTime:a,forcePrecise:t}),Number.isFinite(a)&&(this.events.willSeek$.next({from:this.getExactTime(),to:a}),this.desiredState.seekState.setState({state:"requested",position:a*1e3,forcePrecise:t}))})),this}seekPercent(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{let t=this.info.duration$.getValue();this.tracer.log("seekPercent",{percent:e,duration:t}),isFinite(t)&&this.seekTime(Math.abs(t)*e,!1)})),this}setVolume(e,t){return this.subscription.add(this.playerInited.pipe((0,f.filter)(i=>!!i),(0,f.once)()).subscribe(()=>{let i=this.desiredState.volume,a=i.getTransition()?.to.muted??this.info.muted$.getValue(),n=t??(this.tuning.isAudioDisabled||a);this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:n}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})})),this}setMuted(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{let t=this.desiredState.volume,i=this.tuning.isAudioDisabled||e,a=t.getTransition()?.to.volume??this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:i,volume:a,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setMuted(i):t.startTransitionTo({volume:a,muted:i})})),this}setVideoStream(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{(0,f.assertNonNullable)(this.providerContainer);let t=this.providerContainer.providerOutput.availableVideoTracks$.getValue();this.tracer.log("setQuality",{isDelayed:t.length===0,quality:e}),this.desiredState.videoTrack.getState()===void 0&&this.desiredState.videoTrack.getPrevState()===void 0&&t.length===0?this.wasSetStartedQuality?this.providerContainer.providerOutput.availableVideoTracks$.pipe((0,f.filter)(i=>i.length>0),(0,f.once)()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)})),this}setAutoQuality(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",(0,f.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{if(this.info.predefinedQualityLimitType$.getValue()===e)return this;let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection,r;switch(e){case"high_quality":r={min:t,max:void 0};break;case"traffic_saving":r={max:i,min:void 0};break;default:r={max:void 0,min:void 0}}this.setAutoQualityLimits(r)})),this}setPlaybackRate(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{(0,f.assertNonNullable)(this.providerContainer);let t=this.providerContainer?.providerOutput.element$.getValue();this.tracer.log("setPlaybackRate",{playbackRate:e,isVideoElementAvailable:!!t}),t&&(this.desiredState.playbackRate.setState(e),t.playbackRate=e)})),this}setExternalTextTracks(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,f.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{hy(e,this.desiredState.currentTextTrack,this.providerContainer?.providerOutput.availableTextTracks$,t=>t.id===e),this.tracer.log("selectTextTrack",{textTrackId:e})})),this}setTextTrackCueSettings(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.tracer.log("setTextTrackCueSettings",{...e}),this.desiredState.textTrackCuesSettings.startTransitionTo(e)})),this}setLiveLowLatency(e){let t=this.info.isLive$.getValue(),i=this.desiredState.isLowLatency.getState();return!t||i===e?this:(this.tracer.log("live switch to low latency "+e),this.desiredState.isLowLatency.setState(e),this.seekTime(0))}setLooped(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.tracer.log("setLooped",{isLooped:e}),this.desiredState.isLooped.startTransitionTo(e)})),this}toggleChromecast(){this.tracer.log("toggleChromecast"),this.chromecastInitializer.toggleConnection()}startCameraManualRotation(e,t){return this.subscription.add(this.playerInited.pipe((0,f.filter)(i=>!!i),(0,f.once)()).subscribe(()=>{let i=this.getScene3D();this.tracer.log("startCameraManualRotation",{isScene3DAvailable:!!i,mx:e,my:t}),i&&i.startCameraManualRotation(e,t)})),this}stopCameraManualRotation(e=!1){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{let t=this.getScene3D();this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)})),this}moveCameraFocusPX(e,t){return this.subscription.add(this.playerInited.pipe((0,f.filter)(i=>!!i),(0,f.once)()).subscribe(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let r=i.getCameraRotation(),a=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+a.x,y:r.y+a.y})}})),this}holdCamera(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>e),(0,f.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>!!e),(0,f.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.releaseCamera()})),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if((0,f.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,f.isNonNullable)(i)?i/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){let e=this.providerContainer?.current$.getValue();if(e?.provider?.scene3D)return e.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((i,{width:r})=>i||r||0,0),height:e.reduce((i,{height:r})=>i||r||0,0)};t.width&&t.height&&this.info.intrinsicVideoSize$.next({width:t.width,height:t.height})}initDesiredStateSubscriptions(){this.subscription.add((0,f.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,f.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(_l(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,f.filter)(({from:e})=>e==="stopped"),(0,f.once)()).subscribe(()=>{this.initedAt=(0,f.now)(),this.events.inited$.next()})).add(this.desiredState.playbackState.stateChangeEnded$.subscribe(e=>{switch(e.to){case"ready":this.events.ready$.next();break;case"playing":this.isPlaybackStarted||this.events.started$.next(),this.isPlaybackStarted=!0,this.events.playing$.next();break;case"paused":this.events.paused$.next();break;case"stopped":this.events.stopped$.next()}})).add(this.desiredState.playbackState.stateChangeStarted$.subscribe(e=>{switch(e.to){case"paused":this.events.willPause$.next();break;case"playing":this.isPlaybackStarted?this.events.willResume$.next():this.events.willStart$.next();break;case"stopped":this.events.willStop$.next();break;default:}}))}initProviderContainerSubscription(e){this.subscription.add(e.providerOutput.willSeekEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("willSeekEvent",(0,f.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:f.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,f.once)()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("seekedEvent",(0,f.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,f.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,f.map)(n=>n.destination),(0,f.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,f.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,f.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,f.isInvariantQuality)(u)?1:(0,f.isInvariantQuality)(l)?-1:(0,f.isHigher)(l,u)?1:-1))).subscribe(this.info.availableQualities$)).add(e.providerOutput.availableVideoTracks$.subscribe(n=>{let o={};for(let u of n)u.fps&&(o[u.quality]=u.fps);this.info.availableQualitiesFps$.next(o)})).add(e.providerOutput.availableAudioStreams$.subscribe(this.info.availableAudioStreams$)).add(e.providerOutput.currentVideoStream$.subscribe(this.info.currentVideoStream$)).add(e.providerOutput.currentAudioStream$.subscribe(this.info.currentAudioStream$)).add(e.providerOutput.availableAudioTracks$.subscribe(this.info.availableAudioTracks$)).add(e.providerOutput.isAudioAvailable$.pipe((0,f.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,f.filter)(n=>(0,f.isNonNullable)(n))).subscribe(n=>{this.info.currentQuality$.next(n?.quality),this.info.videoBitrate$.next(n?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe((0,f.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,f.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,f.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,f.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,f.filterChanged)()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.currentTextTrack$.subscribe(this.info.currentTextTrack$)).add(e.providerOutput.availableTextTracks$.subscribe(this.info.availableTextTracks$)).add(e.providerOutput.autoVideoTrackLimitingAvailable$.subscribe(this.info.autoQualityLimitingAvailable$)).add(e.providerOutput.autoVideoTrackLimits$.subscribe(n=>{this.desiredState.autoVideoTrackLimits.setState(n??{})})).add(e.providerOutput.currentBuffer$.pipe((0,f.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.duration$.subscribe(this.info.duration$)).add(e.providerOutput.isBuffering$.subscribe(this.info.isBuffering$)).add(e.providerOutput.isLive$.subscribe(this.info.isLive$)).add(e.providerOutput.isLiveEnded$.pipe((0,f.tap)(n=>n&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add((0,f.combine)({hasLiveOffsetByPaused:(0,f.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,f.map)(n=>n.to),(0,f.filterChanged)(),(0,f.map)(n=>n==="paused")),isLowLatency:e.providerOutput.isLowLatency$}).subscribe(({hasLiveOffsetByPaused:n,isLowLatency:o})=>{if(window.clearTimeout(this.hasLiveOffsetByPausedTimer),n){this.hasLiveOffsetByPausedTimer=window.setTimeout(()=>{this.hasLiveOffsetByPaused.next(!0)},this.getActiveLiveDelay(o));return}this.hasLiveOffsetByPaused.next(!1)})).add((0,f.combine)({atLiveEdge:(0,f.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Fc({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,f.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,f.filterChanged)(),(0,f.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,f.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,f.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,f.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,f.filterChanged)(),(0,f.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,f.map)(n=>n.muted),(0,f.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,f.map)(n=>n.volume),(0,f.filterChanged)()).subscribe(this.info.volume$)).add(Fc({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,f.merge)(e.providerOutput.endedEvent$.pipe((0,f.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,f.mapTo)(!1))).pipe((0,f.filterChanged)()).subscribe(this.info.isEnded$)).add(e.providerOutput.endedEvent$.subscribe(this.events.ended$)).add(e.providerOutput.loopedEvent$.subscribe(this.events.looped$)).add(e.providerError$.subscribe(this.events.managedError$)).add(e.providerOutput.fetcherRecoverableError$.subscribe(this.events.fetcherRecoverableError$)).add(e.providerOutput.fetcherError$.subscribe(this.events.fatalError$)).add(e.volumeMultiplierError$.subscribe(this.events.managedError$)).add(e.noAvailableProvidersError$.pipe((0,f.map)(n=>({id:n?`No${n}`:"NoProviders",category:f.ErrorCategory.VIDEO_PIPELINE,message:n?`${n} was forced but failed or not available`:"No suitable providers or all providers failed"}))).subscribe(this.events.fatalError$)).add(e.providerOutput.element$.subscribe(this.experimental.element$)).add(e.providerOutput.getCurrentTime$.subscribe(this.experimental.getCurrentTime$)).add(e.providerOutput.firstBytesEvent$.pipe((0,f.once)(),(0,f.map)(n=>n??(0,f.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,f.once)(),(0,f.map)(()=>(0,f.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,f.once)(),(0,f.map)(()=>(0,f.now)()-this.initedAt)).subscribe(this.events.canplay$)).add(this.throughputEstimator.throughput$.subscribe(this.info.throughputEstimation$)).add(this.throughputEstimator.rtt$.subscribe(this.info.rttEstimation$)).add(e.providerOutput.availableSources$.subscribe(this.info.availableSources$));let t=new f.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new f.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,f.filter)(({to:n})=>n==="playing"),(0,f.once)()).subscribe(()=>i.next(!1)));let r=0,a=(0,f.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,f.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,f.filterChanged)());this.subscription.add(a.subscribe(n=>{n?r=window.setTimeout(()=>this.info.isStalled$.next(!0),this.tuning.stallIgnoreThreshold):(window.clearTimeout(r),this.info.isStalled$.next(!1))})),this.subscription.add((0,f.merge)(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n?.videoWidth,height:n?.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n?.size?.width,height:n?.size?.height},{width:o?.videoWidth,height:o?.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add((0,f.merge)(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let n=e.providerOutput.inPiP$.getValue(),o=e.providerOutput.inFullscreen$.getValue(),u=e.providerOutput.element$.getValue(),l=e.providerOutput.elementVisible$.getValue(),c=this.chromecastInitializer.castState$.getValue(),p;c==="CONNECTED"?p="second_screen":u?l?n?p="pip":o?p="fullscreen":p="inline":p="invisible":p="none",this.info.surface$.getValue()!==p&&this.info.surface$.next(p)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe((0,f.map)(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new f.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,f.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,f.filter)(i=>i.length>0),(0,f.once)()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){let t;this.wasSetStartedQuality=!0;let i=this.explicitInitialQuality??this.info.currentQuality$.getValue();i&&(t=e.find(({quality:r})=>r===i),t||this.setAutoQuality(!0)),t||(t=Zt(e,{container:this.domContainer.getBoundingClientRect(),panelSize:this.config.panelSize,estimatedThroughput:this.throughputEstimator.throughput$.getValue(),tuning:this.tuning.autoTrackSelection,limits:this.desiredState.autoVideoTrackLimits.getState(),playbackRate:this.info.currentPlaybackRate$.getValue(),forwardBufferHealth:0,abrLogger:this.abrLogger})),this.desiredState.videoTrack.startTransitionTo(t),this.info.currentQuality$.next(t.quality),this.info.videoBitrate$.next(t.bitrate)}initLogs(){this.subscription.add((0,f.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,f.map)(e=>({component:"desiredState",message:`[${e.entity} change] ${e.type}: ${JSON.stringify(e.transition)}`}))).subscribe(this.logger.log)),this.subscription.add(this.logger.log$.subscribe(this.events.log$))}initDebugTelemetry(){let e=this.providerContainer?.providerOutput;(0,f.assertNonNullable)(this.providerContainer),(0,f.assertNonNullable)(e),rg(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(t=>ig(t)),this.providerContainer.current$.subscribe(({type:t})=>vs("provider",t)),e.duration$.subscribe(t=>vs("duration",t)),e.availableVideoTracks$.pipe((0,f.filter)(t=>!!t.length),(0,f.once)()).subscribe(t=>vs("tracks",t)),this.events.fatalError$.subscribe(new ot("fatalError")),this.events.managedError$.subscribe(new ot("managedError")),e.position$.subscribe(new ot("position")),e.currentVideoTrack$.pipe((0,f.map)(t=>t?.quality)).subscribe(new ot("quality")),this.info.currentBuffer$.subscribe(new ot("buffer")),e.isBuffering$.subscribe(new ot("isBuffering"))].forEach(t=>this.subscription.add(t)),vs("codecs",W.video.supportedCodecs)}initTracerSubscription(){let e=(0,f.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,f.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.info.playbackState$.subscribe(e("playbackState"))).add(this.info.isLooped$.subscribe(e("isLooped"))).add(this.info.currentPlaybackRate$.pipe((0,f.filterChanged)()).subscribe(e("currentPlaybackRate"))).add(this.info.isAutoQualityEnabled$.subscribe(e("isAutoQualityEnabled"))).add(this.info.autoQualityLimits$.subscribe(e("autoQualityLimits"))).add(this.info.currentFormat$.subscribe(e("currentFormat"))).add(this.info.availableQualities$.subscribe(e("availableQualities"))).add(this.info.availableQualitiesFps$.subscribe(e("availableQualitiesFps"))).add(this.info.availableAudioTracks$.subscribe(e("availableAudioTracks"))).add(this.info.isAudioAvailable$.subscribe(e("isAudioAvailable"))).add((0,f.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,f.filter)(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),(0,f.filterChanged)((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,f.filter)(i=>i>0),(0,f.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,f.filter)(i=>i>0),(0,f.filterChanged)()).subscribe(e("currentAudioSegmentLength"))).add(this.info.hostname$.subscribe(e("hostname"))).add(this.info.currentTextTrack$.subscribe(e("currentTextTrack"))).add(this.info.availableTextTracks$.subscribe(e("availableTextTracks"))).add(this.info.autoQualityLimitingAvailable$.subscribe(e("autoQualityLimitingAvailable"))).add((0,f.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,f.filter)(i=>i.end>0),(0,f.filterChanged)((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe((0,f.filterChanged)())}).pipe((0,f.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,f.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,f.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,f.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,f.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,f.filter)(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),(0,f.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,f.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,f.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,f.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,f.filter)(({throughputEstimation:i,rtt:r})=>!!i&&!!r),(0,f.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("is3DVideo"))).add(this.info.surface$.subscribe(e("surface"))).add(this.events.ended$.subscribe(e("ended"))).add(this.events.looped$.subscribe(e("looped"))).add(this.events.managedError$.subscribe(t("managedError"))).add(this.events.fatalError$.subscribe(t("fatalError"))).add(this.events.firstBytes$.subscribe(e("firstBytes"))).add(this.events.firstFrame$.subscribe(e("firstFrame"))).add(this.events.canplay$.subscribe(e("canplay")))}initWakeLock(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e?.release(),e=void 0},i=async()=>{t(),e=await window.navigator.wakeLock.request("screen").catch(r=>{r instanceof DOMException&&r.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:f.ErrorCategory.DOM,message:String(r)})})};this.subscription.add((0,f.merge)((0,f.fromEvent)(document,"visibilitychange"),(0,f.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState==="visible",a=this.desiredState.playbackState.getState()==="playing",n=!!e&&!e?.released;r&&a?n||i():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let i=e.find(r=>r.quality===t);this.tracer.log("setVideoTrackIdByQuality",(0,f.flattenObject)({quality:t,availableTracks:(0,f.flattenObject)(e),track:(0,f.flattenObject)(i),isAutoQuality:!i})),i?this.desiredState.videoTrack.startTransitionTo(i):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!Ps()}};var ii=require("@vkontakte/videoplayer-shared/es2024"),bM=`@vkontakte/videoplayer-core@${_o}`;